@charset "utf-8";
/** ==============================================
01.共通パーツ
============================================== **/

/* -------------------------------------
header
-------------------------------------*/
header {
  width: 100%;
  padding: 0;
  color: #fff;
  background: transparent;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
header.scroll,
header.scroll_sp {
  background: rgba(152, 39, 55, 0.95);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
header .h-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 30px 0 20px;
}

/* h-logo */
header .h-logo {
  display: block;
  height: 52px;
}
header .h-logo img {
  height: 100%;
  width: auto;
}
/* スクロール後も白ロゴのまま（背景が赤系のため） */

/* nav（PC/SP共通でハンバーガーから開くオーバーレイ） */
header nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 450px;
  min-height: 100dvh;
  padding: 100px 60px 40px;
  background: #fff;
  color: var(--base_color);
  position: fixed;
  top: 0;
  right: -100%;
  overflow-y: auto;
  z-index: 1499;
  transition: right var(--transition);
}
header.nav-open nav {
  right: 0;
}
header nav .gnav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  list-style: none;
  width: 100%;
}
header nav .gnav li a {
  display: block;
  width: 100%;
  padding: 16px 10px;
  font-size: 1.8rem;
  font-weight: var(--fw_b);
  line-height: var(--lh_s);
  text-align: center;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  color: var(--base_color);
  transition: opacity var(--transition);
}
header nav .gnav li a:hover {
  opacity: 0.6;
}
header nav .gnav li a.current {
  color: var(--c_main);
}
/* サービスのご案内 サブメニュー（インデント表示） */
header nav .gnav-sub {
  list-style: none;
  width: 100%;
}
header nav .gnav-sub li a {
  padding: 12px 10px 12px 28px;
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  position: relative;
}
header nav .gnav-sub li a::before {
  content: "－";
  position: absolute;
  left: 10px;
}

/* h-tel */
header .h-tel {
  display: flex;
  justify-content: center;
  margin: 50px 0 0;
}
header .h-tel .tel {
  font-size: 2.4rem;
  font-weight: var(--fw_b);
  display: flex;
  align-items: center;
  gap: 0.3em;
  color: var(--base_color);
}
header .h-tel .tel::before {
  content: "";
  display: block;
  width: 0.6em;
  aspect-ratio: 20/28;
  --mask: url(../images/ico-tel.svg) center / contain no-repeat;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background: currentColor;
}

/* h-insta（電話番号の下に配置するインスタグラムリンク。banpaku等で使用） */
header .h-insta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin: 32px 0 0;
  color: var(--base_color);
  transition: opacity var(--transition);
  background: rgb(from var(--bg_main) r g b / 0.8);
  padding: 10px 20px;
  color: #fff;
  /* font-size: 20px; */
  width: 90%;
  /* color: var(--c_main); */
  /* border-bottom: 1px solid var(--c_main); */
}
header .h-insta:hover {
  opacity: 0.6;
}
header .h-insta-icon {
  display: block;
  width: 1.9rem;
  aspect-ratio: 1/1;
  --mask: url(../images/ico-sns-instagram.svg) center / contain no-repeat;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background: currentColor;
}
header .h-insta-name {
  font-size: 1.5rem;
  font-weight: var(--fw_b);
}

/* h-ticket（前売りチケットボタン：ハンバーガーの外に独立配置） */
header .h-ticket {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  margin-left: auto;
  background: #fff;
  color: var(--c_main);
  font-family: var(--font_mincho);
  font-size: 1.4rem;
  font-weight: var(--fw_b);
  white-space: nowrap;
  transition: opacity var(--transition);
}
header .h-ticket:hover {
  opacity: 0.8;
}

/* nav-ticket（SP用：ハンバーガーメニュー内・電話番号の下に配置） */
header .nav-ticket {
  display: none;
}

/* hamburger（2本線 + MENU表記。PC/SP共通で常時表示） */
header .hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 64px;
  height: 64px;
  margin-left: 16px;
  margin-top: 10px;
  position: relative;
  cursor: pointer;
  z-index: 1500;
  flex-shrink: 0;
}
header .hamburger span {
  display: block;
  width: 35px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s;
}
header .hamburger span.hamburger-text {
  width: auto;
  height: auto;
  background: none;
  font-family: var(--font_mincho);
  font-size: 1rem;
  font-weight: var(--fw_b);
  letter-spacing: 0.05em;
}
header.nav-open .hamburger span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
header.nav-open .hamburger span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}
header .hamburger span.hamburger-text {
  font-size: 0;
}
header .hamburger span.hamburger-text::before {
  content: "MENU";
  font-size: 1rem;
}
header.nav-open .hamburger span.hamburger-text::before {
  content: "CLOSE";
}
header.nav-open .hamburger {
  color: var(--c_main);
}

@media screen and (max-width: 960px) {
  header .h-inner {
    height: 64px;
    padding: 0 0 0 16px;
  }
  header .h-logo {
    height: 44px;
  }
  header .h-ticket {
    display: none;
  }
  header .nav-ticket {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin: 15px 0 0;
    padding: 0 20px;
    background: var(--c_main);
    color: #fff;
    font-family: var(--font_mincho);
    font-size: 1.6rem;
    font-weight: var(--fw_b);
    white-space: nowrap;
    transition: opacity var(--transition);
  }
  header .nav-ticket:hover {
    opacity: 0.8;
  }
  header .hamburger {
    width: 56px;
    height: 56px;
    margin: 0;
    right: 10px;
    top: 5px;
  }
}
@media screen and (max-width: 520px) {
  header .h-inner {
    height: 56px;
  }
  header .h-logo {
    height: 36px;
  }
  header .h-ticket {
    height: 48px;
    padding: 0 10px;
    font-size: 1.1rem;
  }
  header .hamburger {
    width: 48px;
    height: 48px;
  }
}

/* body > main overrideː heroが固定ヘッダーの後ろに入る */
body > main {
  margin-top: 0;
}

/* -------------------------------------
footer
-------------------------------------*/
footer {
  background: #fff;
  color: var(--base_color);
  border-top: 1px solid var(--gray_l);
}
.f-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding: 50px 0 40px;
}
/* 左：ロゴ＋住所 */
.f-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.f-logo-link {
  display: block;
}
.f-logo {
  width: 320px;
  height: auto;
}
footer address {
  font-style: normal;
  font-size: 1.3rem;
  color: var(--gray);
  line-height: 2;
}
footer address p {
  margin: 0;
}
footer address a {
  color: inherit;
}
footer address a:hover {
  color: var(--c_main);
  opacity: 1;
}
/* 右：ナビ */
.f-nav {
  flex-shrink: 0;
}
.f-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.f-nav ul li a {
  font-size: 1.3rem;
  color: var(--gray);
  transition: color var(--transition);
}
.f-nav ul li a:hover {
  color: var(--c_main);
  opacity: 1;
}
/* コピーライト */
.copyright {
  padding: 14px 0;
}
.copyright small {
  font-size: 1.2rem;
  color: var(--gray);
}

@media screen and (max-width: 760px) {
  .f-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 0 30px;
  }
  .f-nav ul {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 16px;
  }
}
@media screen and (max-width: 520px) {
  footer {
    padding-bottom: 30px;
  }
  .f-logo {
    width: 140px;
  }
}

/* -------------------------------------
sp-fix
-------------------------------------*/
.sp-fix {
  display: none;
}
@media screen and (max-width: 520px) {
  .sp-fix {
    /* 今後使う可能性があるため非表示のみ。display: gridにすると表示される */
    width: 100vw;
    height: 64px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 900;
    background: #ddd;
  }
  .sp-fix-tel,
  .sp-fix-btn {
    display: grid;
    place-content: center;
    text-align: center;
    font-weight: var(--fw_b);
    line-height: var(--lh_s);
    font-size: 1.2rem;
  }
  .sp-fix-tel {
    background: #fff;
    color: var(--c_main);
    border-top: 2px solid var(--c_main);
    flex-direction: column;
    gap: 2px;
  }
  .sp-fix-tel::before {
    content: "";
    display: block;
    width: 1.4em;
    aspect-ratio: 20/28;
    margin: 0 auto 2px;
    --mask: url(../images/ico-tel.svg) center / contain no-repeat;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    background: var(--c_main);
  }
  .sp-fix-btn {
    background: var(--c_main);
    color: #fff;
    font-size: min(3vw, 1.3rem);
  }
}

/** ==============================================
02.各セクション
============================================== **/

/* -------------------------------------
hero
-------------------------------------*/
.hero {
  width: 100%;
  height: 100svh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
/* splide */
.hero .hero-slide,
.hero .hero-slide .splide__track,
.hero .hero-slide .splide__list,
.hero .hero-slide .splide__slide {
  height: 100%;
}
.hero .hero-slide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 黒フィルター：変更はここだけ */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
  pointer-events: none;
}
/* コンテンツ */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 6% 6%;
  color: #fff;
}
.hero-catch {
  font-size: 4.2rem;
  font-weight: var(--fw_b);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.hero-logo {
  width: min(580px, 55%);
}
.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 520px) {
  .hero {
    height: auto;
    aspect-ratio: 2 / 3;
    min-height: 0;
  }
  .hero-content {
    padding: 80px 5% 5%;
    justify-content: center;
  }
  .hero-catch {
    font-size: 2.2rem;
    margin-bottom: 12px;
    text-align: center;
    /* white-space: nowrap; */
  }
  .hero-logo {
    width: 80%;
  }
}

/* -------------------------------------
about
-------------------------------------*/
/* PC: 3カラム（左画像 | 縦書きキャッチ | 右テキスト+画像） */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0 6%;
  /* width: min(92%, 1200px); */
  width: 1050px;
  margin-inline: auto;
  align-items: stretch;
}

/* 左：画像2枚縦積み */
.about-photos-left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.about-photos-left figure {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.about-photos-left figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 中央：縦書きキャッチ */
.about-catch-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-catch {
  writing-mode: vertical-rl;
  font-family: var(--font_mincho);
  /* font-size: clamp(2.4rem, 2.8vw, 3.6rem); */
  font-size: 3.2rem;
  font-weight: var(--fw_b);
  line-height: 1.8;
  letter-spacing: 0.15em; /* JS計算前/JS無効時のフォールバック値 */
  color: var(--base_color);
}
/* PC: letter-spacingはJSで自動計算するため、計算完了まで非表示にしてチラつきを防ぐ */
@media screen and (min-width: 761px) {
  .about-catch {
    visibility: hidden;
  }
  .about-catch.is-fitted {
    visibility: visible;
  }
}

/* 右：画像（上）→テキスト→画像（下） */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.about-right-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.about-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-text {
  font-size: 1.5rem;
}

/* SP：縦書き→横書き、キャッチ→画像4枚→テキストの順 */
@media screen and (max-width: 760px) {
  .about-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: min(90%, 1200px);
  }
  /* 表示順: catch → photos-left → right(photos→text) */
  .about-catch-wrap {
    order: 1;
    margin-bottom: 20px;
  }
  .about-photos-left {
    order: 2;
    margin-bottom: 8px;
  }
  .about-right {
    order: 3;
  }

  /* キャッチは横書きに */
  .about-catch {
    writing-mode: horizontal-tb;
    font-size: clamp(2rem, 5vw, 2.8rem);
    letter-spacing: 0.15em;
  }

  /* 左の写真は横2列に */
  .about-photos-left {
    flex-direction: row;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .about-photos-left figure {
    flex: unset;
    min-height: unset;
    aspect-ratio: 1/1;
  }

  /* 右エリア内は順序そのまま（画像→テキスト→画像） */
  .about-right {
    gap: 16px;
  }
  .about-right-img {
    aspect-ratio: 4/3;
  }
}
@media screen and (max-width: 520px) {
  .about-photos-left,
  .about-photos-right {
    gap: 6px;
  }
  .about-photos-left figure {
    aspect-ratio: 3/4;
  }
  .about-right {
    gap: 30px;
  }
}

/* -------------------------------------
news
-------------------------------------*/
.news-inner {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.news-content {
  flex: 1;
}

@media screen and (max-width: 960px) {
  .news-inner {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 520px) {
  .sec-top-news {
    padding-top: 0;
  }
  .news-content {
    width: 100%;
  }
}
/* -------------------------------------
event
-------------------------------------*/
.sec-top-event {
  position: relative;
  color: #fff;
  overflow: hidden;
}
/* 背景画像：店舗ごとに上書き */
.sec-top-event-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sec-top-event-bg-banpaku {
  background: url(../images/banpaku/event-bg01.jpg) no-repeat center / cover;
}
.sec-top-event-bg-kawachi {
  background: url(../images/kawachi/event-bg01.jpg) no-repeat center / cover;
}
.sec-top-event-bg-okayama {
  background: url(../images/okayama/event-bg01.jpg) no-repeat center / cover;
}
.sec-top-event-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg_blend);
  opacity: 0.8;
}
.sec-top-event-inner {
  position: relative;
  z-index: 1;
}
.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  background: var(--bg_blend2);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(2px);
  border: 1px solid #333;
}
.event-card-tag {
  padding: 4px 12px;
  background: var(--c_sub);
  font-family: var(--font_mincho);
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 14px;
}
.event-card h3 {
  font-family: var(--font_mincho);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 12px;
}
.event-card p {
  font-size: 1.4rem;
  line-height: var(--lh);
}
.event-card p span {
  display: block;
  margin-top: 5px;
  font-size: 0.9em;
}

@media screen and (max-width: 760px) {
  .event-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 520px) {
  .event-card {
    padding: 20px 18px;
  }
}

/* -------------------------------------
service
-------------------------------------*/
.sec-top-service {
  padding: 80px 0 40px;
}
.service-item-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
.service-item {
  display: grid;
  grid-template-columns: 1fr 60%;
  align-items: center;
  gap: 5%;
  scroll-margin-top: 90px;
}
/* 偶数：反転 */
.service-item--rev {
  direction: rtl;
}
.service-item--rev > * {
  direction: ltr;
}
/* splide */
.service-slide {
  aspect-ratio: 990/570;
  /* height: 100%;
  min-height: 340px; */
}
.service-slide .splide__track,
.service-slide .splide__list,
.service-slide .splide__slide {
  height: 100%;
}
.service-slide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 矢印非表示 */
.service-slide .splide__arrows {
  display: none;
}
/* ページネーション：画像の外側下に長方形バーで配置 */
.service-slide.splide .splide__pagination {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  padding: 14px 0 4px;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}
.service-slide .splide__pagination__page {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--gray_l);
  margin: 0;
  opacity: 1;
  transform: none !important;
  transition: background var(--transition);
}
.service-slide .splide__pagination__page.is-active {
  background: var(--base_color);
  transform: none !important;
}
/* text */
.service-text {
  /* padding: 40px 6%; */
}
.service-text p {
  line-height: var(--lh);
  margin-bottom: 0;
}
.service-text .btn {
  margin-top: 24px;
}

@media screen and (max-width: 760px) {
  .service-item-wrap {
    gap: 100px;
  }
  .service-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-item--rev {
    direction: ltr;
  }
  .service-text {
    padding: 28px 5%;
  }
}
@media screen and (max-width: 520px) {
  .sec-top-service {
    padding: 60px 0 70px;
  }
  .service-text {
    padding: 24px 6%;
  }
}

/* -------------------------------------
price
-------------------------------------*/
.sec-top-price {
  background: var(--bg_gray);
}
.price-inner {
  display: flex;
  gap: 50px;
  width: min(90%, 1100px);
  margin-inline: auto;
  align-items: flex-start;
}
/* タイトルを横書き・price-contentの上に配置するページ用（料金・館内のご案内ページ等） */
.price-inner.price-inner--stacked {
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.price-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 36%;
  gap: 50px;
  align-items: start;
}
.price-cat-tit {
  font-size: 1.8rem;
  font-weight: var(--fw_b);
  color: var(--c_main);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c_main);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table + .price-table {
  margin-top: 30px;
}
.price-table thead tr {
  border-bottom: 2px solid var(--base_color);
}
.price-table tbody tr {
  border-bottom: 1px dashed var(--base_color);
}
.price-table th {
  padding: 10px 12px;
  font-size: 1.4rem;
  font-family: var(--font_mincho);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.price-table th:first-child {
  width: 40%;
  text-align: left;
  padding-left: 0;
}
/* カテゴリ名（入浴料金・岩盤浴）*/
.price-table-cat {
  color: var(--c_main) !important;
  font-weight: var(--fw_b) !important;
  font-size: 1.6rem !important;
}
.price-table td {
  padding: 12px 12px;
  font-size: 1.4rem;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.price-table td:first-child {
  text-align: left;
  padding-left: 0;
  white-space: normal;
}
.price-note {
  font-size: 1.3rem;
  line-height: 1.9;
  margin-top: 30px;
}
.price-note-tit {
  font-weight: bold;
  margin-bottom: 8px;
}
.price-note p + p {
  margin-top: 8px;
}
.price-note ul {
  list-style: none;
}
.price-note ul li {
  position: relative;
  padding-left: 1.1em;
}
.price-note ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.price-photo {
  aspect-ratio: 3/4.5;
  overflow: hidden;
}
.price-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 画像2枚を縦並びにする店舗用（河内長野店等） */
.price-photo-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-photo-group .price-photo {
  aspect-ratio: 4/3;
}

@media screen and (max-width: 960px) {
  .price-inner {
    flex-direction: column;
    gap: 30px;
  }
  .price-photo {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 520px) {
  .price-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .price-photo {
    aspect-ratio: 2/3;
  }
  .price-photo-group .price-photo {
    aspect-ratio: 16/9;
  }
}

/* -------------------------------------
instagram
-------------------------------------*/
.sec-top-insta {
  overflow: hidden;
}
.insta-head {
  text-align: center;
  margin-bottom: 36px;
  color: #fff;
}
.insta-icon {
  width: 40px;
  margin: 0 auto 10px;
}
.insta-icon::before {
  --width: 40px;
  display: block;
  --mask: url(../images/ico-sns-instagram.svg) center / contain no-repeat;
  content: "";
  width: var(--width);
  aspect-ratio: 1/1;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background: #fff;
}
.insta-head h2 {
  font-family: var(--font_mincho);
  font-weight: 600;
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.insta-head p {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  font-size: 1.4rem;
}
.insta-head p::before,
.insta-head p::after {
  content: "\005C";
  font-size: 1.4em;
}
.insta-head p::after {
  content: "/";
}

/* splide */
.insta-slide .splide__slide {
  /* aspect-ratio: 3/4; */
  overflow: hidden;
}
.insta-slide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.insta-slide .splide__slide a:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.insta-progress {
  width: min(90%, 1100px);
  margin: 16px auto 0;
  height: 2px;
  background: #fff;
}
.insta-progress-bar {
  height: 100%;
  background: var(--base_color);
  width: 0;
  transition: width 0.4s ease;
}
.insta-link {
  margin-top: 24px;
}

@media (max-width: 520px) {
  .insta-head h2 {
    font-size: 3.5rem;
  }
}

/* -------------------------------------
access
-------------------------------------*/
.access-inner {
  display: grid;
  /* Figmaデザインではテキスト側が狭く、地図側が広い(約1:1.8)レイアウト */
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.access-lead {
  font-weight: var(--fw_b);
  margin-bottom: 16px;
}
.access-address {
  font-style: normal;
  font-size: 1.5rem;
  margin-bottom: 24px;
  line-height: 1.8;
}
.access-detail {
  font-size: 1.4rem;
  line-height: 1.8;
}
.access-detail dt {
  font-weight: var(--fw_b);
  color: var(--c_main);
  margin-top: 16px;
  margin-bottom: 4px;
}
.access-detail dd ul {
  list-style: none;
}
/* 電車アクセスの項目はリンク風の見た目にする(リンク先が無いためaタグではなくテキストの装飾のみ) */
.access-link {
  color: var(--c_sub);
  text-decoration: underline;
}
.access-info {
  font-family: var(--font_mincho);
}
.access-tel {
  margin: 24px 0 0;
  padding: 24px 0;
  border-top: var(--border);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.access-tel .tel-label {
  font-size: 1.6rem;
  font-weight: var(--fw_b);
  color: var(--base_color);
}
.access-tel .tel {
  font-size: 2.4rem;
  font-weight: var(--fw_b);
  color: var(--base_color);
}
/* 共通の.telスタイル(base02.css)が付与する電話アイコンをaccessセクションでは非表示にする */
.access-tel .tel::before {
  content: none;
}
.access-hours {
  margin-top: 12px;
  padding-bottom: 24px;
  font-size: 1.4rem;
  color: var(--gray);
  line-height: 1.8;
  border-bottom: var(--border);
}
.access-hours small {
  display: block;
  margin-bottom: 10px;
  font-size: 85%;
}
.access-map .gmap {
  height: unset;
  aspect-ratio: 6/7;
}
.access-map .gmap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 760px) {
  .access-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 520px) {
  .access-map .gmap {
    aspect-ratio: 7/6;
  }
}

/* -------------------------------------
recruit
-------------------------------------*/
.sec-top-recruit {
  overflow: hidden;
}
.recruit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}
/* 左：テキストエリア（ベタ塗り） */
.recruit-text {
  background: var(--c_main);
  color: #fff;
  text-align: center;
  padding: 50px 6% 50px 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recruit-en {
  font-family: var(--font_mincho);
  font-weight: 600;
  font-size: clamp(3rem, 4vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.recruit-tit {
  font-size: 1.6rem;
  font-weight: var(--fw_b);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}
.recruit-text p {
  font-size: 1.5rem;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.95);
}
.recruit-text [class*="tit-en"] {
  font-size: 1.8rem;
}
.recruit-text [class*="tit-en"] span {
  font-size: 4.6rem;
}
/* 右：画像のみ */
.recruit-photo {
  overflow: hidden;
  height: 100%;
}
.recruit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 760px) {
  .recruit-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .recruit-photo {
    aspect-ratio: 16/9;
    height: auto;
  }
  .recruit-text {
    padding: 50px 7%;
  }
}
@media screen and (max-width: 520px) {
  .recruit-text {
    padding: 44px 6%;
  }
  .recruit-en {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }
  .recruit-text [class*="tit-en"] span {
    font-size: 3.4rem;
  }
}

/** ==============================================
03.下層ページ共通
============================================== **/

/* -------------------------------------
page-title（下層ページ用ヒーロー）
-------------------------------------*/
.page-title {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
}
.page-title .bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}
.page-title-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 6%;
}
.page-title-content .en {
  font-family: var(--font_mincho);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.3em;
}
.page-title-content h1 {
  font-family: var(--font_mincho);
  font-size: 4.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 14px;
}
.breadcrumb {
  background: var(--bg_gray);
}
.breadcrumb ol {
  width: var(--base_width);
  max-width: 90%;
  margin-inline: auto;
  padding: 12px 0;
  display: flex;
  gap: 10px;
  list-style: none;
  font-size: 1.2rem;
  color: var(--base_color);
}
.breadcrumb li {
  display: flex;
  gap: 10px;
}
.breadcrumb li + li::before {
  content: "›";
}
.breadcrumb a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 520px) {
  .page-title {
    height: 200px;
  }
  .page-title-content .en {
    font-size: 1.2rem;
  }
  .page-title-content h1 {
    margin-top: 5px;
    font-size: 2.6rem;
  }
}

/* -------------------------------------
sub-intro（下層ページ：導入コピー）
-------------------------------------*/
.sub-intro {
  padding: 40px 0 10px;
  text-align: center;
}
.sub-intro .en {
  font-family: var(--font_mincho);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--c_sub);
}
.sub-intro .lead {
  font-family: var(--font_mincho);
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--base_color);
  margin-top: 16px;
}
.sub-intro .lead .accent {
  color: var(--c_main);
}
.sub-intro .lead .accent.red {
  color: var(--c_main);
}
.sub-intro .body {
  font-size: 1.5rem;
  line-height: var(--lh2);
  max-width: 760px;
  margin: 24px auto 0;
}
@media screen and (max-width: 520px) {
  .sub-intro .lead {
    font-size: 2.2rem;
  }
}

/** ==============================================
04.浴室案内ページ
============================================== **/

/* アンカーナビ（各浴室カテゴリーへのジャンプリンク） */
.bath-anchor-nav {
  margin-top: 30px;
}
.bath-anchor-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 36px;
}
.bath-anchor-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font_mincho);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--base_color);
}
.bath-anchor-nav a:hover {
  opacity: 1;
}
.bath-anchor-nav a:hover .label {
  text-decoration: underline;
}
.bath-anchor-nav a::after {
  content: "expand_circle_down";
  font-family: var(--icons);
  font-feature-settings: "liga";
  font-size: 1.2em;
  color: var(--c_main);
}
@media screen and (max-width: 520px) {
  .bath-anchor-nav ul {
    gap: 14px 24px;
  }
  .bath-anchor-nav a {
    font-size: 1.3rem;
  }
}

/* カテゴリー見出し（TOPの縦書きタイトルをそのまま使用） */
.bath-cat {
  position: relative;
  /* padding: 70px 0 10px; */
  scroll-margin-top: 90px;
}
/* 偶数番目のセクションに背景色（ブラウザ端まで拡張） */
.bath-cat.bath-cat--alt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  /* background: rgba(0, 0, 0, 0.05); */
  background: rgb(from var(--c_main) r g b / 0.05);
  z-index: -1;
}
.bath-cat-head {
  display: flex;
  align-items: stretch;
  gap: 60px;
  margin-bottom: 50px;
}
.bath-cat-head .sec-top-tit-v {
  flex-shrink: 0;
  align-items: flex-start;
}
.bath-cat-head-photo {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 400px;
  padding: 30px 10%;
  /* 右端をブラウザの端まで伸ばす（.wbaseで中央寄せされた幅の外側まで背景を拡張） */
  margin-right: calc(50% - 50vw);
  margin-top: 50px;
  background-image: url(../images/banpaku/hero-img02.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.bath-cat-head-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-top: 10px solid var(--c_main);
}
.bath-cat-head-photo .intro {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  line-height: var(--lh2);
  max-width: 700px;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 960px) {
  .bath-cat-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
  }
  .bath-cat-head .sec-top-tit-v {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 0;
  }
  .bath-cat-head-photo {
    flex: none; /* column方向ではflex-basis(0)がheightを上書きするため無効化 */
    align-self: stretch; /* 親のalign-items:flex-startを上書きし、コンテナ幅まで広げる */
    /* widthはautoのままにする（負のmarginで viewport幅まで広げるため、widthを固定すると効かない） */
    height: 160px;
    margin-top: 16px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .bath-cat-head-photo .intro {
    font-size: 1.2rem;
  }
}

/* 浴槽リスト（写真左右互い違い） */
.bath-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.bath-row {
  display: grid;
  grid-template-columns: 60% 1fr;
  align-items: center;
  gap: 6%;
}
.bath-row figure {
  overflow: hidden;
  aspect-ratio: 5/3;
}
.bath-row figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bath-row:nth-child(even) {
  grid-template-columns: 1fr 60%;
}
.bath-row:nth-child(even) figure {
  order: 2;
}
.bath-row h3.service-name {
  margin-bottom: 10px;
}
.bath-row .desc {
  font-size: 1.4rem;
  line-height: var(--lh2);
  margin-top: 16px;
}
.bath-row .badges {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.badge {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 3px;
  background: #fff;
  line-height: 1;
}
.badge.onsen {
  color: var(--c_main);
  border: 1px solid var(--c_main70);
}
.badge.male {
  color: var(--base_color);
  border: 1px solid var(--base_color);
}
.badge.female {
  color: var(--c_main);
  border: 1px solid var(--c_main);
}
@media screen and (max-width: 760px) {
  .bath-row,
  .bath-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bath-row:nth-child(even) figure {
    order: 0;
  }
  .bath-row .panel {
    padding: 0 10px;
  }
}

/* ご利用にあたってのお願い（TOPのevent同様、背景画像+暗いオーバーレイ） */
.usage {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.usage-bg {
  position: absolute;
  inset: 0;
  background: url(../images/banpaku/event-bg01.jpg) no-repeat center / cover;
  z-index: 0;
}
.usage-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg_blend);
}
.usage-inner {
  position: relative;
  z-index: 1;
  padding: 70px 0 100px;
}
.usage-card {
  background: #fff;
  color: var(--base_color);
  border: 1px solid var(--gray_l);
  padding: 36px 44px;
  margin-top: 24px;
}
.usage-card h3 {
  margin: 0 0 18px;
  font-family: var(--font_mincho);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--c_main);
  display: flex;
  align-items: center;
  gap: 10px;
}
.usage-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.usage-card li {
  position: relative;
  padding-left: 22px;
  font-size: 1.4rem;
  line-height: 1.95;
}
.usage-card li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--c_main);
  border-radius: 50%;
}
.usage-card li strong {
  font-weight: var(--fw_b);
}
.usage-more-toggle {
  width: 100%;
  margin-top: 18px;
  border: none;
  border-top: 1px dashed var(--gray_l);
  background: none;
  cursor: pointer;
  padding: 15px 2px 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font_mincho);
  font-size: 1.4rem;
  font-weight: 600;
  color: inherit;
  text-align: left;
}
.usage-more-toggle:hover {
  text-decoration: underline;
}
.usage-more-toggle .chev {
  width: 22px;
  height: 22px;
  border: 1px solid var(--base_color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.usage-more-toggle .chev::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--base_color);
  border-bottom: 1.5px solid var(--base_color);
  transform: rotate(45deg);
  margin-top: -2px;
}

/* usage-modal（詳細はポップアップで表示。usageセクションの高さ・背景画像には影響しない） */
.usage-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(90%, 600px);
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px 36px;
  border: none;
  border-radius: 6px;
  background: #fff;
  color: var(--base_color);
  /* 開閉アニメーション（0.5秒）。display/overlayもallow-discreteでアニメ対象に含める */
  opacity: 0;
  scale: 0.95;
  transition:
    opacity 0.5s ease,
    scale 0.5s ease,
    display 0.5s allow-discrete,
    overlay 0.5s allow-discrete;
}
.usage-modal[open] {
  opacity: 1;
  scale: 1;
}
@starting-style {
  .usage-modal[open] {
    opacity: 0;
    scale: 0.95;
  }
}
.usage-modal::backdrop {
  background: rgba(0, 0, 0, 0);
  transition:
    background 0.5s ease,
    display 0.5s allow-discrete,
    overlay 0.5s allow-discrete;
}
.usage-modal[open]::backdrop {
  background: rgba(0, 0, 0, 0.6);
}
@starting-style {
  .usage-modal[open]::backdrop {
    background: rgba(0, 0, 0, 0);
  }
}
.usage-modal h3 {
  margin: 0 0 18px;
  font-family: var(--font_mincho);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--c_main);
}
.usage-modal p {
  font-size: 1.3rem;
  line-height: 1.95;
  margin: 0 0 10px;
}
.usage-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gray);
  cursor: pointer;
}
@media screen and (max-width: 520px) {
  .usage-modal {
    padding: 32px 22px;
  }
}
@media screen and (max-width: 520px) {
  .usage-card {
    padding: 26px 22px;
  }
}

/** ==============================================
05.お知らせ一覧ページ
============================================== **/

/* カテゴリータブ（bath-anchor-navと同デザイン） */
.news-archive {
  padding: 70px 0 100px;
}
.news-cat-tabs {
  margin-bottom: 50px;
}
.news-cat-tabs ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 36px;
}
.news-cat-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font_mincho);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--base_color);
}
.news-cat-tabs a:hover {
  opacity: 1;
}
.news-cat-tabs a:hover .label,
.news-cat-tabs a.is-current .label {
  text-decoration: underline;
}
.news-cat-tabs a.is-current {
  color: var(--c_main);
}
.news-cat-tabs a::after {
  content: "expand_circle_down";
  font-family: var(--icons);
  font-feature-settings: "liga";
  font-size: 1.2em;
  color: var(--c_main);
}
@media screen and (max-width: 520px) {
  .news-cat-tabs ul {
    gap: 14px 24px;
  }
  .news-cat-tabs a {
    font-size: 1.3rem;
  }
}

/* カード一覧 */
.news-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}
.news-list li {
  width: calc((100% - 60px) / 3);
}
.news-list figure {
  aspect-ratio: 581 / 818;
  overflow: hidden;
}
.news-list figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.news-list a:hover {
  opacity: 1;
}
.news-list .content {
  padding: 14px 2px 0;
}
.news-list .meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}
.news-list .ctgr {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  color: #fff;
  background: var(--c_main);
}
.news-list time {
  font-size: 1.3rem;
  color: var(--gray);
}
.news-list p {
  font-size: 1.5rem;
  line-height: var(--lh_s);
  color: var(--base_color);
}
.news-empty {
  text-align: center;
  padding: 40px 0;
}

/* ページネーション */
.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}
.pagenation .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-family: var(--font_mincho);
  font-size: 1.4rem;
  color: var(--base_color);
}
.pagenation .page-numbers.current {
  background: var(--c_main);
  color: #fff;
  border-radius: 50%;
}
.pagenation a.page-numbers:hover {
  color: var(--c_main);
}

@media screen and (max-width: 760px) {
  .news-list {
    gap: 40px 20px;
    padding: 0 8%;
  }
  .news-list li {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 520px) {
  .news-list li {
    width: 100%;
  }
  .news-cat-tabs {
    gap: 10px 18px;
  }
}

/* お知らせ詳細ページ */
.news-detail {
  padding: 70px 0 100px;
}
.news-detail-inner {
  max-width: 800px;
  margin: 0 auto;
}
.news-detail-tit {
  font-family: var(--font_mincho);
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  line-height: var(--lh_s);
  margin-bottom: 18px;
}
.news-detail .meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.news-detail .ctgr {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  color: #fff;
  background: var(--c_main);
}
.news-detail .meta time {
  font-size: 1.4rem;
  color: var(--gray);
}
.news-detail-thumb {
  margin-bottom: 36px;
}
.news-detail-thumb img {
  width: 100%;
}
.news-detail-content {
  font-size: 1.5rem;
  line-height: var(--lh2);
}
.news-detail-content p {
  margin-bottom: 1.5em;
}
.news-detail-content img {
  max-width: 100%;
}

/* 関連するお知らせ */
.news-related {
  padding: 0 0 100px;
  text-align: center;
}
.news-related .tit-underline {
  display: inline-block;
  font-family: var(--font_mincho);
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 14px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--gray_l);
}
.news-related .news-list {
  text-align: left;
  margin-bottom: 40px;
}
.news-related .news-list li {
  width: calc((100% - 90px) / 4);
}
.news-related .btn {
  display: inline-flex;
}

@media screen and (max-width: 520px) {
  .news-related .news-list {
    gap: 30px 20px;
    padding: 0;
  }
  .news-related .news-list li {
    width: calc((100% - 30px) / 2);
  }
  .news-related .news-list .ctgr {
    padding: 2px 12px;
  }
  .news-detail-tit {
    font-size: 2rem;
  }
}

/* -------------------------------------
info（料金・館内のご案内）
-------------------------------------*/
.info-ticket {
  background: var(--c_main);
}
.info-ticket-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: #fff;
  width: fit-content;
  margin: 0 auto;
}
.info-ticket-sub {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  padding: 7px 100px;
  background: #fff;
  color: var(--base_color);
  border-radius: 20px;
}
.info-ticket-tit {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 3.2rem;
  font-family: var(--font_mincho);
  font-weight: var(--fw_b);
  letter-spacing: 0.05em;
}
.info-ticket-tit .material-symbols-outlined {
  font-size: 0.7em;
}
.info-ticket-link:hover {
  opacity: 1;
}
.info-ticket-link:hover .info-ticket-tit-text {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
@media screen and (max-width: 520px) {
  .info-ticket-link {
    gap: 20px;
  }
  .info-ticket-sub {
    font-size: 1.6rem;
    padding: 7px 20px;
    width: 100%;
  }
  .info-ticket-tit {
    font-size: 2.2rem;
    gap: 0.5em;
    padding-left: 1em;
  }
  .info-ticket-tit .material-symbols-outlined {
    font-size: 1.4em;
  }
}

.info-hours {
  padding-top: 90px;
}
.hours-lead {
  margin-top: 10px;
  font-size: 1.4rem;
}
.hours-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 30px;
  margin-top: 30px;
}
.hours-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.hours-label {
  width: 100%;
  padding: 10px 16px;
  font-size: 1.4rem;
  font-weight: var(--fw_b);
  text-align: center;
  color: var(--c_main);
  background: rgb(from var(--c_main) r g b / 0.12);
}
.hours-time {
  font-size: 1.6rem;
  line-height: var(--lh2);
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
}
.hours-time small {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--gray);
}
@media screen and (max-width: 760px) {
  .info-hours {
    padding-top: 60px;
  }
  .hours-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media screen and (max-width: 520px) {
  .hours-item {
    gap: 8px;
  }
}

.info-facility {
  padding-top: 90px;
}
.info-facility .bath-cat-head {
  margin-top: 40px;
}
.facility-photo {
  flex: 1;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.facility-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-intro {
  flex: 1;
}
.facility-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.facility-point figure {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.facility-point figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-point h4 {
  font-size: 1.6rem;
  font-weight: var(--fw_b);
  margin-bottom: 10px;
  background: var(--c_main);
  color: #fff;
  padding: 8px 14px;
}
.facility-point p {
  font-size: 1.4rem;
  line-height: var(--lh);
}
@media screen and (max-width: 760px) {
  .info-facility {
    padding-top: 60px;
  }
  .info-facility .bath-cat-head {
    margin-top: 24px;
  }
  .facility-points {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .facility-photo {
    margin-bottom: 30px;
  }
}
