@charset "UTF-8";
/* ---------------------------------------------
   基本設定
--------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ---------------------------------------------
   マージン／パディング初期化
--------------------------------------------- */
body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, dl, dt, dd,
figure, blockquote, pre,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/* ---------------------------------------------
   ベース要素（値は持たせない）
--------------------------------------------- */
body {
  text-rendering: optimizeSpeed;
}

/* ---------------------------------------------
   タイポグラフィ初期化
--------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

strong, b {
  font-weight: inherit;
}

em, i {
  font-style: inherit;
}

/* ---------------------------------------------
   リスト／リンク
--------------------------------------------- */
ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover,
a:focus-visible {
  opacity: 0.8;
}

/* ---------------------------------------------
   メディア要素
--------------------------------------------- */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  vertical-align: middle;
}

/* ---------------------------------------------
   テーブル
--------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* ---------------------------------------------
   フォーム要素
--------------------------------------------- */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* ---------------------------------------------
   フォーカス（アクセシビリティ）
--------------------------------------------- */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* ---------------------------------------------
   WordPress固有要素対策
--------------------------------------------- */
.alignnone,
.aligncenter,
.alignright,
.alignleft {
  display: block;
  margin: 0 auto;
}

.wp-caption {
  max-width: 100%;
}

/* ---------------------------------------------
   電話番号リンク無効化（PCのみ）
--------------------------------------------- */
@media (hover: hover) {
  .tel-link {
    pointer-events: none;
    cursor: text;
  }
}
/* ---------------------------------------------
   body
--------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.875rem, 1.6vw, 0.9rem);
  line-height: 1.5;
  color: #1c1c1c;
  background-color: #f4f4f4;
  overflow-x: hidden;
}

/* ---------------------------------------------
   テキスト要素
--------------------------------------------- */
p {
  font-size: clamp(0.875rem, 1.6vw, 0.9rem);
}

small {
  font-size: clamp(0.75rem, 1.4vw, 0.75rem);
}

/* ---------------------------------------------
   リンク
--------------------------------------------- */
a {
  color: inherit;
}

/* ------------------------------------------------------------------------------
  共通inner
------------------------------------------------------------------------------ */
.l-inner {
  --inner-width: 1440px;
  --inner-gutter: 20px;
  width: min(100% - var(--inner-gutter) * 2, var(--inner-width));
  margin-right: auto;
  margin-left: auto;
}

/* ------------------------------------------------------------------------------
  MailformPro｜フォーム上書き（外部依存）
------------------------------------------------------------------------------ */
#mailformpro input,
#mailformpro select,
#mailformpro textarea {
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}
#mailformpro {
  /* input（フォームUI側のクラスに合わせて上書き） */
}
#mailformpro .c-form-input {
  padding: 10px 16px;
  font-size: 0.875rem;
  border: 1px solid #cccccc;
  background-color: #f9f9f9;
}
#mailformpro {
  /* select（フォームUI側のクラスに合わせて上書き） */
}
#mailformpro .c-form-select {
  padding: 10px 16px;
  font-size: 0.875rem;
  border: 1px solid #cccccc;
  background-color: #ffffff;
}
#mailformpro {
  /* textarea（フォームUI側のクラスに合わせて上書き） */
}
#mailformpro .c-form-textarea {
  width: 100% !important;
  height: auto !important;
  padding: 14px 16px;
  font-size: 0.875rem;
  border: 1px solid #cccccc;
  background-color: #ffffff;
}
#mailformpro {
  /* 生年月日 select 余白 */
}
#mailformpro select[name^=birthday],
#mailformpro .mfp_element_select-one {
  margin-right: 5px;
}

/* ------------------------------------------------------------------------------
  MailformPro｜入力画面 送信ボタン（mfp_buttons）
------------------------------------------------------------------------------ */
#mailformpro .mfp_buttons {
  width: 100%;
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
#mailformpro {
  /* 送信ボタン（MFPデフォルトを完全に上書き） */
}
#mailformpro .mfp_buttons .mfp_element_submit {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  /*min-height: 64px;*/
  padding: 18px 56px;
  border: none;
  border-radius: 5px;
  background: #414042 !important;
  color: #f0f0f0 !important;
  font-size: clamp(0.75rem, 1.4vw, 0.75rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  cursor: pointer;
}
#mailformpro {
  /* 左ダミースペース（視覚センター補正） */
}
#mailformpro .mfp_buttons .mfp_element_submit::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 12px;
  height: 10px;
  transform: translateY(-50%);
}
#mailformpro {
  /* 右矢印（黒） */
}
#mailformpro .mfp_buttons .mfp_element_submit::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 10px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("/images/cmn_img/icon_arrow_light.svg");
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  #mailformpro .mfp_buttons .mfp_element_submit:hover::after {
    transform: translateY(-50%) translateX(5px);
  }
}
/* ------------------------------------------------------------------------------
  MailformPro｜確認画面 ボタン制御（常時）
------------------------------------------------------------------------------ */
#mfp_phase_confirm h4 {
  color: #ffffff;
}
#mfp_phase_confirm .mfp_buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
#mfp_phase_confirm {
  /* 共通ボタン土台（確認画面は2ボタン想定） */
}
#mfp_phase_confirm .mfp_element_button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  max-width: 100%;
  min-height: 66px;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border: none !important;
  cursor: pointer;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  background-image: none !important;
}
#mfp_phase_confirm {
  /* 送信 */
}
#mfp_phase_confirm .mfp_element_submit {
  background: #e63946 !important;
  color: #ffffff !important;
}
#mfp_phase_confirm {
  /* 戻る/キャンセル */
}
#mfp_phase_confirm .mfp_element_reset {
  background: #f0f0f0 !important;
  color: #434343 !important;
}

/* ------------------------------------------------------------------------------
  MailformPro｜HTML submitボタン（c-button）を強制適用
------------------------------------------------------------------------------ */
#mailformpro button[type=submit].c-button {
  appearance: none;
  -webkit-appearance: none;
  /* MFPのグラデ等を潰す（background-colorだけだと残る） */
  background: #414042 !important;
  background-image: none !important;
  color: #f0f0f0 !important;
  border: none !important;
  box-shadow: none !important;
  /* MFP側の角丸/余白/文字サイズに勝つ */
  border-radius: 50px !important;
  padding: 16px 48px !important;
  font-size: clamp(0.75rem, 1.4vw, 0.75rem) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-shadow: none !important;
  cursor: pointer;
}
#mailformpro {
  /* entry だけ少し大きめにしたい場合（任意） */
}
#mailformpro button[type=submit].c-button.c-button--entry {
  max-width: 320px;
  border-radius: 5px !important;
  padding: 18px 56px !important;
}

/* ------------------------------------------------------------------------------
  SP（900px以下想定：mq(tb)）
------------------------------------------------------------------------------ */
@media (max-width: 768px) {
  #mailformpro .mfp_buttons {
    margin-top: 20px;
  }
  #mailformpro .mfp_buttons .mfp_element_submit {
    max-width: 100%;
  }
  #mfp_phase_confirm .mfp_buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }
  #mfp_phase_confirm .mfp_element_button {
    max-width: 100%;
  }
}
/* ------------------------------------------------------------------------------
  コンポーネント｜フォームUI（テーブル・入力要素）
------------------------------------------------------------------------------ */
/* フォームテーブル */
.c-form-table {
  width: 100%;
  border-collapse: collapse;
}
.c-form-table__row {
  border: 1px solid #cccccc;
}
.c-form-table {
  /* 見出しセル */
}
.c-form-table__head {
  width: 30%;
  padding: 16px;
  text-align: left;
  vertical-align: middle;
  background-color: #eeeeee;
}
.c-form-table {
  /* データセル */
}
.c-form-table__data {
  padding: 16px;
  vertical-align: middle;
  background-color: #ffffff;
}
.c-form-table {
  /* 必須ラベル */
}
.c-form-table__required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  font-size: 0.75rem;
  color: #ffffff;
  background-color: #ad0306;
  border-radius: 5px;
  float: right;
}

/* 入力要素 */
.c-form-input {
  width: 100%;
  padding: 8px 10px;
  font-size: 0.875rem;
  border: 1px solid #cccccc;
  background-color: #f9f9f9;
  border-radius: 2px;
}
.c-form-input:focus {
  outline: none;
  border-color: #cccccc;
}
.c-form-input--max {
  max-width: 100%;
}
.c-form-input--min {
  max-width: 100px !important;
}

.c-form-select {
  width: 100%;
  max-width: 300px !important;
  padding: 8px 10px;
  font-size: 0.875rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
}
.c-form-select:focus {
  outline: none;
  border-color: #cccccc;
}

.c-form-textarea {
  width: 100%;
  padding: 10px;
  font-size: 0.875rem;
  border: 1px solid #cccccc;
  border-radius: 2px;
  resize: vertical;
}
.c-form-textarea:focus {
  outline: none;
  border-color: #cccccc;
}
.c-form-textarea--max {
  max-width: 100%;
}
.c-form-textarea--lg {
  min-height: 200px;
}

/* 住所関連補助ラベル */
.c-form-address-label {
  margin: 16px 0 4px;
  font-size: 0.8125rem;
}

/* チェックボックス */
.c-form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

form#mailformpro label,
form#mailformpro label.mfp_checked {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

.c-form-checkbox input[type=checkbox] {
  margin: 0;
}

#mailformpro .c-form-checkbox,
#mailformpro .c-form-checkbox input[type=checkbox] {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

/* ------------------------------------------------------------------------------
  メールフォームプロ：確認画面 ボタン制御（常時）
------------------------------------------------------------------------------ */
#mfp_phase_confirm .mfp_buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
#mfp_phase_confirm {
  /* 共通ボタン土台 */
}
#mfp_phase_confirm .mfp_element_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  /* c-button から継承したい最小セット */
  border-radius: 999px;
  font-size: clamp(0.875rem, 1.6vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: #414042;
  color: #f0f0f0;
  border: none;
  cursor: pointer;
  position: relative;
  /* opacity 変化は c-button と同じ思想 */
  transition: opacity 0.25s ease;
}
#mfp_phase_confirm .mfp_element_button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 12px;
  height: 10px;
  background-image: url("/images/cmn_img/icon_arrow_light.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 10px;
  transition: transform 0.25s ease;
}
#mfp_phase_confirm .mfp_element_button:hover {
  opacity: 0.85;
}
#mfp_phase_confirm .mfp_element_button:hover::after {
  transform: translateY(-50%) translateX(5px);
}
#mfp_phase_confirm .mfp_element_button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(65, 64, 66, 0.3);
}
#mfp_phase_confirm {
  /* 送信ボタン */
}
#mfp_phase_confirm .mfp_element_submit {
  position: relative;
  padding: 20px 64px 20px 40px;
  background-color: #414042;
  color: #1c1c1c;
}
#mfp_phase_confirm .mfp_element_submit:hover {
  background-color: rgb(49.7, 48.9353846154, 50.4646153846);
  opacity: 1;
}
#mfp_phase_confirm .mfp_element_submit:hover::after {
  transform: translate(5px, -50%);
}
#mfp_phase_confirm {
  /* キャンセル */
}
#mfp_phase_confirm .mfp_element_reset {
  background-color: #f0f0f0;
  color: #999;
}
#mfp_phase_confirm .mfp_element_reset:hover {
  background-color: #e0e0e0;
}

/* ------------------------------------------------------------------------------
  SP（768px以下想定：mq(tb-wide)）
------------------------------------------------------------------------------ */
@media (max-width: 900px) {
  .c-form-table {
    font-size: clamp(0.75rem, 1.4vw, 0.75rem);
  }
}
/* ------------------------------------------------------------------------------
  SP（900px以下想定：mq(tb)）
------------------------------------------------------------------------------ */
@media (max-width: 768px) {
  /* 768px以下ではth、tdをブロック表示に変更 */
  .c-form-table th,
  .c-form-table td {
    display: block;
    width: 100%;
  }
}
/* ------------------------------------------------------------------------------ 
  fadeUp animation (scroll trigger)
------------------------------------------------------------------------------ */
.u-fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.u-fadeUp.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* スクロール連動の時間差フェードインは js-scroll-stagger（config.js）で制御
   透過のみ: js-scroll-stagger--fade */

/*# sourceMappingURL=style.css.map */
