@charset "UTF-8";

/* =================================================================
   Nail Salon LUMIÈRE
   style.css - モバイルファースト（SP → TB 768px → PC 1024px）
   -----------------------------------------------------------------
   01. Variables
   02. Reset / Base
   03. Layout / Utility
   04. Header / Nav / Drawer
   05. Hero
   06. Section common
   07. Concept
   08. Menu
   09. Gallery
   10. Voice
   11. Reserve
   12. Access
   13. Footer
   14. Images（写真の共通指定）
   ================================================================= */


/* =============================================================
   01. Variables
   ============================================================= */
:root {
  /* Color */
  --c-base:        #fdfcfb;   /* ベース背景 */
  --c-base-2:      #f6f2ee;   /* 淡いベージュ */
  --c-white:       #ffffff;
  --c-text:        #3d3733;   /* 本文 */
  --c-text-light:  #7d746d;   /* 補助テキスト */
  --c-line:        rgba(61, 55, 51, .12);
  --c-accent:      #c9a98a;   /* ゴールドベージュ */
  --c-accent-deep: #a9855f;
  --c-pink:        #f3e3e0;   /* ペールピンク */
  --c-blue:        #dfe8ec;   /* くすみブルー */
  --c-pink-veil:   #fef5f8;   /* ヒーローに敷く淡いピンク */
  --c-pink-soft:   #ffe3ec;   /* ヒーローのにじみ（濃いめ） */
  --c-lavender:    #ece4f7;   /* ヒーローのにじみ（差し色） */

  /* Glass */
  --glass-bg:      rgba(255, 255, 255, .62);
  --glass-border:  rgba(255, 255, 255, .75);
  --shadow-sm:     0 2px 12px rgba(150, 130, 115, .08);
  --shadow-md:     0 8px 30px rgba(150, 130, 115, .12);
  --shadow-lg:     0 18px 50px rgba(150, 130, 115, .16);

  /* Font */
  --f-en:  "Cormorant Garamond", "Times New Roman", serif;
  --f-en2: "Jost", "Helvetica Neue", sans-serif;
  --f-ja:  "Noto Serif JP", "Yu Mincho", "游明朝", serif;

  /* Layout */
  --header-h: 64px;
  --container: 1120px;
  --pad-x: 24px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 1024px) {
  :root {
    --header-h: 84px;
    --pad-x: 40px;
  }
}


/* =============================================================
   02. Reset / Base
   ============================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-ja);
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  color: var(--c-text);
  background: var(--c-base);
  letter-spacing: .06em;
  overflow-x: hidden;
}

@media (min-width: 768px) { body { font-size: 16px; } }

h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s var(--ease), opacity .3s var(--ease);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--c-accent);
  color: #fff;
}


/* =============================================================
   03. Layout / Utility
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.sp-only { display: inline; }
@media (min-width: 768px) { .sp-only { display: none; } }

/* 共通ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 32px;
  font-family: var(--f-en2);
  font-size: 14px;
  letter-spacing: .14em;
  border-radius: 999px;
  transition: all .4s var(--ease);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(120deg, var(--c-accent) 0%, var(--c-accent-deep) 100%);
  box-shadow: 0 10px 24px rgba(169, 133, 95, .28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(169, 133, 95, .34);
}

.btn--ghost {
  color: var(--c-text);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .9);
  transform: translateY(-2px);
}

/* スクロールで表示するアニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}


/* =============================================================
   04. Header / Nav / Drawer
   ============================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(253, 252, 251, .55);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.header.is-scrolled {
  background: rgba(253, 252, 251, .86);
  border-bottom-color: var(--c-line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* --- Logo --- */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__main {
  font-family: var(--f-en);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .18em;
}
.logo__sub {
  font-family: var(--f-en2);
  font-size: 9px;
  letter-spacing: .34em;
  color: var(--c-text-light);
  margin-top: 4px;
}
@media (min-width: 1024px) {
  .logo__main { font-size: 26px; }
  .logo__sub  { font-size: 10px; }
}

/* --- Nav（PC） --- */
.nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 4px;
}
.nav__link .en {
  font-family: var(--f-en2);
  font-size: 13px;
  letter-spacing: .12em;
}
.nav__link .ja {
  font-size: 10px;
  color: var(--c-text-light);
  letter-spacing: .08em;
  line-height: 1.4;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transform: translateX(-50%);
  transition: width .4s var(--ease);
}
.nav__link:hover::after { width: 100%; }

.nav__cta {
  display: inline-block;
  padding: 12px 26px;
  font-family: var(--f-en2);
  font-size: 13px;
  letter-spacing: .12em;
  color: #fff;
  background: linear-gradient(120deg, var(--c-accent) 0%, var(--c-accent-deep) 100%);
  border-radius: 999px;
  transition: all .4s var(--ease);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(169, 133, 95, .3);
}

/* --- Hamburger --- */
.hamburger {
  position: relative;
  z-index: 120;
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  gap: 7px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-text);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(35deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-35deg); }

/* --- SP: ドロワー --- */
@media (max-width: 1023px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    width: min(78vw, 340px);
    height: 100dvh;
    padding: calc(var(--header-h) + 24px) 32px 40px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-left: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav__item { border-bottom: 1px solid var(--c-line); }
  .nav__item--cta { border-bottom: 0; margin-top: 28px; }

  .nav__link {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding: 18px 4px;
  }
  .nav__link .en { font-size: 15px; }
  .nav__link .ja { font-size: 11px; }
  .nav__link::after { display: none; }

  .nav__cta {
    display: block;
    text-align: center;
    padding: 16px;
  }

  .drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(61, 55, 51, .28);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s var(--ease), visibility .5s var(--ease);
  }
  .drawer-overlay.is-open { opacity: 1; visibility: visible; }

  body.is-fixed { overflow: hidden; }
}

@media (min-width: 1024px) {
  .hamburger,
  .drawer-overlay { display: none; }
}


/* =============================================================
   05. Hero
   ============================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-h) + 40px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 70% 10%, #ffffff 0%, rgba(255,255,255,0) 60%),
    linear-gradient(170deg, #fffafc 0%, var(--c-pink-veil) 55%, #fdeaf1 100%);
}

/* 背景写真（SPは縦位置トリミング、768px以上で横位置に切り替え） */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/hero-sp.jpg");
  background-size: cover;
  background-position: center 45%;
}

/* 写真の上にかける淡いピンクのヴェール（文字の可読性を確保） */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(254, 245, 248, .92) 0%,
    rgba(254, 245, 248, .86) 42%,
    rgba(255, 240, 246, .62) 76%,
    rgba(255, 227, 236, .5) 100%
  );
}

/* にじむ光のブロブ */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  animation: float 14s ease-in-out infinite;
}
.blob--1 {
  width: 62vw; max-width: 520px; aspect-ratio: 1;
  top: -8%; right: -14%;
  background: radial-gradient(circle at 30% 30%, var(--c-pink-soft), rgba(255,227,236,0) 70%);
}
.blob--2 {
  width: 54vw; max-width: 460px; aspect-ratio: 1;
  bottom: -12%; left: -16%;
  background: radial-gradient(circle at 60% 40%, var(--c-lavender), rgba(236,228,247,0) 70%);
  animation-delay: -5s;
}
.blob--3 {
  width: 40vw; max-width: 340px; aspect-ratio: 1;
  top: 42%; left: 52%;
  background: radial-gradient(circle at 50% 50%, rgba(255,196,214,.38), rgba(255,196,214,0) 70%);
  animation-delay: -9s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(3%, -4%) scale(1.06); }
  66%      { transform: translate(-3%, 3%) scale(.96); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.hero__en {
  font-family: var(--f-en2);
  font-size: 11px;
  letter-spacing: .38em;
  color: var(--c-accent-deep);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(32px, 9vw, 44px);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: .1em;
  margin-bottom: 28px;
}
.hero__title span { display: block; }

.hero__lead {
  font-size: 14px;
  line-height: 2.2;
  color: var(--c-text-light);
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.hero__actions .btn { width: 100%; max-width: 320px; }

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-family: var(--f-en2);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--c-text-light);
  text-align: center;
}
.hero__scroll span { display: block; margin-bottom: 10px; }
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  margin-inline: auto;
  background: linear-gradient(to bottom, var(--c-accent), rgba(201,169,138,0));
  animation: scrollLine 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%       { transform: scaleY(0); opacity: 0; }
  40%      { transform: scaleY(1); opacity: 1; }
  100%     { transform: scaleY(1); opacity: 0; }
}

@media (min-width: 768px) {
  .hero__title { font-size: clamp(44px, 6vw, 64px); }
  .hero__lead  { font-size: 16px; }
  .hero__actions { flex-direction: row; }
  .hero__actions .btn { width: auto; }

  /* 横位置の写真に差し替え、ヴェールは左から右へ抜けるように */
  .hero::before {
    background-image: url("../images/hero.jpg");
    background-position: center;
  }
  .hero::after {
    background: linear-gradient(
      100deg,
      rgba(254, 245, 248, .95) 0%,
      rgba(254, 245, 248, .88) 34%,
      rgba(255, 245, 249, .55) 62%,
      rgba(255, 240, 246, .24) 100%
    );
  }
}

@media (min-width: 1024px) {
  .hero__inner { max-width: calc(var(--container)); }
  .hero__en { font-size: 12px; }
}


/* =============================================================
   06. Section common
   ============================================================= */
.section {
  padding: 80px 0;
}
@media (min-width: 768px) { .section { padding: 110px 0; } }
@media (min-width: 1024px) { .section { padding: 140px 0; } }

.section__head {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .section__head { margin-bottom: 64px; } }

.section__en {
  font-family: var(--f-en);
  font-size: 13px;
  font-style: italic;
  letter-spacing: .28em;
  color: var(--c-accent-deep);
  margin-bottom: 10px;
}

.section__title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: .18em;
  line-height: 1.6;
}
@media (min-width: 768px) { .section__title { font-size: 30px; } }

.section__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin: 20px auto 0;
  background: var(--c-accent);
}

.section__desc {
  margin-top: 20px;
  font-size: 13px;
  color: var(--c-text-light);
}
@media (min-width: 768px) { .section__desc { font-size: 14px; } }


/* =============================================================
   07. Concept
   ============================================================= */
.concept {
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(243,227,224,.5) 0%, rgba(255,255,255,0) 60%),
    var(--c-base);
}

.concept__body {
  display: grid;
  gap: 40px;
}

.concept__img {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.concept__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept__lead {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: .12em;
  margin-bottom: 24px;
}

.concept__text p {
  font-size: 14px;
  color: var(--c-text-light);
  margin-bottom: 20px;
}

.concept__points {
  margin-top: 32px;
  border-top: 1px solid var(--c-line);
}
.concept__points li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--c-line);
}
.concept__points .num {
  font-family: var(--f-en);
  font-size: 15px;
  color: var(--c-accent-deep);
  letter-spacing: .1em;
}
.concept__points .txt {
  font-size: 14px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .concept__body {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .concept__img { aspect-ratio: 3 / 4; }
  .concept__lead { font-size: 24px; }
  .concept__text p { font-size: 15px; }
}

@media (min-width: 1024px) {
  .concept__body { gap: 80px; }
  .concept__lead { font-size: 28px; }
}


/* =============================================================
   08. Menu
   ============================================================= */
.menu {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--c-base) 0%, var(--c-base-2) 100%);
}

/* 背景写真をうっすら敷く */
.menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/menu-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: .26;
}
.menu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 55% at 50% 45%, rgba(253,252,251,.86) 0%, rgba(253,252,251,.3) 70%, rgba(253,252,251,0) 100%);
}
.menu > .container { position: relative; z-index: 1; }

.menu__grid {
  display: grid;
  gap: 20px;
}

.card {
  position: relative;
  padding: 32px 26px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card--featured {
  border-color: rgba(201, 169, 138, .5);
  background: linear-gradient(160deg, rgba(255,255,255,.85), rgba(243,227,224,.5));
}
.card--featured::before {
  content: "Recommend";
  position: absolute;
  top: -11px;
  left: 26px;
  padding: 3px 14px;
  font-family: var(--f-en2);
  font-size: 10px;
  letter-spacing: .16em;
  color: #fff;
  background: linear-gradient(120deg, var(--c-accent), var(--c-accent-deep));
  border-radius: 999px;
}

.card__cat {
  font-family: var(--f-en2);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--c-accent-deep);
  margin-bottom: 12px;
}

.card__title {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.card__desc {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-text-light);
  min-height: 5.4em;
}

.card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
  font-family: var(--f-en2);
  font-size: 26px;
  letter-spacing: .04em;
}
.card__price .yen { font-size: 15px; }
.card__price .unit {
  font-family: var(--f-ja);
  font-size: 12px;
  color: var(--c-text-light);
  margin-left: auto;
}

.menu__note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--c-text-light);
  text-align: center;
}

@media (min-width: 640px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .menu__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .card { padding: 40px 32px; }
}


/* =============================================================
   09. Gallery
   ============================================================= */
.gallery { background: var(--c-base-2); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery__thumb {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery__item:hover .gallery__thumb {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery__item:hover .gallery__thumb img { transform: scale(1.06); }

.gallery__cap {
  margin-top: 10px;
  font-family: var(--f-en2);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--c-text-light);
  text-align: center;
}

@media (min-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .gallery__cap { font-size: 12px; margin-top: 14px; }
}


/* =============================================================
   10. Voice
   ============================================================= */
.voice {
  background:
    radial-gradient(80% 60% at 0% 100%, rgba(223,232,236,.55) 0%, rgba(255,255,255,0) 60%),
    var(--c-base);
}

.voice__grid {
  display: grid;
  gap: 20px;
}

.voice__card {
  position: relative;
  padding: 36px 26px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.voice__card::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 20px;
  font-family: var(--f-en);
  font-size: 56px;
  line-height: 1;
  color: rgba(201, 169, 138, .38);
}

.voice__card p {
  font-size: 14px;
  line-height: 2;
}

.voice__card footer {
  margin-top: 18px;
  text-align: right;
}
.voice__card cite {
  font-style: normal;
  font-size: 12px;
  color: var(--c-text-light);
  letter-spacing: .08em;
}

@media (min-width: 768px) {
  .voice__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}


/* =============================================================
   11. Reserve
   ============================================================= */
.reserve {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(100% 100% at 50% 0%, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(120deg, var(--c-pink) 0%, #f7f1ea 50%, var(--c-blue) 100%);
}
@media (min-width: 768px) { .reserve { padding: 110px 0; } }

/* 施術風景の写真を背景に重ねる */
.reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/reserve-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: .3;
}
.reserve::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(75% 70% at 50% 50%, rgba(253,252,251,.9) 0%, rgba(253,252,251,.45) 65%, rgba(253,252,251,.1) 100%);
}
.reserve > .container { position: relative; z-index: 1; }

.reserve__en {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .28em;
  color: var(--c-accent-deep);
  margin-bottom: 10px;
}

.reserve__title {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: .18em;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .reserve__title { font-size: 30px; } }

.reserve__lead {
  font-size: 14px;
  color: var(--c-text-light);
  margin-bottom: 36px;
}

.reserve__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.reserve__actions .btn { width: 100%; max-width: 320px; }
.reserve__actions .btn--primary {
  font-size: 18px;
  letter-spacing: .08em;
}

.reserve__note {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--c-text-light);
}

@media (min-width: 768px) {
  .reserve__actions { flex-direction: row; justify-content: center; }
  .reserve__actions .btn { width: auto; }
}


/* =============================================================
   12. Access
   ============================================================= */
.access { background: var(--c-base); }

.access__body {
  display: grid;
  gap: 36px;
}

.access__photo {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.access__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access__row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--c-line);
}
.access__row:first-child { border-top: 1px solid var(--c-line); }

.access__row dt {
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--c-accent-deep);
}
.access__row dd {
  font-size: 13.5px;
  line-height: 1.9;
}
.access__row a:hover { color: var(--c-accent-deep); }

@media (min-width: 768px) {
  .access__body {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .access__photo { aspect-ratio: 1 / 1; }
  .access__row { grid-template-columns: 100px 1fr; }
  .access__row dd { font-size: 14px; }
}


/* =============================================================
   13. Footer
   ============================================================= */
.footer {
  padding: 56px 0 24px;
  background: linear-gradient(180deg, var(--c-base-2) 0%, #ece5de 100%);
}

.footer__inner {
  display: grid;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-line);
}

.logo--footer .logo__main { font-size: 24px; }

.footer__addr {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 2;
  color: var(--c-text-light);
}

.footer__nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}
.footer__nav a {
  font-size: 13px;
  color: var(--c-text-light);
}
.footer__nav a:hover { color: var(--c-accent-deep); }

.footer__sns {
  display: flex;
  gap: 22px;
}
.footer__sns a {
  font-family: var(--f-en2);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--c-text-light);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.footer__sns a:hover {
  color: var(--c-accent-deep);
  border-bottom-color: var(--c-accent);
}

.copyright {
  margin-top: 24px;
  font-family: var(--f-en2);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--c-text-light);
  text-align: center;
}

@media (min-width: 768px) {
  .footer { padding-top: 72px; }
  .footer__inner {
    grid-template-columns: 1.4fr 1fr auto;
    gap: 40px;
    align-items: start;
  }
  .footer__nav ul { grid-template-columns: repeat(2, auto); gap: 12px 40px; }
  .footer__sns { flex-direction: column; gap: 12px; }
}

/* =============================================================
   14. Images（写真の共通指定）
   -------------------------------------------------------------
   写真は images/ フォルダ。差し替え時のファイル名・推奨サイズは
   images/README.md を参照してください。
   ============================================================= */

/* 読み込み前に色が抜けて見えないよう、下地を敷いておく */
.concept__img,
.gallery__thumb,
.access__photo {
  background-color: var(--c-base-2);
}

/* 写真の上に薄い光を重ねて、サイト全体の透明感になじませる */
.concept__img::after,
.gallery__thumb::after,
.access__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}
.gallery__thumb,
.access__photo { position: relative; }

/* 背景写真を敷いているセクションの共通指定 */
.menu::before,
.menu::after,
.reserve::before,
.reserve::after {
  pointer-events: none;
}
