@charset "UTF-8";
/*
====>> 再利用可能なパーツのデフォルトスタイリング <<====

・このファイルはベースのスタイルになるので、原則オーバーライド(上書き)はしない事
・タグに依存しないベースのコンポーネントパーツ
・単体、あるいはパーツ単位で独立した仕様のスタイル

*/
/**
 * Adobe XDのAV値（トラッキング値）をletter-spacingプロパティに変換する
 * @param {Number} $av-value - XDのAV値を単位なしで指定
 */
/*		見出し
-----------------------------------------------------*/
.c-heading {
  margin-bottom: clamp(2rem, 2.1153846154vw, 3.3rem);
}
@media screen and (max-width: 576px) {
  .c-heading {
    margin-bottom: 27px;
  }
}
.c-heading h2 {
  font-size: clamp(2.4rem, 3.0769230769vw, 4.8rem);
  letter-spacing: 0.08em;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .c-heading h2 {
    font-size: 28px;
  }
}

.c-body_text {
  margin-bottom: clamp(3rem, 3.3333333333vw, 4rem);
}
.c-body_text p {
  font-size: clamp(1.4rem, 1.3333333333vw, 1.6rem);
  line-height: 2.5;
}
.c-body_theme_title {
  margin-bottom: clamp(2rem, 3.3333333333vw, 4rem);
}
.c-body_theme_title_min {
  padding-bottom: 20px !important;
  font-size: clamp(1.6rem, 2vw, 2.4rem) !important;
  line-height: 1 !important;
}
.c-body_theme_title_big {
  padding-bottom: 20px !important;
  font-size: clamp(2.6rem, 3.5vw, 4.2rem) !important;
  line-height: 1 !important;
  font-weight: bold;
}
.c-body_theme_title_sub {
  padding-bottom: 0 !important;
  font-size: clamp(1.8rem, 1.6666666667vw, 2rem) !important;
  line-height: 1.75 !important;
}

/*		リスト
-----------------------------------------------------*/
.c-list li {
  padding: 20px;
  box-sizing: border-box;
}

ul.c-list_plain > li {
  position: relative;
  padding-left: 2rem;
}
ul.c-list_plain > li::before {
  content: "・";
  position: absolute;
  left: 0;
  font-size: inherit;
}

ol.c-list_plain > li {
  counter-increment: mycounter;
}
ol.c-list_plain > li::before {
  content: counter(mycounter, decimal-leading-zero) ".";
  display: inline-block;
  font-size: inherit;
  margin-right: 0.3em;
}

/*		ボタン
-----------------------------------------------------*/
/*
====================================================
.c-btn グラデーション背景
====================================================
*/
.c-btn {
  max-width: clamp(27rem, 28.275862069vw, 41rem);
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .c-btn {
    max-width: 100%;
  }
}
.c-btn a,
.c-btn label {
  position: relative;
  display: block;
  background: var(--color-orange);
  color: #fff;
  width: 100%;
  padding: clamp(1.5rem, 1.724137931vw, 2.5rem);
  border-radius: 10px;
  font-weight: bold;
  font-size: clamp(0rem, 1.3793103448vw, 2rem);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 0px var(--color-orange-shadow);
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 576px) {
  .c-btn a,
  .c-btn label {
    font-size: 16px;
    padding: clamp(2rem, 3.4722222222vw, 2rem);
  }
}
@media (hover: hover) {
  .c-btn a:hover,
  .c-btn label:hover {
    transform: translateY(8px);
    box-shadow: 0 0px 0px var(--color-orange-shadow);
  }
}
.c-btn a:after,
.c-btn label:after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(1rem, 1.3793103448vw, 2rem);
  display: block;
  background-image: url(../img/common/icon_header_btn.svg);
  width: clamp(1rem, 1.5862068966vw, 2.3rem);
  height: clamp(1rem, 1.5172413793vw, 2.2rem);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}
@media screen and (max-width: 576px) {
  .c-btn a:after,
  .c-btn label:after {
    right: 15px;
    width: 18px;
    height: 18px;
  }
}
.c-btn label {
  border: none;
  cursor: pointer;
}
.c-btn input {
  background-color: transparent;
  border: none;
  color: var(--color-white);
  font-family: "Shippori Mincho";
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
}

/*		フォーム
-----------------------------------------------------*/
.c-form {
  margin: auto;
  transform: unset;
}

/*フォームステップ*/
.c-form_step {
  position: relative;
  width: 300px;
  margin: 0 auto 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-form_step::before {
  content: "";
  width: 250px;
  height: 1px;
  background-color: var(--color-base);
  position: absolute;
  z-index: -1;
  top: 31px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-form_step .c-form_step_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  color: var(--color-base);
  font-size: 1.6rem;
}
.c-form_step .c-form_step_item.active .c-form_step_item_number span {
  opacity: 1;
  color: #fff;
  background-color: var(--color-base);
}
.c-form_step .c-form_step_item.active .c-form_step_title {
  opacity: 1;
}
.c-form_step .c-form_step_item .c-form_step_item_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
}
.c-form_step .c-form_step_item .c-form_step_item_number span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  opacity: 0.5;
  border-radius: 50%;
  border: 2px solid var(--color-base);
  background-color: #fff;
  font-weight: 500;
  letter-spacing: 0;
}
.c-form_step .c-form_step_item .c-form_step_item_number .c-form_step_title {
  opacity: 0.5;
  letter-spacing: 0.06em;
}

/*.c-form_step*/
/*フォームレイアウト*/
.c-form_row {
  margin-bottom: 30px;
}

.c-form dt {
  display: block;
  margin-bottom: 12px;
}

.c-form dd {
  display: block;
  margin-bottom: 15px;
}

.c-form dd + dt {
  margin-top: 38px;
}

.c-form_input_row {
  display: flex;
  gap: 20px 40px;
  flex-wrap: wrap;
}
.c-form_input_row.is-col-2 > * {
  max-width: calc(50% - 20px);
}
.c-form_input_row + .c-form_input_row {
  margin-top: 15px;
}

@media screen and (max-width: 576px) {
  /*SP以下 表示*/
  .c-form_input_row {
    flex-direction: column;
  }
  .c-form_input_row.is-col-2 > * {
    max-width: 100%;
  }
}
/*END SP以下 表示*/
.c-form select,
.c-form option,
.c-form textarea,
.c-form input[type=text],
.c-form input[type=tel],
.c-form input[type=email],
.c-form input[type=search],
.c-form input[type=url] {
  font-size: 1.6rem;
  font-weight: 400;
  width: 100%;
  min-height: 50px;
  padding: 15px;
  border: none;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  background-color: #fff;
  outline: 0;
}

::placeholder {
  color: #aaa;
}

.c-form_input_l {
  width: 100%;
}

.c-form_input_m {
  width: max-content;
  max-width: 400px;
}

.c-form_input_s {
  width: min-content;
  max-width: 120px;
}

.c-form input[type=text] {
  min-width: 80px;
  min-height: 50px;
}

.c-form input[type=radio] {
  margin-right: 5px;
}

.form__input-container--checkbox,
.form__input-container--radio {
  gap: 10px 39px;
}

.form__input-container--col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 768px) {
  .form__input-container--col-2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.c-form_checkbox-item,
.c-form_radio-item {
  display: inline-flex;
  align-items: center;
  gap: 0 20px;
}

.c-form input[type=checkbox],
.c-form input[type=radio] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0 0.2em 0 0;
}

.c-form input[type=checkbox]::before,
.c-form input[type=radio]::before {
  content: "";
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-form input[type=checkbox]::after,
.c-form input[type=radio]::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-form input[type=checkbox]::before {
  border: 1px solid #f6f5f3;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.c-form input[type=checkbox]:checked::after {
  content: "✔";
  font-size: 1.8rem;
  line-height: 1em;
}

@media screen and (max-width: 768px) {
  .c-form input[type=checkbox]:checked::after {
    font-size: 12px;
  }
}
.c-form input[type=radio]::before {
  border: 1px solid #d5d5d5;
  border-radius: 50%;
}

.c-form input[type=radio]:checked::after {
  content: "";
  background: #666;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
}

.c-form .check_close {
  display: none;
}

.c-form option:focus,
.c-form textarea:focus,
.c-form input[type=text]:focus,
.c-form input[type=tel]:focus,
.c-form input[type=email]:focus,
.c-form input[type=search]:focus,
.c-form input[type=url]:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(225, 236, 251) inset;
}

.c-form label:has(input[type=radio]) {
  display: inline-block;
}

.c-form label select {
  -webkit-appearance: none;
  appearance: none;
}

.c-form label:has(select) {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.c-form label:has(select)::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}

.c-form_label {
  display: block;
  margin-bottom: 10px;
}

/*必須or任意ラベル*/
.c-form_label span {
  display: inline-block;
  color: #fff;
  background-color: #c4c4c4;
  background-color: var(--color-gray);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 2px 8px;
  margin-left: 8px;
}
.c-form_label span.is-required {
  background-color: #f00;
  background-color: var(--color-red);
}

.c-form label > select {
  -webkit-appearance: none;
  appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: 8px;
  border: 1px solid #c4c4c4;
  background-color: #fff;
  color: #2e2e2e;
  font-size: 1em;
  cursor: pointer;
}

/*プライバシー同意チェック*/
.c-form_privacy {
  max-width: 434px;
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  background-color: #f6f6f6;
  padding: 18px 40px;
  margin: 30px auto 40px;
}
.c-form_privacy .c-form_privacy_link {
  text-decoration: underline;
}
@media (hover: hover) {
  .c-form_privacy .c-form_privacy_link:hover {
    text-decoration: none;
  }
}
.c-form_privacy .c-form_privacy_consent label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.c-form_agreement {
  background: #fff5f8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 80%;
  font-size: 15px;
  padding: 25px 45px;
  margin: 45px auto;
}
.c-form_agreement a {
  color: var(--color-red);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-form_agreement a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

/*フォームボタン*/
.c-form input[type=submit],
.c-form input[type=button],
.c-form button {
  border-color: transparent;
  cursor: pointer;
}

/*		相対幅ボックス
-----------------------------------------------------*/
.c-block {
  width: var(--w-liquid);
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  /*  END .c-block_2 */
  /*  END &.c-block_3 */
  /*  END &.c-block_4 */
  /*  END &.c-block_5 */
  /*  END &.c-block_6 */
  /*  END &.c-block_7 */
  /*  END &.c-block_8 */
}
.c-block.c-block_2 > * {
  width: 48%;
}
.c-block.c-block_3 > * {
  width: 33.3333333333%;
}
.c-block.c-block_4 > * {
  width: 25%;
}
.c-block.c-block_5 > * {
  width: 20%;
}
.c-block.c-block_6 > * {
  width: 16.6666666667%;
}
.c-block.c-block_7 > * {
  width: 14.2857142857%;
}
.c-block.c-block_8 > * {
  width: 12.5%;
}

/*  END .c-block */
/*		GLIDカード
-----------------------------------------------------*/
.c-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px 2%;
  margin-left: auto;
  margin-right: auto;
  /* END .c-card-grid_item */
}
.c-card-grid > *,
.c-card-grid .c-card-grid_item {
  display: grid;
  grid-row: span 4;
  gap: 0.65rem;
  grid-template-rows: subgrid;
}
.c-card-grid > * > a,
.c-card-grid .c-card-grid_item > a {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  gap: inherit;
}
.c-card-grid > * .c-card-grid_image,
.c-card-grid .c-card-grid_item .c-card-grid_image {
  width: 100%;
  text-align: center;
}
.c-card-grid > * .c-card-grid_title,
.c-card-grid .c-card-grid_item .c-card-grid_title {
  font-size: 2.4rem;
}
.c-card-grid > * .c-card-grid_title,
.c-card-grid > * .c-card-grid_text,
.c-card-grid .c-card-grid_item .c-card-grid_title,
.c-card-grid .c-card-grid_item .c-card-grid_text {
  margin-top: 20px;
  text-align: justify;
}
.c-card-grid.c-card_2 {
  grid-template-columns: repeat(auto-fit, minmax(435px, 1fr));
}
@media screen and (max-width: 576px) {
  .c-card-grid.c-card_2 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
@media (max-width: 500px) {
  .c-card-grid.c-card_3 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_4 {
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
}
@media (max-width: 400px) {
  .c-card-grid.c-card_4 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_5 {
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
}
@media (max-width: 300px) {
  .c-card-grid.c-card_5 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_6 {
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
}
@media (max-width: 200px) {
  .c-card-grid.c-card_6 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_7 {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}
@media (max-width: 200px) {
  .c-card-grid.c-card_7 {
    grid-template-columns: none;
  }
}
.c-card-grid.c-card_8 {
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
}
@media (max-width: 150px) {
  .c-card-grid.c-card_8 {
    grid-template-columns: none;
  }
}

/* END .c-card-grid */
@media screen and (max-width: 576px) {
  .c-card-grid {
    /* END .c-card-grid_item */
  }
  .c-card-grid .c-card-grid_item .c-card-grid_title {
    font-size: 2rem;
  }
  .c-card-grid .c-card-grid_item .c-card-grid_title,
  .c-card-grid .c-card-grid_item .c-card-grid_text {
    margin-top: 15px;
  }
}
/*  END Break Point  */
/*		FLEXカード
-----------------------------------------------------*/
.c-card-flex {
  width: var(--w-liquid);
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px 3%;
  /* END c-card_2 */
  /* END c-card_3 */
  /* END c-card_4 */
  /* END c-card_5 */
  /* END c-card_6 */
  /* END c-card_7 */
  /* END c-card_8 */
}
@media screen and (max-width: 576px) {
  .c-card-flex .c-card-flex_item {
    width: 100%;
  }
}
.c-card-flex.c-card_2 .c-card-flex_item {
  width: 48.5%;
}
.c-card-flex.c-card_3 .c-card-flex_item {
  width: 31.3333333333%;
}
@media screen and (max-width: 576px) {
  .c-card-flex.c-card_3 .c-card-flex_item {
    width: 100%;
  }
}
.c-card-flex.c-card_4 .c-card-flex_item {
  width: 22.75%;
}
@media screen and (max-width: 576px) {
  .c-card-flex.c-card_4 .c-card-flex_item {
    width: 48.5%;
  }
}
.c-card-flex.c-card_5 .c-card-flex_item {
  width: 17.6%;
}
@media screen and (max-width: 576px) {
  .c-card-flex.c-card_5 .c-card-flex_item {
    width: 100%;
  }
}
.c-card-flex.c-card_6 .c-card-flex_item {
  width: 14.1666666667%;
}
@media screen and (max-width: 576px) {
  .c-card-flex.c-card_6 .c-card-flex_item {
    width: 48.5%;
  }
}
.c-card-flex.c-card_7 .c-card-flex_item {
  width: 11.7142857143%;
}
@media screen and (max-width: 576px) {
  .c-card-flex.c-card_7 .c-card-flex_item {
    width: 100%;
  }
}
.c-card-flex.c-card_8 .c-card-flex_item {
  width: 9.875%;
}
@media screen and (max-width: 576px) {
  .c-card-flex.c-card_8 .c-card-flex_item {
    width: 48.5%;
  }
}
.c-card-flex .c-card-flex_image {
  width: 100%;
  text-align: center;
}
.c-card-flex .c-card-flex_title {
  font-size: 2.4rem;
}
.c-card-flex .c-card-flex_title,
.c-card-flex .c-card-flex_text {
  margin-top: 20px;
  text-align: justify;
}

/* END .c-card_flex */
@media screen and (max-width: 576px) {
  .c-card-flex {
    flex-direction: row;
  }
  .c-card-flex.c-card_2 .c-card-flex_item, .c-card-flex.c-card_3 .c-card-flex_item, .c-card-flex.c-card_4 .c-card-flex_item, .c-card-flex.c-card_5 .c-card-flex_item, .c-card-flex.c-card_6 .c-card-flex_item, .c-card-flex.c-card_7 .c-card-flex_item, .c-card-flex.c-card_8 .c-card-flex_item {
    width: 45%;
  }
}
/*  END Break Point  */
@media screen and (max-width: 576px) {
  .c-card-flex {
    flex-direction: column;
  }
  .c-card-flex.c-card_2 .c-card-flex_item,
  .c-card-flex .c-card_3 .c-card-flex_item,
  .c-card-flex .c-card_4 .c-card-flex_item,
  .c-card-flex .c-card_5 .c-card-flex_item,
  .c-card-flex .c-card_6 .c-card-flex_item,
  .c-card-flex .c-card_7 .c-card-flex_item,
  .c-card-flex .c-card_8 .c-card-flex_item {
    width: 100%;
  }
}
/*  END Break Point  */
/*		ユニットコンテンツ
-----------------------------------------------------*/
.c-unit {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px 4%;
}
@media screen and (max-width: 576px) {
  .c-unit {
    flex-direction: column;
  }
}
.c-unit > * {
  flex: 1 360px;
}
@media screen and (max-width: 576px) {
  .c-unit > * {
    flex: 1;
    width: 100%;
  }
}
.c-unit + .c-unit {
  margin-top: 30px;
}
.c-unit.is-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 576px) {
  .c-unit.is-reverse {
    flex-direction: column;
  }
}

.c-media {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 3%;
}
@media screen and (max-width: 576px) {
  .c-media {
    flex-direction: column;
  }
}
.c-media.is-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 576px) {
  .c-media.is-reverse {
    flex-direction: column;
  }
}
.c-media_image {
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .c-media_image {
    width: 100%;
  }
}
.c-media_content {
  flex: 1 1 400px;
}
@media screen and (max-width: 576px) {
  .c-media_content {
    flex: 1;
    width: 100%;
  }
}
.c-media_content_title {
  font-size: 2.4rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 576px) {
  .c-media_content_title {
    font-size: 1.8rem;
  }
}
.c-media_content_text {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 576px) {
  .c-media_content_text {
    font-size: 1.4rem;
  }
}

/*====================================================
年齢認証ポップアップ
====================================================*/
.c-age-verification {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--base-serif);
}

.c-age-verification_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.c-age-verification_modal {
  position: relative;
  z-index: 1;
  background: #F6F6F6;
  padding: clamp(3rem, 5.2083333333vw, 10rem) clamp(5rem, 6.7708333333vw, 13rem);
  max-width: 90vw;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
}
@media screen and (max-width: 576px) {
  .c-age-verification_modal {
    padding: clamp(3rem, 13.0208333333vw, 10rem) clamp(2rem, 6.5104166667vw, 5rem);
  }
}

.c-age-verification_text {
  margin-bottom: 30px;
  font-size: 16px;
}
@media screen and (max-width: 576px) {
  .c-age-verification_text {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.c-age-verification_text.is-note {
  font-size: 36px;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .c-age-verification_text.is-note {
    font-size: 24px;
  }
}

.c-age-verification_actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.c-age-verification_checkbox {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  user-select: none;
}
@media screen and (max-width: 576px) {
  .c-age-verification_checkbox {
    font-size: 12px;
  }
}

.c-checkbox {
  width: 560px;
  padding: 20px;
  background-color: #FFF;
  font-size: 14px;
}
@media screen and (max-width: 576px) {
  .c-checkbox {
    width: 100%;
    font-size: 12px;
    padding: 20px 10px;
  }
}

.c-vertical-line {
  position: relative;
  padding-top: 60px;
}
.c-vertical-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 50px;
  width: 1px;
  background: #FFF;
}

.c-dialog {
  border: none;
  padding: 0;
  width: min(720px, 100vw - 32px);
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
  color: #333;
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  max-height: 90vh;
}
.c-dialog[open] {
  display: flex;
  flex-direction: column;
}
.c-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.45);
}

.c-dialog__inner {
  display: flex;
  flex-direction: column;
  max-height: min(90vh, 720px);
  height: 100%;
  overflow: hidden;
}

.c-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #e6e6e6;
}

.c-dialog__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.c-dialog__close {
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 2.4rem;
  line-height: 1;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.c-dialog__close:hover, .c-dialog__close:focus {
  opacity: 0.65;
}

.c-dialog__content {
  padding: 16px 24px 24px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}
.c-dialog__content p {
  margin-bottom: 1.2em;
}
.c-dialog__content h3 {
  margin: 2.4em 0 0.8em;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-dialog__content ul {
  margin: 0 0 1.6em 1.4em;
  padding: 0;
  list-style: disc;
}
.c-dialog__content ul li {
  margin-bottom: 0.6em;
}
.c-dialog__content address {
  font-style: normal;
  margin-bottom: 1.6em;
}

.c-dialog__note {
  font-size: 1.2rem;
  color: #666;
}

.c-dialog__actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 24px 24px;
}

.c-dialog__action {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 10px 28px;
  background: #1f9eb7;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.c-dialog__action:hover, .c-dialog__action:focus {
  opacity: 0.85;
}

@media screen and (max-width: 576px) {
  .c-dialog__header {
    padding: 20px 20px 12px;
  }
  .c-dialog__content {
    padding: 12px 20px 20px;
  }
  .c-dialog__actions {
    padding: 0 20px 20px;
  }
}
.is-dialog-open {
  overflow: hidden !important;
}

body.is-dialog-open {
  width: 100%;
}
