@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Sans+JP:wght@400;500;700&family=Raleway:wght@500;600;700&display=swap");

:root{
  --bg:#fffafc;
  --bg-soft:#fffdfd;
  --surface:#ffffff;
  --surface-strong:#fff7fb;
  --panel:#ffffff;
  --panel-soft:rgba(255,255,255,.94);
  --text:#242424;
  --text-soft:#595959;
  --heading:#2d2230;
  --accent:#d8419a;
  --accent-strong:#bc2d84;
  --accent-soft:#f5b7da;
  --accent-soft-2:#fde6f3;
  --gold:#c59b4f;
  --gold-soft:#ead7a7;
  --line:#eadce6;
  --line-strong:#dcc2d1;
  --shadow:0 12px 30px rgba(118, 54, 86, .08);
  --shadow-sm:0 6px 18px rgba(118, 54, 86, .06);
  --radius:18px;
  --radius-sm:12px;
  --max:1170px;
  --header-gap:24px;
  --transition:.24s ease;
  --btn-dark:#4f4f58;
  --btn-dark-2:#2d2d33;
  --btn-call-1:#f6d46c;
  --btn-call-2:#d9a72d;
  --btn-reserve-1:#4a80ff;
  --btn-reserve-2:#d83f84;
  --footer:#69326a;
  --footer-text:#fff4fb;
  --danger-bg:#dc3545;
  --danger-bg-hover:#bb2d3b;
  --danger-bg-active:#a52834;
  --danger-border:#dc3545;
  --danger-border-hover:#b02a37;
  --danger-shadow-focus:0 0 0 0.25rem rgba(220,53,69,.25);
  --font-body:"Noto Sans JP","Hiragino Kaku Gothic Pro","Meiryo",sans-serif;
  --font-en:"Raleway","Noto Sans JP",sans-serif;
  --font-deco:"Marcellus","Yu Mincho","Hiragino Mincho ProN",serif;
}

html{
  margin-top:0 !important;
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
  scroll-behavior:smooth;
}

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

body{
  margin:0;
  min-width:320px;
  font-family:var(--font-body);
  color:var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.94)),
    url("../img/bg.png") repeat top center;
  font-size:16px;
  line-height:1.75;
  letter-spacing:.01em;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  transition:opacity .6s ease;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  background:#fff;
  opacity:0;
  pointer-events:none;
  transition:opacity .6s ease;
  z-index:9999;
}

body.fadeout::after{
  opacity:1;
}

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

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

button,
input,
textarea,
select{
  font:inherit;
  color:inherit;
}

button{
  cursor:pointer;
}

ul,ol{
  margin:0;
  padding:0;
  list-style:none;
}

p,h1,h2,h3,h4,h5,h6,dl,dd,dt,figure{
  margin:0;
}

.clear{
  clear:both;
}

.owl-nav.disabled{
  display:none;
}

.line-green{
  color:#00B900;
}

.fontStyle{
  font-family:var(--font-deco);
}

.site-shell{
  position:relative;
  overflow:hidden;
}

#top_line{
  height:0px;
  width:100%;
  background:linear-gradient(90deg, #f7d3ea 0%, #efbddf 33%, #d6a66b 66%, #f7d3ea 100%);
  background-size:200% 200%;
  animation:topLineShift 10s ease infinite;
}

@keyframes topLineShift{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

.site-header{
  padding:28px 16px 18px;
}

.site-header__inner,
.site-main,
.site-footer__inner{
  width:min(100%, var(--max));
  margin-inline:auto;
}

.site-header__inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:var(--header-gap);
}

.site-logo{
  width:min(300px, 52vw);
  flex:0 0 auto;
}

.site-logo a{
  display:block;
}

.site-header__meta{
  margin-left:auto;
  max-width:640px;
  text-align:right;
}

.site-kicker{
  margin-bottom:6px;
  font-size:14px;
  line-height:1.5;
  color:var(--accent-strong);
  font-weight:600;
}

.site-kicker a{
  color:inherit;
}

.site-contact{
  display:inline-flex;
  align-items:flex-start;
  justify-content:flex-end;
  gap:12px;
}

.site-contact__icon{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color:#fff;
  box-shadow:var(--shadow-sm);
  flex:0 0 auto;
}

.site-contact__body{
  text-align:left;
}

.site-contact__phone{
  font-family:var(--font-en);
  font-size:clamp(18px, 3vw, 32px);
  font-weight:500;
  line-height:1.05;
  letter-spacing:.02em;
  color:var(--accent-strong);
}

.site-contact__phone a{
  color:inherit;
}

.site-contact__time{
  display:block;
  margin-top:4px;
  font-size:14px;
  line-height:1.45;
  color:var(--text-soft);
  font-weight:500;
}

.site-access-chip{
  display:inline-block;
  margin-top:10px;
  padding:8px 16px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(216,65,154,.12), rgba(197,155,79,.18));
  color:var(--heading);
  font-size:14px;
  line-height:1.4;
  font-weight:600;
}

.global-nav{
  padding:0 16px;
}

.global-nav__inner{
  width:min(100%, var(--max));
  margin-inline:auto;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(255,255,255,.65);
  backdrop-filter:blur(8px);
}

.global-nav__list{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
}

.global-nav__item{
  border-left:1px solid rgba(188,45,132,.08);
}

.global-nav__item:first-child{
  border-left:0;
}

.global-nav__link{
  min-height:72px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:10px 8px;
  color:var(--accent-strong);
  transition:background-color var(--transition), color var(--transition), transform var(--transition);
}

.global-nav__link:hover,
.global-nav__link:focus-visible,
.global-nav__link.is-active{
  background:linear-gradient(180deg, rgba(253,243,249,.92), rgba(255,255,255,.96));
  color:var(--heading);
}

.global-nav__en{
  font-family:var(--font-en);
  font-size:16px;
  font-weight:700;
  letter-spacing:.05em;
}

.global-nav__jp{
  font-size:12px;
  color:#745f6d;
  font-weight:500;
}

.site-main{
  padding:40px 16px 80px;
}

.section{
  margin-top:40px;
}

.hero-slider{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero-slider a{
  display:block;
}

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


.section:first-child{
  margin-top:0;
}

.section-heading{
  margin-bottom:18px;
  text-align:center;
}

.subTitle{
  color:var(--accent-strong);
  font-family:var(--font-deco);
  font-size:clamp(28px, 3vw, 36px);
  line-height:1.2;
  font-weight:600;
  letter-spacing:.04em;
}

.section-heading .fs14{
  position:relative;
  display:inline-block;
  margin-top:10px;
  padding-inline:58px;
  font-size:14px;
  line-height:1.4;
  color:#d47ab3;
  font-weight:600;
  letter-spacing:.08em;
}

.section-heading .fs14::before,
.section-heading .fs14::after{
  content:"";
  position:absolute;
  top:50%;
  width:42px;
  border-bottom:1px solid #efbfdc;
}

.section-heading .fs14::before{
  left:0;
}

.section-heading .fs14::after{
  right:0;
}

.panel,
#seo_come,
#access,
#menu,
.footer-nav,
.profile-panel,
.news-panel{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

#seo_come,
#access,
#menu{
  padding:24px;
}

.news-list{
  display:grid;
  gap:18px;
}

.news-item{
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}

.news-item:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.STYLE1,
.news-date{
  display:block;
  margin-bottom:8px;
  color:var(--accent-strong);
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
}

.newsTit{
  margin-bottom:10px;
  color:var(--heading);
  font-size:18px;
  line-height:1.65;
  font-weight:700;
}

.news-photos{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:12px;
}

.news_photo{
  margin:0;
  flex:0 0 auto;
}

.news_photo img{
  width:130px;
  height:auto;
  border-radius:12px;
  box-shadow:var(--shadow-sm);
}

.news-body,
.open dd,
.open p{
  color:var(--text);
  line-height:1.85;
  word-break:break-word;
}

.open .new_mark{
  display:inline-block;
  margin-left:6px;
  color:#d33333 !important;
  font-size:12px !important;
  font-weight:700;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  width:100%;
  padding:.8rem 1rem;
  border:1px solid transparent;
  border-radius:12px;
  font:700 14px/1 var(--font-body);
  letter-spacing:.03em;
  color:#fff;
  background-color:var(--danger-bg);
  box-shadow:0 8px 18px rgba(220,53,69,.14);
  transition:background-color .2s ease,border-color .2s ease,transform .05s ease,box-shadow .2s ease;
}

.btn:hover{
  background-color:var(--danger-bg-hover);
  border-color:var(--danger-border-hover);
}

.btn:active{
  background-color:var(--danger-bg-active);
  transform:translateY(1px);
}

.btn:focus-visible{
  outline:none;
  box-shadow:var(--danger-shadow-focus);
}

.btn[aria-disabled="true"],
.btn:disabled,
.btn.disabled{
  opacity:.6;
  pointer-events:none;
}

.therapist-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.therapist-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  background:var(--surface);
  border:1px solid rgba(203, 175, 193, .35);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}

.therapist-card__media,
.therapist_image{
  position:relative;
  display:block;
  background:#f6f0f4;
  aspect-ratio:3 / 4.1;
  overflow:hidden;
}

.therapist-card__media img,
.therapist_image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.therapist-card:hover .therapist-card__media img,
.therapist-card:hover .therapist_image img{
  transform:scale(1.03);
}

.therapist_name_tag{
	/* position: absolute; 
    left: 12px;
    right: 12px;
    bottom: 12px;*/
    padding: 10px 12px;
    border-radius: 5px;
    /* background: rgba(255, 255, 255, .93); */
    backdrop-filter: blur(6px);
    text-align: center;
    box-shadow: 0 5px 3px rgba(0, 0, 0, .05);
}

.therapist_name{
  color:var(--heading);
  font-size:20px;
  font-weight:700;
  letter-spacing:.03em;
  line-height:1.35;
}

.therapist_name small,
.therapist_time{
  display:block;
  margin-top:2px;
  color:var(--text-soft);
  font-size:13px;
  font-weight:500;
}

.therapist_info{
  padding:14px 14px 0;
  color:var(--text);
  font-size:14px;
  line-height:1.8;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:4;
  overflow:hidden;
  min-height:112px;
}

.therapist-card__actions{
  display:grid;
  gap:8px;
  margin-top:auto;
  padding:14px;
}

.cta-btn,
.more_info,
.tel_order,
.web_order,
.detail_tel,
.detail_web,
.more,
.menu_min{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  border:0;
  border-radius:12px;
  font-weight:700;
  letter-spacing:.03em;
  transition:transform var(--transition), filter var(--transition), box-shadow var(--transition);
  box-shadow:0 8px 18px rgba(84, 37, 57, .10);
}

.cta-btn:hover,
.more_info:hover,
.tel_order:hover,
.web_order:hover,
.detail_tel:hover,
.detail_web:hover,
.more:hover,
.menu_min:hover{
  filter:brightness(1.02);
  transform:translateY(-1px);
}

.more_info{
  background:linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  color:#fff;
}

.tel_order,
.detail_tel{
  background:linear-gradient(135deg, var(--btn-reserve-1) 0%, var(--btn-reserve-2) 100%);
  color:#fff;
}

.web_order,
.detail_web{
  background:linear-gradient(135deg, var(--btn-dark) 0%, var(--btn-dark-2) 100%);
  color:#fff;
}

.type1{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:42px;
  margin-top:10px;
  padding:8px 14px;
  border-radius:12px;
  background:linear-gradient(135deg, #ffc958 0%, #ff995d 100%);
  color:#fff;
  font-weight:700;
  letter-spacing:.03em;
  box-shadow:0 8px 18px rgba(255, 164, 86, .18);
}

.section-cta,
#more{
  margin-top:22px;
  text-align:center;
}

.more{
  min-width:240px;
  padding:12px 18px;
  background:linear-gradient(135deg, #ffe375 0%, #efbf3f 100%);
  color:#3f2e12;
}

.pickup-slider{
  margin:0;
}

.pickup-slider li{
  padding:0 4px;
}

.profile-panel{
  padding:24px;
}

#cast_profile{
  display:grid;
  grid-template-columns:minmax(320px, 44%) minmax(0, 1fr);
  gap:24px;
  width:100%;
  margin:0;
  padding:0;
  overflow:visible;
}

#profile-left,
#profile_right{
  width:100%;
  overflow:visible;
}

#profile-left .bx-wrapper,
#profile-left .bx-viewport{
  box-shadow:none !important;
  border:0 !important;
  left:0 !important;
  background:transparent !important;
}

.profile-slider img{
  width:100%;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
}

.prof_big{
  display:block;
  margin-bottom:12px;
  color:var(--heading);
  font-family:var(--font-en);
  font-size:clamp(28px, 3vw, 34px);
  line-height:1.25;
  font-weight:700;
  letter-spacing:.04em;
}

.thum-size2{
  display:block;
  margin-bottom:12px;
  color:var(--text-soft);
  font-size:16px;
  font-weight:600;
}

.profile_title{
  margin:24px 0 12px;
  color:var(--accent-strong);
  font-family:var(--font-en);
  font-size:22px;
  font-weight:700;
  letter-spacing:.05em;
}

.profile_title .fs12{
  margin-left:8px;
  color:var(--text-soft);
  font-size:12px;
  font-weight:500;
  letter-spacing:.08em;
}

#profile_area02{
  color:var(--text);
  line-height:1.95;
}

.profile-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:24px;
}

#menu{
  display:grid;
  gap:26px;
}

#menu_title{
  color:var(--heading);
  font-family:var(--font-en);
  font-size:clamp(24px, 3vw, 30px);
  font-weight:700;
  letter-spacing:.04em;
}

.menu_intro{
  color:var(--text);
  line-height:1.9;
}

.menu_price_row{
  display:grid;
  grid-template-columns:minmax(120px, 180px) minmax(0, 1fr);
  gap:20px;
  align-items:center;
  padding:14px 0;
  border-bottom:1px dashed var(--line-strong);
}

.menu_price_row:last-child{
  border-bottom:0;
}

.menu_min{
  padding:10px 14px;
  background:linear-gradient(135deg, rgba(216,65,154,.92), rgba(188,45,132,.92));
  color:#fff;
  text-align:center;
}

.menu_min small{
  margin-left:2px;
  font-size:.9em;
  font-weight:600;
}

.menu_price{
  text-align:right;
  color:var(--heading);
  font-weight:600;
}

.menu_price strong{
  font-family:var(--font-en);
  font-size:clamp(30px, 4vw, 38px);
  font-weight:700;
  letter-spacing:.02em;
}

.menu_price span{
  margin-left:6px;
  font-size:16px;
}

.menu-note{
  margin-top:18px;
  color:var(--text);
  line-height:1.9;
}

.note-box{
  margin-top:20px;
  padding:18px;
  border-radius:16px;
  background:rgba(253, 246, 250, .92);
  border:1px solid var(--line);
}

.note-box dt{
  margin-bottom:10px;
  color:var(--heading);
  font-weight:700;
}

.note-list{
  display:grid;
  gap:8px;
  margin-top:12px;
}

.note-list li{
  position:relative;
  padding-left:1.2em;
  color:var(--text);
  line-height:1.85;
}

.note-list li::before{
  content:"※";
  position:absolute;
  left:0;
  color:var(--accent-strong);
}

#access{
  display:grid;
  gap:18px;
}

.access_space{
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}

.access_space:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.access_title{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  padding:12px 16px;
  border-radius:14px;
  color:#fff;
  font-family:var(--font-body);
  font-size:18px;
  line-height:1.4;
  font-weight:700;
  background:linear-gradient(135deg, #7dc8f8 0%, #5fa7dd 100%);
}

.access_title::before{
  content:"";
  width:16px;
  height:16px;
  border-radius:999px;
  background:#fff;
  flex:0 0 auto;
}

.access_text{
  color:var(--text);
  font-size:16px;
  line-height:1.9;
}

.access_text p + p{
  margin-top:8px;
}

.access_text ul{
  margin-top:12px;
  display:grid;
  gap:8px;
}

.access_text li{
  position:relative;
  padding-left:1.2em;
}

.access_text li::before{
  content:"・";
  position:absolute;
  left:0;
  color:var(--accent-strong);
}

.access_attention{
  padding:18px;
  border-radius:16px;
  background:rgba(253, 246, 250, .92);
  border:1px solid var(--line);
  color:var(--text);
  line-height:1.9;
}

.access_attention span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
  padding:8px 16px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(216,65,154,.14), rgba(197,155,79,.18));
  color:var(--heading);
  font-weight:700;
}

.link-grid{
  display:grid;
  gap:16px;
}

.link-card{
  padding:16px;
  border-radius:16px;
  background:var(--surface);
  border:1px solid rgba(203,175,193,.35);
  box-shadow:var(--shadow-sm);
}

.link-card a{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  line-height:1.8;
}

.site-footer{
  margin-top:40px;
  background:linear-gradient(135deg, rgba(105,50,106,.96), rgba(95,38,96,.98));
  color:var(--footer-text);
}

.site-footer__inner{
  padding:34px 16px 22px;
  text-align:center;
}

.footer-logo{
  width:min(320px, 72vw);
  margin:0 auto 22px;
}

.footer-nav__list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.footer-nav__item{
  min-width:148px;
}

.footer-nav__link{
  min-height:56px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  color:var(--footer-text);
  transition:background-color var(--transition), transform var(--transition);
}

.footer-nav__link:hover,
.footer-nav__link:focus-visible{
  background:rgba(255,255,255,.16);
  transform:translateY(-1px);
}

.footer-nav__en{
  font-family:var(--font-en);
  font-size:15px;
  font-weight:700;
  letter-spacing:.04em;
}

.footer-nav__jp{
  font-size:12px;
  opacity:.92;
}

#copyright{
  padding:16px 16px 92px;
  background:var(--footer);
  color:rgba(255,244,251,.94);
  text-align:center;
  font-size:12px;
  line-height:1.9;
  letter-spacing:.02em;
}

.mobile-bottom-nav{
  display:none;
}

.mobile-bottom-nav__inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-around;
  gap:10px;
  padding:0 12px max(10px, env(safe-area-inset-bottom));
}

.mobile-bottom-nav__item{
  flex:1 1 0;
  text-align:center;
}

.mobile-circle-btn{
  width:84px;
  height:84px;
  margin:0 auto;
  margin-top:-18px;
  border:0;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  box-shadow:0 10px 24px rgba(58, 27, 50, .18);
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.02em;
}

.mobile-circle-btn--menu{
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.mobile-circle-btn--tel{
  background:linear-gradient(135deg, var(--btn-dark) 0%, var(--btn-dark-2) 100%);
}

.mobile-circle-btn--map{
  background:linear-gradient(135deg, #f3f3f6 0%, #dfdfe5 100%);
  color:#36363a;
}

.mobile-circle-btn .fas,
.mobile-circle-btn .fa{
  font-size:28px;
  line-height:1;
}

.mobile-overlay{
  display:none;
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(25, 18, 24, .76);
  backdrop-filter:blur(4px);
}

.mobile-overlay[aria-hidden="false"]{
  display:block;
}

.mobile-overlay__dialog{
  position:relative;
  width:min(92vw, 420px);
  margin:7vh auto 0;
  padding:24px 20px 20px;
  border-radius:22px;
  background:rgba(255,255,255,.97);
  box-shadow:0 24px 48px rgba(20, 14, 19, .28);
}

.mobile-overlay__close{
  position:absolute;
  top:10px;
  right:10px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:rgba(216,65,154,.12);
  color:var(--accent-strong);
  font-size:28px;
  line-height:1;
}

.mobile-overlay__list{
  display:grid;
  gap:10px;
  margin-top:22px;
}

.mobile-overlay__link{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:14px;
  background:var(--surface-strong);
  color:var(--heading);
  font-weight:700;
  line-height:1.4;
  border:1px solid rgba(188,45,132,.10);
}

.mobile-overlay__link small{
  color:var(--text-soft);
  font-size:12px;
  font-weight:500;
}

.empty-state{
  padding:32px 20px;
  border-radius:16px;
  background:var(--surface);
  text-align:center;
  color:var(--text-soft);
  border:1px dashed var(--line-strong);
}

figure{
  padding:0;
  margin:0;
}

.partner_text,
.option-caption{
  color:var(--text);
  line-height:1.8;
}

#pankuzu_list ol li{
  display:inline;
}

#pankuzu_list ol li::before{
  content:" > ";
}

#pankuzu_list ol li:first-child::before{
  content:"";
}

section#pankuzu{
  margin-bottom:20px;
  color:#af9874;
  font-size:14px;
  width:100%;
  padding:10px;
  background:#fff;
  text-align:center;
}

section#pankuzu a{
  color:#af9874;
  text-decoration:none;
}

@media (max-width: 1100px){
  .therapist-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  #cast_profile{
    grid-template-columns:1fr;
  }
}

@media (max-width: 900px){
  .site-header__inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .site-header__meta{
    margin-left:0;
    text-align:center;
  }

  .site-contact{
    justify-content:center;
  }

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

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

  .menu_price_row{
    grid-template-columns:1fr;
    gap:10px;
  }

  .menu_price{
    text-align:left;
  }
}

@media (max-width: 768px){
  body{
    font-size:15px;
    line-height:1.8;
  }

  .site-main{
    padding-top:28px;
    padding-bottom:60px;
  }

  .site-logo{
    width:min(340px, 76vw);
  }

  .site-kicker{
    font-size:15px;
  }

  .site-contact__phone{
    font-size:clamp(28px, 7vw, 40px);
  }

  .site-access-chip{
	display:block;
    font-size:13px;
  }

  .global-nav{
    padding-inline:12px;
  }

  .global-nav__inner{
    border-radius:20px;
  }

  .global-nav__link{
    min-height:64px;
    padding:10px 6px;
  }

  .global-nav__en{
    font-size:14px;
  }

  .global-nav__jp{
    font-size:11px;
  }

  #seo_come,
  #access,
  #menu,
  .profile-panel{
    padding:18px;
  }

  .therapist_info{
    min-height:96px;
  }

  .link-card a{
    align-items:flex-start;
  }

  .footer-nav__item{
    min-width:calc(50% - 8px);
  }
}

@media (max-width: 480px){
  body{
    font-size:14px;
  }

  .site-header{
    padding:20px 12px 14px;
  }

  .site-logo{
    width:min(250px, 68vw);
  }

  .site-kicker{
    font-size:12px;
  }

  .site-contact{
    gap:10px;
  }

  .site-contact__icon{
    width:38px;
    height:38px;
  }

  .site-contact__phone{
    font-size:24px;
  }

  .site-contact__time{
    font-size:11px;
  }

  .site-access-chip{
	  display:block;
    margin-top:8px;
    padding:7px 12px;
    font-size:12px;
  }

  .global-nav{
    padding-inline:12px;
  }

  .global-nav__inner{
    border-radius:18px;
  }

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

  .global-nav__link{
    min-height:60px;
  }

  .global-nav__en{
    font-size:12px;
    letter-spacing:.03em;
  }

  .global-nav__jp{
    font-size:10px;
  }

  .subTitle{
    font-size:26px;
  }

  .section-heading .fs14{
    padding-inline:44px;
    font-size:13px;
  }

  .section-heading .fs14::before,
  .section-heading .fs14::after{
    width:32px;
  }

  .newsTit{
    font-size:16px;
  }

  .news-photos{
    gap:8px;
  }

  .news_photo img{
    width:110px;
  }

  .therapist-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .therapist_name{
    font-size:16px;
  }

  .therapist_info{
    padding:12px 12px 0;
    font-size:12px;
    min-height:88px;
    -webkit-line-clamp:5;
  }

  .therapist-card__actions{
    padding:12px;
    gap:6px;
  }

  .more_info,
  .tel_order,
  .web_order,
  .detail_tel,
  .detail_web,
  .more,
  .menu_min{
    min-height:42px;
    font-size:13px;
  }

  .profile-panel{
    padding:16px;
  }

  .prof_big{
    font-size:24px;
  }

  .profile_title{
    font-size:20px;
  }

  .profile-actions{
    grid-template-columns:1fr;
  }

  .access_title{
    font-size:16px;
    padding:10px 12px;
  }

  .access_text{
    font-size:14px;
  }

  .footer-logo{
    width:min(300px, 78vw);
  }

  .footer-nav__item{
    min-width:calc(50% - 6px);
  }

  .footer-nav__link{
    min-height:52px;
    padding:8px 10px;
  }

  .footer-nav__en{
    font-size:13px;
  }

  .footer-nav__jp{
    font-size:10px;
  }

  .mobile-bottom-nav{
    display:block;
    position:fixed;
    inset:auto 0 0 0;
    z-index:1500;
  }

  #copyright{
    padding-bottom:96px;
  }
}

@media (max-width: 360px){
  .therapist-grid{
    grid-template-columns:1fr;
  }

  .global-nav__link{
    min-height:56px;
  }

  .global-nav__en{
    font-size:11px;
  }

  .global-nav__jp{
    font-size:10px;
  }

  .mobile-circle-btn{
    width:76px;
    height:76px;
    font-size:12px;
  }

  .mobile-circle-btn .fas,
  .mobile-circle-btn .fa{
    font-size:24px;
  }
}
