/* ============================================================
   SHUN Private Hair Salon — style.css
   カラーパレット:
     Brown Primary : #6B4226
     Brown Light   : #8B6248
     Cream BG      : #F5EFEC
     Warm Cream    : #E0D0CA
     Red Accent    : #A0302A
     Text Dark     : #333
     Text Gray     : #888
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN W3", serif;
  font-weight: 400;
  font-size: 15px;
  color: #333;
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.75;
}

ul { list-style: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(107, 66, 38, 0.12);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  color: #6B4226;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.nav-logo span {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #8B6248;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #6B4226;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: #6B4226;
  opacity: 1;
}

/* ハンバーガーメニュー */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #6B4226;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #F5EFEC 0%, #E0D0CA 60%, #d4bfb4 100%);
  margin-top: 70px;
}

.hero-photo-hint {
  position: absolute;
  inset: 0;
  background-image: url('salon-hero.jpg');
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}

/* 写真エリアにオーバーレイ */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(245, 239, 236, 0.15) 0%,
    rgba(245, 239, 236, 0.05) 50%,
    rgba(245, 239, 236, 0.4) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* 左サイド縦テキスト */
.hero-side-text {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #8B6248;
  opacity: 0.7;
  white-space: nowrap;
  z-index: 2;
}

/* ヒーローコンテンツ */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 0 120px;
  max-width: 700px;
}

.hero-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-catch {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.3);
}

/* 各行：初期状態（非表示） */
.hero-catch .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: lineReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-catch .line-1 { animation-delay: 0.3s; }
.hero-catch .line-2 { animation-delay: 0.65s; }
.hero-catch .line-3 { animation-delay: 1.0s; }

@keyframes lineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* フラッシュ：全行出そろった後に光が流れる */
.hero-catch::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 248, 240, 0) 30%,
    rgba(255, 248, 240, 0.55) 50%,
    rgba(255, 248, 240, 0) 70%,
    transparent 100%
  );
  animation: flashSweep 1.2s ease-in-out 1.9s forwards;
  pointer-events: none;
}

@keyframes flashSweep {
  0%   { left: -80%; opacity: 0; }
  10%  { opacity: 1; }
  100% { left: 130%; opacity: 0.6; }
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: dividerExpand 0.7s ease 1.6s forwards;
}

@keyframes dividerExpand {
  from { opacity: 0; width: 0; }
  to   { opacity: 0.5; width: 48px; }
}

.hero-sub {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.8s forwards;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6), 0 2px 4px rgba(0,0,0,0.4);
}

.hero-btn {
  opacity: 0;
  animation: fadeUp 0.7s ease 2.1s forwards;
}

.hero-sub span::after {
  content: '　/　';
  opacity: 0.5;
}

.hero-sub span:last-child::after {
  content: '';
}

/* スクロールインジケーター */
.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: #8B6248;
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #8B6248, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  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; }
}

/* ============================================================
   BUTTON
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 44px;
  border: 1px solid #6B4226;
  color: #6B4226;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", serif;
  font-weight: 500;
  transition: all 0.35s;
  cursor: pointer;
  background: transparent;
}

.btn:hover {
  background: #6B4226;
  color: #fff;
  opacity: 1;
}

.btn-fill {
  background: #6B4226;
  color: #fff;
  border: 1px solid #6B4226;
}

.btn-fill:hover {
  background: #5a3720;
  border-color: #5a3720;
  opacity: 1;
}

.hero-btn {
  border-color: #6B4226;
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 52px;
}

.section-title .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  color: #6B4226;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 8px;
}

.section-title .ja {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #8B6248;
}

/* ============================================================
   FEATURES（特徴3つ）
   ============================================================ */
.features {
  padding: 96px 40px;
  background: #fff;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: #F5EFEC;
  padding: 48px 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(107, 66, 38, 0.1);
}

.card-icon {
  margin-bottom: 24px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #6B4226;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.card-text {
  font-size: 13px;
  color: #555;
  line-height: 1.9;
  text-align: left;
}

/* ============================================================
   TARGET（こんな方へ）
   ============================================================ */
.target {
  padding: 96px 40px;
  background: linear-gradient(135deg, #F5EFEC, #EDE3DC);
}

.target-inner {
  max-width: 760px;
  margin: 0 auto;
}

.target-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.target-list li {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(107, 66, 38, 0.12);
  align-items: flex-start;
}

.target-list li:first-child {
  border-top: 1px solid rgba(107, 66, 38, 0.12);
}

.target-list .mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-list .text {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
}

.target-list .text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #6B4226;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram {
  padding: 96px 40px;
  background: #fff;
  text-align: center;
}

.instagram-inner {
  max-width: 600px;
  margin: 0 auto;
}

.instagram-id {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #6B4226;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.instagram-link {
  display: inline-block;
  padding: 14px 44px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.15em;
  transition: opacity 0.3s;
}

.instagram-link:hover {
  opacity: 0.85;
}

/* LINE ボタン */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: #06C755;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: opacity 0.3s;
  text-decoration: none;
}

.btn-line:hover {
  opacity: 0.85;
  color: #fff;
}

/* フッター SNS */
.footer-sns {
  margin: 20px 0 8px;
}

.footer-sns-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: #06C755;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: opacity 0.3s;
  text-decoration: none;
}

.footer-sns-line:hover {
  opacity: 0.85;
  color: #fff;
}

.footer-sns-line i {
  font-size: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #2b1e15;
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 60px 40px 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.footer-info {
  font-size: 12px;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #fff;
  opacity: 1;
}

.footer-copy {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

/* ============================================================
   SECTION（共通セクション余白）
   ============================================================ */
.section {
  padding: 80px 40px;
  max-width: 860px;
  margin: 0 auto;
}

.section-lead {
  text-align: center;
  font-size: 14px;
  color: #555;
  line-height: 2.2;
  margin-bottom: 56px;
}

/* ============================================================
   ABOUT — コンセプト
   ============================================================ */
.about-concept {
  padding: 96px 40px;
  background: #fff;
}

.about-concept-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-concept-inner p {
  font-size: 14px;
  color: #444;
  line-height: 2.2;
  margin-bottom: 16px;
}

/* ============================================================
   ABOUT — プロフィール
   ============================================================ */
.about-profile {
  padding: 96px 40px;
  background: linear-gradient(135deg, #F5EFEC, #EDE3DC);
}

.profile-box {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #E0D0CA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #8B6248;
  letter-spacing: 0.1em;
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: #6B4226;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.profile-role {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #8B6248;
  margin-bottom: 28px;
}

.profile-text {
  font-size: 14px;
  color: #444;
  line-height: 2.1;
  margin-bottom: 28px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(107,66,38,0.35);
  color: #6B4226;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ============================================================
   ABOUT — こだわり
   ============================================================ */
.about-points {
  padding: 96px 40px;
  background: #fff;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.point-item {
  padding: 40px 28px;
  border-top: 3px solid #6B4226;
  background: #F5EFEC;
}

.point-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: rgba(107, 66, 38, 0.18);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
}

.point-title {
  font-size: 15px;
  font-weight: 700;
  color: #6B4226;
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.point-text {
  font-size: 13px;
  color: #555;
  line-height: 1.95;
}

/* ============================================================
   MENU
   ============================================================ */
/* 施術例ギャラリー */
.menu-gallery {
  margin-bottom: 56px;
  text-align: center;
}

.menu-gallery-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #8B6248;
  margin-bottom: 24px;
}

.menu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.menu-gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.menu-gallery-item p {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #8B6248;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .menu-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(107,66,38,0.15);
}

.menu-category {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(107,66,38,0.1);
  padding-bottom: 0;
}

.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: #8B6248;
  padding: 28px 0 12px;
  border-bottom: 1px solid rgba(107,66,38,0.12);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(107,66,38,0.07);
  gap: 16px;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.menu-item-note {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.02em;
}

.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #6B4226;
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.menu-item-price span {
  font-size: 12px;
  color: #888;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", serif;
}

.menu-note {
  max-width: 720px;
  margin: 0 auto;
  background: #F5EFEC;
  padding: 24px 28px;
  border-left: 3px solid #6B4226;
}

.menu-note p {
  font-size: 12px;
  color: #666;
  line-height: 2.1;
}

.menu-note p::before {
  content: '・';
  color: #8B6248;
}

/* ============================================================
   ACCESS — サロン情報表
   ============================================================ */
.info-table {
  max-width: 700px;
  margin: 0 auto 60px;
  border-top: 1px solid rgba(107,66,38,0.15);
}

.info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid rgba(107,66,38,0.1);
  padding: 20px 0;
  gap: 24px;
}

.info-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #8B6248;
  font-weight: 500;
  padding-top: 2px;
}

.info-value {
  font-size: 14px;
  color: #333;
  line-height: 1.9;
}

/* ============================================================
   RESERVE — 予約方法カード
   ============================================================ */
.reserve-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto 72px;
}

.reserve-card {
  background: #F5EFEC;
  padding: 48px 28px;
  text-align: center;
  border-top: 3px solid #6B4226;
}

.reserve-card .icon {
  margin-bottom: 20px;
}

.method-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: #6B4226;
  margin-bottom: 12px;
}

.method-detail {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.method-time {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.method-link {
  font-size: 12px;
}

/* ============================================================
   RESERVE — 予約の流れ
   ============================================================ */
.reserve-flow {
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 40px;
  background: #F5EFEC;
}

.reserve-flow-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.15em;
  color: #6B4226;
  text-align: center;
  margin-bottom: 40px;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(107,66,38,0.12);
  position: relative;
}

.flow-step:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6B4226;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  color: #6B4226;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.step-text {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE — スマートフォン対応
   ============================================================ */
@media (max-width: 768px) {

  /* ナビ */
  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 16px 0 24px;
    border-bottom: 1px solid rgba(107,66,38,0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
  }

  .nav-toggle {
    display: flex;
  }

  /* ヒーロー */
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    padding: 60px 24px 80px 56px;
  }

  .hero-catch {
    font-size: 26px;
  }

  .hero-side-text {
    left: 16px;
  }

  /* フィーチャー */
  .cards {
    grid-template-columns: 1fr;
  }

  /* ターゲット */
  .target {
    padding: 72px 24px;
  }

  /* ABOUT プロフィール */
  .profile-box {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .profile-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  /* ABOUT こだわり */
  .points-grid {
    grid-template-columns: 1fr;
  }

  /* 予約方法 */
  .reserve-methods {
    grid-template-columns: 1fr;
  }

  /* アクセス情報表 */
  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .info-label {
    font-size: 11px;
    color: #8B6248;
    border-bottom: none;
  }

  /* 各セクション */
  .features,
  .instagram,
  .about-concept,
  .about-profile,
  .about-points {
    padding: 72px 24px;
  }

  .section {
    padding: 60px 24px;
  }

  .reserve-flow {
    padding: 40px 24px;
  }

  /* フッター */
  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-catch {
    font-size: 22px;
  }

  .hero-content {
    padding: 40px 20px 60px 44px;
  }

  .section-title .en {
    font-size: 30px;
  }
}
