@charset "utf-8";

/* === ベース・共通設定 ============================== */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: #f8f9fa;
  font-family: 'M PLUS Rounded 1c', 'Meiryo', sans-serif!important;
  color: #222;
  text-align: center;
  margin: 150px 0 !important;
  line-height: 1.7;
}

img {
  width: 100%;
}

p {
  text-align: center;
}

ul {
  padding: 10px!important;
}


.point-header-block {
  max-width: 1000px;
  margin: 28px auto 0;
  padding: 0;
  text-align: center;
}

/* 「宿泊プラン クーポン適用方法」用の赤帯 */
.point-sub-bar_r {
  background: #e62f8b;
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1.3;
  padding: 10px 0;
  box-shadow: 0 0 0 #0000;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.special-content {
  margin: 50px 0;
}

.special-section {
  max-width: 1000px;
  margin: 0 auto 100px;
  padding: 0 10px 50px;
  background: #fff;
  box-sizing: border-box;
}

/* 画像は中央寄せ・枠なし */
.special-img {
  max-width: 900px;
  margin: 12px auto;
  display: block;
}

/* 説明文 */
.special-desc {
  color: #000;
  margin-bottom: 8px;
  font-size: 1em;
  text-align: center;
  padding: 0 10px;
}
/* === ★ここまで★ ================================== */


/* STEP */
/* --- STEPラベル帯（見出しは削除予定、ボタンで流用予定）--- */
/* ※もし「.step-label-bar」で他でも使う場合はこのまま残してOK */
.step-label-bar {
  display: block;
  background: #e62f8b;
  color: #fff;
  font-weight: bold;
  font-size: 1.14em;
  border-radius: 30px;
  box-shadow: 0 2px 8px #e62f8b22;
  padding: 13px 32px 13px 32px;
  text-align: center;
  margin: 0 auto 23px auto;
  max-width: 420px;
  letter-spacing: 0.04em;
}

/* --- ステップ横並び本体 --- */
.step-box-group-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

/* --- 各ステップ（枠・背景・角丸つき。ここはそのまま） --- */
.step-box-simple {
  border: 1.5px solid #e62f8b;
  border-radius: 8px;
  background: #fff;
  padding: 18px 18px 13px 18px;
  min-width: 160px;
  text-align: center;
  box-sizing: border-box;
  font-size: 1em;
}

/* --- STEPタイトル --- */
.step-title {
  color: #e62f8b;
  font-weight: bold;
  font-size: 1em;
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}
.step-desc {
  color: #222;
  font-size: 1em;
  line-height: 1.55;
}
.step-footnote {
  font-size: 0.83em;
  color: #888;
  font-weight: normal;
}

/* --- ステップの矢印 --- */
.step-arrow-simple {
  color: #e62f8b;
  font-size: 1.4em;
  user-select: none;
  display: flex;
  align-items: center;
  margin: 0;
}

/* --- 下部アンカーリンク用帯ボタン --- */
.step-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: 50px auto 0 auto;
  flex-wrap: wrap;
}

.rsv-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: 100px auto 0 auto;
  flex-wrap: wrap;
}

.step-round-btn {
  display: inline-block;
  background: #e62f8b;
  color: #fff;
  font-weight: bold;
  font-size: 1.14em;
  border-radius: 30px;
  box-shadow: 0 2px 8px #e62f8b22;
  padding: 13px 34px 13px 34px;
  text-align: center;
  letter-spacing: 0.04em;
  text-decoration: none;
  min-width: 220px;
  max-width: 90vw;
  transition: background 0.18s, opacity 0.15s;
  position: relative;
  overflow: hidden;
}

.step-round-btn:hover,
.step-round-btn:focus {
  background: #d23729;
  opacity: 0.93;
  text-decoration: none;
}

.btn-arrow {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 1.1em;
  vertical-align: middle;
  transition: transform 0.18s;
}

/* ホバー時に下にちょっと揺らす */
.step-round-btn:hover .btn-arrow,
.step-round-btn:focus .btn-arrow {
  transform: translateY(3px);
}

#use p {
  padding: 20px 0;
  background: #efefef;
  margin: 30px 5px 10px;
  font-size: 0.8em;
}

/* --- モバイル対応：縦並び＋各種サイズ微調整 --- */
@media screen and (max-width: 670px) {
  .step-label-bar {
    font-size: 0.98em;
    padding: 9px 6vw;
    max-width: 97vw;
    margin-bottom: 15px;
  }
  .step-box-group-simple {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
    align-items: stretch;
  }
  .step-box-simple {
    min-width: unset;
    width: 100%;
    font-size: 0.94em;
    padding: 10px 5vw 9px 5vw;
  }
  .step-title {
    font-size: 1.3em;
  }
  .step-desc {
    font-size: 1.2em;
  }
  .step-arrow-simple {
    font-size: 1.2em;
    justify-content: center;
    margin: 0;
  }
  /* ボタン縦並びとサイズ調整 */
  .step-btn-wrap {
    flex-direction: column;
    gap: 13px;
    margin-top: 50px;
  }
  .step-round-btn {
    font-size: 1em;
    padding: 11px 7vw;
    min-width: 0;
    width: 95vw;
    max-width: 97vw;
  }
}



/* === 各枠帯 ============================================= */
/* 横長帯ラベル */
.label-bar {
  display: block;
  background: #747474;
  color: #fff;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 8px #e62f8b22;
  padding: 13px 32px 13px 32px;
  text-align: center;
  margin: 0 auto 23px auto;
  max-width: 1000px;
  letter-spacing: 0.04em;
}

.explain-box {
  background: #ffebf5;
  padding: 20px 5px 10px;
}


/* === 注意事項 ============================================= */

.special-section h3 {
  margin-bottom: 7px;
  color: #3f51b5;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
}



.pc-none { display: none; }
.sp-none { display: block; }
.pc-icon-none {
  display: none;
}
.sp-icon-none {
  display: flex;
}

/* === レスポンシブ対応 ====================================== */
@media screen and (max-width: 640px) {

  body {
    background: #f8f9fa;
    font-family: 'M PLUS Rounded 1c', 'Meiryo', sans-serif!important;
    color: #222;
    text-align: center;
    margin: 50px 0 !important;
    line-height: 1.7;
  }

  .section-bar .bar-text {
    font-size: 1em;
    padding: 0 2vw;
  }
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }

  .pc-icon-none {
    display: flex;
  }
  .sp-icon-none {
    display: none;
  }

  .point-sub-bar_r {
    font-size: 1.5em;
  }

  .special-desc {
    font-size: 0.8em;
  }

  .special-section h3 {
    font-size: 1.3em;
  }
}