@charset "utf-8";
/* CSS Document */
body {
	max-width: 100%;
  margin: 0 auto;
  padding: 0;
  font-family: HannariMincho,Caveat;
  background-image: url("../image/background_image.jpg");
  background-size: 150%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
h1{color: white;
	font-size: 32px;
text-decoration-color: white;
text-shadow: 2px 4px 3px white;}
.farmily {font-family: Caveat;
font-size: 40px;}
h1 {
  color: white;
  font-size: 32px;
  text-shadow: 2px 4px 3px white;
  position: relative;
  z-index: 2;
  margin-top: 120px; /* ヘッダーと被らないように */
}
.farmily {
  font-family: Caveat;
  font-size: 40px;
  display: block;
  margin-top: 10px;
}
h2 {font-size: 24px;}
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;
}
/* ===========================
    ハンバーガーアイコンここまで
=========================== */
/* ===========================
ここからトップページ
=========================== */
.top_background{padding-top: 60px;
	padding-bottom: 60px; width:100%;
height: 750px;}
.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;
	
}
@keyframes zoomIn {/*ゆっくりズームイン*/
  0% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}
/* 画像ボックス */
.image_box {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 50px;
}

.image_box {
  position: absolute;
  top: 8%;
  left: 50%;
	padding: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.image_box img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	 animation: imageZoom 6s ease-in-out infinite;
  transform-origin: center center;
}/* アニメーション定義 */
@keyframes imageZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.image_box .img2 img  {
  height: 200px; /* ←好みに応じて調整（例：160〜200px） */
  width: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
.image_box {
  position: absolute;
  top: 20%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}

  .image_box img {
    width: 250px;
  }

  .image_box .img2 img {
    height: 280px;
  }

  .toppage-text {
    bottom: 10%;
    left: 5%;
    font-size: 1.2rem;
  }

  .toppage-text .farmily {
    font-size: 3rem;
  }
#about, #schedule, #access {
    padding: 100px 80px;
  }

  .about-text,
  .schedule-list,
  .access-info {
    font-size: 1.2rem;
    line-height: 2.5;
  }

  .about-label,
  .schedule-label,
  .access-label {
    font-size: 1.4rem;
    padding-left: 10px;
  }
.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0;
  }

  .footer-sns {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
  }

  .footer-copy {
    text-align: center;
    margin-top: 20px;
  }
/* topテキスト部分 */
/* タイトルにループアニメ */
.toppage-text h1 {
  animation: titleFadeIn 6s ease-in-out infinite;
}

/* 予約ボタンにループアニメ */
.reserve-btn {
  animation: btnFadeIn 6s ease-in-out infinite;
}

/* タイトルアニメ */
@keyframes titleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* ボタンアニメ */
@keyframes btnFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}

.toppage-text {
  position: absolute;
  bottom: 15%;
  left: 10%;
  z-index: 4;
  color: white;
  text-align: left;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}
.toppage-text p {
  font-size: 1rem;
  margin: 0;
}

.toppage-text .farmily {
  font-family: Caveat;
  font-size: 2.4rem;
  margin: 8px 0;
}

.reserve-btn {
  display: inline-block;
  background-color: #c9ad30;
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-top: 8px;
  text-decoration: none;
  box-shadow: 0 4px 0 #444;
  transition: background 0.3s, transform 0.2s;
}

.reserve-btn:hover {
  background-color: #b89824;
  transform: translateY(-2px);
}
/*ここからAbout*/
#about {
  background-color: rgba(176, 222, 245, 0.25); /* #B0DEF5の25%透明 */
  padding: 80px 20px;
  position: relative;
  font-family: 'HannariMincho', serif;
}

.about-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: 'Caveat', cursive;
  font-size: 16px;
  writing-mode: horizontal-tb; /* ← 横書きのまま */
  display: flex;
  flex-direction: column;
  align-items: center;

  border-left: 3px solid black;
  border-bottom: 3px solid black;
  padding: 8px 4px;
  background-color: transparent;
}
.about-text {text-align: center;padding:60px 20px;}
.about-text p {margin-bottom: 2rem;}

/*ここまでがAbout*/

/*ここからschedule*/
#schedule {
  background-color: #6B5149 0.25%;
	
  color: #000;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  font-family: "HannariMincho", serif;
}

#schedule h3 {font-weight: bold;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* スケジュール本文 */
.schedule-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.schedule-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  
  font-size: 1.1rem;
  line-height: 1.8;
}

.schedule-time {
  font-family: "Caveat", cursive;
  font-size: 1rem;
  width: 60px;        /* 幅を固定 */
  text-align: right;  /* 右揃えにして揃える */
  flex-shrink: 0;
}
/* 縦文字とボーダー */
.schedule-label {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: 'Caveat', cursive;
  font-size: 16px;
   writing-mode: horizontal-tb; /* ← 横書きのまま */
  border-right: 3px solid black;
  border-bottom: 3px solid black;
  padding: 8px 4px;
  background-color: transparent;
}

.slide-container {
  width: 100%;
  max-width: 500px;    /* 適切な幅 */
  height: 200px;        /* 高さを固定 */
  margin: 20px auto 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}



.slide {
  display: none;
  width: 100%;
  animation: fade 1s ease-in-out;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* はみ出さずキレイに表示 */
  display: block;
}


/* フェード用アニメ */
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*ここまでスケジュール*/

/*ここからキューアンドエー*/
#qna {
  background-color: #f5f5f5 0.5;
  padding: 60px 20px;
  font-family: "HannariMincho", 'Caveat';
  position: relative;
}

.qna-label {
  position: absolute;
 
  
  transform: translateY(-50%);
  font-family: "Caveat", cursive;
  font-size: 16px;
  border-left: 3px solid black;
  border-bottom: 3px solid black;
  padding: 8px;
  background-color: transparent;
}

.accordion {
  margin: 20px auto;
  max-width: 90%;
}

.accordion-question {
  width: 100%;
  background: none;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  text-align: left;
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.accordion-answer {background: #FFFFFF 25%;
  display: none;
  padding: 12px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* 開いたとき */
.accordion-question.active + .accordion-answer {
  display: block;
}
/*ここまでキューアンドエー*/

/*ここからカスタマーボイス*/
.voice-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  position: relative;
}

.voice-label span {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-weight: bold;
  padding: 0 10px;
  position: relative;
}

.voice-label::before,
.voice-label::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.voice-label::before {
  top: -30px;
}

.voice-label::after {
  bottom: -30px;
}

.voice-section {
  background-color:rgba(176, 222, 245, 0.5); /* 水色背景 */
  padding: 60px 20px;
  font-family: 'HannariMincho', serif;
  text-align: center;
}

.voice-block {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.voice-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
}

.voice-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.voice-name {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.2em;
}

.voice-comment {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #333;
  text-align: center;
}
/*ここまでカスタマーボイス*/

/*ここからアクセス*/
#access {
  background-color: rgba(255, 223, 75, 0.5);
  padding: 60px 0px;
  color: #000;
  font-family: "HannariMincho", serif;
  text-align: center;
  position: relative;
}

.access-label {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  position: relative;
  margin-bottom: 40px;
  color: #000;
}

.access-label::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #000, transparent);
  margin: 6px auto 0;
}
.access-info p {
  margin: 6px 0;
  font-size: 1rem;
}
.access-map iframe {
  width: 100%;
  max-width: 500px; /* 必要に応じて調整 */
  height: 300px;
  border: none;
  display: block;
  margin: 0 auto;
}

.access-info a {
  text-decoration: underline;
  color: inherit;
}

.access-map {
  margin: 20px 0;
}

.access-desc p {
  font-size: 1rem;
  line-height: 1.8;
}
/*ここまでアクセス*/

/*ここからfooter*/
footer {
  background-color: rgba(176, 222, 245, 0.3); /* 薄い水色背景 */
  text-align: center;
  padding: 40px 0px;
  font-size: 14px;
  font-family: "HannariMincho", serif;
}

/* ボタン（予約・お問い合わせ） */
.footer-buttons {
  margin-bottom: 20px;
}
.footer-btn {
  display: inline-block;
  background-color: #c9ad30;
  color: white;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 0 #444;
}
.footer-btn:hover {
  background-color: #b89824;
	transform: translateY(-2px);}
/* ロゴ */
.footer-logo img {
  width: 80px;
  height: 80px;
  margin: 20px 0;
}

/* ナビリンク */
.footer-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 20px 0;
  gap: 10px;
}

.footer-nav li {
  list-style: none;
}

.footer-nav a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s, background-color 0.3s;
  padding: 5px 10px;
  border-radius: 5px;
}

.footer-nav a:hover {
  color: 
	  #000;
  background-color: #fff; /* ホバー時の背景色 */
}

/* SNS */
.footer-sns {
  margin-top: 20px;
  margin-bottom: 30px; /* ← コピーライトとの距離を追加 */
  display: flex;
  justify-content: center;
  gap: 30px; /* ← アイコン同士の間隔を広げる */
}
.footer-sns img {
  width: auto;
  height: 30px;
  ;
}
/* コピーライト */
.footer-copy {
  font-size: 20px;
  color: #000;
}
/*モバイルここまで*/
	/*ここからアニメーション*/
.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); /* 元の位置に */
}
/* ===========================
  ここからメディアクエリ
=========================== */
@media screen and (min-width: 1024px) {
  body {
    max-width: 100%;
    margin: 0 auto;
 padding-top: 80px; } 
   /* ハンバーガー非表示 */
  #menu-toggle,
  .menu-icon {
    display: none;
  }

   header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ← 横並びに */
    padding: 20px 40px;
    max-width: 100%;
    margin: 0 auto;
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: green; /* ← 背景色を明示 */border-bottom: 2px solid white;
  }

  .logo img {
    display: block;
    height: 60px;
    width: 60px;
  }

  .inner {
    display: block !important;
    opacity: 1 !important;
    max-height: none !important;
  }

  .inner ul {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    background-color: green;
  }

  .inner ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    white-space: nowrap;
    text-shadow: 2px 4px 3px #000;
   position: relative;}
	.inner ul li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
  }

  .inner ul li a:hover::after {
    width: 100%;
  }
	/*ここからトップページ*/

 .toppage-text {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
.toppage-text .catch {
    font-size: 1.5rem;
  }

  .toppage-text .farmily {
    font-size: 5rem;
  }
	/*ここからAbout*/
	 .about-label {
    position: relative;
    display: inline-block;
    font-size: 2.4rem;
    font-family: 'Caveat', cursive;
    border-top: 4px solid black;
    border-left: 4px solid black;
    border-bottom: none;
    padding: 10px 20px;
    margin-left: 20px;
    margin-bottom: 80px;
  }

  .about-label::after {
    content: "About";
    position: absolute;
    top: 100%; /* 真下に */
    left: 0;
    font-size: 2.4rem;
    font-family: 'Caveat', cursive;
    color: rgba(0, 0, 0, 0.1);
    transform: scaleY(-1);
    line-height: 1;
    pointer-events: none;
  }
 #schedule {
    position: relative;
  }
#schedule {
    position: relative;
  }

  .schedule-label {
    position: relative;
    top: 0;
    left: 20px;
    font-size: 2.4rem;
    font-family: 'Caveat', cursive;
    border-top: 4px solid black;
    border-left: 4px solid black;
    padding: 10px 20px;
    margin-bottom: 80px;
    display: inline-block;
  }

  .schedule-label::after {
    content: "SCHEDULE";
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 2.4rem;
    font-family: 'Caveat', cursive;
    color: rgba(0, 0, 0, 0.08);
    transform: scaleY(-1);
    line-height: 1;
    pointer-events: none;
  }.schedule-list {
    display: grid;
   
    gap: 40px 80px;
    margin-bottom: 60px;
  }

  .schedule-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    font-size: 1.1rem;
  }

  .schedule-time {
    font-weight: bold;
    min-width: 80px;
  }/*ここまでschedule*/
	/*ここからQ&A*/
	 /* Q&A ラベル 左上 + 逆L字 + 反射 */
 #qna {padding-top: 80px;
  margin-top: 100px;
}
  /* Q&A ラベル：左上 + 逆L字 + 反射 */
  .qna-label {
    position: relative;
    top: 0;
    left: 20px;
    right: auto;
    font-size: 2.4rem;
    font-family: 'Caveat', cursive;
    border-top: 4px solid black;
    border-right: 4px solid black;
    border-bottom: none;
    border-left: none;
    padding: 10px 20px;
    margin-bottom: 80px;
    display: inline-block;
    text-align: left;
  }

  .qna-label::after {
    content: "Q＆A";
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 2.4rem;
    font-family: 'Caveat', cursive;
    color: rgba(0, 0, 0, 0.08);
    transform: scaleY(-1);
    line-height: 1;
    pointer-events: none;
  }

  /* Q&Aの本文（アコーディオン）中央寄せ */
	.accordion-question {font-size: 1.4rem;}
	.accordion-answer {
  background: #FFFFFF 25%;
  display: none;
  padding: 12px;
  font-size: 1.4rem; /* ← ここを大きくした */
  color: #333;
  line-height: 2;
}
  .accordion {
    margin: 0 auto;
    max-width: 800px;
    text-align: left;
  }/*ここまでがキューアンドエー*/
	/*ここからcustomer'svoice*/
.voice-name {
  font-weight: bold;
  font-size: 1.3rem; /* ← 大きめに変更 */
  margin-bottom: 0.4em;
}

.voice-comment {
  font-size: 1.1rem;  /* ← ここを大きく */
  line-height: 2;     /* 行間も少し広げて読みやすく */
  color: #333;
  text-align: center;
}/*ここからaccess*/
	 .access-info p,
  .access-desc p {
    font-size: 1.2rem;
    line-height: 2;
  }

  .access-label {
    font-size: 2.4rem;
  }
	/*ここまでaccess*/
/*ここからfooter*/
	footer {
    font-size: 1.1rem;
    padding: 60px 40px;
  }

  .footer-nav ul {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

  .footer-nav a {
    font-size: 1.1rem;
  }

  .footer-copy {
    font-size: 1.2rem;
    margin-top: 30px;
  }

  .footer-btn {
    font-size: 1rem;
    padding: 12px 26px;
  }

  .footer-sns img {
    height: 36px;
  }
	/*ここまでがfooter*/
	 #access,
  footer {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
   margin: 0;
	}
}
