/* =========================================
   0. Base Reset
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #444444;
  background: #f7f3ea;
  line-height: 1.8;
  font-size: 16px;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

#splash {
  position: fixed;
  inset: 0;
  background-color: #f5f3ee;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.5s ease, visibility 1.5s ease;
}

#splash-logo img {
  width: 320px;
  height: auto;
  animation: fadeIn 1.8s ease-out;
}

#splash-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3b2b1f;
  letter-spacing: 0.08em;
  text-align: center;
  opacity: 0;
  animation: textFade 1.6s ease forwards;
  animation-delay: 0.8s;
}

#splash.fade-out {
  opacity: 0;
  visibility: hidden;
}

@keyframes logoFade {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes textFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  #splash-logo img {
    width: 200px;
    margin: auto;
  }
}

/* =========================================
   1. Layout Containers / Section
========================================= */
.l-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* 365日同一価格バナー（統一トーン版） */
.price-banner {
  position: relative;
  margin: 20px auto 40px;
  padding: 20px 28px;
  background: #fffdf8;
  border-radius: 20px;
  border: 1.5px solid #d6b483;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  text-align: center;
}

.price-banner__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: #c28b36;
  color: #fff;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.price-banner__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #4a3a24;
}

.price-banner__text {
  color: #6a5a44;
  margin: 0;
}

@media (max-width: 768px) {
  .price-banner {
    padding: 16px 18px;
    border-radius: 16px;
  }

  .price-banner__badge {
    padding: 4px 12px;
    left: -10px;
  }
}


.c-section {
  padding: 100px 0;
  background: #F7F4EE;
}

.c-section:nth-of-type(even) {
  background: #FAF9F5;
}

.c-section--bg {
  background: #fbf7ef;
}

.c-section__head {
  text-align: center;
  margin-bottom: 60px;
}

.c-section__title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #303030;
}

.c-section__subtitle {
  letter-spacing: 0.1em;
  color: #6e6e6e;
  margin-top: 6px;
}

.c-section__note {
  margin-top: 10px;
  color: #777;
}


/* =========================================
   2. Hero（MV）
========================================= */

.c-hero {
  position: relative;
  /* height: 100vh; */
  min-height: 600px;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.c-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* .c-hero__bg>div {
  height: 100%;
} */

.c-hero__bg .n2-ss-slider,
.c-hero__bg .n2-ss-slider-outer {
  height: 100% !important;
}

.c-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(75, 163, 214, 0.15),
      rgba(0, 0, 0, 0.45));
  z-index: 1;
  pointer-events: none;
}

.c-hero__body {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 20px;
}

.c-hero__catch {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  opacity: 0.85;
}

.c-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.c-hero__lead {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 28px;
  opacity: 0.95;
}

.c-btn--primary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 40px;
  background: #2ca76f;
  font-weight: 600;
  transition: all 0.3s ease;
}

.c-btn--primary:hover {
  background: #23915f;
  transform: translateY(-2px);
}
@media (max-width: 1024px) {

  .c-hero {
    min-height: 520px;
    align-items: center;
  }

  .c-hero__body {
    max-width: 600px;
  }

  .c-hero__title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .c-hero__lead {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {

  .c-hero {
    min-height: 85vh;
    padding-top: 80px;
    align-items: flex-start;
  }

  .c-hero__body {
    max-width: 100%;
    text-align: center;
    margin-top: 40px;
  }

  .c-hero__catch {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .c-hero__title {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .c-hero__lead {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .c-btn--primary {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {

  .c-hero {
    min-height: 80vh;
  }

  .c-hero__title {
    font-size: 1.6rem;
  }

  .c-hero__lead {
    font-size: 0.85rem;
  }

  .c-btn--primary {
    width: 100%;
    max-width: 260px;
  }
}

/* =========================================
   3. Buttons
========================================= */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.c-btn--primary {
  background: #3bae6c;
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(59, 174, 108, 0.25);
}

.c-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(59, 174, 108, 0.3);
  opacity: 0.96;
}


/* =========================================
   4. Card / Box 共通
========================================= */
.c-card {
  background: #ffffff;
  border-radius: 16px;
  /* 中くらい */
  padding: 32px;
  box-shadow: 0 12px 26px rgba(27, 50, 67, 0.08);
}

.c-card-sm {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(27, 50, 67, 0.06);
  text-align: center;
}


/* =========================================
   5. 宿泊料金カード
========================================= */
.c-price-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.c-price-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 18px 22px;
  border: 1px solid #ece5d6;
  text-align: center;
}

.c-price-card--featured {
  border-color: #ece5d6;
  border: 2px solid #c7ad76;
  margin: -.4rem;
}

.c-price-card__badge {
  position: absolute;
  top: -8px;
  left: -18px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: #fb7617;
  color: #faf9f5;
}

.c-price-card__plan {
  margin-top: 12px;
  font-weight: 600;
}

.c-price-card__price {
  margin-top: 8px;
  margin-bottom: 8px;
}

.c-price-card__yen {
  font-size: 1.5rem;
  font-weight: 700;
}

.c-price-card__unit {
  font-size: 1rem;
  margin-left: 2px;
  font-weight: 700;
}

.c-price-card__desc {
  color: #666666;
  line-height: 1.7;
  font-size: .9rem;
}

.c-room-summary {
  border-top: 1px dashed #e0d6c5;
  padding-top: 14px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.c-room-summary__types {
  font-weight: 600;
  margin-bottom: 6px;
}

.c-room-summary__note {
  line-height: 1.9;
  color: #555555;
}

.c-price-notes {
  text-align: center;
}

.c-price-notes p {
  color: #777777;
  margin-bottom: 4px;
}

.friendship-ttl,
.friendship-discount {
  color: #fb7617;
  font-size: 1.1rem;
}

p.friendship-city {
  font-weight: 600;
  font-size: 1.1rem;
}

ul.friendship-city_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 80%;
  margin: 10px auto;
}

.friendship-city_list li {
  background-color: #fff;
  border: 1px solid #6d5226;
  border-radius: 50vw;
  color: #6d5226;
  padding: .1em 1em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  ul.friendship-city_list {
    width: 100%;
    gap: .5rem;
  }

  .friendship-city_list li {
    font-size: 0.85rem;
    padding: .25em .8em;
  }

  .c-price-card__badge {
    left: -10px;
  }
}

.text-b {
  font-weight: 700;
  font-size: 1.1rem;
}

/* =========================================
   6. Split Layout（文章＋画像）
========================================= */
.c-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.c-split__text {
  flex: 1;
  max-width: 520px;
  /* 三斗小屋の読みやすさを再現 */
  color: #333;
  line-height: 1.85;
}

.c-split__media {
  flex: 1;
  width: 50%;
}

.c-split__media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.c-split__heading {
  font-size: 1.4rem;
  margin-top: 18px;
  font-weight: 600;
}

.c-list {
  margin-top: 4px;
}

.c-list li {
  margin-bottom: 6px;
  color: #555555;
}

.room-note {
  font-weight: 700;
  color: #4a3a24;
}

/* 朝食：フードリボン枠 */
.breakfast-foodribbon {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px dashed #d4b37c;
  background: #fff8ec;
  border-radius: 8px;
}

.breakfast-foodribbon__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #8a5a00;
  margin-bottom: 0.5rem;
}

.about-foodribbon img {
  max-width: 150px;
  margin: auto;
}

.about-foodribbon {
  margin: 10px auto;
  text-align: center;
}

.about-foodribbon p {
  font-size: .8rem;
}

section#yoga {
  background: #fff;
}

.yoga-txt {
  font-size: 1.1em;
  font-weight: 700;
  padding-bottom: 1em;
}

.yoga-price {
  margin-top: 8px;
}

.yoga-price__title {
  margin-bottom: 4px;
}

.yoga-price__list {
  list-style: none;
  padding-left: 1em;
  margin: 0;
}

.yoga-price__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  color: #555;
}

.yoga-price__item::before {
  content: "・";
  margin-right: 6px;
  /* color: #8a5a00; */
}

.yoga-price__label {
  flex: 1;
}

.yoga-price__amount {
  margin-left: 20px;
  white-space: nowrap;
}

.yoga-time {
  margin-top: 6px;
  color: #555;
}

.yoga-time__label {
  margin-right: 4px;
}

/* =========================================
   7. 画像プレースホルダ
========================================= */
.c-img-placeholder {
  background: #e2ddd1;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  color: #666666;
}


/* =========================================
   8. グリッド（汎用）
========================================= */
.c-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}


/* =========================================
   9. Movie
========================================= */
.c-movie__video {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(16, 37, 56, 0.18);
}


/* =========================================
   10. お問い合わせボックス
========================================= */
.c-contact {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 10px 22px rgba(16, 37, 56, 0.12);
}

.c-contact__tel {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 14px 0 4px;
  color: #3c474f;
}

.c-contact__tel a {
  display: inline-flex;
  gap: 0.5em;
  align-items: baseline;
}

.c-contact__label {
  white-space: nowrap;
}

.c-contact__number {
  white-space: nowrap;
}

.c-contact__fax,
.c-contact__time,
.c-contact__note {
  margin-top: 6px;
}

.c-contact__time {
  font-weight: 600;
}

@media (max-width: 380px) {

  .c-contact__tel a {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================================
   11. Swiper（お部屋／大浴場／他）
========================================= */
.swiper {
  width: 100%;
  border-radius: 18px;
  overflow: hidden !important;
  /* box-shadow: 0 12px 24px rgba(16, 37, 56, 0.14); */
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-pagination {
  bottom: 10px !important;
}

.swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  background: #3bae6c;
}


/* =========================================
   12. Header（PC / SP 共通）
========================================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.l-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 10px rgba(16, 37, 56, 0.08);
  backdrop-filter: blur(10px);
}

.l-header__inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.l-header__logo a {
  color: #fff;
  display: flex;
  gap: 10px;
}

.l-header__logo img {
  width: 30px;
  height: auto;
}

/* PC NAV */
.pc-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.p-global-nav {
  display: flex;
  gap: 22px;
}

.p-global-nav li a {
  font-weight: 500;
  padding-bottom: 2px;
  position: relative;
  color: #3c474f;
}

.p-global-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #3bae6c;
  transition: width 0.25s ease;
}

.p-global-nav li a:hover::after,
.p-global-nav li a.is-active::after {
  width: 100%;
}

.l-header__sns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.l-header__sns img {
  width: 22px;
  height: 22px;
}


/* =========================================
   13. HAMBURGER（SP）
========================================= */
.hamburger {
  display: none;
  position: relative;
  width: 26px;
  height: 22px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333333;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.is-open span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  bottom: 9px;
  transform: rotate(-45deg);
}


/* =========================================
   14. SP NAV（モバイルメニュー）
========================================= */
.sp-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  padding: 80px 24px 40px;
  box-shadow: -4px 0 16px rgba(16, 37, 56, 0.18);
  transition: right 0.32s ease;
  z-index: 1050;
}

.sp-nav.open {
  right: 0;
}

.sp-nav__list {
  margin: 0 0 32px;
}

.sp-nav__list li {
  margin-bottom: 16px;
}

.sp-nav__list li a {
  font-size: 1.1rem;
  color: #3c474f;
}

/* SP SNS */
.sp-nav__sns {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.sp-nav__sns img {
  width: 26px;
  height: 26px;
}

/* Body lock when menu open */
body.is-menu-open {
  overflow: hidden;
}


/* =========================================
   15. Footer
========================================= */
.l-footer {
  margin-top: 40px;
  padding: 28px 0 32px;
  background: #f0eadf;
  color: #555555;
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.l-footer__name {
  font-weight: 600;
  margin-bottom: 4px;
}

.l-footer__address {
  line-height: 1.7;
}

.l-footer__copy {
  text-align: right;
}

.l-footer__block--right {
  text-align: right;
}

/* =========================
  footer Instagram（SNS）
========================= */

.l-footer__sns {
  margin-top: 12px;
}

/* a を基準に、丸とアイコンを絶対配置で固定 */
.l-footer__sns a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .8em;
  font-weight: 700;
  color: #6d5226;
  text-decoration: none;

  /* 丸(38px)ぶんだけ左に余白を確保 + テキストとの余白 */
  padding-left: calc(38px + .8em);

  transition: transform .35s ease, opacity .35s ease;
}

/* 白丸（固定） */
.l-footer__sns a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

/* アイコン（丸のど真ん中） */
.l-footer__sns a img {
  position: absolute;
  left: 8px;
  /* (38 - 22) / 2 = 8 */
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}

/* ホバー（テキストも一緒に動く） */
.l-footer__sns a:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .l-footer__block--right {
    text-align: center;
    margin-top: 20px;
  }
}


/* =========================================
   16. 現在地ハイライト（SP 含む）
========================================= */
.p-global-nav a.is-active,
.sp-nav__list a.is-active {
  color: #3bae6c;
}


/* =========================================
   17. 清水屋旅館について（About）
========================================= */
.c-about {
  gap: 40px;
  align-items: stretch;
}

.c-about__media {
  flex: 1;
}

.c-about__image {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.c-about__image img {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  /* 横長に変更 */
}

.c-about__text {
  flex: 1;
  line-height: 2;
}

/* =========================================
   18. イベントスライダー（Swiper版）
========================================= */

.event-slider-section {
  background: #FBF7EF;
  padding: 80px 0;
}

/* ▼ スライド本体（幅制御 & 高さ揃え） */
.event-slide {
  background: #bca482;
  border-radius: 18px;
  padding: 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  box-sizing: border-box;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  min-height: 450px;
  height: auto;
  overflow: visible !important;
}

/* ▼ 1300px以下で80%表示 */
@media (max-width: 1300px) {
  .event-slide {
    width: 80%;
  }
}

/* ▼ スマホでは90%表示 + 高さは可変 */
@media (max-width: 768px) {
  .event-slide {
    flex-direction: column;
    padding: 24px;
    width: 90%;
    height: auto;
    /* スマホは縦伸びのため固定しない */
  }
}

/* =========================================
   左テキスト
========================================= */
.event-slide-left {
  flex: 1;
  color: #fff;

  /* 高さ揃えのため */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ▼ バッジ */
.event-area {
  /* display: inline-block !important; */
  /* width: auto !important; */
  background: #fff;
  color: #fb7617;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 16px;
}


.event-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.event-desc {
  line-height: 1.7;
  margin-bottom: 16px;
}

.event-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.event-tags li {
  background: #fff;
  color: #fb7617;
  padding: 6px 10px;
  border-radius: 50vw;
  font-size: .8rem;
  font-weight: 600;
}

/* =========================================
   右画像（高さ揃えの要）
========================================= */
.event-slide-right {
  flex: 1;
  height: 100%;
}

.event-slide-right img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .event-slide-right img {
    object-position: center top;
  }
}

/* =========================================
   Swiper ページネーション
========================================= */
.eventSwiper {
  position: relative;
  overflow: visible !important;
}

.eventSwiper .swiper-pagination-fraction {
  position: absolute;
  bottom: -40px !important;
  left: 50% !important;
  transform: translateX(-50%);
  font-weight: 600;
  color: #6d5226 !important;
  background: #FBF7EF;
  padding: 2px 10px;
  border-radius: 999px;
  z-index: 20;
  pointer-events: none;
}

.swiper-pagination-bullet {
  background: #6d5226 !important;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* =========================================
   Swiper 前後ボタン（〇囲み矢印）
========================================= */

.event-prev:after,
.event-next:after {
  font-size: 1.35rem;
}

/* 左右位置 */
.event-prev {
  left: -30px;
}

.event-next {
  right: -30px;
}


/* =========================================
   Swiper 前後ボタン
========================================= */

.swiper-button-prev,
.swiper-button-next {
  width: 30px !important;
  height: 30px !important;
  background: #fff;
  border-radius: 50%;
  color: #6d5226 !important;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.18);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  --swiper-navigation-color: transparent;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem !important;
  color: #6d5226;
  font-weight: 600;
}

.swiper-button-prev {
  left: 10px !important;
}

.swiper-button-next {
  right: 10px !important;
}

/* =========================================
   Fraction（01 / 05 のページ番号）
========================================= */

.swiper-pagination-fraction .swiper-pagination-current {
  color: #6d5226;
  font-weight: bold;
}

.swiper-pagination-fraction .swiper-pagination-total {
  color: #6d5226;
}



/* =========================================
   19. お部屋：360度ビュー用
========================================= */
.c-rooms360 {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px dashed #e0d6c5;
  color: #777777;
  text-align: center;
}


/* =========================================
   20. Instagram セクション
========================================= */
.c-instagram {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 22px rgba(16, 37, 56, 0.1);
}


/* =========================================
   21. Responsive
========================================= */
@media (max-width: 1200px) {
  .c-price-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .pc-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .c-split {
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .c-section {
    padding: 70px 0;
  }

  .c-hero__title {
    font-size: 1.75rem;
  }

  .c-split {
    flex-direction: column;
    gap: 36px;
  }

  .c-split__media.aos-init.aos-animate {
    width: 100%;
  }

  .price-banner.aos-init.aos-animate {
    padding-top: 1.8rem;
  }

  .c-split__media img {
    height: 300px;
    object-fit: contain;
  }

  .c-split__text {
    max-width: 100%;
  }

  .c-grid {
    grid-template-columns: 1fr;
  }

  .c-card {
    padding: 24px 20px;
  }

  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .l-footer__block {
    margin: auto;
  }

  .l-footer__copy {
    text-align: left;
  }

  .c-price-cards {
    grid-template-columns: 1fr;
  }

  .c-events {
    gap: 24px;
  }

  .c-events__media {
    flex: 1;
  }

  .c-about__image {
    padding: 12px;
  }

  .c-events__image {
    border-radius: 14px;
  }
}

.friendship-city {
  margin-top: 1rem;
}

.c-price-card--special {
  border: 2px solid #6d5226;
  background: #ffffff;
}

.c-price-card__badge--green {
  /* background: #6d5226;
  color: #faf9f5; */
}

/* --------------------------
   横スクロール禁止
--------------------------- */
html,
body {
  overflow-x: hidden;
}

* {
  max-width: 100%;
}

/* --------------------------
   初期ヘッダー（透明時）→ 白文字
--------------------------- */
.l-header:not(.is-scrolled) .p-global-nav li a {
  color: #ffffff;
}

.l-header:not(.is-scrolled) .l-header__sns img {
  /* filter: brightness(0) invert(1); */
}

/* --------------------------
   スクロール後 → 黒文字
--------------------------- */
.l-header.is-scrolled .l-header__logo a {
  color: #3c474f;
  font-weight: 700;
}

.l-header.is-scrolled .p-global-nav li a {
  color: #3c474f;
}

.l-header.is-scrolled .l-header__sns img {
  filter: none;
}


/* =========================================
   22. 交通アクセス
========================================= */
/* アクセス */
.c-access {
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.9;
  color: #444;
}

.c-access__list li {
  margin-bottom: 6px;
}

.c-access__address {
  margin-top: 20px;
  font-weight: 600;
}

/* 地図の枠 */
.c-access__map iframe {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.c-contact__time {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  white-space: nowrap;
}

.c-contact__checkin,
.c-contact__checkout {
  white-space: nowrap;
}

@media (max-width: 380px) {

  .c-contact__time {
    flex-direction: column;
    align-items: center;
    gap: 0.3em;
  }

  .c-contact__arrow {
    transform: rotate(90deg);
  }

}