:root{
  --bg:#f8f7f3;
  --white:#ffffff;
  --ink:#3f4740;
  --muted:#777f77;
  --green:#74836f;
  --deep:#697169;
  --pale:#eef3ec;
  --line:#dcded6;
  --shadow:0 22px 60px rgba(74,82,73,.14);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Noto Serif JP", serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.9;
}

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

a{
  color:inherit;
  text-decoration:none;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px 5%;
  background:rgba(248,247,243,.94);
  border-bottom:1px solid var(--line);
}

.brand-text{
  font-family:"Cormorant Garamond", serif;
  font-size:42px;
  letter-spacing:.22em;
  line-height:1;
  color:var(--ink);
}

.header-reserve{
  font-family:"Cormorant Garamond", serif;
  font-size:28px;
  letter-spacing:.14em;
  border:2px solid var(--green);
  border-radius:999px;
  padding:12px 34px 14px;
  color:var(--ink);
  background:rgba(255,255,255,.35);
}

/* Hero */
.hero{
  min-height:calc(100vh - 105px);
  padding:70px 5% 110px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  background:
    radial-gradient(circle at center 18%, rgba(255,255,255,.95) 0, rgba(255,255,255,.52) 28%, rgba(248,247,243,0) 60%),
    var(--bg);
}

.hero-logo{
  width:260px;
  height:260px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto 42px;
  background:rgba(255,255,255,.42);
}

.hero-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-sub{
  margin:0 0 34px;
  font-family:"Cormorant Garamond", serif;
  font-size:29px;
  letter-spacing:.27em;
  color:var(--green);
  line-height:1.8;
}

.hero h1{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-size:86px;
  font-weight:500;
  letter-spacing:.08em;
  line-height:1.36;
  color:var(--ink);
}

.hero-text{
  margin:54px 0 50px;
  font-size:26px;
  letter-spacing:.12em;
  line-height:2;
}

.hero-buttons{
  width:min(100%, 760px);
  display:flex;
  flex-direction:column;
  gap:18px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:100%;
  min-height:82px;
  padding:18px 34px;
  border-radius:999px;
  background:var(--green);
  border:2px solid var(--green);
  color:#fff;
  font-size:25px;
  letter-spacing:.12em;
  box-shadow:0 18px 40px rgba(90,101,87,.18);
}

.btn.outline{
  background:rgba(255,255,255,.45);
  color:var(--green);
}

/* Common Section */
.section{
  padding:110px 5%;
}

.section-inner{
  max-width:1120px;
  margin:0 auto;
}

.section-inner.narrow{
  max-width:820px;
  margin:0 auto;
  text-align:center;
}

.section-label{
  margin:0 0 26px;
  font-family:"Cormorant Garamond", serif;
  font-size:26px;
  letter-spacing:.32em;
  color:var(--green);
}

.section h2{
  margin:0 0 34px;
  font-family:"Cormorant Garamond","Noto Serif JP",serif;
  font-size:58px;
  font-weight:500;
  letter-spacing:.08em;
  line-height:1.55;
}

.section p{
  font-size:21px;
  letter-spacing:.08em;
  color:var(--muted);
}

/* Concept */
.concept{
  background:var(--bg);
}

.concept h2{
  font-size:64px;
  line-height:1.65;
}

.concept p{
  max-width:900px;
}

.concept-images{
  margin-top:70px;
  display:grid;
  grid-template-columns:1fr;
  gap:44px;
}

.concept-images img{
  width:100%;
  border-radius:34px;
  box-shadow:var(--shadow);
}

/* Menu Image */
.menu{
  background:var(--bg);
  padding-top:80px;
}

.jp-title{
  font-family:"Noto Serif JP", serif !important;
  font-size:54px !important;
  letter-spacing:.22em !important;
  text-align:center;
}

.menu-image{
  margin-top:58px;
}

.menu-image img{
  width:100%;
  border-radius:28px;
  box-shadow:var(--shadow);
}

/* Menu Cards */
.menu-cards{
  background:
    radial-gradient(circle at center top, rgba(225,235,224,.95) 0, rgba(248,247,243,1) 56%);
}

.menu-cards h2{
  font-size:64px;
}

.treatment-list{
  display:flex;
  flex-direction:column;
  gap:48px;
  margin-top:70px;
}

.treatment-card{
  position:relative;
  text-align:left;
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius:34px;
  padding:78px 54px 54px;
  box-shadow:var(--shadow);
}

.treatment-card .circle{
  position:absolute;
  top:44px;
  left:54px;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#e6eee5;
}

.treatment-card .time{
  position:absolute;
  top:38px;
  right:48px;
  width:96px;
  height:96px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f4f2e8;
  border:1px solid var(--line);
  font-family:"Cormorant Garamond", serif;
  font-size:22px;
  color:var(--muted);
}

.treatment-card h3{
  margin:74px 0 24px;
  font-size:34px;
  font-weight:600;
  letter-spacing:.14em;
}

.treatment-card p{
  font-size:21px;
  line-height:2;
}

/* Gallery */
.gallery{
  background:var(--bg);
  padding-top:80px;
}

.gallery-title{
  text-align:center;
  font-size:68px !important;
  letter-spacing:.12em !important;
}

.gallery-grid{
  margin-top:62px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.gallery-grid img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:24px;
}

/* Access */
.access{
  background:var(--bg);
  padding-top:150px;
}

.access .section-label{
  margin-bottom:36px;
}

.access h2{
  font-size:72px;
  margin-bottom:52px;
}

.access-info{
  max-width:880px;
}

.access-info h3{
  margin:56px 0 20px;
  font-size:27px;
  color:var(--green);
  letter-spacing:.08em;
}

.access-info p{
  font-size:25px;
  line-height:2.1;
}

.access-btn{
  margin-top:34px;
}

.map{
  margin-top:58px;
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#fff;
}

/* Reserve */
.reserve-section{
  background:var(--deep);
  color:#fff;
  padding:180px 5%;
  text-align:center;
}

.reserve-inner{
  max-width:820px;
  margin:0 auto;
}

.reserve-inner p{
  margin:0 0 42px;
  font-family:"Cormorant Garamond", serif;
  font-size:28px;
  letter-spacing:.32em;
}

.reserve-inner h2{
  margin:0;
  font-family:"Cormorant Garamond","Noto Serif JP",serif;
  font-size:72px;
  font-weight:500;
  line-height:1.45;
  letter-spacing:.12em;
}

.reserve-main-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:100%;
  min-height:86px;
  margin-top:42px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-size:24px;
  letter-spacing:.12em;
}

/* Footer */
.footer{
  padding:130px 5% 100px;
  text-align:center;
  background:var(--bg);
  color:var(--muted);
}

.footer h2{
  margin:0 0 62px;
  font-family:"Cormorant Garamond", serif;
  font-size:58px;
  font-weight:500;
  letter-spacing:.18em;
}

.footer p{
  margin:0 0 38px;
  font-size:24px;
  line-height:2;
}

.footer a{
  text-decoration:underline;
}

.footer small{
  font-size:21px;
}

/* Mobile */
@media(max-width:768px){
  .site-header{
    padding:24px 5%;
  }

  .brand-text{
    font-size:37px;
    letter-spacing:.2em;
  }

  .header-reserve{
    font-size:25px;
    padding:10px 28px 12px;
  }

  .hero{
    min-height:auto;
    padding:62px 5% 96px;
  }

  .hero-logo{
    width:190px;
    height:190px;
    margin-bottom:38px;
  }

  .hero-sub{
    font-size:25px;
    letter-spacing:.23em;
    line-height:1.9;
  }

  .hero h1{
    font-size:66px;
    line-height:1.4;
  }

  .hero-text{
    font-size:23px;
    margin:48px 0 42px;
  }

  .btn{
    min-height:78px;
    font-size:22px;
  }

  .section{
    padding:88px 5%;
  }

  .section h2,
  .concept h2{
    font-size:52px;
  }

  .section p{
    font-size:20px;
  }

  .jp-title{
    font-size:46px !important;
  }

  .menu-cards h2{
    font-size:56px;
  }

  .treatment-card{
    padding:72px 38px 44px;
  }

  .treatment-card .circle{
    left:38px;
  }

  .treatment-card .time{
    right:34px;
  }

  .gallery-title{
    font-size:58px !important;
  }

  .access h2{
    font-size:64px;
  }

  .access-info p{
    font-size:23px;
  }

  .reserve-section{
    padding:150px 5%;
  }

  .reserve-inner h2{
    font-size:58px;
  }
}

@media(max-width:480px){
  .brand-text{
    font-size:33px;
  }

  .header-reserve{
    font-size:22px;
    padding:9px 24px 11px;
  }

  .hero-logo{
    width:165px;
    height:165px;
  }

  .hero-sub{
    font-size:20px;
  }

  .hero h1{
    font-size:52px;
  }

  .hero-text{
    font-size:19px;
  }

  .btn{
    min-height:70px;
    font-size:19px;
  }

  .section h2,
  .concept h2{
    font-size:44px;
  }

  .section p{
    font-size:18px;
  }

  .jp-title{
    font-size:40px !important;
  }

  .menu-cards h2{
    font-size:46px;
  }

  .treatment-card{
    border-radius:28px;
    padding:66px 28px 38px;
  }

  .treatment-card .circle{
    top:36px;
    left:28px;
    width:52px;
    height:52px;
  }

  .treatment-card .time{
    top:30px;
    right:26px;
    width:82px;
    height:82px;
    font-size:18px;
  }

  .treatment-card h3{
    font-size:28px;
  }

  .treatment-card p{
    font-size:18px;
  }

  .gallery-grid{
    gap:16px;
  }

  .gallery-title{
    font-size:46px !important;
  }

  .access h2{
    font-size:56px;
  }

  .access-info p{
    font-size:20px;
  }

  .reserve-inner h2{
    font-size:45px;
  }

  .footer h2{
    font-size:46px;
  }

  .footer p{
    font-size:20px;
  }
}