@charset "UTF-8";
/**
 * Popup Maker の年齢確認ポップアップ
 *
 * 本番 DB の旧 Popup Maker コンテンツ（[omoPopupAdd]）を新テーマで再利用するための
 * コンポーネント。専用の p-age-gate クラスだけを対象にし、他のモーダルへ影響させない。
 */
.p-age-gate {
  color: #15120f;
  text-align: center;
}
.p-age-gate__logo {
  max-width: 220px;
  margin: 0 auto;
}
.p-age-gate__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.p-age-gate__message {
  margin: 52px 0 42px;
}
.p-age-gate__message p {
  margin: 10px 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.06em;
}
.p-age-gate__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.p-age-gate__action {
  width: 200px;
  max-width: calc(50vw - 52px);
}
.p-age-gate__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 12px 20px;
  font: inherit;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: #f6efe3;
  text-decoration: none;
  cursor: pointer;
  background: #15120f;
  border: 1px solid #b8975c;
  border-radius: 0;
  transition: color 0.2s, background-color 0.2s;
}
.p-age-gate__button:hover, .p-age-gate__button:focus-visible {
  color: #15120f;
  background: #f2f0e5;
}
.p-age-gate__note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
}
.p-age-gate__notice {
  margin: 34px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

@media screen and (max-width: 640px) {
  .p-age-gate__logo {
    max-width: 180px;
  }
  .p-age-gate__message {
    margin: 34px 0 30px;
  }
  .p-age-gate__message p {
    font-size: 18px;
  }
  .p-age-gate__message p br {
    display: none;
  }
  .p-age-gate__actions {
    gap: 14px;
  }
  .p-age-gate__action {
    width: calc(50vw - 42px);
  }
  .p-age-gate__button {
    min-height: 56px;
    padding: 10px;
    font-size: 17px;
  }
}
