@charset "UTF-8";

/* =============================================================================

宿泊約款 CSS

・宿泊約款ページ用CSS（privacy ページと共通の「.privacy-×××」クラスを流用）

上記はここに記述する

============================================================================= */
.privacy_container {
  margin-top:8.0rem;
  padding-block:10.0rem;
}
@media (width <= 640px) {
  .privacy_container {
    margin-top:1.2rem;
    border-radius:0;
    padding-block:5.0rem 8.0rem;
  }
}


/* セクション大見出し（宿泊約款 / 利用規則） */
.privacy-contents .provision-title {
  display:block;
  margin-bottom:4.0rem;
  padding-bottom:1.6rem;
  border-bottom:1px solid var(--cc-gray-E-hex);
  font-size:2.2rem;
  line-height:1.4;
  letter-spacing:.08em;
}
.privacy-contents .provision-title:not(:first-child) {
  margin-top:9.6rem;
}
@media (width <= 640px) {
  .privacy-contents .provision-title {
    margin-bottom:2.4rem;
    padding-bottom:1.0rem;
    font-size:2.0rem;
  }
  .privacy-contents .provision-title:not(:first-child) {
    margin-top:6.4rem;
  }
}


/* 連番項目（N　…）：番号列を固定し、折り返し行を本文位置に揃える */
.privacy-contents .provision-item {
  display:grid;
  grid-template-columns:1.6em 1fr;
  grid-auto-flow:column;
}
@media (width <= 640px) {
  .privacy-contents .provision-item {
    grid-template-columns:1.5em 1fr;
  }
}

/* イ・ロ・ハ等のサブ項目：折り返し行を本文位置に揃える */
.privacy-contents .provision-subwrap {
  display:block;
}
.privacy-contents .provision-subitem {
  display:grid;
  grid-template-columns:1.6em 1fr;
  grid-auto-flow:column;
  padding-left:1em;
}
@media (width <= 640px) {
  .privacy-contents .provision-subitem {
    grid-template-columns:1.5em 1fr;
  }
}


/* 別表見出し：本文（p）と同じフォントサイズ */
.privacy-contents .provision-table-heading {
  font-size:inherit;
}

/* 別表（料金内訳・違約金）の画像 */
.privacy-contents .provision-table {
  margin-top:2.4rem;
  margin-bottom:1.6rem;
}
.privacy-contents .provision-note {
  margin-top:1.6rem;
  font-size:1.4rem;
  line-height:1.7;
}
.privacy-contents .provision-note + .provision-note {
  margin-top:.4em;
}


/* SP時、KV英字（ACCOMODATION CONDITIONS）が横幅ギリギリのため字間を縮める（provisionページのみ） */
@media (width <= 640px) {
  .page_provision .l-lowerpage-kv_text-A .heading > .en {
    letter-spacing:.06em;
  }
}


.privacy-contents h2 {
  display:grid;
  grid-template-columns:auto 1fr;
  grid-auto-flow: column;
  gap:.5em;
  margin-bottom:.8rem;
  font-size:1.8rem;
  line-height:1.8;
}
.privacy-contents h2:not(:first-child) {
  margin-top:4.8rem;
}
.privacy-contents p + p {
  margin-top:1em;
}
.privacy-contents ul {
  margin-top:1.6rem;
  margin-bottom:1.6rem;
  padding-left:1em;
}
.privacy-contents ul > li {
  display:grid;
  grid-template-columns:auto 1fr;
  grid-auto-flow: column;
  gap:.25em;
  line-height:.75lh;
}
.privacy-contents ul > li + li {
  margin-top:.32lh;
}
.privacy-contents a {
  text-decoration: underline;
  text-underline-offset: 0;
  word-break:break-all;
}
@media (hover) {
  .privacy-contents a:hover {
    text-decoration: none;
  }
}
@media (width <= 640px) {
  .privacy-contents h2:not(:first-child) {
    margin-top:3.2rem;
  }
}