/* ================================================
   うらら岩槻 デイサービス - スタイルシート v2
   モダン＆エレガント / ピンク系 / 高齢者対応
   ================================================ */

/* ---------- リセット・ベース ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 2;
  background: #fdfbfc;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

address {
  font-style: normal;
}

/* ---------- フェードインアニメーション ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 共通 ---------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
}

.section--gray {
  background: linear-gradient(180deg, #f5f0f2 0%, #faf7f8 50%, #f0eaed 100%);
}

.section--floral {
  background: linear-gradient(135deg, #fdf2f4 0%, #fef8f0 40%, #f8eff5 70%, #fdf5f0 100%);
}

.section--warm {
  background: linear-gradient(180deg, #fef9f4 0%, #fdf0e8 50%, #fef6f0 100%);
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.15em;
  color: #e8a0b0;
  margin-bottom: 12px;
}

.section__label--white {
  color: rgba(255, 255, 255, 0.6);
}

.section__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #c4586e;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 0.05em;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8a0b0, transparent);
}

.section__title--white {
  color: #fff;
}

.section__title--white::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.section__subtitle {
  font-size: 0.9rem;
  color: #999;
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 16px 44px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.4s ease;
  text-align: center;
  letter-spacing: 0.05em;
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn--white {
  background: #fff;
  color: #c4687d;
  font-weight: 700;
}

.btn--white:hover {
  background: #fff5f7;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.btn--pink {
  background: #e8a0b0;
  color: #fff;
  font-weight: 700;
}

.btn--pink:hover {
  background: #d88a9c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 176, 0.3);
}

.btn--outline-pink {
  border: 1.5px solid #e8a0b0;
  color: #c4687d;
}

.btn--outline-pink:hover {
  background: #e8a0b0;
  color: #fff;
}

.sp-only {
  display: none;
}

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

/* 上段：松永建設グループバー */
.header__top {
  background: linear-gradient(135deg, #e87d98 0%, #f0a0b4 100%);
  padding: 0;
}

.header__top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 30px;
  display: flex;
  align-items: center;
}

.header__group {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.header__group-logo {
  height: 18px;
  width: auto;
}

.header__group-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.header__group-label {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
}

/* 下段：メインヘッダー */
.header__main {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.header__logo-img {
  height: 48px;
  width: auto;
}

.header__logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: #b0a0a8;
  letter-spacing: 0.08em;
}

.header__logo-main {
  font-size: 24px;
  font-weight: 700;
  color: #e87d98;
  letter-spacing: 0.08em;
}

.header__logo-place {
  font-size: 14px;
  font-weight: 500;
  color: #8a7a82;
  margin-left: 2px;
}

/* ナビゲーション */
.header__nav {
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-link {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #5a4a52;
  border-radius: 0;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 1.5px;
  background: #e8a0b0;
  transition: transform 0.3s ease;
}

.header__nav-link:hover::after,
.header__nav-link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: #e87d98;
  background: transparent;
}

.header__nav-link--cta {
  background: #e87d98;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 9999px;
  margin-left: 8px;
}

.header__nav-link--cta::after {
  display: none;
}

.header__nav-link--cta:hover {
  background: #d6697f !important;
}


/* ハンバーガー */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.header__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #d14560;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__hamburger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ---------- ヒーロー（動画のみ） ---------- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  margin-top: 94px;
  overflow: hidden;
  background: #fce4ec;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* ---------- キャッチコピー ---------- */
.catchcopy {
  background: linear-gradient(135deg, #e87d98 0%, #f0a0b4 100%);
  color: #fff;
  text-align: center;
  padding: 80px 28px;
  position: relative;
}

.catchcopy__sub {
  font-size: 1.06rem; /* 19px */
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  opacity: 0.9;
}

.catchcopy__title {
  font-size: 2.22rem; /* 40px */
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.catchcopy__text {
  font-size: 1.06rem; /* 19px */
  font-weight: 400;
  line-height: 2;
  margin-bottom: 36px;
  opacity: 0.95;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.catchcopy__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- 施設紹介ヒーロー ---------- */
.intro {
  padding: 100px 0;
  background: #fdf6f0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(232, 125, 152, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(240, 160, 180, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 220, 200, 0.12) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 160, 176, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.intro::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 192, 204, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro__lead {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c4586e;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.intro__dots {
  letter-spacing: 0.3em;
}

.intro__body {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 3px solid #f0c0cc;
}

.intro__body p {
  font-size: 1rem;
  line-height: 2.2;
  color: #555;
  margin-bottom: 16px;
}

.intro__body p:last-child {
  margin-bottom: 0;
}

.intro__cta {
  margin-top: 36px;
}

.intro__tel {
  display: inline-block;
  background: linear-gradient(135deg, #e87d98 0%, #f0a0b4 100%);
  border-radius: 16px;
  padding: 20px 32px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(232, 125, 152, 0.25);
}

.intro__tel:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 125, 152, 0.35);
}

.intro__tel-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.intro__tel-sub {
  display: block;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 6px;
}

.intro__tel-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.intro__image {
  position: relative;
}

.intro__image img {
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.intro__image::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px solid #f0c0cc;
  z-index: -1;
}

/* ---------- うららとは ---------- */
.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about__image img {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about__text p {
  margin-bottom: 20px;
  font-size: 1rem; /* 18px */
  line-height: 2.2;
}

.about__text p:last-child {
  margin-bottom: 0;
}

/* ---------- うららの湯 ---------- */
.onsen {
  background: linear-gradient(180deg, #faf7f8 0%, #fff 100%);
}

.onsen__hero {
  margin-bottom: 44px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.onsen__hero img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.onsen__intro {
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
}

.onsen__intro p {
  font-size: 1rem; /* 18px */
  line-height: 2.2;
  color: #444;
}

/* うららの湯 PR看板 */
.onsen__pr-panel {
  max-width: 500px;
  margin: 0 auto 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.onsen__pr-panel img {
  width: 100%;
  height: auto;
  display: block;
}

/* うららの湯 特徴カード */
.onsen__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.onsen__feature {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.onsen__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.onsen__feature-img {
  overflow: hidden;
}

.onsen__feature-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.onsen__feature:hover .onsen__feature-img img {
  transform: scale(1.05);
}

.onsen__feature-title {
  font-size: 1.11rem; /* 20px */
  font-weight: 700;
  color: #d14560;
  padding: 22px 22px 10px;
}

.onsen__feature-text {
  font-size: 0.89rem; /* 16px */
  color: #444;
  line-height: 2;
  padding: 0 22px 28px;
}

/* うららの湯 ギャラリー */
.onsen__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.onsen__gallery-item {
  border-radius: 10px;
  overflow: hidden;
}

.onsen__gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.onsen__gallery-item:hover img {
  transform: scale(1.08);
}

/* ラドン発生証明書 */
.onsen__certificate {
  margin-top: 48px;
}

.onsen__certificate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 32px;
}

.onsen__certificate-doc {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #f9f9f9;
}

.onsen__certificate-doc img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.onsen__certificate-doc:hover img {
  transform: scale(1.02);
}

.onsen__certificate-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d14560;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}

.onsen__certificate-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #f48fb1;
  border-radius: 2px;
}

.onsen__certificate-text p {
  font-size: 1rem;
  line-height: 2;
  color: #555;
  margin-bottom: 24px;
}

.onsen__certificate-btn {
  display: inline-block;
}

@media (max-width: 768px) {
  .onsen__certificate-inner {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 24px;
  }
}

/* ---------- 1日の流れ ---------- */
.schedule__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}

.schedule__timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, #f8a4c0 0%, #f48fb1 100%);
  border-radius: 2px;
}

.schedule__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}

.schedule__item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid #f48fb1;
  border-radius: 50%;
  z-index: 1;
}

.schedule__item:last-child {
  margin-bottom: 0;
}

.schedule__time {
  min-width: 80px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #d14560;
  padding-top: 2px;
}

.schedule__content {
  background: #fff;
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
  flex: 1;
}

.schedule__content-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.schedule__content-text {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
}

.schedule__note {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  margin-top: 32px;
}

/* ---------- 料金表 ---------- */
.price__table-wrap {
  max-width: 700px;
  margin: 0 auto;
  overflow-x: auto;
}

.price__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.price__table th {
  background: #f48fb1;
  color: #fff;
  font-weight: 700;
  padding: 16px 24px;
  text-align: center;
  font-size: 1.02rem;
}

.price__table th:first-child {
  border-radius: 10px 0 0 0;
}

.price__table th:last-child {
  border-radius: 0 10px 0 0;
}

.price__table td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.price__table tr:nth-child(even) {
  background: #fef6f8;
}

.price__table tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}

.price__table tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

.price__note {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  margin-top: 24px;
}

/* ---------- 特徴カード ---------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 44px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.feature-card__icon {
  color: #e8546b;
  margin-bottom: 24px;
}

.feature-card__title {
  font-size: 1.22rem; /* 22px */
  font-weight: 700;
  color: #d14560;
  margin-bottom: 14px;
}

.feature-card__text {
  font-size: 1rem; /* 18px */
  color: #444;
  line-height: 2;
}

/* ---------- 施設案内 ---------- */
.facility__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.facility__item {
  overflow: hidden;
  border-radius: 12px;
}

.facility__item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.facility__item:hover img {
  transform: scale(1.03);
}

.facility__caption {
  text-align: center;
  font-size: 1rem; /* 18px */
  font-weight: 600;
  color: #d14560;
  margin-top: 12px;
}

/* ---------- イベント・活動 ---------- */
.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.event-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.event-card__img {
  position: relative;
  overflow: hidden;
}

.event-card__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card__img img {
  transform: scale(1.05);
}

.event-card__season {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  background: rgba(244, 143, 177, 0.9);
}

.event-card__season--spring { background: rgba(240, 128, 160, 0.9); }
.event-card__season--summer { background: rgba(80, 180, 170, 0.9); }
.event-card__season--autumn { background: rgba(220, 150, 80, 0.9); }
.event-card__season--winter { background: rgba(120, 140, 200, 0.9); }
.event-card__season--allyear { background: rgba(180, 140, 180, 0.9); }

.event-card__body {
  padding: 22px;
}

.event-card__title {
  font-size: 1.11rem;
  font-weight: 700;
  color: #d14560;
  margin-bottom: 10px;
}

.event-card__text {
  font-size: 0.89rem;
  color: #444;
  line-height: 2;
}

/* イベントフォトギャラリー（季節スライダー） */
.events__gallery {
  border-radius: 20px;
  padding: 40px 32px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  transition: background 1.2s ease;
}

/* 季節ごとの背景 - 装飾SVG付き */
.events__gallery[data-bg="spring"] {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23f8a0b8' fill-opacity='0.15'%3E%3Ccircle cx='60' cy='60' r='5'/%3E%3Ccircle cx='60' cy='48' r='8'/%3E%3Ccircle cx='60' cy='72' r='8'/%3E%3Ccircle cx='48' cy='60' r='8'/%3E%3Ccircle cx='72' cy='60' r='8'/%3E%3Ccircle cx='20' cy='20' r='4'/%3E%3Ccircle cx='20' cy='12' r='6'/%3E%3Ccircle cx='20' cy='28' r='6'/%3E%3Ccircle cx='12' cy='20' r='6'/%3E%3Ccircle cx='28' cy='20' r='6'/%3E%3Ccircle cx='100' cy='90' r='3'/%3E%3Ccircle cx='100' cy='84' r='5'/%3E%3Ccircle cx='100' cy='96' r='5'/%3E%3Ccircle cx='94' cy='90' r='5'/%3E%3Ccircle cx='106' cy='90' r='5'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, #fce4ec 0%, #f8bbd0 40%, #fce4ec 70%, #fff0f5 100%);
}
.events__gallery[data-bg="summer"] {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%2380cbc4' fill-opacity='0.12'%3E%3Ccircle cx='50' cy='50' r='12'/%3E%3Cline x1='50' y1='30' x2='50' y2='10' stroke='%2380cbc4' stroke-opacity='0.12' stroke-width='3'/%3E%3Cline x1='50' y1='70' x2='50' y2='90' stroke='%2380cbc4' stroke-opacity='0.12' stroke-width='3'/%3E%3Cline x1='30' y1='50' x2='10' y2='50' stroke='%2380cbc4' stroke-opacity='0.12' stroke-width='3'/%3E%3Cline x1='70' y1='50' x2='90' y2='50' stroke='%2380cbc4' stroke-opacity='0.12' stroke-width='3'/%3E%3Ccircle cx='15' cy='15' r='6'/%3E%3Ccircle cx='85' cy='85' r='6'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 40%, #e0f7fa 70%, #f0faf8 100%);
}
.events__gallery[data-bg="autumn"] {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23e6a060' fill-opacity='0.12'%3E%3Cpath d='M50 20 C55 30 60 35 55 45 C60 40 70 38 65 48 C58 44 52 46 50 55 C48 46 42 44 35 48 C30 38 40 40 45 45 C40 35 45 30 50 20Z'/%3E%3Cpath d='M15 70 C18 76 22 78 20 84 C23 80 28 79 26 85 C22 82 19 83 17 88 C15 83 13 82 9 85 C7 79 12 80 14 84 C11 78 14 75 15 70Z'/%3E%3Cpath d='M80 75 C83 81 87 83 85 89 C88 85 93 84 91 90 C87 87 84 88 82 93 C80 88 78 87 74 90 C72 84 77 85 79 89 C76 83 79 80 80 75Z'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, #fff3e0 0%, #ffe0b2 40%, #fff8e1 70%, #fffaf0 100%);
}
.events__gallery[data-bg="winter"] {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%239fa8da' fill-opacity='0.1'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='70' cy='20' r='2.5'/%3E%3Ccircle cx='20' cy='60' r='1.5'/%3E%3Ccircle cx='60' cy='70' r='2'/%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3Ccircle cx='55' cy='45' r='1.5'/%3E%3Ccircle cx='15' cy='40' r='1'/%3E%3Ccircle cx='65' cy='10' r='1'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, #e8eaf6 0%, #c5cae9 40%, #e3f2fd 70%, #f5f5ff 100%);
}

.events__gallery-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: #c4586e;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.events__gallery-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8a0b0, transparent);
}

/* 季節切り替えボタン */
.events__gallery-seasons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.events__season-btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  padding: 6px 22px;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
}

.events__season-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #c4586e;
}

.events__season-btn.is-active {
  background: #fff;
  color: #c4586e;
  border-color: #e8a0b0;
  box-shadow: 0 4px 12px rgba(232, 160, 176, 0.2);
}

/* グリッド表示 */
.events__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.events__gallery-item {
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  padding-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.events__gallery-item.is-hidden {
  display: none;
}

.events__gallery-grid.is-fading {
  opacity: 0;
  transform: translateY(12px);
}

/* 通年の背景 */
.events__gallery[data-bg="all-year"] {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23e8a0b0' fill-opacity='0.1'%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3Ccircle cx='10' cy='10' r='3'/%3E%3Ccircle cx='70' cy='20' r='2.5'/%3E%3Ccircle cx='20' cy='60' r='2'/%3E%3Ccircle cx='60' cy='70' r='3'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, #fef6f8 0%, #fce4ec 40%, #fff0f5 70%, #fff 100%);
}

.events__gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.events__gallery-item:hover img {
  transform: scale(1.05);
}

.events__gallery-item span {
  display: block;
  font-size: 0.85rem;
  color: #555;
  margin-top: 10px;
  font-weight: 600;
}

/* 年間行事カレンダー */
.events__calendar {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.events__calendar-title {
  text-align: center;
  font-size: 1.22rem;
  font-weight: 700;
  color: #d14560;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 14px;
}

.events__calendar-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #f48fb1;
  border-radius: 2px;
}

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

.events__month {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff7f8;
  border-radius: 10px;
  border-left: 3px solid #f48fb1;
}

.events__month-label {
  font-size: 0.83rem;
  font-weight: 700;
  color: #d14560;
  white-space: nowrap;
  min-width: 32px;
}

.events__month-text {
  font-size: 0.83rem;
  color: #555;
}

/* ---------- お知らせ ---------- */
.news__list {
  max-width: 860px;
  margin: 0 auto;
}

.news__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.news__item:first-child {
  border-top: 1px solid #eee;
}

.news__date {
  font-size: 0.89rem; /* 16px */
  color: #777;
  white-space: nowrap;
  min-width: 100px;
}

.news__tag {
  display: inline-block;
  font-size: 0.78rem; /* 14px */
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 50px;
  background: #fce4ec;
  color: #d14560;
  white-space: nowrap;
}

.news__tag--event {
  background: #fff3e0;
  color: #e65100;
}

.news__link {
  font-size: 1rem; /* 18px */
  color: #333;
  transition: color 0.2s ease;
}

.news__link:hover {
  color: #e8546b;
}

.news__more {
  text-align: center;
  margin-top: 44px;
}

/* ---------- CTA（お問い合わせ） ---------- */
.cta {
  background: linear-gradient(135deg, #e87d98 0%, #f0a0b4 100%);
  text-align: center;
  color: #fff;
}

.cta__text {
  font-size: 1.11rem; /* 20px */
  margin-bottom: 36px;
  opacity: 0.95;
  line-height: 2;
}

.cta__tel {
  margin-bottom: 36px;
}

.cta__tel-label {
  font-size: 1rem; /* 18px */
  opacity: 0.85;
  margin-bottom: 10px;
}

.cta__tel-number {
  display: inline-block;
  font-size: 2.44rem; /* 44px */
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.cta__tel-note {
  font-size: 0.89rem; /* 16px */
  opacity: 0.75;
  margin-top: 6px;
}

/* ---------- ページヒーロー（下層ページ共通） ---------- */
.page-hero {
  margin-top: 94px;
  background: linear-gradient(135deg, #e87d98 0%, #f0a0b4 100%);
  text-align: center;
  padding: 72px 28px;
  color: #fff;
}

.page-hero__label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 8px;
}

.page-hero__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero__text {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* ---------- 写真付きページヒーロー ---------- */
.page-hero--photo {
  position: relative;
  margin-top: 94px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero--photo .page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 125, 152, 0.75) 0%, rgba(240, 160, 180, 0.65) 100%);
  z-index: 1;
}

.page-hero--photo .page-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 72px 28px;
  color: #fff;
}

/* ---------- 写真＋テキスト横並び ---------- */
.photo-text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  align-items: center;
  margin-bottom: 80px;
}

.photo-text-row--reverse {
  grid-template-columns: 1fr 1fr;
}

.photo-text-row--reverse .photo-text-row__image {
  order: 2;
}

.photo-text-row--reverse .photo-text-row__text {
  order: 1;
}

.photo-text-row__image img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.photo-text-row__text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c4586e;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid #f0c0cc;
  display: inline-block;
}

.photo-text-row__text p {
  font-size: 1rem;
  line-height: 2.2;
  color: #555;
  margin-bottom: 14px;
}

/* ---------- ページ誘導バナーカード ---------- */
.page-links {
  padding: 80px 0;
}

.page-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-link-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.page-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.page-link-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.page-link-card:hover .page-link-card__img {
  transform: scale(1.08);
}

.page-link-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.page-link-card__body {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}

.page-link-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-link-card__desc {
  font-size: 0.82rem;
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ---------- 求人ページ ---------- */
.recruit-message {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.recruit-message p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 16px;
}

/* 魅力ポイント */
.recruit-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.recruit-point {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  position: relative;
}

.recruit-point__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f8a4c0;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}

.recruit-point__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #d14560;
  margin-bottom: 10px;
}

.recruit-point__text {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
}

/* 求人カード */
.recruit-jobs {
  max-width: 700px;
  margin: 0 auto 40px;
}

.recruit-job-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #f48fb1;
  position: relative;
}

.recruit-job-card__badge {
  display: inline-block;
  background: #f48fb1;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.recruit-job-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.recruit-job-card__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.recruit-job-card__table th {
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  color: #d14560;
  padding: 12px 16px;
  width: 120px;
  vertical-align: top;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}

.recruit-job-card__table td {
  font-size: 0.95rem;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.7;
}

.recruit-job-card__actions {
  text-align: center;
}

.btn--pink {
  display: inline-block;
  padding: 16px 40px;
  background: #f48fb1;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(244, 143, 177, 0.3);
}

.btn--pink:hover {
  background: #ec6d93;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 143, 177, 0.4);
}

.recruit-other {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.recruit-other p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

/* ---------- フッター ---------- */
.footer {
  background: #3d2030;
  color: #c8b0b8;
  padding: 72px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.footer__logo-main {
  font-size: 1.22rem; /* 22px */
  font-weight: 700;
  color: #fff;
}

.footer__logo-sub {
  font-size: 0.72rem; /* 13px */
  color: #f48fb1;
  letter-spacing: 0.1em;
}

.footer__company {
  font-size: 0.83rem; /* 15px */
  color: #aaa;
  margin-bottom: 14px;
}

.footer__address {
  font-size: 0.89rem; /* 16px */
  line-height: 2;
  color: #bbb;
}

.footer__address a {
  color: #f48fb1;
}

.footer__address a:hover {
  color: #f8bbd0;
}

.footer__map iframe {
  border-radius: 8px;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.89rem; /* 16px */
  color: #bbb;
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: #f48fb1;
}

.footer__copy {
  text-align: center;
  font-size: 0.72rem; /* 13px */
  color: #777;
  margin-top: 26px;
}

/* ---------- お問い合わせページ ---------- */
.page-hero {
  margin-top: 106px;
  background: linear-gradient(135deg, #f48fb1 0%, #f8a4c0 100%);
  padding: 48px 24px;
  text-align: center;
  color: #fff;
}

.page-hero__label {
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 8px;
}

.page-hero__title {
  font-size: 1.78rem;
  font-weight: 700;
}

/* 電話ボックス */
.contact__tel-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
}

.contact__tel-heading {
  font-size: 1.22rem;
  font-weight: 700;
  color: #d14560;
  margin-bottom: 16px;
}

.contact__tel-number {
  display: inline-block;
  font-size: 2.44rem;
  font-weight: 700;
  color: #d14560;
  letter-spacing: 0.05em;
}

.contact__tel-note {
  font-size: 0.89rem;
  color: #777;
  margin-top: 8px;
}

/* フォームボックス */
.contact__form-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
}

.contact__form-heading {
  font-size: 1.22rem;
  font-weight: 700;
  color: #d14560;
  margin-bottom: 16px;
  text-align: center;
}

.contact__form-desc {
  text-align: center;
  font-size: 1rem;
  color: #555;
  line-height: 2;
  margin-bottom: 32px;
}

.contact__form-embed {
  max-width: 700px;
  margin: 0 auto;
}

.contact__form-embed iframe {
  border-radius: 8px;
}

.contact__form-placeholder {
  display: none;
}

.contact__form-placeholder-inner {
  text-align: center;
  padding: 60px 24px;
  background: #fff7f8;
  border-radius: 12px;
  border: 2px dashed #f48fb1;
}

.contact__form-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.contact__form-placeholder-inner h3 {
  font-size: 1.22rem;
  color: #d14560;
  margin-bottom: 12px;
}

.contact__form-placeholder-inner p {
  font-size: 1rem;
  color: #666;
  line-height: 2;
  margin-bottom: 24px;
}

.contact__form-privacy {
  text-align: center;
  font-size: 0.83rem;
  color: #999;
  margin-top: 20px;
}

/* アクセス */
.contact__access {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact__access-heading {
  font-size: 1.22rem;
  font-weight: 700;
  color: #d14560;
  margin-bottom: 28px;
  text-align: center;
}

.contact__access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact__access-table {
  width: 100%;
  border-collapse: collapse;
}

.contact__access-table th,
.contact__access-table td {
  padding: 12px 16px;
  font-size: 0.89rem;
  border-bottom: 1px solid #f0e0e3;
  text-align: left;
  vertical-align: top;
}

.contact__access-table th {
  font-weight: 700;
  color: #d14560;
  white-space: nowrap;
  width: 110px;
}

.contact__access-table td {
  color: #444;
}

.contact__access-table td a {
  color: #d14560;
}

.contact__access-map iframe {
  border-radius: 8px;
}

@media (max-width: 768px) {
  .page-hero {
    margin-top: 90px;
    padding: 36px 20px;
  }

  .page-hero__title {
    font-size: 1.44rem;
  }

  .contact__tel-box,
  .contact__form-box,
  .contact__access {
    padding: 28px 16px;
  }

  .contact__tel-number {
    font-size: 1.89rem;
  }

  .contact__access-inner {
    grid-template-columns: 1fr;
  }

  .contact__form-embed iframe {
    height: 1000px;
  }
}

/* ================================================
   レスポンシブ
   ================================================ */

/* タブレット */
@media (max-width: 900px) {
  .intro {
    padding: 72px 0;
  }

  .intro__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro__lead {
    font-size: 1.5rem;
    text-align: center;
  }

  .intro__body {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }

  .intro__cta {
    text-align: center;
  }

  .intro__image::before {
    display: none;
  }

  .about__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .onsen__features {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto 48px;
  }

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

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

  .events__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .events__gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .events__calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }
}

/* スマートフォン */
@media (max-width: 768px) {
  html {
    font-size: 17px; /* スマホでも大きめに維持 */
  }

  .sp-only {
    display: inline;
  }

  /* ヘッダー */
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 100px 32px 40px;
    z-index: 1000;
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }

  .header__nav-link {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    color: #333;
    border-bottom: 1px solid #f0e0e3;
    border-radius: 0;
  }

  .header__nav-link--cta {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
    border-bottom: none;
    border-radius: 50px;
    padding: 14px 0;
  }

  /* 上段バー スマホ */
  .header__top-inner {
    height: 30px;
  }

  .header__group-name {
    font-size: 13px;
  }

  .header__group-label {
    font-size: 11px;
  }

  .header__inner {
    height: 60px;
  }

  .header__logo-main {
    font-size: 24px;
  }

  .header__logo-place {
    font-size: 16px;
  }

  /* ヒーロー */
  .hero {
    aspect-ratio: 16 / 9;
    max-height: 50vh;
    margin-top: 90px; /* 30 + 60 */
  }

  /* キャッチコピー */
  .catchcopy {
    padding: 48px 20px;
  }

  .catchcopy__sub {
    font-size: 0.94rem;
  }

  .catchcopy__title {
    font-size: 1.65rem; /* 28px */
  }

  .catchcopy__text {
    font-size: 1rem;
  }

  .catchcopy__buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .catchcopy__buttons .btn {
    width: 80%;
    max-width: 300px;
  }

  /* セクション */
  .section {
    padding: 64px 0;
  }

  .section__title {
    font-size: 1.44rem; /* 26px */
  }

  /* うららの湯 */
  .onsen__hero img {
    aspect-ratio: 16 / 9;
  }

  .onsen__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* 施設 */
  .facility__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  /* イベント */
  .events__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 48px;
  }

  .events__gallery {
    padding: 28px 16px;
  }

  .events__slide {
    min-width: 100%;
  }

  .events__gallery-seasons {
    gap: 8px;
  }

  .events__season-btn {
    padding: 6px 20px;
    font-size: 0.85rem;
  }

  .events__calendar {
    padding: 28px 20px;
  }

  .events__calendar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .events__month {
    padding: 10px 12px;
    gap: 8px;
  }

  /* お知らせ */
  .news__item {
    flex-wrap: wrap;
    gap: 10px;
  }

  .news__date {
    min-width: auto;
  }

  .news__link {
    width: 100%;
  }

  /* CTA */
  .cta__tel-number {
    font-size: 1.89rem; /* 34px */
  }

  /* フッター */
  .footer__nav {
    gap: 18px;
  }
}

  /* 新コンポーネント レスポンシブ */
  .page-hero--photo {
    min-height: 240px;
  }

  .photo-text-row,
  .photo-text-row--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .photo-text-row--reverse .photo-text-row__image,
  .photo-text-row--reverse .photo-text-row__text {
    order: unset;
  }

  .page-links__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .page-link-card {
    aspect-ratio: 16 / 9;
  }

  .page-link-card__body {
    padding: 8px;
  }

  .page-link-card__title {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }

  .page-link-card__desc {
    display: none;
  }

  /* 求人ページ レスポンシブ */
  .page-hero {
    margin-top: 84px;
    padding: 48px 20px;
  }

  .page-hero__title {
    font-size: 1.6rem;
  }

  .recruit-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .recruit-job-card {
    padding: 24px 20px;
  }

  .recruit-job-card__table th {
    width: 90px;
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  .recruit-job-card__table td {
    padding: 10px 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 16px; /* 最小でも16px */
  }

  .catchcopy__title {
    font-size: 1.5rem; /* 24px */
  }

  .feature-card {
    padding: 36px 20px;
  }

  .cta__text {
    font-size: 1rem;
  }

  .onsen__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    padding: 14px 32px;
  }
}
