@charset "utf-8";
/* CSS Document */
body {
  font-family: "Rounded Mplus 1c", sans-serif;
  margin: 0;
  padding: 0;
  background-image: url("../image/野菜背景用イラスト1080ｘ1920.jpg");
}

header { /*ヘッダーの詳細設定。幅高さ色など*/
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  z-index: 10;
  opacity: 0.75;
  background-color: green;
}
.logo img { /*ロゴアイコンの幅高さ調整*/
  padding-left: 16px;
  padding-top: 10px;
  width: 50px;
  height: 50px;
}
.menu-checkbox { /*チェックボックス非表示*/
  display: none;
}
 /* ハンバーガーアイコン */
.menu-icon {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2;
  position: absolute;
  top: 12px;
  right: 20px; /*右上配置*/
}
.menu-icon span {
  display: block;
  height: 2px;
  background: black;
  border-radius: 2px;
  transition: 0.3s;
}
/*チェック時のアニメーション*/
.menu-checkbox:checked + .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-checkbox:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
.menu-checkbox:checked + .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* ナビゲーション */
.inner {
  background-color: #71574F;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  opacity: 0;
}
.menu-checkbox:checked ~ .inner {
  max-height: 350px;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
@keyframes glitch {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(2px, -2px);
  }
  60% {
    transform: translate(-1px, 1px);
  }
  80% {
    transform: translate(1px, -1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
/* グリッチ風に崩れて消えるアニメ */
@keyframes glitchOut {
  0% {
    transform: translate(0, 0) skew(0deg);
    opacity: 1;
  }
  20% {
    transform: translate(-3px, 2px) skew(-5deg);
    opacity: 0.8;
  }
  40% {
    transform: translate(3px, -2px) skew(5deg);
    opacity: 0.6;
  }
  60% {
    transform: translate(-5px, 3px) skew(-3deg);
    opacity: 0.4;
  }
  80% {
    transform: translate(5px, -3px) skew(3deg);
    opacity: 0.2;
  }
  100% {
    transform: translate(0, 0) skew(0deg);
    opacity: 0;
  }
}
.menu-checkbox:not(:checked) ~ .inner {
  animation: glitchOut 0.4s ease;
}
.inner ul {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
.inner li {
  padding: 12px 20px;
}
.inner a {
  color: white;
  text-decoration: none;
}
/* ここからトップセクション */
.section-title {
 font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: #000;
  text-shadow: 1px 1px 0 #fff;
}
#toppage {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #fff;
  overflow: hidden;
}

/* 背景画像 */
.top_background img {
  width: 100%;
  height: 100%;
}
/* トップ背景 */
#toppage {
  position: relative;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  color: #fff;
  
}

.top_background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -99;
}
/* イメージボックス（画像2枚） */
.image-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 120px;
}

.img1 img, .img2 img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.img1 img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.img2 img {
  width: 120px;
  height: 180px;
  object-fit: cover;
}

/* テキスト＋ボタン */
.top-text {
  text-align: center;
  margin-top: 40px;
}

.top-text .catch {
  font-size: 1.2rem;
  margin: 0;
  text-shadow: 2px 2px 4px #000;
}

.top-text .title {
  font-size: 2.5rem;
  font-family: 'Caveat', cursive;
  margin: 10px 0;
  text-shadow: 2px 2px 4px #000;
}

.reserve-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #c9ad30;
  padding: 10px 20px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 0 #444;
}.top-text .title {
  font-size: 3rem;
  letter-spacing: 1px;
  font-weight: bold;
}
.reserve-btn:hover {
  background-color: #b89824;
  transform: translateY(-2px);
  transition: 0.3s;
}

/* ゆっくり上下にゆれるループアニメーション */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* 適用：画像ボックスにアニメーション */
.image-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 120px;
  animation: float 4s ease-in-out infinite;
}

/* タイトルとボタンにもふわふわ感を */
.top-text {
  text-align: center;
  margin-top: 40px;
  animation: float 5s ease-in-out infinite;
}
/*ここまでがトップページ*/
/*ここからアバウト*/
#about {
  background-color: rgba(176, 222, 245, 0.25);
  padding: 60px 20px;
  font-family: 'Rounded Mplus 1c';
  color: #333;
  text-align: center;
}

/* セクション見出し */
.section-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;color: #000;
text-shadow: 1px 1px 2px #fff;}

/* ボーダー（下線） */
.section-title::after {
  content: '';
  display: block;
  height: 2px;
  width: auto;
  background-color: #000;
  margin: 8px auto 0;
}

/* 本文テキスト */
.about-text p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 12px;color: #000;
  text-shadow: 1px 1px 2px #fff;
}

/*ここからスケジュール*/
/* セクション全体 */
#schedule {text-align: center;
  
  padding: 40px 20px;
}

/* セクション見出し */
#schedule .section-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: #000;
  text-shadow: 1px 1px 0 #fff;
}

#schedule .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: #000; /* 明るい青ボーダー */
}

/* 午前・午後のタイトル */
.schedule-block {
  margin-top: 40px;
}

.sub-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
  text-shadow: 1px 1px 0 #fff;
}

/* 時間リスト */
.schedule-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.schedule-list li {
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid #81d4fa;
}

.schedule-list strong {
  display: inline-block;
  width: 70px;
  font-weight: bold;
  color: #00796b;
}

/* 吹き出しっぽい説明 */
.schedule-desc {
  font-size: 0.95rem;
  color: #000;
  background: #ffffffb3;
  padding: 6px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 4px;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

/* スライドショー部分（Swiper利用想定） */
.slide-container {
  margin-top: 20px;
  overflow: hidden;
}

.swiper {
  padding-bottom: 20px;
}

.swiper-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}



/*ここまでがスケジュール*/
/*ここからがQ&A*/
/* Q&A見出し */
#qanda {text-align: center;
  padding: 40px 20px;
  
}



/* アコーディオン全体 */
.accordion-item {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

/* ボタン部分 */
.accordion-button {
  width: 100%;
  background-color: #e0f7ff;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s;
}

.accordion-button:hover {
  background-color: #b3e5fc;
}

/* 答え部分 */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  background: #fff;
}

.accordion-content p {
  margin: 10px 0;
  font-size: 0.95rem;
  color: #333;
}

/*ここまでQ&A*/
/*ここからアクセス*/
/* アクセスセクション全体 */
#access {background-color: rgba(255, 223, 75, 0.5);
  padding: 40px 20px;
  text-align: center;
}

/* セクション見出し */
#access .section-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: #000;
  text-shadow: 1px 1px 0 #fff;
}

/* 見出し下のボーダー */
#access .section-title::after {
  content: '';
  display: block;
  width: auto;
  height: 3px;
  background-color: #000;
  margin: 8px auto 0;
}

/* 住所・電話などの情報 */
.access-info p {
  font-size: 1rem;
  color: #000;
  margin: 8px 0;
  text-shadow: 1px 1px 2px #fff; /* 見やすさUP */
}

/* 電話リンクにだけ下線除去 */
.access-info a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

/* Googleマップの埋め込み */
.access-map {
  margin: 20px 0;
}

.access-map-iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 補足説明（バスや駐車場） */
.access-desc p {
  font-size: 0.95rem;
  color: #000;
  margin: 6px 0;
}

/*ここまでアクセス*/
/*ここからフッター*/
footer {
  background-color: rgba(176, 222, 245, 0.25);
  padding: 40px 20px;
  text-align: center;
  color: #333;
}

/* ボタン */
.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-btn {
  background-color: #f4a460;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 0 #c08040;
  transition: background-color 0.3s;
}

.footer-btn:hover {
  background-color: #e5943f;
}

/* ロゴ */
.footer-logo img {
  height: 60px;
  margin: 20px auto;
  display: block;
}

/* ナビ */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-nav li a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
margin: 30px;}

.footer-nav li a:hover {
  text-decoration: underline;
}

/* コピーライト */
.footer-copy {
  font-size: 0.8rem;
  margin-top: 20px;
}

/*ここまでフッター*/
/*スクロールアニメーション*/
.fade-in {
  opacity: 0;
  transform: translateY(30px); /* 下から */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0); /* 元の位置に */
}