/* ========================================
   Dog Grooming Smiley
   Mobile First CSS
======================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Rounded Mplus 1c", sans-serif;
  background: #FFFCF8;
  color: #4A4540;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Variables --- */
:root {
  /* やわらかいセージグリーン */
  --color-primary: #B84460;
  --color-primary-dark: #94334B;
  --color-primary-gradient: linear-gradient(135deg, #D36884 0%, #B84460 100%);
  --color-primary-light: #FFF0F3;

  /* やわらかいコーラルピンク */
  --color-accent: #3F7C5B;
  --color-accent-dark: #2E5D44;
  --color-accent-gradient: linear-gradient(135deg, #5A9E79 0%, #3F7C5B 100%);
  --color-accent-light: #E8F4ED;

  /* あたたかいベース */
  --color-bg: #FFFCF8;
  --color-bg-alt: #FDF6F7;
  --color-bg-hero: #EFF7F1;
  --color-bg-warm: #FFF8F0;

  /* テキスト — 真っ黒ではなくブラウン寄り */
  --color-text: #4A4540;
  --color-text-dark: #3A3530;
  --color-text-light: #5F5A54;
  --color-text-muted: #6B6B6B;

  /* やわらかいボーダー */
  --color-border: #E8E2DB;
  --color-border-light: #F0EBE5;

  --color-dark: #5B9A6E;
  --color-line: #06C755;

  --font-display: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --font-body: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;

  /* 大きめの角丸 */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* 暖色のやわらかいシャドウ */
  --shadow-card: 0 6px 30px rgba(160, 140, 120, 0.08);
  --shadow-card-hover: 0 14px 40px rgba(160, 140, 120, 0.12);
  --shadow-cta: 0 8px 24px rgba(126, 184, 150, 0.25);

  --transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* --- Typography --- */
.font-display {
  font-family: var(--font-display);
}

.text-primary {
  color: var(--color-primary);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 800px;
}

.container--xs {
  max-width: 600px;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(160, 140, 120, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.header__menu-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.header__logo-img {
  height: clamp(150px, 22vw, 265px);
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: opacity 0.3s;
}

.header__logo-text {
  display: none;
  flex-direction: column;
  line-height: 1.2;
}

.header__logo-text-en {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
}

.header__logo-text-ja {
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  margin-top: 2px;
}

.header.is-scrolled .header__logo-img {
  display: none;
}

.header.is-scrolled .header__logo-text {
  display: flex;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header__nav {
  display: none;
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.header__menu-btn span {
  width: 24px;
  height: 2px;
  background: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  transition: var(--transition);
}

.header.is-scrolled .header__menu-btn span {
  background: var(--color-text);
  filter: none;
}

.header__menu-btn.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.header__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.is-open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: #fff;
  padding: 20px;
  border-top: 1px solid #eee;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav__cta {
  width: 100%;
  margin-top: 16px;
  background: var(--color-line);
  border-radius: 50px;
  padding: 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

/* --- Hero --- */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

/* Hero Background (single image) */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Hero Slider (multiple images) */
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero__slide--active {
  opacity: 1;
  z-index: 2;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero__catch-en {
  font-size: clamp(11px, 2.5vw, 14px);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__catch {
  font-size: clamp(26px, 6.5vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.hero__catch span {
  color: #fff;
}

.hero__sub {
  font-size: clamp(13px, 2.5vw, 16px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 300px;
}

/* 白アウトラインボタン */
.btn--outline-white {
  display: block;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.1);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
}

/* SCROLL */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
  text-align: center;
}

.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  margin: 8px auto 0;
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--color-primary-gradient);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(93, 173, 123, 0.4);
}

.btn--primary-lg {
  padding: 18px 32px;
  font-size: 15px;
}

.btn--outline {
  background: #fff;
  border: 1.5px solid #ddd;
  color: var(--color-text-light);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--line {
  background: var(--color-line);
  color: #fff;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
}

.btn--line:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(6, 199, 85, 0.45);
}

.btn--dark {
  background: var(--color-primary-gradient);
  color: #fff;
}

.btn--block {
  width: 100%;
}

/* --- Services --- */
.services {
  padding: 60px 20px;
  background: var(--color-bg);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}


.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 20px 24px 24px;
}

.service-card__label {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 12px;
}

.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.service-card__link::after {
  content: " →";
}

/* --- Section --- */
.section {
  padding: 80px 20px;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__label {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 38px);
  font-weight: 500;
  color: var(--color-text-dark);
}

/* --- Hotel --- */
.section__sub {
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 12px;
  line-height: 1.8;
}

/* Hotel Points */
.hotel-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.hotel-point {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

.hotel-point__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.5;
  margin-bottom: 8px;
}

.hotel-point__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.hotel-point__text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.hotel-point__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hotel-point__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hotel-message {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 48px;
  padding: 20px;
  background: rgba(232, 146, 159, 0.08);
  border-radius: var(--radius-md);
}

/* Hotel Notes */
.hotel-notes {
  margin-top: 12px;
  padding: 16px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
}

.hotel-notes p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.hotel-notes__highlight {
  margin-top: 8px;
  color: var(--color-accent) !important;
  font-weight: 600;
}

/* Hotel Checklist */
.hotel-checklist {
  margin-top: 48px;
  margin-bottom: 32px;
}

.hotel-checklist__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.hotel-checklist__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hotel-checklist__item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}

.hotel-checklist__item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.hotel-checklist__item p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Hotel Calendar */
.hotel-calendar {
  margin-top: 48px;
  margin-bottom: 32px;
}

.hotel-calendar__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  text-align: center;
}

.hotel-calendar__embed {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-calendar__embed iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.hotel-calendar__placeholder {
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  padding: 40px;
}

/* Hotel CTA */
.hotel-cta {
  text-align: center;
}

.hotel-cta__note {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 16px;
}

/* --- Menu --- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: #EDF5F0;
  padding: 4px;
  border-radius: 10px;
  max-width: 280px;
  margin: 0 auto 40px;
}

.menu-tabs__btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.menu-tabs__btn.is-active {
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Menu Intro */
.menu-intro {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.menu-intro strong {
  color: var(--color-accent);
  font-size: 18px;
}

/* Course Cards */
.course-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.course-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: none;
  box-shadow: var(--shadow-card);
}

.course-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.course-card__items {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Menu Block */
/* Menu 2-column grid */
.menu-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.menu-block {
  margin-bottom: 40px;
}

.menu-grid-2col .menu-block {
  margin-bottom: 0;
}

.menu-block--highlight {
  background: linear-gradient(135deg, rgba(232, 146, 159, 0.1), rgba(126, 184, 150, 0.06));
  border-radius: var(--radius-lg);
  padding: 24px 16px;
}

.menu-block__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
}

.menu-block__title span {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 8px;
}

.menu-block__title--accent {
  color: var(--color-accent);
  text-align: center;
}

.menu-block__desc {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.menu-block__subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 24px 0 12px;
}

/* Price Table */
.menu-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -16px;
  padding: 0 16px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-size: 14px;
  table-layout: fixed;
}

.price-table thead {
  background: var(--color-primary);
  color: #fff;
}

.price-table th {
  padding: 10px 8px;
  text-align: left;
  font-weight: 500;
  font-size: 13px;
  word-break: keep-all;
}

.price-table th:not(:first-child) {
  text-align: right;
}

.price-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-light);
}

.price-table td {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

.price-table td:first-child {
  font-weight: 500;
  color: var(--color-text);
}

.price-table td:not(:first-child) {
  text-align: right;
  font-weight: 600;
  white-space: normal;
  font-size: 13px;
}

/* 3-column tables (犬種 / シャンプー / カット) */
.price-table:not(.price-table--4col) td:first-child,
.price-table:not(.price-table--4col) th:first-child {
  width: 40%;
}

.price-table:not(.price-table--4col) td:not(:first-child),
.price-table:not(.price-table--4col) th:not(:first-child) {
  width: 30%;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: rgba(232, 146, 159, 0.04);
}

/* Menu Notes */
.price-table__group td:first-child small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-light);
  margin-top: 4px;
}

.price-table__group td:first-child {
  font-size: 14px;
}

.menu-note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.menu-notes {
  margin-top: 32px;
  padding: 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.menu-notes p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 2;
}

/* Menu PDF Links */
.menu-pdf-links {
  margin-top: 32px;
  text-align: center;
}

.menu-pdf-links__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.menu-pdf-links__grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.menu-pdf-link {
  display: block;
  padding: 12px 20px;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.menu-pdf-link:hover {
  background: var(--color-primary);
  color: #fff;
}

.menu-notes__discount {
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-text) !important;
  font-weight: 600;
}

.menu-notes__discount strong {
  color: var(--color-primary-dark);
  font-size: 16px;
}

/* --- Owner --- */
.owner-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.owner-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.owner-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-card__body {
  padding: 8px 24px 32px;
}

.owner-card__name {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.owner-card__role {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.owner-card__text {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.owner-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
}

.owner-card__meta-label {
  font-size: 10px;
  color: var(--color-text-muted);
}

.owner-card__meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 4px;
}

.owner-card__meta-value--sm {
  font-size: 13px;
  font-weight: 500;
}

/* --- Access --- */
.access-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
}

.access-card__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border-light);
}

.access-card__row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.access-card__label {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.access-card__value {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
  white-space: pre-line;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  box-shadow: 0 8px 30px rgba(126, 184, 150, 0.15);
}

.faq-item__question {
  display: block;
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  position: relative;
  padding-right: 48px;
  list-style: none;
}

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

.faq-item__question::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: var(--transition);
}

.faq-item[open] .faq-item__question::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-item__answer {
  padding: 0 24px 20px;
}

.faq-item__answer p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 2;
}

/* --- CTA Section --- */
.cta-section {
  padding: 60px 20px 80px;
}

.cta-box {
  background: linear-gradient(160deg, #6AAE80 0%, #5B9A6E 100%);
  border-radius: 36px;
  padding: 48px 28px;
  text-align: center;
}

.cta-box__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}

.cta-box__text {
  font-size: 14px;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.8;
}

.cta-box__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-box__line {
  display: block;
  background: var(--color-line);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
}

.cta-box__phone {
  display: block;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.cta-box__phone-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
}

/* --- Floating CTA (SP) --- */
.page-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 98;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 146, 159, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.floating-cta {
  display: block;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 99;
  background: var(--color-line);
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(6, 199, 85, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  color: #fff;
  padding: 48px 20px 24px;
}

.footer__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer__logo {
  display: inline-block;
  background: #fff;
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
}

.footer__logo-img {
  height: 150px;
  width: auto;
  display: block;
}

.footer__info {
  font-size: 14px;
  line-height: 2;
  color: #fff;
  margin: 24px 0;
}

.footer__copy {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Tablet --- */
@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hotel-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .hotel-checklist__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid-2col {
    grid-template-columns: 1fr 1fr;
  }

}

/* --- Desktop --- */
@media (min-width: 768px) {
  .floating-cta {
    display: none;
  }

  .page-top {
    bottom: 24px;
    right: 24px;
  }

  .header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  
  .header__nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: background 0.3s, box-shadow 0.3s;
  }

  .header__nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition);
  }

  .header__nav a:hover {
    color: var(--color-primary);
  }

  .header.is-scrolled .header__nav {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
  }
  
  .header__nav-cta {
    background: var(--color-primary-gradient);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 50px;
  }
  
  .header__menu-btn {
    display: none;
  }

  .header__inner {
    justify-content: space-between;
  }
  
  .mobile-nav {
    display: none !important;
  }
  
  .section {
    padding: 120px 24px;
  }
  
  .options__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .owner-card {
    grid-template-columns: 1fr 1fr;
  }

  .owner-card__image {
    aspect-ratio: auto;
  }

  .owner-card__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hotel-checklist__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__actions {
    flex-direction: row;
    width: auto;
    max-width: none;
    gap: 16px;
  }

  .hero__scroll {
    bottom: 40px;
  }
}
