:root{
  --bg:#000000;
  --text:#ffffff;
  --muted:rgba(255,255,255,.85);
  --soft:rgba(255,255,255,.65);
  --line:rgba(255,255,255,.25);
  --line-strong:rgba(255,255,255,.5);
  --panel:rgba(255,255,255,.05);
  --max:1180px;
  --gold:#d6c29a;
  --space-1:12px;
  --space-2:20px;
  --space-3:32px;
  --space-4:48px;
  --space-5:72px;
  --space-6:100px;
  --space-7:140px;
  --shadow:0 20px 60px rgba(0,0,0,.35);
}

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

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-height:100vh;
  overflow-x: clip;
  overflow-y: auto;
  color:#ffffff;
  background:
    radial-gradient(circle at 18% 14%, rgba(255,255,255,.08) 0 1px, transparent 1.4px) 0 0 / 120px 120px,
    radial-gradient(circle at 73% 22%, rgba(255,255,255,.06) 0 1px, transparent 1.5px) 0 0 / 170px 170px,
    radial-gradient(circle at 40% 70%, rgba(255,255,255,.06) 0 1px, transparent 1.6px) 0 0 / 220px 220px,
    linear-gradient(180deg, #000000 0%, #04070c 40%, #000000 100%);
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "MS PMincho",
    "Times New Roman",
    serif;
  line-height:1.9;
  letter-spacing:.04em;
}

main{
  width:100%;
}

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

a{
  color:#ffffff;
  text-decoration:none;
}

h1,h2,h3,h4,h5,h6{
  color:#ffffff;
}

p{
  color:rgba(255,255,255,.9);
}

.wrap{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
  position:relative;
  z-index:2;
}

.section{
  position:relative;
  padding:var(--space-7) 0;
  max-width:100%;
}

.section-tight{
  padding:var(--space-6) 0;
  max-width:100%;
}

.section-title{
  margin:0 0 22px;
  font-size:clamp(20px, 2.2vw, 34px);
  font-weight:400;
  letter-spacing:.18em;
  text-align:center;
}

.section-subtitle{
  margin:0 auto 44px;
  max-width:760px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
  line-height:2;
}

.eyebrow{
  display:block;
  margin-bottom:14px;
  color:var(--gold);
  font-size:11px;
  letter-spacing:.28em;
  text-transform:uppercase;
}

.divider{
  width:1px;
  height:56px;
  background:linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.4), rgba(255,255,255,0));
  margin:0 auto 26px;
}

.gold-line{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;
  opacity:.65;
  background:
    radial-gradient(circle at 18% 10%, rgba(228,196,132,.6) 0 1px, transparent 2px) 0 0 / 160px 160px,
    radial-gradient(circle at 80% 26%, rgba(228,196,132,.35) 0 1px, transparent 2px) 0 0 / 200px 200px,
    linear-gradient(
      160deg,
      transparent 0%,
      transparent 28%,
      rgba(188,146,79,.05) 33%,
      rgba(214,194,154,.25) 38%,
      rgba(255,242,214,.35) 40%,
      rgba(214,194,154,.22) 42%,
      rgba(188,146,79,.05) 47%,
      transparent 53%,
      transparent 100%
    );
  mix-blend-mode:screen;
}

.gold-line::after{
  content:"";
  position:absolute;
  inset:-20% -10%;
  background:
    linear-gradient(
      160deg,
      transparent 0%,
      transparent 31%,
      rgba(255,225,180,.03) 35%,
      rgba(255,233,191,.18) 39%,
      rgba(255,245,225,.28) 40.2%,
      rgba(255,233,191,.16) 41.4%,
      rgba(255,225,180,.03) 45%,
      transparent 49%,
      transparent 100%
    );
  filter:blur(10px);
  opacity:.85;
}

.skip-seo{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  max-width:100%;
  z-index:100;
  background:linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
  transition:background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  color:#fff;
}

.site-header.is-scrolled{
  background:rgba(10,10,10,.72);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
  width:min(var(--max), calc(100% - 24px));
  margin:0 auto;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
  flex:1;
}

.brand-mark{
  width:20px;
  height:auto;
  opacity:.95;
  flex-shrink:0;
}

.brand-text{
  font-size:11px;
  letter-spacing:.28em;
  white-space:nowrap;
}

.header-desktop{
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  gap:24px;
}

.nav a{
  font-size:11px;
  letter-spacing:.18em;
  color:#ffffff;
  transition:opacity .3s ease;
}

.nav a:hover{
  opacity:.65;
}

.nav-wrap{
  visibility:hidden;
  max-width:100%;
  box-sizing:border-box;
}

/* =========================
   Price
========================= */
.price-plans{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:32px;
  margin-top:48px;
}

.price-plan{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
}

.price-plan-head{
  padding:28px 28px 24px;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.price-plan-label{
  display:inline-block;
  font-family:'Cormorant Garamond', serif;
  font-size:18px;
  letter-spacing:.28em;
  color:var(--gold);
  margin-bottom:10px;
}

.price-plan-title{
  margin:0 0 10px;
  font-size:14px;
  font-weight:500;
  letter-spacing:.06em;
  color:#fff;
}

.price-plan-desc{
  margin:0;
  font-size:13px;
  line-height:1.9;
  color:rgba(255,255,255,.65);
}

.price-table{
  width:100%;
  border-collapse:collapse;
}

.price-table th,
.price-table td{
  padding:14px 20px;
  text-align:center;
  font-size:14px;
  letter-spacing:.04em;
  border-bottom:1px solid rgba(255,255,255,.07);
}

.price-table th{
  font-size:11px;
  letter-spacing:.14em;
  color:rgba(255,255,255,.5);
  font-weight:400;
  background:rgba(255,255,255,.04);
}

.price-table td{
  color:rgba(255,255,255,.88);
}

/* 価格列（3列目）のデータのみ右揃え・ヘッダーはセンターのまま */
.price-table tbody td:last-child{
  text-align:right;
  color:var(--gold);
  font-family:'Cormorant Garamond', serif;
  font-size:16px;
  letter-spacing:.06em;
}

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

.price-table tbody tr:hover td{
  background:rgba(255,255,255,.03);
}

.price-note{
  margin-top:28px;
  font-size:12px;
  line-height:2;
  color:rgba(255,255,255,.45);
  text-align:center;
}

.price-note p{
  margin:0;
}

.price-surcharge{
  margin-top:40px;
  border:1px solid rgba(255,255,255,.1);
  padding:28px;
}

.price-surcharge-title{
  font-family:'Cormorant Garamond', serif;
  font-size:13px;
  letter-spacing:.22em;
  color:var(--gold);
  margin:0 0 12px;
  text-align:center;
}

.price-surcharge-note{
  font-size:13px;
  color:rgba(255,255,255,.55);
  text-align:center;
  margin:0 0 20px;
  line-height:1.8;
  letter-spacing:.04em;
}

.price-surcharge-rate-label{
  font-size:11px;
  letter-spacing:.18em;
  color:rgba(255,255,255,.4);
  text-align:center;
  margin:0 0 12px;
}

.price-surcharge-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:1px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
}

.price-surcharge-grid > div{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:14px 8px;
  background:rgba(255,255,255,.02);
  text-align:center;
}

.price-surcharge-grid > div span:first-child{
  font-size:12px;
  color:rgba(255,255,255,.6);
  letter-spacing:.06em;
}

.price-surcharge-grid > div span:last-child{
  font-size:13px;
  color:var(--gold);
  font-family:'Cormorant Garamond', serif;
  letter-spacing:.06em;
}

@media (max-width:768px){
  .price-plans{
    grid-template-columns:1fr;
    gap:24px;
    margin-top:36px;
  }

  .price-plan-head{
    padding:22px 18px 18px;
  }

  .price-table th,
  .price-table td{
    padding:12px 14px;
    font-size:13px;
  }

  .price-surcharge{
    padding:20px 16px;
  }

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

.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.22);
  background:transparent;
  color:#fff;
  padding:0;
  cursor:pointer;
  flex-shrink:0;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after{
  content:"";
  display:block;
  width:18px;
  height:1px;
  margin:0 auto;
  background:#fff;
  transition:.3s ease;
}

.menu-toggle span{
  margin:6px auto;
}

.menu-toggle.is-open span{
  opacity:0;
}

.menu-toggle.is-open::before{
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.is-open::after{
  transform:translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 28px;
  border:1px solid rgba(255,255,255,.5);
  font-size:12px;
  letter-spacing:.18em;
  transition:background .3s ease, border-color .3s ease, transform .3s ease;
  color:#ffffff;
  text-align:center;
  max-width:100%;
}

.btn:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.72);
  transform:translateY(-1px);
}

.btn-gold{
  border-color:rgba(214,194,154,.65);
  color:#fff;
  background:rgba(214,194,154,.08);
}

.btn-gold:hover{
  background:rgba(214,194,154,.16);
  border-color:rgba(214,194,154,.92);
}

.btn-tel{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 28px;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.02);
  color:#ffffff;
  font-size:13px;
  letter-spacing:.14em;
  text-align:center;
  transition:background .3s ease, border-color .3s ease, transform .3s ease;
  max-width:100%;
}

.btn-tel:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.8);
  transform:translateY(-1px);
}

/* Hero */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:120px 0 72px;
  max-width:100%;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.05), transparent 42%),
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.38));
  z-index:0;
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:400px;
  background:linear-gradient(to bottom, transparent, #000000);
  z-index:1;
  pointer-events:none;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(320px, 420px);
  gap:64px;
  align-items:center;
  position:relative;
  z-index:2;
  max-width:100%;
}

.hero-copy{
  max-width:640px;
  padding-top:40px;
}

.hero-logo{
  width:min(360px, 60vw);
  margin:0 0 22px;
}

.hero-script{
  margin:0 0 40px;
  font-size:clamp(32px, 4.4vw, 72px);
  line-height:1;
  font-style:italic;
  font-weight:400;
  color:rgba(255,255,255,.92);
  letter-spacing:.03em;
}

.hero-copy p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:clamp(14px, 1.2vw, 17px);
  line-height:2.25;
}

.hero-copy p:last-child{
  margin-bottom:0;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.hero-visual{
  position:relative;
  display:flex;
  justify-content:flex-end;
  max-width:100%;
}

.hero-cake-wrap{
  position:relative;
  width:100%;
  max-width:340px;
  margin-left:auto;
}

.hero-cake{
  width:100%;
  height:auto;
  display:block;
  filter:drop-shadow(0 30px 50px rgba(0,0,0,.45));
}

.hero-note{
  position:absolute;
  right:14px;
  bottom:-24px;
  width:min(240px, 70%);
  max-width:100%;
  background:rgba(0,0,0,.44);
  border:1px solid rgba(255,255,255,.12);
  padding:14px 16px;
  font-size:12px;
  line-height:1.9;
  color:rgba(255,255,255,.82);
  backdrop-filter:blur(8px);
  box-sizing:border-box;
}

/* Intro */
.intro-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:center;
}

.panel{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.1);
  padding:34px 28px;
  box-shadow:var(--shadow);
}

.intro-copy h2{
  margin:0 0 20px;
  font-size:clamp(22px, 2.5vw, 38px);
  line-height:1.6;
  font-weight:400;
  letter-spacing:.14em;
}

.intro-copy p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
}

.intro-keywords{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:24px;
}

.keyword-card{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.02);
  padding:16px 14px;
  font-size:12px;
  line-height:1.8;
  color:rgba(255,255,255,.92);
  text-align:center;
}

.intro-image img{
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:cover;
  box-shadow:var(--shadow);
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  aspect-ratio:1 / 1;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease, opacity .5s ease;
}

.gallery-item:hover img{
  transform:scale(1.05);
  opacity:.92;
}

.gallery-caption{
  position:absolute;
  inset:auto 0 0 0;
  padding:10px 12px;
  background:linear-gradient(to top, rgba(0,0,0,.64), rgba(0,0,0,0));
  font-size:11px;
  letter-spacing:.12em;
  color:rgba(255,255,255,.9);
}

/* Atelier */
.atelier-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.atelier-image img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
  box-shadow:var(--shadow);
}

.atelier-copy h2{
  margin:0 0 18px;
  font-size:clamp(22px, 2.4vw, 34px);
  font-weight:400;
  letter-spacing:.14em;
  line-height:1.7;
}

.atelier-copy p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
}

/* Order step */
.steps{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.step{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  padding:24px 20px;
  min-height:220px;
}

.step-number{
  display:block;
  margin-bottom:16px;
  color:var(--gold);
  font-size:12px;
  letter-spacing:.22em;
}

.step h3{
  margin:0 0 14px;
  font-size:18px;
  font-weight:400;
  letter-spacing:.1em;
  line-height:1.7;
}

.step p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:2;
}

.order-actions{
  justify-content:center;
  margin-top:32px;
}

/* Order Note */
.order-note{
  margin-top:32px;
  padding:20px 22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  font-size:13px;
  line-height:2;
  color:rgba(255,255,255,.7);
}

.order-note-title{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.18em;
  color:rgba(255,255,255,.85);
}

.order-note p{
  margin:0 0 10px;
}

.order-note-small{
  margin-top:6px;
  font-size:12px;
  color:rgba(255,255,255,.55);
}

/* Chef */
.chef-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:32px;
}

.chef-card{
  padding:28px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}

.chef-photo{
  width:185px;
  aspect-ratio:1/1.15;
  object-fit:cover;
  margin:0 auto 24px;
  filter:grayscale(100%);
  box-shadow:0 14px 30px rgba(0,0,0,.3);
}

.chef-role{
  display:block;
  margin-bottom:8px;
  color:var(--gold);
  font-size:11px;
  letter-spacing:.24em;
  text-align:center;
  text-transform:uppercase;
}

.chef-name-en{
  margin:0;
  font-size:20px;
  font-weight:400;
  letter-spacing:.14em;
  text-align:center;
  line-height:1.6;
}

.chef-name-ja{
  margin:8px 0 22px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

.chef-card ul{
  list-style:none;
  margin:0;
  padding:0;
}

.chef-card li{
  padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.86);
  font-size:13px;
  line-height:1.85;
}

/* Semi Order */
.semi-order-section{
  position:relative;
}

.semi-order-box{
  display:grid;
  grid-template-columns:2fr 3fr;
  gap:40px;
  align-items:center;
  padding:34px 28px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}

.semi-order-image img{
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:cover;
  box-shadow:0 20px 40px rgba(0,0,0,.28);
}

.semi-order-body{
  min-width:0;
}

.semi-order-title{
  margin:0 0 20px;
  font-size:clamp(22px, 2.2vw, 34px);
  font-weight:400;
  letter-spacing:.12em;
  line-height:1.7;
  color:#ffffff;
}

.semi-order-body p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
  line-height:2;
}

.semi-order-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:24px;
}

.semi-order-item{
  padding:14px 12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  text-align:center;
  font-size:12px;
  line-height:1.8;
  color:rgba(255,255,255,.92);
}

.semi-order-actions{
  margin-top:28px;
}


/* SEO text */
.seo-box{
  max-width:980px;
  margin:0 auto;
  padding:38px 28px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
}

.seo-box h2{
  margin:0 0 18px;
  text-align:center;
  font-size:clamp(22px, 2.2vw, 32px);
  font-weight:400;
  letter-spacing:.14em;
  line-height:1.7;
}

.seo-box h3{
  margin:34px 0 12px;
  font-size:16px;
  font-weight:400;
  letter-spacing:.08em;
}

.seo-box p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:14px;
}

/* FAQ */
.faq{
  max-width:900px;
  margin:0 auto;
}

/* ── カテゴリ（1階層） ── */
.faq-cat{
  border-bottom:1px solid rgba(255,255,255,.12);
}

.faq-cat:first-child{
  border-top:1px solid rgba(255,255,255,.12);
}

.faq-cat-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:24px 0;
  background:transparent;
  border:none;
  cursor:pointer;
  color:#fff;
  font-family:inherit;
  font-size:16px;
  font-weight:500;
  letter-spacing:.08em;
  text-align:left;
  transition:color .4s ease;
}

.faq-cat-btn:hover{
  color:var(--gold);
}

/* ── 質問（2階層） ── */
.faq-cat-body{
  padding:0 0 12px 0;
}

.faq-q{
  border-top:1px solid rgba(255,255,255,.07);
}

.faq-q:last-child{
  border-bottom:1px solid rgba(255,255,255,.07);
}

.faq-q-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 0 18px 24px;
  background:transparent;
  border:none;
  cursor:pointer;
  color:rgba(255,255,255,.78);
  font-family:inherit;
  font-size:14px;
  font-weight:400;
  letter-spacing:.04em;
  text-align:left;
  transition:color .3s ease;
}

.faq-q-btn:hover{
  color:#fff;
}

.faq-q-btn[aria-expanded="true"]{
  color:#fff;
}

/* ── 回答（3階層） ── */
.faq-a{
  padding:0 0 20px 24px;
}

.faq-a p{
  margin:0;
  font-size:13px;
  line-height:2.1;
  color:var(--muted);
  border-left:1px solid rgba(255,255,255,.1);
  padding-left:18px;
}

/* ── アイコン（＋/－ 共通） ── */
.faq-icon{
  flex-shrink:0;
  width:18px;
  height:18px;
  position:relative;
}

.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  background:var(--gold);
  transition:transform .5s cubic-bezier(0.16,1,0.3,1), opacity .5s ease;
}

.faq-icon::before{
  width:100%;
  height:1px;
  top:50%;
  left:0;
  transform:translateY(-50%);
}

.faq-icon::after{
  width:1px;
  height:100%;
  top:0;
  left:50%;
  transform:translateX(-50%);
}

/* カテゴリ開 */
.faq-cat-btn[aria-expanded="true"] .faq-icon::after{
  opacity:0;
  transform:translateX(-50%) rotate(90deg);
}

/* 質問開 */
.faq-q-btn[aria-expanded="true"] .faq-icon{
  opacity:.6;
}

.faq-q-btn[aria-expanded="true"] .faq-icon::after{
  opacity:0;
  transform:translateX(-50%) rotate(90deg);
}

/* ── カテゴリ内のアイコンは少し小さく ── */
.faq-q-btn .faq-icon{
  width:14px;
  height:14px;
}

/* Access */
.access-section{
  position:relative;
  padding:120px 0 140px;
}

.access-title{
  margin-bottom:42px;
  font-size:clamp(30px, 3vw, 46px);
  letter-spacing:.16em;
}

/* 上段：写真＋地図 2カラム */
.access-media{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:48px;
}

.access-photo,
.access-map{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  box-shadow:0 20px 60px rgba(0,0,0,.26);
  overflow:hidden;
}

.access-photo img{
  width:100%;
  aspect-ratio:16 / 10;
  display:block;
  object-fit:cover;
}

.access-map-wrap{
  display:flex;
  flex-direction:column;
  gap:0;
}

.access-map{
  padding:0;
}

.access-map iframe{
  width:100%;
  aspect-ratio:16 / 10;
  border:0;
  display:block;
}

/* 下段：情報4カラム */
.access-info{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:32px;
  padding-top:40px;
  border-top:1px solid rgba(255,255,255,.08);
}

.access-block h3{
  margin:0 0 12px;
  font-size:11px;
  font-weight:400;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
}

.access-block p{
  margin:0;
  font-size:14px;
  line-height:2.05;
  color:rgba(255,255,255,.86);
}

.access-contact-btn{
  margin-top:18px;
}

.access-contact-btn .btn-tel{
  width:100%;
}

/* マップリンク */
.access-map-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:32px 0 0;
}

.access-map-link{
  min-width:240px;
  padding:14px 28px;
  border:1px solid rgba(255,255,255,.38);
  background:rgba(255,255,255,.02);
  color:#ffffff;
  letter-spacing:.16em;
}

.access-map-link:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.64);
}

.contact-hours{
  margin-top:10px;
  font-size:13px;
  color:rgba(255,255,255,.8);
}

.contact-hours span{
  font-size:12px;
  color:rgba(255,255,255,.6);
}

/* Lightbox */
.lb-overlay{
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(0,0,0,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .35s ease;
}

.lb-overlay.is-open{
  opacity:1;
  pointer-events:auto;
}

.lb-inner{
  position:relative;
  max-width:min(90vw, 860px);
  max-height:90vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}

.lb-img{
  max-width:100%;
  max-height:80vh;
  object-fit:contain;
  display:block;
  box-shadow:0 24px 64px rgba(0,0,0,.5);
  opacity:1;
  transition:opacity .2s ease;
}

.lb-caption{
  font-family:'Cormorant Garamond', serif;
  font-size:12px;
  letter-spacing:.22em;
  color:var(--gold);
  margin:0;
  text-align:center;
}

.lb-close{
  position:fixed;
  top:24px;
  right:28px;
  width:44px;
  height:44px;
  background:transparent;
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:border-color .3s, background .3s;
  z-index:2001;
}

.lb-close:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.6);
}

.lb-prev,
.lb-next{
  position:fixed;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  background:transparent;
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  font-size:28px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:border-color .3s, background .3s;
  z-index:2001;
}

.lb-prev{ left:20px; }
.lb-next{ right:20px; }

.lb-prev:hover,
.lb-next:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.6);
}

.gallery-item{
  cursor:zoom-in;
}

@media (max-width:768px){
  .lb-prev{ left:8px; }
  .lb-next{ right:8px; }
  .lb-close{ top:12px; right:12px; }
}

/* Footer */
.site-footer{
  position:relative;
  padding:56px 0 32px;
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
  color:#fff;
  max-width:100%;
  overflow-x:hidden;
}

.footer-inner{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
  text-align:center;
}

.footer-brand{
  font-size:14px;
  letter-spacing:.32em;
  color:rgba(255,255,255,.78);
  line-height:1.8;
}

.footer-links{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  width:100%;
}

.footer-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:10px 22px;
}

.footer-row a{
  position:relative;
  font-size:11px;
  letter-spacing:.12em;
  color:rgba(255,255,255,.74);
  transition:opacity .3s ease;
}

.footer-row a:hover{
  opacity:.65;
}

.footer-row-primary a{
  color:rgba(255,255,255,.82);
}

.footer-row-secondary a{
  color:rgba(255,255,255,.62);
  font-size:10px;
  letter-spacing:.08em;
}

.copyright{
  width:100%;
  margin-top:10px;
  font-size:10px;
  color:rgba(255,255,255,.5);
  letter-spacing:.08em;
  line-height:1.7;
}

/* Floating CTA */
.floating-cta{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:80;
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:52px;
  width:auto;
  max-width:calc(100% - 32px);
  padding:14px 18px;
  border:1px solid rgba(214,194,154,.7);
  background:rgba(0,0,0,.58);
  color:#fff;
  font-size:11px;
  letter-spacing:.14em;
  line-height:1.6;
  text-align:center;
  backdrop-filter:blur(8px);
  box-shadow:0 10px 30px rgba(0,0,0,.28);
  box-sizing:border-box;
}

/* Tablet */
@media (max-width: 1024px){
  .hero-grid,
  .intro-grid,
  .atelier-grid{
    grid-template-columns:1fr;
  }

  .access-media{
    grid-template-columns:1fr;
  }

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

  .hero-grid{
    gap:32px;
  }

  .hero-copy{
    max-width:none;
    text-align:center;
    padding-top:0;
  }

  .hero-logo{
    margin-inline:auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-cake-wrap{
    margin:0 auto;
  }

  .hero-note{
    right:50%;
    transform:translateX(50%);
  }

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

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

  .semi-order-box{
    grid-template-columns:1fr;
  }
}

/* Mobile */
@media (max-width: 768px){
  :root{
    --space-6:72px;
    --space-7:96px;
  }

  body{
    padding-bottom:82px;
  }

  .wrap{
    width:calc(100% - 24px);
    max-width:100%;
  }

  .site-header{
    background:rgba(12,12,12,.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .header-inner{
    width:calc(100% - 24px);
    min-height:64px;
    gap:8px;
  }

  .brand{
    gap:8px;
  }

  .brand-mark{
    width:16px;
  }

  .brand-text{
    font-size:8px;
    letter-spacing:.08em;
    line-height:1.25;
    white-space:normal;
    word-break:keep-all;
  }

  .header-desktop{
    display:none;
  }

  .menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
  }

  .nav-wrap{
    position:fixed;
    top:64px;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    z-index:99;
    background:rgba(8,8,8,.96);
    padding:18px 16px 24px;
    transform:translateY(-110%);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:transform .35s ease, opacity .35s ease, visibility .35s ease;
    overflow-y:auto;
  }

  .nav-wrap.is-open{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .nav{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .nav a{
    font-size:12px;
  }

  .nav .btn-tel{
    width:100%;
  }

  .hero{
    min-height:auto;
    padding:96px 0 24px;
  }

  .hero-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:22px;
    width:100%;
  }

  .hero-copy{
    order:1;
    width:100%;
    max-width:100%;
    margin:0 auto;
    padding-top:0;
    text-align:center;
  }

  .hero-visual{
    order:2;
    width:100%;
    display:flex;
    justify-content:center;
  }

  .hero-cake-wrap{
    width:min(62vw, 260px);
    max-width:none;
    margin:8px auto 0;
  }

  .hero-logo{
    width:min(220px, 58vw);
    margin:0 auto 14px;
  }

  .hero-script{
    margin:0 0 16px;
    font-size:30px;
    line-height:1;
  }

  .hero-copy p{
    margin:0 0 10px;
    font-size:12px;
    line-height:1.9;
    letter-spacing:.02em;
  }

  .hero-actions{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    width:100%;
    max-width:100%;
    margin:22px auto 0;
    justify-content:initial;
  }

  .hero-actions .btn,
  .hero-actions .btn-tel{
    width:100%;
    min-width:0;
    min-height:48px;
    padding:12px 14px;
    font-size:11px;
    line-height:1.5;
    letter-spacing:.02em;
    white-space:normal;
    word-break:keep-all;
    overflow-wrap:break-word;
  }

  .hero-note{
    position:static;
    transform:none;
    width:100%;
    max-width:100%;
    margin:14px auto 0;
    padding:12px 14px;
    font-size:11px;
    line-height:1.8;
    text-align:center;
  }

  .section-title{
    margin-bottom:18px;
  }

  .section-subtitle{
    margin-bottom:28px;
    font-size:13px;
  }

  .panel,
  .chef-card,
  .seo-box{
    padding:24px 18px;
  }

    /* Gallery */
  .gallery-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
  }

  /* Order step */
  .step{
    min-height:auto;
  }

  .order-note{
    margin-top:24px;
    padding:16px;
    font-size:12px;
    line-height:1.9;
  }

   /* Chef info */ 
  .chef-grid,
  .steps{
    grid-template-columns:1fr;
  }

  /* Semi Order */
  .semi-order-box{
    gap:24px;
    padding:24px 18px;
  }

  .semi-order-title{
    margin-bottom:16px;
    font-size:22px;
    letter-spacing:.08em;
  }

  .semi-order-body p{
    font-size:13px;
    line-height:1.95;
  }

  .semi-order-list{
    grid-template-columns:1fr;
    gap:10px;
    margin-top:20px;
  }

  .semi-order-actions{
    margin-top:22px;
  }

  .semi-order-actions .btn-tel{
    width:100%;
  }

    /* Acces */
  .access-section{
    padding:88px 0 100px;
  }

  .access-title{
    margin-bottom:28px;
  }

  .access-media{
    gap:12px;
    margin-top:32px;
  }

  .access-photo img{
    aspect-ratio:16 / 10;
  }

  .access-map iframe{
    aspect-ratio:auto;
    height:280px;
  }

  .access-info{
    margin-top:28px;
    grid-template-columns:1fr;
    gap:24px;
    padding-top:28px;
  }

  .access-map-btn{
    padding:24px 0 0;
  }

  .access-map-link,
  .access-contact-btn .btn-tel{
    width:100%;
    min-width:100%;
  }

    /* Footer */
  .site-footer{
    position:relative;
    padding:56px 0 32px;
    background:rgba(255,255,255,.03);
    border-top:1px solid rgba(255,255,255,.08);
    color:#fff;
    max-width:100%;
  }

  .footer-inner{
    width:min(var(--max), calc(100% - 32px));
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:20px;
    text-align:center;
  }

  .footer-brand{
    font-size:11px;
    letter-spacing:.32em;
    color:rgba(255,255,255,.78);
    line-height:1.8;
  }

  .footer-links{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    width:100%;
  }

  .footer-row{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:10px 22px;
  }

  .footer-row a{
    position:relative;
    font-size:11px;
    letter-spacing:.12em;
    color:rgba(255,255,255,.74);
    transition:opacity .3s ease;
  }

  .footer-row a:hover{
    opacity:.65;
  }

  .footer-row-primary a{
    color:rgba(255,255,255,.82);
  }

  .footer-row-secondary a{
    color:rgba(255,255,255,.62);
    font-size:10px;
    letter-spacing:.08em;
  }

  .copyright{
    margin-top:4px;
    font-size:10px;
    color:rgba(255,255,255,.48);
    letter-spacing:.08em;
    line-height:1.7;
  }

  .floating-cta{
    position:fixed;
    left:10px;
    right:10px;
    bottom:8px;
    z-index:120;
    display:flex;
    align-items:center;
    justify-content:center;
    height:56px;
    min-height:56px;
    width:auto;
    max-width:none;
    padding:8px 12px;
    border:1px solid rgba(214,194,154,.72);
    background:rgba(0,0,0,.94);
    color:#fff;
    font-size:10px;
    line-height:1.35;
    letter-spacing:.01em;
    text-align:center;
    white-space:normal;
    word-break:keep-all;
    backdrop-filter:blur(8px);
    box-shadow:0 8px 24px rgba(0,0,0,.28);
    box-sizing:border-box;
  }
}

/* Small mobile */
@media (max-width: 420px){
  body{
    padding-bottom:82px;
  }

  .wrap{
    width:calc(100% - 24px);
  }

  .brand-text{
    font-size:8px;
    letter-spacing:.06em;
    line-height:1.2;
  }

  .gallery-grid{
    gap:8px;
  }

  .hero-copy{
    max-width:100%;
  }

  .hero-actions{
    max-width:100%;
  }

  .hero-logo{
    width:min(190px, 56vw);
  }

  .hero-script{
    font-size:28px;
    margin-bottom:14px;
  }

  .hero-copy p{
    font-size:11.5px;
    line-height:1.9;
  }

  .hero-cake-wrap{
    width:min(64vw, 220px);
    max-width:none;
  }

  .hero-note{
    max-width:100%;
    font-size:10.5px;
    line-height:1.75;
  }

  .hero-actions .btn,
  .hero-actions .btn-tel{
    min-height:44px;
    padding:11px 12px;
    font-size:10.5px;
    line-height:1.45;
    letter-spacing:.02em;
  }
}

/* Final guard */
body *{
  max-width:100%;
}

*[style*="100vw"]{
  width:100% !important;
}