@charset "UTF-8";

/* ========================================
   Color Palette
======================================== */
:root {
  --white: #ffffff;
  --main-blue: #1e78a9;
  --light-blue: #4b93ba;
  --white-blue: #bbd6e5;
  --zabuton-blue: #f4f8fb;
  --acd-blue: #e8f1f6;
  --sand: #f0e6d2;
  --gray5f: #5f5f5f;
  --gray23: #232323;
  --dark-gray: #60615f;
  --arrwbtn-light-blue: #8ebbd4;
  --btn-light-blue: #78aecb;
  --notice-yellow: #e8f528;
  --notice-red: #ffe7e7;
}

/* ========================================
   Base Styles
======================================== */
body {
  background-color: var(--zabuton-blue);
}

/* ========================================
   Background Color Utility
======================================== */
.bg-white {
  background-color: var(--white);
}

.bg-main-blue {
  background-color: var(--main-blue);
}

.bg-light-blue {
  background-color: var(--light-blue);
}
.bg-white-blue {
  background-color: var(--white-blue);
}

.bg-zabuton-blue {
  background-color: var(--zabuton-blue);
}

/* ========================================
   PC/SP Display Utility
======================================== */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.bg-acd-blue {
  background-color: var(--acd-blue);
}

.bg-sand {
  background-color: var(--sand);
}

.text-justify{
  text-align: justify;
}


/* ========================================
   Reset & Base
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*{
  letter-spacing: -0.05rem;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  position: relative;
}

/* 左右の背景画像 */
body::before, body::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: 40vw;
    background-image: url('../img/common/bg_side.webp');
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
}

body::before {
  left: 0;
}

body::after {
  right: 0;
  /* transform: scaleX(-1); */
}

body.is-nav-open,
body.is-modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

ul, ol {
  list-style: none;
}



/* ========================================
   Typography
======================================== */
/* 見出し - Zen Kaku Gothic Antique Bold */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
}

/* 見出下 - Zen Kaku Gothic Antique Medium */
.subtitle {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
}

/* テキストボックス内 */
.text-box {
  text-align: justify;
}

/* ========================================
   Layout - Wrapper & Inner
======================================== */
.content-wrapper {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

/* Inner 90px */
.content-inner-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.content-inner-90-left {
  padding-left: 0;
  padding-right: 90px;
}

.content-inner-90-right {
  padding-left: 90px;
  padding-right: 0;
}

/* Inner 70px */
.content-inner-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.content-inner-70-left {
  padding-left: 0;
  padding-right: 70px;
}

.content-inner-70-right {
  padding-left: 70px;
  padding-right: 0;
}

/* Inner 60px */
.content-inner-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.content-inner-60-left {
  padding-left: 0;
  padding-right: 60px;
}

.content-inner-60-right {
  padding-left: 60px;
  padding-right: 0;
}

/* Inner Full (padding無し) */
.content-inner-full {
  padding-left: 0;
  padding-right: 0;
}

/* ========================================
   Header - 追従
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 760px;
  background: transparent;
  z-index: 1000;
  transition: background 0.3s ease;
}

.header.is-scrolled {
  background: var(--white);
}

.header.is-scrolled .header-inner {
  padding: 15px 35px 15px 40px;
}

/* Header初期white（スクロール後に通常色） */
.header-initial-white .header-logo img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.header-initial-white .header-hamburger span {
  background: var(--white);
}

.header-initial-white.is-scrolled .header-logo img {
  filter: none;
}

.header-initial-white.is-scrolled .header-hamburger span {
  background: var(--gray23);
}

/* ナビオープン時はロゴとハンバーガーを白に、背景は透明に */
body.is-nav-open .header {
  background: transparent;
}

body.is-nav-open .header-logo img {
  filter: brightness(0) invert(1) !important;
}

body.is-nav-open .header-hamburger span {
  background: var(--white) !important;
}

.header-inner {
  padding: 35px 35px 35px 40px;
  display: flex;
  transition: padding 0.3s ease;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ */
.header-logo {
  line-height: 1;
}

.header-logo a {
  display: block;
}

.header-logo img {
  height: 30px;
  width: auto;
}

/* ナビ右側 */
.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* SNSアイコン */
.header-sns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-sns li a {
  display: block;
  line-height: 1;
}

.header-sns li img {
  width: 32px;
  height: 32px;
}

/* ハンバーガーメニュー */
.header-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gray23);
  transition: transform 0.3s, opacity 0.3s;
}

/* ハンバーガー開いた状態 */
.header-hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header-hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ヘッダー分のスペース確保 */
.main {
  /* padding-top: 60px; */
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  margin: 0 -130px;
}

.hero-slider .slick-list {
  overflow: visible;
}

.hero-slider .slick-slide {
    margin: 0 30px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-slide {
  width: 500px;
  position: relative;
}

.hero-slide a {
  display: block;
}

.hero-slide img {
  width: 500px;
  height: 700px;
  object-fit: cover;
}

/* Slick Arrows */
.hero-slider .slick-prev,
.hero-slider .slick-next {
  width: 60px;
  height: 60px;
  background: var(--arrwbtn-light-blue);
  border-radius: 50%;
  z-index: 10;
}

.hero-slider .slick-prev {
  left: 170px;
}

.hero-slider .slick-next {
  right: 170px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    font-size: 20px;
    color: var(--white);
    opacity: 1;
    content: '';
    width: 5px;
    height: 5px;
    display: block;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    left: 27px;
    position: absolute;
    top: 27px;
    transform: rotate(-45deg);
}
.hero-slider .slick-prev:before{
    transform: rotate(135deg);
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
  background: var(--light-blue);
}

/* ========================================
   News Section
======================================== */
.news {
  position: relative;
  padding: 80px 0 120px;
}

.news-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
}

.news-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* PC/SP出し分け - デフォルト（PC） */
.news-wave svg.news-wave-pc {
  display: block;
}

.news-wave svg.news-wave-sp {
  display: none;
}

/* Facility Intro Wave - PC/SP出し分け */
.facility-intro-wave svg.facility-intro-wave-pc {
  display: block;
}

.facility-intro-wave svg.facility-intro-wave-sp {
  display: none;
}

/* News Header */
.news-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 40px;
}

.news-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 60px;
}

.news-icon {
  width: 127px;
  height: auto;
}

.news-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.news-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 46px;
  color: var(--white);
  line-height: 1.2;
}

.news-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
}

/* VIEW ALL Button */
.btn-viewall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 1px solid var(--main-blue);
    background: var(--main-blue);
    color: var(--white);
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 300;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: background 0.3s, color 0.3s;
    border: 1px solid #bbd6e5;
    font-size: 14px;
    padding-right: 60px;
    padding-left: 50px;
}

.btn-viewall.btn::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 16px;
    background: url('../img/common/icon_btn_arrow.svg') no-repeat center center;
    background-size: contain;
    position: absolute;
    right: 20px;
}

.btn-viewall:hover {
  background: transparent;
  color: var(--white);
}

.btn-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* News List */
.news-list {
  margin-top: 0;
  border-top: 1px dotted rgba(255, 255, 255, 0.5);
}

.news-item {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}
.news-item:last-child{
  border-bottom: none;
}

.news-item a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px;
  color: var(--white);
}

.news-item a:hover .news-item-arrow {
  transform: translateX(5px);
}

.news-item-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin-bottom: 5px;
}

.news-date {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
}

.news-cat {
  display: inline-block;
  padding: 0px 12px 1px;
  border: 1px solid var(--white);
  background-color: var(--white);
  border-radius: 20px;
  font-size: 0.75rem;
  color: #1e78a9;
}

.news-item-title {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}

.news-item-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #8ebbd4;
  border-radius: 50%;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.news-item-arrow::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  background: url('../img/common/icon_btn_arrow.svg') no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
}

/* ========================================
   Global Navigation
======================================== */
.gnav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 760px;
  height: 100vh;
  background: var(--main-blue);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.gnav.is-active {
  opacity: 1;
  visibility: visible;
}

.gnav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 100px 40px 60px;
}

.gnav-list {
  width: 100%;
  max-width: 400px;
}

.gnav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gnav-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.gnav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  padding: 18px 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.gnav-list li a:hover {
  background-color: var(--white);
  color: var(--main-blue);
}

.gnav-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gnav-ja {
  display: block;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.gnav-en {
  display: block;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.gnav-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.gnav-list li a:hover .gnav-arrow {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.gnav-arrow::after {
  content: '';
  display: block;
  width: 8px;
  height: 5px;
  background: url('../img/common/icon_btn_arrow.svg') no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
}

/* ========================================
   Concept Section
======================================== */
.concept {
  position: relative;
  padding-top: 30px;
}

.concept-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
}

.concept-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Concept Intro */
.concept-intro {
  position: relative;
  /* display: flex; */
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
}

.concept-title-icon {
    position: absolute;
    right: 21%;
    top: -90px;
    width: 100px;
    height: auto;
}

.concept-intro-text {
  flex: 1;
}

.concept-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.concept-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 46px;
  color: var(--white);
  line-height: 1.2;
}

.concept-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  margin-top: 5px;
}

.concept-intro-desc {
  font-size: 16px;
  color: var(--white);
  line-height: 2;
}

.concept-intro-icon {
  width: 150px;
  height: auto;
  margin-left: 20px;
}

/* Concept Item */
.concept-item {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto auto;
  margin-bottom: 60px;
  transition: margin-bottom 0.3s ease;
}

.concept-item:last-child {
  margin-bottom: 0;
}

.concept-item-image {
  overflow: hidden;
  position: relative;
}

.concept-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
}

.concept-item-content {
  background: var(--white);
  padding: 50px 34px 40px;
  transition: background-color 0.3s ease;
}

/* 画像左・コンテンツ右 (HEALING, REFRESH) */
.content-inner-90-left.concept-item .concept-item-image {
  grid-column: 1;
  grid-row: 1;
}
.content-inner-90-left.concept-item .concept-item-content {
  grid-column: 2;
  grid-row: 1;
  border-top-right-radius: 8px;
}
.content-inner-90-left.concept-item .btn-viewmore {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  z-index: 99;
}

/* コンテンツ左・画像右 (RELAXATION) */
.content-inner-90-right.concept-item .concept-item-content {
  grid-column: 1;
  grid-row: 1;
  border-top-left-radius: 8px;
}
.content-inner-90-right.concept-item .concept-item-image {
  grid-column: 2;
  grid-row: 1;
}
.content-inner-90-right.concept-item .btn-viewmore {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
}

.concept-item-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.concept-item-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--main-blue);
  line-height: 1.2;
}

.concept-item-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--main-blue);
  margin-top: 5px;
}

.concept-item-desc {
  font-size: 16px;
  color: var(--main-blue);
  line-height: 1.75;
  text-align: justify;
}

/* VIEW MORE Button */
.btn-viewmore {
    display: inline-block;
    background: var(--white);
    padding: 15px 30px;
    border-radius: 0 0 8px 8px;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--main-blue);
    letter-spacing: 0.05em;
    /* margin-top: 20px; */
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.btn-viewmore:hover {
}

/* btn-viewmore.concept hover時の背景色・パディング変更 */
.concept-item:has(.btn-viewmore.concept:hover) .concept-item-content,
.concept-item:has(.btn-viewmore.concept:hover) .btn-viewmore.concept {
  background-color: var(--zabuton-blue);
}

.concept-item:has(.btn-viewmore.concept:hover) .btn-viewmore.concept {
  padding: 15px 23px 15px;
}

.concept-item:has(.btn-viewmore.concept:hover) {
  margin-bottom: 49px;
}

.concept-item:last-child:has(.btn-viewmore.concept:hover) {
  margin-bottom: -11px;
}

/* ========================================
   Access Section
======================================== */
.access {
  position: relative;
  padding: 140px 0 30px;
}

.access-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.access-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.access-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
}

.access-info {
  width: 50%;
}

.access-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.access-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 46px;
  color: var(--main-blue);
  line-height: 1.2;
}

.access-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--main-blue);
  /* font-style: italic; */
  margin-top: 5px;
}

.access-address {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: var(--gray23);
    margin-bottom: 25px;
}

.access-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.access-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.access-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.access-item span {
  font-size: 15px;
  color: var(--gray23);
  line-height: 1.6;
  font-weight: 300;
}

.access-map {
  width: 50%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
}

.access-map iframe {
  display: block;
}

/* ========================================
   Footer
======================================== */
.footer {
  position: relative;
  padding: 140px 0 40px;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  margin-bottom: 42px;
}

.footer-logo img {
  width: 140px;
  height: auto;
}

.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  /* background: var(--dark-gray); */
  /* border-radius: 50%; */
  /* transition: opacity 0.3s; */
}

.footer-sns li a:hover {
  /* opacity: 0.7; */
}

.footer-sns li img {
  /* width: 24px; */
  /* height: 24px; */
}

.footer-right {
  flex: 1;
}

.footer-nav {
  margin-bottom: 25px;
}

.footer-nav-list {
    display: grid;
    gap: 10px 10px;
    grid-template-columns: 1fr 6em 8em;
    grid-template-rows: 1fr 1fr;
}

.footer-nav-list li a {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--gray5f);
}

.footer-nav-list li a:hover {
}

.footer-info {
  padding-top: 25px;
  border-top: 1px dotted var(--gray5f);
}

.footer-address {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--gray5f);
  margin-bottom: 8px;
}

.footer-tel {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--gray5f);
}

.footer-copyright {
    text-align: center;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--dark-gray);
    margin-top: 40px;
    letter-spacing: 0;
}

/* ========================================
   Page Hero (下層ページ用)
======================================== */
.page-hero {
  position: relative;
  padding: 100px 40px 80px;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4); */
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.page-hero-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--white);
  line-height: 1.4;
}

.page-hero-title-en {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0;
    /* margin-top: 8px; */
}

.page-hero-desc {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  line-height: 2;
  margin-bottom: 40px;
}

.page-hero-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    position: absolute;
    bottom: 10px;
    z-index: 9;
}

.page-hero-nav li a {
    display: inline-block;
    padding: 3px 12px;
    border: 1px solid var(--white-blue);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
    background-color: var(--main-blue);
    color: var(--white);
    border-radius: 5px;
}

.page-hero-nav li a:hover {
    color: var(--main-blue);
    background-color: var(--white);
    border-color: var(--main-blue)
}


/* ========================================
   Page Hero Full (フルスクリーンタイプ)
======================================== */
.page-hero-full {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.page-hero-full-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-hero-full-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.page-hero-full-line-left {
  left: 5%;
}

.page-hero-full-line-right {
  right: 5%;
}

.page-hero-full-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-full-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-full-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.page-hero-full-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.15em;
  margin-top: 15px;
}

.page-hero-full-copy {
  position: absolute;
  bottom: 120px;
  right: 8%;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.05em;
  transform: rotate(-5deg);
  transform-origin: right bottom;
  z-index: 1;
}

.page-hero-full-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.page-hero-full-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ========================================
   Guidance Page
======================================== */
.guidance-main {
  position: relative;
  padding: 60px 0 80px;
}

.guidance-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
}

.guidance-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.guidance-columns {
  display: flex;
  gap: 20px;
}

.guidance-notice {
  background: var(--zabuton-blue);
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
  margin-bottom: 20px;
}

.guidance-notice-title {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 500;
    font-size: 16px;
  font-weight: 700;
  color: var(--main-blue);
  margin-bottom: 8px;
}

.guidance-notice-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
}
.guidance-floor-wrap{
  padding: 30px;
}
.guidance-box {
  flex: 1;
  background: var(--zabuton-blue);
  border-radius: 8px;
}

.guidance-box-header {
  display: flex;
  flex-direction: column;
  padding: 45px 40px 15px;
  text-align: center;
}

.guidance-box-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--main-blue);
  line-height: 1.2;
}

.guidance-box-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--main-blue);
  margin-top: 0px;
}

.guidance-box-content {
  padding: 0 30px 30px;
}

/* Hours */
.guidance-hours-item {
  padding: 40px 0;
  border-top: 1px dotted var(--arrwbtn-light-blue);
}

.guidance-hours-item:first-child {
  /* border-top: none; */
  /* padding-top: 0; */
  margin-top: 20px;
}

.guidance-hours-name {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--main-blue);
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.5;
}

.guidance-hours-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.guidance-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.guidance-hours-row dt {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--main-blue);
}

.guidance-hours-row dd {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--gray23);
}

.guidance-hours-24 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--gray23);
  text-align: center;
}

/* Price */
.guidance-price-item {
  padding: 40px 0;
  border-top: 1px dotted var(--arrwbtn-light-blue);
}

.guidance-price-item:first-child {
  /* border-top: none; */
  /* padding-top: 0; */
  margin-top: 20px;
}

.guidance-price-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--main-blue);
  margin-bottom: 15px;
}

.guidance-price-tag {
    display: inline-block;
    padding: 0px 12px 1px;
    border-radius: 20px;
    font-size: 13px;
    margin-left: 10px;
    /* letter-spacing: .25em; */
    /* padding-left: calc( 12px + 0.25em ); */
}

.guidance-price-tag-weekday {
  background: var(--main-blue);
  color: var(--white);
}

.guidance-price-tag-holiday {
  background: transparent;
  border: 1px solid var(--main-blue);
  color: var(--main-blue);
}

.guidance-price-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guidance-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.guidance-price-row dt {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  color: var(--gray23);
  flex: 1;
}

.guidance-price-row dd {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--gray23);
  text-align: right;
}

/* Payment Section */
.guidance-payment {
  padding: 0 0 130px;
}

.guidance-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.guidance-section-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--main-blue);
  line-height: 1.2;
}

.guidance-section-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--main-blue);
  margin-top: 5px;
}

.guidance-payment-desc {
  text-align: center;
  font-size: 16px;
  color: var(--gray23);
  margin-bottom: 30px;
}

.guidance-payment-columns {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.guidance-payment-box {
  flex: 1;
}

.guidance-payment-box-title {
    display: block;
    padding: 5px 0 8px;
    background: var(--main-blue);
    border-radius: 30px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
    text-align: center;
    margin-bottom: 25px;
}

.guidance-payment-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guidance-payment-item {
  background: #ddd;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
}

/* Notes Section */
.guidance-notes {
  position: relative;
  padding: 60px 0 120px;
}

.guidance-notes-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
}

.guidance-notes-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.guidance-notes-header {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 50px;
}

.guidance-notes-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  line-height: 1.2;
}

.guidance-notes-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
}

.guidance-notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 60px;
}

.guidance-notes-box {
  text-align: center;
}

.guidance-notes-icon {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.guidance-notes-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.guidance-notes-box-title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--notice-yellow);
  margin-bottom: 20px;
}

.guidance-notes-list {
  list-style: none;
  text-align: left;
}

.guidance-notes-list li {
  position: relative;
  padding-left: 15px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14px;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 8px;
}

.guidance-notes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--white-blue);
  border-radius: 50%;
}

/* Notes Other */
.guidance-notes-other {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 50px;
  /* padding-top: 40px; */
  /* border-top: 1px solid rgba(255, 255, 255, 0.3); */
}

.guidance-notes-other-title {
  flex-shrink: 0;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--notice-yellow);
  margin-bottom: 0;
  line-height: 1.8;
}

.guidance-notes-other-list {
  list-style: none;
}

.guidance-notes-other-list li {
  position: relative;
  padding-left: 15px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14px;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 8px;
}

.guidance-notes-other-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background:var(--white-blue);
  border-radius: 50%;
}

/* FAQ Section */
.guidance-faq {
  position: relative;
  padding: 60px 0 40px;
}

.guidance-faq-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
}

.guidance-faq-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.guidance-faq-header {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 40px;
}

.guidance-faq-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  line-height: 1.2;
}

.guidance-faq-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-category {
  background: var(--white);
  /* border-left: 4px solid var(--main-blue); */
  border-radius: 8px 8px 8px 8px;
  overflow: hidden;
}

.faq-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background: var(--acd-blue);
  border: none;
  cursor: pointer;
}

.faq-category-header:hover {
}

.faq-category-title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--main-blue);
}

.faq-category-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--main-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-category-icon::before,
.faq-category-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--main-blue);
  transition: transform 0.3s;
}

.faq-category-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-category-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-category.is-open .faq-category-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-category-content {
  display: none;
  padding: 0 25px 25px;
}

.faq-category.is-open .faq-category-content {
  display: block;
}

.faq-item {
  padding: 30px 0;
  border-top: 1px dotted var(--main-blue);
}
.faq-item:first-child{
  border-top: none;  
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--gray23);
    margin-bottom: 15px;
    align-items: baseline;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    /* background: var(--main-blue); */
    border-radius: 50%;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--main-blue);
    flex-shrink: 0;
}

.faq-answer {
  padding-left: 28px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  color: var(--main-blue);
  line-height: 1.8;
}

/* ========================================
   Facility Page
======================================== */

/* Facility Intro */
.facility-intro {
  position: relative;
  padding: 30px 0 60px;
}

.facility-intro-wave {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 140px;
}

.facility-intro-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.facility-intro-copy {
  position: absolute;
  top: 30px;
  right: 5%;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.05em;
  transform: rotate(-5deg);
  transform-origin: right top;
}

.facility-intro-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0px;
}

.facility-intro-text {
  flex: 1;
}

.facility-intro-title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 30px;
}

.facility-intro-desc {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  line-height: 2;
}

.facility-intro-image {
  flex-shrink: 0;
  width: 144px;
  margin-right: -30px;
  animation: walk-wobble 1.2s steps(1) infinite;
  transform-origin: center center;
}

@keyframes walk-wobble {
  0%, 50% {
    transform: rotate(-3deg);
  }
  50.01%, 100% {
    transform: rotate(3deg);
  }
}

.facility-intro-image-placeholder {
  width: 300px;
  height: 200px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.facility-intro-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
      margin-left: 68px;
    margin-right: 68px;
}

.facility-intro-nav li {
  flex: 1;
}

.facility-intro-nav li a {
  display: block;
  padding: 10px 0px;
  text-align: center;
  background: var(--white);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--main-blue);
  border-radius: 5px;
  border: 1px solid #bbd6e5;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.facility-intro-nav li a:hover {
  color: var(--white);
  background: var(--main-blue);
}

/* Facility Section (Sauna, Bath, etc.) */
.facility-section {
  padding: 60px 0 90px;
}

.facility-section-slider {
  margin-bottom: 40px;
}

.facility-main-slider {
  position: relative;
  margin-bottom: 20px;
}

.facility-main-slide-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ddd;
  border-radius: 8px;
}

.facility-thumb-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.facility-thumb-item {
  flex: 0 0 calc((100% - 60px) / 7);
  min-width: calc((100% - 60px) / 7);
  aspect-ratio: 4 / 3;
  background: #ccc;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s;
}

.facility-thumb-item.is-active {
  opacity: 1;
}

.facility-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-section-info {
  margin-bottom: 50px;
}

.facility-section-info-inner {
  display: flex;
  gap: 40px;
  margin-top: 63px;
}

.facility-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  /* width: 200px; */
}

.facility-section-title {
  display: flex;
  flex-direction: column;
}

.facility-section-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}

.facility-section-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  margin-top: 5px;
}

.facility-section-icon-placeholder {
  width: 100px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.facility-section-icon {
  width: 75px;
  margin-top: 10px;
  align-self: flex-end;
}
.facility-section-icon.ill03 {
  width: 132px;
  margin-top: 10px;
  align-self: flex-end;
}
.facility-section-icon.ill04 {
  width: 126px;
  margin-top: 0px;
  align-self: flex-end;
}

.facility-section-icon img {
  width: 100%;
  height: auto;
}

.facility-section-desc {
  flex: 1;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  line-height: 2;
}

.facility-relaxation-section {
  padding-bottom: 120px;
}
/* Facility Section Button */
.facility-section-info > .btn {
  display: block;
  width: 100%;
  padding: 20px 30px;
  background: var(--main-blue);
  color: var(--white);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
  margin-top: 60px;
  position: relative;
}

.facility-section-info > .btn::after {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 16px;
  background: url('../img/common/icon_btn_arrow.svg') no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.facility-section-info > .btn:hover {
  color: var(--main-blue);
  background: var(--white);
  border: 1px solid var(--main-blue)
}

.facility-section-info > .btn:hover::after {
  background-image: url('../img/common/icon_btn_arrow_main-blue.svg');
  filter: none;
}

/* Facility Card Slider */
.facility-card-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    padding: 3px;
}

.facility-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px 6px 0 0;
}

.facility-card-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ddd;
  border-radius: 8px;
}

.facility-card-title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--main-blue);
  margin-bottom: 15px;
}

.facility-card-desc {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  color: var(--gray23);
  line-height: 1.8;
}

.facility-card-body {
  padding: 20px 23px 23px;
  flex: 1;
  display: flex;
  flex-direction: column;
}


.facility-card-body .facility-card-desc {
  flex: 1;
}

/* Facility Card Button */
.facility-card-body .btn {
  display: block;
  background: var(--btn-light-blue);
  border: 1px solid #bbd6e5;
  border-radius: 8px;
  padding: 13px 0 13px ;
  /* margin-top: 20px; */
  text-align: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
  position: relative;
  margin-top: 20px;
}
.facility-card-body .btn span{
  font-weight: 300 !important;
}

.facility-card-body .btn::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 16px;
  background: url('../img/common/icon_btn_arrow.svg') no-repeat center center;
  background-size: contain;
}

.facility-card-body .btn span {
  font-size: 14px;
}

.facility-card-body .btn:hover {
}

/* Facility Main Slider Arrows */
.facility-main-slider .slick-prev,
.facility-main-slider .slick-next {
  width: 72px;
  height: 72px;
  background: var(--arrwbtn-light-blue);
  border-radius: 50%;
  z-index: 10;
}

.facility-main-slider .slick-prev {
  left: -125px;
}

.facility-main-slider .slick-next {
  right: -125px;
}

.facility-main-slider .slick-prev:before,
.facility-main-slider .slick-next:before {
  content: '';
  width: 5px;
  height: 5px;
  display: block;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  position: absolute;
  left: 48px;
  top: 33px;
  transform: rotate(135deg);
}

.facility-main-slider .slick-next:before {
  transform: rotate(-45deg);
  left: 20px;
}

/* Facility Card Slider Arrows */
.facility-card-slider {
  position: relative;
}

.facility-card-slider .slick-track {
  display: flex;
}

.facility-card-slider .slick-slide {
  padding: 0 10px;
  height: auto;
}

.facility-card-slider .slick-slide > div {
  height: 100%;
}

.facility-card {
  height: 100%;
}

.facility-card-inner {
  background: var(--white);
  border-radius: 8px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.facility-card-slider .slick-prev,
.facility-card-slider .slick-next {
  width: 72px;
  height: 72px;
  background: var(--arrwbtn-light-blue);
  border-radius: 50%;
  z-index: 10;
}

.facility-card-slider .slick-prev {
  left: -36px;
}

.facility-card-slider .slick-next {
  right: -36px;
}

.facility-card-slider .slick-prev:before,
.facility-card-slider .slick-next:before {
  content: '';
  width: 5px;
  height: 5px;
  display: block;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  position: absolute;
  left: 48px;
  top: 33px;
  transform: rotate(135deg);
}

.facility-card-slider .slick-next:before {
  transform: rotate(-45deg);
  left: 20px;
}

.facility-card-slider .slick-prev:hover,
.facility-card-slider .slick-next:hover {
  background: var(--arrwbtn-light-blue);
}

/* REFRESH Card Slider */
.facility-refresh-card-slider {
  padding: 0 0 90px;
}

.facility-refresh-card-slider .facility-card-inner {
  background: var(--acd-blue);
}

/* Facility Section with Wave (Bath, Totonoi, etc.) */
.facility-section-wave-top {
  position: relative;
  padding-top: 60px;
}

.facility-section-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
}

.facility-section-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* bg-main-blue section overrides */
.bg-main-blue .facility-card-title {
  /* color: var(--white); */
}

.bg-main-blue .facility-card-slider .slick-prev:before,
.bg-main-blue .facility-card-slider .slick-next:before {
  color: var(--main-blue);
}

/* bg-white section overrides for facility-intro */
.bg-white .facility-intro-copy {
  color: var(--main-blue);
}

.bg-white .facility-intro-title {
  color: var(--main-blue);
}

.bg-white .facility-intro-desc {
  color: var(--gray23);
}

.bg-white .facility-intro-nav li a {
  background: var(--main-blue);
  color: var(--white);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.bg-white .facility-intro-nav li a:hover {
  color: var(--main-blue);
  background: var(--white);
}

/* bg-white section overrides for facility-section */
.bg-white .facility-section-title-en {
  color: var(--main-blue);
}

.bg-white .facility-section-title-ja {
  color: var(--main-blue);
}

.bg-white .facility-section-desc {
  color: var(--gray23);
}

.bg-white .facility-card-desc {
  color: var(--gray23);
}

/* bg-white section overrides for facility-link-card */
.bg-white .facility-link-card {
  background: var(--main-blue);
}

.bg-white .facility-link-card:hover {
}

/* bg-white-blue section overrides for facility-section */
.bg-white-blue .facility-section-title-en {
  color: var(--main-blue);
}

.bg-white-blue .facility-section-title-ja {
  color: var(--main-blue);
}

.bg-white-blue .facility-section-desc {
  color: var(--gray23);
}

.bg-white-blue .facility-card-desc {
  color: var(--gray23);
}

/* bg-acd-blue section overrides for facility-section */
.bg-acd-blue .facility-section-title-en {
  color: var(--main-blue);
}

.bg-acd-blue .facility-section-title-ja {
  color: var(--main-blue);
}

.bg-acd-blue .facility-section-desc {
  color: var(--gray23);
}

.bg-acd-blue .facility-card-desc {
  color: var(--gray23);
}

/* Akasuri Card */
.facility-akasuri {
  /* background: var(--white); */
  margin-bottom: 60px;
}
.akasuri-inner{
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  padding: 3px;
}

.facility-akasuri-image {
  flex-shrink: 0;
  width: 45%;
}

.facility-akasuri-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #ddd;
  overflow: hidden;
  border-radius: 7px 0 0 7px;
}

.facility-akasuri-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-akasuri-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facility-akasuri-title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--main-blue);
  margin-bottom: 20px;
}

.facility-akasuri-desc {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  color: var(--gray23);
  line-height: 2;
  /* margin-bottom: 30px; */
}

.facility-akasuri-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 40px;
  background: var(--main-blue);
  border-radius: 30px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  align-self: flex-start;
}

.facility-akasuri-btn::after {
  content: '→';
}

.facility-akasuri-btn:hover {
}

/* Facility Link Cards */
.facility-link-cards {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}

.facility-link-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 13px;
  background: var(--main-blue);
  border: 1px solid #bbd6e5;
  border-radius: 8px;
  text-align: center;
}

.facility-link-card:hover {
}

.facility-link-card-icon {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.facility-link-card:hover .facility-link-card-icon {
  transform: scale(1.1);
}

.facility-link-card-icon img {
  width: 65px;
  height: auto;
}

.facility-link-card-icon-placeholder {
  width: 60px;
  height: 60px;
  background: #ddd;
  border-radius: 8px;
}

.facility-link-card-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.facility-link-card-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0;
}

.facility-link-card-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  margin-top: 5px;
  margin-bottom: 10px;
}

.facility-link-card-more {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  align-self: flex-end;
}

.facility-link-card-more::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url('../img/common/icon_btn_arrow.svg') no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.facility-link-card:hover .facility-link-card-more::after {
  transform: translateX(5px);
}

.facility-refresh-section{
  padding: 60px 0 20px;
}


/* ========================================
   SP - Responsive
======================================== */
@media screen and (max-width: 768px) {
  .content-wrapper {
    max-width: 100%;
  }

  /* Inner 90px -> SP */
  .content-inner-90 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-inner-90-left {
    padding-left: 0;
    padding-right: 20px;
  }

  .content-inner-90-right {
    padding-left: 20px;
    padding-right: 0;
  }

  /* Inner 70px -> SP */
  .content-inner-70 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-inner-70-left {
    padding-left: 0;
    padding-right: 20px;
  }

  .content-inner-70-right {
    padding-left: 20px;
    padding-right: 0;
  }

  /* Inner 60px -> SP */
  .content-inner-60 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-inner-60-left {
    padding-left: 0;
    padding-right: 20px;
  }

  .content-inner-60-right {
    padding-left: 20px;
    padding-right: 0;
  }
}

.sauna-intro-image {
    flex-shrink: 0;
    width: 225px;
    margin-right: 0;
    margin-top: 0;
    position: absolute;
    right: 50px;
    top: 20px;
}

/* Steam animation - instant on/off カクカク (no semi-transparent states) */
@keyframes steam-powa {
    0%, 49.9% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.sauna-intro-image #yuge02 {
    animation: steam-powa 3s linear infinite;
    transform: translate(-3px, -12px);
}

.sauna-intro-image #yuge03 {
    animation: steam-powa 3s linear infinite;
    animation-delay: 1.5s;
    transform: translate(2px, -5px);
}

/* illust_02 steam animation */
.facility-section-icon.ill02 #ill02-yuge01 {
    animation: steam-powa 3s linear infinite;
    transform: translate(-2px, -8px);
}

.facility-section-icon.ill02 #ill02-yuge02 {
    animation: steam-powa 3s linear infinite;
    animation-delay: 0.75s;
    transform: translate(1px, -10px);
}

.facility-section-icon.ill02 #ill02-yuge03 {
    animation: steam-powa 3s linear infinite;
    animation-delay: 1.5s;
    transform: translate(-1px, -6px);
}

.facility-section-icon.ill02 #ill02-yuge04 {
    animation: steam-powa 3s linear infinite;
    animation-delay: 2.25s;
    transform: translate(2px, -9px);
}

.btn{
  border-radius: 8px;
}

/* ========================================
   Page Overrides - TOP
======================================== */
  /* トップページ固有のスタイル */
  .page-top .hero{
    padding-top: 100px;
}
.btn-viewmore.concept{
  padding: 4px 23px 15px;
  line-height: 1;
}

/* ========================================
   Page Overrides - FACILITY
======================================== */
.page-facility {
  /* 館内案内ページ固有のスタイル */
}

/* ========================================
   Page Overrides - SAUNA & BATH
======================================== */
  /* サウナ・お風呂ページ固有のスタイル */
.page-sauna-bath .facility-section-title-en{
  color: var(--white);
}
.page-sauna-bath .facility-section-header{
  position: relative;
}
.page-sauna-bath .facility-section-icon.ill02 {
    width: 110px;
    margin-top: 10px;
    position: absolute;
    bottom: 0;
}

/* ========================================
   Page Overrides - GUIDANCE
======================================== */
.page-guidance {
  /* ご利用案内ページ固有のスタイル */
}
/* ========================================
   Page Overrides - NEWS
======================================== */
  /* ご利用案内ページ固有のスタイル */
.page-news .main .page-hero-title-ja,
.page-news .main .page-hero-title-en{
  color: var(--main-blue);
}
.page-news .facility-intro{
    position: relative;
    padding: 0px 0 60px;
}
.page-news .news-intro-nav{
  /* background: #f00; */
  margin-bottom: 40px;
}
.page-news .news-intro-nav li{
  display: inline-block;
  margin-right: 10px;
}
.page-news .news-intro-nav li a {
    background-color: #61a0c3;
    border: 1px solid #bbd6e5;
    color: #d2e4ee;
    border-radius: 3px;
    padding: 0 10px 2px;
    font-size: 16px;
}
.page-news .news-intro-nav li a.active{
    color: var(--main-blue);
    background-color: var(--white);
}


/* ========================================
   Wave Animation
======================================== */
/* 波のパス - 初期状態（直線に見えるが、パス構造は波と同じ） */
.wave-path-bottom {
  d: path("M0,60 Q190,60 380,60 Q570,60 760,60 L760,140 L0,140 Z");
  transition: d 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.wave-path-top {
  d: path("M0,0 L0,60 Q190,60 380,60 Q570,60 760,60 L760,0 Z");
  transition: d 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* アニメーション後 - 波の形に変化 */
.wave-path-bottom.is-animated {
  d: path("M0,60 Q190,15 380,60 Q570,105 760,70 L760,140 L0,140 Z");
}

.wave-path-top.is-animated {
  d: path("M0,0 L0,60 Q190,15 380,60 Q570,105 760,70 L760,0 Z");
}

/* ========================================
   Wave Marquee
======================================== */
.wave-marquee-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 18px;
  fill: #ffffff;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.wave-path.is-animated ~ .wave-marquee-text {
  opacity: 1;
}

/* TOP - newsセクションのマーキー */
.news-wave .wave-marquee-text {
  font-size: 28px;
}

/* FACILITY - 館内案内ページのマーキー */
.page-facility .wave-marquee-text {
  fill: var(--main-blue);
}

/* ========================================
   News Page
======================================== */
.news-intro-nav {
  /* display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  margin-bottom: 40px; */
}

.news-intro-nav li a {
  display: block;
  padding: 8px 25px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--main-blue);
  background: var(--white);
  border: 1px solid #bbd6e5;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.news-intro-nav li a:hover,
.news-intro-nav li a.active {
  background: var(--main-blue);
  color: var(--white);
  border-color: var(--main-blue);
}

/* News Card */
.news-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.news-card {
  display: block;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--zabuton-blue);
}

.news-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: 20px 20px 0;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ddd;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  padding: 20px 25px 25px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.news-card-date {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 100;
    font-size: 14px;
    color: var(--main-blue);
    letter-spacing: 0;
}

.news-card-tag {
  display: inline-block;
  padding: 1px 15px 2px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--white);
  background: var(--main-blue);
  border-radius: 20px;
}

.news-card-tag-campaign {
  background: #3d7a9e;
}

.news-card-tag-news {
  background: #3d7a9e;
}

.news-card-tag-announce {
  background: #3d7a9e;
}

.news-card-tag-other {
  /* background: #6b8fa8; */
}

.news-card-title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--dark-text);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.news-card-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 10px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--main-blue);
  margin-top: auto;
}

.news-card-more::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url('../img/common/icon_btn_arrow.svg') no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-more::after {
  transform: translateX(5px);
}

/* News Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding-bottom: 60px;
}

.news-pagination-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.news-pagination-arrow::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: url('../img/common/icon_btn_arrow.svg') no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
}

.news-pagination-prev::after {
  transform: scaleX(-1);
}

.news-pagination-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

.news-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-pagination-number {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  height: 45px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.news-pagination-number:hover {
  background: rgba(255, 255, 255, 0.1);
}

.news-pagination-number.active {
  background: var(--main-blue);
  color: var(--white);
}

.news-pagination-dots {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 16px;
  color: var(--white);
  padding: 0 5px;
}

/* ========================================
   News Detail
======================================== */
.news-detail-article {
    background: var(--white);
    border-radius: 10px;
    padding: 100px 70px;
    margin-bottom: 60px;
}

.news-detail-eyecatch {
  margin-bottom: 70px;
  margin-left: 100px;
  margin-right: 100px;
}

.news-detail-eyecatch img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.news-detail-date {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 100;
  font-size: 14px;
  color: var(--main-blue);
  letter-spacing: 0;
}

.news-detail-tag {
  display: inline-block;
  padding: 1px 15px 2px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--white);
  background: var(--main-blue);
  border-radius: 20px;
}

.news-detail-tag-campaign {
  background: #3d7a9e;
}

.news-detail-tag-news {
  background: #3d7a9e;
}

.news-detail-tag-announce {
  background: #3d7a9e;
}

.news-detail-tag-other {
  /* background: #6b8fa8; */
}

.news-detail-title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--gray23);
  line-height: 1.8;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--light-blue);
}

.news-detail-content {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 15px;
  line-height: 2;
  color: var(--gray5f);
}

.news-detail-content p {
  margin-bottom: 30px;
  text-align: justify;
}

.news-detail-content a:not(.news-detail-btn) {
  color: var(--main-blue);
  text-decoration: underline;
}

.news-detail-content strong {
  font-weight: 600;
  color: var(--main-blue);
  /* text-decoration: underline; */
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.news-detail-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 580px;
  padding: 20px 30px;
  background: var(--main-blue);
  color: var(--white);
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 5px;
  border: 1px solid #bbd6e5;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.news-detail-btn::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: url('../img/common/icon_btn_arrow.svg') no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
}

.news-detail-btn:hover {
  color: var(--main-blue);
  background: var(--white);
  border: 1px solid var(--main-blue);
}

.news-detail-btn:hover::after {
  background-image: url('../img/common/icon_btn_arrow_main-blue.svg');
  filter: none;
}

/* News Detail Navigation */
.news-detail-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-bottom: 60px;
}

.news-detail-nav-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid var(--arrwbtn-light-blue);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.news-detail-nav-arrow::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: url('../img/common/icon_btn_arrow.svg') no-repeat center center;
  background-size: contain;
}

.news-detail-nav-prev::after {
  transform: scaleX(-1);
}

.news-detail-nav-arrow:hover {
  background: var(--zabuton-blue);
}

.news-detail-nav-back {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  height: 60px;
  padding: 0 40px;
  border: 1px solid var(--arrwbtn-light-blue);
  border-radius: 8px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  transition: all 0.3s ease;
}

.news-detail-nav-back:hover {
  background: var(--zabuton-blue);
  color: var(--main-blue)
}

/* ========================================
   Contact Page
======================================== */

/* Contact Hero */
.contact-hero {
  padding: 100px 40px 60px;
  text-align: center;
  background-color: var(--white);
}

.contact-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.contact-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.contact-hero-title-ja {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--main-blue);
  line-height: 1.4;
}

.contact-hero-title-en {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--main-blue);
  letter-spacing: 0.1em;
}

/* Contact Main */
.contact-main {
  background: var(--white);
  padding-bottom: 80px;
}

/* Contact Phone Card */
.contact-phone-card {
  background: var(--acd-blue);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.contact-phone-text {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 14px;
  color: var(--gray23);
  /* margin-bottom: 20px; */
  font-weight: 500;
}

.contact-phone-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 38px;
  color: var(--main-blue);
  /* margin-bottom: 10px; */
}

.contact-phone-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('../img/contact/icon_tell.svg') no-repeat center center;
  background-size: contain;
}

.contact-phone-hours {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 16px;
  color: var(--gray23);
}

/* Contact Intro */
.contact-intro {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--main-blue);
}

.contact-intro p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 16px;
  color: var(--gray23);
  line-height: 2;
}

.contact-intro a {
  color: var(--main-blue);
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 15px;
}
.contact-form-row.textArea{
  align-items: center;
}

.contact-form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 210px;
  /* padding-top: 15px; */
}

.contact-form-label-text {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--main-blue);
}

.contact-form-badge {
  display: inline-block;
  padding: 3px 12px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--white);
  border-radius: 3px;
}

.contact-form-badge-required {
  background: var(--main-blue);
}

.contact-form-badge-optional {
  background: #999;
}

.contact-form-field {
  flex: 1;
  max-width: 400px;
}

.contact-form-field-wide {
  max-width: 100%;
}

.contact-form-input {
  width: 100%;
  padding: 10px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 15px;
  border: 1px solid var(--arrwbtn-light-blue);
  border-radius: 3px;
  background: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form-input:focus {
  border-color: var(--main-blue);
}

.contact-form-textarea {
  width: 100%;
  min-height: 200px;
  padding: 15px 20px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 15px;
  border: 1px solid var(--arrwbtn-light-blue);
  border-radius: 5px;
  background: var(--white);
  outline: none;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form-textarea:focus {
  border-color: var(--main-blue);
}

/* Contact Form Checkboxes */
.contact-form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.contact-form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid var(--light-blue);
  border-radius: 3px;
  cursor: pointer;
  accent-color: var(--main-blue);
}

.contact-form-checkbox-text {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 15px;
  color: var(--gray23);
}

/* Contact Privacy */
.contact-privacy {
  margin-top: 20px;
}

.contact-privacy-box {
  background: var(--zabuton-blue);
  border: 1px solid var(--light-blue);
  border-radius: 5px;
  padding: 25px;
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 30px;
}

.contact-privacy-box p {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 14px;
  color: var(--gray5f);
  line-height: 2;
  margin-bottom: 15px;
}

.contact-privacy-box .privacy-title {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--main-blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main-blue);
}

.contact-privacy-box h4 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--main-blue);
  margin-top: 25px;
  margin-bottom: 10px;
}

.contact-privacy-box h5 {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray5f);
  margin-top: 15px;
  margin-bottom: 8px;
}

.contact-privacy-box ul,
.contact-privacy-box ol {
  margin: 10px 0 15px 20px;
  padding: 0;
}

.contact-privacy-box li {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 14px;
  color: var(--gray5f);
  line-height: 1.8;
  margin-bottom: 5px;
}

.contact-privacy-box ul li {
  list-style-type: disc;
}

.contact-privacy-box ul ul {
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact-privacy-box ul ul li {
  list-style-type: circle;
}

.contact-privacy-box ol li {
  list-style-type: decimal;
}

.contact-privacy-box .privacy-contact {
  background: var(--white);
  padding: 15px;
  border-radius: 5px;
  margin-top: 10px;
}

.contact-privacy-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.contact-privacy-agree input[type="radio"] {
  width: 20px;
  height: 20px;
  border: 1px solid var(--main-blue);
  cursor: pointer;
  accent-color: var(--main-blue);
}

.contact-privacy-agree-text {
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 15px;
  color: var(--gray5f);
}

/* Contact Submit Button */
.contact-submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 25px 40px;
  background: var(--main-blue);
  color: var(--white);
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 30px;
}

.contact-submit-btn::after {
  content: '';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url('../img/common/icon_btn_arrow.svg') no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
}

.contact-submit-btn:hover {
}

/* ========================================
   Fixed Event Button
======================================== */
.fixed-event-btn {
  position: fixed;
  bottom: 0;
  left: calc(50% - 380px);
  z-index: 1000;
  display: block;
  transition: transform 0.3s ease;
}

.fixed-event-btn img {
  display: block;
  width: 320px;
  height: auto;
}

.fixed-event-btn:hover {
  transform: scale(1.02);
}

/* 760px + 余白を考慮（content-wrapperが100%幅になる場合） */
@media screen and (max-width: 800px) {
  .fixed-event-btn {
    left: 0;
  }
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .fixed-event-btn img {
    width: 240px;
  }
}

.slick-initialized .slick-slide {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

/* ========================================
   Modal
======================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal.is-open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--main-blue);
}

.modal-body {
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-body iframe {
  display: block;
  width: 100%;
  height: 85vh;
  border: none;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .modal-content {
    width: 95vw;
    max-height: 85vh;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-body iframe {
    height: 60vh;
  }
}