:root {
  --color-base: #fcfaf6;
  --color-surface: rgba(255, 250, 243, 0.9);
  --color-surface-strong: rgba(255, 255, 255, 0.94);
  --color-text: #16110f;
  --color-muted: #57463f;
  --color-accent: #f07c22;
  --color-accent-deep: #cb5d0a;
  --color-accent-soft: #f7d6b4;
  --shadow-card: 0 20px 60px rgba(36, 22, 14, 0.18);
  --shadow-button: 0 14px 24px rgba(240, 124, 34, 0.28);
  --radius-card: 28px;
  --radius-pill: 999px;
  --content-max: 31rem;
  --primary-beige: #f9f7f2;
  --accent-red: #9c3d3d;
  --onzs-dark: #2c2c2c;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Kosugi Maru", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(247, 214, 180, 0.65), transparent 34%),
    linear-gradient(180deg, #fffdfa 0%, #f7f0e8 100%);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* --- Loading Animation --- */
body.is-loading {
  overflow: hidden;
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #FFFCE4; /* ロゴの背景色に合わせたクリーム色 */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading__inner {
  text-align: center;
}

.loading__logo {
  width: min(300px, 70vw); /* スマホ・タブレットでのサイズ */
  height: auto;
  opacity: 0;
  transform: translateY(10px);
  animation: loadingLogoIn 1.0s ease forwards;
}

@media (min-width: 768px) {
  .loading__logo {
    width: min(500px, 80vw); /* パソコン向けにサイズをアップ */
  }
}

@keyframes loadingLogoIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ------------------------- */

img {
  max-width: 100%;
  display: block;
}

.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
  .pc-only {
    display: none !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: clip;
}

/* Remake FV Section */
.fv-new {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #D93924;
  border: 30px solid #FFFCE4;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 0;
}

.fv-new__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.fv-new__main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv-new__main-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.fv-new__slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-top: 5px solid #FFFCE4;
  border-bottom: 5px solid #FFFCE4;
  background: #D93924;
  padding: 20px 0;
}

.fv-new__slider-track {
  display: flex;
  width: max-content;
  animation: fvSlide 30s linear infinite;
}

.fv-new__slider-img {
  height: 360px;
  width: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 12px;
}

@keyframes fvSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .fv-new {
    min-height: auto; /* 100vhの強制解除で無駄な余白を削減 */
    padding: 25px 0 50px;  /* トップのみ半分にし、ボトムは50pxを維持 */
    border-top: none;
    border-bottom: none;
    border-left-width: 15px;
    border-right-width: 15px;
  }

  .fv-new__inner {
    gap: 8px; /* メイン画像とスライダー間の隙間をさらに削減 */
  }

  .fv-new__slider {
    padding: 10px 0; /* ボトム側（スライダー周り）は元の厚みに戻す */
  }
  
  .fv-new__slider-img {
    height: 180px;
  }
}

.section--reviews-image {
  background-color: #FFFCE4;
  padding: 80px 0;
}

.section__inner--full {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.reviews-image-box {
  width: 100%;
  display: flex;
  justify-content: center;
}

.reviews-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(48, 32, 21, 0.1);
}

@media (max-width: 768px) {
  .section--reviews-image {
    padding: 40px 0;
  }
  
  .section__inner--full {
    padding: 0 20px;
  }
}

.section {
  position: relative;
  padding: 78px 0;
}

.section--scenes {
  position: relative;
  padding-top: 88px;
  isolation: isolate;
}

.section--scenes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.5) 0%, rgba(255, 248, 240, 0.56) 100%),
    url("../img/scenes_bg.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.section--scenes::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.section--about {
  background-color: #FFFCE4;
  padding-top: 22px;
  padding-bottom: 92px;
}

.section--points {
  position: relative;
  isolation: isolate;
  padding: 100px 0 110px;
}

.section--points::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%),
    url("../img/service_bg.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.section--points::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #00000069;
}

.section--points .section-heading__title,
.section--points .section-heading__note {
  color: #fffaf3;
}

.section--points .section-heading__eyebrow {
  background: linear-gradient(135deg, rgba(255, 183, 103, 0.9) 0%, rgba(240, 124, 34, 0.9) 100%);
  color: #fffdf9;
}

.section--menu {
  position: relative;
  isolation: isolate;
  padding: 100px 0 110px;
}

.section--menu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.3) 0%, rgba(255, 250, 243, 0.4) 100%),
    url("../img/recommend_bg.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.section--menu::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.section--accordion {
  position: relative;
  isolation: isolate;
  padding: 100px 0 120px;
  text-align: center;
}

.section--accordion .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.section--accordion .section-heading__eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section--accordion::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, #fffcf2 0%, #fffcf275 100%),
    url("../img/menu_bg.jpg") center / cover no-repeat;
  background-attachment: fixed;
}


.section--reviews {
  position: relative;
  isolation: isolate;
  padding: 100px 0 120px;
}

.section--reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, #fffcf2 0%, #fffcf275 100%),
    url("../img/voice_01.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.section--message {
  background-color: #FFFCE4;
  padding-top: 60px;
  padding-bottom: 132px;
}

.section--group {
  background-color: #FFFCE4;
  padding-top: 60px;
  padding-bottom: 140px;
}

.section--cta-band {
  background-color: #D93924;
  padding-top: 80px;
  padding-bottom: 124px;
}

.section--cta-band .section-heading__eyebrow,
.section--cta-band .section-heading__title,
.section--cta-band .cta-band__text {
  color: #fff !important;
}

.section--cta-band .cta-band {
  background: transparent;
  box-shadow: none;
}

.section--contact {
  position: relative;
  isolation: isolate;
  padding-top: 0;
  padding-bottom: 148px;
}

.section--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.3) 0%, rgba(255, 250, 243, 0.4) 100%),
    url("../img/contact_bg.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.section--faq {
  position: relative;
  isolation: isolate;
  padding-top: 60px;
  padding-bottom: 120px;
}

.section--faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.4) 0%, rgb(0 0 0 / 52%) 100%), url(../img/qa_bg.jpg) center / cover no-repeat;
  background-attachment: fixed;
}

.section--faq .section-heading__title {
  color: #f1e7e3;
}

.section__inner {
  width: min(100% - 36px, 1120px);
  margin: 0 auto;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 28px;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(247, 214, 180, 0.92) 0%, rgba(255, 242, 228, 0.92) 100%);
  color: var(--color-accent-deep);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.section-heading__title {
  margin: 0;
  color: #8d482c;
  font-family: "Sawarabi Mincho", serif;
  font-size: clamp(1.48rem, 4.4vw, 2.32rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 800;
}

.section-heading__note {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

.other-menu-visual {
  max-width: 600px;
  margin: 32px auto 24px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(48, 32, 21, 0.12);
}

.other-menu-visual__image {
  width: 100%;
  height: auto;
  display: block;
}

.section-heading__eyebrow--center {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 20px;
  text-align: center;
}

.scenes {
  position: relative;
  padding: 24px 18px 22px;
  border: 1px solid rgba(234, 201, 171, 0.7);
  border-radius: 30px;
  background: #FFFCE4;
  box-shadow: 0 20px 55px rgba(48, 32, 21, 0.08);
}

.scenes::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(247, 214, 180, 0.7);
  border-radius: 22px;
  pointer-events: none;
}

.scenes__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenes__item {
  position: relative;
  padding: 15px 16px 15px 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-text);
  font-size: 0.97rem;
  line-height: 1.75;
  box-shadow: inset 0 0 0 1px rgba(243, 220, 194, 0.7);
}

.scenes__item::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(240, 124, 34, 0.95);
  background: #fffdf9;
  color: var(--color-accent-deep);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(240, 124, 34, 0.18);
  transform: translateY(-50%);
}

.scenes__closing {
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.9;
  text-align: center;
}

.scenes__cta {
  text-align: center;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 56px;
  padding: 14px 48px;
  color: #16110f;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  background: #fff;
  outline: 1px solid #16110f;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s;
  animation: poyoPoyo 3s ease-in-out infinite;
  border-radius: 0;
}

.section-cta::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  z-index: -1;
  transition: all 0.3s ease;
}

.section-cta:hover {
  transform: translate(2px, 2px);
}

.section-cta:hover::before {
  top: 0;
  left: 0;
}

.section-cta--ghost {
  background: #fff;
}

.cta-logo {
  height: 24px;
  width: auto;
  display: block;
}

.instagram-icon-only {
  display: inline-block;
  vertical-align: middle;
  transition: opacity 0.3s, transform 0.3s;
  margin-left: 14px;
}

.instagram-icon-only img {
  width: 44px; /* アイコンを少し大きく */
  height: auto;
  display: block;
}

.instagram-icon-only:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.about {
  display: grid;
  gap: 22px;
}

.about__body {
  padding: 26px 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(247, 214, 180, 0.45), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 244, 236, 0.94) 100%);
  box-shadow: 0 20px 55px rgba(48, 32, 21, 0.08);
  text-align: center; /* 左寄せからセンターに変更 */
}

.about__text {
  margin-top: 18px;
  text-align: left;
}

.about__text p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.97rem;
  line-height: 1.95;
}

.about__text p + p {
  margin-top: 14px;
}

.about-card {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(48, 32, 21, 0.12);
}

.about-card__image {
  aspect-ratio: 4 / 5.3;
  width: 100%;
  object-fit: cover;
  display: block;
}

.group-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about-card__caption {
  padding: 18px 18px 20px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.points {
  display: grid;
  gap: 22px;
}

.point-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #FFFCE4;
  box-shadow: 0 20px 50px rgba(48, 32, 21, 0.08);
  display: flex;
  flex-direction: column;
}

.point-card__visual {
  position: relative;
  background: #FFFCE4;
  padding-top: 56px;
}

.point-card__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.point-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  width: 72px;
  height: 72px;
  border-radius: 50% 50% 0 50%;
  background: linear-gradient(135deg, #2f2621 0%, #16110f 100%);
  color: #fffaf3;
  font-family: "Sawarabi Mincho", serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 20px rgba(22, 17, 15, 0.2);
}

.point-card__number--01 {
  background: linear-gradient(135deg, #2f2621 0%, #16110f 100%);
}

.point-card__number--02 {
  background: linear-gradient(135deg, #f08b2c 0%, #cf5f0e 100%);
}

.point-card__number--03 {
  background: linear-gradient(135deg, #b9925c 0%, #8d6944 100%);
}

.point-card__body {
  padding: 22px 18px 24px;
}

.point-card__title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .point-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
  }
  .point-card__number {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }
  .point-card__title {
    font-size: 1.15rem;
    text-align: left;
  }
}

.point-card__text {
  margin-top: 14px;
}

.point-card__text p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.95;
}

.point-card__text p + p {
  margin-top: 12px;
}

.points__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.menu-grid {
  display: grid;
  gap: 20px;
}

.menu-card {
  overflow: hidden;
  border-radius: 30px;
  background: #FFFCE4;
  box-shadow: 0 20px 55px rgba(48, 32, 21, 0.1);
}

.menu-card__visual {
  position: relative;
}

.menu-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.menu-card__body {
  padding: 22px 18px 24px;
}

.menu-card__title {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.menu-card__text {
  margin-top: 14px;
}

.menu-card__text p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.95;
}

.menu-card__text p + p {
  margin-top: 12px;
}

.course-box {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  padding: 24px 18px;
  border: 1px solid rgba(234, 201, 171, 0.7);
  border-radius: 30px;
  background: #FFFCE4;
  box-shadow: 0 20px 55px rgba(48, 32, 21, 0.08);
}

.course-box__eyebrow {
  margin: 0 0 10px;
  color: var(--color-accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-box__title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.45;
}

.course-box__text {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.9;
}

.menu-accordion {
  display: grid;
  gap: 14px;
}

.menu-accordion__item {
  overflow: hidden;
  border: 1px solid rgba(234, 201, 171, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 246, 239, 0.96) 100%);
  box-shadow: 0 16px 40px rgba(48, 32, 21, 0.08);
}

.menu-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 18px 20px;
  cursor: pointer;
  list-style: none;
}

.menu-accordion__summary::-webkit-details-marker {
  display: none;
}

.menu-accordion__title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.5;
}

.menu-accordion__icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 183, 103, 0.3) 0%, rgba(240, 124, 34, 0.18) 100%);
}

.menu-accordion__icon::before,
.menu-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent-deep);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.menu-accordion__item[open] .menu-accordion__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.menu-accordion__content {
  padding: 0 20px 20px;
  border-top: 1px solid rgba(243, 220, 194, 0.8);
}

.menu-accordion__lead {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.menu-accordion__list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.menu-accordion__list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.8;
}

.menu-accordion__list li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb567 0%, var(--color-accent) 100%);
  transform: translateY(-50%);
}

.reviews-grid {
  display: grid;
  gap: 18px;
}

.review-card {
  padding: 24px 18px;
  border-radius: 28px;
  background: #FFFCE4;
  box-shadow: 0 18px 46px rgba(48, 32, 21, 0.08);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.review-card__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.review-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  margin: 0;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(255, 183, 103, 0.28) 0%, rgba(240, 124, 34, 0.16) 100%);
  color: var(--color-accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.review-card__title {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.55;
}

.review-card__text {
  margin-top: 14px;
}

.review-card__text p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.95;
}

.review-card__text p + p {
  margin-top: 12px;
}

.reviews-cta {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: 28px;
}

.reviews-cta__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.85;
  text-align: center;
}

.section-cta--external {
  text-align: center;
}

.message-box {
  padding: 32px 24px;
  border: 1px solid rgba(234, 201, 171, 0.72);
  border-radius: 36px;
  background: #FFFCE4;
  box-shadow: 0 20px 55px rgba(48, 32, 21, 0.08);
}

.message-box__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.message-box__visual {
  width: 100%;
}

.message-box__image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(48, 32, 21, 0.12);
  object-fit: cover;
}

.message-box__text {
  margin-top: 18px;
}

.message-box__text p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 2;
}

.message-box__text p + p {
  margin-top: 14px;
}

.message-box .section-cta {
  margin-top: 24px;
}

.group-grid {
  display: grid;
  gap: 22px;
}

.group-card {
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 246, 239, 0.96) 100%);
  box-shadow: 0 20px 55px rgba(48, 32, 21, 0.08);
}

.group-card__body {
  padding: 24px 18px;
}

.group-card__title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.45;
}

.group-card__lead {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.9;
}

.group-card__info {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.group-card__info div {
  display: grid;
  gap: 4px;
}

.group-card__info dt {
  color: var(--color-accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.group-card__info dd {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.8;
}

.group-card__info a {
  color: var(--color-accent-deep);
  font-weight: 700;
}

.group-card__phone-action {
  margin-top: 12px;
}

.group-card__phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 10px 20px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50px; /* カプセル型に変更 */
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  z-index: 5;
  animation: poyoPoyo 3s ease-in-out infinite;
}

.group-card__phone-btn::before {
  display: none; /* 従来の影（角ばったもの）は不要なため非表示に */
}

.group-card__phone-btn:hover {
  transform: translate(2px, 2px);
}

.group-card__phone-btn:hover::before {
  top: 0;
  left: 0;
}

.group-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  width: 100%;
  max-width: 200px;
  min-height: 44px;
  padding: 10px 20px;
  color: #16110f;
  background: #fff;
  outline: 1px solid #16110f;
  position: relative;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s;
  animation: poyoPoyo 3s ease-in-out infinite;
  border-radius: 0;
}

.group-card__link::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  z-index: -1;
  transition: all 0.3s ease;
}

.group-card__link:hover {
  transform: translate(2px, 2px);
}

.group-card__link:hover::before {
  top: 0;
  left: 0;
}

/* 各店舗ごとの色味変更 */
/* 1件目：おくざしき */
.group-grid > *:nth-child(1) .group-card__link,
.group-grid > *:nth-child(1) .group-card__phone-btn {
  background: #16110f;
  color: #fff;
  outline: 1px solid #fff;
}

.group-grid > *:nth-child(1) .group-card__link::before {
  background: #16110f;
}

/* 2件目：ヲ魚 */
.group-grid > *:nth-child(2) .group-card__link,
.group-grid > *:nth-child(2) .group-card__phone-btn {
  background: #3a8fb7;
  color: #fff;
  outline: 1px solid #fff;
}

.group-grid > *:nth-child(2) .group-card__link::before {
  background: #3a8fb7;
}

/* 3件目：お酋 */
.group-grid > *:nth-child(3) .group-card__link,
.group-grid > *:nth-child(3) .group-card__phone-btn {
  background: #5b7e5f;
  color: #fff;
  outline: 1px solid #fff;
}

.group-grid > *:nth-child(3) .group-card__link::before {
  background: #5b7e5f;
}

/* SNS Section */
.sns-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.sns-grid__item {
  width: 100%;
  max-width: 400px;
  flex: 0 1 auto;
}

@media (max-width: 1024px) {
  .sns-grid {
    gap: 20px;
  }
}

.group-card__map {
  height: 260px;
  background: #f4eadf;
}

.cta-band {
  padding: 30px 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 183, 103, 0.38), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.98) 0%, rgba(247, 214, 180, 0.92) 100%);
  box-shadow: 0 24px 60px rgba(48, 32, 21, 0.12);
  text-align: center;
}

.cta-band__text {
  max-width: 46rem;
  margin: 18px auto 0;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.95;
}

.cta-band__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 62px;
  padding: 16px 32px;
  color: #16110f;
  background: #fff;
  outline: 1px solid #16110f;
  position: relative;
  z-index: 5;
  transition: all 0.3s;
  animation: poyoPoyo 3s ease-in-out infinite;
  border-radius: 0;
}

.cta-band__phone::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  background: var(--color-accent-soft);
  z-index: -1;
  transition: all 0.3s ease;
}

.cta-band__phone:hover {
  transform: translate(2px, 2px);
}

.cta-band__phone:hover::before {
  top: 0;
  left: 0;
}

.cta-band__phone-label {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.contact-box {
  display: grid;
  gap: 22px;
  padding: 28px 18px;
  border: 1px solid rgba(234, 201, 171, 0.72);
  border-radius: 32px;
  background: #FFFCE4;
  box-shadow: 0 20px 55px rgba(48, 32, 21, 0.08);
}

.contact-box__main {
  display: grid;
  gap: 22px;
}

.contact-box__info {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.contact-box__info div {
  display: grid;
  gap: 4px;
}

.contact-box__info dt {
  color: var(--color-accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contact-box__info dd {
  margin: 0;
  color: var(--color-text);
  font-size: 0.97rem;
  line-height: 1.8;
}

.contact-box__info a {
  color: var(--color-accent-deep);
  font-weight: 700;
}

.contact-box__actions {
  display: grid;
  gap: 14px;
}

.contact-box__map {
  overflow: hidden;
  height: 280px;
  border-radius: 24px;
  background: #f4eadf;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-accordion__item {
  overflow: hidden;
  border: 1px solid rgba(234, 201, 171, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 246, 239, 0.96) 100%);
  box-shadow: 0 16px 40px rgba(48, 32, 21, 0.08);
}

.faq-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 18px 20px;
  cursor: pointer;
  list-style: none;
}

.faq-accordion__summary::-webkit-details-marker {
  display: none;
}

.faq-accordion__question {
  color: var(--color-text);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.7;
}

.faq-accordion__icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 183, 103, 0.3) 0%, rgba(240, 124, 34, 0.18) 100%);
}

.faq-accordion__icon::before,
.faq-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent-deep);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion__item[open] .faq-accordion__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-accordion__content {
  padding: 0 20px 20px;
  border-top: 1px solid rgba(243, 220, 194, 0.8);
}

.faq-accordion__answer {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.9;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .section {
    padding: 104px 0;
  }

  .section--about {
    padding-top: 32px;
    padding-bottom: 120px;
  }

  .section--points {
    padding: 128px 0 144px;
  }

  .section--menu {
    padding: 140px 0 160px;
  }

  .section--accordion {
    padding: 128px 0 144px;
  }

  .section--reviews {
    padding-bottom: 144px;
  }

  .section--message {
    padding-bottom: 156px;
  }

  .section--group {
    padding-bottom: 168px;
  }

  .section--cta-band {
    padding-bottom: 144px;
  }

  .section--contact {
    padding-bottom: 176px;
  }

  .section--faq {
    padding-bottom: 144px;
  }

  .section__inner {
    width: min(100% - 80px, 1120px);
  }

  .scenes {
    padding: 28px;
  }

  .scenes__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    align-items: center;
  }

  .about__body {
    padding: 34px 32px;
  }

  .about__visual {
    align-self: stretch;
  }

  .about-card {
    height: 100%;
  }

  .about-card__image {
    height: 100%;
    min-height: 560px;
    aspect-ratio: auto;
  }

  .point-card {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .point-card__body {
    position: static;
    transform: none;
    width: 100%;
    height: 100%;
    padding: 36px 32px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .menu-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .menu-card__body {
    padding: 24px 22px 26px;
  }

  .course-box {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 30px 28px;
  }

  .menu-accordion {
    gap: 18px;
  }

  .menu-accordion__summary {
    padding: 22px 24px 22px 26px;
  }

  .menu-accordion__title {
    font-size: 1.12rem;
  }

  .menu-accordion__content {
    padding: 0 26px 24px;
  }

  .menu-accordion__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .review-card {
    padding: 28px 24px;
  }

  .message-box {
    padding: 0; /* Let grid control internal spacing or handle it in grid */
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .message-box__grid {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 56px 48px;
    border: 1px solid rgba(234, 201, 171, 0.72);
    border-radius: 48px;
    background: #FFFCE4;
    box-shadow: 0 25px 65px rgba(48, 32, 21, 0.08);
  }

  .message-box__visual {
    flex: 0 0 340px;
  }

  .message-box__content {
    flex: 1;
  }

  .group-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: stretch;
  }

  .cta-band {
    padding: 42px 32px;
  }

  .contact-box {
    gap: 28px;
    padding: 36px 32px;
  }

  .contact-box__main {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .contact-box__actions {
    min-width: 240px;
  }

  .contact-box__map {
    height: 340px;
  }

  .faq-accordion {
    gap: 18px;
  }

  .faq-accordion__summary {
    padding: 22px 24px 22px 26px;
  }

  .faq-accordion__question {
    font-size: 1.08rem;
  }

  .faq-accordion__content {
    padding: 0 26px 24px;
  }

  .group-card__body {
    padding: 28px 26px;
  }

  .group-card__map {
    height: 100%;
    min-height: 320px;
  }
}

@media (min-width: 1024px) {
  .about__body {
    padding: 40px 40px 34px;
  }

  .section--about .section__inner {
    width: min(100%, 1440px);
  }

  .about {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    border-radius: 0;
    overflow: hidden;
  }

  .about__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 680px;
    padding: 64px 64px 56px;
    border-radius: 0;
  }

  .about__visual {
    min-width: 0;
  }

  .about-card {
    height: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .about-card__image {
    min-height: 680px;
  }

  .about-card__caption {
    display: none;
  }

  .section-heading__title {
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  }

  .points {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .point-card {
    flex-direction: row;
    align-items: stretch; /* Stretch to fill the frame vertically */
    min-height: 480px;
    background: #FFFCE4;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(48, 32, 21, 0.08);
    overflow: hidden;
  }

  .point-card--reverse {
    flex-direction: row-reverse;
  }

  .point-card__visual {
    flex: 0 0 52%;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .point-card__image {
    aspect-ratio: 16 / 12;
  }

  .point-card__body {
    flex: 1;
    padding: 64px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .point-card--reverse .point-card__body {
    margin-right: 0;
  }

  .point-card__title {
    font-size: 1.4rem;
  }

  .point-card__number {
    width: 84px;
    height: 84px;
    font-size: 1.5rem;
  }

  .menu-card__body {
    padding: 28px 26px 30px;
  }

  .menu-card__title,
  .course-box__title {
    font-size: 1.45rem;
  }

  .course-box {
    padding: 34px 32px;
  }

  .menu-accordion__title {
    font-size: 1.18rem;
  }

  .review-card {
    padding: 32px 28px;
  }

  .review-card__title {
    font-size: 1.32rem;
  }

  .message-box {
    padding: 42px 40px;
  }

  .group-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .cta-band {
    padding: 48px 40px;
  }

  .cta-band__phone:hover,
  .cta-band__phone:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(240, 124, 34, 0.32);
    filter: saturate(1.05);
  }

  .contact-box {
    padding: 42px 40px;
  }

  .contact-box__map {
    height: 380px;
  }

  .group-card {
    grid-template-columns: 1fr;
  }

  .group-card__body {
    padding: 34px 32px;
  }

  .group-card__map {
    height: 260px;
    min-height: 260px;
  }

  .faq-accordion__question {
    font-size: 1.14rem;
  }

  .group-card__title {
    font-size: 1.45rem;
  }

  .section-heading__eyebrow {
    font-size: 1.24rem;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  background-color: #FFFCE4;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.site-header__inner {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header__logo {
  margin: 0;
  color: #fff;
  font-family: "Sawarabi Mincho", serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.site-header__nav ul {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav a {
  color: #16110f;
  font-size: 1rem;
  font-weight: 800;
  transition: opacity 0.3s;
}

.site-header__nav a:hover {
  opacity: 0.7;
}

/* Footer */
.site-footer {
  background-color: #16110f;
  color: #fff;
  padding: 60px 0 100px;
  text-align: center;
}

.site-footer__inner {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}

.site-footer__logo {
  font-family: "Sawarabi Mincho", serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.site-footer__address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.8;
}

.site-footer__address a {
  color: #fff;
  text-decoration: underline;
}

.site-footer__copy {
  font-size: 0.75rem;
  opacity: 0.5;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-sticky-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background: #D93924;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  text-decoration: none;
  animation: poyoPoyo 3s ease-in-out infinite;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: #16110f;
  border-radius: 50%;
  z-index: 980;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top span {
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: 4px;
}

/* Hamburger Button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2000; /* さらに高い値を設定 */
  position: relative;
  margin-left: auto;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  position: absolute;
  left: 10px; /* (44 - 24) / 2 */
  width: 24px;
  height: 2px;
  background-color: #16110f;
  transition: all 0.3s;
}

.hamburger-btn span:nth-child(1) { top: 13px; }
.hamburger-btn span:nth-child(2) { top: 21px; }
.hamburger-btn span:nth-child(3) { top: 29px; }

.hamburger-btn.is-active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .site-header__nav {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(255, 252, 228, 0.98);
    backdrop-filter: blur(5px);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    
    /* 中央揃えの設定 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .site-header__nav.is-active {
    opacity: 1;
    visibility: visible;
  }
  
  .site-header__nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .site-header__nav a {
    font-size: 1.25rem;
  }

  .site-header__nav-cta {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .nav-cta-btn {
    display: block; /* <br>を確実に機能させるためブロック表示に変更 */
    width: 90%;
    max-width: 280px;
    margin: 0 auto;
    padding: 18px 10px;
    background: #fff;
    color: #16110f;
    border: 1px solid #16110f;
    text-align: center; /* 2行のテキストを完全に中央揃えに */
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
    white-space: normal; /* 改行を許可 */
    position: relative;
    z-index: 5;
    animation: poyoPoyo 3s ease-in-out infinite;
  }

  .nav-cta-btn::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    z-index: -1;
  }
  
  .mobile-sticky-cta {
    display: block;
  }
  
  .back-to-top {
    bottom: 86px; /* Offset for Mobile CTA */
  }
}

@keyframes poyoPoyo {
  0%, 15%, 100% { transform: scale(1); }
  5% { transform: scale(1.04, 0.96); }
  10% { transform: scale(0.97, 1.03); }
}


