@charset "UTF-8";

/* =========================================================
  CONTEST Theme (PC + Mobile)
  - Layout target: warm orange / gold, soft blur, glossy UI
  - Files:
    /index.html
    /cc/style.css
    /js/main.js
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=The+Nautigal:wght@400;700&display=swap");

:root{
  --bg: #fff;
  --paper: #F7F1FF;
  --paper-2: #F0E6FF;
  --ink: #2A1436;
  --muted: rgba(42,20,54,.72);

  --gold: #9253D2;
  --gold-2: #F596E1;
  --gold-deep: #5A2AA6;

  --brown: #3B1A4A;
  --brown-2: #1E0B28;

  --line: #06C755;
  --sms: #9253D2;

  --shadow: 0 18px 50px rgba(35,10,45,.18);
  --shadow-soft: 0 10px 28px rgba(35,10,45,.12);
  --radius: 14px;
  --radius-lg: 18px;

  --wrap: 1020px;
  --wrap-pad: 18px;

  --mbnav-h: 62px;

  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", serif;
  --sans:  "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --nautigal: "The Nautigal", "Noto Serif JP", serif;
}



*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(1200px 700px at 50% -120px, rgba(200,160,255,.25), transparent 70%),
    linear-gradient(180deg, #fff 0%, var(--paper) 38%, #fff 100%);
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
.wrap{
  width:min(var(--wrap), calc(100% - var(--wrap-pad)*2));
  margin-inline:auto;
}

.theme-contest::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.14;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.6) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 80% 30%, rgba(0,0,0,.28) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 40% 70%, rgba(0,0,0,.22) 0 1px, transparent 1px 100%);
  background-size: 120px 120px, 140px 140px, 160px 160px;
  mix-blend-mode: soft-light;
}

/* =========================================================
  HERO
========================================================= */
.hero{
  position:relative;
  min-height: 430px;
  display:grid;
  place-items:center;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:-2px;
  background:
    linear-gradient(90deg, rgba(146,83,210,.75), rgba(146,83,210,0) 45%),
    radial-gradient(900px 420px at 70% 40%, rgba(245,150,225,.34), transparent 60%),
    url("../images/1920x1080.png")
      center/cover no-repeat;
  filter:saturate(1.05) contrast(1.03);
  transform: scale(1.02);
  animation: kenBurns 12s infinite alternate;
}


@media (max-width: 768px){
.hero__bg{
  background:
    linear-gradient(90deg, rgba(146,83,210,.75), rgba(146,83,210,0) 45%),
    radial-gradient(900px 420px at 70% 40%, rgba(245,150,225,.34), transparent 60%),
    url("../images/header_bg_sm.png") center/cover no-repeat;
	}
}



@keyframes kenBurns { from { transform: scale(1);} to { transform: scale(1.08);} }

.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 520px at 50% 40%, rgba(255,239,220,.10), rgba(255,239,220,.38) 70%);
}
.hero__inner{
  position:relative;
  z-index:1;
  text-align:center;
  padding: 96px 0 78px;
}
.hero__brand-top{
  font-family: var(--serif);
  letter-spacing: .14em;
  font-size: 12px;
}
.hero__brand-main{
  font-family: var(--serif);
  letter-spacing: .06em;
  text-align:center;
  text-shadow: 0 10px 28px rgba(0,0,0,.32);
}

.hero__brand-main img{
  display: block;      /* 关键：让 margin:auto 生效并去掉基线缝隙 */
  max-width: 250px;
  width: 100%;
  height: auto;
  margin: 0 auto;      /* 水平居中 */
}


.hero__meta{
  margin-top: 16px;
  display:inline-flex;
  gap: 22px;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(62,20,88,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 12px rgba(0,0,0,.24);
}
.hero__hours{
  color: rgba(255,255,255,.85);
  font-size: 12px;
  letter-spacing:.06em;
}
.hero__tel{
  color: #fff;
  font-weight: 700;
  letter-spacing:.06em;
}

/* =========================================================
  PC GLOBAL NAV
========================================================= */
.gnav{
  position:sticky;
  top:0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(122,60,185,.88), rgba(96,38,145,.88));
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(90,42,166,.35);
  box-shadow: 0 14px 30px rgba(35,10,45,.12);
}
.gnav__inner{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
}
.gnav__item{
  padding: 10px 6px 11px;
  text-align:center;
  position:relative;
}
.gnav__item .en{
  display:block;
  font-family: var(--serif);
  letter-spacing:.12em;
  font-size: 12px;
  color: rgba(255,255,255,.92);
}
.gnav__item .ja{
  display:block;
  font-size: 10px;
  color: rgba(255,255,255,.78);
  letter-spacing:.12em;
  margin-top: 2px;
}
.gnav__item::after{
  content:"";
  position:absolute;
  right:0;
  top: 22%;
  bottom: 22%;
  width:1px;
  background: rgba(255,255,255,.18);
}
.gnav__item:last-child::after{ display:none; }
.gnav__item.is-current{
  background: rgba(0,0,0,.10);
}

/* =========================================================
  PROMO
========================================================= */
.promo{
  position:relative;
  padding: 22px 0;
  overflow:hidden;
}
.promo__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 360px at 10% 30%, rgba(245,160,230,.45), transparent 65%),
    url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
  filter: blur(.2px) saturate(1.05);
}
.promo__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .05) 0%, rgba(0,0,0,.38) 70%);
}
.promo__inner{
  position:relative;
  padding: 28px 18px 32px;
  text-align:center;
  color:#fff;
}
.promo__lead{
  margin: 0 0 8px;
  font-family: var(--serif);
  letter-spacing:.14em;
  font-size: 16px;
  text-shadow: 0 8px 20px rgba(0,0,0,.24);
}
.promo__sub{
  margin:0 0 10px;
  letter-spacing:.18em;
  font-size: 12px;
  color: rgba(255,255,255,.88);
}
.promo__logo{
  margin-top: 4px;
}
.promo__logo-main{
  font-family: var(--serif);
  font-size: 44px;
  letter-spacing:.10em;
  color: #fff;
  text-shadow: 0 16px 32px rgba(0,0,0,.34);
  position:relative;
  display:inline-block;
  padding: 6px 10px;
}
.promo__logo-main::after{
  content:"";
  position:absolute;
  left: -10px;
  right: -10px;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,150,225,.95), transparent);
}
.promo__logo-sub{
  margin-top: 6px;
  letter-spacing:.22em;
  font-size: 13px;
  color: rgba(255,255,255,.92);
}

/* =========================================================
  RESERVE
========================================================= */
.reserve{
  padding: 18px 0 24px;
}
.reserve__telbar{
  display:grid;
  grid-template-columns: 60px 1fr 260px;
  gap: 10px;
  align-items:stretch;
  border-radius: 12px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(146,83,210,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
}
.reserve__telbar-left{
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(146,83,210,.22), rgba(146,83,210,.08));
}
.reserve__telbar-icon{
  font-size: 22px;
  color: rgba(59,26,74,.85);
}
.reserve__telbar-center{
  padding: 12px 8px;
}
.reserve__telbar-top{
  font-size: 12px;
  color: var(--muted);
  letter-spacing:.08em;
}
.reserve__telbar-title{
  margin-top: 2px;
  font-family: var(--serif);
  letter-spacing:.10em;
  font-weight: 700;
}
.reserve__telbar-right{
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(146,83,210,.40), rgba(146,83,210,.20));
}
.reserve__telbar-num{
  font-weight: 800;
  letter-spacing:.08em;
  color: rgba(42,20,54,.92);
}
.reserve__actions{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.btn-cta{
  border-radius: 12px;
  overflow:hidden;
  display:grid;
  place-items:center;
  text-align:center;
  padding: 16px 10px;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform .18s ease, filter .18s ease;
}
.btn-cta:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btn-cta__small{
  display:block;
  font-size: 12px;
  letter-spacing:.10em;
  opacity:.95;
}
.btn-cta__main{
  display:block;
  margin-top: 6px;
  font-size: 24px;
  letter-spacing:.06em;
  font-weight: 800;
  line-height:1.05;
  font-family: var(--serif);
}
.btn-cta--sms{
  background: linear-gradient(180deg, rgba(185,170,122,.92), rgba(161,143,90,.92));
  color:#fff;
}
.btn-cta--line{
  background: linear-gradient(180deg, rgba(6,199,85,.92), rgba(3,160,65,.92));
  color:#fff;
}

/* =========================================================
  FEATURE THERAPIST
========================================================= */
.feature{
  padding: 18px 0 24px;
  display:grid;
  justify-items:center;
  text-align:center;
}
.feature__photo{
  width: min(280px, 62vw);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 6px solid rgba(255,255,255,.75);
  background: #fff;
}
.feature__meta{
  margin-top: 10px;
}
.feature__name{
  font-family: var(--serif);
  letter-spacing:.10em;
  font-weight: 700;
  color: rgba(42,20,54,.92);
}
.feature__size{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(42,20,54,.70);
  letter-spacing:.08em;
}

/* =========================================================
  BANNERS
========================================================= */
.banners{
  padding: 6px 0 26px;
}
.banner{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(146,83,210,.22);
  background: rgba(255,255,255,.86);
  margin-top: 12px;
}
.banner--notice{
  padding: 16px 16px 14px;
  text-align:center;
  color:#fff;
  border-color: rgba(245,150,225,.18);
}
.banner--notice p{
  margin:0;
  font-size: 13px;
  letter-spacing:.10em;
  line-height:1.8;
}
.banner__tel{
  display:inline-block;
  margin-top: 10px;
  font-weight: 900;
  letter-spacing:.10em;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(146,83,210,.92), rgba(245,150,225,.92));
  color: rgba(42,20,54,.92);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.banner--howto{
  padding: 16px;
}
.banner__title{
  margin: 0 0 10px;
  font-family: var(--serif);
  letter-spacing:.12em;
  font-size: 14px;
  color: rgba(42,20,54,.92);
}
.banner__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(42,20,54,.80);
  line-height: 1.9;
  letter-spacing:.06em;
}
.banner__note{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(42,20,54,.62);
  letter-spacing:.06em;
}
.banner--x{
  display:grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  background:
    linear-gradient(180deg, rgba(25,25,25,.92), rgba(10,10,10,.92));
  color:#fff;
  border-color: rgba(255,255,255,.10);
}
.banner__x-left{
  padding: 16px;
}
.banner__x-title{
  font-weight: 800;
  letter-spacing:.08em;
}
.banner__x-sub{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.78);
  letter-spacing:.06em;
}
.banner__x-right{
  display:grid;
  place-items:center;
  text-align:center;
  background: linear-gradient(180deg, rgba(146,83,210,.35), rgba(146,83,210,.18));
  font-weight: 900;
  letter-spacing:.10em;
}
.banner__x-right span{
  display:block;
  margin-top: 4px;
  font-weight: 700;
  letter-spacing:.06em;
  opacity:.92;
}

/* =========================================================
  SCHEDULE CTA
========================================================= */
.schedule-cta{
  position:relative;
  padding: 30px 0 32px;
  overflow:hidden;
}
.schedule-cta__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 360px at 70% 50%, rgba(245,150,225,.32), transparent 64%),
    linear-gradient(180deg, rgba(146,83,210,.56), rgba(245,150,225,.26)),
    url("../images/schedule-cta__bg.jpg")
      center/cover no-repeat;
}
.schedule-cta__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.16), rgba(0,0,0,0) 60%);
}
.schedule-cta__inner{
  position:relative;
  display:grid;
  place-items:center;
}

.pill-btn{
  display:inline-grid;
  place-items:center;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--serif);
  letter-spacing:.12em;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(146,83,210,.92), rgba(245,150,225,.92));
  color: rgba(42,20,54,.92);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.35);
}
.pill-btn--ghost{
  background: transparent;
  color: rgba(42,20,54,.92);
  border: 1px solid rgba(146,83,210,.45);
  box-shadow: none;
}

/* =========================================================
  NEWS
========================================================= */
.news{
  padding: 18px 0 34px;
  background:
    linear-gradient(180deg, rgba(242,230,255,.55), rgba(248,240,255,.88));
}
.news__card{
  background: rgba(255,255,255,.86);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(146,83,210,.22);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
}
.news__date{
  display:inline-block;
  font-size: 12px;
  color: rgba(42,20,54,.65);
  letter-spacing:.10em;
}
.news__title{
  margin: 10px 0 8px;
  font-family: var(--serif);
  letter-spacing:.10em;
  font-size: 16px;
}
.news__text{
  margin:0;
  color: rgba(42,20,54,.78);
  line-height: 1.85;
  letter-spacing:.06em;
}
.news__more{
  display:grid;
  place-items:center;
  margin-top: 14px;
}

/* =========================================================
  FOOTER
========================================================= */
.footer{
  position:relative;
  padding: 40px 0 92px; /* leave room for mb nav */
  overflow:hidden;
}
.footer__bg{
  position:absolute;
  inset:0;
  background-image: linear-gradient(270deg, #c0c7ce, #fcfdfd, #c0c7ce);
}
.footer__inner{ position:relative; text-align:center; }
.footer__brand-top{
  font-family: var(--serif);
  letter-spacing:.14em;
  font-size: 12px;
  opacity: .75;
}
.footer__brand-main{
  margin-top: 2px;
  font-family: var(--serif);
  letter-spacing:.08em;
  font-size: 34px;
}

.footer__brand-main img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width:300px;
}

.footer__meta{
  margin-top: 12px;
  letter-spacing:.08em;
  font-size: 12px;
  color: rgba(255,255,255,.82);
}
.footer__meta a{ font-weight: 800; }
.footer__copy{
  display:block;
  margin-top: 18px;
  opacity:.75;
}

/* =========================================================
  MOBILE TOP BAR + DRAWER
========================================================= */
.mhead{
  position: sticky;
  top: 0;
  z-index: 60;
  display:none;
  background: linear-gradient(180deg, rgba(122,60,185,.92), rgba(96,38,145,.92));
  border-bottom: 1px solid rgba(90,42,166,.35);
}
.mhead__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 14px;
}
.mhead__brand-top{
  display:block;
  font-family: var(--serif);
  letter-spacing:.14em;
  font-size: 10px;
  color: rgba(255,255,255,.72);
}
.mhead__brand-main{
  display:block;
  font-family: var(--serif);
  letter-spacing:.08em;
  font-size: 20px;
  color: #fff;
  line-height:1.1;
}
.mhead__menu{
  appearance:none;
  border:0;
  background: transparent;
  color:#fff;
  padding: 6px;
  border-radius: 10px;
  cursor:pointer;
}
.icon-menu{
  width: 30px;
  height: 18px;
  display:inline-block;
  background:
    linear-gradient(#fff,#fff) 0 0/100% 2px no-repeat,
    linear-gradient(#fff,#fff) 0 50%/100% 2px no-repeat,
    linear-gradient(#fff,#fff) 0 100%/100% 2px no-repeat;
  opacity:.95;
}

.drawer{
  position:fixed;
  inset:0;
  display:none;
  z-index: 100;
}
.drawer.is-open{ display:block; }
.drawer__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.48);
}
.drawer__panel{
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width: min(360px, 88vw);
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(245,150,225,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.86));
  box-shadow: -18px 0 48px rgba(0,0,0,.25);
  padding: 12px;
  overflow:auto;
}
.drawer__head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 6px 6px 12px;
  border-bottom: 1px solid rgba(146,83,210,.22);
}
.drawer__title{
  font-family: var(--serif);
  letter-spacing:.12em;
  font-weight:700;
}
.drawer__close{
  appearance:none;
  border:0;
  background: transparent;
  font-size: 26px;
  line-height:1;
  padding: 4px 10px;
  cursor:pointer;
  color: rgba(42,20,54,.75);
}
.drawer__nav{
  display:grid;
  gap: 6px;
  padding: 12px 6px 10px;
}
.drawer__nav a{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(146,83,210,.18);
  background: rgba(255,255,255,.75);
}
.drawer__nav .en{
  font-family: var(--serif);
  letter-spacing:.12em;
  font-size: 12px;
}
.drawer__nav .ja{
  font-size: 11px;
  color: rgba(42,20,54,.62);
  letter-spacing:.08em;
}
.drawer__cta{
  margin-top: 8px;
  padding: 12px 8px;
  border-top: 1px solid rgba(146,83,210,.22);
}
.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(146,83,210,.22);
  background: rgba(255,255,255,.76);
}
.cta__label{
  font-weight:800;
  letter-spacing:.10em;
}
.cta__value{
  font-weight:900;
  letter-spacing:.08em;
}
.drawer__cta-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.cta--sms{
  justify-content:center;
  background: linear-gradient(180deg, rgba(185,170,122,.92), rgba(161,143,90,.92));
  color:#fff;
  border-color: transparent;
  font-weight: 800;
}
.cta--line{
  justify-content:center;
  background: linear-gradient(180deg, rgba(6,199,85,.92), rgba(3,160,65,.92));
  color:#fff;
  border-color: transparent;
  font-weight: 800;
}
.drawer__note{
  margin: 10px 2px 0;
  font-size: 12px;
  color: rgba(42,20,54,.62);
  line-height: 1.7;
}

/* =========================================================
  MOBILE BOTTOM NAV
========================================================= */
.mbnav{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index: 80;
  display:none;
  height: var(--mbnav-h);
  background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.82));
  border-top: 1px solid rgba(146,83,210,.24);
  box-shadow: 0 -16px 34px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mbnav__item{
  flex: 1 1 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 4px;
  padding: 8px 0 6px;
}
.mbnav__icon{
  width: 18px;
  height: 18px;
  display:grid;
  place-items:center;
}
.mbnav__icon svg{
  width: 18px;
  height: 18px;
  fill: rgba(42,20,54,.70);
}
.mbnav__label{
  font-size: 10px;
  letter-spacing:.10em;
  color: rgba(42,20,54,.70);
}

/* =========================================================
  RESPONSIVE
========================================================= */
@media (max-width: 900px){
  .gnav__inner{ grid-template-columns: repeat(4, 1fr); }
  .gnav__item:nth-child(n+5){ display:none; } /* keep first 4 on small desktop */
}

@media (max-width: 768px){
  body{ padding-bottom: calc(var(--mbnav-h) + 6px); }
  .mhead{ display:block; }
  .gnav{ display:none; }

  .hero{
    min-height: 520px;
  }
  .hero__inner{ padding: 94px 0 74px; }
  .hero__meta{ gap: 12px; padding: 10px 12px; }

  .reserve__telbar{
    grid-template-columns: 52px 1fr;
  }
  .reserve__telbar-right{ grid-column: 1 / -1; }
  .reserve__telbar-right{ padding: 10px 0; }

  .btn-cta__main{ font-size: 20px; }
  .banner--x{ grid-template-columns: 1fr; }
  .banner__x-right{ padding: 14px 0; }

  .mbnav{
    display:flex;
  }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
}



/* =========================================================
  HEADER (PC + SP) - Contest Tokyo style
  - "light luxury" floating: translucent + gold hairlines + blur
  - BEM-ish naming aligned with provided markup (l-header-*)
========================================================= */
.l-header{
  position: relative;
  z-index: 120;
}

/* width helper (like w1300) */
.w1300{
  width: min(1300px, calc(100% - 36px));
  margin-inline: auto;
}

/* PC only container */
.u-pc-db-navi{ display:none; }
@media (min-width: 1025px){
  .u-pc-db-navi{ display:flex; }
}

/* -------------------------
  PC Header Bar
------------------------- */
.l-header-up{
  position: fixed;
  inset: 0 0 auto 0;
  height: 86px;
  display:none; /* shown on PC breakpoint */
  background-color: rgba(195, 226, 220, .8);
  border-bottom: rgba(255, 251, 243, .78);
  box-shadow: 0 18px 46px rgba(122,60,185,.16);
}
@media (min-width: 1025px){
  .l-header-up{ display:block; }
}
.l-header-up.is-scrolled{
    background-color: rgba(195, 226, 220, .8);
  border-bottom-color: rgba(255, 251, 243, .24);
  box-shadow: 0 22px 60px rgba(122,60,185,.26);
}
.l-header__inner{
  height: 86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 22px;
}
.l-header__logo img{
  height: 60px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
}

/* upper meta line */
.l-header-nav-upper{
  display:flex;
  justify-content:flex-end;
}
.l-header-nav-upper-left{
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .10em;
  color: rgba(255,255,255,.80);
  white-space: nowrap;
}
.l-header-nav-upper-left span{
  margin: 0 10px 0 8px;
  color: rgba(245,150,225,.95);
  font-weight: 800;
  letter-spacing: .08em;
}

/* menu list */
.l-header-nav-list{
  list-style:none;
  margin: 10px 0 0;
  padding: 0;
  display:flex;
  align-items:center;
  gap: 18px;
}
.l-header-nav-list__link{
  position:relative;
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap: 2px;
  padding: 10px 10px 12px;
}
.l-header-nav-list__en{
  font-family: var(--serif);
  letter-spacing:.18em;
  font-size: 12px;
  color: rgba(255,255,255,.92);
}
.l-header-nav-list__jp{
  font-size: 10px;
  letter-spacing:.18em;
  color: rgba(255,255,255,.72);
}
.l-header-nav-list__link::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,150,225,.95), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
}
.l-header-nav-list__link:hover::after,
.l-header-nav-list__link:focus-visible::after{
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------
  Mobile Header Bar
------------------------- */
.l-header__sp{
  position: fixed;
  inset: 0 0 auto 0;
  height: 64px;
  display:flex;
  align-items:center;
  background-color: rgba(195, 226, 220, .8);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.l-header__sp.is-scrolled{
  background-color: rgba(195, 226, 220, .8);
  border-bottom-color: rgba(253, 232, 231, .7);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.l-header__sp-inner{
  width: min(1300px, calc(100% - 28px));
  margin-inline: auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.l-header__logo-sp img{
  height: 44px;
  width:auto;
  display:block;
}
.l-header__burger{
  appearance:none;
  border:0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.l-header__burger:focus-visible{
  outline: 2px solid rgba(245,150,225,.85);
  outline-offset: 2px;
}
.l-header__burger-lines{
  width: 26px;
  height: 16px;
  position:relative;
  display:block;
}
.l-header__burger-lines::before,
.l-header__burger-lines::after,
.l-header__burger-lines{
  background: transparent;
}
.l-header__burger-lines::before,
.l-header__burger-lines::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.95);
  transition: transform .20s ease, top .20s ease, bottom .20s ease, opacity .20s ease;
}
.l-header__burger-lines::before{ top: 0; }
.l-header__burger-lines::after{ bottom: 0; }
/* middle line via background */
.l-header__burger-lines{
  background:
    linear-gradient(rgba(255,255,255,.95), rgba(255,255,255,.95)) 0 50%/100% 2px no-repeat;
  transition: background-size .20s ease;
}
.l-header__burger.is-open .l-header__burger-lines{
  background-size: 0 2px;
}
.l-header__burger.is-open .l-header__burger-lines::before{
  top: 7px;
  transform: rotate(45deg);
}
.l-header__burger.is-open .l-header__burger-lines::after{
  bottom: 7px;
  transform: rotate(-45deg);
}

/* hide mobile header on PC breakpoint */
@media (min-width: 1025px){
  .l-header__sp{ display:none; }
}

/* give content breathing room under fixed headers */
@media (max-width: 1024px){
  .hero__inner{ padding-top: 108px; }
}
@media (min-width: 1025px){
  .hero__inner{ padding-top: 120px; }
}

/* -------------------------
  Mobile Drawer (full-screen)
------------------------- */
.sp-drawer{
  position:fixed;
  inset:0;
  z-index: 200;
  display:none;
}
.sp-drawer.is-open{ display:block; }
@media (min-width: 1025px){
  .sp-drawer{ display:none !important; }
}

.sp-drawer__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.46);
}

.sp-drawer__panel{
  position:absolute;
  inset:0;
  overflow:auto;
  padding: 18px 18px 28px;
  color:#fff;
}
.sp-drawer__panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 420px at 60% 25%, rgba(0,0,0,.22), transparent 64%),
    url("../images/sp-drawer.jpg")
      center/cover no-repeat;
  opacity: .98;
  filter: blur(1px) saturate(1.05);
  pointer-events:none;
}
.sp-drawer__panel::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.36));
  pointer-events:none;
}
.sp-drawer__panel > *{ position:relative; z-index:1; }

.sp-drawer__close{
  appearance:none;
  border:0;
  background: transparent;
  color:#fff;
  font-size: 34px;
  line-height:1;
  padding: 4px 10px;
  margin-left: auto;
  display:block;
  cursor:pointer;
  opacity:.92;
}

.sp-drawer__nav{
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,.28);
}
.sp-drawer__item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 6px;
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.sp-drawer__text{
  font-family: var(--serif);
  letter-spacing: .14em;
  font-size: 14px;
}
.sp-drawer__arrow{
  font-size: 14px;
  letter-spacing: .06em;
  opacity:.92;
 
}

.sp-drawer__brand{
  text-align:center;
  padding: 34px 0 0;
   background: hsla(0, 0%, 100%, .94);
}
.sp-drawer__brand-top{
  font-family: var(--serif);
  letter-spacing:.18em;
  font-size: 12px;
  opacity:.78;
}
.sp-drawer__brand-main{
  margin:4px auto;
  font-family: var(--serif);
  letter-spacing:.10em;
  text-align: center; /* 保险：就算以后不是img也能居中 */
}

.sp-drawer__brand-main img{
  display: block;      /* 关键：让 margin:auto 生效并去掉基线缝隙 */
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto;      /* 水平居中 */
}

.sp-drawer__meta{
  margin-top: 14px;
  font-size: 12px;
  letter-spacing:.10em;
  line-height: 1.95;
  opacity:.88;
}

/* lock scroll when drawer open */
html.is-locked, body.is-locked{ overflow:hidden; height:100%; }

/* ================================
   NEWS block (koibitokukan style) - themed
   Paste at the end of css/style.css
================================ */

/* container helper (align to existing wrap width) */
.container{
  width: min(var(--wrap), calc(100% - var(--wrap-pad)*2));
  margin-inline: auto;
}

/* Section spacing */
.section.news{
  padding: 26px 0 34px;
  background: linear-gradient(180deg, rgba(242,230,255,.55), rgba(248,240,255,.88));
}

/* Title style (match your gold/serif section headings) */
.rc-sec-title{
  text-align: center;
  margin: 0 0 14px;
  position: relative;
}
.rc-sec-title__en{
  font-family: var(--serif);
  letter-spacing: .18em;
  font-size: 18px;
  color: rgba(42,20,54,.92);
}
.rc-sec-title__jp{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(42,20,54,.66);
}
.rc-sec-title::after{
  content:"";
  display:block;
  width: min(520px, 86%);
  height: 1px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, rgba(146,83,210,.75), transparent);
}

/* Card base */
.rc-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(146,83,210,.22);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* News box */
.news__box{
  padding: 18px 18px 16px;
}

/* Header row: title + date */
.news__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(146,83,210,.18);
}
.news__title{
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 16px;
  color: rgba(42,20,54,.92);
}
.news__date{
  font-size: 12px;
  letter-spacing: .10em;
  color: rgba(42,20,54,.62);
  white-space: nowrap;
}

/* Message area */
.news__message{
  color: rgba(42,20,54,.78);
  line-height: 1.9;
  letter-spacing: .06em;
  font-size: 13px;
}

/* Neutralize legacy inline font/span styling inside message */
.news__message font{
  color: inherit !important;
}
.news__message span{
  font-size: inherit !important;
}

/* Photos area */
.news__photos{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.news__photos img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(146,83,210,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

/* Responsive */
@media (max-width: 768px){
  .section.news{ padding: 22px 0 30px; }
  .news__box{ padding: 16px 14px 14px; }
  .news__head{ align-items:flex-start; }
  .news__title{ font-size: 15px; }
  .news__photos{ grid-template-columns: repeat(2, 1fr); }
}

/* ================================
   CAST / THERAPIST block - themed
   Paste at the end of css/style.css
================================ */

/* If you already added NEWS CSS with .container/.rc-sec-title/.rc-card,
   this will simply extend with cast styles. */

.section.cast{
  padding: 26px 0 10px;
  background: transparent;
}

/* tighter card variant */
.rc-card--tight{
  padding: 10px;
}


/* Grid */
.cast__grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

/* Item */
.cast__item{
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.cast__item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
  filter: brightness(1.01);
}

/* Image box */
.cast__img-box{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(146,83,210,.18);
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  background: rgba(255,255,255,.55);
}
.cast__img-box a{
  display:block;
  position:relative;
}
.cast__img-box img{
  width:100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transform: scale(1.0001);
  transition: transform .22s ease, filter .22s ease;
}
.cast__item:hover .cast__img-box img{
  transform: scale(1.03);
  filter: contrast(1.02) saturate(1.02);
}

/* Gold hairline shine */
.cast__img-box::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), transparent 38%),
    radial-gradient(600px 240px at 30% 10%, rgba(245,150,225,.18), transparent 60%);
  mix-blend-mode: soft-light;
}

/* Status badge */
.cast__status{
  position:absolute;
  top: -9px;
  left: 0px;
  display:grid;
  place-items:center;
}
.cast__status img{
  width: 52px;
  height:auto;
  object-fit: contain;
}

/* Name */
.cast__name{
  margin: 10px 0 2px;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 13px;
  color: rgba(42,20,54,.92);
  text-align:center;
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 1024px){
  .cast__grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
  .section.cast{ padding: 22px 0 8px; }
  .cast__grid{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cast__status{  top: -7px; left: 0px; }
  .cast__status img{ width: 40px; height:auto; }
}

/* ================================
   ACCESS block - themed
   Paste at the end of css/style.css
================================ */

.section.access{
  padding: 26px 0 34px;
  background: transparent;
}

/* Layout */
.access__grid{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 16px;
  align-items:start;
}

/* Info card */
.access__info{
  padding: 18px 18px 16px;
}

/* DL */
.access__dl{
  margin: 0;
}
.access__row{
  display:grid;
  grid-template-columns: 96px 1fr;
  gap: 10px 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(146,83,210,.16);
}
.access__row:last-child{ border-bottom: 0; padding-bottom: 6px; }

.access__row dt{
  margin:0;
  font-family: var(--serif);
  letter-spacing:.10em;
  font-weight: 700;
  color: rgba(42,20,54,.86);
  font-size: 13px;
}
.access__row dd{
  margin:0;
  color: rgba(42,20,54,.76);
  line-height: 1.85;
  letter-spacing:.06em;
  font-size: 13px;
}
.access__row a{
  color: rgba(42,20,54,.92);
  font-weight: 800;
  letter-spacing:.08em;
  text-decoration: none;
  position:relative;
}
.access__row a::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(146,83,210,.72), transparent);
  opacity:.9;
}

/* Notes */
.access__note{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--bg), var(--bg));
  border: 1px solid rgba(146,83,210,.22);
  color: rgba(42,20,54,.74);
  letter-spacing:.06em;
  line-height: 1.75;

  font-size: 12px;
}
.access__note--inmap{
  margin: 12px 14px;
}

/* Map card */
.access__map{
  padding: 14px;
}
.access__map-placeholder{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(146,83,210,.18);
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  background: rgba(255,255,255,.55);
}
.access__map-placeholder + .access__map-placeholder{
  margin-top: 12px;
}
.access__map iframe{
  display:block;
  width: 100%;
  height: 450px;
}

/* Responsive */
@media (max-width: 1024px){
  .access__grid{
    grid-template-columns: 1fr;
  }
  .access__map{

    padding: 12px;
  }
}
@media (max-width: 768px){
  .section.access{ padding: 22px 0 30px; }
  .access__info{ padding: 16px 14px 14px; }
  .access__row{
    grid-template-columns: 78px 1fr;
    gap: 8px 12px;
  }
  .access__map iframe{ height: 360px; }
  .access__note--inmap{ margin: 10px 10px; }
}

/* ================================
   SYSTEM + ATTENTION block - themed
   Paste at the end of css/style.css
================================ */

/* --- SYSTEM section --- */
.section.system{
  padding: 26px 0 24px;
  background: transparent;
}

.page-system .pagebody{
  margin-top: 6px;
}

/* System cost card */
.system-cost-box{
  padding: 18px 18px 16px;
}

/* Each system block (dl.system-cost) */
.system-cost{
  margin: 0;
}
.system-cost + .system-cost{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(146,83,210,.18);
}

/* Title block */
.block-system-title{
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(146,83,210,.16);
}
.systemtitle-head{
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: .10em;
  font-size: 14px;
  color: rgba(42,20,54,.92);
}
.systemtitle-desc{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(42,20,54,.70);
  line-height: 1.7;
}

/* cost rows wrapper */
.system-cost-data{
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

/* one row */
.cost-data-bundle{
  margin: 0;
  padding: 12px 12px;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(146,83,210,.14), rgba(255,255,255,.35));
  border: 1px solid rgba(146,83,210,.18);
}

/* label */
.cost-data-label{
  margin: 0;
}
.cost-data-label-con{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 8px 10px;
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: .10em;
  font-size: 12px;
  color: rgba(42,20,54,.92);
  background: linear-gradient(90deg, rgba(146,83,210,.62), rgba(245,150,225,.62));
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

/* price */
.cost-data-price{
  margin: 0;
  text-align: right;
}
.price-1-con{
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 16px;
  color: rgba(42,20,54,.92);
}

/* Remark block */
.system-fee_remark1-box{
  margin-top: 14px;
}
.system-snippet{
  margin: 0;
}
.system-con-remark1{
  padding: 0;
}
.system-cont-box{
  text-align: center;
  padding: 14px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.66));
  border: 1px solid rgba(245,150,225,.24);
  color: rgba(255,255,255,.92);
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: .12em;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

/* --- ATTENTION section --- */
.section.attention{
  padding: 18px 0 34px;
  background: transparent;
}

.attention__box{
  padding: 18px 18px 16px;
}
.attention__box p{
  margin: 0;
  color: rgba(42,20,54,.78);
  line-height: 1.9;
  letter-spacing: .06em;
  font-size: 13px;
}
.attention__box p + p{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(146,83,210,.20);
}

/* Responsive */
@media (max-width: 768px){
  .section.system{ padding: 22px 0 18px; }
  .system-cost-box{ padding: 16px 14px 14px; }
  .cost-data-bundle{
    grid-template-columns: 96px 1fr;
    padding: 12px 10px;
  }
  .price-1-con{ font-size: 15px; }
  .cost-data-price{ text-align: right; }

  .attention__box{ padding: 16px 14px 14px; }
}

/* ================================
   RECRUIT block - themed
   Paste at the end of css/style.css
================================ */

.section.recruit{
  padding: 18px 0 36px;
  background: transparent;
}

.recruit__box{
  padding: 18px 18px 16px;
}

/* list spacing */
.recruit-list{
  display: grid;
  gap: 10px;
}

/* item row */
.recruit-item{
  margin: 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--bg), rgba(255, 255, 255, .35));
  border: 1px solid var(--paper);
}

/* label */
.recruit-label{
  margin: 0;
  display:flex;
  align-items:flex-start;
}
.recruit-label-con{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 96px;
  padding: 8px 10px;
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: .10em;
  font-size: 12px;
  color: rgba(42,20,54,.92);
  background: linear-gradient(90deg, var(--paper), var(--bg));
    border: 1px solid rgba(255, 255, 255, .38);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .08);
}

/* context */
.recruit-context{
  margin: 0;
  display:flex;
  align-items:flex-start;
}
.recruit-context-con{
  display:block;
  color: rgba(42,20,54,.78);
  line-height: 1.85;
  letter-spacing: .06em;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px){
  .section.recruit{ padding: 16px 0 34px; }
  .recruit__box{ padding: 16px 14px 14px; }

  .recruit-item{
    grid-template-columns: 96px 1fr;
    padding: 12px 10px;
    gap: 10px;
  }
  .recruit-label-con{
    min-width: 86px;
    padding: 8px 8px;
  }
}

/* ================================
   CAMPAIGN block - themed
   Paste at the end of css/style.css
================================ */

.section.service{
  padding: 26px 0 18px;
  background: transparent;
}

/* grid wrapper (future-proof for multiple items) */
.service__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* card item */
.service__item{
  overflow: hidden; /* ensure rounded corners clip image */
  padding: 14px;
}

/* image box */
.service__img{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(146,83,210,.18);
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
  background: rgba(255,255,255,.55);
  position: relative;
}

/* subtle glossy overlay for luxury feel */
.service__img::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 38%),
    radial-gradient(700px 260px at 30% 10%, rgba(245,150,225,.18), transparent 62%);
  mix-blend-mode: soft-light;
}

.service__img img{
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px){
  .section.service{ padding: 22px 0 14px; }
  .service__item{ padding: 12px; }
  .service__img{ border-radius: 14px; }
}

/* ================================
   LINK block - themed
   Paste at the end of css/style.css
================================ */

.section.link{
  padding: 18px 0 36px;
  background: transparent;
}

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

/* item uses rc-card base; add alignment + hover */
.link__item{
  padding: 14px 14px 12px;
  text-align:center;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.link__item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
  filter: brightness(1.01);
}

.link__item a{
  display:grid;
  justify-items:center;
  gap: 5px;
  font-size:8px;
  line-height:2px;
}

/* banner frame */
.link__item img{
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(146,83,210,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  background: rgba(255,255,255,.70);
  padding: 6px; /* makes small banners look premium */
}

/* name */
.link__name{
  display:block;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 12px;
  color: rgba(42,20,54,.86);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px){
  .link__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px){
  .section.link{ padding: 16px 0 34px; }
  .link__grid{ grid-template-columns: repeat(2, 1fr); }
  .link__item{ padding: 7px 7px 6px; }
  .link__item img{ padding: 4px; }
}
/* ================================
   PageTop - themed (floating luxury)
   Paste at the end of css/style.css
================================ */

.pageTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 160; /* above content; below drawer (200) */
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.pageTop.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* button */
.pageTop__link{
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;

  transform: translateY(0);
  transition: transform .18s ease, filter .18s ease;
}

.pageTop__link:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.pageTop__link:focus-visible{
  outline: 2px solid rgba(245,150,225,.85);
  outline-offset: 3px;
}

.pageTop__link img{
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.18));
}

/* Mobile: avoid bottom fixed nav (mbnav) */
@media (max-width: 768px){
  .pageTop{
    right: 12px;
    bottom: calc(var(--mbnav-h) + 12px);
  }
  .pageTop__link{
    width: 52px;
    height: 52px;
  }
  .pageTop__link img{
    width: 44px;
    height: 44px;
  }
}

/* ================================
   GLOBAL FOOTER - luxury themed
   Paste at the end of css/style.css
================================ */

.global-footer{
  position: relative;
  margin-top: 26px;
  padding: 26px 0;
  border-top: 1px solid rgba(146,83,210,.22);
  box-shadow: 0 -20px 60px rgba(0,0,0,.22);
  overflow: hidden;
}

/* subtle gold glow */
.global-footer::before{
  content:"";
  position:absolute;
  inset:-40px -20px auto -20px;
  height: 140px;
  background: radial-gradient(600px 140px at 50% 0%, rgba(245,150,225,.22), transparent 62%);
  pointer-events:none;
}

/* container */
.global-footer .inner{
  width: min(var(--wrap), calc(100% - var(--wrap-pad)*2));
  margin-inline: auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}

/* clearfix safety */
.clearfix::after{
  content:"";
  display:block;
  clear:both;
}

/* logo */
.global-footer .footerlogo{
  margin: 0;
  display:flex;
  align-items:center;
}
.global-footer .footerlogo img{
  height: 100px;
  width: auto;
  display:block;
  /*filter: drop-shadow(0 14px 30px rgba(0,0,0,.35));*/
}

/* description */
.global-footer .des{
  text-align: right;
  color: rgba(255,255,255,.82);
}
.global-footer .des .tit{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: .10em;
  font-size: 18px;
  color: rgba(42,20,54,.92);
}
.global-footer .des .txt{
  margin: 0 0 10px;
  line-height: 1.75;
  letter-spacing: .06em;
  font-size: 12px;
  color: rgba(42,20,54,.92);
}
.global-footer .des .tel{
  margin: 0;
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: .10em;
  font-size: 18px;
}
.global-footer .des .tel a{
  font-size:36px;
  color: rgba(245,150,225,.96);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.global-footer .des .tel a::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,150,225,.82), transparent);
  opacity: .9;
}

/* helper: visiblePC (if not defined elsewhere) */
@media (max-width: 768px){
  .visiblePC{ display:none !important; }

  .global-footer{
    padding: 22px 0;
  }
  .global-footer .inner{
    justify-content: center;
    text-align:center;
  }
  .global-footer .footerlogo img{
    height: 50px;
  }
}
/* ================================
   PROFILE (pickup) - themed
   Paste at the end of css/style.css
================================ */

.section.profile{
  padding: 26px 0 18px;
  background: transparent;
}

.profile__card{
  padding: 18px;
}

.profile__grid{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 18px;
  align-items: start;
}

/* Left */
.profile__imgbox{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(146,83,210,.20);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
  background: rgba(255,255,255,.55);
}

/* glossy overlay */
.profile__imgbox::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(780px 260px at 30% 10%, rgba(245,150,225,.18), transparent 62%);
  mix-blend-mode: soft-light;
}

.profile__mainimg{
  display:block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: opacity .18s ease;
}

/* NEW badge */
.profile__icon-new{
  position: absolute;
  top: 0px;
  left: 0px;

  border-radius: 999px;
  display: grid;
  place-items: center;

}
.profile__icon-new img{
  width: 76px;
  height: auto;
  object-fit: contain;
}

/* thumbs */
.profile__thumbs{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.profile__thumbs li{
  margin: 0;
}

.js-profile-thumb{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(146,83,210,.18);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  background: rgba(255,255,255,.70);
  cursor: pointer;
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.js-profile-thumb:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}

.js-profile-thumb.is-active{
  outline: 2px solid rgba(245,150,225,.95);
  outline-offset: 2px;
}

/* Right */
.profile__block{
  padding: 14px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(146,83,210,.10), rgba(255,255,255,.40));
  border: 1px solid rgba(146,83,210,.18);
}

.profile__block + .profile__block{
  margin-top: 12px;
}

.profile__table{
  width: 100%;
  border-collapse: collapse;
}

.profile__table th,
.profile__table td{
  vertical-align: top;
  padding: 10px 0;
  border-bottom: 1px solid rgba(146,83,210,.14);
}

.profile__table tr:last-child th,
.profile__table tr:last-child td{
  border-bottom: 0;
}

.profile__table th{
  width: 88px;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: .10em;
  font-size: 12px;
  color: rgba(42,20,54,.86);
}

.profile__table td{
  color: rgba(42,20,54,.76);
  line-height: 1.85;
  letter-spacing: .06em;
  font-size: 13px;
}

/* CTA */
.profile__cta{
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.profile__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(146,83,210,.30);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
  color: rgba(42,20,54,.88);
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: .10em;
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease;
}

.profile__btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* Responsive */
@media (max-width: 1024px){
  .profile__grid{
    grid-template-columns: 360px 1fr;
  }
}

@media (max-width: 768px){
  .section.profile{ padding: 22px 0 14px; }
  .profile__card{ padding: 16px 14px; }

  .profile__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .profile__thumbs{
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .profile__table th{ width: 78px; }
  .profile__cta{ justify-content: center; }
}


.soda {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    perspective: 50vw;
    transform: translateZ(-99999px);
    transform-style: preserve-3d;
    z-index: 1001;
    pointer-events: none
}


.bubble {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url(../images/menu1sp01.png);
    background-size: 100%;
    transform: translateX(-50%);
    will-change: top,left
}



/* =========================================================
  HERO INFO BOX
========================================================= */
.hero-info{
  position: relative;
  z-index: 3;
  margin-top: -34px;
  margin-bottom: 20px;
}
.hero-info-box{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), var(--bg));
  box-shadow: 0 24px 56px rgba(56,20,88,.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-info-box > div{
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 16px;
  position: relative;
}
.hero-info-box > div:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(146,83,210,.28), transparent);
}
.hero-info-box .time,
.hero-info-box .tel,
.hero-info-box .header-access{
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(42,20,54,.94);
}
.hero-info-box .time span:first-child{
  margin-right: 8px;
  font-size: 12px;
  letter-spacing: .16em;
}
.hero-info-box .tel a{
  color: inherit;
}
.hero-info-box .notepad{
  background: linear-gradient(135deg, var(--brown), var(--brown-2));
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.8;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24);
}
.hero-info-box .notepad-content{
  width: 100%;
}
.hero-info-box .notepad .color{
  color: #fff7c2;
  font-weight: 700;
}
.hero-info-box .header-access{
  background: linear-gradient(180deg, rgba(255,255,255,.30), rgba(255,255,255,.04));
}

@media (max-width: 1024px){
  .hero-info{
    margin-top: -24px;
  }
  .hero-info-box{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-info-box > div:nth-child(2)::after{
    display: none;
  }
}

@media (max-width: 768px){
  .hero-info{
    margin-top: -18px;
    margin-bottom: 14px;
  }
  .hero-info-box{
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .hero-info-box > div{
    min-height: auto;
    padding: 14px 16px;
  }
  .hero-info-box > div::after{
    display: none;
  }
  .hero-info-box > div:not(:last-child){
    border-bottom: 1px solid var(--paper);
  }
  .hero-info-box .time,
  .hero-info-box .tel,
  .hero-info-box .header-access{
    font-size: 17px;
  }
  .hero-info-box .notepad{
    font-size: 12px;
  }
}

/* =========================================================
   SWEET CREAM / CHAMPAGNE GOLD OVERRIDE
   - palette only, no layout/size/spacing/function changes
   - inspired by warm cream / honey-gold / floral apricot mood
========================================================= */
:root{
  --bg: #fffaf2;
  --paper: #fff5e8;
  --paper-2: #fdf0de;
  --ink: #5c4638;
  --muted: rgba(104,82,67,.76);

  --gold: #d8b16c;
  --gold-2: #f2d9a1;
  --gold-deep: #b7843b;

  --brown: #a07049;
  --brown-2: #7c522f;

  --line: #ead8b8;
  --sms: #f3e8d8;

  --accent: #e8a56b;
  --accent-strong: #ed8c49;
  --peach: #f6d7cc;

  --shadow: 0 18px 50px rgba(177,132,72,.14);
  --shadow-soft: 0 10px 28px rgba(177,132,72,.10);
}

body{
  color: var(--ink);
  background:
    radial-gradient(980px 520px at 0% 14%, rgba(255,244,226,.88), transparent 66%),
    radial-gradient(980px 520px at 100% 18%, rgba(255,239,219,.74), transparent 64%),
    radial-gradient(900px 420px at 50% -120px, rgba(248,227,190,.40), transparent 72%),
    linear-gradient(180deg, #fffcf7 0%, var(--paper) 34%, #fffbf5 100%);
}

.theme-contest::before{
  opacity: .16;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.76) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 80% 30%, rgba(248,227,190,.52) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 40% 70%, rgba(246,215,204,.34) 0 1px, transparent 1px 100%);
  mix-blend-mode: screen;
}

body.theme-contest a{
  transition: color .18s ease, filter .18s ease, opacity .18s ease;
}
body.theme-contest a:hover{
  color: var(--accent-strong);
}

.hero__bg{
  background:
    linear-gradient(90deg, rgba(183,132,59,.22), rgba(183,132,59,0) 40%),
    radial-gradient(980px 440px at 74% 42%, rgba(255,248,236,.46), transparent 60%),
    linear-gradient(180deg, rgba(255,252,247,.10), rgba(246,224,187,.18)),
    url("../images/1920x1080.png") center/cover no-repeat;
  filter: sepia(.18) saturate(.84) hue-rotate(-8deg) brightness(1.06) contrast(1.01);
}
@media (max-width: 768px){
  .hero__bg{
    background:
      linear-gradient(90deg, rgba(183,132,59,.20), rgba(183,132,59,0) 42%),
      radial-gradient(900px 420px at 74% 42%, rgba(255,248,236,.40), transparent 60%),
      linear-gradient(180deg, rgba(255,252,247,.12), rgba(246,224,187,.18)),
      url("../images/header_bg_sm.png") center/cover no-repeat;
  }
}
.hero__bg::after{
  background: radial-gradient(1200px 520px at 50% 40%, rgba(255,255,255,.08), rgba(255,247,231,.26) 70%);
}
.hero__brand-top{
  color: rgba(160, 112, 59, .94);
  text-shadow: 0 2px 10px rgba(176,126,65,.24), 0 0 24px rgba(255,240,206,.20);
}
.hero__brand-main,
.footer__brand-main,
.sp-drawer__brand-main{
  text-shadow: 0 8px 22px rgba(136,97,46,.20), 0 0 22px rgba(255,236,196,.24);
}
.hero__brand-main img,
.sp-drawer__brand-main img,
.footer__brand-main img,
.l-header__logo img,
.l-header__logo-sp img,
.global-footer .footerlogo img{
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, .95))
        drop-shadow(0 0 24px rgba(255, 255, 255, .78))
        drop-shadow(0 0 42px rgba(255, 255, 255, .48))
        saturate(1);
}
.hero__meta{
  border: 1px solid rgba(255,248,235,.66);
  background: rgba(255,248,238,.74);
  box-shadow: 0 12px 28px rgba(177,132,72,.12);
}
.hero__hours,
.hero__tel{
  color: rgba(94,70,56,.92);
}

.gnav,
.l-header-up,
.mhead,
.l-header__sp,
.l-header__sp.is-scrolled{
  background-color: rgba(195, 226, 220, .8);
  border-top-color: rgba(255,251,243,.78);
  border-bottom: 1px solid rgba(214,176,106,.18);
  box-shadow: 0 14px 32px rgba(177,132,72,.08);
  backdrop-filter: blur(10px);
}
.l-header-up.is-scrolled{
  background-color: rgba(195, 226, 220, .8);
  border-bottom-color: rgba(255, 251, 243, .24);
  box-shadow: 0 18px 40px rgba(177,132,72,.10);
}
.gnav__item .en,
.gnav__item .ja,
.l-header-nav-upper-left,
.l-header-nav-list__en,
.l-header-nav-list__jp,
.footer__brand-top{
  color: rgba(96,70,49,.92);
}
.l-header-nav-upper-left span{
  color: rgba(164,122,69,.90);
}
.gnav__item::after,
.l-header-nav-list__link::after,
.global-footer .des .tel a::after,
.access__row a::after,
.rc-sec-title::after{
  background: linear-gradient(90deg, transparent, rgba(214,176,106,.74), transparent);
}
.gnav__item.is-current{
  background: rgba(183,132,59,.05);
}
.l-header__burger{
  background: rgba(255,248,239,.84);
  border-color: rgba(214,176,106,.22);
  box-shadow: 0 10px 22px rgba(177,132,72,.12);
}
.l-header__burger-lines::before,
.l-header__burger-lines::after{
  background-color: rgba(99,71,49,.92);
}
.l-header__burger-lines{
  background: linear-gradient(rgba(99,71,49,.92), rgba(99,71,49,.92)) 0 50%/100% 2px no-repeat;
}
.l-header__burger:focus-visible,
.pageTop__link:focus-visible,
.profile__btn:focus-visible,
.banner__tel:focus-visible,
.pill-btn:focus-visible,
.btn-cta:focus-visible{
  outline-color: rgba(237,140,73,.76);
}

.sp-drawer__backdrop{
  background: rgba(79,55,35,.28);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.sp-drawer__panel{
  color: var(--ink);
}
.sp-drawer__panel::before{
  background:
    radial-gradient(900px 460px at 64% 22%, rgba(255,245,224,.42), transparent 62%),
    linear-gradient(180deg, rgba(255,251,244,.30), rgba(235,208,164,.18)),
    url("../images/sp-drawer.jpg") center/cover no-repeat;
  opacity: .98;
  filter: sepia(.18) saturate(.82) hue-rotate(-8deg) brightness(1.06);
}
.sp-drawer__panel::after{
  background: linear-gradient(180deg, rgba(255,248,236,.20), rgba(124,82,40,.32));
}
.sp-drawer__close{
  color: rgba(118,82,50,.92);
  background: rgba(255,248,239,.76);
  border: 1px solid rgba(214,176,106,.22);
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(177,132,72,.12);
}
.sp-drawer__nav{
  border-top-color: rgba(239,220,185,.52);
}
.sp-drawer__item{
  border-bottom-color: rgba(239,220,185,.46);
  background: rgba(255,250,244,.34);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.sp-drawer__text{
  color: rgba(103,73,49,.96);
}
.sp-drawer__arrow{
  color: var(--accent-strong);
}
.sp-drawer__brand{
  background-color: rgba(195, 226, 220, .2);
  border: 1px solid rgba(214,176,106,.20);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(177,132,72,.12);
}
.sp-drawer__brand-top{
  color: rgba(175,129,68,.82);
}
.sp-drawer__meta{
  color: rgba(118,90,68,.78);
}

.news,
.section.news,
.section.system,
.section.attention,
.section.cast,
.section.access,
.section.service,
.section.link,
.section.profile,
.section.recruit{
  background:
    radial-gradient(920px 300px at 50% 0%, rgba(255,246,226,.64), transparent 70%),
    linear-gradient(180deg, rgba(255,252,247,.98), rgba(255,246,236,.95));
}

.rc-card,
.news__card,
.news__box,
.banner,
.service__item,
.access__info,
.access__map,
.link__item,
.cast__item,
.cost-data-bundle,
.access__note,
.reserve__telbar,
.reserve__telbar-left,
.reserve__telbar-right,
.reserve__telbar-center,
.system-cost-box,
.attention__box,
.hero-info-box,
.profile__card,
.profile__block,
.recruit-item{
  background-color: rgba(195, 226, 220, .2);
  border-color: rgba(214,176,106,.20);
  box-shadow: 0 18px 40px rgba(177,132,72,.10), inset 0 0 0 1px rgba(255,250,242,.72);
}
.news__box,
.service__item,
.access__info,
.access__map,
.system-cost-box,
.attention__box,
.banner,
.link__item,
.profile__block,
.recruit-item{
  background-color: rgba(195, 226, 220, .2);
}
.news__head,
.access__row,
.block-system-title,
.system-cost + .system-cost,
.profile__table th,
.profile__table td,
.attention__box p + p,
.hero-info-box > div:not(:last-child)::after{
  border-color: rgba(214,176,106,.18);
}

.rc-sec-title__en,
.news__title,
.banner__title,
.feature__name,
.cast__name,
.systemtitle-head,
.access__row dt,
.access__row a,
.footer__brand-main,
.drawer__title,
.drawer__nav .en,
.profile__table th,
.recruit-label-con,
.hero-info-box .time,
.hero-info-box .tel,
.hero-info-box .header-access{
  color: rgba(109,76,45,.95);
}
.rc-sec-title__en{
  text-shadow: 0 1px 0 rgba(255,251,242,.88), 0 0 18px rgba(255,232,188,.22);
}
.rc-sec-title__jp,
.news__date,
.news__message,
.news__message span,
.news__message font,
.banner__list,
.banner__note,
.feature__size,
.systemtitle-desc,
.access__row dd,
.access__note,
.link__name,
.footer__meta,
.footer__copy,
.profile__table td,
.recruit-context-con,
.attention__box p{
  color: rgba(106,85,69,.78) !important;
}

.cast__img-box,
.access__map-placeholder,
.service__img,
.link__item,
.feature__photo,
.profile__imgbox,
.js-profile-thumb,
.news__photos img{
  border-color: rgba(214,176,106,.24);
  background: rgba(255,250,244,.84);
  box-shadow: 0 12px 28px rgba(177,132,72,.10);
}
.cast__img-box::after,
.service__img::after,
.profile__imgbox::after{
  background:
    linear-gradient(135deg, rgba(255,255,255,.24), transparent 38%),
    radial-gradient(600px 240px at 30% 10%, rgba(255,236,197,.22), transparent 60%);
}
.cast__item:hover,
.link__item:hover,
.profile__btn:hover,
.btn-cta:hover,
.pill-btn:hover,
.banner__tel:hover{
  box-shadow: 0 20px 42px rgba(177,132,72,.16), 0 0 24px rgba(255,232,188,.18);
}

.btn-cta,
.pill-btn,
.banner__tel,
.profile__btn,
.cost-data-label-con{
  color: rgba(92,61,34,.96);
  background: linear-gradient(180deg, rgba(247,231,188,.98), rgba(221,184,109,.96) 58%, rgba(200,146,76,.96));
  border-color: rgba(255,251,244,.72);
  box-shadow: 0 14px 28px rgba(177,132,72,.18), inset 0 1px 0 rgba(255,255,255,.48);
  text-shadow: 0 1px 0 rgba(255,249,236,.55);
}
.btn-cta__small{
  color: rgba(112,83,51,.76);
}
.btn-cta__main{
  color: rgba(92,61,34,.98);
}
.pill-btn--ghost{
  background: transparent;
  color: rgba(108,79,51,.92);
  border-color: rgba(214,176,106,.42);
  box-shadow: none;
}

.price-1-con,
.new_mark{
  color: var(--accent-strong) !important;
  text-shadow: 0 1px 0 rgba(255,249,239,.72), 0 0 12px rgba(255,210,148,.18);
}

.banner--notice{
  color: #fffdf8;
  border-color: rgba(255,251,245,.24);
  background:
    linear-gradient(180deg, rgba(189,135,68,.24), rgba(122,85,49,.34)),
    radial-gradient(700px 260px at 50% 10%, rgba(255,250,238,.18), transparent 70%),
    url(../images/banner--notice.jpg) center / cover no-repeat;
}
.banner--notice p,
.banner--x,
.banner__x-title,
.banner__x-sub,
.banner__x-right,
.system-cont-box,
.hero-info-box .notepad{
  color: #fffdf8;
}
.banner--x{
  background: linear-gradient(180deg, rgba(188,140,78,.96), rgba(136,95,55,.94));
  border-color: rgba(255,251,245,.16);
}
.banner__x-right{
  background: linear-gradient(180deg, rgba(255,244,225,.24), rgba(255,244,225,.12));
}
.system-cont-box{
  background: linear-gradient(180deg, rgba(173,124,67,.92), rgba(124,84,47,.94));
  border-color: rgba(255,250,242,.18);
  box-shadow: 0 18px 44px rgba(139,93,48,.20);
}

.cost-data-bundle{
  background: linear-gradient(180deg, rgba(255,251,246,.96), rgba(252,244,232,.92));
}
.price-1-con{
  color: var(--accent-strong);
}
.access__row a,
.hero-info-box .tel a{
  color: inherit;
}

.footer__bg{
  background: #fde8e7;
}
.schedule-cta__bg{
  background:
    radial-gradient(900px 360px at 70% 50%, rgba(255,246,228,.18), transparent 64%),
    linear-gradient(180deg, rgba(246,223,182,.34), rgba(177,126,63,.42)),
    url("../images/schedule-cta__bg.jpg") center/cover no-repeat;
  filter: sepia(.16) saturate(.84) brightness(1.02);
}
.global-footer{
  background: linear-gradient(180deg, rgba(255,248,236,.97), rgba(248,237,220,.95));
}
.global-footer::before{
  background: linear-gradient(90deg, transparent, rgba(255,251,244,.58), transparent);
}
.global-footer .des .tit,
.global-footer .des .txt,
.global-footer .des .tel a,
.footer__meta,
.footer__copy{
  color: rgba(110,87,70,.82);
}
.footer__meta a,
.global-footer .des .tel a,
.banner__tel,
.pill-btn,
.profile__btn{
  color: rgba(92,61,34,.96);
}

.mbnav{
  background: linear-gradient(180deg, rgba(255,251,245,.97), rgba(249,240,227,.94));
  border-top-color: rgba(214,176,106,.28);
  box-shadow: 0 -10px 26px rgba(177,132,72,.10);
}
.mbnav__icon svg{
  fill: rgba(189,132,53,.92);
}
.mbnav__label{
  color: rgba(111,82,52,.88);
}

.hero-info-box{
  border: 1px solid rgba(239,219,178,.68);
  background: linear-gradient(180deg, rgba(255,251,245,.96), rgba(255,244,230,.93));
  box-shadow: 0 24px 56px rgba(177,132,72,.14);
}
.hero-info-box > div:not(:last-child)::after{
  background: linear-gradient(180deg, transparent, rgba(214,176,106,.44), transparent);
}
.hero-info-box .time,
.hero-info-box .tel,
.hero-info-box .header-access{
  color: rgba(109,76,45,.94);
  text-shadow: 0 1px 0 rgba(255,251,242,.86);
}
.hero-info-box .time span:first-child{
  color: rgba(183,132,59,.92);
}
.hero-info-box .notepad{
  background: linear-gradient(135deg, rgba(160,112,59,.94), rgba(123,83,44,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.20);
}
.hero-info-box .notepad .color{
  color: #ffe0a8;
}
.hero-info-box .header-access{
  background: linear-gradient(180deg, rgba(255,244,223,.56), rgba(255,249,241,.16));
}

.profile__imgbox,
.profile__block,
.js-profile-thumb,
.recruit-item,
.system-cost-box,
.cost-data-bundle,
.access__info,
.access__map,
.news__box,
.banner,
.link__item{
  border-color: rgba(214,176,106,.22);
}
.js-profile-thumb.is-active{
  outline: 2px solid rgba(237,140,73,.92);
  outline-offset: 2px;
}
.profile__block{
  background: linear-gradient(180deg, rgba(255,251,246,.96), rgba(255,244,232,.90));
}
.profile__table th,
.profile__table td{
  border-bottom-color: rgba(214,176,106,.18);
}
.recruit-label-con{
  background: linear-gradient(180deg, rgba(250,241,212,.96), rgba(237,218,177,.90));
  border-color: rgba(255,251,245,.72);
  box-shadow: 0 8px 18px rgba(177,132,72,.08);
}
.recruit-context-con,
.attention__box p,
.systemtitle-desc,
.access__note,
.link__name,
.news__message{
  color: rgba(102,79,63,.82);
}

.pageTop__link{
  border-radius: 999px;
  background: radial-gradient(circle at 30% 28%, rgba(255,250,240,.96), rgba(244,223,178,.88) 60%, rgba(227,188,119,.92) 100%);
  box-shadow: 0 12px 24px rgba(177,132,72,.16);
}
.pageTop__link img{
  filter: drop-shadow(0 8px 18px rgba(177,132,72,.18)) sepia(.20) saturate(.82) brightness(1.04);
}

.bubble{
  opacity: .55;
  filter: sepia(.44) hue-rotate(-18deg) saturate(.80) brightness(1.08);
}

@media (max-width: 768px){
  .hero-info-box > div:not(:last-child){
    border-bottom: 1px solid rgba(239,219,178,.44);
  }
  .sp-drawer__brand{
    border-radius: 20px;
  }
}

/* =========================================================
   LEGACY SELECTOR CARRYOVER
   - preserved from the previous theme layer because
     the final Sweet Cream block does not redefine them
   - this keeps the current appearance while removing the
     redundant Lilian theme block
========================================================= */
.mhead__brand-top,
.mhead__brand-main{
  color: rgba(255,255,255,.96);
}

.icon-menu{
  background-color: rgba(255,255,255,.96);
}

.drawer__panel{
  color: rgba(92,68,82,.92);
}

.drawer__backdrop{
  background: rgba(138,84,108,.28);
}

.drawer__head,
.drawer__cta{
  border-color: rgba(246,190,214,.42);
}

.drawer__nav a,
.cta{
  border-color: rgba(246,190,214,.36);
  background: rgba(255,250,252,.82);
}

.drawer__nav .ja,
.drawer__note{
  color: rgba(124,94,108,.70);
}

.cta--sms,
.cta--line,
.btn-cta--sms,
.btn-cta--line{
  color: rgba(124,86,32,.96);
  background: linear-gradient(180deg, rgba(255,245,209,.98), rgba(236,214,156,.98));
  border-color: rgba(255,255,255,.62);
  box-shadow: 0 10px 24px rgba(207,177,96,.18);
}

.promo__bg{
  background:
    radial-gradient(900px 360px at 10% 30%, rgba(255,246,250,.54), transparent 65%),
    linear-gradient(180deg, rgba(255,224,238,.12), rgba(248,186,212,.12)),
    url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  filter: blur(.2px) saturate(.96);
}

.promo__bg::after{
  background: linear-gradient(90deg, rgba(255,255,255,.18) 0%, rgba(222,151,184,.18) 70%);
}

.promo__logo-main::after{
  background: linear-gradient(90deg, transparent, rgba(244,185,209,.88), transparent);
}

.page-system .table-system,
.page-access .pagebody,
.page-news .pagebody,
.page-therapist .pagebody,
.page-room .pagebody{
  color: var(--ink);
}

/* =========================================================
   MORI NO KAORI / MINT ROSE OVERRIDE
   - palette-only refit
   - no DOM / layout / spacing / responsive changes
   - append at the very end of css/style.css
========================================================= */
:root{
  --bg: #f8f3f0;
  --paper: #f3ece8;
  --paper-2: #edf4f1;
  --ink: #544844;
  --muted: rgba(84,72,68,.72);

  --gold: #c58f83;
  --gold-2: #dbc0b9;
  --gold-deep: #b67d73;

  --brown: #7a6660;
  --brown-2: #66554f;

  --line: #dbeae4;
  --sms: #efe0db;

  --accent: #c58f83;
  --accent-strong: #b98176;
  --peach: #f0dfda;
  --mint: #d8e8e2;
  --mint-2: #caddd6;
  --mint-deep: #b9d1c7;
  --edge: rgba(197,143,131,.18);
  --edge-strong: rgba(197,143,131,.28);
  --shadow: 0 14px 34px rgba(141,121,116,.10);
  --shadow-soft: 0 8px 22px rgba(141,121,116,.08);
}

body{
  color: var(--ink);
  background:
    radial-gradient(1200px 520px at 0% 8%, rgba(240,223,218,.38), transparent 68%),
    radial-gradient(1200px 540px at 100% 12%, rgba(216,232,226,.28), transparent 70%),
    linear-gradient(180deg, #f8f3f0 0%, #f6f1ee 42%, #f8f3f0 100%);
}

.theme-contest::before{
  opacity: .10;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.76) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 80% 30%, rgba(216,232,226,.44) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 40% 70%, rgba(240,223,218,.40) 0 1px, transparent 1px 100%);
  mix-blend-mode: screen;
}

body.theme-contest a{ transition: color .18s ease, filter .18s ease, opacity .18s ease; }
body.theme-contest a:hover{ color: var(--accent-strong); }

/* ---------- header / nav ---------- */
.l-header-up,
.l-header__sp,
.gnav,
.mhead{
  background-color: rgba(195, 226, 220, .8);
    color: #bb725d;
  border-bottom: 1px solid var(--edge);
  box-shadow: 0 10px 28px rgba(141,121,116,.08);
  backdrop-filter: blur(12px);
}

.l-header-up.is-scrolled,
.l-header__sp.is-scrolled,
.gnav{
  background-color: rgba(195, 226, 220, .9);
  border-bottom-color: rgba(255, 251, 243, .78);
  box-shadow: 0 12px 30px rgba(141,121,116,.10);
}

.l-header-nav-upper-left,
.l-header-nav-list__en,
.l-header-nav-list__jp,
.gnav__item .en,
.gnav__item .ja,
.mhead__brand-top,
.mhead__brand-main,
.hero__brand-top,
.footer__brand-top,
.sp-drawer__brand-top{
  color: rgba(84,72,68,.84);
}

.l-header-nav-upper-left span,
.hero-info-box .time span:first-child,
.rc-sec-title__jp,
.footer__meta a,
.global-footer .des .tel a,
.banner__tel,
.price-1-con,
.new_mark{
  color: var(--accent-strong) !important;
}

.l-header-nav-list__link::after,
.gnav__item::after,
.rc-sec-title::after,
.access__row a::after,
.global-footer .des .tel a::after,
.promo__logo-main::after{
  background: linear-gradient(90deg, transparent, rgba(197,143,131,.48), transparent);
}

.l-header__burger:focus-visible,
.pageTop__link:focus-visible,
.profile__btn:focus-visible{
  outline-color: rgba(185,129,118,.50);
}

.l-header__burger-lines::before,
.l-header__burger-lines::after{
  background: rgba(185,129,118,.92);
}
.l-header__burger-lines{
  background: linear-gradient(rgba(185,129,118,.92), rgba(185,129,118,.92)) 0 50%/100% 2px no-repeat;
}
.icon-menu{
  background:
    linear-gradient(rgba(185,129,118,.92), rgba(185,129,118,.92)) 0 0/100% 2px no-repeat,
    linear-gradient(rgba(185,129,118,.92), rgba(185,129,118,.92)) 0 50%/100% 2px no-repeat,
    linear-gradient(rgba(185,129,118,.92), rgba(185,129,118,.92)) 0 100%/100% 2px no-repeat;
}

/* ---------- mobile / drawer ---------- */
.sp-drawer__backdrop,
.drawer__backdrop{
  background: rgba(78,70,68,.16);
}

.sp-drawer__panel{
  color: var(--ink);
}
.sp-drawer__panel::before{
  background:
    linear-gradient(180deg, rgba(216,232,226,.96), rgba(227,239,234,.94));
  opacity: 1;
  filter: none;
}
.sp-drawer__panel::after{
  background: linear-gradient(180deg, rgba(255,250,248,.22), rgba(255,250,248,.10));
}
.sp-drawer__item{
  border-bottom: 1px solid rgba(197,143,131,.16);
}
.sp-drawer__text,
.sp-drawer__arrow,
.drawer__title,
.drawer__nav .en,
.drawer__panel,
.cta__label,
.cta__value{

  color: var(--ink);
}
.sp-drawer__brand{
  background-color: rgba(195, 226, 220, .2);
}
.sp-drawer__meta,
.drawer__nav .ja,
.drawer__note{
  color: rgba(84,72,68,.68);
}
.drawer__panel{
  background: linear-gradient(180deg, rgba(216,232,226,.96), rgba(234,243,239,.94));
  box-shadow: -14px 0 30px rgba(141,121,116,.10);
}
.drawer__head,
.drawer__cta{
  border-color: rgba(197,143,131,.16);
}
.drawer__nav a,
.cta{
  border-color: rgba(197,143,131,.14);
  background: rgba(250,246,244,.88);
  box-shadow: none;
}

/* ---------- hero ---------- */
.hero__bg{
  background:
    linear-gradient(90deg, rgba(248,240,236,.42), rgba(248,240,236,0) 45%),
    radial-gradient(920px 420px at 70% 40%, rgba(240,223,218,.28), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,244,241,.16)),
    url("../images/1920x1080.png") center/cover no-repeat;
  filter: saturate(.82) brightness(1.04) contrast(.98);
}
@media (max-width: 768px){
  .hero__bg{
    background:
      linear-gradient(90deg, rgba(248,240,236,.42), rgba(248,240,236,0) 45%),
      radial-gradient(920px 420px at 70% 40%, rgba(240,223,218,.28), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,244,241,.16)),
      url("../images/header_bg_sm.png") center/cover no-repeat;
  }
}
.hero__bg::after{
  background: radial-gradient(1200px 520px at 50% 40%, rgba(255,255,255,.12), rgba(248,240,236,.34) 70%);
}
.hero__brand-top,
.hero__hours{
  text-shadow: none;
}
.hero__meta{
  background: rgba(250,246,244,.74);
  border-color: rgba(197,143,131,.16);
  box-shadow: var(--shadow-soft);
}
.hero__tel{
  color: var(--accent-strong);
}

/* ---------- global section background ---------- */
.section.news,
.section.system,
.section.attention,
.section.cast,
.section.access,
.section.profile,
.section.recruit{
  background: linear-gradient(180deg, rgba(216,232,226,.56), rgba(216,232,226,.50));
}
.section.service,
.section.link{
  background: transparent;
}

/* ---------- cards / panels ---------- */
.rc-card,
.news__box,
.service__item,
.access__info,
.access__map,
.link__item,
.cast__item,
.cost-data-bundle,
.access__note,
.reserve__telbar,
.reserve__telbar-left,
.reserve__telbar-right,
.reserve__telbar-center,
.system-cost-box,
.attention__box,
.hero-info-box,
.profile__card,
.profile__block,
.recruit-item,
.banner,
.cta,
.drawer__nav a{
  background-color: rgba(195, 226, 220, .2);
  border-color: rgba(197,143,131,.16);
  box-shadow: var(--shadow-soft);
}

.cast__img-box,
.access__map-placeholder,
.service__img,
.feature__photo,
.profile__imgbox,
.js-profile-thumb,
.news__photos img,
.link__item img{
  border-color: rgba(197,143,131,.18);
  background: rgba(252,248,246,.96);
  box-shadow: 0 10px 22px rgba(141,121,116,.08);
}

.cast__img-box::after,
.service__img::after,
.profile__imgbox::after{
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), transparent 42%),
    radial-gradient(640px 220px at 30% 10%, rgba(216,232,226,.18), transparent 60%);
}

.news__head,
.access__row,
.block-system-title,
.system-cost + .system-cost,
.profile__table th,
.profile__table td,
.attention__box p + p,
.hero-info-box > div:not(:last-child)::after,
.recruit-item,
.cost-data-bundle,
.banner,
.link__item img{
  border-color: rgba(197,143,131,.16);
}

.rc-sec-title__en,
.news__title,
.banner__title,
.feature__name,
.cast__name,
.systemtitle-head,
.access__row dt,
.access__row a,
.footer__brand-main,
.profile__table th,
.hero-info-box .time,
.hero-info-box .tel,
.hero-info-box .header-access,
.global-footer .des .tit,
.link__name{
  color: rgba(56,46,43,.96);
  text-shadow: none;
}

.rc-sec-title__jp,
.news__date,
.news__message,
.news__message span,
.news__message font,
.banner__list,
.banner__note,
.feature__size,
.systemtitle-desc,
.access__row dd,
.access__note,
.footer__meta,
.footer__copy,
.profile__table td,
.recruit-context-con,
.attention__box p,
.global-footer .des .txt,
.global-footer .des .tel,
.global-footer .des .tel a,
.sp-drawer__meta,
.drawer__note,
.mbnav__label{
  color: #bb725d !important;
}

/* ---------- top info box ---------- */
.hero-info-box{
  border: 1px solid rgba(197,143,131,.18);
  background: linear-gradient(180deg, rgba(250,247,245,.98), rgba(246,240,237,.96));
  box-shadow: 0 16px 34px rgba(141,121,116,.08);
}
.hero-info-box > div:not(:last-child)::after{
  background: linear-gradient(180deg, transparent, rgba(197,143,131,.28), transparent);
}
.hero-info-box .time,
.hero-info-box .tel,
.hero-info-box .header-access{
  color: var(--ink);
  text-shadow: none;
}
.hero-info-box .tel{
  background: linear-gradient(180deg, rgba(220,236,229,.92), rgba(210,227,219,.90));
}
.hero-info-box .tel a{
  color: var(--accent-strong);
}
.hero-info-box .notepad{
  background: linear-gradient(180deg, rgba(241,230,226,.96), rgba(236,221,216,.94));
  color: var(--brown);
  box-shadow: none;
}
.hero-info-box .notepad .color{
  color: var(--accent-strong);
}
.hero-info-box .header-access{
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.40));
}

/* ---------- buttons / ctas ---------- */
.btn-cta,
.pill-btn,
.banner__tel,
.profile__btn,
.cost-data-label-con,
.pageTop__link,
.recruit-label-con{
  color: var(--accent-strong);
  background: linear-gradient(180deg, rgba(227,240,234,.98), rgba(214,231,225,.96));
  border-color: rgba(197,143,131,.16);
  box-shadow: var(--shadow-soft);
  text-shadow: none;
}

.btn-cta--sms,
.cta--sms{
  background: linear-gradient(180deg, rgba(243,232,227,.98), rgba(234,219,214,.96));
  color: var(--accent-strong);
  border-color: rgba(197,143,131,.16);
  box-shadow: var(--shadow-soft);
}

.btn-cta--line,
.cta--line{
  background: linear-gradient(180deg, rgba(227,240,234,.98), rgba(214,231,225,.96));
  color: rgba(89,118,108,.96);
  border-color: rgba(197,143,131,.16);
  box-shadow: var(--shadow-soft);
}

.btn-cta__small,
.btn-cta__main,
.cta__label,
.cta__value,
.pill-btn,
.banner__tel,
.profile__btn,
.cost-data-label-con,
.recruit-label-con{
  text-shadow: none;
}

.btn-cta:hover,
.pill-btn:hover,
.banner__tel:hover,
.profile__btn:hover,
.cta--sms:hover,
.cta--line:hover,
.pageTop__link:hover{
  filter: brightness(.92);
  box-shadow: var(--shadow-soft);
}

.cast__item:hover,
.link__item:hover,
.js-profile-thumb:hover{
  filter: brightness(.92);
  box-shadow: 0 12px 26px rgba(141,121,116,.10);
}

/* ---------- system / attention ---------- */
.cost-data-bundle,
.profile__block,
.recruit-item{
  background: linear-gradient(180deg, rgba(250,247,245,.98), rgba(244,249,247,.94));
}
.cost-data-label-con,
.recruit-label-con{
  background: linear-gradient(180deg, rgba(241,230,226,.98), rgba(234,219,214,.96));
}
.system-cont-box,
.banner--x{
  background: linear-gradient(180deg, rgba(241,230,226,.96), rgba(232,215,210,.94));
  color: var(--brown);
  border-color: rgba(197,143,131,.16);
  box-shadow: var(--shadow-soft);
}
.banner__x-right{
  background: linear-gradient(180deg, rgba(216,232,226,.82), rgba(216,232,226,.62));
}
.banner__x-title,
.banner__x-sub,
.banner__x-right,
.system-cont-box,
.banner--notice p,
.hero-info-box .notepad{
  color: var(--brown);
}
.banner--notice{
  color: var(--brown);
  border-color: rgba(197,143,131,.16);
  background:
    linear-gradient(180deg, rgba(245,237,233,.96), rgba(239,228,224,.94)),
    url(../images/banner--notice.jpg) center / cover no-repeat;
}
.banner--notice p{ text-shadow: none; }

/* ---------- access / promo / schedule ---------- */
.schedule-cta__bg{
  background:
    radial-gradient(900px 360px at 70% 50%, rgba(216,232,226,.26), transparent 64%),
    linear-gradient(180deg, rgba(247,241,238,.32), rgba(216,232,226,.44)),
    url("../images/schedule-cta__bg.jpg") center/cover no-repeat;
  filter: saturate(.78) brightness(1.02);
}
.promo__bg{
  background:
    radial-gradient(900px 360px at 10% 30%, rgba(245,237,233,.56), transparent 65%),
    linear-gradient(180deg, rgba(240,223,218,.10), rgba(216,232,226,.10)),
    url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  filter: blur(.2px) saturate(.88);
}
.promo__bg::after{
  background: linear-gradient(90deg, rgba(255,255,255,.12) 0%, rgba(216,232,226,.16) 70%);
}

/* ---------- footer ---------- */
.footer__bg,
.global-footer{
  background: #fde8e7;
}
.footer,
.global-footer{
  border-top-color: rgba(197,143,131,.18);
  box-shadow: none;
}
.global-footer::before{
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
}
.footer__meta,
.footer__copy,
.footer__meta a,
.global-footer .des .tit,
.global-footer .des .txt,
.global-footer .des .tel a{
  color: rgba(177,124,113,.92) !important;
}

/* ---------- bottom nav / pagetop ---------- */
.mbnav{
  background: linear-gradient(180deg, rgba(248,244,241,.98), rgba(242,235,231,.95));
  border-top-color: rgba(197,143,131,.16);
  box-shadow: 0 -8px 20px rgba(141,121,116,.06);
}
.mbnav__icon svg{
  fill: rgba(185,129,118,.92);
}
.pageTop__link{
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(220,236,229,.98), rgba(210,227,219,.96));
}
.pageTop__link img{
  filter: drop-shadow(0 6px 12px rgba(141,121,116,.10));
}

/* ---------- small cleanups ---------- */
.access__row a,
.hero-info-box .tel a,
.banner__tel,
.pill-btn,
.profile__btn,
.cost-data-label-con,
.recruit-label-con{
  color: var(--accent-strong);
}
.footer__brand-top,
.footer__brand-main,
.global-footer .des .tit{
  text-shadow: none;
}
.bubble{
  opacity: .32;
  filter: saturate(.74) brightness(1.06);
}

@media (max-width: 768px){
  .hero-info-box > div:not(:last-child){
    border-bottom: 1px solid rgba(197,143,131,.14);
  }
  .sp-drawer__brand{
    border-radius: 20px;
  }
}

/* =========================================================
   TEXT CLARITY OVERRIDE
   - layout / structure / spacing unchanged
   - only improve legibility and text sharpness
========================================================= */

/* 1) global text rendering */
html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body{
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1;
  color: #4f433f;
}

/* keep link readability stable */
a{
  text-decoration-thickness: .08em;
  text-underline-offset: .14em;
}

/* 2) remove excessive blur/glow from text-bearing brand areas */
.hero__brand-top,
.hero__brand-main,
.footer__brand-top,
.footer__brand-main,
.sp-drawer__brand-top,
.sp-drawer__brand-main,
.global-footer .des .tit,
.rc-sec-title__en,
.rc-sec-title__jp,
.news__title,
.banner__title,
.feature__name,
.cast__name,
.systemtitle-head,
.access__row dt,
.profile__table th,
.link__name,
.hero-info-box .time,
.hero-info-box .tel,
.hero-info-box .header-access,
.l-header-nav-upper-left,
.l-header-nav-list__en,
.l-header-nav-list__jp,
.gnav__item .en,
.gnav__item .ja,
.mhead__brand-top,
.mhead__brand-main{
  text-shadow: none !important;
  filter: none;
}

/* logos keep image drop-shadow, but textual wrappers should not blur perceived sharpness */
.hero__brand-main,
.footer__brand-main,
.sp-drawer__brand-main{
  letter-spacing: .04em;
}

/* 3) stronger base contrast for body copy */
.news__message,
.news__message span,
.news__message font,
.banner__list,
.banner__note,
.feature__size,
.systemtitle-desc,
.access__row dd,
.access__note,
.footer__meta,
.footer__copy,
.profile__table td,
.recruit-context-con,
.attention__box p,
.global-footer .des .txt,
.global-footer .des .tel,
.global-footer .des .tel a,
.sp-drawer__meta,
.drawer__note,
.drawer__nav .ja,
.mbnav__label,
.hero__hours{
  color: #5c4f4a !important;
  text-shadow: none !important;
}

/* 4) heading clarity */
.rc-sec-title__en,
.news__title,
.banner__title,
.feature__name,
.cast__name,
.systemtitle-head,
.access__row dt,
.profile__table th,
.link__name,
.hero-info-box .time,
.hero-info-box .tel,
.hero-info-box .header-access,
.drawer__title,
.drawer__nav .en{
  color: #433834 !important;
  font-weight: 700;
  text-shadow: none !important;
}

/* 5) navigation and small text: slightly darker and cleaner */
.l-header-nav-upper-left,
.l-header-nav-list__en,
.l-header-nav-list__jp,
.gnav__item .en,
.gnav__item .ja,
.mhead__brand-top,
.mhead__brand-main,
.footer__brand-top,
.sp-drawer__brand-top{
  color: #5a4b45 !important;
}

.l-header-nav-list__en,
.gnav__item .en{
  font-weight: 600;
  letter-spacing: .14em;
}
.l-header-nav-list__jp,
.gnav__item .ja{
  font-weight: 500;
  letter-spacing: .12em;
}

/* 6) hero info / tel / important numbers */
.hero__tel,
.hero-info-box .tel a,
.access__row a,
.footer__meta a,
.global-footer .des .tel a,
.price-1-con,
.banner__tel{
  color: #a66457 !important;
  text-shadow: none !important;
}

.hero__hours,
.news__date,
.rc-sec-title__jp,
.feature__size,
.banner__note,
.access__note,
.footer__copy,
.mbnav__label{
  letter-spacing: .04em;
}

/* 7) news body and long paragraphs */
.news__message,
.attention__box p,
.recruit-context-con,
.access__row dd,
.profile__table td,
.banner__list{
  line-height: 1.9;
}

/* 8) buttons: sharpen text only, keep box style */
.btn-cta__small,
.btn-cta__main,
.pill-btn,
.profile__btn,
.cost-data-label-con,
.recruit-label-con,
.cta__label,
.cta__value{
  text-shadow: none !important;
  letter-spacing: .06em;
}

.btn-cta__small{
  color: #6d5c54 !important;
}
.btn-cta__main{
  color: #4d403b !important;
}

/* 9) mobile bottom nav clarity */
.mbnav__label{
  font-weight: 600;
  color: #6a5952 !important;
}
.mbnav__icon svg{
  opacity: .95;
}

/* 10) legacy font tags inside PHP news content */
.news__message b,
.news__message strong{
  font-weight: 700;
}
.news__message small{
  color: #746660 !important;
}

/* 11) selection/readability nicety */
::selection{
  background: rgba(197,143,131,.20);
  color: #3f3430;
}

/* 12) mobile fine tuning */
@media (max-width: 768px){
  body{
    -webkit-font-smoothing: antialiased;
  }

  .news__message,
  .access__row dd,
  .recruit-context-con,
  .attention__box p,
  .profile__table td,
  .banner__list{
    font-size: 13px;
  }

  .rc-sec-title__en,
  .news__title,
  .cast__name,
  .feature__name,
  .systemtitle-head{
    letter-spacing: .08em;
  }

  .mbnav__label{
    font-size: 10px;
    letter-spacing: .08em;
  }
}
