@charset "utf-8";

:root {
  /* 画像 */
  --onsen-bath-image: url("../assets/images/top/sec_onsen4.jpg?20260304");
  --onsen-bath-image2: url("../assets/images/top/sec_onsen2.jpg?20260303");
  /* --dining-hall-image: url("../assets/images/top/sec_restaurant.jpg"); */
  --dining-hall-image: url("../assets/images/top/sec_dinner3.jpg?20260223-01");
  --guest-room-image: url("../assets/images/top/sec_stay.jpg");

  /* テキスト（見出し・本文とも --text-brown を使用） */
  --text-brown: #522310;
  --text-dark: #331702;

  --font-rikurei: 陸隷;

  /* 背景・枠 */
  --background-white: #fff;
  --background-yellow: #f9f8ef;
  --surface-light: #f9f4ec;
  --surface-dark: #2c241c;
  --border-light: #efe5d4;

  /* アクセント・その他 */
  --accent: #c89441;
  --accent-soft: #f0d9b3;
  --pricing-icon: #d9b9af;
  --color-white: #fff;

  /* テーマ色（温泉・食事・宿泊）※ボタン円・ニュースタグ・ニュースラベル等で共通利用 */
  --color-onsen: #ae1719;
  --color-dining: #d26500;
  --color-stay: #597d05;

  /* もっと見るボタン（矢印ストローク） */
  --button-arrow-stroke: #523f10;

  /* その他UI */
  --reservation-btn-bg: #cddcab;
  --footer-text: #6b5344;
  /* 線：--text-brown の透明度 0.2 */
  --line-brown: color-mix(in srgb, var(--text-brown) 20%, transparent);
  --footer-divider: var(--line-brown);
  --footer-bar-bg: #722a2a;

  /* セクション・見出しの余白（固定） */
  --section-gap: 100px;
  --section-title-margin-bottom: 60px;
}

@font-face {
  font-family: "slick";
  font-display: swap;
}

/* ふわっと表示（左右上下から）*/
.head-load-down {
  animation-name: fade-down;
  animation-duration: 1s;
}
.head-load-up {
  animation-name: fade-up;
  animation-duration: 1s;
}
.head-load-left {
  animation-name: fade-left;
  animation-duration: 1s;
}
.head-load-right {
  animation-name: fade-right;
  animation-duration: 1s;
}
.main-load-left {
  animation-name: load-left;
  animation-duration: 1s;
}
.main-load-right {
  animation-name: load-right;
  animation-duration: 1s;
}
@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-left {
  from {
    opacity: 0;
    transform: translate(-20px, -20px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes fade-right {
  from {
    opacity: 0;
    transform: translate(20px, -20px);
  }
  to {
    opacity: 1;
    transform: translate(0px);
  }
}
@keyframes load-left {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes load-right {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

/* ===== 上にふわっと ===== */
.scroll-up,
.load-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease,
    transform 1s ease;
  will-change: opacity, transform;
}

.scroll-up.done,
.load-up.done {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade,
.load-fade {
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: opacity;
}

.scroll-fade.done,
.load-fade.done {
  opacity: 1;
}

.scroll-up.done.onsen-cloud,
.load-up.done.onsen-cloud,
.scroll-up.done.dining-cloud,
.load-up.done.dining-cloud,
.scroll-up.done.stay-cloud,
.load-up.done.stay-cloud {
  opacity: 0.9;
}

/* 下からふわっと */
/* .scroll-up,
.scroll-fade {
  opacity: 0;
  transform: translate3d(0, 40px, 0); 
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
  backface-visibility: hidden; 
}

.scroll-up.done,
.scroll-fade.done {
  opacity: 1;
  transform: translate3d(0, 0, 0);
} */

.sp-only {
  display: none !important;
}

.center {
  text-align: center;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /* font-family: "Noto Sans JP", "Noto Sans", sans-serif; */
  font-family: "ヒラギノ角ゴ W2", sans-serif;
  color: var(--text-dark);
  background: var(--background-white);
  font-size: 16px;
  line-height: 1.36;
}

/* セクション間は 100px 固定 */
main {
  overflow-x: hidden;
}

main > section + section {
  margin-top: var(--section-gap);
}

/* .info-section は padding-top で余白を取るため margin はつけない（200px にならないように） */
main > section + section.info-section {
  margin-top: 0;
}

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

.rikurei {
  font-family: var(--font-rikurei), sans-serif;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding-top: 100px;
}

/* レイアウト: PC 850px以上＝コンテンツ1080px、1280px以上で中央、未満は左右100px余白。スマホ850px未満＝左右3%余白 */
.container {
  width: 94%;
  margin: 0 auto;
}

.tripla .search-widget-search-container-bf1818 {
  margin-bottom: 40px;
  /* text-align: center; */
}

@media (max-width: 992px) {
  .tripla .search-widget-search-container-bf1818 {
    width: 100% !important;
  }
}

@media only screen and (max-width: 992px) {
  .search-widget-search-container-bf1818 .search-widget-button-wrapper-d2b715 {
    display: block !important;
  }
}

@media (min-width: 851px) and (max-width: 1279px) {
  .container {
    width: 1080px;
    margin-left: 100px;
    margin-right: 100px;
  }
}

@media (min-width: 1280px) {
  .container {
    width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
}

.site-header {
  background-color: rgba(255, 255, 255, 0.9);
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
  padding-top: 10px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 0;
  gap: 30px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 78px;
}

.brand-logo {
  width: 185px;
  height: 70px;
}

.reserve-button {
  display: none;
}

.site-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding-bottom: 4px;
  font-size: 15px;
  line-height: 20.43px;
  font-weight: 600;
  color: var(--text-brown);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-onsen);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link.orange::after {
  background: var(--color-dining);
}

.nav-link.green::after {
  background: var(--color-stay);
}

.nav-link:hover::after,
.nav-link.is-current::after {
  transform: scaleX(1);
}

.noren-menu {
  width: 170px;
  height: 134px;
  /* background-image: url("../assets/icons/icon_noren.svg"); */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 11px 0px 9px;
  align-self: flex-start;
  margin-top: -5px;
}

/* .noren-menu:hover {
  background-image: url("../assets/icons/icon_noren2.svg");
} */

.noren-menu__icon img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.noren-menu__icon img {
}

.noren-menu__icon .noren-menu__icon-normal {
  opacity: 1;
}
.noren-menu__icon .noren-menu__icon-temp {
  opacity: 0;
}
.noren-menu__icon .noren-menu__icon-hover {
  opacity: 0;
  transition: all 0.4s ease;
}
.noren-menu:hover > .noren-menu__icon > .noren-menu__icon-normal {
  opacity: 0;
}
.noren-menu:hover > .noren-menu__icon > .noren-menu__icon-temp {
  opacity: 1;
}
.noren-menu:hover > .noren-menu__icon > .noren-menu__icon-hover {
  opacity: 1;
}

/* 851px以上：ハンバーガー非表示、ドロワー内のれんメニュー非表示、メインナビは横並び */
@media (min-width: 851px) {
  .header-hamburger {
    display: none;
  }

  .header-drawer__sub {
    display: none;
  }

  .header-drawer__main {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }
}

.noren-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-white);
  transition: all 0.3s ease;
  z-index: 1;
}

.hero {
  color: var(--color-white);
  padding: 0;
  min-height: 800px;
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

/* トップスライダー（Slick） */
.hero-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
  height: 800px;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .hero-slide {
  height: 100%;
}

.hero-slider .hero-slide {
  position: relative;
}

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

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-inner .hero-caption {
  pointer-events: auto;
}

.hero-news {
  z-index: 10;
  pointer-events: auto;
}

/* トップスライダー：Slick 矢印・ドット */
.hero-slider button.slick-prev,
.hero-slider button.slick-next {
  z-index: 11;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--text-brown) 50%, transparent) !important;
  border-radius: 50%;
  transition:
    left 0.2s ease,
    right 0.2s ease;
}

.hero-slider button.slick-prev:hover,
.hero-slider button.slick-prev:focus,
.hero-slider button.slick-prev:focus-visible,
.hero-slider button.slick-next:hover,
.hero-slider button.slick-next:focus,
.hero-slider button.slick-next:focus-visible {
  background: color-mix(in srgb, var(--text-brown) 50%, transparent) !important;
}

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

.hero-slider button.slick-prev:hover {
  left: 8px;
}

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

.hero-slider button.slick-next:hover {
  right: 8px;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin: auto;
  box-sizing: border-box;
  opacity: 0.75;
}

.hero-slider .slick-prev:before {
  margin: 0 16px;
  border-top: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

.hero-slider .slick-next:before {
  margin: 0 13px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(45deg);
}

.hero-slider .slick-prev:hover:before,
.hero-slider .slick-prev:focus:before,
.hero-slider .slick-next:hover:before,
.hero-slider .slick-next:focus:before {
  opacity: 0.75;
}

.hero-slider .slick-dots {
  display: block !important;
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 11;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero-slider .slick-dots li button:before {
  display: none;
}

.hero-slider .slick-dots li.slick-active button {
  background: var(--color-onsen);
  opacity: 1;
}

.hero-slider .slick-dots li button:hover {
  background: color-mix(in srgb, var(--color-onsen) 70%, transparent);
}

@media (min-width: 851px) and (max-width: 1279px) {
  .hero {
    width: 1280px;
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
}

.hero-caption {
  font-size: 32px;
  line-height: 45px;
  letter-spacing: -0.02em;
  writing-mode: vertical-rl;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px 20px;
  position: absolute;
  right: 11%;
  top: 110px;
}

.hero-caption-line {
  display: block;
}

.hero-caption-line--indent {
  margin-top: 1.5em;
}

.hero-news {
  position: absolute;
  left: 0;
  bottom: 80px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(800px, 100%);
  height: 55px;
  padding: 0 40px 0 100px;
  border-radius: 0 999px 999px 0;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-brown);
}

.hero-news-ticker {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-news-ticker__item {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}

.hero-news-ticker__item--current {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-news-ticker__item--leave {
  opacity: 0;
  transform: translateY(-15px);
}

.hero-news-ticker__link {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.hero-news-ticker__link:hover {
  opacity: 0.7;
}

.hero-news-label {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: var(--color-onsen);
  transition: opacity 0.3s ease;
}

.hero-news-label:hover {
  opacity: 0.7;
}

.hero-news-divider {
  width: 1px;
  height: 28px;
  background: var(--line-brown);
}

.hero-news-date {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.hero-news-title {
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-title {
  margin: 0;
  font-size: 24px;
  line-height: 25.68px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.hero-lead {
  font-size: 24px;
  line-height: 25.68px;
  font-weight: 400;
  margin: 0;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--color-white);
  padding: 10px 22px;
  border-radius: 999px;
  width: fit-content;
  font-size: 15px;
  line-height: 20.43px;
  font-weight: 600;
}

.reservation-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: fixed;
  top: 60vh;
  bottom: auto;
  right: 0;
  margin: 0;
  z-index: 10;
  padding: 18px 12px;
  border-radius: 0;
  border: none;
  background: color-mix(in srgb, var(--reservation-btn-bg) 80%, transparent);
  color: var(--text-dark);
  letter-spacing: 0.2em;
}

.reservation-text {
  letter-spacing: 0.15em;
  font-size: 15px;
  line-height: 16px;
  font-weight: 600;
  writing-mode: vertical-rl;
  transition: opacity 0.2s ease;
}

.reservation-cta:hover .reservation-text {
  opacity: 0.7;
}

.reservation-cta:hover .reservation-icon {
  opacity: 0.7;
}

.reservation-icon {
  width: 22px;
  height: 22px;
  transition: opacity 0.2s ease;
}

/* topへ戻るボタン（共通：PC・スマホ） */
.pagetop-cta {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  padding: 0;
  background: transparent;
  color: var(--text-brown);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.pagetop-cta.is-visible {
  display: inline-flex;
}

.pagetop-cta:hover {
  opacity: 0.85;
}

.pagetop-cta__icon {
  display: block;
  width: 28px;
  height: 28px;
}

.pagetop-cta__text {
  display: block;
  color: var(--color-onsen);
}

.feature {
  padding: 90px 0;
  background: var(--background-white);
}

.onsen-section {
  padding: 0;
}

.onsen-stage {
  position: relative;
  width: 94%;
  max-width: 1280px;
  height: 660px;
  margin: 0 auto;
}

.onsen-badge {
  position: absolute;
  left: 1040px;
  top: -44px;
  width: 140px;
  height: 82px;
  z-index: 2;
}

.onsen-badge img,
.dining-badge img,
.stay-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.onsen-badge .badge-text,
.dining-badge .badge-text,
.stay-badge .badge-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -8px 9px 0 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-white);
  pointer-events: none;
}

.onsen-badge .badge-text {
  margin: -8px 9px 0 0;
}
.dining-badge .badge-text {
  margin: -82px 6px 0 0;
}
.stay-badge .badge-text {
  margin: 15px 6px 0 0;
}

.onsen-photo {
  position: absolute;
  left: 420px;
  top: 0;
  width: 720px;
  height: 540px;
  overflow: hidden;
  z-index: 1;
}

.onsen-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--onsen-bath-image);
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}
.top2 .onsen-photo::before {
  background-image: var(--onsen-bath-image2);
}

/* 画像拡大はリンクがある画像のみ（onsen-photo はリンクではないためなし） */

.onsen-cloud {
  position: absolute;
  left: 100px;
  top: 310px;
  width: 548px;
  height: 152px;
  opacity: 0.8;
  background-image: url("../assets/decor/onsen-cloud.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 38px;
  gap: 18px;
  z-index: 2;
}

.onsen-cloud-text {
  margin: 0;
  font-size: 24px;
  line-height: 25.68px;
  font-weight: 400;
  color: var(--text-dark);
  text-shadow:
    0 -1px 2px var(--color-white),
    2px 2px 3px var(--color-white);
  left: 150px;
  position: absolute;
  top: 82px;
}

.onsen-cloud-text--top {
  position: absolute;
  top: 42px;
  left: 100px;
}

.onsen-body {
  position: absolute;
  left: 420px;
  top: 554px;
  width: 720px;
  z-index: 2;
}

.onsen-more {
  position: absolute;
  left: 234px;
  top: 613px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: 40px;
  overflow: visible;
}

.onsen-more .more-button-text {
  position: static;
  transform: none;
  left: auto;
  top: auto;
}

.onsen-more .onsen-more-svg {
  position: static;
  left: auto;
  top: auto;
  flex-shrink: 0;
  z-index: 0;
  display: block;
  width: 61px;
  height: 40px;
  overflow: visible;
}

.more-button-arrow {
  transition: transform 0.25s ease;
  transform-origin: left center;
  transform-box: fill-box;
  transform: scaleX(0.92);
}

.more-button-circle {
  transition: transform 0.25s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.more-button:hover .more-button-arrow {
  transform: scaleX(1);
}

.more-button:hover .more-button-circle {
  transform: scale(1.15);
}

/* もっと見るボタン・丸の色はカラー定義で指定 */
.onsen-more .more-button-circle {
  fill: var(--color-onsen);
}

.dining-more .more-button-circle {
  fill: var(--color-dining);
}

.stay-more .more-button-circle {
  fill: var(--color-stay);
}

.main-sections-bg {
  padding: 140px 0 120px;
  background-image: url("../assets/decor/bg_top.png");
  background-repeat: repeat-y;
  background-size: 100% auto;
}

@media (max-width: 1279px) {
  .main-sections-bg {
    width: 1280px;
  }
}

@media (min-width: 1280px) {
  .main-sections-bg {
    width: 100%;
  }
}

.main-sections-bg section + section {
  margin-top: 120px;
}

.dining-section {
  padding: 0;
}

.dining-stage {
  position: relative;
  width: 94%;
  max-width: 1280px;
  height: 660px;
  margin: 0 auto;
}

.dining-badge {
  position: absolute;
  left: 100px;
  top: -40px;
  width: 112px;
  height: 112px;
  z-index: 2;
}

.stay-section {
  padding: 0;
}

.stay-stage {
  position: relative;
  width: 94%;
  max-width: 1280px;
  height: 660px;
  margin: 0 auto;
}

.stay-badge {
  position: absolute;
  left: 1070px;
  top: -46px;
  width: 107px;
  height: 98px;
  z-index: 2;
}

.stay-photo {
  position: absolute;
  left: 420px;
  top: 0;
  width: 720px;
  height: 540px;
  overflow: hidden;
  z-index: 1;
}

.stay-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--guest-room-image);
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

/* 画像拡大はリンクがある画像のみ（stay-photo はリンクではないためなし） */

.stay-photo-logo {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 85px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

/* 宿泊キャッチコピー（温泉と同じ位置） */
.stay-cloud {
  position: absolute;
  left: 100px;
  top: 310px;
  width: 548px;
  height: 152px;
  opacity: 0.8;
  background-image: url("../assets/decor/stay-cloud.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 38px;
  gap: 18px;
  z-index: 2;
}

.stay-cloud-text {
  margin: 0;
  font-size: 24px;
  line-height: 25.68px;
  font-weight: 400;
  color: var(--text-dark);
  text-shadow:
    0 -1px 2px var(--color-white),
    2px 2px 3px var(--color-white);
  left: 240px;
  position: absolute;
  top: 82px;
}

.stay-cloud-text--top {
  position: absolute;
  top: 42px;
  left: 80px;
}

.stay-body {
  position: absolute;
  left: 420px;
  top: 554px;
  width: 720px;
  z-index: 2;
}

.stay-more {
  position: absolute;
  left: 180px;
  top: 554px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: 40px;
  overflow: visible;
}

.stay-more-text,
.more-button-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-brown);
  z-index: 1;
  pointer-events: none;
}

.stay-more .more-button-text {
  color: var(--text-brown);
}

.onsen-more .more-button-text {
  color: var(--text-brown);
}

.dining-more .more-button-text {
  color: var(--text-brown);
}

.pricing-more .more-button-text {
  color: var(--text-brown);
}

.facility-more .more-button-text {
  color: var(--text-brown);
}

.stay-more .more-button-text {
  position: static;
  transform: none;
  left: auto;
  top: auto;
}

.stay-more .stay-more-svg {
  position: static;
  left: auto;
  top: auto;
  flex-shrink: 0;
  z-index: 0;
  display: block;
  width: 61px;
  height: 40px;
  overflow: visible;
}

.stay-more-svg {
  display: block;
  width: 61px;
  height: 40px;
  overflow: visible;
}

.stay-reservation {
  position: absolute;
  left: 234px;
  top: 612px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: 40px;
  overflow: visible;
}

.stay-reservation-text {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-brown);
  z-index: 1;
  pointer-events: none;
}

.stay-reservation .stay-more-svg {
  position: static;
  left: auto;
  top: auto;
  flex-shrink: 0;
  z-index: 0;
  display: block;
  width: 61px;
  height: 40px;
  overflow: visible;
}

/* 予約するボタンの丸だけ不透明度を上げて色を濃く */
.stay-reservation .more-button-circle {
  fill: var(--color-stay);
  opacity: 0.35;
}

@media (min-width: 851px) and (max-width: 1279px) {
  .onsen-stage,
  .dining-stage,
  .stay-stage {
    width: 1280px;
  }
}

@media (min-width: 1280px) {
  .onsen-stage,
  .dining-stage,
  .stay-stage {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.dining-photo {
  position: absolute;
  left: 140px;
  top: 0;
  width: 720px;
  height: 540px;
  overflow: hidden;
  z-index: 1;
}

.dining-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dining-hall-image);
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

/* 画像拡大はリンクがある画像のみ（dining-photo はリンクではないためなし） */

.dining-photo-logo {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 85px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

.dining-cloud {
  position: absolute;
  left: 632px;
  top: 212px;
  width: 535px;
  height: 234px;
  opacity: 0.8;
  background-image: url("../assets/decor/dining-cloud.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  gap: 18px;
  z-index: 2;
}

.dining-cloud-text {
  margin: 0;
  font-size: 24px;
  line-height: 25.68px;
  font-weight: 400;
  color: var(--text-dark);
  text-shadow:
    0 -1px 2px var(--color-white),
    2px 2px 3px var(--color-white);
  left: 185px;
  position: absolute;
  top: 124px;
}

.dining-cloud-text--top {
  position: absolute;
  top: 84px;
  left: 140px;
}

.dining-body {
  position: absolute;
  left: 140px;
  top: 555px;
  width: 720px;
  z-index: 2;
}

.dining-more {
  position: absolute;
  left: 902px;
  top: 612px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: 40px;
  overflow: visible;
}

.dining-more .more-button-text {
  position: static;
  transform: none;
  left: auto;
  top: auto;
}

.dining-more .dining-more-svg {
  position: static;
  left: auto;
  top: auto;
  flex-shrink: 0;
  z-index: 0;
  display: block;
  width: 61px;
  height: 40px;
  overflow: visible;
}

.feature--reverse {
  background: var(--surface-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.feature-media {
  min-height: 320px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.feature-media--onsen {
  background-image: var(--onsen-bath-image);
}

.feature-media--dining {
  background-image: var(--dining-hall-image);
}

.feature-media--stay {
  background-image: var(--guest-room-image);
}

.feature-eyebrow {
  color: var(--accent);
  letter-spacing: 0.4em;
  font-size: 15px;
  line-height: 20.43px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-eyebrow {
  color: var(--accent);
  letter-spacing: 0.4em;
  font-size: 24px;
  line-height: 32.688px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-icon {
  width: 62px;
  height: 24px;
  margin-bottom: 8px;
}

.feature-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 25.68px;
  font-weight: 400;
}

.section-title {
  margin: 0 0 var(--section-title-margin-bottom);
  font-size: 24px;
  line-height: 32.688px;
  font-weight: 600;
}

.news-subtitle {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 19.068px;
  font-weight: 600;
}

.section-text {
  margin: 0 0 24px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
}

.ghost-button {
  border: 1px solid var(--accent);
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  line-height: 20.43px;
  font-weight: 600;
}

.info-section {
  padding: 100px 0 0;
  background: var(--background-white);
}

.vacancy-section .section-heading {
  margin-bottom: var(--section-title-margin-bottom);
}

.vacancy-section-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: var(--text-brown);
}

.vacancy-section-title::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../assets/icons/icon-reservation.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.vacancy-search-embed {
  /* 空き室検索ウィジェット埋め込み用。中身は外部コードで追加 */
  min-height: 0;
}

.section-heading {
  text-align: center;
  margin-bottom: var(--section-title-margin-bottom);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pricing-section {
  background: var(--background-yellow);
}

.pricing-box {
  width: 94%;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--background-white);
  padding: 80px 24px;
}

@media (min-width: 851px) and (max-width: 1279px) {
  .pricing-box {
    width: 1080px;
    margin-left: 100px;
    margin-right: 100px;
  }
}

@media (min-width: 1280px) {
  .pricing-box {
    width: 1080px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-container {
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--section-title-margin-bottom);
}

.pricing-header .section-icon {
  margin-bottom: 8px;
}

.pricing-title-main {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-brown);
}

.pricing-table {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.pricing-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  max-width: 280px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 0 0 5px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--text-brown) 20%, transparent);
  margin-bottom: 25px;
}

.pricing-cat {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text-brown);
  flex-shrink: 0;
}

.pricing-price {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-brown);
  font-weight: 400;
  flex-shrink: 0;
}

.pricing-footer {
  text-align: right;
  padding-right: 150px;
}

.pricing-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: 40px;
  overflow: visible;
}

.pricing-more .more-button-text {
  position: static;
  transform: none;
  left: auto;
  top: auto;
}

.pricing-more .pricing-more-svg {
  position: static;
  right: auto;
  left: auto;
  top: auto;
  flex-shrink: 0;
  z-index: 0;
  display: block;
  width: 61px;
  height: 40px;
  overflow: visible;
}

.pricing-more .more-button-circle {
  fill: var(--color-onsen);
  opacity: 0.2;
}

/* ========== アクセスセクション ========== */
.access-section {
  background: var(--background-yellow);
}

.access-box {
  width: 94%;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--background-white);
  padding: 80px 24px;
}

@media (min-width: 851px) and (max-width: 1279px) {
  .access-box {
    width: 1080px;
    margin-left: 100px;
    margin-right: 100px;
  }
}

@media (min-width: 1280px) {
  .access-box {
    width: 1080px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
}

.access-container {
  max-width: 1080px;
  margin: 0 auto;
}

.access-body {
  max-width: 720px;
  margin: 0 auto;
}

.access-header {
  text-align: center;
  margin-bottom: var(--section-title-margin-bottom);
}

.access-header .section-icon {
  margin-bottom: 8px;
}

.access-title-main {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-brown);
}

.access-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 80px;
  margin-bottom: 32px;
}

.access-info-col {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 24px;
  align-items: baseline;
  min-width: 0;
}

.access-info-row {
  display: contents;
}

.access-info-label {
  font-size: 16px;
  color: var(--text-brown);
  font-weight: 700;
  white-space: nowrap;
}

.access-info-value {
  font-size: 16px;
  color: var(--text-brown);
  min-width: 0;
}

.access-divider {
  border: none;
  border-top: 1px solid var(--line-brown);
  margin: 32px 0;
}

.access-detail {
  display: grid;
  grid-template-columns: 7em 1fr;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.access-subheading {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-brown);
}

.access-detail-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  min-width: 0;
}

.access-detail-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  flex: 1;
  max-width: 320px;
  align-items: flex-start;
}

.access-detail-title-box {
  border: 1px solid var(--text-brown);
  border-radius: 0;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-brown);
  background: var(--background-white);
}

.access-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-detail-list li {
  font-size: 16px;
  color: var(--text-brown);
  line-height: 1.8;
}

.access-shuttle {
  display: grid;
  grid-template-columns: 7em 1fr;
  align-items: baseline;
  gap: 24px;
}

.access-shuttle-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-brown);
}

.access-shuttle-desc {
  margin: 0;
  font-size: 16px;
  color: var(--text-brown);
  line-height: 1.6;
}

/* 例外セクション → 詳細は RULE.md */
.exception-section {
  width: 100%;
  /* overflow-x: hidden; */
  margin-top: 40px;
}

@media (max-width: 1279px) {
  .exception-section .exception-section__inner {
    width: 1280px;
  }
}

@media (min-width: 1280px) {
  .exception-section .exception-section__inner {
    width: 100%;
  }
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}

.access-section .exception-section {
  margin-top: 60px;
}

.hours-section {
  background: var(--background-yellow);
}

.hours-box {
  width: 94%;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--background-white);
  padding: 80px 24px;
}

@media (min-width: 851px) and (max-width: 1279px) {
  .hours-box {
    width: 1080px;
    margin-left: 100px;
    margin-right: 100px;
  }
}

@media (min-width: 1280px) {
  .hours-box {
    width: 1080px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hours-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hours-header {
  text-align: center;
  margin-bottom: var(--section-title-margin-bottom);
  width: 100%;
}

.hours-header .section-icon {
  margin-bottom: 8px;
}

.hours-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-brown);
}

.hours-blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 662px;
}

.hours-block {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 50px;
}
.hours-block + .hours-block {
  height: 110px;
}

.hours-block-brand {
  width: 150px;
  min-width: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hours-block-sep {
  width: 1px;
  align-self: stretch;
  min-height: 60px;
  background: color-mix(in srgb, var(--text-brown) 20%, transparent);
  flex-shrink: 0;
  margin: 0 16px;
}

.hours-block-logo {
  display: block;
  width: 150px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.hours-block-logo--akitaya {
  width: 130px;
  height: auto;
}

.hours-block-content {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  min-width: 0;
}

.hours-block-content p {
  margin: 0 0 4px;
  white-space: nowrap;
}

.hours-block-content p:last-child {
  margin-bottom: 0;
}

.hours-block-content--grid {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 4px 20px;
  align-items: baseline;
}

.hours-block-row {
  display: contents;
}

.hours-block-cat {
  color: var(--text-brown);
  font-weight: 500;
  white-space: nowrap;
}

.hours-block-time {
  color: var(--text-brown);
  white-space: nowrap;
}

/* ========== 館内紹介（カルーセル・例外セクション） ========== */
.facilities-section {
  padding: 80px 0 100px;
  background: var(--background-white);
  margin-top: 40px;
}

/* 館内紹介と次セクション（アクセス・地図）の間は 100px（次セクションの padding-top で確保） */

.facilities-section .exception-section {
  margin-top: 0;
}

.facilities-header {
  text-align: center;
  margin-bottom: var(--section-title-margin-bottom);
}

.facilities-header .section-icon {
  margin-bottom: 8px;
}

.facilities-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-brown);
}

.facility-carousel {
  margin-bottom: 40px;
}

.facility-carousel button.slick-prev,
.facility-carousel button.slick-next {
  z-index: 1;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--text-brown) 70%, transparent) !important;
  border-radius: 50%;
  transition:
    left 0.2s ease,
    right 0.2s ease;
}

.facility-carousel button.slick-prev:hover,
.facility-carousel button.slick-prev:focus,
.facility-carousel button.slick-prev:focus-visible,
.facility-carousel button.slick-next:hover,
.facility-carousel button.slick-next:focus,
.facility-carousel button.slick-next:focus-visible {
  background: color-mix(in srgb, var(--text-brown) 70%, transparent) !important;
}

.facility-carousel button.slick-prev {
  left: 13px;
}
.facility-carousel button.slick-prev:hover {
  left: 8px;
}

.facility-carousel button.slick-next {
  right: 13px;
}
.facility-carousel button.slick-next:hover {
  right: 8px;
}

.facility-carousel .slick-prev:before,
.facility-carousel .slick-next:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin: auto;
  box-sizing: border-box;
  opacity: 0.75;
}

.facility-carousel .slick-prev:before {
  margin: 0 16px;
  border-top: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

.facility-carousel .slick-next:before {
  margin: 0 13px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(45deg);
}

.facility-carousel .slick-prev:hover:before,
.facility-carousel .slick-prev:focus:before,
.facility-carousel .slick-next:hover:before,
.facility-carousel .slick-next:focus:before {
  opacity: 0.75;
}

.facility-carousel .slick-list {
  margin: 0;
  overflow: hidden;
  padding: 0 100px !important;
  height: var(--facility-slide-size) !important;
}

.facility-carousel .slick-track {
  height: var(--facility-slide-size) !important;
  display: block !important;
}

@media (min-width: 1280px) {
  .facility-carousel .slick-list {
    padding: 0 140px !important;
  }
}

.facility-carousel {
  --facility-slide-size: 200px;
}

@media (min-width: 1280px) {
  .facility-carousel {
    --facility-slide-size: 280px;
  }
}

.facility-carousel .slick-slide {
  margin: 0 !important;
  padding: 0 !important;
  width: var(--facility-slide-size) !important;
  height: var(--facility-slide-size) !important;
  float: left;
  box-sizing: border-box;
}

.facility-carousel .slick-slide > div {
  margin: 0;
  width: var(--facility-slide-size) !important;
  height: var(--facility-slide-size) !important;
  box-sizing: border-box;
}

.facility-slide {
  outline: none;
  width: var(--facility-slide-size) !important;
  height: var(--facility-slide-size) !important;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.facility-slide img {
  width: var(--facility-slide-size) !important;
  height: var(--facility-slide-size) !important;
  min-width: var(--facility-slide-size) !important;
  min-height: var(--facility-slide-size) !important;
  max-width: var(--facility-slide-size) !important;
  max-height: var(--facility-slide-size) !important;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  margin: 0;
  box-sizing: border-box;
  transition: transform 0.35s ease;
}

.facility-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}

.facility-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-height: 40px;
  padding: 4px 0;
  overflow: visible;
}

.facility-more .more-button-text {
  position: static;
  transform: none;
  left: auto;
  top: auto;
}

.facility-more .facility-more-svg {
  position: static;
  left: auto;
  top: auto;
  right: auto;
  flex-shrink: 0;
  z-index: 0;
  display: block;
  width: 61px;
  height: 40px;
  overflow: visible;
}

.facility-more--onsen .more-button-circle {
  fill: var(--color-onsen);
  opacity: 0.2;
}

.facility-more--facility .more-button-circle {
  fill: var(--color-stay);
  opacity: 0.2;
}

.facility-more--dining .more-button-circle {
  fill: var(--color-dining);
  opacity: 0.2;
}

/* ========== ニュースセクション（画像レイアウト準拠・WP投稿差し替え用） ========== */
.news-section {
  background: var(--background-yellow);
  padding-bottom: 120px;
}

.news-header {
  text-align: center;
  margin-bottom: var(--section-title-margin-bottom);
}

.news-header__icon {
  display: block;
  width: 62px;
  height: 24px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.news-header__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.36;
  font-weight: 600;
  color: var(--text-brown);
  letter-spacing: 0.02em;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  list-style-type: none;
}

.news-more {
  width: 100%;
  max-width: 1080px;
  margin: 30px auto 0;
  display: flex;
  justify-content: flex-end;
}

.news-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: 40px;
  overflow: visible;
}

.news-more-svg {
  display: block;
  width: 61px;
  height: 40px;
  flex-shrink: 0;
  overflow: visible;
}

.news-more .more-button-text {
  position: static;
  transform: none;
  left: auto;
  top: auto;
}

.news-more .more-button-circle {
  fill: var(--color-dining);
  opacity: 0.2;
}

.news-item {
  border: none;
  padding: 0;
  background: var(--background-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.news-item__link {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 24px 48px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  transition: opacity 0.2s ease;
}

/* 記事全体ではなく、記事名・日付・写真それぞれでホバー */
.news-item__thumb {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  background: var(--surface-light);
}

.news-item__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

.news-item__thumb:hover::before {
  transform: scale(1.2);
}

.news-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-item__thumb:hover img {
  transform: scale(1.15);
}

.news-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.news-meta ul {
  padding-left: 20px;
}

.news-date {
  color: var(--text-brown);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
  transition: opacity 0.3s ease;
}

.news-date:hover {
  opacity: 0.7;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px 5px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  border: 2px solid transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  color: var(--color-white);
  background: var(--color-onsen);
  margin-right: 8px;
}

.news-tag.restaurant {
  background: var(--color-dining);
}

.news-tag.stay {
  background: var(--color-stay);
}

.news-tag:hover {
  background: var(--color-white);
  color: var(--color-onsen);
  border-color: var(--color-onsen);
}

.news-tag.restaurant:hover {
  color: var(--color-dining);
  border-color: var(--color-dining);
}

.news-tag.stay:hover {
  color: var(--color-stay);
  border-color: var(--color-stay);
}

.news-tag--stay {
  background: var(--color-stay);
  color: var(--color-white);
}

.news-tag--stay:hover {
  background: var(--color-white);
  color: var(--color-stay);
  border-color: var(--color-stay);
}

.news-tag--announcement {
  background: var(--color-onsen);
  color: var(--color-white);
}

.news-tag--announcement:hover {
  background: var(--color-white);
  color: var(--color-onsen);
  border-color: var(--color-onsen);
}

.news-title {
  margin: 0;
  color: var(--text-brown);
  font-size: 15px;
  line-height: 1.36;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s ease,
    opacity 0.3s ease;
}

.news-title:hover {
  opacity: 0.7;
  border-bottom-color: transparent;
}

/* ========== フッター（3段構成・デザイン厳密再現） ========== */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  overflow: visible;
  background: var(--background-white);
  color: var(--text-brown);
}

/* セクション1: 上段ナビ＋アイコン（白）※お知らせカテゴリ＝右カラム（ニュース・お問い合わせ・プライバシーポリシー） */
.footer-top {
  display: block;
  overflow: visible;
  background: var(--background-white);
  padding: 20px 0;
}

.footer-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
  width: 160px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.footer-nav a {
  color: var(--text-brown);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.footer-nav--left {
  align-items: flex-start;
  padding-right: 0;
}

.footer-nav--right {
  align-items: flex-start;
  padding-left: 0;
}

.footer-divider--v {
  display: block;
  width: 1px;
  align-self: stretch;
  min-height: 80px;
  background: var(--footer-divider);
  flex-shrink: 0;
}

.footer-features {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 0 80px;
}

.footer-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: var(--text-brown);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.footer-feature > span:last-child {
  margin-top: 1pt;
  font-size: calc(15px - 1pt);
  font-weight: bold;
}

.footer-feature:hover {
  text-decoration: none;
}

.footer-feature__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}

.footer-feature__icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.onsen .footer-feature__icon {
  width: 70px;
  height: 72px;
}

.footer-feature:hover .footer-feature__icon {
  transform: scale(1.1);
}

.footer-main {
  background: var(--background-white);
  border-top: 1px solid var(--footer-divider);
  padding: 50px 0 40px;
}

.footer-main__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.footer-brand__logo-wrap {
  flex-shrink: 0;
}

.footer-brand__logo {
  display: block;
  width: 185px;
  height: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

/* しんわの湯（フッター内のテキスト）は通常下線なし */
.footer-contact__name {
  text-decoration: none;
}

.footer-brand__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-info-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0 12px;
  align-items: baseline;
}

.footer-info-label,
.footer-info-value {
  font-size: 15px;
  line-height: 1.5;
}

.footer-brand__info .footer-info-label,
.footer-brand__info .footer-info-value,
.footer-brand__info .footer-contact__name {
  color: var(--text-brown);
}

.footer-brand__info .footer-info-value {
  font-weight: 500;
}

.footer-info-label {
  font-weight: 500;
  white-space: nowrap;
}

.footer-reservation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.footer-reservation__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-reservation__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-brown);
}

.footer-reservation__line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--footer-divider);
  flex-shrink: 0;
}

/* 宿泊予約ボタン＝もっと見るデザイン */
.footer-reservation__btn.more-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-height: 40px;
  padding: 4px 0;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.footer-reservation__btn .more-button-text {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-brown);
}

.footer-reservation__btn .footer-reservation__btn-svg {
  display: block;
  width: 61px;
  height: 40px;
  flex-shrink: 0;
  overflow: visible;
}

.footer-reservation__btn .more-button-circle {
  fill: var(--color-stay);
  opacity: 0.35;
}

.footer-akitaya-logo {
  display: block;
  width: 140px;
  height: auto;
  object-fit: contain;
}

/* セクション3: 赤バー・SNS・著作権（Insta / LINE / Copyright） */
.footer-bar {
  display: block;
  position: relative;
  z-index: 2;
  overflow: visible;
  background: var(--color-onsen);
  color: var(--color-white);
  padding: 20px 0;
}

.footer-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social__link {
  color: var(--color-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.footer-social__line {
  border: 1px solid var(--color-white);
  padding: 7px 12px;
}

.footer-social__link:hover {
  opacity: 0.7;
}

.footer-social__img {
  display: block;
  height: auto;
}

.footer-social__img--instagram {
  width: 30px;
}

.footer-social__img--line {
  width: 120px;
}

.footer-copyright {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-white);
}

.view-more-button {
  margin: 0px auto;
  display: block;
  background-color: unset;
  border: none;
  font-size: 16px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 120px;
}

.view-more-button .btn_view {
  position: relative;
}

.btn_view p {
  color: var(--text-brown);
  transition: 0.3s;
  padding: 1px 0;
  position: relative;
  border-radius: 5px;
}
.view-more-button .btn_view span {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--color-dining);
  line-height: 1;
  width: 2.2em;
  height: 2.2em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(135deg);
  position: absolute;
  top: 25px;
  left: -18px;
  transition: 0.3s;
}
.view-more-button .btn_view:hover span {
  top: 32px;
}
.page-load-status.center {
  font-weight: 500;
  color: var(--text-brown);
  margin-top: 40px;
  margin-bottom: 100px;
}
