/* ===== CSS変数 ===== */
:root {
  --green-dark:   #3a5a3c;
  --green-main:   #4f6f52;
  --green-mid:    #6b8a4e;
  --green-light:  #a3b18a;
  --green-pale:   #dce8d4;
  --cream:        #f8f5ef;
  --text-dark:    #2c2c2c;
  --text-mid:     #555;
  --text-light:   #888;
  --white:        #fff;
  --shadow:       0 12px 40px rgba(60,80,40,0.15);
  --radius:       16px;
}

/* ===== リセット ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== ベース ===== */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
  background: var(--cream);
}

/* ===== タイポグラフィ共通 ===== */
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-label.light { color: rgba(255,255,255,0.5); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 6px;
  color: var(--green-dark);
  line-height: 1.1;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-light);
  margin-top: 6px;
  margin-bottom: 50px;
}
.section-sub.light { color: rgba(255,255,255,0.6); }

/* ===== セクション共通 ===== */
section {
  width: 100%;
  padding: 100px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(20,40,20,0.45) 60%,
    rgba(10,25,10,0.65) 100%
  );
  z-index: 1;
}

.hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 90%;
}

.hero-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 6px;
  opacity: 0.85;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1.3;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin-bottom: 32px;
}

.hero-title span {
  display: block;
}

.hero-title-en {
  font-style: normal;
  font-size: 0.65em;
  letter-spacing: 10px;
  opacity: 0.95;
}

.hero-title-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 0.28em;
  letter-spacing: 8px;
  opacity: 0.9;
  margin-top: 4px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 40px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 4px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.1);
  transition: all 0.4s;
}
.hero-btn:hover {
  background: var(--green-main);
  border-color: var(--green-main);
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--white);
}

/* ===== NAV ===== */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 16px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--green-pale);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(60,80,40,0.08);
}

nav a {
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 40px;
  color: var(--green-dark);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 12px;
  letter-spacing: 3px;
  transition: all 0.3s;
  border: 1px solid transparent;
}
nav a:hover {
  border-color: var(--green-main);
  color: var(--green-main);
}

/* ===== SERVICE ===== */
#about {
  background: var(--white);
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 2枚重ね画像 → 1枚＋背景デコ */
.stacked-images {
  position: relative;
  width: 380px;
  height: 420px;
  flex-shrink: 0;
}

/* 背景の影ブロック（ずらした四角） */
.stacked-images::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 300px;
  height: 380px;
  background: var(--green-light);
  opacity: 0.35;
  z-index: 0;
  box-shadow: 8px 16px 40px rgba(40,60,30,0.18), 2px 4px 12px rgba(40,60,30,0.1);
}

.img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 8px 16px 40px rgba(40,60,30,0.28), 2px 4px 12px rgba(40,60,30,0.15);
  z-index: 1;
}

/* img-front は非表示 */
.img-front {
  display: none;
}

.about-text {
  max-width: 440px;
}

.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--green-dark);
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--green-pale);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  color: var(--green-light);
  font-size: 10px;
}

/* ===== ABOUT ===== */
#point {
  background: var(--green-pale);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-body {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 2;
  margin-top: 16px;
  margin-bottom: 20px;
}

.about-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-detail p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 2;
  padding-left: 12px;
  border-left: 2px solid var(--green-light);
  word-break: normal;
  overflow-wrap: break-word;
}

/* 2枚ずらし重ね → 1枚＋背景デコ */
.overlap-images {
  position: relative;
  width: 380px;
  height: 420px;
  flex-shrink: 0;
}

/* 背景の影ブロック（右下にずらした四角） */
.overlap-images::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 300px;
  height: 380px;
  background: var(--white);
  opacity: 1;
  z-index: 0;
  box-shadow: 8px 16px 40px rgba(40,60,30,0.18), 2px 4px 12px rgba(40,60,30,0.1);
}

.overlap-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 8px 16px 40px rgba(40,60,30,0.28), 2px 4px 12px rgba(40,60,30,0.15);
  z-index: 1;
}

/* overlap-img-sub は非表示 */
.overlap-img-sub {
  display: none;
}

/* ===== GALLERY ===== */
#gallery {
  background: var(--white);
  padding-bottom: 0;
}

.gallery-scroll-wrap {
  width: 100%;
  overflow-x: auto;
  padding: 0 40px 60px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-scroll-wrap::-webkit-scrollbar {
  display: none;
}
.gallery-scroll-wrap:active {
  cursor: grabbing;
}

.gallery-scroll {
  display: flex;
  gap: 16px;
  width: max-content;
}

.gallery-scroll-item {
  position: relative;
  width: 300px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.gallery-scroll-item:hover {
  transform: translateY(-8px);
}

.gallery-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-scroll-item:hover img {
  transform: scale(1.05);
}

/* スマホ */
@media (max-width: 768px) {
  .gallery-scroll-wrap {
    padding: 0 20px 40px;
  }
  .gallery-scroll-item {
    width: 220px;
    height: 300px;
    border-radius: 12px;
  }
}

/* ===== INSTAGRAM ===== */
.instagram-section {
  background: url('imagesTem/Tem8.jpg') center/cover no-repeat;
  position: relative;
  padding: 0;
}

.instagram-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,40,20,0.55);
}

.insta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 20px;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 40px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 3px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.1);
  transition: all 0.4s;
}
.insta-btn:hover {
  background: var(--green-main);
  border-color: var(--green-main);
}

/* ===== SCHEDULE ===== */
#menu {
  background: var(--green-pale);
}

.schedule-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.schedule-item {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.schedule-item:hover {
  transform: translateY(-4px);
}

.schedule-item img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

.schedule-label {
  position: absolute;
  top: 0;            /* bottom: 0; から変更 */
  left: 0;
  right: 0;
  background: rgba(58, 90, 60, 0.75);
  color: var(--white);
  text-align: center;
  padding: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 3px;
  /* 画像の上の角の丸みに合わせるための設定（任意） */
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.schedule-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.85);
  color: var(--green-dark);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* ===== STAFF ===== */
#staff {
  background: var(--white);
}

.staff-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.staff-card {
  text-align: center;
  width: 240px;
}

.staff-img-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
}

.staff-img-wrap img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 6px 12px 30px rgba(40,60,30,0.25), 0 4px 10px rgba(40,60,30,0.15);
}

/* 画像の後ろにずれた装飾ボックス */
.staff-img-deco {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid var(--green-light);
  top: 16px;
  left: 16px;
  z-index: 0;
  box-shadow: 4px 8px 20px rgba(40,60,30,0.15);
}

.staff-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.staff-role {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 100;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--green-light);
  margin-bottom: 10px;
}

.staff-comment {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== RESERVE ===== */
.reserve-section {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reserve-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reserve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,30,10,0.5);
}

.reserve-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 20px;
}

.reserve-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 16px 48px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 40px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: 4px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.1);
  transition: all 0.4s;
}
.reserve-btn:hover {
  background: var(--green-main);
  border-color: var(--green-main);
}

/* ===== ACCESS ===== */
#map {
  background: var(--green-pale);
}

.access-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.access-photo {
  flex-shrink: 0;
  width: 280px;
}

.access-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.access-info {
  min-width: 200px;
}

.address {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-mid);
  font-weight: 300;
}

.map {
  flex: 1;
  min-width: 280px;
}

.map iframe {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 50px 20px 30px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 6px;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
}

/* ===== レスポンシブ ===== */
.sp-only { display: none; }

@media (max-width: 768px) {
  .sp-only { display: inline; }
  section { padding: 70px 16px; }

  .about-flex,
  .about-content,
  .access-flex {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .stacked-images,
  .overlap-images {
    width: 292px;
    height: 352px;
  }

  .img-back { width: 260px; height: 320px; }
  .stacked-images::before {
    width: 260px;
    height: 320px;
    top: 12px;
    left: 12px;
  }
  .overlap-img-main {
    width: 260px;
    height: 320px;
    top: 0;
    left: 0;
  }
  .overlap-images::before {
    width: 260px;
    height: 320px;
    top: 12px;
    left: 12px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item.large { grid-row: span 1; }

  .staff-grid { gap: 40px; }

  nav a {
    font-size: 11px;
    padding: 6px 14px;
    letter-spacing: 2px;
  }
}
/* ===== STAFF内の装飾ボックスを非表示にする ===== */
.staff-img-deco {
  display: none; /* これを追加して非表示にします */
  /* もしくは、このブロック全体を削除してもOKです */
}
.staff-comment {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
  text-align: center; /* 中央揃えにする */
  display: block;
  margin: 10px auto 0;
  word-break: keep-all; /* 単語の途中での改行を防ぐ（ブラウザによります） */
  overflow-wrap: break-word;
}

/* スマホでの微調整 */
@media (max-width: 768px) {
  .staff-comment {
    font-size: 12px; /* スマホでは少しだけ小さくして、1行に収まりやすくする */
    padding: 0 10px; /* 左右に少し余白を作る */
  }
}
/* ===== SCHEDULE SLIDER ===== */
.schedule-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}

.schedule-month-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--green-dark);
  letter-spacing: 4px;
  min-width: 60px;
  text-align: center;
}

.schedule-nav-btn {
  background: none;
  border: 1px solid var(--green-light);
  color: var(--green-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-nav-btn:hover {
  background: var(--green-main);
  border-color: var(--green-main);
  color: var(--white);
}
.schedule-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.schedule-slider-wrap {
  overflow: hidden;
  width: 100%;
}

.schedule-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.schedule-slide {
  min-width: 100%;
}

/* ドット */
.schedule-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.schedule-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s;
}
.schedule-dot.active {
  opacity: 1;
  background: var(--green-main);
  width: 24px;
  border-radius: 4px;
}
/* 文字サイズの調整用に追加 */

.section-sub {
  font-size: 14px !important;
}

.about-body {
  font-size: 16px !important;
}

.about-detail p {
  font-size: 15px !important;
}

.staff-comment {
  font-size: 15px !important;
}

@media (max-width: 768px) {
  .staff-comment {
    font-size: 14px !important;
  }
}
