@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 {
  --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;
}

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

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

.wrap {
  margin-inline: auto;
}

.theme-contest::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

/* =========================================================
  HERO
========================================================= */

.hero {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -2px;
  transform: scale(1.02);
}

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

.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;
  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;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__hours {
  color: rgba(255,255,255,.85);
  font-size: 12px;
  letter-spacing: .06em;
}

.hero__tel {
  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;
}

/* =========================================================
  PROMO
========================================================= */

.promo {
  position: relative;
  padding: 22px 0;
  overflow: hidden;
}

.promo__bg {
  position: absolute;
  inset: 0;
}

.promo__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.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;
}

.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;
  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;
}

.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__title {
  margin: 10px 0 8px;
}

.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;
  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);
  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);
  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;
}

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

/* =========================================================
  RESPONSIVE
========================================================= */

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

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

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

.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;
  background-color: rgba(195, 226, 220, .8);
  border-bottom: 1px solid 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);
}

.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));
}

.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;
}

.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;
  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;
  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;
}

.l-header__burger-lines {
  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);
}

@media (min-width: 1025px) {
  .l-header__sp {
    display: none;
  }
}

@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;
}

.sp-drawer__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sp-drawer__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sp-drawer__panel > * {
  position: relative;
  z-index: 1;
}

.sp-drawer__close {
  appearance: none;
  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;
}

.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;
}

.sp-drawer__brand-main img {
  display: block;
  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;
}

html.is-locked, body.is-locked {
  overflow: hidden;
  height: 100%;
}

/* ================================
   NEWS block (koibitokukan style) - themed
 ================================ */

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

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

.rc-sec-title {
  text-align: center;
  margin: 0 0 14px;
  position: relative;
}

.rc-sec-title__jp {
  margin-top: 6px;
}

.rc-sec-title::after {
  content: "";
  display: block;
  margin: 12px auto 0;
}

.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 {
  padding: 18px 18px 16px;
}

.news__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.news__title {
  font-family: var(--serif);
  letter-spacing: .08em;
  font-size: 16px;
}

.news__date {
  letter-spacing: .10em;
  white-space: nowrap;
}

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

.news__message font {
  color: inherit !important;
}

.news__message span {
  font-size: inherit !important;
}

.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);
}

@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
 ================================ */

/* 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;
}

.rc-card--tight {
  padding: 10px;
}

.cast__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.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);
}

.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);
}

.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;
}

.cast__status {
  position: absolute;
  top: -9px;
  left: 0px;
  display: grid;
  place-items: center;
}

.cast__status img {
  width: 52px;
  height: auto;
  object-fit: contain;
}

.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;
}

@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
 ================================ */

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

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

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

.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;
}

.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;
}

.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;
}

@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
 ================================ */

.section.system {
  padding: 26px 0 24px;
  background: transparent;
}

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

.system-cost-box {
  padding: 18px 18px 16px;
}

.system-cost {
  margin: 0;
}

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

.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;
}

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

.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);
}

.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);
}

.cost-data-price {
  margin: 0;
  text-align: right;
}

.price-1-con {
  font-family: var(--serif);
  letter-spacing: .06em;
  font-size: 16px;
}

.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);
}

.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);
}

@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
 ================================ */

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

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

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

.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);
}

.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);
}

.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;
}

@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
 ================================ */

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

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

.service__item {
  overflow: hidden;
  padding: 14px;
}

.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;
}

.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;
}

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

/* ================================
   LINK block - themed
 ================================ */

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

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

.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;
}

.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;
}

.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;
}

@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)
 ================================ */

.pageTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 160;
  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);
}

.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;
}

@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
 ================================ */

.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;
}

.global-footer::before {
  content: "";
  position: absolute;
  inset: -40px -20px auto -20px;
  height: 140px;
  pointer-events: none;
}

.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::after {
  content: "";
  display: block;
  clear: both;
}

.global-footer .footerlogo {
  margin: 0;
  display: flex;
  align-items: center;
}

.global-footer .footerlogo img {
  height: 100px;
  width: auto;
  display: block;
}

.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;
}

@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
 ================================ */

.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;
}

.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);
}

.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;
}

.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;
}

.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;
}

.profile__block {
  padding: 14px 14px;
  border-radius: 16px;
  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;
}

.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);
}

@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);
  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;
}

.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;
}

.hero-info-box .time span:first-child {
  margin-right: 8px;
  font-size: 12px;
  letter-spacing: .16em;
}

.hero-info-box .notepad {
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.8;
}

.hero-info-box .notepad-content {
  width: 100%;
}

.hero-info-box .notepad .color {
  font-weight: 700;
}

@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 .time,
  .hero-info-box .tel,
  .hero-info-box .header-access {
    font-size: 17px;
  }
  .hero-info-box .notepad {
    font-size: 12px;
  }
}

/* =========================================================
   TEXT RENDERING / READABILITY CORE
   - no layout / structure / spacing changes
========================================================= */

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;
}

a {
  text-decoration-thickness: .08em;
  text-underline-offset: .14em;
}

.news__message,
.attention__box p,
.recruit-context-con,
.access__row dd,
.profile__table td,
.banner__list {
  line-height: 1.9;
}

.news__message b,
.news__message strong {
  font-weight: 700;
}

@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;
  }
}

/* =========================================================
   AROMA GOLD / AQUA LAVENDER OVERRIDE
   - palette / gradients / shadows only
   - no HTML / layout / size / spacing / breakpoint changes
   - reference mood: pale aqua, lavender blue, transparent glass, bubbles
========================================================= */

:root {
  --aqua: #c8f2ff;
  --aqua-2: #e8fbff;
  --lavender: #d7dcff;
  --lavender-2: #b9c6ff;
  --blue-soft: #eef8ff;
  --blue-deep: #273f7c;
  --edge: rgba(126,144,238,.22);
  --edge-strong: rgba(126,144,238,.34);
}

/* ---------- page base ---------- */

/* ---------- header / nav ---------- */

.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: rgba(255,255,255,.94) !important;
  text-shadow: 0 1px 8px rgba(41,58,140,.16) !important;
}

.l-header-nav-upper-left span,
.hero-info-box .time span:first-child,
.footer__meta a,
.global-footer .des .tel a,
.banner__tel,
.price-1-con,
.new_mark {
  color: #fff !important;
}

/* ---------- hero ---------- */

.hero__meta {
  border-color: rgba(126,144,238,.22);
}

/* ---------- mobile drawer / overlay menu ---------- */

.sp-drawer__panel {
  color: #fff;
}

.sp-drawer__close {
  border-radius: 999px;
}

.drawer__panel {
  background: radial-gradient(900px 420px at 50% 12%, rgba(255,255,255,.16), transparent 66%),
    linear-gradient(180deg, rgba(126,144,238,.94), rgba(126,144,238,.88)) !important;
  box-shadow: -18px 0 42px rgba(41,58,140,.20);
}

.drawer__head,
.drawer__cta {
  border-color: rgba(255,255,255,.24);
}

.drawer__nav a,
.cta {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
}

/* ---------- cards / panels ---------- */

.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,
.cta,
.drawer__nav a {
  border-color: rgba(126,144,238,.20) !important;
}

.cast__img-box,
.access__map-placeholder,
.service__img,
.feature__photo,
.profile__imgbox,
.js-profile-thumb,
.news__photos img,
.link__item img {
  border-color: rgba(126,144,238,.22) !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 10px 24px rgba(74,96,180,.10) !important;
}

/* ---------- text colors ---------- */

.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,
.drawer__title,
.drawer__nav .en {
  color: #263b73 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.75) !important;
}

.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,
.sp-drawer__meta,
.drawer__note,
.mbnav__label,
.hero__hours {
  color: rgba(48,65,110,.76) !important;
}

.news__message,
.attention__box p,
.recruit-context-con,
.access__row dd,
.profile__table td,
.banner__list {
  color: rgba(42,56,98,.82) !important;
}

/* ---------- hero info box ---------- */

.hero-info-box .tel a {
  color: #fff !important;
}

.hero-info-box .header-access {
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(232,244,255,.34)) !important;
}

/* ---------- buttons / ctas ---------- */

.btn-cta,
.pill-btn,
.banner__tel,
.profile__btn,
.cost-data-label-con,
.recruit-label-con {
  color: #fff !important;
  background: linear-gradient(180deg, rgba(142,158,246,.98), rgba(108,126,232,.96)) !important;
  border-color: rgba(255,255,255,.46) !important;
  box-shadow: 0 13px 28px rgba(74,96,180,.18),
    inset 0 1px 0 rgba(255,255,255,.36) !important;
  text-shadow: none !important;
}

.btn-cta--sms,
.cta--sms {
  background: linear-gradient(180deg, rgba(255,238,158,.98), rgba(243,208,92,.96)) !important;
  color: #31426f !important;
}

.btn-cta--line,
.cta--line {
  background: linear-gradient(180deg, rgba(116,231,255,.92), rgba(94,187,238,.92)) !important;
  color: #24365f !important;
}

.btn-cta__small {
  color: rgba(255,255,255,.84) !important;
}

.btn-cta__main {
  color: #fff !important;
}

.btn-cta--sms .btn-cta__small,
.btn-cta--sms .btn-cta__main {
  color: #31426f !important;
}

.cost-data-bundle,
.profile__block,
.recruit-item {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(234,244,255,.84)) !important;
}

.cost-data-label-con,
.recruit-label-con {
  background: linear-gradient(180deg, rgba(215,225,255,.96), rgba(190,204,255,.92)) !important;
  color: #263b73 !important;
}

/* ---------- banners / system notice ---------- */

.system-cont-box,
.banner--x {
  box-shadow: var(--shadow-soft) !important;
}

.banner__x-right {
  background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.08)) !important;
}

.banner__x-title,
.banner__x-sub,
.banner__x-right,
.system-cont-box {
  color: #fff !important;
}

.banner--notice {
  color: #263b73 !important;
  border-color: rgba(126,144,238,.22) !important;
}

.banner--notice p {
  color: #263b73 !important;
  text-shadow: none !important;
}

/* ---------- promo / schedule / footer ---------- */

.footer__bg,
.global-footer {
  background: radial-gradient(900px 320px at 50% 0%, rgba(255,255,255,.72), transparent 68%),
    linear-gradient(180deg, #eef8ff 0%, #dfe9ff 100%) !important;
}

.footer,
.global-footer {
  border-top-color: rgba(126,144,238,.18);
  box-shadow: none;
}

.footer__meta,
.footer__copy,
.footer__meta a,
.global-footer .des .tit,
.global-footer .des .txt,
.global-footer .des .tel a {
  color: rgba(38,59,115,.84) !important;
}

/* ---------- mobile bottom nav / page top ---------- */

.mbnav {
  border-top-color: rgba(255,255,255,.34);
}

/* ---------- decorative bubbles ---------- */

/* ---------- selection ---------- */

@media (max-width: 768px) {
  .sp-drawer__brand {
    border-radius: 20px;
  }
}

/* =========================================================
   genkimori COSMOS PURPLE OVERRIDE
   reference: genkimori-ageo.iest.in
   - pale floral lavender background
   - cosmospurple navigation and footer
   - translucent white panels with purple borders
   - compact, clean therapist/news/system cards
========================================================= */

:root {
  --bg: #fceced;
  --paper: rgba(255,255,255,.42);
  --paper-2: rgba(255,255,255,.58);
  --ink: #303030;
  --muted: rgba(48,48,48,.72);
  --gold: #af9cce;
  --gold-2: #dbd3ea;
  --gold-deep: #7f5ab6;
  --brown: #aa92ce;
  --brown-2: #7f5ab6;
  --line: #af9cce;
  --sms: #7f5ab6;
  --accent: #af9cce;
  --accent-strong: #7f5ab6;
  --ys-bg: #fceced;
  --ys-purple: #af9cce;
  --ys-purple-2: #aa92ce;
  --ys-purple-deep: #7f5ab6;
  --ys-purple-dark: #5b526c;
  --ys-border: #ae9cc2;
  --ys-border-soft: rgba(174,156,194,.55);
  --ys-panel: hsla(0,0%,100%,.42);
  --ys-panel-strong: hsla(0,0%,100%,.62);
  --ys-line: #ccc;
  --shadow: 0 0 5px rgba(175,156,206,.95);
  --shadow-soft: 0 0 5px rgba(175,156,206,.72);
}

body {
  color: var(--ink) !important;
  background: url("../images/genkimori-bg-pc.jpeg") var(--ys-bg) no-repeat top center fixed !important;
  background-size: 100% auto !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif !important;
}

@media (max-width: 768px) {
  body {
    background: url("../images/genkimori-bg-sp.jpeg") var(--ys-bg) repeat top center fixed !important;
    background-size: 100% auto !important;
  }
}

.theme-contest::before {
  opacity: .18 !important;
  background-image: radial-gradient(circle at 16% 18%, rgba(255,255,255,.95) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 78% 26%, rgba(175,156,206,.40) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 46% 72%, rgba(255,255,255,.72) 0 1px, transparent 1px 100%) !important;
  background-size: 120px 120px, 150px 150px, 180px 180px !important;
  mix-blend-mode: normal !important;
}

/* ---------- shared layout panels ---------- */

main,
.section,
.hero-info,
.reserve,
.banners,
.schedule-cta,
.footer {
  position: relative;
}

.container,
.wrap,
.w1300 {
  position: relative;
  z-index: 1;
}

.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,
.cta,
.drawer__nav a {
  background: var(--ys-panel) !important;
  border: 1px solid var(--ys-border) !important;
  border-radius: 5px !important;
  box-shadow: var(--shadow-soft) !important;
  color: var(--ink) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.rc-card:hover,
.cast__item:hover,
.service__item:hover,
.link__item:hover,
.profile__btn:hover,
.btn-cta:hover,
.pill-btn:hover {
  box-shadow: 0 0 10px rgba(175,156,206,.95) !important;
  transform: translateY(-1px);
}

.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: var(--ys-border-soft) !important;
}

/* ---------- header and global navigation ---------- */

.l-header-up,
.l-header__sp,
.l-header__sp.is-scrolled,
.gnav,
.mhead {
  background: linear-gradient(90deg, #aa92ce, #ab79d5, #aa92ce);
  color: #fff !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.75) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.l-header-up.is-scrolled {
  background: linear-gradient(90deg, #a48ac9, var(--ys-purple), #a48ac9) !important;
  box-shadow: 0 2px 10px rgba(127,90,182,.20) !important;
}

.l-header__inner {
  min-height: 60px !important;
}

.l-header__logo img,
.l-header__logo-sp img {
  max-height: 52px !important;
}

.l-header-nav-upper {
  border-bottom: 1px solid rgba(255,255,255,.34) !important;
}

.l-header-nav-upper-left,
.l-header-nav-upper-left span,
.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: #fff !important;
  text-shadow: 1px 1px 5px rgba(0,0,0,.40) !important;
}

.l-header-nav-list__link,
.gnav__item {
  position: relative;
  color: #fff !important;
}

.l-header-nav-list__link:hover,
.l-header-nav-list__link:focus-visible,
.gnav__item:hover {
  color: #f7f1ff !important;
  background: rgba(255,255,255,.10) !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, #fff, transparent) !important;
}

.gnav__item.is-current {
  background: rgba(255,255,255,.16) !important;
}

.l-header__burger {
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.65) !important;
  box-shadow: none !important;
}

.l-header__burger-lines::before,
.l-header__burger-lines::after {
  background: #fff !important;
}

.l-header__burger-lines {
  background: linear-gradient(#fff, #fff) 0 50%/100% 2px no-repeat !important;
}

/* ---------- hero ---------- */

.hero {
  min-height: 500px;
  background: transparent !important;
}

.hero__bg {
  background: radial-gradient(820px 420px at 72% 34%, rgba(255,255,255,.34), transparent 64%),
    linear-gradient(90deg, rgba(175,156,206,.50), rgba(252,236,237,.18) 45%, rgba(175,156,206,.30)),
    url("../images/1920x1080.png") center/cover no-repeat !important;
  animation: kenBurns 14s infinite alternate !important;
}

@media (max-width: 768px) {
  .hero {
    min-height: 630px;
  }
  .hero__bg {
    background: url("../images/header_bg_sm.png") center/cover no-repeat !important;
  }
}

.hero__brand-top,
.hero__hours {
  color: var(--ys-purple-deep) !important;
  text-shadow: 0 1px 10px rgba(255,255,255,.92) !important;
}

.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 6px rgba(255,255,255,.95))
    drop-shadow(0 0 16px rgba(175,156,206,.55))
    saturate(.95) hue-rotate(10deg) !important;
}

.hero__meta {
  background: rgba(255,255,255,.52) !important;
  border: 1px solid var(--ys-border) !important;
  box-shadow: var(--shadow-soft) !important;
}

.hero__tel {
  color: var(--ys-purple-deep) !important;
}

/* ---------- top info and reservation ---------- */

.hero-info-box {
  background: rgba(226,214,233,.80) !important;
  border-color: var(--ys-border) !important;
  color: #7c66a4 !important;
  box-shadow: var(--shadow-soft) !important;
}

.hero-info-box > div:not(:last-child)::after {
  background: linear-gradient(180deg, transparent, rgba(127,90,182,.45), transparent) !important;
}

.hero-info-box .time,
.hero-info-box .tel,
.hero-info-box .header-access {
  color: #7c66a4 !important;
}

.hero-info-box .time span:first-child,
.hero-info-box .tel a {
  color: #7f5ab6 !important;
}

.hero-info-box .tel {
  background: rgba(255,255,255,.36) !important;
}

.hero-info-box .notepad {
  background: rgba(255,255,255,.32) !important;
  color: #7c66a4 !important;
  box-shadow: none !important;
}

.hero-info-box .notepad .color {
  color: #7f5ab6 !important;
}

.reserve__telbar-left,
.reserve__telbar-center,
.reserve__telbar-right,
.btn-cta,
.pill-btn,
.banner__tel,
.profile__btn,
.cost-data-label-con,
.recruit-label-con {
  color: #fff !important;
  background: linear-gradient(135deg, #a994d1, #9b82c4 44%, #a994d1 55%, #a68ecc) !important;
  border: 1px solid #9781c2 !important;
  box-shadow: var(--shadow-soft) !important;
  text-shadow: none !important;
}

.reserve__telbar-top,
.reserve__telbar-title,
.reserve__telbar-num,
.btn-cta__small,
.btn-cta__main,
.pill-btn,
.banner__tel,
.profile__btn {
  color: #fff !important;
}

.btn-cta--sms,
.cta--sms,
.btn-cta--line,
.cta--line {
  background: linear-gradient(180deg, #b7a6d5, #9c82c7) !important;
  color: #fff !important;
}

.btn-cta--sms .btn-cta__small,
.btn-cta--sms .btn-cta__main,
.btn-cta--line .btn-cta__small,
.btn-cta--line .btn-cta__main {
  color: #fff !important;
}

/* ---------- headings ---------- */

.rc-sec-title {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
  margin-bottom: 22px !important;
}

.rc-sec-title__en {
  order: 1 !important;
  color: var(--ys-purple) !important;
  font-size: clamp(1.65rem, 3vw, 2rem) !important;
  line-height: 1.2 !important;
  letter-spacing: .03em !important;
  font-family: "Times New Roman", "Georgia", serif !important;
  font-weight: 400 !important;
  text-shadow: none !important;
}

.rc-sec-title__jp {
  order: 2 !important;
  color: var(--ys-purple) !important;
  font-size: .875rem !important;
  line-height: 1.2 !important;
  letter-spacing: .08em !important;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif !important;
  font-weight: 600 !important;
  text-shadow: none !important;
}

.rc-sec-title::after {
  width: min(320px, 100%) !important;
  height: 1px !important;
  margin-top: 7px !important;
  background: #ccc !important;
}

/* ---------- news ---------- */

.news__box,
.news__card {
  padding: 16px !important;
}

.news__head {
  background: transparent !important;
  border-bottom: 0 !important;
}

.news__title {
  color: #000016 !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

.news__date {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 20px !important;
  padding: 0 8px !important;
  color: #fff !important;
  background: var(--ys-purple) !important;
  border-radius: 2px !important;
  font-size: .875rem !important;
}

.news__message,
.news__message span,
.news__message font {
  color: #303030 !important;
}

.news__photos img,
.news_photo img {
  border: 1px solid var(--ys-border) !important;
  background: rgba(255,255,255,.55) !important;
  box-shadow: var(--shadow-soft) !important;
}

.new_mark {
  color: #7f5ab6 !important;
}

/* ---------- therapist/cast cards ---------- */

.cast__grid {
  gap: 18px !important;
}

.cast__item {
  background: hsla(0,0%,100%,.34) !important;
  box-shadow: var(--shadow-soft) !important;
  border-radius: 5px !important;
  padding: 5px !important;
}

.cast__img-box,
.access__map-placeholder,
.service__img,
.feature__photo,
.profile__imgbox,
.js-profile-thumb,
.link__item img {
  background: rgba(255,255,255,.42) !important;
  border: 1px solid var(--ys-border) !important;
  box-shadow: var(--shadow-soft) !important;
  border-radius: 4px !important;
}

.cast__img-box::after,
.service__img::after,
.profile__imgbox::after {
  background: linear-gradient(135deg, rgba(255,255,255,.20), transparent 44%),
    radial-gradient(600px 220px at 80% 10%, rgba(175,156,206,.16), transparent 62%) !important;
}

.cast__name,
.cast__name a,
.feature__name,
.link__name {
  color: var(--ys-purple-deep) !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

.cast__size,
.cast__meta,
.cast__comment,
.feature__size {
  color: #000 !important;
}

.cast__status,
.worktime,
.status,
.cast__today {
  color: #fff !important;
}

/* ---------- system / profile / recruit ---------- */

.system-cost-box,
.attention__box,
.profile__card,
.recruit-item {
  background: linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.36)),
    url("../images/genkimori-system-bg.jpg") center/cover no-repeat !important;
  border-color: var(--ys-border) !important;
}

.system-cost,
.block-system-title,
.profile__table th,
.profile__table td {
  border-color: var(--ys-border-soft) !important;
}

.systemtitle-head,
.cost-data-label,
.recruit-label,
.profile__table th,
.access__row dt,
.banner__title {
  color: var(--ys-purple-deep) !important;
  text-shadow: none !important;
}

.systemtitle-desc,
.system-cont-box,
.cost-data-bundle,
.price-1-con,
.recruit-context-con,
.attention__box p,
.profile__table td,
.access__row dd,
.access__note,
.banner__list,
.banner__note {
  color: #303030 !important;
}

.price-1-con {
  color: var(--ys-purple-deep) !important;
  font-weight: 700 !important;
}

.system-cont-box,
.banner--x {
  background: linear-gradient(90deg, rgba(170,146,206,.95), rgba(175,156,206,.92), rgba(170,146,206,.95)) !important;
  border-color: rgba(255,255,255,.62) !important;
  color: #fff !important;
}

.banner__x-title,
.banner__x-sub,
.banner__x-right,
.system-cont-box,
.system-cont-box * {
  color: #fff !important;
}

.profile__block {
  background: linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.36)),
    url("../images/genkimori-panel-bg.jpg") center/cover no-repeat !important;
}

/* ---------- service / campaign / banners / access ---------- */

.service__item,
.banner--notice,
.access__info,
.access__map,
.link__item {
  background: hsla(0,0%,100%,.42) !important;
  border-color: var(--ys-border) !important;
}

.banner--notice {
  background: linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.38)),
    url("../images/banner--notice.png") center/cover no-repeat !important;
}

.banner--notice p,
.banner--notice * {
  color: var(--ys-purple-deep) !important;
  text-shadow: none !important;
}

.access__row a,
.global-footer .des .tel a {
  color: var(--ys-purple-deep) !important;
}

/* ---------- drawer / mobile navigation ---------- */

.sp-drawer__backdrop,
.drawer__backdrop {
  background: rgba(91,82,108,.38) !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
}

.sp-drawer__panel::before {
  background: linear-gradient(180deg, rgba(175,156,206,.86), rgba(252,236,237,.82)),
    url("../images/genkimori-bg-sp.jpeg") top center/cover no-repeat !important;
  opacity: 1 !important;
  filter: none !important;
}

.sp-drawer__panel::after {
  background: rgba(127,90,182,.20) !important;
}

.sp-drawer__close {
  color: #fff !important;
  background: rgba(127,90,182,.28) !important;
  border: 1px solid rgba(255,255,255,.72) !important;
}

.sp-drawer__nav {
  border-top-color: rgba(255,255,255,.58) !important;
}

.sp-drawer__item {
  background: rgba(255,255,255,.22) !important;
  border-bottom-color: rgba(255,255,255,.58) !important;
}

.sp-drawer__text,
.sp-drawer__arrow,
.drawer__title,
.drawer__nav .en,
.cta__label,
.cta__value {
  color: #fff !important;
  text-shadow: 1px 1px 5px rgba(0,0,0,.30) !important;
}

.sp-drawer__meta,
.drawer__nav .ja,
.drawer__note {
  color: rgba(255,255,255,.88) !important;
}

.sp-drawer__brand,
.drawer__panel {
  background: rgba(175,156,206,.72) !important;
}

.drawer__head,
.drawer__cta,
.drawer__nav a,
.cta {
  border-color: rgba(255,255,255,.48) !important;
}

.mbnav {
  background: linear-gradient(90deg, var(--ys-purple-2), var(--ys-purple), var(--ys-purple-2)) !important;
  border-top: 1px solid rgba(255,255,255,.78) !important;
  box-shadow: 0 -2px 10px rgba(127,90,182,.20) !important;
}

.mbnav__icon svg {
  fill: #fff !important;
}

.mbnav__label {
  color: #fff !important;
  text-shadow: 1px 1px 5px rgba(0,0,0,.25) !important;
}

/* ---------- schedule, promo and footer ---------- */

.schedule-cta__bg {
  background: linear-gradient(180deg, rgba(252,236,237,.20), rgba(175,156,206,.30)),
    url("../images/schedule-cta__bg.png") center/cover no-repeat !important;
  filter: saturate(.85) hue-rotate(26deg) brightness(1.06) !important;
}

.promo__bg {
  background: linear-gradient(90deg, rgba(252,236,237,.34), rgba(175,156,206,.25)),
    url("../images/genkimori-panel-bg.jpg") center/cover no-repeat !important;
  filter: none !important;
}

.promo__bg::after {
  background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(175,156,206,.22)) !important;
}

.footer,
.global-footer,
.footer__bg {
  background: #ad9dd0 !important;
  color: #fff !important;
  border-top: 0 !important;
  box-shadow: none !important;
}

.footer__bg {
  opacity: 1 !important;
}

.global-footer::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.56), transparent) !important;
}

.footer__brand-top,
.footer__meta,
.footer__copy,
.footer__meta a,
.global-footer .des .tit,
.global-footer .des .txt,
.global-footer .des .tel,
.global-footer .des .tel a {
  color: #fff !important;
  text-shadow: none !important;
}

.footer__brand-main {
  color: #fff !important;
}

.pageTop__link img {
  filter: hue-rotate(28deg) saturate(.85) brightness(1.12) drop-shadow(0 0 5px rgba(175,156,206,.72)) !important;
}

.bubble {
  opacity: .45 !important;
  filter: hue-rotate(224deg)
    saturate(.72)
    brightness(1.18)
    drop-shadow(0 0 10px rgba(175,156,206,.50)) !important;
}

::selection {
  background: rgba(175,156,206,.38) !important;
  color: #303030 !important;
}

@media (max-width: 768px) {
  .rc-card,
  .news__box,
  .cast__item,
  .system-cost-box,
  .attention__box,
  .profile__card,
  .recruit-item,
  .hero-info-box {
    background-color: rgba(255,255,255,.50) !important;
  }
  .hero-info-box > div:not(:last-child) {
    border-bottom: 1px solid var(--ys-border-soft) !important;
  }
}
