@charset "utf-8";
/* Yurikago reference: midnight-blue navigation, airy ice-blue content,
   blue Mincho/serif headings and champagne-gold booking controls.
   Native CSS for the existing PHP templates; all original image URLs remain.
   DESIGN_VARIANCE: 5 / MOTION_INTENSITY: 4 / VISUAL_DENSITY: 3.
   Reference-led light content with navy chrome on PC and mobile; OS-independent.
   Layers: header 20, booking 30, drawer 40, menu 50, loader 60.
   Shapes: square photographs/panels/booking buttons; circles for pagination
   and the decorative moon; the contact pill is reserved for telephone links. */
:root {
  color-scheme: light;
  --font-base: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", Georgia, serif;
  --font-display: "Bodoni MT", Garamond, "Times New Roman", "Yu Mincho", "YuMincho", serif;
  --font-ui: "Yu Gothic", "Meiryo", sans-serif;
  --ink: #284e89;
  --text: #414955;
  --muted: #5b6b80;
  --accent: #c5b46e;
  --accent-deep: #284e89;
  --accent-soft: #d8cc9c;
  --paper: #f4f9fc;
  --panel: #fcfdff;
  --pale: #eaf1f8;
  --line: #d5e0ec;
  --surface: rgba(252, 253, 255, .82);
  --navy: #080e28;
  --navy-mid: #0f1b4d;
  --on-navy: #f1f3fb;
  --gold: #dfd29a;
  --navy-line: rgba(213, 224, 246, .23);
  --navy-fill: radial-gradient(ellipse at 50% 0%, var(--navy-mid), var(--navy));
  --shadow: 0 10px 32px rgba(40, 78, 137, .07);
  --button-fill: linear-gradient(105deg, #bcac68, #ded196 52%, #c4b36b);
  --button-text: #343324;
  --header-height: 64px;
  --content-width: 1060px;
  --radius: 0;
  --ease: .28s ease;
}

/* Base */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../font/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/fa-regular-400.woff2") format("woff2");
}

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

html {
  margin: 0;
  padding: 0;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font: 15px/1.95 var(--font-base);
  letter-spacing: .04em;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 12% 30%, rgba(221, 242, 253, .72), transparent 56%),
    linear-gradient(145deg, rgba(250, 252, 255, .97), rgba(240, 245, 253, .97)),
    url(../images/bg.jpg) center / cover;
}

body.open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, th {
  font-weight: 400;
  color: var(--ink);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}

iframe {
  display: block;
  max-width: 100%;
  border: 0;
}

a {
  color: var(--accent-deep);
  text-decoration: none;
  transition: color var(--ease), background-color var(--ease), opacity var(--ease);
}

a:hover {
  color: var(--ink);
}

a:active, button:active {
  opacity: .78;
}

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 5px;
}

header a:focus-visible, .btn_trigger:focus-visible, #nav_drawer a:focus-visible,
.hero_cta a:focus-visible, .middle_info a:focus-visible,
.footer_nav a:focus-visible, .m-cta a:focus-visible {
  outline-color: var(--gold);
}

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

button, input[type="submit"], input[type="button"] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
}

th, td {
  padding: 0;
}

small {
  font-size: 12px;
}

::selection {
  background: var(--accent);
  color: var(--button-text);
}

.inner {
  width: 100%;
  max-width: var(--content-width);
  padding: 0 25px;
  margin: 0 auto;
}

main {
  width: 100%;
}

section {
  position: relative;
  margin: 0 auto;
  padding: 68px 0;
  text-align: center;
}

section section {
  padding: 0;
}

.clearfix::after, .flort_plus::after {
  content: "";
  display: block;
  clear: both;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20, .mb_20_pc {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mt_20 {
  margin-top: 20px;
}

.STYLE1 {
  font-size: 16px;
}

.STYLE3 {
  color: var(--ink);
  font-weight: 600;
}

.STYLE4 {
  font-size: 12px;
}

.visiblePC {
  display: block;
}

.visibleSP {
  display: none;
}

/* Header and drawer */
header, header#other {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-height);
  z-index: 20;
  background: var(--navy-fill);
  border-bottom: 1px solid var(--navy-line);
}

header .inner {
  max-width: none;
  height: 100%;
  padding: 0 94px 0 26px;
}

header .area {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

header .logo {
  display: flex;
  align-items: center;
  flex: 0 0 170px;
}

header .logo a {
  display: block;
}

header .logo img {
  display: block;
  width: 170px;
  max-height: 54px;
  object-fit: contain;
}

.header_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 32px);
}

.header_nav li {
  text-align: center;
  line-height: 1.3;
}

.header_nav a {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  padding: 10px 0;
  color: var(--on-navy);
  font-size: 11px;
  letter-spacing: .08em;
  white-space: nowrap;
}

.header_nav br {
  display: none;
}

.header_nav a span {
  display: block;
  padding-bottom: 5px;
  font: italic 16px/1.3 var(--font-display);
  color: var(--on-navy);
  letter-spacing: .015em;
}

.header_nav a::after {
  content: "";
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--ease);
}

.header_nav a:hover::after, .header_nav a.current::after, .header_nav a.active::after {
  transform: scaleX(1);
}

.btn_menu, .btn_menu.sticky {
  position: fixed;
  top: 0;
  right: 12px;
  z-index: 50;
  width: 64px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn_trigger {
  padding: 0;
  border: 0;
  background: transparent;
  display: block;
  position: relative;
  width: 44px;
  height: 48px;
}

.btn_trigger span:not(.menu_label) {
  position: absolute;
  left: 7px;
  width: 30px;
  height: 1px;
  background: var(--gold);
  transition: transform var(--ease), opacity var(--ease);
}

.btn_trigger span:nth-of-type(1) {
  top: 7px;
}

.btn_trigger span:nth-of-type(2) {
  top: 15px;
}

.btn_trigger span:nth-of-type(3) {
  top: 23px;
}

.btn_trigger .menu_label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font: 9px/1 var(--font-display);
  letter-spacing: .1em;
}

#btn_top.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
}

#btn_top.active span:nth-of-type(2) {
  opacity: 0;
}

#btn_top.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#nav_bg {
  position: fixed;
  inset: 0;
  z-index: 40;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--navy-fill);
  color: var(--on-navy);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease), visibility var(--ease);
}

.open #nav_bg {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#nav_drawer {
  width: min(580px, 100%);
  padding: 30px 36px 45px;
  margin: var(--header-height) auto 0;
}

#nav_drawer li {
  text-align: left;
}

#nav_drawer li a {
  display: block;
  padding: 19px 12px;
  border-bottom: 1px solid var(--navy-line);
  color: var(--on-navy);
  font-size: 17px;
}

#nav_drawer li a:hover, #nav_drawer li a.current {
  color: var(--gold);
  background: rgba(40, 78, 137, .3);
}

#nav_drawer li span {
  margin-left: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--gold);
}

#nav_drawer .info a, #nav_drawer .info_open {
  padding: 17px 12px;
  font-size: 14px;
}

#nav_drawer .info span, #nav_drawer .info_open span {
  margin: 0 8px 0 0;
}

#nav_drawer .info_open img {
  display: block;
  width: 160px;
  margin: 18px auto 0;
}

/* Original photography, with a blue atmospheric treatment and unaltered logos. */
#mainvisual {
  position: relative;
  width: 100%;
  margin: var(--header-height) auto 0;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--accent-soft);
  background: var(--paper);
}

#mainvisual ul {
  margin: 0;
  padding: 0;
}

#mainvisual li.no_1, #mainvisual li.hero-slide {
  position: relative;
  height: clamp(490px, 47vw, 700px);
  background: #436d94 url(../images/mainvisual1.jpg) center 48% / cover no-repeat;
}

#mainvisual .hero-slide::before, #mainvisual .no_1::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(160, 207, 238, .16), rgba(15, 27, 77, .28) 68%, rgba(15, 27, 77, .18));
}

#mainvisual .hero-slide::after, #mainvisual .no_1::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(8, 14, 40, .35), transparent 32%);
}

#mainvisual .main_text {
  position: absolute;
  top: 43%;
  left: 66%;
  width: min(47%, 600px);
  filter: drop-shadow(0 2px 10px rgba(8, 14, 40, .35));
  transform: translate(-50%, -50%);
  z-index: 2;
}

.mainvisual_txt {
  display: none;
}

.hero_cta {
  position: absolute;
  top: 75%;
  left: 66%;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 12px;
  width: min(450px, 40%);
  transform: translateX(-50%);
}

.hero_cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 14px;
  letter-spacing: .08em;
  line-height: 1.4;
  white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.hero_cta__primary {
  background: var(--button-fill);
  color: var(--button-text);
}

.hero_cta__secondary {
  background: rgba(15, 27, 77, .74);
  color: var(--on-navy);
}

.hero_cta__primary:hover {
  color: var(--button-text);
}

.hero_cta a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

 

/* Information strip and headings */
.middle_info {
  padding: 0 24px;
  background: var(--navy-fill);
  color: var(--gold);
  border-bottom: 1px solid var(--navy-line);
}

.middle_info_area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1130px;
  margin: 0 auto;
  padding: 28px 10px;
  color: var(--gold);
  text-align: center;
}

.middle_info_area p {
  font-size: 12px;
  line-height: 1.8;
}

.middle_info_area p + p {
  border-left: 1px solid var(--navy-line);
  padding-left: 24px;
}

.middle_info_area a {
  display: inline-block;
  padding: 7px 25px;
  border-radius: 100px;
  background: linear-gradient(90deg, #183465, #28538b, #183465);
  color: var(--gold);
}

.middle_info_area span {
  display: inline-block;
  padding-left: 7px;
  font-size: 22px;
  letter-spacing: .035em;
}

.middle_info_area .reception {
  display: none;
}

.pankuzu {
  padding: 18px 0 0;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--muted);
}

.pankuzu ol {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pankuzu li + li::before {
  content: "›";
  margin-right: 12px;
  color: var(--accent);
}

.subtitle, .subtitle_02 {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 86px;
  margin: 0 auto 32px;
  padding: 10px 0;
  color: var(--ink);
  text-align: center;
  font-weight: 400;
}

.subtitle::before, .subtitle_02::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 2px;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: -13px 5px 0 0 rgba(157, 200, 227, .4);
  transform: translateX(-30%);
  pointer-events: none;
}

.subtitle .en, .subtitle_02 .en {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  font: italic 400 clamp(29px, 3.1vw, 40px)/1.35 var(--font-display);
  letter-spacing: .02em;
}

.subtitle .ja, .subtitle_02 .ja {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: .08em;
}

#today .en {
  font-style: normal;
}

.template_box + .subtitle_02 {
  margin-top: 62px;
}

.template_box {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 35px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.template_box > img {
  display: block;
  width: 100%;
}

.content_borderbox {
  text-align: left;
  padding: 28px;
  border: 1px solid var(--line);
}

.content_borderbox p + p {
  margin-top: 13px;
}

.template_box > .content_borderbox {
  padding: 0;
  border: 0;
}

.content_colorbox, .content_colorbox_02 {
  padding: 26px;
  background: var(--pale);
  border-radius: var(--radius);
}

.section_system > .template_box:has(> img) {
  max-width: 660px;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: var(--shadow);
}

#section_therapist, #section_topics, .seo {
  border-top: 0;
}

#section_topics {
  background: rgba(252, 253, 255, .76);
}

#section_therapist {
  background: radial-gradient(ellipse at 80% 90%, rgba(222, 226, 248, .6), transparent 65%),
    linear-gradient(130deg, #f4f7fd, #eaf1fb 68%, #edf5fb);
}

/* News stays driven by the existing PHP table. */
#section_topics .topics_inner, #section_topics .info_box {
  max-width: 900px;
  margin: 0 auto;
}

#section_topics table {
  width: 100%;
  table-layout: fixed;
}

#section_topics td {
  width: auto;
  padding: 0;
}

#section_topics td:first-child, #section_topics td:last-child {
  width: 0;
  font-size: 0;
}

#section_topics article {
  padding: 28px 32px;
  margin-bottom: 20px;
  background: var(--surface);
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
}

#section_topics time {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .12em;
}

#section_topics h3 {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
}

#section_topics .newslist-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
}

#section_topics .newslist-desc p {
  overflow-wrap: anywhere;
}

#section_topics .news_photo {
  margin-top: 18px;
}

#section_topics .news_photo img {
  width: auto;
  max-width: 100%;
  max-height: 580px;
  object-fit: contain;
}

/* The news marker is colored inline by PHP; this is the only color override. */
#section_topics .new_mark {
  color: var(--accent-deep) !important;
  font-family: var(--font-ui);
}

#section_topics .info_box > br {
  display: none;
}

/* Therapists: open photo columns, two columns on phones. */
.cast_box:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 24px;
}

.cast_li {
  position: relative;
  min-width: 0;
  text-align: center;
}

.cast_li .img_box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
}

.cast_li .img_box a, .cast_li .img_box p {
  position: relative;
  display: block;
}

.cast_li .photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .5s ease, opacity var(--ease);
}

.cast_li a:hover .photo {
  transform: scale(1.025);
}

.cast_li .txt_box {
  padding: 17px 5px 12px;
  color: var(--ink);
  font-size: 19px;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--line);
}

.icon_new {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
}

.icon_new img {
  width: 48px;
  height: auto;
}

.cast_box .name, .cast_box .profile_info {
  color: var(--ink);
}

.cast_box .profile_info {
  font-size: 13px;
}

.cast_box .time {
  color: var(--accent-deep);
}

/* Inner page banners keep their inline background-image URLs and share the blue wash. */
.page_top_outer {
  position: relative;
  padding-top: var(--header-height);
}

.page_top {
  position: relative;
  width: 100%;
  height: 260px;
  margin: 0 auto;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--accent-soft);
  background-color: #7497b7;
  background-blend-mode: luminosity;
  overflow: hidden;
}

.page_top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 14, 40, .75), rgba(27, 57, 103, .56), rgba(8, 14, 40, .75));
}

.other_page_title {
  position: absolute;
  top: calc(var(--header-height) + 70px);
  left: 20px;
  right: 20px;
  z-index: 2;
  text-align: center;
  color: var(--on-navy);
}

.other_page_title .t_top {
  font: italic 400 clamp(30px, 4vw, 48px)/1.35 var(--font-display);
  letter-spacing: .12em;
}

.other_page_title .t_bottom {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: .14em;
}

/* Prices, access and profiles share pale blue surfaces and blue labels. */
.table_collum_02, .table_collum_03, .table_collum_recruit, .table_02 {
  width: 100%;
  table-layout: fixed;
  color: var(--text);
  background: var(--surface);
}

.table_collum_02 th, .table_collum_02 td, .table_collum_recruit th, .table_collum_recruit td, .table_02 th, .table_02 td {
  padding: 22px 24px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}

.table_collum_02 th, .table_collum_recruit th, .table_02 th {
  width: 26%;
  background: var(--pale);
  color: var(--ink);
}

.table_collum_03 td, .table_collum_03 th {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.table_collum_03 td {
  font: 400 29px/1.6 var(--font-display);
  color: var(--ink);
}

.table_collum_03 span {
  font-size: 16px;
}

.table_collum_03 .sample-tit {
  display: block;
  padding: 10px 0;
  color: var(--ink);
  font-size: 23px;
  letter-spacing: .15em;
}

.table_collum_03 .txt {
  font-size: 19px;
}

.table_collum_03 tr:only-child td:only-child {
  background: var(--pale);
}

.table_collum_03 td:empty {
  padding: 8px;
  border: 0;
  background: transparent;
}

.table_collum_03 .STYLE1 {
  display: block;
  font: 14px/1.9 var(--font-base);
  text-wrap: balance;
}

/* The original static price page includes single-cell spacer tables. */
#system .table_collum_03 td:only-child:not(:has(*)) {
  padding: 8px 0;
  border: 0;
  font-size: 0;
  line-height: 0;
  background: transparent;
}

.section_system > .template_box:not(:has(> img)) {
  max-width: 800px;
  padding: 30px;
}

.section_system .bg_price {
  max-width: 800px;
  padding: 8px;
  margin: 0 auto 45px;
  background: var(--panel);
}

.section_system .b_box1 {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.section_system .table_system, .section_system .table_option {
  margin: 0 auto 35px;
}

.section_system .table_system table, .section_system .table_option table {
  width: 100%;
  text-align: center;
  font-size: 24px;
}

.section_system .table_system th, .section_system .table_system td, .section_system .table_option th, .section_system .table_option td {
  padding: 22px 10px;
  border-bottom: 1px solid var(--line);
}

.section_system .table_system h2, .section_system .table_option h2 {
  margin: 20px 0;
  font: 32px/1.5 var(--font-display);
}

.section_system .table_system span, .section_system .table_option span {
  font-size: .65em;
}

.section_system .table_system .arrow, .section_system .table_option .arrow {
  width: 15%;
  background: url(../images/bg_photo_bnr02.png) center / 40px no-repeat;
}

.section_system .kome_txt {
  margin-top: 20px;
  font-size: 13px;
  text-align: left;
}

#access .template_box {
  padding: 0;
  border: 0;
  background: transparent;
}

#access iframe {
  width: 100%;
  height: 400px;
  border: 1px solid var(--line);
}

#access .table_collum_02 {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

#access .table_collum_03 {
  background: transparent;
}

.seo {
  padding-top: 50px;
  padding-bottom: 90px;
}

.seo .template_box {
  padding: 0;
  background: transparent;
  border: 0;
  margin-bottom: 0;
}

.seo .content_borderbox {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 40px;
  background: transparent;
  border: 0;
  text-align: center;
}

.seo .subtitle_02 {
  margin-bottom: 25px;
}

.seo p {
  line-height: 2.2;
}

.profile_inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.profile_box_left, .profile_box_right {
  min-width: 0;
}

.profile_box_left .img_box {
  position: relative;
  background: var(--panel);
  padding: 6px;
  border: 1px solid var(--line);
}

.profile_box_left .photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.profile_box_right {
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.profile_box_right .table_collum_02 th, .profile_box_right .table_collum_02 td {
  padding: 19px 16px;
}

.profile_box_right .table_collum_02 th {
  width: 27%;
}

.profile_box_right .name {
  font: 28px/1.5 var(--font-display);
  color: var(--ink);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.thumb-small {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity var(--ease), border-color var(--ease);
}

.thumb-small:hover {
  opacity: .8;
}

.thumb-small.is-active {
  border-color: var(--accent-deep);
}

.profile_box_schedule {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow-x: auto;
}

.can, .good {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-deep);
  color: var(--on-navy);
}

.cant {
  display: inline-block;
  padding: 4px 10px;
  background: var(--panel);
  color: var(--muted);
}

/* Room and recruitment */
.room_gallery, .recruit_merit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin: 0 auto 50px;
}

.room_card {
  min-width: 0;
  text-align: center;
}

.room_card img, .room_photo_placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.room_photo_placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--pale);
}

.room_photo_placeholder span {
  font: 26px/1.6 var(--font-display);
  color: var(--accent-deep);
}

.room_photo_placeholder small {
  color: var(--muted);
}

.room_card h4 {
  margin-top: 15px;
  font-size: 17px;
}

.room_intro_box, .recruit_message {
  text-align: left;
  line-height: 2.1;
}

.recruit_merit_card {
  padding: 26px 22px;
  text-align: left;
  border-top: 1px solid var(--accent-soft);
  background: var(--surface);
}

.recruit_merit_card span {
  display: block;
  margin-bottom: 13px;
  color: var(--ink);
  font: 32px/1 var(--font-display);
}

.recruit_merit_card h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.recruit_merit_card p {
  font-size: 14px;
}

.recruit_entry_box {
  max-width: 720px;
  margin: 35px auto 0;
  padding: 36px;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.recruit_entry_box h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.recruit_entry_box p {
  margin-bottom: 20px;
}

.recruit_entry_btn {
  display: inline-block;
  padding: 12px 38px;
  border-radius: var(--radius);
  background: var(--button-fill);
  color: var(--button-text);
  font-size: 23px;
}

.recruit_entry_btn:hover {
  color: var(--button-text);
  opacity: .88;
}

/* Footer and the existing fixed booking controls */
.global-footer, footer {
  --ink: var(--gold);
  --text: var(--on-navy);
  --muted: #bdc9df;
  --accent-deep: var(--gold);
  --line: var(--navy-line);
  background: var(--navy-fill);
  color: var(--on-navy);
  border-top: 1px solid var(--navy-line);
}

.global-footer {
  padding: 45px 0;
}

.global-footer .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.footerlogo {
  width: 260px;
  flex-shrink: 0;
}

.global-footer .des {
  text-align: left;
}

.global-footer .tit {
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 9px;
}

.global-footer .txt {
  font-size: 13px;
}

.global-footer .tel {
  margin-top: 12px;
  font: 36px/1.5 var(--font-display);
}

footer {
  padding: 42px 0 115px;
  text-align: center;
}

.footer_link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-bottom: 32px;
}

.footer_link a {
  display: block;
  padding: 3px 22px;
  border-right: 1px solid var(--accent-soft);
  color: var(--ink);
  font-size: 13px;
}

.footer_link a:last-child {
  border-right: 0;
}

.footer_link a:hover, .footer_link a.current {
  color: var(--accent-deep);
}

footer .inner > p:has(img) {
  margin: 26px auto;
}

footer .inner > p img {
  width: 155px;
}

footer small {
  display: block;
  line-height: 1.9;
  color: var(--text);
}

footer > table {
  margin: 18px auto 0;
  width: 100%;
}

footer > table table {
  width: min(400px, 100%);
}

.footer_nav {
  position: fixed;
  inset: auto 0 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 10px max(24px, calc((100% - 1000px) / 2));
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: rgba(8, 14, 40, .96);
  border-top: 1px solid var(--navy-line);
}

.footer_nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 18px;
  background: var(--button-fill);
  color: var(--button-text);
  font: 14px/1.5 var(--font-base);
  border: 1px solid var(--accent-soft);
  box-shadow: inset 0 0 0 3px rgba(244, 235, 192, .16);
}

.footer_nav a:hover {
  background: var(--gold);
  color: var(--button-text);
}

.m-cta {
  display: none;
}

/* Plugin hooks for existing initialized carousels. */
.slick-slider {
  position: relative;
  display: block;
  touch-action: pan-y;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin: 0 auto;
}

.slick-track::after, .slick-track::before {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-arrow {
  position: absolute;
  top: 45%;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--accent-deep);
  font-size: 0;
}

.slick-arrow::before {
  font: 900 16px/1 "Font Awesome 5 Free";
}

.slick-prev::before { content: "\f104"; }
.slick-next::before { content: "\f105"; }
.slick-disabled { opacity: .35; cursor: default; }
.slick-slide:focus-visible { outline-offset: -3px; }
.slick_schedule .slick-slide { padding: 0 12px; }
.slick_schedule .slick-list { margin: 0 -12px; }

.slick-prev {
  left: -18px;
}

.slick-next {
  right: -18px;
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}

.slick-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--accent-soft);
  font-size: 0;
}

.slick-dots .slick-active button {
  background: var(--ink);
}

.swiper-pagination-bullet-active {
  background: var(--accent-deep);
}

.swiper-button-prev, .swiper-button-next {
  color: var(--accent-deep);
}

#mainvisual .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 4;
}

.schedule_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.schedule_nav li {
  flex: 1 1 110px;
}

.schedule_nav a {
  display: block;
  padding: 12px 8px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
}

.schedule_nav a.current {
  background: var(--button-fill);
  color: var(--button-text);
}

/* Existing observer classes control reveals. No new JavaScript dependency. */
.loader-wrap {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-fill);
  animation: loaderFallback 0s 3s forwards;
}

.loader-wrap img {
  width: 180px;
}

@keyframes loaderFallback {
  to {
    visibility: hidden;
    pointer-events: none;
  }

}

@media (prefers-reduced-motion: no-preference) {
  .list-mv02, .list-mv03, .list-mv04, .list-mv06, .list-mv07, .list-mv11, .list-mv12, .list-mv13, .list-mv14 {
    transition: opacity .7s ease, transform .7s ease;
  }

  .yurikago-theme :is(.list-mv02, .list-mv03, .list-mv04, .list-mv06, .list-mv07, .list-mv11, .list-mv12, .list-mv13, .list-mv14):not(.mv02, .mv03, .mv04, .mv06, .mv07, .mv11, .mv12, .mv13, .mv14) {
    opacity: 0;
    transform: translateY(15px);
  }

  #mainvisual > ul {
    opacity: 1;
    transform: none;
  }

}

/* Tablet: use the drawer before desktop navigation becomes cramped. */
@media (min-width: 768px) and (max-width: 1280px) {
  .inner {
    padding-left: 35px;
    padding-right: 35px;
  }

  .header_nav {
    gap: 18px;
  }
}

@media (max-width: 1023px) {
  .header_nav {
    display: none;
  }

  header .inner {
    padding-left: 20px;
    padding-right: 80px;
  }

  .cast_box:not(.slick-initialized) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .middle_info_area {
    gap: 16px;
  }

  .middle_info_area p + p {
    padding-left: 16px;
  }

  .middle_info_area span {
    display: block;
    padding-left: 0;
    font-size: 18px;
  }

  .profile_inner {
    gap: 24px;
  }

  .recruit_merit {
    gap: 20px;
  }
}

/* Mobile: the same navy/ice-blue/gold system, portrait hero and fixed booking bar. */
@media (max-width: 767px) {
  :root {
    --header-height: 60px;
  }

  body {
    font-size: 14px;
    line-height: 1.9;
  }

  .inner {
    padding: 0 20px;
  }

  section {
    padding: 50px 0;
  }

  .visiblePC {
    display: none;
  }

  .visibleSP {
    display: block;
  }

  header .inner {
    padding: 0 72px 0 16px;
  }

  header .logo {
    flex-basis: 160px;
  }

  header .logo img {
    width: 160px;
    max-height: 48px;
  }

  .header_nav {
    display: none;
  }

  .btn_menu, .btn_menu.sticky {
    right: 7px;
    width: 52px;
  }

  .btn_trigger span:not(.menu_label) {
    left: 8px;
    width: 27px;
  }

  #nav_drawer {
    padding: 14px 25px 35px;
  }

  #nav_drawer li a {
    padding: 17px 10px;
    font-size: 15px;
  }

  #nav_drawer li span {
    font-size: 11px;
  }

  #nav_drawer .info a, #nav_drawer .info_open {
    padding: 14px 10px;
  }

  #mainvisual li.no_1, #mainvisual li.hero-slide {
    height: clamp(490px, 147vw, 680px);
    background-image: url(../images/mainvisual_s.jpg);
    background-position: center 35%;
  }

  #mainvisual .hero-slide::before, #mainvisual .no_1::before {
    background: linear-gradient(0deg, rgba(8, 14, 40, .44), rgba(65, 120, 167, .12) 80%);
  }

  #mainvisual .main_text {
    top: 50%;
    left: 50%;
    width: 89%;
  }

  .hero_cta {
    top: auto;
    bottom: 48px;
    left: 50%;
    width: calc(100% - 40px);
    gap: 9px;
    grid-template-columns: 1fr 1.15fr;
  }

  .hero_cta a {
    min-height: 45px;
    padding: 11px 8px;
    font-size: 12px;
    letter-spacing: .03em;
  }

  .middle_info {
    padding: 0 20px;
  }

  .middle_info_area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 10px;
    padding: 24px 0;
  }

  .middle_info_area .tel {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .middle_info_area p {
    font-size: 10px;
  }

  .middle_info_area p + p {
    border: 0;
    padding-left: 0;
  }

  .middle_info_area span {
    display: inline-block;
    padding-left: 4px;
    font-size: 13px;
  }

  .middle_info_area .tel span {
    font-size: 22px;
  }

  .pankuzu {
    padding-top: 14px;
    font-size: 10px;
  }

  .subtitle, .subtitle_02 {
    gap: 4px;
    min-height: 76px;
    margin-bottom: 25px;
    padding: 8px 0;
  }

  .subtitle .en, .subtitle_02 .en {
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.4;
    letter-spacing: .01em;
  }

  .subtitle .ja, .subtitle_02 .ja {
    font-size: 12px;
  }

  .template_box {
    padding: 20px 17px;
    margin-bottom: 28px;
  }

  .content_borderbox {
    padding: 20px 16px;
  }

  .template_box + .subtitle_02 {
    margin-top: 44px;
  }

  .section_system > .template_box:has(> img) {
    padding: 0;
  }

  #section_topics article {
    padding: 23px 20px;
  }

  #section_topics h3 {
    font-size: 17px;
  }

  #section_topics .newslist-desc {
    font-size: 13px;
  }

  .cast_box:not(.slick-initialized) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 12px;
  }

  .cast_li .txt_box {
    padding: 12px 2px 10px;
    font-size: 14px;
  }

  .icon_new {
    top: 5px;
    left: 5px;
  }

  .icon_new img {
    width: 36px;
  }

  .page_top {
    height: 205px;
  }

  .other_page_title {
    top: calc(var(--header-height) + 55px);
  }

  .other_page_title .t_top {
    font-size: 33px;
  }

  .other_page_title .t_bottom {
    font-size: 12px;
    margin-top: 9px;
  }

  .section_system > .template_box:not(:has(> img)) {
    padding: 14px;
  }

  .table_collum_03 td, .table_collum_03 th {
    padding: 16px 8px;
  }

  .table_collum_03 td {
    font-size: 26px;
  }

  .table_collum_03 span {
    font-size: 13px;
  }

  .table_collum_03 .txt {
    font-size: 16px;
  }

  .table_collum_03 .sample-tit {
    font-size: 20px;
  }

  .table_collum_02 th, .table_collum_02 td, .table_collum_recruit th, .table_collum_recruit td {
    padding: 16px 13px;
    font-size: 13px;
  }

  #access iframe {
    height: 300px;
    border-width: 1px;
  }

  #access .table_collum_02 th {
    width: 29%;
  }

  .seo {
    padding: 30px 0 55px;
  }

  .seo .content_borderbox {
    padding: 28px 20px;
    text-align: left;
  }

  .profile_inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .profile_box_left {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .profile_box_right {
    padding: 7px;
  }

  .profile_box_right .table_collum_02 th, .profile_box_right .table_collum_02 td {
    padding: 17px 13px;
  }

  .profile_box_right .table_collum_02 tr:only-child > th,
  .profile_box_right .table_collum_02 tr:only-child > td {
    display: block;
    width: 100%;
  }

  .profile_box_schedule {
    padding: 10px;
  }

  .room_gallery, .recruit_merit {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 35px;
  }

  .room_card {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }

  .recruit_merit_card {
    padding: 23px;
  }

  .table_collum_recruit th, .table_collum_recruit td {
    display: block;
    width: 100%;
  }

  .table_collum_recruit th {
    padding: 12px 15px;
  }

  .table_collum_recruit td {
    padding: 16px 15px 23px;
  }

  .recruit_entry_box {
    padding: 28px 18px;
  }

  .recruit_entry_box h3 {
    font-size: 22px;
  }

  .recruit_entry_btn {
    padding: 11px 24px;
    font-size: 21px;
  }

  footer {
    padding: 35px 0 calc(100px + env(safe-area-inset-bottom));
  }

  .footer_link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin-bottom: 26px;
  }

  .footer_link a {
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid var(--accent-soft);
    font-size: 12px;
  }

  footer small {
    font-size: 10px;
  }

  .footer_nav {
    display: none;
  }

  .m-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--navy-line);
    background: var(--navy);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform var(--ease), opacity var(--ease), visibility var(--ease);
  }

  .m-cta__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 8px 2px;
    gap: 5px;
    border-radius: var(--radius);
    background: var(--button-fill);
    color: var(--button-text);
    box-shadow: inset 0 0 0 3px rgba(244, 235, 192, .16);
    border: 1px solid var(--accent-soft);
  }

  .slick_schedule .slick-slide { padding: 0 6px; }
  .slick_schedule .slick-list { margin: 0 -6px; }
  .slick_schedule .slick-prev { left: -12px; }
  .slick_schedule .slick-next { right: -12px; }

  .m-cta .m-cta__btn:hover, .m-cta .m-cta__btn:active {
    color: var(--button-text);
    background: var(--gold);
  }

  .m-cta__btn::before {
    font: 900 14px/1 "Font Awesome 5 Free";
  }

  .m-cta__btn.is-tel::before {
    content: "\f095";
  }

  .m-cta__btn.is-web::before {
    content: "\f183";
  }

  .m-cta__btn.is-system::before {
    content: "\f303";
  }

  .m-cta__btn.is-top::before {
    content: "\f102";
  }

  .m-cta__btn.is-line::before {
    content: "\f3c5";
  }

  .m-cta__label {
    font: 10px/1.3 var(--font-ui);
    white-space: nowrap;
    letter-spacing: 0;
  }

  .open .m-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

}

@media (max-width: 360px) {
  .inner {
    padding: 0 16px;
  }

  .middle_info {
    padding-left: 20px;
    padding-right: 20px;
  }

  .middle_info_area span {
    font-size: 12px;
  }

  .hero_cta {
    width: calc(100% - 30px);
    gap: 6px;
  }

  .hero_cta a {
    font-size: 11px;
  }

  .cast_li .txt_box {
    font-size: 12px;
  }

  .m-cta__label {
    font-size: 9px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .cast_li a:hover .photo, .hero_cta a:hover {
    transform: none;
  }

}
