:root{
  --bg:#f7f3ee;
  --card:#f7f3ee;
  --text:#1d1d1d;
  --white:#fff;
  --brown:#2a2320;
  --line:rgba(0,0,0,.08);
  --line-strong:rgba(0,0,0,.18);
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:'Noto Sans JP', sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{
  width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

ul{
  margin:0;
  padding:0;
  list-style:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

button{
  cursor:pointer;
}

textarea{
  resize:vertical;
}

/* ==========================
   BASE
========================== */

.container{
  width:min(100% - 128px, 1200px);
  margin-inline:auto;
}

.section-label{
  margin:0 0 28px;
  font-size:14px;
  letter-spacing:.18em;
  color:rgba(0,0,0,.42);
  font-family:"Helvetica Neue", sans-serif;
}

.section-title{
  margin:0 0 52px;
  font-size:clamp(30px, 4vw, 58px);
  line-height:1.35;
  font-weight:500;
  letter-spacing:.02em;
}

.section-cta{
  width:min(100%, 760px);
  margin:56px auto 0;
  text-align:center;
}

.cta-lead{
  margin:0 0 24px;
  font-size:18px;
  line-height:2;
}

/* ==========================
   STORY REVEAL
========================== */

.story-reveal{
  opacity:0;
  transform:translateY(28px);
  transition:
    opacity .9s ease,
    transform .9s ease;
}

.story-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

.point-card:nth-child(2),
.entry-card:nth-child(2){
  transition-delay:.08s;
}

.point-card:nth-child(3),
.entry-card:nth-child(3){
  transition-delay:.16s;
}

.entry-card:nth-child(4){
  transition-delay:.24s;
}

/* ==========================
   HERO
========================== */

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
}

.hero-image{
  position:absolute;
  inset:0;
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:brightness(.76) contrast(.96) saturate(.9);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(24,21,18,.58) 0%,
    rgba(24,21,18,.42) 32%,
    rgba(24,21,18,.16) 62%,
    rgba(24,21,18,0) 100%
  );
}

.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  padding-bottom:88px;
}

.hero-content{
  width:min(100%, 760px);
}

.hero-label{
  margin:0 0 28px;
  font-size:14px;
  letter-spacing:.18em;
  color:rgba(247,243,238,.82);
  font-family:"Helvetica Neue", sans-serif;
  font-weight:500;
}

.hero-title{
  margin:0;
  font-size:clamp(34px, 4.8vw, 64px);
  line-height:1.24;
  font-weight:500;
  letter-spacing:.02em;
  color:#f7f3ee;
}

.hero-title span{
  display:block;
  margin-bottom:22px;
  font-size:15px;
  line-height:1;
  letter-spacing:.16em;
  font-weight:500;
  color:rgba(247,243,238,.86);
}

.hero-text{
  margin:38px 0 0;
  font-size:17px;
  line-height:2.05;
  color:rgba(247,243,238,.92);
}

.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:34px 0 0;
}

.hero-tags li{
  padding:10px 14px;
  font-size:12px;
  letter-spacing:.08em;
  color:rgba(247,243,238,.9);
  border:1px solid rgba(247,243,238,.28);
  background:rgba(247,243,238,.08);
  backdrop-filter:blur(10px);
}

.hero-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:240px;
  height:58px;
  margin-top:40px;
  padding-inline:30px;
  border:1px solid rgba(247,243,238,.72);
  background:rgba(17,17,17,.78);
  color:#f7f3ee;
  font-size:14px;
  letter-spacing:.08em;
  transition:.35s ease;
}

.hero-button:hover{
  background:#111;
}

.dark-button{
  border:1px solid #111;
  background:#111;
  color:#fff;
}

.hero-scroll{
  position:absolute;
  right:40px;
  bottom:36px;
  z-index:2;
  font-size:11px;
  letter-spacing:.24em;
  color:rgba(247,243,238,.62);
  writing-mode:vertical-rl;
}

/* ==========================
   INTRO
========================== */

.intro{
  padding:112px 0;
  background:var(--bg);
}

.intro-grid{
  width:min(100%, 760px);
  margin-inline:auto;
}

.intro-text{
  width:min(100%, 560px);
}

.intro-text p{
  margin:0;
  font-size:16px;
  line-height:2.15;
  color:#333;
}

.intro-text p + p{
  margin-top:28px;
}

.current-image{
  margin-top:64px;
}

.current-image img{
  aspect-ratio:16 / 10;
  object-fit:cover;
}

/* ==========================
   REASON
========================== */

.reason{
  padding:112px 0;
  background:#fff;
}

.reason > .container{
  width:min(100% - 128px, 1200px);
}

.reason .section-label,
.reason .section-title,
.reason .intro-text{
  width:min(100%, 760px);
  margin-left:auto;
  margin-right:auto;
}

.reason .intro-text{
  max-width:620px;
}

.sns-voice{
  width:min(100%, 760px);
  margin:0 auto 56px;
  display:grid;
  gap:14px;
}

.sns-voice p{
  margin:0;
  padding:18px 22px;
  background:var(--bg);
  border:1px solid rgba(0,0,0,.06);
  font-size:16px;
  line-height:1.9;
  color:#333;
}

/* ==========================
   POINTS
========================== */

.points{
  padding:112px 0;
  background:#fff;
}

.points .section-label,
.points .section-title{
  width:min(100%, 760px);
  margin-left:auto;
  margin-right:auto;
}

.points .section-title{
  margin-bottom:64px;
}

.points-scroll{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.point-card{
  min-height:390px;
  padding:40px 34px;
  background:var(--card);
  border:1px solid rgba(0,0,0,.06);
}

.point-number{
  margin:0 0 48px;
  font-size:13px;
  letter-spacing:.18em;
  color:rgba(0,0,0,.36);
  font-family:"Helvetica Neue", sans-serif;
}

.point-card h3{
  margin:0 0 28px;
  font-size:22px;
  line-height:1.65;
  font-weight:500;
  letter-spacing:.02em;
}

.point-card p{
  margin:0;
  font-size:15px;
  line-height:2;
  color:#333;
}

.point-card p + p{
  margin-top:22px;
}

/* ==========================
   RECOMMEND
========================== */

.recommend{
  padding:112px 0;
  background:var(--bg);
}

.recommend .section-label,
.recommend .section-title{
  width:min(100%, 760px);
  margin-left:auto;
  margin-right:auto;
}

.entry-cards{
  width:min(100%, 880px);
  margin-inline:auto;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.entry-card{
  display:flex;
  align-items:flex-start;
  min-height:180px;
  padding:36px 34px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
}

.entry-card p{
  margin:0;
  font-size:19px;
  line-height:2;
  letter-spacing:.02em;
}

.recommend-message{
  width:min(100%, 880px);
  margin:88px auto 0;
  text-align:center;
}

.recommend-message p{
  margin:0;
  font-size:clamp(30px, 4vw, 54px);
  line-height:1.55;
  font-weight:500;
  letter-spacing:.02em;
}

/* ==========================
   EVENT INFO
========================== */

.event-info{
  padding:112px 0;
  background:#fff;
}

.event-info .section-label,
.event-info .section-title{
  width:min(100%, 760px);
  margin-left:auto;
  margin-right:auto;
}

.event-info-card{
  width:min(100%, 880px);
  margin-inline:auto;
  padding:44px 48px;
  background:var(--bg);
  border:1px solid rgba(0,0,0,.06);
}

.event-info-list{
  margin:0;
}

.event-info-list > div{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:32px;
  padding:24px 0;
  border-bottom:1px solid var(--line);
}

.event-info-list > div:first-child{
  padding-top:0;
}

.event-info-list > div:last-child{
  padding-bottom:0;
  border-bottom:none;
}

.event-info-list dt{
  font-size:14px;
  letter-spacing:.12em;
  color:rgba(0,0,0,.46);
}

.event-info-list dd{
  margin:0;
  font-size:17px;
  line-height:2;
  font-weight:500;
}

.access-map{
  width:min(100%, 880px);
  margin:40px auto 20px;
  padding-bottom:20px;
  border-bottom:1px solid var(--line);
}

.access-map iframe{
  display:block;
  width:100%;
  height:320px;
  border:0;
}

/* ==========================
   FORM INTRO
========================== */

.form-intro{
  padding:112px 0 80px;
  background:var(--bg);
}

.form-intro .section-label,
.form-intro .section-title,
.form-intro-text{
  width:min(100%, 760px);
  margin-left:auto;
  margin-right:auto;
}

.form-intro .section-title{
  margin-bottom:48px;
}

.form-intro-text{
  max-width:560px;
  font-size:16px;
  line-height:2.15;
  color:#333;
}

/* ==========================
   FORM
========================== */

.form-section{
  padding:0 0 120px;
  background:var(--bg);
}

.reserve-form{
  width:min(100%, 880px);
  margin-inline:auto;
  padding:56px;
  background:#fff;
  border:1px solid var(--line);
}

.form-group{
  display:flex;
  flex-direction:column;
  margin-bottom:30px;
}

.form-group label{
  margin-bottom:12px;
  font-size:15px;
  line-height:1.7;
  font-weight:500;
}

.required,
.optional{
  display:inline-block;
  margin-left:8px;
  padding:2px 7px;
  font-size:11px;
  line-height:1.4;
  font-weight:400;
  letter-spacing:.06em;
}

.required{
  color:#fff;
  background:#111;
}

.optional{
  color:#666;
  background:#eee;
}

.form-help{
  margin:0 0 18px;
  font-size:13px;
  line-height:1.9;
  color:#666;
}

.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  padding:0 18px;
  color:#111;
  border-radius:0;
}

.form-group input,
.form-group select{
  height:56px;
}

.form-group textarea{
  padding-top:18px;
}

.slot-group{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}

.slot-button{
  min-height:76px;
  border:1px solid var(--line-strong);
  background:#fff;
  color:#111;
  font-size:15px;
  line-height:1.65;
  transition:.2s ease;
}

.slot-button:hover{
  background:#f7f3ee;
}

.slot-button.is-selected{
  background:#111;
  color:#fff;
  border-color:#111;
}

.slot-button.disabled,
.slot-button:disabled{
  opacity:.38;
  background:#f3f3f3;
  color:#999;
  cursor:not-allowed;
}

.form-note{
  margin:16px 0 34px;
  font-size:13px;
  line-height:1.9;
  color:#666;
}

.submit-button{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:280px;
  height:58px;
  margin-inline:auto;
  border:none;
  background:#111;
  color:#fff;
  font-size:14px;
  letter-spacing:.08em;
  cursor:pointer;
}

/* ==========================
   CLOSING
========================== */

.closing{
  padding:96px 0 112px;
  background:var(--bg);
  text-align:center;
}

.footer-logo,
.closing-logo{
  width:170px;
  margin:0 auto;
  opacity:.86;
}

.footer-company{
  margin:28px 0 0;
  font-size:13px;
  letter-spacing:.08em;
  color:#555;
}

.footer-copy{
  margin:14px 0 0;
  font-size:12px;
  letter-spacing:.08em;
  color:#777;
}

/* ==========================
   THANKS PAGE
========================== */

.thanks-page{
  background:var(--bg);
}

.thanks-hero{
  position:relative;
  min-height:72vh;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
}

.thanks-hero-image{
  position:absolute;
  inset:0;
}

.thanks-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:brightness(.76) contrast(.96) saturate(.9);
}

.thanks-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(24,21,18,.58) 0%,
    rgba(24,21,18,.42) 32%,
    rgba(24,21,18,.16) 62%,
    rgba(24,21,18,0) 100%
  );
}

.thanks-hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  padding-bottom:88px;
}

.thanks-hero-content{
  width:min(100%, 760px);
}

.thanks-hero-title{
  margin:0;
  font-size:clamp(34px, 4.8vw, 64px);
  line-height:1.24;
  font-weight:500;
  letter-spacing:.02em;
  color:#f7f3ee;
}

.thanks-hero-text{
  margin:38px 0 0;
  font-size:17px;
  line-height:2.05;
  color:rgba(247,243,238,.92);
}

.thanks-body{
  padding:112px 0 140px;
  background:var(--bg);
}

.thanks-body-inner{
  width:min(100%, 760px);
  margin-inline:auto;
}

.thanks-text{
  width:min(100%, 560px);
}

.thanks-text p{
  margin:0;
  font-size:16px;
  line-height:2.15;
  color:#333;
}

.thanks-text p + p{
  margin-top:28px;
}

.thanks-actions{
  margin-top:88px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:26px;
  text-align:center;
}

.thanks-logo{
  width:170px;
  opacity:.86;
}

.official-link{
  display:inline-block;
  font-size:14px;
  letter-spacing:.08em;
  color:#666;
}

/* ==========================
   FIXED CTA
========================== */

.fixed-cta{
  position:fixed;
  right:36px;
  bottom:34px;
  z-index:999;
  opacity:0;
  visibility:hidden;
  transform:translateY(18px);
  transition:.4s ease;
}

.fixed-cta.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.fixed-cta a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:220px;
  height:72px;
  background:#2a2320;
  color:#fff;
  font-size:14px;
  letter-spacing:.08em;
}

/* ==========================
   TABLET
========================== */

@media screen and (max-width:1100px){

  .container{
    width:min(100% - 64px, 1200px);
  }

  .reason > .container{
    width:min(100% - 64px, 1200px);
  }

  .slot-group{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* ==========================
   SP
========================== */

@media screen and (max-width:768px){

  .container,
  .reason > .container{
    width:min(100% - 32px, 1200px);
  }

  .section-label{
    margin-bottom:24px;
    font-size:12px;
  }

  .section-title{
    margin-bottom:36px;
    font-size:clamp(28px, 8vw, 42px);
    line-height:1.45;
  }

  .hero{
    min-height:100svh;
  }

  .hero-image img{
    object-position:62% center;
  }

  .hero-overlay{
    background:linear-gradient(
      180deg,
      rgba(24,21,18,.08) 0%,
      rgba(24,21,18,.28) 34%,
      rgba(24,21,18,.78) 100%
    );
  }

  .hero-inner{
    padding-bottom:64px;
  }

  .hero-content{
    width:100%;
  }

  .hero-label{
    margin-bottom:22px;
    font-size:12px;
  }

  .hero-title{
    max-width:none;
    font-size:clamp(30px, 9vw, 44px);
    line-height:1.28;
  }

  .hero-title span{
    margin-bottom:18px;
    font-size:13px;
  }

  .hero-text{
    margin-top:28px;
    font-size:14px;
    line-height:2;
  }

  .hero-tags{
    margin-top:26px;
  }

  .hero-tags li{
    padding:9px 12px;
    font-size:11px;
  }

  .hero-button{
    width:100%;
    min-width:initial;
    margin-top:32px;
  }

  .hero-scroll{
    display:none;
  }

  .intro,
  .reason,
  .points,
  .recommend,
  .event-info{
    padding:76px 0;
  }

  .form-intro{
    padding:76px 0 56px;
  }

  .intro-grid,
  .reason .section-label,
  .reason .section-title,
  .reason .intro-text,
  .points .section-label,
  .points .section-title,
  .recommend .section-label,
  .recommend .section-title,
  .event-info .section-label,
  .event-info .section-title,
  .form-intro .section-label,
  .form-intro .section-title,
  .form-intro-text{
    width:100%;
  }

  .intro-text p,
  .form-intro-text{
    font-size:14px;
    line-height:2;
  }

  .current-image{
    margin-top:44px;
  }

  .current-image img{
    aspect-ratio:4 / 3;
  }

  .sns-voice{
    width:100%;
    margin-bottom:44px;
  }

  .sns-voice p{
    padding:16px 18px;
    font-size:14px;
  }

  .points-scroll{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding-bottom:8px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .points-scroll::-webkit-scrollbar{
    display:none;
  }

  .point-card{
    flex:0 0 82%;
    min-width:82%;
    min-height:360px;
    padding:34px 28px;
    scroll-snap-align:start;
  }

  .point-card h3{
    font-size:20px;
    line-height:1.65;
    word-break:keep-all;
  }

  .point-card p{
    font-size:14px;
    line-height:1.95;
  }

  .entry-cards{
    width:100%;
    grid-template-columns:1fr;
    gap:12px;
  }

  .entry-card{
    min-height:auto;
    padding:26px 24px;
  }

  .entry-card p{
    font-size:15px;
    line-height:1.85;
    word-break:keep-all;
  }

  .recommend-message{
    width:100%;
    margin-top:60px;
    text-align:left;
  }

  .recommend-message p{
    font-size:clamp(28px, 8vw, 42px);
    line-height:1.55;
  }

  .event-info-card{
    width:100%;
    padding:28px 22px;
  }

  .event-info-list > div{
    grid-template-columns:1fr;
    gap:8px;
    padding:22px 0;
  }

  .event-info-list dt{
    font-size:12px;
  }

  .event-info-list dd{
    font-size:15px;
    line-height:1.9;
  }

  .access-map{
    width:100%;
    margin:32px auto 20px;
    padding-bottom:20px;
  }

  .access-map iframe{
    height:260px;
  }

  .reserve-form{
    width:100%;
    padding:28px 16px;
  }

  .form-section{
    padding:0 0 92px;
  }

  .form-group{
    margin-bottom:26px;
  }

  .form-group label{
    font-size:14px;
  }

  .form-help{
    font-size:13px;
  }

  .slot-group{
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
  }

  .slot-button{
    min-height:72px;
    font-size:14px;
  }

  .submit-button{
    width:100%;
    min-width:initial;
  }

  .closing{
    padding:80px 0 96px;
  }

  .footer-logo,
  .closing-logo{
    width:140px;
  }

  .thanks-hero{
    min-height:64svh;
  }

  .thanks-hero-image img{
    object-position:62% center;
  }

  .thanks-hero-overlay{
    background:linear-gradient(
      180deg,
      rgba(24,21,18,.08) 0%,
      rgba(24,21,18,.28) 34%,
      rgba(24,21,18,.78) 100%
    );
  }

  .thanks-hero-inner{
    padding-bottom:64px;
  }

  .thanks-hero-content{
    width:100%;
  }

  .thanks-hero-title{
    font-size:clamp(30px, 9vw, 44px);
    line-height:1.28;
  }

  .thanks-hero-text{
    margin-top:28px;
    font-size:14px;
    line-height:2;
  }

  .thanks-body{
    padding:76px 0 100px;
  }

  .thanks-body-inner,
  .thanks-text{
    width:100%;
  }

  .thanks-text p{
    font-size:14px;
    line-height:2.1;
  }

  .thanks-text p + p{
    margin-top:24px;
  }

  .thanks-actions{
    margin-top:64px;
    gap:22px;
  }

  .thanks-logo{
    width:140px;
  }

  .fixed-cta{
    left:0;
    right:0;
    bottom:0;
    width:100%;
    transform:translateY(100%);
  }

  .fixed-cta.show{
    transform:translateY(0);
  }

  .fixed-cta a{
    width:100%;
    height:64px;
  }
}