@charset "UTF-8";
/*
$c_main: #DB0000;
$c_sub: #E9A87D;
$c_accent: #E64D4D;
$c_btn: #FF7043;
$c_btn_hover: #F4511E;
$c_sns_line: #06C755;
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap&family=Oswald&display=swap");
/* ============================================================
   member.scss
   - WP-Members 関連ページ（login / register / password / profile / user-edit / logout）
   - BEM / Mobile-first（min-width）
============================================================ */
/* ------------------------------------------------------------
  Theme tokens（member）
------------------------------------------------------------ */
/* ============================================================
  Page Title / Page Hero（member用）
  ※ page-title と page-hero は共通パーツ想定：CSS変数だけ差し替え
============================================================ */
.page-title--default {
  --page-title-bg: #E3F5FF;
  --page-title-color: #00AAFF;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 5px 5px;
}

/* page-hero 側が .page-title--default を参照する仕様ならここで変数定義 */
.page-hero--default {
  --page-hero-bg: var(--bg-white);
  --page-hero-accent: #00AAFF;
  --page-hero-title-color: #00AAFF;
  --page-hero-text-color: #555555;
}

/* ============================================================
  Auth wrapper（memberページ共通レイアウト）
============================================================ */
.auth {
  background: var(--bg-white);
  padding-top: 4rem;
  padding-bottom: 6.4rem;
}
.auth__card {
  max-width: 540px;
  margin-inline: auto;
  padding-top: 2.4rem;
  padding-right: 2rem;
  padding-bottom: 2.8rem;
  padding-left: 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .auth__card {
    padding-top: 3.2rem;
    padding-right: 3.2rem;
    padding-bottom: 3.6rem;
    padding-left: 3.2rem;
  }
}
.auth__lead {
  margin-top: 0;
  margin-bottom: 1.6rem;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.8;
  color: #666666;
  text-align: center;
}
.auth__notice {
  font-weight: 700;
  text-align: center;
}
.auth {
  /* フッター文（説明など） */
}
.auth__foot {
  margin-top: 2.4rem;
  text-align: left;
}
@media (min-width: 768px) {
  .auth__foot {
    margin-top: 3.2rem;
    text-align: center;
  }
}
.auth__note {
  margin-bottom: 1.2rem;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.8;
  color: #666666;
}

/* ============================================================
  [wpmem_profile] のメニュー整形（リンク一覧）
============================================================ */
.auth__body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.auth__body li {
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.auth__body ul li > a {
  --common-border: #ff8a00;
  --common-bg: #ffffff;
  --common-ink: #555555;
  --common-bg-hover: #ff8a00;
  --common-ink-hover: #ffffff;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  width: min(320px, 100%);
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-height: 3.2rem;
  padding-top: 0.7rem;
  padding-right: 2rem;
  padding-bottom: 0.7rem;
  padding-left: 2.2rem;
  border-radius: 999px;
  border: 2px solid var(--common-border);
  background-color: var(--common-bg);
  color: var(--common-ink);
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.auth__body ul li > a:hover {
  background-color: var(--common-bg-hover);
  color: var(--common-ink-hover);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 10px rgba(255, 138, 0, 0.35);
          box-shadow: 0 4px 10px rgba(255, 138, 0, 0.35);
}
.auth__body ul li > a:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.25);
          box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.25);
}
@media (min-width: 768px) {
  .auth__body ul li > a {
    min-height: 3.6rem;
    width: min(360px, 100%);
    padding-top: 0.8rem;
    padding-right: 2.4rem;
    padding-bottom: 0.8rem;
    padding-left: 2.6rem;
  }
}

/* ============================================================
  WP-Members form base（auth配下のフォーム共通UI）
  - 入力内フォントサイズを小さく（要望対応）
============================================================ */
.auth form {
  margin: 0;
}
.auth .div_text,
.auth .div_password,
.auth .div_select,
.auth .div_checkbox,
.auth .div_radio,
.auth .div_textarea,
.auth .div_multicheckbox {
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
}
.auth label {
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 700;
  color: #00AAFF;
  margin-bottom: 0.6rem;
}
.auth .req {
  margin-left: 0.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6c00;
}
.auth input[type=text],
.auth input[type=email],
.auth input[type=password],
.auth input[type=tel],
.auth select,
.auth textarea {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #d0d0d0;
  background-color: #ffffff;
  /* ★ input内フォントサイズを小さく */
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.6;
  color: #222222;
  -webkit-transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.auth input[type=text]:focus,
.auth input[type=email]:focus,
.auth input[type=password]:focus,
.auth input[type=tel]:focus,
.auth select:focus,
.auth textarea:focus {
  outline: none;
  border-color: #00bfd4;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 191, 212, 0.25);
          box-shadow: 0 0 0 3px rgba(0, 191, 212, 0.25);
}
@media (min-width: 768px) {
  .auth input[type=text],
  .auth input[type=email],
  .auth input[type=password],
  .auth input[type=tel],
  .auth select,
  .auth textarea {
    /* PCで少し戻したい場合（不要なら消してください） */
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}
.auth input[type=text],
.auth input[type=email],
.auth input[type=password],
.auth input[type=tel],
.auth select {
  height: 4.4rem;
  padding-inline: 1.2rem;
}
.auth textarea {
  min-height: 12rem;
  padding: 1rem 1.2rem;
  resize: vertical;
}
.auth .hint,
.auth .description {
  margin-top: 0.4rem;
  font-size: clamp(1rem, 0.926rem + 0.23vw, 1.2rem);
  line-height: 1.6;
  color: #888888;
}
.auth .err,
.auth .error,
.auth #wpmem_msg,
.auth .wpmem_msg {
  margin-bottom: 1.6rem;
  padding: 1.2rem 1.4rem;
  background: #fff4f4;
  border: 1px solid #ffd1d1;
  border-radius: 6px;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.6;
  color: #c62828;
}
.auth .success,
.auth .wpmem_msg.success {
  background: #f0fffb;
  border-color: #bdeee2;
  color: #006b5e;
}
.auth .button_div {
  margin-top: 3.2rem;
  text-align: center;
}

#wpmem_login legend,
#wpmem_reg legend {
  margin-bottom: 1em !important;
}

/* ============================================================
  Radio / Checkbox
  - チェック枠（input）を隠す
  - ラベル全体をクリック可能な「チップUI」にする（要望対応）
  ※ WP-Members の出力が「input + label + <br>」形式なのでこの方式が効く
============================================================ */
.auth {
  /* 共通：実体inputを視覚的に隠す（クリック判定は残す） */
}
.auth .div_checkbox input[type=checkbox],
.auth .div_radio input[type=radio],
.auth .div_multicheckbox input[type=checkbox],
.auth .div_multicheckbox input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.auth {
  /* WP-Membersの multicheckbox は label に class="multicheckbox" が付く想定 */
}
.auth .div_checkbox label,
.auth .div_radio label,
.auth .div_multicheckbox label {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0;
  /* br で改行されるので */
  padding: 0.6rem 1.2rem;
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  background-color: #ffffff;
  color: #444444;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 500;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.auth {
  /* hover */
}
.auth .div_checkbox label:hover,
.auth .div_radio label:hover,
.auth .div_multicheckbox label:hover {
  border-color: #9fdcff;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.12);
}
.auth {
  /* checked 状態（input の直後の label を強調） */
}
.auth .div_checkbox input:checked + label,
.auth .div_radio input:checked + label,
.auth .div_multicheckbox input:checked + label {
  border-color: #00AAFF;
  background-color: #E3F5FF;
  color: #222222;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.16);
          box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.16);
}
.auth {
  /* キーボードフォーカス（label側に可視化） */
}
.auth .div_checkbox input:focus-visible + label,
.auth .div_radio input:focus-visible + label,
.auth .div_multicheckbox input:focus-visible + label {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.25);
          box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.25);
}
.auth {
  /* 余計な &nbsp; や br がある前提で、行間を整える（必要なら） */
}
.auth .div_multicheckbox br {
  content: "";
  display: block;
  margin-top: 0.6rem;
}

.auth {
  /* ラジオ */
}
.auth .div_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem 0.8rem;
  /* WP-Members の <br> 改行を潰す */
}
.auth .div_radio br {
  display: none;
}
.auth {
  /* 複数チェック（必要なら） */
}
.auth .div_multicheckbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem 1.2rem;
}
.auth .div_multicheckbox br {
  display: none;
}
.auth {
  /* 1列に戻したい場合の例（特定項目だけ）：
     .div_radio--stack { flex-direction: column; align-items: flex-start; } */
}

/* ============================================================
  Submit button（WP-Members）
============================================================ */
.auth input[type=submit] {
  --common-border: #ff8a00;
  --common-bg: #ffffff;
  --common-ink: #555555;
  --common-bg-hover: #ff8a00;
  --common-ink-hover: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  min-height: 3.2rem;
  padding: 0.7rem 2rem 0.7rem 2.2rem;
  border-radius: 999px;
  border: 2px solid var(--common-border);
  background-color: var(--common-bg);
  color: var(--common-ink);
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.auth input[type=submit]:hover {
  background-color: var(--common-bg-hover);
  color: var(--common-ink-hover);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 10px rgba(255, 138, 0, 0.35);
          box-shadow: 0 4px 10px rgba(255, 138, 0, 0.35);
}
.auth input[type=submit]:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.25);
          box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.25);
}
@media (min-width: 768px) {
  .auth input[type=submit] {
    min-height: 3.6rem;
    padding: 0.8rem 2.4rem 0.8rem 2.6rem;
  }
}
.auth input[type=submit]:disabled {
  background-color: #f2f4f7;
  border-color: #e2e6ea;
  color: #9aa3ad;
  cursor: not-allowed;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: none;
          transform: none;
}

/* ============================================================
  Profile：disabled / readonly UI（JSで切替）
============================================================ */
.auth input:disabled,
.auth select:disabled,
.auth textarea:disabled,
.auth input[readonly],
.auth textarea[readonly] {
  background-color: #f2f4f7;
  border-color: #e2e6ea;
  color: #9aa3ad;
  cursor: not-allowed;
  opacity: 1;
}
.auth input:disabled:focus,
.auth select:disabled:focus,
.auth textarea:disabled:focus,
.auth input[readonly]:focus,
.auth textarea[readonly]:focus {
  border-color: #e2e6ea;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.auth label.is-disabled {
  color: #9aa3ad;
}
.auth {
  /* 2カラム整形（フィルターで合体したHTML用） */
}
.auth .wpmem-grid__labels {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.2rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.auth .wpmem-grid__label {
  display: block;
}
.auth .wpmem-grid__fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.2rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.auth .wpmem-grid__field {
  display: block;
}
.auth .wpmem-grid__field input,
.auth .wpmem-grid__field select,
.auth .wpmem-grid__field textarea {
  width: 100%;
}
.auth .wpmem-field-note {
  margin-top: 0.6rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 0.926rem + 0.23vw, 1.2rem);
  line-height: 1.6;
  color: #888888;
}
.auth {
  /* 都道府県・市区町村：文字表示風 */
}
.auth #billing_state[readonly],
.auth #billing_city[readonly] {
  padding: 0;
  height: auto;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
  line-height: 1.8;
  color: #222222;
  cursor: default;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.auth #billing_state[readonly]:focus,
.auth #billing_city[readonly]:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.auth label[for=billing_state].is-disabled,
.auth label[for=billing_city].is-disabled {
  color: #888888;
}

/* ============================================================
  Profile（閲覧専用：dl/dt/dd）
============================================================ */
.auth .wpmem_profile,
.auth #wpmem_profile {
  margin: 0;
}
.auth dl {
  margin: 0;
}
.auth dt {
  margin-top: 2rem;
  margin-bottom: 0.4rem;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 700;
  color: #555555;
}
.auth dd {
  margin: 0;
  padding-bottom: 1.2rem;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  line-height: 1.8;
  color: #222222;
  border-bottom: 1px solid #eeeeee;
}
.auth dt:first-of-type {
  margin-top: 0;
}
.auth .wpmem_profile_empty {
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  color: #999999;
}

/* ============================================================
  Utility
============================================================ */
.link-text-forgot a {
  text-decoration: underline;
}

#wpmem_login,
#wpmem_msg,
#wpmem_reg,
.wpmem_msg {
  width: 100% !important;
}

#wpmem_login .div_text,
#wpmem_reg .div_checkbox,
#wpmem_reg .div_date,
#wpmem_reg .div_file,
#wpmem_reg .div_image,
#wpmem_reg .div_membership,
#wpmem_reg .div_multicheckbox,
#wpmem_reg .div_multiselect,
#wpmem_reg .div_number,
#wpmem_reg .div_radio,
#wpmem_reg .div_select,
#wpmem_reg .div_text,
#wpmem_reg .div_textarea,
#wpmem_reg .div_url {
  margin-bottom: 2.8rem !important;
}