﻿/* Design tokens */

html {
  font-size: 16px;
}

:root {
  --bg: #ffffff;
  --beige: #f7eee7;
  --card: #fdf6f1;
  --text: #333333;
  --muted: #666666;
  --accent: #e2a67c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  padding-top: 3.5rem;
}

body.is-intro {
  overflow: hidden;
}

/* Intro (YUTORI) */

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--text);
  transform: translateY(0);
  animation: intro-curtain-up 800ms ease-in-out 1000ms forwards;
}

.intro__inner {
  text-align: center;
  padding: 1.5rem;
}

.intro__title {
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  font-size: clamp(3rem, 12vw, 8.75rem);
}

/* --- YUTORI improvements --- */
.section-header {
  margin-bottom: 2rem;
}
.section-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #d2b9a0;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 1.8rem;
}

.section-lead {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr; /* デフォルトは1カラム */
  gap: 1.5rem;
}
/* 768px以下は削除（デフォルトが1カラムなので不要） */
.service-card {
  background: #fdf6f1;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 0.25rem 0.625rem rgba(0,0,0,0.03);
  text-align: center;
}
.service-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.service-tagline {
  font-size: 0.95rem;
  color: #c58f6b;
  margin-bottom: 1rem;
}
.service-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
.service-recommend {
  font-size: 0.9rem;
  color: #666;
  margin: 0 auto 1rem;
  padding: 0;
  list-style: none;
  display: inline-block;
  text-align: left;
}
.service-recommend li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.375rem;
}
.service-recommend li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #c58f6b;
  line-height: 1.6;
}
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  justify-content: center;
}

/* ========== サービス（メニューカード）セクション ========== */
.section-service {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .section-service {
    padding: 2.5rem 0;
  }
}

.service-header .section-label {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: #dcc5b0;
  margin-bottom: 0.5rem;
}
.service-header .section-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.service-header .section-lead {
  color: #666;
  margin-bottom: 2rem;
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
}
.section-cta .btn-primary {
  min-width: 15rem;
}

.access-notes-container {
  text-align: center;
}

.access-notes {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
}
.access-notes li {
  list-style: disc;
  margin-bottom: 0.375rem;
}

.section-final-cta {
  background: #fdf6f1;
}
.footer-lead {
  font-size: 1rem;
  color: #555;
  line-height: 1.9;
  text-align: center;
  margin: 0 auto 1.25rem;
  max-width: 45rem;
}

@media (max-width: 768px) {
  html {
    font-size: 14.4px;
  }
  body {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .section {
    padding: 2.5rem 0;
  }
  
  .section-header {
    margin-bottom: 1.75rem;
    text-align: center;
  }
  .section-lead {
    margin-bottom: 1.75rem;
  }
  .container {
    max-width: 38rem;
  }
  .footer-lead {
    font-size: 0.98rem;
    line-height: 1.9;
    padding: 0 0.5rem;
  }
  .section-cta .btn-primary,
  .cta-row .btn-primary {
    width: 100%;
  }

  element.style {
    opacity: 1;
    position: fixed;
    right: 12%;
    bottom: 2%;
    pointer-events: auto;
}
}

@keyframes intro-curtain-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

@keyframes intro-hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro {
    transform: translateY(0);
    animation: intro-hide 1ms linear 1000ms forwards;
  }
}

/* Base */

h1,
h2,
h3 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
}

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

a {
  color: inherit;
}

a:hover {
  text-decoration-thickness: 2px;
}

.container {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(51, 51, 51, 0.12);
  pointer-events: none;
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(51, 51, 51, 0.12);
  pointer-events: none;
}

.section-lead-main {
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
}

.section-lead {
  margin: 1.125rem 0 1.5rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

.text-body {
  font-size: 1.2rem;
  line-height: 1.8;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 700;
}

.card-title {
  font-size: 1.35rem;
  line-height: 1.5;
  font-weight: 600;
}

/* Header */

.header {
  background: var(--bg);
  border-bottom: 1px solid rgba(51, 51, 51, 0.12);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.header-logo {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
}

.nav-link:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--accent);
  font-weight: 600;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  width: 1.5625rem;
  height: 0.1875rem;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 0.125rem;
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

/* Buttons */

.btn-primary {
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.3;
}

.btn-primary:hover {
  filter: brightness(0.98);
}

/* Image placeholders */

.image-placeholder-feature {
  display: grid;
  place-items: center;
  min-height: 12.5rem;

  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(51, 51, 51, 0.12);
  color: var(--muted);
}

/* Hero */

.hero-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.hero-copy,
.hero-media {
  flex: 1;
}
  .image-placeholder-feature.service-media {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
    height: 100%;
  }

  .image-placeholder-feature.service-media img {
    width: 100%;
    height: 100%;
    margin: auto;
    object-fit: cover;
    display: block;
  }
.cta-row {
  margin-top: 1.5rem;
}

.hero-image {
  min-height: 16.25rem;
}

/* Band */
/* 
.band-box {
  padding: 24px;
  background: var(--card);
  border-radius: 8px;
  border: 1px solid rgba(51, 51, 51, 0.12);
} */

.band-copy {
  text-align: center;
}

/* Trouble */

.section-trouble {
  background: var(--beige);
}

.trouble-title {
  display: inline-block;
  padding: 0.5rem 1rem;
}

.container-trouble {
  text-align: center;
}

.trouble-list {
  margin-top: 1.5rem;
  padding-left: 0;
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}

.trouble-list li {
  position: relative;
  padding-left: 1.2em;
}

.trouble-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.1em;
}

/* Section heads (FEATURE / SERVICE) */

.section-head {
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.3;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent);
}

/* Feature */

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.feature-row {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.feature-row--reverse {
  flex-direction: reverse;
}

.feature-text {
  flex: 1;
}

.feature-image {
  flex: 1;
}

.feature-text .card-title {
  margin-bottom: 1rem;
}

/* Service */

.service-split {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.service-media {
  flex: 0 0 42%;
  min-width: 20rem;
  min-height: 20rem;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-position: left left; /* 中央を表示 */
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-panel {
  flex: 1;
  /* service-mediaと高さを揃える */
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100%;
  min-height: 20rem;
  overflow-y: auto;
  padding-right: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.menu-list {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.menu-card {
  min-width: 16.25rem;
  max-width: 20rem;
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 1rem;
  background: aliceblue;
  border-radius: 0;
  border: 1.5px solid #bbb;
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
/* menu-list横スクロールのスクロールバー非表示（必要に応じて） */
.menu-list::-webkit-scrollbar {
  display: none;
}
.menu-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.menu-image {
  flex: 0 0 15rem;
  min-height: 10rem;
}

.menu-body {
  flex: 1;
  text-align: center;
}

.menu-lead {
  margin-top: 1rem;
  color: var(--muted);
  text-align: left;
  line-height: 1.3;
}

.menu-meta {
  margin-top: 1rem;
}

.menu-meta-row {
  display: flex;
  gap: 1rem;
  padding-top: 0.5rem;
  justify-content: center;
}

.menu-cta {
  margin: 0 auto;
}

.menu-meta-row dt {
  min-width: 3rem;
  color: var(--muted);
}

.menu-meta-row dd {
  margin: 0;
}

/* ========== アクセスセクション ========== */
.section-access {
  background: #f7eee7;
}

.access-layout {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.access-ul-container {
  text-align: center;
}

.access-map-wrap {
  flex: 1 1 50%;
  max-width: 40rem;
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 1rem rgba(178,138,90,0.10);
}
.access-map {
  width: 100%;
  min-height: 15rem;
  border: none;
  display: block;
}
.access-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.access-info {
  text-align: left;
  color: #7a5c3e;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .access-layout {
    flex-direction: column;
    align-items: stretch;
  }
  .access-map-wrap {
    max-width: 100%;
    margin-bottom: 1.25rem;
  }
  .access-info {
    font-size: 0.98rem;
  }
}
/* ========== section-title フェードイン ========== */
.fadein-up {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.8s cubic-bezier(.4,.2,.2,1), transform 0.8s cubic-bezier(.4,.2,.2,1);
}
.fadein-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}
/* ========== 右下CTAボタン ========== */
/* cta-float responsive sizing */
.cta-float {
  position: fixed;
  z-index: 10000;
  display: inline-block;
  background: linear-gradient(90deg, #e2a67c 0%, #b48b5a 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 2rem;
  box-shadow: 0 0.25rem 1.5rem rgba(178, 138, 90, 0.18);
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(3rem);
  pointer-events: auto;
  transition: opacity 0.7s cubic-bezier(.4,.2,.2,1), transform 0.7s cubic-bezier(.4,.2,.2,1);
}

/* PC size (1025px以上) */
.cta-float {
  right: 2rem;
  bottom: 2rem;
  padding: 1rem 2rem;
  font-size: 1.08rem;
}

.cta-float.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1.3);
  position: fixed;
  right: 8%;
}

.cta-float:hover,
.cta-float:focus {
  background: linear-gradient(90deg, #e2a67c 0%, #d18c5a 100%);
  box-shadow: 0 0.375rem 2rem rgba(178, 138, 90, 0.28);
}

/* tablet size (769px ~ 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .cta-float {
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1.02rem;
  }
}

/* mobile size (~768px) */
@media (max-width: 768px) {
  .cta-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}
/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(90deg, #f7eee7 0%, #fdf6f1 100%);
  border-top: 0.1rem solid #e2a67c;
  color: #7a5c3e;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  padding: 2.5rem 0 1.5rem 0;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-brand {
  text-align: center;
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #b48b5a;
  font-family: "Noto Serif JP", serif;
  display: block;
}
.footer-tagline {
  display: block;
  font-size: 1rem;
  color: #a08a6a;
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.footer-nav a {
  color: #a08a6a;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-nav a:hover,
.footer-nav .footer-cta {
  color: #e2a67c;
  font-weight: 700;
}
.footer-copy {
  font-size: 0.95rem;
  color: #b48b5a;
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 0 0.5rem;
    gap: 1rem;
  }
  .footer-nav {
    gap: 0.75rem;
    font-size: 0.8rem;
  }

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

  .footer-logo {
    font-size: 1.15rem;
  }
}
/* VOICEメッセージ強調 */
.voice-highlight {
  font-weight: bold;
  font-size: 1.25em;
  position: relative;
  display: inline-block;
}
.voice-highlight::before {
  content: "\275D"; /* ❝ */
  font-size: 1.2em;
  color: #b48b5a;
  margin-right: 0.1em;
  vertical-align: middle;
  text-decoration: none !important;
  transition: none !important;
}
.voice-highlight::after {
  content: "\275E"; /* ❞ */
  font-size: 1.2em;
  color: #b48b5a;
  margin-left: 0.1em;
  vertical-align: middle;
  text-decoration: none !important;
  transition: none !important;
}
/* band-row 横並び */
.band-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
/* band-fade フェードイン */
.band-fade {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.band-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ========== VOICEセクション ========== */
.section-voice {
  padding: 4rem 0;
  background: #fff;
}
.section-voice .container {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.voice-header {
  text-align: left;
  margin-bottom: 2.5rem;
}
.voice-en {
  color: #e8dacb;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.voice-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
  color: #333;
}
.voice-subcopy {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 1.5rem;
}
/* .voice-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0;
} */

/* --- VOICEコンテンツ（お客様の声） --- */
.voice-content {
  display: flex;
  gap: 3.9375rem;
  align-items: center;
  margin-top: 2.5rem;
}
.voice-content-reverse {
  flex-direction: row-reverse;
}
.voice-image {
  flex: 1 1 0;
  max-width: 50%;
}
.voice-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}
.voice-text {
  flex: 1 1 0;
  max-width: 26.25rem;
}
.voice-text-reverse {
  text-align: right;
}
.voice-profile {
  font-size: 1.25rem;
  font-weight: 600;
  color: #b48b5a;
  margin-bottom: 1rem;
}
.voice-message {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  /* white-space: pre-line; */
}

@media (max-width: 1024px) {
  .voice-message {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .voice-content {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .voice-image,
  .voice-text {
    max-width: 100%;
    width: 100%;
  }
  .voice-text {
    padding: 0 0.25rem;
  }
    .voice-profile {
    text-align: center;
  }
}
/* menu-card CTAボタン */
.menu-cta-row {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.btn-cta {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--accent, #e2a67c);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.06);
}
.btn-cta:hover,
.btn-cta:focus {
  background: #d18c5a;
  color: #fff;
}

/* ========================================
   Responsive Design for YUTORI
   ========================================
   1) ベース (〜768px): スマホ基準の1カラム
   2) タブレット (768〜1024px): 1カラム維持＋余白増加（SP寄り）
   3) デスクトップ (1024px以上): 2カラム・ワイドレイアウト
   ======================================== */

/* ========== 1) ベース（〜768px）: スマホ基準 ========== */
@media (max-width: 768px) {
  /* フォントサイズ調整 */
  body {
    font-size: 1.125rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .hero-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
    display: block;
    width: 100%;
  }

  .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 0.125rem;
    background: #e2a67c;
  }

  .section-lead,
  .text-body {
    font-size: 1.125rem;
    text-align: center;
  }

  .btn-primary {
    display: none;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 17.5rem;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 5rem 2rem 2rem;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .header-nav.is-open {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.5rem 0;
  }

  .hero-inner,
  .feature-row,
  .menu-card {
    flex-direction: column;
    align-items: stretch;
  }

  .service-split {
    flex-direction: column;
  }

  .service-media {
    min-height: 15rem;
  }
  .service-media {
    min-width: 0;
    min-height: 15rem;
    height: auto;
    overflow: visible;
    padding-right: 0;
  }

  .feature-row--reverse {
    flex-direction: column;
  }

  .hero-image {
    min-height: 12.5rem;
  }

  .menu-image {
    flex: none;
    min-height: 12.5rem;
  }

  .voice-header {
    text-align: center;
  }

  .voice-en {
    margin-bottom: 0.5rem;
  }

  .voice-title {
    margin-bottom: 1.25rem;
  }

  .voice-subcopy {
    margin-bottom: 1.5rem;
  }

  .voice-content {
    position: relative;
    padding-bottom: 1.5rem;
  }

  .voice-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background-image: linear-gradient(to right, #e2a67c 40%, transparent 40%);
    background-size: 6px 1px;
    background-repeat: repeat-x;
  }
}

/* ========== 2) タブレット（768〜1024px）: SP寄り＋余白増加 ========== */
/* tablet layout adjustment for YUTORI */
@media (min-width: 768px) and (max-width: 1024px) {
  /* コンテナ：SP基準に左右余白を大きく増やす */
  .container {
    max-width: 720px;
    padding: 1rem 3.2rem; /* 左右に大きな余白 */
    font-size: 1.1rem;
  }

  /* セクション間隔 */
  .section {
    padding: 3rem 0;
  }

  /* 見出しスタイル：中央寄せで読みやすく */
  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-lead {
    text-align: center;
    margin: 1rem auto 2rem;
    max-width: 38rem; /* 行長を抑える */
    font-size: 1.05rem;
  }

  .section-lead-main {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto;
  }

  /* ヒーロー：1カラム維持 */
  .hero-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-copy {
    text-align: center;
  }

  /* フィーチャー：1カラム維持 */
  .feature-stack {
    gap: 2.5rem;
  }

  .feature-row {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .feature-row--reverse {
    flex-direction: column;
  }

  .feature-text {
    text-align: center;
  }

  .card-title {
    font-size: 1.25rem;
  }

  /* サービス一覧：1カラム維持（2カラムにしない） */
  .service-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }

  /* サービス詳細：1カラム維持 */
  .service-split {
    flex-direction: column;
    gap: 2rem;
  }

  .service-media {
    min-width: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  /* アクセス：1カラム維持 */
  .access-layout {
    flex-direction: row;
    gap: 2rem;
  }

  .access-map-wrap {
    max-width: 600px;
    margin: 0 auto;
  }

  /* VOICE：1カラム維持 */
  .voice-content {
    flex-direction: column;
    gap: 2rem;
  }

  .voice-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .voice-text {
    text-align: center;
  }

  .voice-header {
    text-align: center;
  }

  /* CTAボタン */
  .cta-row {
    text-align: center;
  }

  .btn-primary {
    min-width: 280px;
  }

  /* トラブルリスト */
  .trouble-list {
    max-width: 500px;
  }
}

/* ========== 3) デスクトップ（1024px以上）: 2カラム・ワイドレイアウト ========== */
@media (min-width: 1025px) {
  /* サービス一覧：2カラム表示 */
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  /* ヒーロー：横並び */
  .hero-inner {
    flex-direction: row;
    gap: 3rem;
  }

  /* フィーチャー：横並び */
  .feature-row {
    flex-direction: row;
    gap: 2rem;
  }

  .feature-row--reverse {
    flex-direction: row-reverse;
  }

  /* サービス詳細：横並び */
  .service-split {
    flex-direction: row;
    gap: 2rem;
  }

  /* アクセス：横並び */
  .access-layout {
    flex-direction: row;
    gap: 2rem;
  }

  /* VOICE：横並び */
  .voice-content {
    flex-direction: row;
    gap: 3.9375rem;
  }

  .voice-content-reverse {
    flex-direction: row-reverse;
  }
}