/* =========================================
   HOW TO STAY ページ固有スタイル 追記分
========================================= */
body {
  background: #f9f9f9;
}
.main {
  padding-top: 130px;
}
/* --- 導入エリア (大タイトルの下) --- */
.child-mv__heading {
  color: #2d3435;
}
.child-mv__heading:after {
  background: #2d3435;
}
.hts-intro {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 120px;
}
.hts-contents-wrap {
  max-width: 1800px;
  width: 87%;
  margin: 0 auto;
}
.hts-intro__txt {
  font-size: 15px;
  color: #2d3435;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.hts-intro__imgs {
  background-image: url(../img/howtostay/howtostay-top.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 35rem;
}

.hts-intro__imgs img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- セクション共通 (01 SAUNA ~ 04 LOCATION) --- */
.hts-sec {
  margin-bottom: 100px;
}
.hts-sec__head {
  text-align: center;
  margin-bottom: 40px;
}

/* 小タイトル (横ライン無し・木目背景) */
.hts-sec__ttl {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: #2d3435;
  display: inline-flex;
  align-items: start;
  justify-content: center;
  padding: 10px 35px 10px 25px;
  margin-bottom: 30px;
  letter-spacing: 0.1rem;
}
.hts-sec__ttl span.sec-number {
  font-size: 2rem;
  margin-right: 15px;
  padding-top: 0.5rem;
  font-weight: 300;
}

.hts-sec__catch {
  font-size: 18px;
  color: #2d3435;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hts-sec__desc {
  font-size: 14px;
  line-height: 2;
  color: #5a6061;
  font-weight: 300;
}

.hts-sec__main-img {
  margin-bottom: 40px;
}
.hts-sec__main-img img {
  width: 100%;
  height: auto;
}

/* --- サブエリア (リスト・サムネイル等) --- */
.hts-sec__sub {
  text-align: center;
}
.hts-sec__sub-ttl {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  display: inline-block;
}

/* 共通リスト (ひし形アイコン) */
.hts-sec__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  font-size: 1rem;
}
.hts-sec__list li {
  display: flex;
  align-items: center;
}
.hts-sec__list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #a97d4e; /* common.cssに合わせたアクセントカラー */
  transform: rotate(45deg);
  margin-right: 12px;
}
/* =========================================
   共通コンポーネント：特徴リスト (Sauna, Bar, Locationで流用)
========================================= */
.hts-feature-box {
  margin-top: 60px;
  margin-bottom: 40px;
  width: 100%;
}

.hts-feature-box__ttl {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: #2d3435;
}

/* タイトル下の全幅ラインを枠線で表現 */
.hts-feature-box__body {
  border-top: 1px solid rgba(32, 32, 32, 0.3);
  padding-top: 40px;
}

.hts-feature-box__list {
  display: flex;
  flex-direction: column;
  gap: 30px; /* 縦の余白 */
}

.hts-feature-box__list li {
  display: flex;
  align-items: center; /* 後ほどLocationでアイコン等を横並びにするための布石 */
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #5a6061;
}

.hts-feature-box__list li span {
  margin-left: 35px;
  display: flex;
  text-align: left;
}
.hts-feature-box__list li span.sub-list-name {
  display: flex;
  align-items: center;
  text-align: left;
}
.hts-feature-box__list li span.sub-list-name::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #bfa17c;
  transform: rotate(45deg);
  margin-right: 15px; /* テキストとの距離 */
  flex-shrink: 0;
}
.hts-feature-box__list li span.taketime::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.3rem;
  height: 1.3rem;
  margin-right: 5px; /* テキストとの距離 */
  flex-shrink: 0;
}
.hts-feature-box__list li span.taketime.-walk::before {
  background-image: url(../img/common/directions_walk.png);
}
.hts-feature-box__list li span.taketime.-train::before {
  background-image: url(../img/common/directions_subway.png);
}
/* --- SP時の調整 --- */
@media print, screen and (max-width: 1023.9px) {
  .hts-feature-box {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .hts-feature-box__ttl {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .hts-feature-box__body {
    padding-top: 25px;
  }
  .hts-feature-box__list {
    gap: 10px;
    padding-left: 0; /* SP時は画面幅が狭いためインデントをリセット */
  }
  /* SP表示でテキストが2行になった場合、ひし形が上部揃えになるように調整 */
  .hts-feature-box__list li {
    font-size: 13px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hts-feature-box__list li span {
    margin-left: 10px;
    margin-bottom: 0.5rem;
    text-align: left;
  }
  .hts-feature-box__list li span.sub-list-name::before {
    width: 12px;
    height: 12px;
    margin-right: 15px;
    margin-top: 4px; /* テキストの1行目の中央に合うように微調整 */
  }
}
#bed-totonoi,
#location {
  background-color: #f2f4f4;
  padding: 7rem 0;
}
#location {
  margin-bottom: 0;
}
/* サムネイルグリッド */
.hts-sec__thumbs {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.hts-sec__thumbs.-col4 li {
  width: calc(25% - 11.25px);
}
.hts-sec__thumbs.-col2 li {
  width: calc(50% - 7.5px);
  text-align: left;
}
.hts-sec__thumbs li img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 10/10; /* 画像の高さをきれいに揃える */
}
#bed-totonoi .hts-sec__thumbs li img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 17/10; /* 画像の高さをきれいに揃える */
}
.hts-sec__thumbs-cap {
  font-size: 13px;
  margin-top: 10px;
  color: #5a6061;
}

/* =========================================
   Responsive (SP表示の調整)
========================================= */
@media print, screen and (max-width: 1023.9px) {
  .hts-intro {
    margin-top: 30px;
    margin-bottom: 80px;
  }
  .hts-intro__txt {
    font-size: 13px;
    text-align: left;
    width: 87%;
    margin-right: auto;
    margin-left: auto;
  }
  .hts-intro__imgs {
    flex-direction: column;
    gap: 15px;
  }
  .hts-intro__imgs li {
    width: 100%;
  }

  .hts-sec {
    margin-bottom: 60px;
  }
  .hts-sec__ttl {
    font-size: 26px;
    padding: 8px 15px;
    display: flex;
  }
  .hts-sec__ttl span.sec-number {
    font-size: 16px;
    margin-right: 5px;
    padding-top: 0.3rem;
  }
  .hts-sec__ttl span {
    font-size: 2rem;
  }
  .hts-sec__catch {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .hts-sec__desc {
    font-size: 13px;
  }

  .hts-sec__list {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding-left: 10px;
  }
  .hts-sec__thumbs.-col4 {
    flex-wrap: wrap;
    gap: 10px;
  }
  .hts-sec__thumbs.-col4 li {
    width: calc(50% - 5px);
  }
  .hts-sec__thumbs.-col2 li {
    width: 100%;
  }
  .hts-sec__thumbs-cap {
    font-size: 11px;
  }
  .hts-sec__list.-loc {
    padding: 20px 0;
  }
  .hts-sec__list.-loc li .en {
    width: 60px;
  }
  .hts-intro__imgs {
    height: 11rem;
  }
  .hts-contents-wrap {
    width: 100%;
    margin: 0 auto;
  }
  #bed-totonoi,
  #location {
    padding: 4rem 0;
  }
}
