@charset "UTF-8";

/* ============================================
   Base / Reset
============================================ */
:root {
  --color-primary: #231815;
  --color-bg: #fdfaf5;
  --color-accent-red: #e3231e;
  --color-line: #d9d1c3;
  --content-width: 425px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-margin-top: 120px;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

/* 425px超の余白を装飾画像で埋める：固定表示・画面高さ100%
   コンテンツ幅と重なる分は幅をコンテンツ外の余白ぶんに制限して見切れさせる */
.l-bg-deco {
  position: fixed;
  top: 0;
  height: 100vh;
  width: calc((100vw - var(--content-width)) / 2);
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.l-bg-deco--left {
  left: calc(50% - 225px);
  background-image: url("../images/top_bg_left.jpg");
  background-position: right center;
  transform: translateX(-100%);
}
.l-bg-deco--right {
  left: calc(50% + 225px);
  background-image: url("../images/top_bg_right.jpg");
  background-position: left center;
}
.l-bg-deco__img {
  position: fixed;
  right: 5%;
  bottom: 0;
  width: clamp(100px, 21.8vw, 560px);
  height: auto;
}
.l-bg-deco__server {
  display: none;
}
.l-sidenav {
  display: none;
}
@media (min-width: 1120px) {
  .l-bg-deco__server {
    display: block;
    position: fixed;
    left: 10%;
    bottom: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 1);
  }
  .l-sidenav {
    position: fixed;
    left: calc(50% + 412px);
    top: 60px;
    display: block;
    width: 224px;
    margin: 0 auto;
    padding: 0 32px 32px;
    box-sizing: content-box;
  }
  .l-sidenav li {
    position: relative;
    margin-bottom: 10px;
  }
  .l-sidenav li::after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: url("../images/img_line_white.png");
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .l-sidenav a {
    display: flex;
    align-items: center;
    padding: 5px 0;
    color: #fff;
    font-size: clamp(14px, 4.24vw, 18px);
    font-weight: 700;
  }
  .l-sidenav .icon-back {
    width: 16px;
    height: 16px;
    margin-left: 4px;
    filter: invert(100%);
  }
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* クリッカブル要素のホバー：透過70% */
a, button {
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  a:hover, button:hover {
    opacity: 0.7;
  }
}

/* ============================================
   Layout
============================================ */
.l-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  background: #fff;
  position: relative;
}
.l-wrap#spot {
  background: #f7f3ec;
}
.l-section {
  position: relative;
}

/* ============================================
   画像プレースホルダー（本番画像差し替え用ダミー）
============================================ */
.ph {
  aspect-ratio: var(--ar, 1 / 1);
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.ph::before {
  content: attr(data-file);
  font-size: clamp(8px, 2.59vw, 11px);
  line-height: 1.4;
  color: #666;
  text-align: center;
  padding: 0 8px;
  word-break: break-all;
}
.ph--icon::before {
  content: "";
}

/* ============================================
   共通パーツ
============================================ */
.c-heading {
  font-weight: 700;
  color: var(--color-primary);
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  padding: 16px 24px;
  font-weight: 700;
  font-size: clamp(14px, 4.24vw, 18px);
  background: #fff;
}

/* ============================================
   ヘッダー / メニュー
============================================ */
.l-header {
  position: sticky;
  top: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 16px;
  background: transparent;
  pointer-events: none;
  transition: top 0.2s ease;
}
.l-header.is-stuck {
  top: 73px;
}
.l-header__menu-btn {
  pointer-events: auto;
}
/* PC版ではヘッダー（ハンバーガーメニュー）を非表示 */
@media (min-width: 426px) {
  .l-header {
    display: none;
  }
}

.l-header__menu-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__menu-icon {
  position: relative;
  display: block;
  width: 26px;
  height: 18px;
}
.l-header__menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.l-header__menu-icon span:nth-child(1) { top: 0; }
.l-header__menu-icon span:nth-child(2) { top: 8px; }
.l-header__menu-icon span:nth-child(3) { top: 16px; }

.l-header__menu-btn.is-open .l-header__menu-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.l-header__menu-btn.is-open .l-header__menu-icon span:nth-child(2) {
  opacity: 0;
}
.l-header__menu-btn.is-open .l-header__menu-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.l-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  padding-top: 120px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.l-drawer.is-open {
  transform: translateX(0);
}
.l-drawer__bg {
  position: absolute;
  left: 0;
  width: 100%;
  object-fit: cover;
}
.l-drawer__bg--head {
  top: 0; 
}
.l-drawer__bg--foot {
  bottom: 0;
}
.l-drawer__heading {
  position: relative;
  width: 224px;
  margin: 0 auto 24px;
}
.l-drawer__list {
  width: 224px;
  margin: 0 auto;
  padding: 0 32px 32px;
  box-sizing: content-box;
}
.l-drawer__list li {
  margin-bottom: 10px;
  border-bottom: 2px solid #231815;
}
.l-drawer__list li:last-child {
  border-bottom: none;
}
.l-drawer__list li .bold {
  font-weight: 700;
}
.l-drawer__list a {
  display: flex;
  align-items: center;
  padding: 5px 0;
  font-size: clamp(14px, 4.24vw, 18px);
}
.l-drawer__list .icon-back {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}
.l-drawer__footer {
  position: relative;
  z-index: 100;
}

/* ============================================
   フローティングバナー（画面を3分割した左側の上下中央に固定）
============================================ */
.p-floating-banner {
  display: none;
  position: fixed;
  /* 左余白（コンテンツ幅の外側）の中央に配置し、コンテンツ列と重ならないようにする */
  left: calc((100vw - var(--content-width)) / 4);
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 24vw, 310px);
  z-index: 90;
}
.l-bg-deco__img {
  display: none;
}
/* SP版では非表示。左右の余白にバナーが収まる幅（PC版）でのみ表示 */
@media (min-width: 930px) {
  .p-floating-banner {
    display: block;
  }
  .l-bg-deco__img {
    display: block;
  }
}
.p-floating-banner img,
.p-floating-banner .ph {
  border-radius: 8px;
}

/* ============================================
   スライダー（子ページ：モデルコース＋4選カード／1画面1枚）
============================================ */
.p-spot-slider {
  position: relative;
}
.p-spot-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 41px;
  height: 41px;
  padding: 0;
  z-index: 5;
  opacity: .5;
}
.p-spot-slider__nav.swiper-button-disabled {
  opacity: .2;
  pointer-events: none;
}
.p-spot-slider__nav--prev {
  left: 8px;
}
.p-spot-slider__nav--next {
  right: 8px;
}
.p-spot-slider__nav img {
  width: 41px;
  height: 41px;
  display: block;
}

/* ============================================
   トップページ：KV／タイトル
============================================ */
.p-title {
  padding-top: 24px;
  text-align: center;
}
.p-title__note {
  font-size: clamp(11px, 3.53vw, 15px);
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
  margin-bottom: 20px;
}
.p-title__note strong {
  color: var(--color-accent-red);
}
.p-title__logo {
  margin: 0 auto 16px;
}
.p-title__period {
  font-size: clamp(17px, 5.18vw, 22px);
  font-weight: 700;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 16px;
  border-radius: 4px;
}
.p-title__period .y {
  font-size: clamp(10px, 3.06vw, 13px);
  vertical-align: middle;
}
.p-title__period .w {
  font-size: clamp(11px, 3.53vw, 15px);
}
.p-title__period .arrow {
  margin: 0 6px;
}

/* ============================================
   誘導バナー（子ページへ）
============================================ */
.p-spot-banner {
  display: block;
  margin: 24px 20px;
  padding: 20px;
  text-align: center;
  background: #3f2c22;
  color: #fff;
  border-radius: 8px;
}
.p-spot-banner__label {
  font-size: clamp(10px, 3.06vw, 13px);
  margin-bottom: 4px;
}
.p-spot-banner__title {
  font-size: clamp(14px, 4.47vw, 19px);
  font-weight: 700;
}
.p-spot-banner__note {
  font-size: clamp(10px, 3.06vw, 13px);
  margin-top: 8px;
}

.l-section__hr {
  width: 89.2%;
  margin: 60px auto 80px;
  border-top: 8px solid var(--color-primary);
}

/* ============================================
   応募エリア（第1弾／第2弾 共通）
============================================ */
.p-entry,
.p-entry2 {
  padding-top: 32px;
  text-align: center;
}
.p-entry__lead {
  font-weight: 700;
  font-size: clamp(12px, 3.76vw, 16px);
  margin-bottom: 12px;
}
.p-entry__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.p-entry__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-accent-red);
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 4.24vw, 18px);
  flex-shrink: 0;
}
.p-entry__catch {
  font-weight: 700;
  font-size: clamp(13px, 4.0vw, 17px);
  text-align: left;
}
.p-entry__date {
  font-weight: 700;
  font-size: clamp(18px, 5.65vw, 24px);
  margin-top: 12px;
}
.p-entry__caution {
  font-size: clamp(11px, 3.29vw, 14px);
  color: var(--color-primary);
  margin-top: 16px;
  text-align: center;
}

.p-airport {
  margin-top: 24px;
  margin-left: 8%;
  margin-right: 8%;
  margin-bottom: 50px;
  text-align: left;
}
.p-airport__title {
  display: inline-block;
  padding: 8px 26px;
  font-size: clamp(16px, 4.94vw, 21px);
  font-weight: 700;
  margin-bottom: 12px;
  border: 1px solid var(--color-primary);
  border-radius: 99rem;
  line-height: 1;
}
.p-airport__list {
  font-weight: 600;
  font-size: clamp(13px, 4.0vw, 17px);
  line-height: 1.8;
}
.p-airport__note {
  border-top: 1px solid var(--color-primary);
  margin-top: 12px;
  padding-top: 12px;
  font-size: clamp(10px, 3.06vw, 13px);
  color: #231815;
}

/* ============================================
   賞品リスト
============================================ */
.p-prize-list {
  margin-top: 24px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-prize {
  text-align: left;
}
.p-prize__body {
  padding-top: 12px;
  position: relative;
}
.p-prize__name {
  font-size: clamp(14px, 4.24vw, 18px);
  font-weight: 700;
  padding-right: 90px;
}
.p-prize__amount {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 14px;
  background: var(--color-accent-red);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
}
.p-prize__num {
  position: absolute;
  top: 8px;
  right: 0;
  color: var(--color-accent-red);
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.p-prize__num .num {
  font-size: clamp(27px, 8.47vw, 36px);
}
.p-prize__num .unit {
  font-size: clamp(9px, 2.82vw, 12px);
  line-height: 1.2;
}
.p-prize__logo {
  width: 140px;
  margin-top: 12px;
}
.p-prize__annotation {
  font-size: clamp(9px, 2.82vw, 12px);
  color: #666;
  margin-top: 10px;
}

/* ============================================
   応募方法／応募規約
============================================ */
.p-application__heading {
  font-weight: 700;
  font-size: clamp(15px, 4.71vw, 20px);
}
.p-application__heading.js-accordion-btn {
  cursor: pointer;
}
.p-application__heading-icon--minus {
  display: none;
}
.p-application__heading.js-accordion-btn[aria-expanded="true"] .p-application__heading-icon--plus {
  display: none;
}
.p-application__heading.js-accordion-btn[aria-expanded="true"] .p-application__heading-icon--minus {
  display: block;
}
.p-application__heading.is-plain {
  width: 250px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  background: #999;
  color: #fff;
  border-radius: 26px 26px 0 0;
  text-align: center;
  letter-spacing: 0.4em;
}
.p-application__body {
  padding-top: 10px;
  text-align: center;
}
.p-application__body.js-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  padding-top: 0;
  transition: grid-template-rows 0.4s ease;
}
.p-application__body.js-accordion-panel.is-open {
  grid-template-rows: 1fr;
}
.p-application__body-inner {
  overflow: hidden;
  padding-top: 10px;
}
.p-application__lead {
  font-weight: 700;
  margin-bottom: 16px;
}
.p-application__terms {
  margin-top: 75px;
  margin-bottom: 40px;
  padding: 0 5.4%;
}
.p-rule {
  text-align: left;
}
.p-rule dt {
  display: block;
  padding: 6px 14px;
  background: #999;
  color: #fff;
  font-size: clamp(15px, 4.71vw, 20px);
  font-weight: 700;
  margin-top: 25px;
  line-height: 1;
  letter-spacing: 0.4em;
}
.p-rule dt:first-child {
  margin-top: 0;
}
.p-rule dd {
  margin-top: 10px;
  font-size: clamp(14px, 4.47vw, 19px);
  font-weight: 700;
  line-height: 1.5;
}
.p-rule dd .is-red {
  color: var(--color-accent-red);
}
.p-rule dt.is-white-bg {
  padding-left: 8px;
  background: transparent;
  color: var(--color-primary);
  border-left: 1px solid var(--color-primary);
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  letter-spacing: 0.04em;
}
.p-rule dd.p-rule__normal-text {
  font-weight: 400;
  font-size: clamp(14px, 4.24vw, 18px);
}
.p-rule__annotation {
  display: block;
  margin-top: 20px;
  margin-bottom: 60px;
  font-size: clamp(11px, 3.53vw, 15px);
  font-weight: 400;
}
.p-rule__small {
  display: block;
  margin: 10px 0 20px;
  font-size: clamp(11px, 3.53vw, 15px);
  font-weight: 400;
  line-height: 1.58;
}
.p-rule__note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 2px solid #90928f;
  font-size: clamp(11px, 3.53vw, 15px);
  text-align: left;
}

.p-entry2__soon {
  margin-top: 24px;
  padding: 20px;
  border: 2px solid var(--color-accent-red);
  border-radius: 8px;
  color: var(--color-accent-red);
  font-weight: 700;
  font-size: clamp(14px, 4.24vw, 18px);
  text-align: center;
  line-height: 1.6;
}

/* ============================================
   SNS投稿キャンペーン
============================================ */
.p-sns {
  padding-top: 110px;
  text-align: center;
}
.p-sns__lead {
  font-weight: 700;
  font-size: clamp(15px, 4.71vw, 20px);
  margin-bottom: 16px;
}
.p-sns__title {
  font-weight: 700;
  font-size: clamp(15px, 4.71vw, 20px);
  margin-top: 16px;
}
.p-sns__date {
  font-weight: 700;
}
.p-sns__hashtag {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 24px;
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(15px, 4.71vw, 20px);
}
.p-sns__text {
  margin-top: 16px;
  line-height: 1.9;
  text-align: left;
}
.p-sns__text .is-red {
  color: var(--color-accent-red);
}
.p-sns__prize-name {
  margin-top: 16px;
  font-size: clamp(14px, 4.24vw, 18px);
  font-weight: 700;
}
.p-sns__prize-note {
  margin-top: 8px;
  font-size: clamp(9px, 2.82vw, 12px);
  color: #666;
}
.p-sns__wchance {
  margin-top: 40px;
  font-size: clamp(17px, 5.18vw, 22px);
  font-weight: 700;
}
.p-sns__wchance .w {
  color: var(--color-accent-red);
  font-size: clamp(30px, 9.41vw, 40px);
}
.p-sns__wchance-title {
  margin-top: 8px;
  font-size: clamp(14px, 4.47vw, 19px);
  font-weight: 700;
}
.p-sns__small {
  margin-top: 8px;
  font-size: clamp(9px, 2.82vw, 12px);
  color: #666;
  text-align: center;
}
.p-sns__soon {
  margin-top: 24px;
  padding: 20px;
  border: 2px solid var(--color-accent-red);
  border-radius: 8px;
  color: var(--color-accent-red);
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}

/* ============================================
   注意事項
============================================ */
.p-notice {
  padding: 40px 6% 40px 8%;
  margin: 56px 5%;
  border: 2px solid #90928f;
  border-radius: 19px;
  font-feature-settings: "palt";
}
.p-notice__inner {
  overflow-y: auto;
  max-height: 260px;
}
.p-notice__title {
  font-weight: 700;
  font-size: clamp(14px, 4.24vw, 18px);
  text-align: center;
}
.p-notice__text {
  font-size: clamp(11px, 3.53vw, 15px);
  line-height: 1.9;
  margin-top: 8px;
  color: #333;
}
.p-notice__text li {
  text-indent: -1em;
  padding-left: 1em;
}
.p-notice__text li::before {
  content: "※";
}
.p-notice__text + .p-notice__title {
  margin-top: 60px;
}

/* ============================================
   旅のテーマで選ぶ！冬の北海道旅行特集
============================================ */
.p-feature {
  text-align: center;
}
.p-feature__eyebrow {
  font-weight: 700;
  font-size: clamp(11px, 3.53vw, 15px);
}
.p-feature__winter {
  font-weight: 700;
  font-size: clamp(10px, 3.06vw, 13px);
  color: #8a6d3b;
}
.p-feature__title {
  font-size: clamp(18px, 5.65vw, 24px);
  font-weight: 700;
  margin-top: 8px;
  line-height: 1.5;
}
.p-feature__cat {
  text-align: left;
}
.p-feature__cat-lead {
  font-weight: 700;
  text-align: center;
}
.p-feature__cat-name {
  margin-top: 6px;
  padding: 10px;
  background: var(--cat-color, var(--color-primary));
  color: #fff;
  font-weight: 700;
  font-size: clamp(17px, 5.18vw, 22px);
  text-align: center;
}
.p-feature__cat-en {
  margin-top: 6px;
  color: var(--cat-color, var(--color-primary));
  font-weight: 700;
  text-align: center;
}
.p-feature__card {
  display: block;
  margin-top: 16px;
}
.p-feature__card-text {
  margin-top: 8px;
  font-weight: 700;
  line-height: 1.6;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.p-feature__card-text .more {
  flex-shrink: 0;
  font-size: clamp(9px, 2.82vw, 12px);
  font-style: italic;
  font-weight: 700;
}

/* ============================================
   冬の北海道旅行ガイド
============================================ */
.p-guide {
  display: block;
  margin: 40px 20px 0;
  padding: 24px 20px;
  background: #f1e6d8;
  border-radius: 8px;
  text-align: center;
}
.p-guide__lead {
  font-weight: 700;
}
.p-guide__title {
  margin-top: 8px;
  font-size: clamp(17px, 5.18vw, 22px);
  font-weight: 700;
  line-height: 1.4;
}
.p-guide .ph {
  width: 100px;
  margin: 12px auto 0;
}

/* ============================================
   アクセス情報
============================================ */
.p-access {
  padding-bottom: 65px;
  text-align: center;
  background: #f7f3ec;
}
.p-access__eyebrow {
  font-weight: 700;
  letter-spacing: 0.1em;
}
.p-access__title {
  font-size: clamp(18px, 5.65vw, 24px);
  font-weight: 700;
  margin-top: 4px;
  line-height: 1.5;
}
.p-access__text {
  margin-top: 20px;
  font-size: clamp(11px, 3.53vw, 15px);
  font-weight: 600;
  line-height: 1.6;
}
.c-btn--dark {
  margin-top: 16px;
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  justify-content: space-between;
}

/* ============================================
   各交通機関の情報
============================================ */
.p-transport {
  padding: 40px 7% 0;
  text-align: center;
}
.p-transport__title {
  padding-bottom: 5px;
  font-size: clamp(15px, 4.71vw, 20px);
  font-weight: 700;
  border-bottom: 1px solid #727171;
}
.p-transport__grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.p-transport__grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #727171;
  border-radius: 16px;
  overflow: hidden;
}
.p-transport__grid li a {
  display: block;
  width: 100%;
}
.p-transport__grid img {
  width: 100%;
  height: auto;
}
.p-transport__grid + .p-transport__grid {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #727171;
}
.p-transport__banner-img {
  display: block;
  margin-top: 32px;
  border-radius: 8px;
  overflow: hidden;
}
.p-transport__contact {
  margin-top: 60px;
}
.p-transport__contact a {
  text-decoration: underline;
  font-weight: 700;
  font-size: clamp(11px, 3.53vw, 15px);
}

/* ============================================
   フッター
============================================ */
.p-footer {
  padding: 70px 5.6% 40px;
  text-align: center;
}
.p-footer__logo-link {
  display: block;
}
.p-footer__lead {
  margin-top: 20px;
  font-size: clamp(11px, 3.29vw, 14px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.16em;
}
.p-footer__sns {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 12.7%;
}
.p-footer__sns a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.p-footer__sns a img {
  width: 100%;
}
.p-footer__sns .ph {
  width: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.p-footer__sns span {
  font-weight: 700;
  font-size: clamp(11px, 3.29vw, 14px);
  line-height: 1.6;
}
.p-footer__img--line {
  width: 207px;
}
.p-footer__img--netshop {
  left: -5px;
  width: 211px;
}
.p-footer__img--insta {
  margin-top: 7px;
  width: 287px;
}
.p-footer__org-logo {
  width: 154px;
  margin: 55px auto 0;
}
.p-footer__address {
  margin-top: 12px;
  font-size: clamp(9px, 2.82vw, 12px);
  line-height: 1.5;
}
.p-footer__copyright {
  margin-top: 8px;
  font-size: clamp(9px, 2.82vw, 12px);
}
.p-footer__pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  display: block;
  width: 47px;
  margin: 24px auto 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.p-footer__pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   トップページ：書き出し画像を直接使うブロック
============================================ */
.p-spot-banner-img {
  display: block;
  position: sticky;
  top: 0;
  z-index: 95;
}

.p-guide-img {
  display: block;
}

.p-entry__head-img {
  display: block;
  margin: 0 auto;
}

.p-prize-list--img {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-prize-img {
  text-align: left;
}
.p-prize-img .p-prize__annotation {
  font-size: clamp(11px, 3.53vw, 15px);
  color: var(--color-primary);
  margin-top: 10px;
  padding: 0 8%;
  line-height: 1.4;
  font-feature-settings: "palt";
}

.c-btn-img {
  display: block;
}

.p-entry2__soon-img {
  display: block;
  margin: 24px auto 0;
}

.p-sns__prize-img,
.p-sns__wchance-img,
.p-sns__closing-img {
  display: block;
}

.p-feature__card-img {
  display: block;
}

.p-transport__img {
  margin-top: 20px;
}

/* ============================================
   子ページ：おすすめスポット・モデルコース
============================================ */
.p-spot-head {
  text-align: center;
}
.p-spot-head__badge {
  margin-top: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.p-spot-head__title {
  margin-top: 8px;
  font-size: clamp(17px, 5.18vw, 22px);
  font-weight: 700;
}
.p-spot-head__lead {
  margin: 16px 0 60px;
  padding: 0 7%;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  font-feature-settings: "palt";
}

.p-region {
  margin-top: -10px;
}
.p-resion__spot {
  margin-bottom: -20px;
  position: relative;
  z-index: 99;
}
.p-region__head {
  text-align: center;
}
.p-region__badge {
  display: inline-block;
  padding: 4px 20px;
  background: var(--region-color, var(--color-primary));
  color: #fff;
  font-weight: 700;
  font-size: clamp(10px, 3.06vw, 13px);
  letter-spacing: 0.1em;
  border-radius: 999px;
}
.p-region__name {
  margin-top: 10px;
  font-weight: 700;
  font-size: clamp(11px, 3.53vw, 15px);
  color: var(--region-color, var(--color-primary));
}
.p-region__title {
  margin-top: 4px;
  font-size: clamp(17px, 5.18vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.p-spot-totop {
  padding-bottom: 40px;
  text-align: center;
  background-image: url(../images/spot_totop.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.p-spot-totop a {
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
}

.p-spot-head img + img {
  margin-top: 16px;
}

.p-access-card-img {
  display: block;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

/* モデルコース（スライダー1枚目） */
.p-spot-slider__item .p-model-course__heading {
  display: block;
  width: 100%;
}
.p-spot-slider__item .p-model-course-img {
  display: block;
  width: 100%;
}
