@charset "utf-8";
/*	◆ CSS Document ◆
ベースになるCSSコードや、:rootで変数にしたものはbase.cssにあります。
こちらは固定ページの項目用のCSSです。 */

/*--------------------------------------------------
	固定ページ 共通
--------------------------------------------------*/
.subpage_ttl_area {
  margin-bottom: .5rem;
  height: 3rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.subpage_ttl_area .container_small{
  position: relative;
}
.subpage_ttl_area h2 {
  width: 3.6rem;
  height: 1.5rem;
  position: absolute;
  left: .4rem;
  bottom: -4rem;
}
.subpage_subttl {
  text-align: center;
}
.subpage_subttl img{
  width: 1.2rem;
  display: inline-block;
}
.subpage_subttl_txt {
  font-size: .35rem;
  font-weight: 600;
  margin-top: .1rem;
  line-height: 1.4;
  color: var(--gold);
  text-align: center;
}

/* 固定ページコンテンツエリア */
#page_content {
  background-image: var(--bg-section-with-gradient);
  background-repeat: var(--bg-rose-repeat);
  background-position: var(--bg-rose-position);
  background-size: var(--bg-rose-size);
  padding: 1rem 0;
  margin-top: 1rem;
}

#page_content .container_small {
  width: 7rem;
  margin-bottom: .7rem;
}

.page_content {
  margin-top: 1rem;
  line-height: 1.7;
}

.page_content h1,
.page_content h2,
.page_content h3,
.page_content h4,
.page_content h5,
.page_content h6 {
  color: var(--gold);
  margin-top: 1.5em;
  margin-bottom: .5em;
  font-weight: 600;
}

.page_content h1 { font-size: .32rem; }
.page_content h2 { font-size: .28rem; }
.page_content h3 { font-size: .24rem; }
.page_content h4 { font-size: .22rem; }
.page_content h5 { font-size: .2rem; }
.page_content h6 { font-size: .18rem; }

.page_content p {
  margin-bottom: 1.5em;
}

.page_content ul,
.page_content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.page_content li {
  margin-bottom: .5rem;
}

.ttl_gold {
  font-size: .35rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}

.list_gold li {
  line-height: 1.6;
  font-size: .19rem;
  position: relative;
  padding-left: .15rem;
}
.list_gold li:before {
  content: "";
  width: .1rem;
  height: .1rem;
  display: inline-block;
  position: absolute;
  background-color: var(--gold);
  border-radius: 50%;
  left: 0;
  top: .1rem;
}

.flex_wp {
  display: flex;
}

p.lead_txt {
  font-size: clamp(.1rem, 2.5vw, .2rem);
  line-height: 1.5;
  text-align: center;
  margin-top: .1rem;
}

.border_ttl {
  border-bottom: 1px solid var(--black);
  border-top: 1px solid var(--black);
  padding: .1rem;
  margin: .8rem 0 .2rem;
  font-size: .3rem;
  text-align: center;
  letter-spacing: .02rem;
  font-family: 'Bodoni Moda', serif;
  font-weight: 900;
  font-optical-sizing: auto;
}

.frame_decoration_area:before,
.frame_decoration_area:after,
.frame_decoration_inner:before,
.frame_decoration_inner:after {
  width: 1.3rem;
  height: 1.3rem;
  content: '';
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
.frame_decoration_area:before {
  background-image: url("../images/common/table_corner_02_left_top.webp");
  left: 0;
  top: 0;
}
.frame_decoration_area:after {
  background-image: url("../images/common/table_corner_02_right_ top.webp");
  right: 0;
  top: 0;
}
.frame_decoration_inner:before {
  background-image: url("../images/common/table_corner_02_left_bottom.webp");
  left: 0;
  bottom: 0;
}
.frame_decoration_inner:after {
  background-image: url("../images/common/table_corner_02_right_bottom.webp");
  right: 0;
  bottom: 0;
}

.btn_contact {
  display: flex;
  justify-content: center;
}
.btn_contact li {
  margin: .4rem .2rem 0;
}
.btn_contact a {
  color: var(--white);
  padding: .2rem;
  margin-top: .2rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .3rem;
  font-weight: 600;
  background-image: linear-gradient(90deg, #784b29, #c09a5a 50%, #784b29);
}
.btn_contact a img {
  width: .5rem;
  margin-right: .2rem;
}

a.btn_area {
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-optical-sizing: auto;
  color: var(--white);
  background: var(--gold);
  padding: .2rem;
  margin-top: .2rem;
  display: inline-block;
  width: 2.7rem;
  font-size: .18rem;
}
a.btn_area.btn_gold {
  color: var(--white);
  background: #c19b5b;
}
a.btn_area.btn_white {
  color: var(--black);
  background: var(--white);
}

@media (max-width: 767px) {
  .subpage_ttl_area {
    height: 2rem;
  }
  .subpage_ttl_area h2 {
    width: 40vw;
    height: auto;
    left: .2rem;
    bottom: -2.5rem;
  }
  .frame_decoration_area:before,
  .frame_decoration_area:after,
  .frame_decoration_inner:after {
    width: 1rem;
    height: 1rem;
  }
  .frame_decoration_inner:before,
  #about_rank .frame_decoration_inner:after {
    background: none;
  }
  .subpage_subttl_txt {
    font-size: .38rem;
    line-height: 1;
  }
  p.lead_txt {
    font-size: .24rem;
  }
  
  /* 固定ページコンテンツ - モバイル */
  #page_content {
    background-size: auto, 1rem, 1rem;
  }
  
  .page_content h1 { font-size: .36rem; }
  .page_content h2 { font-size: .32rem; }
  .page_content h3 { font-size: .28rem; }
  .page_content h4 { font-size: .25rem; }
  .page_content h5 { font-size: .22rem; }
  .page_content h6 { font-size: .2rem; }
  
  .page_content p {
    font-size: .2rem;
  }
  
  #foot_contact {
    background-position: calc(100% + 60%) calc(100% - 4.5rem), -70% calc(100% + 1rem);
    background-size: 60vw, 60vw;
    padding: .5rem 0 .6rem;
  }
  #foot_contact p {
    font-size: 0.24rem;
  }
  .btn_contact {
    flex-direction: column;
    margin-top: .2rem;
  }
  .btn_contact li {
    margin: .1rem 0 0;
  }
  .btn_contact a {
    padding: .2rem;
    margin: 0 auto;
    width: 80%;
  }
  .btn_contact a img {
    width: .3rem;
    margin-right: .2rem;
  }
}

/*--------------------------------------------------
	AGE VERIFICATION MODAL
--------------------------------------------------*/
/* フロントページのメインコンテンツを最初は非表示（JavaScriptで表示制御） */
body.home #front-page {
  display: none !important;
}

/* 年齢確認完了後にメインコンテンツを表示 */
body.home.age-verified #front-page {
  display: block !important;
}

/* Bot判定または確認済みの場合（初期化時）にメインコンテンツを即座に表示 */
html.age-verified-init body.home #front-page {
  display: block !important;
}

/* モーダル表示中はbodyのスクロールを無効化 */
body.age-verification-active {
  overflow: hidden !important;
}

/* モーダルコンテナ - 全画面オーバーレイ */
.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ENTERボタンクリック時のフェードアウト */
.age-verification-modal.is-closing {
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.age-verification-modal.is-closing.fade-out {
  opacity: 0;
}

/* モーダルが非表示の状態（is-closingクラスがない場合のみ即座に非表示） */
.age-verification-modal[aria-hidden="true"]:not(.is-closing) {
  display: none !important;
}

/* モーダルコンテンツ（エンターページのデザインをそのまま使用） */
.age-verification-modal .age-verification-content {
  width: 100%;
  min-height: 100%;
}

/* ENTERボタンをbuttonタグでも同じスタイルに */
.age-verification-modal .btn_enter_primary {
  border: none;
  cursor: pointer;
}

/*--------------------------------------------------
	ENTER
--------------------------------------------------*/
#enter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  min-height: 600px; /* 最小高さを確保 */
  background: url("../images/enter/enter_photo_01.webp"), url("../images/enter/enter_photo_02.webp"), linear-gradient(0deg, rgba(207,173,122,0.5), rgba(207,173,122,0.5)), url("../images/enter/enter_back.webp"), #cfad7a;
  background-position: -25% center, 125% center, left top, left top;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat-x;
  background-size: 50vw, 50vw, contain, contain;
}
#enter_area {
  background: linear-gradient(0deg, #86521e 0%, #86521e 15%, #ddb300 100%);
  width: 5.5rem;
  margin: 0 auto;
  text-align: center;
  padding: .2rem 0 .3rem;
  color: var(--white);
  font-family: 'Bodoni Moda', serif;
  font-optical-sizing: auto;
}

.enter_logo img {
  width: 1.6rem;
  display: inline-block;
}
.enter_ttl_txt {
  font-size: .4rem;
  font-weight: 600;
  margin: .2rem 0;
}
.btn_enter_primary {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  width: 100%;
  max-width: 4.1rem;
  padding: .26rem clamp(.48rem, 6vw, .6rem);
  margin: .18rem auto 0;
  color: var(--white);
  background-image: linear-gradient(180deg, #f4d76b 0%, #af6f1c 100%);
  border-radius: .04rem;
  box-shadow: 0 .08rem .18rem rgba(0, 0, 0, 0.35);
  text-decoration: none;
}
.btn_enter_label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  min-width: 0;
  line-height: 1.1;
  text-align: center;
}
.btn_enter_label_main {
  font-size: .26rem;
  letter-spacing: .02rem;
}
.btn_enter_label_sub {
  font-size: .14rem;
  font-weight: 400;
  letter-spacing: .01rem;
}
.btn_enter_icon {
  flex: 0 0 auto;
  line-height: 0;
}
.btn_enter_icon img {
  width: clamp(.34rem, 4.5vw, .4rem);
  height: auto;
  display: block;
}
.btn_exit {
  display: inline-block;
  margin: .18rem auto 0;
  padding: .18rem .32rem;
  background: var(--white);
  color: #585858;
  border-radius: .04rem;
  box-shadow: 0 .04rem .12rem rgba(0, 0, 0, 0.18);
  text-align: center;
  text-decoration: none;
}
.btn_exit_label {
  font-size: .2rem;
  letter-spacing: .02rem;
}

.enter_roppongi_txt {
  text-align: center;
}

.enter_roppongi_txt--sp {
  display: none;
}

.enter_roppongi_txt img {
  width: 2rem;
  display: inline-block;
  margin-top: .3rem;
}
#enter_area p {
  font-size: .2rem;  
}
.enter_bnt_arrow {
  display: inline-flex;
  align-items: center;
  gap: .12rem;
  margin: .0 auto;
  font-weight: 600;
  letter-spacing: .02rem;
}
.enter_bnt_arrow::before {
  content: none;
}
.enter_bnt_text {
  display: inline-block;
}
.enter_bnt_icon img {
  width: .22rem;
  height: auto;
  display: block;
}
.enter_roppongi_logo img {
  width: 2.3rem;
  display: inline-block;
  margin-top: .2rem;
}
.box_white {
  width: 100%;
  background-color: var(--white);
  color: var(--black);
  box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.2);
  padding: .2rem;
  margin-top: .3rem;
}

@media (max-width: 767px) {
 /* #enter {
    background: url("../images/enter/enter_photo_01_sp.webp"), url("../images/enter/enter_photo_02_sp.webp"), url("../images/enter/enter_back.webp"), #c9ae81;
    background-position: left top, right center, left top;
    background-repeat: no-repeat, no-repeat, repeat-x;
    background-size: contain, contain, cover;
  } */
  #enter {
    /* 上から順に: 白帯より下=単色 → 画像1 → 画像2 → 23%表示のenter_back → ベース色 */
    background:
      linear-gradient(180deg, transparent 78%, #c9ae81 78%),
      url("../images/enter/enter_photo_01_sp.webp"),
      url("../images/enter/enter_photo_02_sp.webp"),
      url("../images/enter/enter_back.webp"),
      #c9ae81;
    background-position: left center, left center, right center, left center;
    background-repeat: no-repeat, no-repeat, no-repeat, repeat-x;
    background-size: cover, contain, contain, cover;
    flex-direction: column;
  }
  #enter_area {
    background: none;
    width: 100vw;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    color: var(--black);
  }
  .enter_logo img {
    width: 1rem;
    display: inline-block;
  }
  .enter_ttl_txt {
    font-size: .32rem;
    margin: .2rem 0;
    font-weight: 700;
  }
  .btn_enter_primary {
    gap: .28rem;
    padding: .24rem .4rem;
    background-image: linear-gradient(180deg, #f7df82 0%, #b77725 100%);
  }
  .btn_enter_label_main {
    font-size: .24rem;
  }
  .btn_enter_label_sub {
    font-size: .13rem;
  }
  .btn_enter_icon img {
    width: clamp(.3rem, 7vw, .36rem);
  }
  .btn_exit {
    padding: .16rem .28rem;
  }
  .btn_exit_label {
    font-size: .18rem;
  }
  .enter_bnt_arrow {
    margin-top: .24rem;
  }
  .enter_bnt_icon img {
    width: .2rem;
  }
  .enter_roppongi_txt--pc {
    display: none;
  }
  .enter_roppongi_txt--sp {
    display: block;
    margin: 0;
    padding: .28rem 0 .32rem;
    background-color: #c9ae81;
    width: 100%;
  }
  .enter_roppongi_txt--sp img {
    width: 2rem;
    margin-top: 0;
  }
  .enter_roppongi_logo img {
    margin-top: .1rem;
  }
}

/* 375px未満では中央領域を確保するため左右の画像のみ外側へ逃がす。上下位置は常にcenter */
@media (max-width: 374px) {
  #enter {
    --enter-safe-width: 2.5rem;
    --enter-gutter: .2rem;
    --enter-safe-half: calc(var(--enter-safe-width) / 2 + var(--enter-gutter));
    background-position:
      left center,
      calc(50% - var(--enter-safe-half)) center,
      calc(50% + var(--enter-safe-half)) center,
      left top,
      left top;
    background-size: cover, contain, contain, cover, cover;
  }
}


/*--------------------------------------------------
	SCHEDULE
--------------------------------------------------*/
#schedule_ttl {
  background-image: url("../images/schedule/hero/schedule_hero.webp");
}

#schedule_dtl{
  background-image: var(--bg-section-with-gradient);
  background-repeat: var(--bg-rose-repeat);
  background-position: var(--bg-rose-position);
  background-size: var(--bg-rose-size);
  margin-top: 0;
}

#schedule_dtl .search_area{
  background-image: linear-gradient(90deg, #794c2a, #c19b5b 50%, #794c2a);
  margin: .6rem auto 0;
  padding: .2rem .25rem;
  width: 80%;
  max-width: 5.5rem;
  position: relative;
  text-align: center;
}
#schedule_dtl .search_area:before,
#schedule_dtl .search_area:after {
  content: '';
  display: inline-block;
  width: .6rem;
  height: .6rem;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
#schedule_dtl .search_area:before {
  background-image: url(../images/common/table_corner_white_left_bottom.webp);
  left: .1rem;
  bottom: .1rem;
}
#schedule_dtl .search_area:after {
  background-image: url(../images/common/table_corner_white_right_bottom.webp);
  right: .1rem;
  bottom: .1rem;
}

#schedule_dtl .search_area h4{
  width: 100%;
  position: relative;
  text-align: center;
  font-size: .28rem;
  color: var(--white);
  font-weight: 600;
}
  #schedule_dtl .search_area h4::before {
  content: '';
  display: inline-block;
  width: 2.1rem;
  height: .3rem;
  background-image: url(../images/common/table_accent_top_03.webp);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -.5rem;
  left: calc( 50% - 1.05rem);
}

#schedule_dtl .search_area .selectbox {
  color: #808080;
  font-family: "Noto Sans", sans-serif;
}

#schedule_dtl .search_area .selectbox select {
  width: 80%;
  max-width: 2.8rem;
  appearance: none;
  border: none;
  cursor: pointer;
  background: var(--white);
  padding: .1rem;
  margin-top: .1rem;
  text-align: center;
  line-height: 1.2;
  font-size: .15rem;
}

#schedule_dtl .btn_select {
  display: flex;
  justify-content: center;
}
#schedule_dtl .btn_select li {
  margin: .4rem .2rem 0;
  list-style: none;
}
#schedule_dtl .btn_select a {
  color: var(--white);
  padding: .2rem;
  width: 1.6rem;
  font-size: .20rem;
  font-family: "Ubuntu Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  text-align: center;
}
#schedule_dtl .btn_select a.btn_black {
  background-color: var(--black);
}
#schedule_dtl .btn_select a.btn_gold {
  background-color: var(--gold);
}

#schedule_dtl .flex_between{
  margin-block: .5rem;
  flex-wrap: wrap;
  align-items: stretch;
}
  /* コンパニオンカードレイアウトはstyle_companion.cssで統一管理 */
    #schedule_dtl .flex_between:after {
      content: "";
      display: block;
      width: calc((100% - 1rem) / 3);
      height: 0;
    }

#trust_and_security {
  text-align: center;
  padding: 1rem 0 .7rem;
  margin-top: 0;
  background-image: repeating-linear-gradient(90deg, var(--white), var(--white) 1px, transparent 1px, transparent .11rem), linear-gradient(0deg, #e8dcc7, var(--white));
}

#trust_and_security .service_summary{
  margin-top: .5rem;
}
#trust_and_security .service_summary li{
  padding-inline: .25rem;
}
#trust_and_security .service_summary h3{
  color: var(--gold);
  font-size: .32rem;
  margin-block: .1rem;
  font-weight: 600;
}
#trust_and_security .service_summary p {
  font-family: "Noto Sans", sans-serif;
  font-weight: 100;
  font-size: .16rem;
}

@media screen and (min-width: 768px) and ( max-width:1023px){
	}
@media (max-width: 767px) {
  #schedule_ttl {
    background-image: url("../images/schedule/hero/schedule_hero_sp.webp");
  }
  #schedule_dtl {
    background: none;
  }
  #schedule_dtl h2{
    text-align: center;
  }
  #schedule_dtl p{
    font-size: .25rem;
    text-align: center;
  }
  #schedule_dtl .search_area {
    width: calc(100% - .2rem);
  }
  #schedule_dtl .search_area .selectbox select {
    width: 100%;
    max-width: 100%;
    margin-bottom: .3rem;
  }
  #schedule_dtl .btn_select li {
    margin: .2rem .1rem;
    width: 50%;
  }
  #schedule_dtl .btn_select a {
    width: 100%;
  }
  /* コンパニオンカードレイアウトはstyle_companion.cssで統一管理 */
  #trust_and_security .service_summary{
    flex-direction: column;
  }
  #trust_and_security .service_summary li:not(:first-of-type){
    padding: .25rem;
    border-top: 1px solid var(--gold);
  }
  #trust_and_security .service_summary li:first-of-type {
    padding-bottom: .25rem;
  }
}

/*--------------------------------------------------
	SERVICE
--------------------------------------------------*/
#service_ttl {
  background-image: url("../images/service/hero/service_hero.webp");
}

#service_dtl {
  margin-top: 0;
}
#service_dtl p.service_txt {
  font-size: .18rem;
}

.service_photo_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service_photo_list li{
  width: calc((100% / 4) - .4rem);
  margin-top: .5rem;
}
.service_photo_list li h5 {
  font-size: .2rem;
  text-align: center;
  font-weight: 600;
  color: var(--gold);
  margin-top: .2rem;
}

#terms_of_service {
  background-color: #f7f3ec;
  margin-top: .7rem;
}
#terms_of_service .container_small {
  padding-top: .4rem;
  padding-bottom: 1rem;
  background: url("../images/service/service_photo_01.webp"), url("../images/service/service_table_corner_thin_right_bottom.webp");
  background-position: right bottom, right calc(100% - .3rem);
  background-repeat: no-repeat, no-repeat;
}
.prohibition_area {
  color: var(--white);
  background-color: var(--gold);
  padding: .5rem 1rem .5rem;
  position: relative;
  margin-top: .7rem;
}

.prohibition_area:before,
.prohibition_area:after,
.prohibition_area_inner:before,
.prohibition_area_inner:after {
  width: .7rem;
  height: .7rem;
  content: '';
  display: inline-block;
  background-color: #f7f3ec;
  border-radius: 50%;
  position: absolute;
}
.prohibition_area:before {
  left: -0.3rem;
  top: -0.3rem;
}
.prohibition_area:after {
  right: -0.3rem;
  top: -0.3rem;
}
.prohibition_area_inner:before {
  left: -0.3rem;
  bottom: -0.3rem;
}
.prohibition_area_inner:after {
  right: -0.3rem;
  bottom: -0.3rem;
}

.prohibition_area h4 {
  position: relative;
  font-size: .3rem;
  text-align: center;
  margin-bottom: .1rem;
}
.prohibition_area h4::before{
  content: '';
  display: inline-block;
  width: 3.68rem;
  height: .61rem;
  background-image: url(../images/common/table_accent_top_01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -.8rem;
  left: calc(50% - 1.84rem);
  margin-bottom: -.5rem;
}
.prohibition_area p {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: .18rem;
  line-height: 1.6;
}

#terms_of_service .ttl_gold {
  margin: .8rem 0 .2rem;
}

@media (max-width: 767px) {
  #service_ttl {
    background-image: url("../images/service/hero/service_hero_sp.webp");
  }
  #service_dtl p.service_txt {
    font-size: .24rem;
  }
  .service_photo_list {
    flex-direction: column;
  }
  .service_photo_list li{
    width: 100%;
    margin-top: .2rem;
  }
  .service_photo_list li h5 {
    font-size: .3rem;
    margin-top: .1rem;
  }
  #terms_of_service {
    margin-top: .4rem;
  }
  #terms_of_service .container_small {
    padding-top: .2rem;
    padding-bottom: .3rem;
    background: none;
  }
  .prohibition_area {
    width: 85vw;
    margin: .5rem auto 0;
    padding: .4rem .5rem;
    position: relative;
    margin-top: .7rem;
  }
  .prohibition_area h4::before{
    width: 2.6rem;
    top: -.6rem;
    left: calc(50% - 1.3rem);
  }
  .prohibition_area p {
    font-size: .24rem;
  }
  #terms_of_service .ttl_gold {
    margin: .4rem 0 .1rem;
  }
  .list_gold li {
    font-size: .24rem;
  }
}

/*--------------------------------------------------
	RESERVE
--------------------------------------------------*/
#reserve_ttl {
  background-image: url("../images/reserve/hero/reserve_hero.webp");
}

#reserve_dtl {
  background-image: var(--bg-section-with-gradient);
  background-repeat: var(--bg-rose-repeat);
  background-position: var(--bg-rose-position);
  background-size: var(--bg-rose-size);
  margin-top: 0;
}

/* Reserve Hero Section */
.reserve_hero_section {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc6 50%, #f5f0e8 100%);
  padding: .8rem 0;
  position: relative;
  overflow: hidden;
}

.hero_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 .5rem;
}

.hero_text {
  flex: 1;
  padding-right: .5rem;
}

.hero_image {
  flex: 1;
  height: 6rem;
  background-image: url('../images/reserve-hero.jpg');
  background-size: cover;
  background-position: center;
  border-radius: .1rem;
}

/* Reservations Section */
#reservations {
  padding: .8rem 0;
}

.reservation_circle {
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(90deg, #8B7000 0%, #D4AF37 50%, #8B7000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .3rem;
}

.reservation_circle h2 {
  color: var(--white);
  font-size: .32rem;
  font-family: 'Bodoni Moda', serif;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
}

/* Section Title and Subtitle */
.section_title {
  font-size: .48rem;
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin: .8rem 0 .2rem 0;
}

.section_title:first-of-type {
  margin-top: .3rem;
}

.section_subtitle {
  font-size: .18rem;
  color: var(--black);
  text-align: center;
  margin-bottom: .5rem;
  line-height: 1.5;
}

.same_day_content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: #f7f3ec;
  padding: .2rem;
  width: 100%;
  margin: .1rem auto 0;
}

.phone_icon img {
  width: 1.2rem;
  height: auto;
}

.phone_info {
  text-align: left;
}

.reception_hours {
  font-size: .24rem;
  font-weight: 600;
  color: #4d4d4d;
  margin: 0 0 .1rem 0;
}

.hours_text {
  font-size: .16rem;
  color: var(--black);
  margin: 0;
}

.phone_number {
  font-size: .2rem;
  font-weight: 500;
  color: #4d4d4d;
  margin: 0;
}

.phone_number strong {
  font-weight: 700;
  font-size: .42rem;
}

.advance_methods_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #f7f3ec;
}

.advance_method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .4rem;
  width: auto;
  margin: 0 auto;
}
.advance_method:last-of-type{
  border-top: 1px solid var(--gold);
}

.method_icon_wrapper {
  flex-shrink: 0;
}

.method_icon_wrapper img {
  width: 1.2rem;
  height: auto;
}

.method_details {
  text-align: left;
  flex: 1;
}

.method_title {
  font-size: .24rem;
  font-weight: 600;
  color: #4d4d4d;
  margin: 0 0 .1rem 0;
  display: flex;
  align-items: center;
  gap: .1rem;
}

.method_info p {
  font-size: .14rem;
  color: var(--black);
  margin: 0 0 .1rem 0;
  line-height: 1.4;
}
.method_info .gold{
  color: var(--gold);
}
.method_info strong {
  font-weight: 700;
  color: #4d4d4d;
}

.method_icon {
  margin-bottom: .2rem;
}

.method_icon img {
  width: .8rem;
  height: .8rem;
}

.reservation_method h3 {
  font-size: .24rem;
  color: var(--gold);
  margin: .15rem 0;
  font-family: "EB Garamond", serif;
  font-weight: 700;
}

.method_number {
  font-size: .2rem;
  font-weight: bold;
  color: var(--black);
  margin: .1rem 0;
}

.method_subtitle {
  font-size: .16rem;
  color: var(--gold);
  font-style: italic;
}

.method_description {
  font-size: .15rem;
  color: var(--black);
  line-height: 1.4;
  font-family: "Noto Sans", sans-serif;
}

/* About Advance Reservations Wrapper */
.about_advance_wrapper {
  background: #f7f3ec;
  padding: .5rem;
  margin-top: .3rem;
}

/* Process Table Styling */
.process_table_wrapper {
  margin-bottom: .4rem;
}

.process_table_wrapper h4 {
  font-size: .24rem;
  color: var(--white);
  text-align: center;
  margin: 0 0 .3rem 0;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  background: var(--gold);
  padding: .25rem;
}

.process_steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .15rem;
}

.process_step {
  flex: 1;
  text-align: center;
}

.step_number {
  background: var(--gold);
  color: var(--white);
  font-weight: bold;
  font-size: .2rem;
  padding: .15rem .1rem;
  display: block;
}

.step_content {
  font-size: .18rem;
  color: var(--gold);
  line-height: 1.2;
  background: var(--white);
  padding: .2rem .1rem;
  border: 2px solid var(--gold);
  min-height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step_arrow {
  color: var(--gold);
  font-size: .2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.process_description {
  margin: .4rem 0;
  padding: 0;
  background: transparent;
}

.process_description h4,
.important_notes h4 {
  font-size: .24rem;
  color: #4d4d4d;
  margin-bottom: .2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .1rem;
}

.process_description p {
  font-size: .16rem;
  line-height: 1.5;
  color: var(--black);
  margin: 0;
}

.important_notes {
  margin: .4rem 0 0 0;
  padding: 0;
  background: transparent;
}

.important_notes ul {
  margin: 0;
}

.important_notes li {
  font-size: .16rem;
  line-height: 1.4;
  margin-bottom: .1rem;
  color: var(--black);
}
.important_notes li::before{
  content: "▶";
  color: var(--gold);
  margin-right: .1rem;
}

/* Confirmation Email Section */
#confirmation_email {
  padding: .8rem 0;
}

.confirmation_circle {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(90deg, #8B7000 0%, #D4AF37 50%, #8B7000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .5rem;
}

.confirmation_circle h2 {
  color: var(--white);
  font-size: .24rem;
  font-family: 'Bodoni Moda', serif;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
}

.email_wrapper {
  padding: .5rem;
  border-radius: .1rem;
  margin-top: .3rem;
  width: 100%;
}

.email_method {
  margin-bottom: .4rem;
}

.email_method:last-child {
  margin-bottom: 0;
}

.email_method h3 {
  font-size: .32rem;
  color: #4d4d4d;
  margin-bottom: .2rem;
  font-family: "EB Garamond", serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .1rem;
}

.email_method p {
  font-size: .16rem;
  line-height: 1.4;
  margin-bottom: .1rem;
  color: var(--black);
  font-family: "EB Garamond", serif;
}

.email_method p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 780px) {
  #reserve_ttl {
    background-image: url("../images/reserve/hero/reserve_hero_sp.webp");
  }
  #reserve_dtl{
    background-image: none;
  }
  .reservation_subtitle{
    font-size: .2rem;
  }
  .reception_hours,
  .method_title{
    font-size: .4rem;
  }
  .hours_text,
  .method_info p,
  .process_description p,
  .important_notes li,
  .email_method p{
    font-size: .2rem;
  }
  .hero_content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero_text {
    padding-right: 0;
    margin-bottom: .5rem;
  }
  
  .hero_image {
    height: 4rem;
  }
  
  .reservation_methods {
    flex-direction: column;
    gap: .3rem;
  }
  
  .advance_methods_wrapper {
    gap: .15rem;
  }
  
  .reservation_circle {
    width: 1.8rem;
    height: 1.8rem;
  }
  
  .reservation_circle h2 {
    font-size: 0.23rem;
  }
  
  .same_day_content {
    flex-direction: column;
    text-align: center;
    gap: .2rem;
    width: 100vw;
    margin: .1rem calc(50% - 50vw) 0;
  }
  
  .phone_info {
    text-align: center;
  }
  .advance_methods_wrapper,
  .about_advance_wrapper{
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .advance_method {
    max-width: none;
    width: 90%;
    flex-direction: column;
  }
  .method_info p{
    text-indent: -1em;
    padding-left: 1em;
  }
  .method_info strong{
    font-size: .32rem;
  }
  .process_table_wrapper h4 {
    font-size: .32rem;
    width: 100vw;
    margin: 0 calc(50% - 50vw) .4rem;
  }
  .process_steps{
    flex-direction: column;
    width: 100%;
  }
  .step_content,
  .step_number{
    font-size: .28rem;
    display: flex;
    align-items: center;
  }
  .step_content{
    flex: 1;
    justify-content: flex-start;
    padding-inline: .3rem;
  }
  .process_table {
    font-size: .14rem;
  }
  .step_arrow{
    transform: rotate(90deg);
  }
  .process_step{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    }
  .process_description h4,
  .important_notes h4 {
    font-size: .32rem;
    align-items: flex-start;
  }
  .email_wrapper{
    padding: 0;
  }
  .email_methods {
    flex-direction: column;
    gap: .3rem;
  }
  
  .confirmation_circle {
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
  }
  
  .confirmation_circle h2 {
    font-size: .2rem;
  }
}

/*--------------------------------------------------
	PRICING
--------------------------------------------------*/
#pricing_ttl {
  background-image: url("../images/price/hero/price_hero.webp");
}

#about_rank {
  margin-top: 1rem;
}

.frame_decoration_area,
.frame_decoration_inner {
  position: relative;
}
.frame_decoration_area {
  margin-top: .5rem;
}

.about_rank_list {
  padding: .5rem 1rem;
}
.about_rank_list li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--black);
  padding: .3rem .2rem;
}
.about_rank_list li:last-of-type {
  border-bottom: none;
}

.about_rank_list li h4 {
  width: 20%
}

.about_rank_list li p {
  width: 80%;
  font-size: .18rem;
  margin-left: .4rem;
}


#transporation_fee {
  margin-top: .5rem;
}

#transporation_fee .flex_wp {
  display: flex;
  justify-content: space-between;
  margin-top: .5rem;
}

#transporation_fee .flex_wp .flex_box {
  width: calc(100% - 3rem);
  padding-right: .7rem;
}

.list_price {
  width: 100%;
  font-size: .18rem;
}
.list_price th {
  background-color: var(--gold);
  color: var(--white);
  font-size: .3rem;
  padding: .2rem;
  border-bottom: 1px solid var(--white);
  vertical-align: middle;
}
.list_price td {
  font-size: .18rem;
  padding: .2rem;
  border-bottom: 1px solid var(--gold);
  vertical-align: middle;
}
.list_price tr:last-of-type td {
  border-bottom: none;
}

#transporation_fee .flex_wp h5 {
  color: var(--gold);
  font-size: .2rem;
  font-weight: 600;
  margin: .2rem 0 .1rem;
}
#transporation_fee .flex_wp p {
  font-size: .18rem;
}

.frame_goldline {
  border: 1px solid var(--gold);
  padding: .4rem .8rem;
  margin-top: 1rem;
}
.frame_goldline .ttl_gold {
  text-align: center;
}
.frame_goldline .list_gold {
  margin-top: .3rem;
} 

.frame_goldline h5 {
  font-size: .3rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 800;
  margin-top: .2rem;
}
.txt_red {
  color: #c00000;
}

@media (max-width: 767px) {
  #pricing_ttl {
    background-image: url("../images/price/hero/price_hero_sp.webp");
  }
  #about_rank {
    margin-top: .7rem;
  }
  .about_rank_list {
    padding: 0 0 .5rem;
  }
  .about_rank_list li h4 {
    width: 50%
  }
  .about_rank_list li p {
    width: 100%;
    margin: .2rem 0 0;
    font-size: .24rem;
  }
  .about_rank_list li {
    flex-direction: column;
  }
  .list_price td {
    font-size: .24rem;
  }
  #transporation_fee .flex_wp {
    margin-top: .3rem;
    flex-direction: column;
  }
  #transporation_fee .flex_wp h5 {
    font-size: .32rem;
  }
  #transporation_fee .flex_wp p {
    font-size: .24rem;
  }
  #transporation_fee .flex_wp .flex_box {
    width: 100%;
    padding-right: 0;
    margin-bottom: .2rem;
  }
  #transporation_fee .flex_wp h5 {
    margin: .2rem 0 .05rem;
  }
  .frame_goldline {
    padding: .2rem;
    margin-top: .3rem;
  }
}

/*--------------------------------------------------
	HOW TO
--------------------------------------------------*/
#howto_ttl {
  background-image: url("../images/howto/hero/howto_hero.webp");
}

#how_to_use {
  text-align: center;
  background: url("../images/howto/howto_photo_01.webp"), url("../images/howto/howto_photo_02.webp");
  background-position: -10% 3rem, 110% 3rem;
  background-repeat: no-repeat, no-repeat;
  background-size: 4rem, 4rem;
}
#how_to_use h4 {
  font-size: .32rem;
  font-weight: 800;
  margin-top: .7rem;
}
[data-ruby] {
  position: relative;
}
[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 0.15rem;
  letter-spacing: .05rem;
}
#how_to_use h5 {
  font-size: .24rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: .5rem;
}
#how_to_use dl {
  margin-top: .2rem;
  font-size: .18rem;
  line-height: 1.4;
}
#how_to_use dl dt{
  margin-top: .2rem;
  font-weight: normal;
}
#how_to_use dl dd {
  margin-top: .1rem;
}
#how_to_use .list_gold li {
  display: inline-block;
}

.key_point {
  display: flex;
  background-color: #f7f3ec;
  border: var(--gold) 1px solid;
  justify-content: center;
  align-items: center;
  max-width: 7.6rem;
  padding: 0 .3rem;
  margin: .5rem auto 0;
  overflow: hidden;
}
.key_point h6 {
  background-color: var(--gold);
  color: var(--white);
  width: 1rem;
  height: 1rem;
  font-weight: 600;
  border-radius: 50%;
  font-size: .24rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -.1rem .2rem -.1rem 0;
}
.key_point p {
  font-size: .16rem;
  color: var(--gold);
}

#rules_regulations {
  margin-top: .7rem;
}
.rules_area {
  border: 3px solid var(--gold);
}
.rules_area h6 {
  background-color: var(--gold);
  color: var(--white);
  font-size: .32rem;
  font-weight: 600;
  text-align: center;
  padding: .1rem;
}
.rules_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: .2rem .5rem .5rem;
}
.rules_list li {
  width: calc((100% / 4) - .2rem);
  margin-top: .3rem;
}
.rules_list li p {
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  margin-top: .05rem;
}

#cultural_background {
  margin-top: .8rem;
}

#cultural_background .flex_wp{
  justify-content: space-between;
  align-items: flex-end;
}

#cultural_background h2 {
  font-size: .8rem;
  color: var(--gold);
  margin-right: .3rem;
  text-shadow: 0 0 .1rem rgba(255, 255, 255, 1), 0 0 .1rem rgba(255, 255, 255, 1), 0 0 .1rem rgba(255, 255, 255, 1);
}
#cultural_background .cultural_list{
  margin-top: .5rem;
}
#cultural_background .cultural_list li{
  border-left: 1px solid var(--black);
  padding: .25rem;
  height: 2.5rem;
  justify-content: flex-start;
}
#cultural_background .cultural_list li:last-of-type{
  border-right: 1px solid var(--black);
}
#cultural_background .cultural_list h3{
  color: var(--gold);
  font-size: .24rem;
  margin-block: .1rem;
}
#cultural_background .cultural_list p{
  font-family: "Noto Sans", sans-serif;
  font-weight: 100;
  font-size: .16rem;
  text-align: center;
}

#service_process {
  background-image: url("../images/howto/howto_photo_03.webp"), linear-gradient(0deg, var(--white), var(--white) 10%, #f7f3ec 10% 100%);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  padding: .5rem 0 1rem;
  margin-top: .5rem;
}
#service_process .subpage_subttl_txt {
  position: relative;
  font-weight: 600;
  display: inline-block;
  padding: 0 1.2rem;
  margin-bottom: .3rem;
}
#service_process .subpage_subttl_txt:after,
#service_process .subpage_subttl_txt:before {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 1rem;
  height: .4rem;
  content: '';
  display: inline-block;
  position: absolute;
  top: calc(50% - .2rem);
}
#service_process .subpage_subttl_txt:before {
  background-image: url("../images/common/hr_04_left.webp");
  left: 0;
}

#service_process .subpage_subttl_txt:after {
  background-image: url("../images/common/hr_04_right.webp");
  right: 0;
}
.process_list li {
  display: flex;
  margin-bottom: .2rem;
}
.process_list li h3 {
  font-size: .2rem;
  font-weight: 600;
  margin-bottom: .1rem;
}
.process_list p {
  font-size: .18rem;
}
.process_list p.ttl_no {
  font-size: .42rem;
  background-color: var(--gold);
  padding: .1rem;
  margin-right: .2rem;
  color: var(--white);
}

#legal_regulatory_framework {
  padding: 0 0 .7rem;
  margin-top: 0;
}
#legal_regulatory_framework .subpage_subttl_txt {
  border: 1px solid var(--gold);
  padding: .2rem;
  display: table;
  margin: 0 auto;
  font-weight: 600;
}
#legal_regulatory_framework .flex_wp {
  margin-top: .4rem;
}
#legal_regulatory_framework .flex_box {
  width: 50%;
  display: flex;
  align-items: center;
}
#legal_regulatory_framework .flex_box:first-of-type {
  border-right: 1px solid var(--gold);
  padding-right: .4rem;
}
#legal_regulatory_framework .flex_box:last-of-type {
  padding-left: .4rem;
}
#legal_regulatory_framework h3 {
  font-size: .24rem;
  color: var(--gold);
  font-weight: 600;
}
.framework_list li {
  padding: .1rem .2rem;
  display: flex;
  align-items: center;
  font-size: .18rem;
}
.flex_box:first-of-type .framework_list li img {
  width: .2rem;
  height: auto;
  margin-right: .1rem;
}
.flex_box:last-of-type .framework_list li img {
  width: .22rem;
  height: auto;
  margin-right: .13rem;
}
.flex_box:last-of-type .framework_list li:first-of-type img {
  width: .2rem;
  height: auto;
  margin-right: .15rem;
}
.flex_box:last-of-type .framework_list li:last-of-type img {
  width: auto;
  height: .16rem;
  margin-right: .07rem;
}
#legal_regulatory_framework h4 {
  font-size: .2rem;
  text-align: center;
  position: relative;
  color: var(--gold);
  font-weight: 600;
  margin-top: .6rem;
}
#legal_regulatory_framework h4:before {
  background: url("../images/common/icon_caution_02.webp") no-repeat left center;
  background-size: contain;
  width: .26rem;
  height: .24rem;
  content: '';
  display: inline-block;
  position: absolute;
  top: -.3rem;
  left: calc(50% - .13rem);
}
#legal_regulatory_framework p {
  font-size: .18rem;
  text-align: center;
  margin-top: .1rem;
}

#what_to_expect {
  background-color: #f7f3ec;
  padding: .3rem 0;
  margin-top: 0;
}
#what_to_expect h3 {
  font-size: .32rem;
  color: var(--gold);
  margin-top: .3rem;
  font-weight: 600;
}
#what_to_expect .flex_wp {
  margin: 0 .75rem;
}
#what_to_expect .flex_box {
  width: 50%;
  padding-bottom: 1rem;
}
#what_to_expect .flex_box:last-of-type {
  margin-left: 4%;
}
.expect_list li {
  margin-top: .3rem;
  border-left: 5px solid var(--gold);
  padding-left: .2rem;
}
.expect_list li:first-of-type{
  margin-top: .2rem;
}
.expect_list li h4 {
  font-size: .24rem;
  font-weight: 600;
}
.expect_list li p {
  font-size: .2rem;
  margin-top: .05rem;
  line-height: 1.4;
}

#frequently_asked_questions {
  text-align: left;
  background-image: url("../images/common/bg_circle.webp"), url("../images/howto/howto_photo_04.webp");
  background-position: -5% calc(100% - 7rem), 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: 30vw, 4rem;
  padding-top: 1.5rem;
}
#frequently_asked_questions .subpage_subttl_txt {
  position: relative;
}
#frequently_asked_questions .subpage_subttl_txt:before {
  background: url("../images/common/table_accent_top_01.webp") no-repeat left center;
  background-size: contain;
  width: 3.46rem;
  height: .5rem;
  content: '';
  display: inline-block;
  position: absolute;
  top: -.9rem;
  left: calc(50% - 1.73rem);
}

.questions_list {
  margin-top: .5rem;
}
.questions_list li {
  border-bottom: 1px solid var(--black);
  padding: .2rem .4rem;
}
.questions_list li h4 {
  font-size: .24rem;
  font-weight: 600;
  line-height: 1.4;
}
.questions_list li p {
  font-size: .18rem;
  margin-top: .1rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: 100;
}

#foot_contact.pt0 {
  padding-top: 0;
}

@media (max-width: 767px) {
  #howto_ttl {
    background-image: url("../images/howto/hero/howto_hero_sp.webp");
  }
  #how_to_use {
    text-align: center;
    background: url("../images/howto/howto_photo_01.webp"), url("../images/howto/howto_photo_02.webp");
    background-position: -25% bottom, 130% bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: 65vw, 65vw;
    padding-bottom: 4.3rem;
  }
  #how_to_use h4 {
    line-height: 1;
    font-size: .48rem;
    margin-top: .5rem;
  }
  #how_to_use h5 {
    font-size: .32rem;
    margin-top: .3rem;
  }
  #how_to_use dl {
    margin: 0 auto;
    width: 90%;
  }
  #how_to_use dl dt {
    font-size: .28rem;
    margin-top: .3rem;
  }
  #how_to_use dl dd {
    text-align: left;
    font-size: .24rem;
  }
  #how_to_use .list_gold li {
    display: block;
    text-align: left;
    font-size: .24rem;
  }
  .key_point {
    flex-direction: column;
    width: 90%;
    margin: .3rem auto 0;
  }
  .key_point h6 {
    width: 1.5rem;
    height: 1.5rem;
    font-size: .28rem;
    margin: -.8rem 0 -.1rem;
    padding-top: .5rem;
  }
  .key_point p {
    margin: .2rem 0;
    font-size: .24rem;
    line-height: 1.4;
    text-align: left;
  }

  #rules_regulations {
    margin-top: 0;
  }
  #rules_regulations .container_small {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
  }
  .rules_area {
    border: none;
  }
  .rules_list {
    margin: .2rem .4rem;
  }
  .rules_list li {
    width: calc((100% / 2) - .2rem);
    margin-top: .2rem;
  }
  .rules_list li p {
    font-size: .2rem;
  }
  #cultural_background .flex_wp{
    flex-direction: column-reverse;
  }
  #cultural_background h2 {
    margin: -.5rem auto 0;
    text-align: center;
    line-height: 1;
    position: relative;
    z-index: 2;
  }
  #cultural_background .cultural_list{
    flex-direction: column;
  }
  #cultural_background p {
    font-size: .25rem !important;
  }
  #cultural_background .cultural_list li{
    border-left: none;
    border-top: 1px solid var(--black);
    height: auto;
    padding-block: .25rem;
  }
  #cultural_background .cultural_list li:first-of-type {
    border-top: none;
  }
  #cultural_background .cultural_list li:last-of-type {
    border-right: none;
  }
  #cultural_background .cultural_list h3{
    font-size: .35rem;
    text-align: center;
  }
  #cultural_background .cultural_list p{
    font-size: .2rem !important;
    text-align: center;
  }
  #cultural_background .included_service_list{
    width: 100vw;
  }
  #cultural_background .included_service_list h2::after{
    width: 100%;
    height: .2rem;
  }
  #cultural_background .included_service_list .flex{
    flex-direction: column;
    align-items: flex-start;
    margin-inline: .5rem;
    gap: .25rem;
  }
  #service_process {
    background-image: linear-gradient(0deg, var(--white), var(--white) 5%, #f7f3ec 5% 100%);
    padding: .3rem 0 1rem;
  }
  #service_process .subpage_subttl_txt {
    font-size: .48rem;
    line-height: 1;
    padding: 0 1rem;
  }
  #service_process .subpage_subttl_txt:after,
  #service_process .subpage_subttl_txt:before {
    width: .9rem;
    height: .4rem;
    top: calc(50% - .2rem);
  }
  .process_list li {
    flex-direction: column;
    margin-bottom: .3rem;
  }
  .process_list li h3 {
    font-size: .26rem;
    margin-top: .05rem;
  }
  .process_list p {
    font-size: .24rem;
    line-height: 1.4;
  }
  .process_list p.ttl_no {
    width: 100%;
    margin: 0 0 .1rem 0;
    line-height: 1;
    text-align: center;
    padding: 0;
  }
  #legal_regulatory_framework .subpage_subttl_txt {
    padding: .1rem;
  }
  #legal_regulatory_framework .flex_wp,
  #legal_regulatory_framework .flex_box {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
  #legal_regulatory_framework h3 {
    font-size: .32rem;
  }
  #legal_regulatory_framework h4 {
    font-size: .32rem;
  }
  #legal_regulatory_framework p {
    font-size: .24rem;
    line-height: 1.4;
    margin-top: .1rem;
  }
  #legal_regulatory_framework .flex_box:first-of-type {
    border-right: none;
    padding-right: 0;
  }
  #legal_regulatory_framework .flex_box:last-of-type {
    padding-left: 0;
    margin-top: .3rem;
  }
  .framework_list li {
    padding: .1rem 0;
    font-size: .24rem;
  }
  #what_to_expect .subpage_subttl_txt {
    font-size: .42rem;
  }
  #what_to_expect .frame_decoration_area {
    padding-top: .3rem;
  }
  #what_to_expect .flex_wp {
    flex-direction: column;
    margin: 0;
  }
  #what_to_expect .flex_box {
    width: 90%;
    margin: 0 auto;
    padding-bottom: .1rem;
  }
  #what_to_expect .flex_box:last-of-type {
    padding-bottom: .5rem;
  }
  .expect_list li h4 {
    font-size: .28rem;
  }
  .expect_list li p {
    font-size: .24rem;
    line-height: 1.4;
    margin-top: .1rem;
  }
  #frequently_asked_questions {
    background-position: -70% calc(100% - 4.5rem), calc(100% + 1.5rem) 0;
    background-size: 60vw, 90vw;
    padding-top: .6rem;
  }
  #frequently_asked_questions .subpage_subttl_txt {
    text-align: left;
    line-height: 1.2;
    font-weight: 600;
    font-size: .42rem;
  }
  #frequently_asked_questions .subpage_subttl_txt:before {
    width: 2rem;
    height: .4rem;
    top: -.4rem;
    left: 0;
  }
  .questions_list {
    margin-top: .3rem;
  }
  .questions_list li h4 {
    font-size: .28rem;
  }
  .questions_list li {
    padding: .2rem 0;
  }
  .questions_list li p {
    font-size: .2rem;
  }
}

/*--------------------------------------------------
	CONTACT
--------------------------------------------------*/
#contact_ttl {
  background-image: url("../images/inquiries/hero/inquiries_hero.webp");
}

#contact_dtl{
  background-image: var(--bg-section-with-gradient);
  background-repeat: var(--bg-rose-repeat);
  background-position: var(--bg-rose-position);
  background-size: var(--bg-rose-size);
  margin-top: 1rem;
}

#contact_dtl .container_small {
  width: 7rem;
  margin-bottom: .7rem;
}

#contact_dtl form p,
#contact_dtl form label {
  font-size: .16rem;
  font-family: "Noto Sans", sans-serif;
  font-weight: normal;
}
#contact_dtl form label {
  margin: .2rem 0 .1rem;
  display: inline-block;
}

.form_txt {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #f7f3ec;
  border: 1px solid var(--gold);
  border-radius: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: .18rem;
  padding: .1rem;
  width: 100%;
}

.form_radio {
  display: none;
}

.form_radio + span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: .25rem;
}

.form_radio + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}

.form_radio + span::after {
  -webkit-transform: translateY(-50%);
  background: var(--gold);
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 4px;
  opacity: 0;
  padding: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 8px;
}

.form_radio:checked + span::after {
  opacity: 1;
}
#contact_dtl form label.radio_area {
  margin-top: .05rem;
}
textarea.form_txt {
  height: 1.5rem;
}
.btn_submit {
  background: var(--gold);
  color: var(--white);
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Ubuntu Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;

  font-size: .20rem;
  padding: .1rem;
  margin: .4rem auto;
}
.btn_submit img {
  margin-right: .1rem;
}

@media (max-width: 767px) {
  #contact_ttl {
    background-image: url("../images/inquiries/hero/inquiries_hero_sp.webp");
  }
  #contact_dtl{
    background-size: auto, 1rem, 1rem;
  }
  #contact_dtl form p,
  #contact_dtl form label {
    font-size: .24rem;
  }
  .btn_submit {
    width: 100%;
    min-width: auto;
    font-weight: normal;
    font-size: .24rem;
  }
}
