/* =========================================================
   Base / Common
   ========================================================= */
main.contents {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

main.contents a {
  font-weight: bold;
  color: #1C90EF;
}

.sec>.inner {
  width: 995px;
  margin: 0 auto;
}

.sec>.inner>.wrap {
  width: 935px;
  margin: 0 auto;
}

.sec>.inner .box {
  padding: 40px 30px;
  background: #F8F8F8;
  border-radius: 8px;
}

.sec .sectionTitle {
  padding: 15px 0;
  line-height: 1.2;
  font-size: 32px;
  font-weight: bold;
  text-align: center;

  color: var(--title-color);
  background: var(--title-bg);
}

.sec .sectionTitleB {
  margin: 0 0 40px;
  padding: 5px 0 0 20px;
  line-height: 1.5;
  font-size: 28px;
  font-weight: bold;
  border-left: 10px solid #042784;
}

/* =========================================================
   Section theme variables (default)
   ========================================================= */
.sec {
  /* section 全体の背景 */
  --sec-bg: transparent;

  /* inner の背景 */
  --inner-bg: transparent;

  /* sectionTitle（PC）の背景/文字 */
  --title-bg: #042784;
  --title-color: #fff;

  /* sectionTitle（SP）の背景/文字（SPは帯を消すデフォルト） */
  --title-sp-bg: transparent;
  --title-sp-color: inherit;

  /* SP側で背景を変えたい場合のフック（デフォルトはPCと同じ） */
  --sec-sp-bg: var(--sec-bg);
  --inner-sp-bg: var(--inner-bg);

  /* sectionの「外側（余白領域）」の背景色と高さ */
  --sec-outer-bg: transparent;
  --sec-outer-size: 80px;
  /* PC：外側塗り（=セクション間余白の想定） */
  --sec-outer-size-sp: 40px;
  /* SP：外側塗り */

  position: relative;
  background: var(--sec-bg);
}

.sec>.inner {
  background: var(--inner-bg);
}

/* 各セクション外側（上下の余白領域）を背景色で塗る */
.sec::before,
.sec::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--sec-outer-bg);
  z-index: -1;
  /* セクション本体より後ろ */
  pointer-events: none;
}

.sec::before {
  top: calc(var(--sec-outer-size) * -1);
  height: var(--sec-outer-size);
}

.sec::after {
  bottom: calc(var(--sec-outer-size) * -1);
  height: var(--sec-outer-size);
}

/* =========================================================
   Responsive common
   ========================================================= */
@media only screen and (max-width: 767px) {
  body {
    padding: 50px 0 60px;
  }

  .sec>.inner {
    width: calc(335/375*100vw);
  }

  .sec>.inner>.wrap {
    width: 100%;
  }

  .sec>.inner .box {
    padding: 20px;
    border-radius: 8px;
  }

  /* SPでも section / inner の背景変数が効くように共通適用 */
  .sec {
    background: var(--sec-sp-bg);
  }

  .sec>.inner {
    background: var(--inner-sp-bg);
  }

  /* SP用の外側余白塗り */
  .sec::before {
    top: calc(var(--sec-outer-size-sp) * -1);
    height: var(--sec-outer-size-sp);
  }

  .sec::after {
    bottom: calc(var(--sec-outer-size-sp) * -1);
    height: var(--sec-outer-size-sp);
  }

  .sec .sectionTitle {
    width: 100%;
    line-height: 1.5;
    text-align: initial;
    margin: 0 auto 15px;
    padding: 0 0 0 15px;
    font-size: 18px;
    border-left: 5px solid #042784;

    color: var(--title-sp-color, var(--title-color, inherit));
    background: var(--title-sp-bg, transparent);
  }

  .sec .sectionTitleB {
    margin: 0 0 15px;
    padding: 0 0 0 15px;
    font-size: 18px;
    border-left: 5px solid #042784;
  }
}








/* =========================================================
   secIntro
   ========================================================= */
.secIntro {
  padding: 40px 0 30px;
}

.secIntro .hero {
  margin: 0 0 30px;
}

.secIntro .anchorNav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  width: 929px;
  height: 56px;
  margin: 0 auto;
  box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.3);
  border-radius: 36px;
}

@media only screen and (max-width: 767px) {
  .secIntro {
    margin: 0 0 24px;
    padding: 0;
  }

  .secIntro .inner {
    width: 100%;
  }

  .secIntro .hero {
    margin: 0;
  }

  .secIntro .anchorNav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10px 0;
    box-shadow: initial;
    border-radius: initial;
    background: #F8F8F8;
  }

  .secIntro .anchorNav .item {
    display: flex;
    justify-content: center;
    width: 50%;
    padding: 10px 0;
  }

  .secIntro .anchorNav .item a,
  .secIntro .anchorNav .item_n a {
    position: relative;
    padding: 0 0 0 22px;
  }

  /* .secIntro .anchorNav .item_n {
    display: flex;
    width: 100%;
    padding: 10px 0;
  } */

  .secIntro .anchorNav .item_n {
    display: flex;
    justify-content: center;
    width: 33%;
    padding: 10px 0;
  }



  .secIntro .anchorNav .item a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background: url(../../images/event/cashback-202404/icon_arrow_b.svg) 0 0 / 100% no-repeat;
  }
}



/* =========================================
   KV：PC共通（フルで表示）
   ========================================= */
.secIntro .hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================
   KV：SP用（両サイド200pxずつを見切らせる想定）
   ＝ 500×200の画像と同じ比率で表示
   ========================================= */
@media only screen and (max-width: 767px) {

  .secIntro .hero {
    margin: 0 0 16px;
    overflow: hidden;
    /* はみ出した左右を隠す */
  }

  .secIntro .hero img {
    /* ここで既存の
       width: auto;
       height: calc(241/375*100vw);
       を上書きする */
    width: 100%;
    height: calc(200 / 500 * 100vw);
    /* 500×200の比率 → 高さは横幅の0.4倍 */
    object-fit: cover;
    object-position: center;
    /* 画像の中心を表示（左右が均等に切れる） */
  }
}





/* =========================================================
   secAbout（aboutページ準拠・最終版）
   ========================================================= */
#secAbout.secAbout {
  margin: 0 0 80px;
  padding: 60px 0;
}

/* LPの幅体系に合わせる */
#secAbout .wrap {
  width: 935px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* 縦積みセンター（aboutと同じ骨格） */
#secAbout .detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 30px auto 50px;
  text-align: center;
}

#secAbout .detail .image img {
  width: 545px;
  max-width: 100%;
  height: auto;
}

#secAbout .detail .introduction {
  width: 545px;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

#secAbout .detail .introduction .strong {
  font-weight: bold;
}

#secAbout p.lead {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.secAbout .detail .sample ul {
  display: flex;
  gap: 18px;
}

.secAbout .detail .sample li {
  background-color: #fff;
  padding: 24px;
  border-radius: 4px;
  font-weight: bold;
  line-height: 32px;
  display: flex;
  gap: 12px;
  font-size: 18px;
  justify-content: center;
}

.secAbout .detail .sample li .red {
  color: #C92E2E;
  font-size: 22px;
  display: inline-block;
}

.secAbout .detail .sample li img.arrow {
  line-height: 32px;
}

.secAbout .detail .sample li span {
  font-size: 14px;
}

#secAbout .aboutHeadline {
  margin: 60px 0 30px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #000;
}

#secAbout .what-is-hometown-tax__centerimg {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: 900px;
}

@media only screen and (max-width: 767px) {
  #secAbout.secAbout {
    margin-bottom: 40px;
    padding: 40px 0;
  }

  #secAbout .wrap {
    width: 100%;
  }

  .secAbout .detail .sample ul {
    flex-direction: column;
  }

  #secAbout .aboutHeadline {
    margin: 40px 0 20px;
    font-size: 20px;
  }
}

@media only screen and (min-width: 400px) and (max-width: 440px) {
  .secAbout .detail .sample ul {
    align-items: center;
  }

  .secAbout .detail .sample li {
    max-width: 360px;
    width: 100%;
  }
}

/* =========================================================
   secHowto
   ========================================================= */
.secHowto {
  margin: 0 0 80px;
}

.secHowto .inner {
  padding: 0 0 40px;
}

.secHowto .num {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 0 30px;
}

.secHowto .num .item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 240px;
}

.secHowto .num .item:after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 24px;
  background: url(../../images/event/cashback-202404/icon_arrow.svg) 0 0 / 100% no-repeat;
}

.sec>.inner>.wrap.codeBox {
  margin-bottom: 40px;
}

.secHowto .btnArea {
  width: auto;
  text-align: center;
}

.secHowto .btnArea a {
  background-color: #F39A16;
  font-size: 18px;
  width: 100%;
  padding: 22px 0;
  border-radius: 40px;
  color: #fff;
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  .secHowto .num .item:nth-of-type(3n):after {
    content: initial;
  }

  .secHowto .btnArea a {
    font-size: 24px;
    padding: 22px 100px;
    width: auto;
  }
}

.secHowto .num .item .image img {
  width: auto;
  height: 207px;
}

.secHowto .num .item .image.large img {
  width: 240px;
  height: auto;
}

.secHowto .num .item .text {
  width: 220px;
}

.secHowto .num .item .text .red {
  color: #C92E2E;
}

.secHowto .codeBox {
  padding: 0 0 20px;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  background: #FFFCEA;
}

.secHowto .title {
  margin: 0 0 20px;
  padding: 10px 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #C92E2E;
  border-radius: 10px 10px 0 0;
}

.secHowto .code {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 110px;
  margin: 0 auto 10px;
  font-size: 48px;
  font-weight: bold;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
}

.secHowto .caption {
  font-size: 12px;
  color: #737373;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .secHowto .inner {
    padding: 40px 0;
  }

  .secHowto .num {
    flex-shrink: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100vw;
    margin: 40px 0 30px calc(-20/375*100vw);
    padding: 0 calc(20/375*100vw);
    overflow-x: scroll;
  }

  .secHowto .num .item.center {
    justify-content: center;
  }

  .secHowto .num .item:after {
    right: -26px;
  }

  .secHowto .num .item:last-of-type:after {
    content: initial;
  }

  .secHowto .num .item .image.large {
    width: 170px;
  }

  .secHowto .num .item .image.large img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    max-width: auto;
  }

  .secHowto .num .item .text {
    width: 172px;
  }

  .secHowto .title {
    font-size: 16px;
  }

  .secHowto .code {
    width: calc(275/375*100vw);
    height: 75px;
    font-size: 24px;
  }

  .secHowto .caption {
    width: calc(275/375*100vw);
    margin: 0 auto;
    text-align: left;
  }
}

/* =========================================================
   secTargetArea
   ========================================================= */
.secTargetArea {
  margin: 0 0 80px;
  padding: 60px 0;

  /* デフォルト配色（= 今の見た目を維持） */
  --sec-bg: #FFFCEA;
  --inner-bg: transparent;
}

.secTargetArea .areas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0 0;
  padding: 15px 15px;
  /* ← これが必要 */
  box-sizing: border-box;
}

.secTargetArea .areas .item {
  width: 226px;
  padding: 0 0 15px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.15);
}

.secTargetArea .areas .image {
  height: 150px;
  margin: 0 0 15px;
}

.secTargetArea .areas .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.secTargetArea .areas .name {
  width: 196px;
  margin: 0 auto 20px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: bold;
}

.secTargetArea .areas .link {
  width: 196px;
  margin: 0 auto;
}

.secTargetArea .areas .link a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  font-weight: bold;
  color: #fff;
  background: #1C90EF;
  border-radius: 4px;
}



@media only screen and (max-width: 767px) {
  .secTargetArea {
    padding: 0;
  }

  .secTargetArea .areas {
    flex-direction: column;
    gap: 15px;
    margin: 0;
  }

  .secTargetArea .areas .item {
    width: 100%;
  }

  .secTargetArea .areas .image {
    height: calc(150/375*100vw);
    margin: 0 0 15px;
  }

  .secTargetArea .areas .name,
  .secTargetArea .areas .link {
    width: calc(305/375*100vw);
  }

  .secTargetArea .btnArea {
    padding: 0 10px;
    margin-top: 25px;
  }

  .secTargetArea .btnArea a {
    width: 100%;
    padding: 18px 0;
    font-size: 16px;
  }

}

/* =========================================================
   secHotel / feature
   ========================================================= */
.secHotel {
  margin: 0;
  --sec-bg: #FFFFFF;
  --inner-bg: #FFFFFF;
}

.secHotel .inner {
  padding: 0 0 40px;
}

.secHotel .first {
  padding: 20px 0 0;
  text-align: center;
}

.secHotel .first .lead {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
}


/* 注目の宿リスト本体（secHotelとは別要素）を変数で塗れるように */
.feature.stay-container {
  --feature-bg: transparent;
  --feature-inner-bg: transparent;

  background: var(--feature-bg);
}

.feature.stay-container .facilities-wrap-noboder {
  background: var(--feature-inner-bg);
}

/* =========================================================
   feature（注目の宿） outer（セクション間余白）も色管理
   ========================================================= */
.feature.stay-container {
  /* 既存 */
  --feature-bg: transparent;
  --feature-inner-bg: transparent;

  /* ▼追加：outer（上下余白）も色管理できるようにする */
  --feature-outer-bg: transparent;
  --feature-outer-size: 80px;
  /* PCの余白高さ */
  --feature-outer-size-sp: 40px;
  /* SPの余白高さ */

  position: relative;
  background: var(--feature-bg);
}

/* outer（上下の空白）を塗る */
.feature.stay-container::before,
.feature.stay-container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--feature-outer-bg);
  z-index: -1;
  pointer-events: none;
}

.feature.stay-container::before {
  top: calc(var(--feature-outer-size) * -1);
  height: var(--feature-outer-size);
}

.feature.stay-container::after {
  bottom: calc(var(--feature-outer-size) * -1);
  height: var(--feature-outer-size);
}

@media only screen and (max-width: 767px) {
  .feature.stay-container::before {
    top: calc(var(--feature-outer-size-sp) * -1);
    height: var(--feature-outer-size-sp);
  }

  .feature.stay-container::after {
    bottom: calc(var(--feature-outer-size-sp) * -1);
    height: var(--feature-outer-size-sp);
  }
}


/* 企画LPで使ったホテル枠から、全体のボーダーをなくす */
.feature .facilities-wrap-noboder {
  padding: 0 20px 30px;
}

.feature .facilities-wrap-noboder .facilities__title {
  position: relative;
  left: 50%;
  translate: -50% -50%;
  display: inline-block;
  margin: 0 0 25px;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  background: #fff;
}

.feature .facilities-wrap-noboder .facilities-a {
  margin-bottom: 15px;
}

.feature .facilities-wrap-noboder .facilities-a__list {
  gap: 11px;
  flex-wrap: nowrap;
}

.feature .facilities-wrap-noboder .facilities-a__item {
  width: 230px;
}

.feature .facilities-wrap-noboder .facilities-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 272px;
  height: 52px;
  margin: 0 auto;
  color: #1C90EF;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-weight: 700;
}




@media only screen and (max-width: 767px) {
  .secHotel .inner {
    padding: 40px 0;
  }

  .secHotel .first {
    padding: 15px 0 30px;
    text-align: left;
  }

  .secHotel .first .lead {
    margin: 0 0 15px;
    font-size: 14px;
  }

  .secNext .btnArea a {
    font-size: 18px;
    padding: 10px 20px;
    width: auto;
  }

  .feature .facilities-wrap-noboder .facilities__title {
    margin: 0;
  }

  .feature .facilities-wrap-noboder .facilities-a {
    margin-bottom: 20px;
  }

  .feature .facilities-wrap-noboder .facilities-link a {
    width: 100%;
  }
}

/* =========================================================
   secNotes
   ========================================================= */
.secNotes {
  margin: 0 0 80px;
}

.secNotes .list {
  list-style-type: disc;
}

.secNotes .list li {
  margin-left: 1.5em;
}

.secNotes .list li ul {
  list-style-type: lower-alpha;
}

.secNotes .inner .box .subtitle {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  margin-top: 16px;
  padding-left: 4px;
}



/* -----------------------------------------------------
   共通：ボタンレイアウト（おすすめエリア・ホテル共通化）
----------------------------------------------------- */

.btnArea,
.btnArea--hotel {
  margin: 20px 0 0 !important;
  text-align: center !important;
  padding: 0 0 20px 0 !important;
  box-sizing: border-box !important;
}

/* -----------------------------------------------------
   おすすめエリアのボタン
----------------------------------------------------- */

.secTargetArea .btnArea a {
  display: inline-block !important;
  background: var(--area-btn-bg) !important;
  color: var(--area-btn-color) !important;
  font-size: 16px !important;
  padding: 18px 90px !important;
  border-radius: 40px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  border: none !important;
}

/* -----------------------------------------------------
   ホテルボタン（その他の宿を探す）
----------------------------------------------------- */

.btnArea--hotel a {
  display: inline-block !important;
  background: var(--hotel-btn-bg) !important;
  color: var(--hotel-btn-color) !important;
  font-size: 16px !important;
  padding: 18px 90px !important;
  border-radius: 40px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  border: none !important;
}

/* ▼縦幅がズレる場合の最終調整：line-heightを両方で固定 */
.secTargetArea .btnArea a,
.btnArea--hotel a {
  line-height: 1.2 !important;
  /* 1.2〜1.4で好み調整 */
}


/* =========================================================
   LPバリエーションごとのテーマ管理（section単位で上書き）
   ========================================================= */

/* 注目の宿：featureの親ラッパー白背景を消して連結させる */
/* まず親側はデフォルト透明に */
.page-theme.stay-wrapper {
  background: transparent !important;
}


* ---------- variation-staybase ---------- */

/* secIntro */
body.variation-staybase #secIntro {
  --sec-bg: #FFFFFF !important;
  --inner-bg: transparent !important;
  --sec-outer-bg: #FFFFFF !important;
}

/* secAbout */
body.variation-staybase #secAbout {
  --sec-bg: #FFF !important;
  --inner-bg: #F3F7FF !important;
  --title-bg: #042784 !important;
  --title-color: #fff !important;
  --sec-outer-bg: #Fff !important;
}

/* secHowto */
body.variation-staybase #secHowto {
  --sec-outer-bg: #fff !important;
  --sec-bg: #fff !important;
  --inner-bg: #F3F7FF !important;
  --title-bg: #042784 !important;
  --title-color: #fff !important;
}

/* secTargetArea*/
body.variation-staybase #secTargetArea {
  --sec-bg: #FFF !important;
  --inner-bg: #F3F7FF !important;
  --title-bg: #042784 !important;
  --title-color: #fff !important;
  --sec-outer-bg: #FFF !important;

  --area-btn-bg: #F39A16 !important;
  --area-btn-color: #fff !important;
}

/* secHotel（タイトル側） */
body.variation-staybase #secHotel {
  --sec-bg: #fff !important;
  --inner-bg: #F3F7FF !important;
  --title-bg: #042784 !important;
  --title-color: #fff !important;
  --sec-outer-bg: #fff !important;
}

body.variation-staybase .feature.stay-container {
  --hotel-btn-bg: #F39A16 !important;
  --hotel-btn-color: #fff !important;
}

/* feature（注目の宿リスト本体）もsecHotelと同系色で管理 */
body.variation-staybase .feature.stay-container {
  --feature-bg: #F3F7FF !important;
  --feature-inner-bg: #F3F7FF !important;
  --feature-outer-bg: #fff !important;
}

/* 注目の宿（facilities-a__item）を PC / SP 共通で白背景に統一 */
.feature.stay-container {
  --feature-bg: #FFFFFF !important;
  --feature-inner-bg: #FFFFFF !important;
  --feature-outer-bg: #FFFFFF !important;
}

.feature.stay-container .facilities-a__item {
  background: #FFFFFF !important;
}

/* variation-airdo のとき、親ラッパーも黄色にしてsecHotelと繋げる */
body.variation-staybase .page-theme.stay-wrapper {
  background: #FFf !important;
  /* secHotel / feature outer と同色 */
}

/* secNotes */
body.variation-staybase #secNotes {
  --sec-bg: #fff !important;
  --inner-bg: #F3F7FF !important;
  --title-bg: #042784 !important;
  --title-color: #fff !important;
  --sec-outer-bg: #fff !important;
}


/* =========================================================
   SP 共通配色（simulation.html と同じテイストに統一）
   ver ごとの色分けは PC のみで適用、SP はベースカラー固定
   ========================================================= */
@media only screen and (max-width: 767px) {

  /* ---------- KV & アンカーナビ（secIntro） ---------- */
  body.variation-staybase #secIntro {
    /* PC と同じ白ベース */
    --sec-sp-bg: #FFFFFF !important;
    --inner-sp-bg: transparent !important;
    --sec-outer-bg: #FFFFFF !important;
  }

  /* ---------- STAYNAVIふるさと納税とは？（secAbout） ---------- */
  body.variation-staybase #secAbout {
    /* 背景：外側は白、inner は淡いブルー */
    --sec-sp-bg: #F3F7FF !important;
    --inner-sp-bg: #F3F7FF !important;

    /* 見出し帯：濃い紺＋白文字（シミュレーションと同系） */
    --title-bg: #042784 !important;
    --title-color: #042784 !important;

    /* section 外側の塗りも白で統一 */
    --sec-outer-bg: #FFFFFF !important;
  }

  /* secHowto */
  body.variation-staybase #secHowto {
    --sec-outer-bg: #fff !important;
    --sec-bg: #F3F7FF !important;
    --inner-bg: #F3F7FF !important;
    --title-bg: #042784 !important;
    --title-color: #042784 !important;
  }


  /* ---------- おすすめエリア（secTargetArea） ---------- */
  body.variation-staybase #secTargetArea {
    --sec-sp-bg: #F3F7FF !important;
    --inner-sp-bg: #F3F7FF !important;

    --title-bg: #042784 !important;
    --title-color: #042784 !important;
    --sec-outer-bg: #fff !important;

    /* エリア一覧ボタンの色もベース仕様に */
    --area-btn-bg: #F39A16 !important;
    --area-btn-color: #FFFFFF !important;
  }



  body.variation-staybase #secHotel {
    --sec-bg: #F3F7FF !important;
    --inner-bg: #F3F7FF !important;
    --title-bg: #042784 !important;
    --title-color: #042784 !important;
    --sec-outer-bg: #fff !important;
  }

  body.variation-staybase .feature.stay-container {
    --hotel-btn-bg: #F39A16 !important;
    --hotel-btn-color: #fff !important;
  }

  /* feature（注目の宿リスト本体）もsecHotelと同系色で管理 */
  body.variation-staybase .feature.stay-container {
    --feature-bg: #F3F7FF !important;
    --feature-inner-bg: #F3F7FF !important;
    --feature-outer-bg: #F3F7FF !important;
  }

  body.variation-staybase .page-theme.stay-wrapper {
    background: #F3F7FF !important;
    /* secHotel / feature outer と同色 */
  }


  /* ---------- 注意事項（secNotes） ---------- */
  body.variation-staybase #secNotes {
    --sec-sp-bg: #FFFFFF !important;
    --inner-sp-bg: #F3F7FF !important;

    --title-bg: #042784 !important;
    --title-color: #042784 !important;
    --sec-outer-bg: #FFFFFF !important;
  }

}

/* =========================================================
   SP：タイトル上の #F3F7FF の高さを揃える
   ========================================================= */
@media only screen and (max-width: 767px) {

  /* 対象セクションの .inner の上に共通の余白を作る */
  #secHowto .inner,
  #secTargetArea .inner,
  #secHotel .inner,
  #secNotes .inner {
    padding-top: 32px; /* 好みで 20〜32px の範囲で微調整OK */
  }

  #secAbout .inner {
    padding-top: 0px; /* 好みで 20〜32px の範囲で微調整OK */
  }


  /* タイトル自身は上マージンをゼロにしておく */
  #secAbout .sectionTitle,
  #secHowto .sectionTitle,
  #secTargetArea .sectionTitle,
  #secHotel .sectionTitle,
  #secNotes .sectionTitle {
    margin-top: 0;
  }
}

