@charset "UTF-8";
/* contact
============================================================ */
/* input設定 */
input[type=tel],
input[type=text],
input[type=email],
input[type=number],
select,
textarea {
  background-color: #fff;
  border: 1px solid #fff;
  padding: 12px 5px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  input[type=tel],
  input[type=text],
  input[type=email],
  input[type=number],
  select,
  textarea {
    font-size: min(1.17131vw, 16px);
    padding: min(0.87848vw, 12px) min(0.36604vw, 5px);
  }
}

/* textarea */
textarea {
  min-height: 150px;
  word-wrap: break-word;
}

/* エラーメッセージ */
.error_message {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .error_message {
    margin-top: min(0.58566vw, 8px);
  }
}
.error_message span {
  color: #FF0000;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .error_message span {
    font-size: min(1.17131vw, 16px);
  }
}

input.error,
select.error,
textarea.error {
  background-color: #FFEBEB;
  border: 1px solid #FF0000;
}

/* jsエラーテキスト */
.js_error {
  color: #FF0000;
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .js_error {
    margin-top: min(2.1962vw, 30px);
  }
}

/* 入力無効 */
.input-disabled {
  background-color: #e9e9e9 !important;
}

/* formList設定
------------------------------------------------------------ */
/* リスト */
.f_formList {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .f_formList {
    gap: min(2.92826vw, 40px) 0;
  }
}

/* タイトル */
.f_formList h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.875;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .f_formList h2 {
    font-size: min(1.17131vw, 16px);
    margin-bottom: min(1.17131vw, 16px);
  }
}

/* タイトル間の調整 */
.f_ttlAdjustment {
  display: inline-block;
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  .f_ttlAdjustment {
    margin-right: min(1.17131vw, 16px);
  }
}

/* 必須 */
.required {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FF0000;
  display: inline-block;
  margin-left: 8px;
}
@media screen and (min-width: 768px) {
  .required {
    font-size: min(1.17131vw, 16px);
    margin-left: min(0.58566vw, 8px);
  }
}

/* プレースホルダー */
.f_placeholder {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .f_placeholder {
    font-size: min(1.17131vw, 16px);
    margin-top: min(0.58566vw, 8px);
  }
}

/* タイトル横の注記 */
.f_note {
  font-weight: 400;
}

/* プライバシーポリシーリンク */
.f_privacyLink {
  color: #0000FF;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .f_privacyLink:hover {
    opacity: 0.6;
  }
}

/* ----- フォームボタン ----- */
/* ボタンエリア */
.f_btn_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px 0;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .f_btn_wrap {
    margin-top: min(2.92826vw, 40px);
    gap: min(1.17131vw, 16px) 0;
  }
}

/* ボタン */
.f_btn--submit {
  background-color: #4A5463;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8125;
  padding: 24px 5px;
  text-align: center;
  width: 234px;
}
@media screen and (min-width: 768px) {
  .f_btn--submit {
    font-size: min(1.17131vw, 16px);
    padding: min(1.75696vw, 24px) min(0.36604vw, 5px);
    width: min(17.13031vw, 234px);
  }
}
.f_btn--submit span {
  display: inline-flex;
  align-items: center;
  gap: 0 10px;
}
@media screen and (min-width: 768px) {
  .f_btn--submit span {
    gap: min(0.73207vw, 10px);
  }
}
.f_btn--submit span:after {
  content: "";
  width: 0;
  height: 0;
  margin-top: 2px;
  border-style: solid;
  border-width: 6.5px 0 6.5px 11.3px;
  border-color: transparent transparent transparent #FFFFFF;
}
@media screen and (min-width: 768px) {
  .f_btn--submit span:after {
    margin-top: min(0.14642vw, 2px);
    border-width: min(0.47585vw, 6.5px) 0 min(0.47585vw, 6.5px) min(0.82724vw, 11.3px);
  }
}
@media screen and (min-width: 768px) {
  .f_btn--submit:hover {
    opacity: 0.6;
  }
}

/* リセット、リターンボタン */
.f_btn--reset {
  background-color: initial;
  border: none;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8125;
  text-align: center;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .f_btn--reset {
    font-size: min(1.17131vw, 16px);
  }
}
@media screen and (min-width: 768px) {
  .f_btn--reset:hover {
    opacity: 0.6;
  }
}

html:not(.enable-javascript) .f_btn_wrap {
  display: none;
}

/* ----- チェックボックス共通 ----- */
.cmnCheckBox > div {
  position: relative;
}
.cmnCheckBox input[type*=checkbox] {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 30px;
  height: 30px;
  border: 0;
  padding: 0;
  outline-offset: 5px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .cmnCheckBox input[type*=checkbox] {
    left: min(0.21962vw, 3px);
    width: min(2.1962vw, 30px);
    height: min(2.1962vw, 30px);
    outline-offset: min(0.36604vw, 5px);
  }
}
.cmnCheckBox input[type*=checkbox] + label {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 5.5px 0 5.5px 51px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmnCheckBox input[type*=checkbox] + label {
    font-size: min(1.17131vw, 16px);
    padding: min(0.40264vw, 5.5px) 0 min(0.40264vw, 5.5px) min(3.73353vw, 51px);
  }
}
@media screen and (min-width: 768px) {
  .cmnCheckBox input[type*=checkbox] + label {
    cursor: pointer;
  }
}
.cmnCheckBox input[type*=checkbox] + label:before {
  content: "";
  background-color: #fff;
  display: inline-block;
  height: 35px;
  width: 35px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .cmnCheckBox input[type*=checkbox] + label:before {
    height: min(2.56223vw, 35px);
    width: min(2.56223vw, 35px);
  }
}
.cmnCheckBox input[type*=checkbox] + label::after {
  content: "";
  background-color: #1A73E8;
  height: 25px;
  width: 25px;
  position: absolute;
  top: 50%;
  left: 5px;
  opacity: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .cmnCheckBox input[type*=checkbox] + label::after {
    height: min(1.83017vw, 25px);
    width: min(1.83017vw, 25px);
    left: min(0.36604vw, 5px);
  }
}
.cmnCheckBox input[type*=checkbox]:checked + label::after {
  opacity: 1;
}

/* ロゴとグローバルナビの打ち消し
-------------------------------------------------- */
.header__logo {
  animation: initial;
  opacity: 1;
}

.gNav {
  animation: initial;
  opacity: 1;
}

/* グローバルナビのチェック */
.gNav li:last-of-type a::before {
  background-color: #DDFF21;
}

/* ページ共通
-------------------------------------------------- */
.main__inner {
  margin: 0 auto;
  padding: 80px 0 40px;
  width: 89.33334%;
}
@media screen and (min-width: 768px) {
  .main__inner {
    max-width: 1200px;
    padding: min(9.51684vw, 130px) 0 min(5.85652vw, 80px);
    width: 87.8477307%;
  }
}

/* タイトル（spのみ） */
.main_ttl {
  color: #DDFF22;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .main_ttl {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .lrWrap {
    position: relative;
    display: flex;
  }
}

/* 左側 */
@media screen and (min-width: 768px) {
  .wrapLeft {
    display: block;
    padding: 0 min(1.17131vw, 16px) 0 0;
    position: relative;
    height: auto;
    width: min(22.25476vw, 304px);
    z-index: 100;
  }
}
@media screen and (min-width: 768px) {
  .wrapLeft .fix__ttl {
    color: #DDFF22;
    font-size: min(4.39239vw, 6rem);
    font-weight: 700;
    line-height: 1.45;
  }
}

/* 右側 */
@media screen and (min-width: 768px) {
  .wrapRight {
    padding-top: min(8.05271vw, 110px);
    width: min(65.59298vw, 896px);
  }
}

/* メインテキスト */
.f_aboutTxt {
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .f_aboutTxt {
    font-size: min(1.17131vw, 16px);
  }
}
.f_aboutTxt p + p {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .f_aboutTxt p + p {
    margin-top: min(1.17131vw, 16px);
  }
}
.f_aboutTxt a {
  text-decoration: underline;
}

/* フォーム */
.form {
  background-color: #E0E0E0;
  color: #2C2C2C;
  margin-top: 40px;
  padding: 24px 24px 50px;
}
@media screen and (min-width: 768px) {
  .form {
    margin-top: min(2.92826vw, 40px);
    padding: min(1.75696vw, 24px) min(1.75696vw, 24px) min(3.66033vw, 50px);
  }
}

/* f_index（トップページ）
------------------------------------------------------------ */
/* お問合せ種別のチェックボックス */
.f_inquiryCheck__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
}
.f_inquiryCheck__inner > div:nth-of-type(4), .f_inquiryCheck__inner > div:nth-of-type(5) {
  width: 100%;
}
.f_inquiryCheck__inner textarea {
  min-height: 70px;
}

/*  */
.privacy__txt {
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .privacy__txt {
    font-size: min(1.17131vw, 16px);
  }
}

.f_privacy__checkWrap {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .f_privacy__checkWrap {
    margin-top: min(1.17131vw, 16px);
  }
}
.f_privacy__checkWrap label {
  font-size: 1.6rem !important;
  line-height: 1.8125 !important;
}
@media screen and (min-width: 768px) {
  .f_privacy__checkWrap label {
    font-size: min(1.17131vw, 16px) !important;
  }
}

/* f_confirm（確認ページ）
------------------------------------------------------------ */
/* リスト */
.f_confirm .f_formList {
  display: block;
}
.f_confirm .f_formList > div {
  border-bottom: 1px solid #363E4E;
  padding: 16px 0 15px;
}
@media screen and (min-width: 768px) {
  .f_confirm .f_formList > div {
    display: flex;
    padding: min(1.17131vw, 16px) 0 min(1.0981vw, 15px);
  }
}
.f_confirm .f_formList dt {
  font-weight: 700;
  margin: 0 0 8px;
}
@media screen and (min-width: 768px) {
  .f_confirm .f_formList dt {
    flex-shrink: 0;
    margin: 0;
    padding-right: 1em;
    width: 30%;
  }
}
.f_confirm .f_formList dd {
  word-break: break-all;
}

/* f_thanks（受付終了ページ）
------------------------------------------------------------ */
@media screen and (min-width: 768px) {
  .f_thanks .wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.f_thanks .main {
  height: 100%;
  width: 100%;
}
.f_thanks .footer {
  margin-top: auto;
  width: 100%;
}
.f_thanks .btn_backTop {
  font-size: 1.6rem;
  line-height: 1.8125;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .f_thanks .btn_backTop {
    font-size: min(1.17131vw, 16px);
  }
}

/* reCAPTCHA位置設定
------------------------------------------------------------ */
.grecaptcha-badge {
  z-index: 500 !important;
}
@media screen and (min-width: 768px) {
  .grecaptcha-badge {
    bottom: 135px !important;
  }
}/*# sourceMappingURL=contact.css.map */