@charset "utf-8";

/*---------------------------------------------------------
 *
 * 初期スタイル調整
 *
 *---------------------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  font-family: "Kiwi Maru", serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1d1d1d;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.5;
}

a {
  color: #1d1d1d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
}

ul {
  padding: 0;
  margin-top: 0;
  margin-bottom: 20px;
  list-style: none;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

address {
  font-style: normal;
}

/*---------------------------------------------------------
 *
 * ここまで
 * 初期スタイル調整
 *
 *---------------------------------------------------------*/

/* ヘッダー */
.header {
  background-color: #2e804a;
}

/* ヘッダーの内側 */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1040px;
  padding: 25px 20px;
  margin: 0 auto;
}

/* ロゴ */
.logo {
  margin: 0;
  text-align: center;
}

/* ハンバーガーメニュー（スマホナ用ハンバーガー、PCでは非表示） */
.drawer-hamburger {
  display: none;
}

/* ナビゲーション */
.drawer-menu {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.drawer-menu li {
  margin-left: 40px;
}

/* ナビゲーションのリンク */
.drawer-menu-item {
  font-size: 20px;
  color: #ffffff;
  text-transform: uppercase;
}

/* ナビゲーションのリンク、ホバー時 */
.drawer-menu-item:hover {
  color: #ffffff;
}

/* セクション */
.section {
  max-width: 1040px;
  padding: 100px 20px;
  margin: 0 auto;
}

/* 見出し */
.heading-section {
  margin: 0 0 50px;
  font-size: 36px;
  font-weight: 500;
  color: #64491d;
  text-align: center;
}

/* フッター */
.footer {
  padding: 50px 0 20px;
  color: #ffffff;
  text-align: center;
  background-color: #64491d;
}

/* .footer-logo {margin: 0 0 20px;} */

.footer-address {
  margin: 0 0 20px;
}

.footer-sns {
  margin: 0 0 20px;
}

.footer-sns img {
  margin: 0 10px;
}

/* コピーライト */
.copyright {
  margin: 0;
}

.copyright small {
  font-size: 10px;
}

/**********************************
PC: トップページで使っているもの
***********************************/
/* トップ画像 */
.top {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 378px;
  background: url(../img/top.png) center bottom / cover no-repeat;
}

.top-text {
  margin: 0;
  font-size: 60px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.05em;
}

/* イベント情報 */
.event {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  letter-spacing: 0.1em;
}

.event-image {
  margin: 0 0 15px;
}

.event-heading {
  margin: 0 0 15px;
  font-size: 20px;
  color: #64491d;
  text-align: center;
  letter-spacing: 0.1em;
}

/**********************************
PC: 入園料で使っているもの
***********************************/
/* テーブル */
.price-table {
  width: 100%;
  font-size: 18px;
  color: #64491d;
  table-layout: fixed;
  border-collapse: collapse;
}

.price-table thead {
  color: #ffffff;
  background-color: #9d855f;
}

/* セルのスタイル */
.price-table th {
  padding: 10px 20px;
  border: 1px solid #64491d;
}

.price-table td {
  padding: 20px;
  border: 1px solid #64491d;
}

.price-table tbody th {
  text-align: left;
}

/**********************************
PC: お問い合わせフォームで使っているもの
***********************************/
.form-group {
  display: grid;
  margin: auto auto 20px;
  grid-template-columns: 300px 1fr;
}

.form-label {
  padding: 8px 0 0 0;
  font-size: 18px;
  color: #1d1d1d;
}

.form-btn {
  margin: 30px 0;
  text-align: center;
}

/* フォームの入力項目 */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #1d1d1d;
  border-radius: 8px;
}

/* 入力項目を選択して入力できる状態時（フォーカス） */
/* 
選択時の線を消す（普通は設定しない）*/
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: 2px solid #2e804a;
}


/* 送信ボタン */
button[type="submit"] {
  width: 170px;
  height: 40px;
  font-size: 18px;
  color: #64491d;
  background-color: #ffffff;
  border: 1px solid #64491d;
  border-radius: 8px;
}

/* 送信ボタンにマウスポインタを乗せた時 */
button[type="submit"]:hover {
  color: #ffffff;
  background-color: #64491d;
}

/*---------------------------------------------------------
 *
 * 幅768px以下のスタイル
 * 上記のスタイルを上書きしていく
 *
 *---------------------------------------------------------*/
@media screen and (max-width: 768px) {

  /* ヘッダーの中 */
  .header-container {
    height: 60px;
    padding: 0 20px;
  }

  /* ロゴ */
  .logo {
    width: 140px;
    height: 32px;
  }

  .logo img {
    vertical-align: top;
  }

  /* スマホナビゲーション用ハンバーガー、再表示 */
  .drawer-hamburger {
    display: block;
    /* background-color: #2e804a; */
  }

  .drawer-hamburger:hover {
    background-color: #5b9a59;
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon::after,
  .drawer-hamburger-icon::before {
    background-color: #ffffff;
  }

  /* ナビゲーション */
  .drawer-nav {
    background-color: #9d855f;
  }

  .drawer-menu {
    display: block;
    padding: 20px 0 0;
  }

  /* フッターロゴ */
  /* .footer-logo {
    width: 226px;
    margin: 0 auto 20px;
  } */

  .footer-address {
    font-size: 14px;
  }

  /* セクション */
  .section {
    padding: 50px 20px;
  }

  /* 見出し */
  .heading-section {
    font-size: 26px;
  }

  /**********************************
  SP: トップページで使っているもの
  ***********************************/
  /* トップ画像 */
  .top {
    height: 200px;
    background-image: url(../img/top_sp.png) center bottom / cover no-repeat;
  }

  .top-text {
    font-size: 34px;
  }

  /* イベント情報 */
  .event {
    display: block;
  }

  .event-item {
    max-width: 320px;
    width: 100%;
    margin: 0 auto 20px;
  }

  /**********************************
  SP: 入場料で使っているもの
  ***********************************/
  .price-table {
    font-size: 12px;
  }

  /* セルのスタイル */
  .price-table th {
    padding: 10px;
  }

  .price-table td {
    padding: 20px 10px;
  }

  /**********************************
  SP: お問い合わせフォームで使っているもの
  ***********************************/
  .form-group {
    display: block;
  }

  .form-label {
    display: block;
    padding-top: 0;
    margin-bottom: 5px;
  }
}

/*---------------------------------------------------------
 *
 * ここまで
 * スマホのスタイル
 *
 *---------------------------------------------------------*/