@charset "UTF-8";
/* 変数の定義
--------------------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* テキストパーツ
--------------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #1C1C1C;
}

.blue {
  color: #0069B5;
}

.l-blue {
  color: #0069B5;
}

.gray {
  color: #F8F8F8;
}

/* フォントの定義
--------------------------------------------------*/
html, body, ul, ol, dl, li, dt, dd, p, div, span, img, svg, a, table, tr, th, td, figure {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #1C1C1C;
  font-feature-settings: "halt";
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1C1C1C;
  font-feature-settings: "halt";
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: "halt";
}

html {
  font-size: 62.5%;
}

p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #1C1C1C;
  letter-spacing: 0.06em;
  font-feature-settings: "halt";
}
@media screen and (min-width: 769px) {
  p {
    font-size: 1.6rem;
  }
}

/* Noto Serif JP
--------------------------------------------------*/
.serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* Noto Sans JP
--------------------------------------------------*/
.sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* Noto Sans
--------------------------------------------------*/
.sans_en {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* Sorts Mill Goudy
--------------------------------------------------*/
.mill {
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: normal;
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* お問い合わせページ_共通
--------------------------------------------------*/
#contact__formwrap {
  margin: 80px 0;
}
@media screen and (min-width: 769px) {
  #contact__formwrap {
    margin: 100px 0;
  }
}

@media screen and (min-width: 769px) {
  .inner-wide3-wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}

.contact_index {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 10.256vw;
       column-gap: 10.256vw;
}
@media screen and (min-width: 769px) {
  .contact_index {
    align-items: flex-start;
    flex-direction: column;
    width: calc(85px + 8.214vw);
  }
}

.index_txt {
  position: relative;
  word-break: keep-all;
  color: #959595;
  font-size: clamp(1.3rem, 4.102vw, 1.6rem);
  font-weight: 500;
  padding-left: 18.5px;
  margin-bottom: 26px;
}
@media screen and (min-width: 769px) {
  .index_txt {
    font-size: 1.6rem;
  }
}
.index_txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #959595;
}
.index_txt::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(7px, 2.948vw, 11.5px);
  right: -8.794vw;
  width: 6.256vw;
  height: 1px;
  border-bottom: 1px solid #959595;
}
@media screen and (min-width: 769px) {
  .index_txt::after {
    top: 13px;
    right: auto;
    left: 3.5px;
    width: 1px;
    height: calc(100% + 26px);
    border-left: 1px solid #959595;
  }
}
.index_txt.input {
  color: #0069B5;
}
.index_txt.input::before {
  background-color: #0069B5;
}
.index_txt:last-child::after {
  display: none;
}

.contact_intro_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: 13px;
       column-gap: 13px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .contact_intro_wrap {
    margin-bottom: 0;
  }
}

.contact_intro_txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 180%;
}
@media screen and (min-width: 769px) {
  .contact_intro_txt {
    font-size: 1.6rem;
  }
}

.contact_intro_note {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 180%;
}
@media screen and (min-width: 769px) {
  .contact_intro_note {
    font-size: 1.4rem;
  }
}
.contact_intro_note .red {
  color: #E50000;
}

@media screen and (min-width: 769px) {
  .textarea_wrap {
    width: calc(100% - (85px + 8.214vw));
  }
}

/* お問い合わせ入力画面
--------------------------------------------------*/
.textarea_wrap .form_wrap {
  margin-top: 20px;
}
.textarea_wrap .form_box {
  word-break: break-word;
}
.textarea_wrap .form_ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 180%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}
@media screen and (min-width: 769px) {
  .textarea_wrap .form_ttl {
    font-size: 1.6rem;
  }
}
.textarea_wrap .required {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #E50000;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .textarea_wrap .required {
    font-size: 1.6rem;
  }
}
.textarea_wrap input, .textarea_wrap textarea, .textarea_wrap select {
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding: 15px 3.846vw;
  border: none;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  color: #1C1C1C;
  width: -webkit-fill-available;
  width: -moz-available;
  letter-spacing: 0.06em;
  background-color: white;
  border: 1px solid #E9E9E9;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  .textarea_wrap input, .textarea_wrap textarea, .textarea_wrap select {
    padding: 20px;
    font-size: 1.6rem;
  }
}
.textarea_wrap input:-internal-autofill-selected, .textarea_wrap textarea:-internal-autofill-selected, .textarea_wrap select:-internal-autofill-selected {
  background-color: #F2F7FB !important;
}
.textarea_wrap select::-ms-expand {
  display: none;
}
.textarea_wrap .select_box {
  position: relative;
}
.textarea_wrap .select_box::before, .textarea_wrap .select_box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.846vw;
  transform: translate(0, -50%);
  width: 15px;
  height: 8px;
  background-color: #0069B5;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 0.5L8.00001 8.5L0.5 0.5' stroke='%230069B5'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 0.5L8.00001 8.5L0.5 0.5' stroke='%230069B5'/%3E%3C/svg%3E%0A");
}
@media screen and (min-width: 769px) {
  .textarea_wrap .select_box::before, .textarea_wrap .select_box::after {
    right: 20px;
  }
}
.textarea_wrap .select_box .form-select {
  width: 100%;
  border: none;
  border-radius: 0;
  padding: 15px 3.846vw;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  color: #1C1C1C;
  background-color: white;
  border: 1px solid #E9E9E9;
}
@media screen and (min-width: 769px) {
  .textarea_wrap .select_box .form-select {
    font-size: 1.6rem;
    padding: 20px;
  }
}
.textarea_wrap textarea {
  min-height: 200px;
  resize: vertical;
}
.textarea_wrap .agree_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.textarea_wrap .agree_wrap .form_ttl {
  gap: 0;
}
.textarea_wrap .agree_wrap .form_ttl {
  margin-bottom: 0;
  margin-left: 0;
}
.textarea_wrap .agree_wrap .pribacy_linkwrap {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .textarea_wrap .agree_wrap .pribacy_linkwrap {
    font-size: 1.6rem;
  }
}
.textarea_wrap .agree_wrap .window_link {
  margin-right: 15px;
  color: #0069B5;
  -webkit-text-decoration-color: #0069B5;
          text-decoration-color: #0069B5;
}
.textarea_wrap .agree_wrap .window_link::before {
  background-color: #0069B5;
}
.textarea_wrap .agree_wrap .window_link::after {
  background-color: #0069B5;
}
.textarea_wrap .agree_wrap .window_link:hover {
  opacity: 0.7;
}
.textarea_wrap .agree_wrap .checkbox_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-right: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.textarea_wrap .agree_wrap .mwform-checkbox-field {
  margin-top: 5px;
}
.textarea_wrap .agree_wrap .error {
  word-break: keep-all;
  position: absolute;
  padding-left: 140px;
  padding-top: 50px;
}
.textarea_wrap input:focus {
  outline: none;
  background-color: #F2F7FB;
  border: 1px solid #0069B5;
}
.textarea_wrap ::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  color: #959595;
  letter-spacing: 0.06em;
}
.textarea_wrap ::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  color: #959595;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 769px) {
  .textarea_wrap ::-moz-placeholder {
    font-size: 1.6rem;
  }
  .textarea_wrap ::placeholder {
    font-size: 1.6rem;
  }
}
.textarea_wrap select, .textarea_wrap ::picker(select) {
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
  z-index: 100;
}
.textarea_wrap ::picker-icon, .textarea_wrap ::checkmark {
  display: none;
}
.textarea_wrap select::picker(select) {
  border-color: #E9E9E9;
  border-radius: 14px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
.textarea_wrap option {
  padding: 0 20px 4px;
}
.textarea_wrap .disabled_txt {
  background-color: #445BD2;
  padding-top: 4px;
  color: white;
}
.textarea_wrap input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 1px solid #0069B5;
  padding: 0;
}
.textarea_wrap input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 9px;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.058' height='11.846' viewBox='0 0 16.058 11.846'%3E%3Cpath id='check_24dp_5F6368_FILL0_wght400_GRAD0_opsz24' d='M159.615-709.154,154-714.769l1.4-1.4,4.212,4.211L168.654-721l1.4,1.4Z' transform='translate(-154 721)' fill='%23132f50'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.058' height='11.846' viewBox='0 0 16.058 11.846'%3E%3Cpath id='check_24dp_5F6368_FILL0_wght400_GRAD0_opsz24' d='M159.615-709.154,154-714.769l1.4-1.4,4.212,4.211L168.654-721l1.4,1.4Z' transform='translate(-154 721)' fill='%23132f50'/%3E%3C/svg%3E%0A");
  background-color: white;
}
.textarea_wrap input[type=checkbox]:checked {
  background-color: #0069B5;
}
.textarea_wrap .agree_txt {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  .textarea_wrap .agree_txt {
    font-size: 1.8rem;
  }
}
.textarea_wrap .btn_wrap input:focus {
  background-color: transparent;
}
.textarea_wrap .main_btn {
  margin: 60px auto 0;
  padding-bottom: 0;
}
@media screen and (min-width: 769px) {
  .textarea_wrap .main_btn {
    margin: 80px auto 0;
  }
}
.textarea_wrap .main_btn .send_btn {
  position: relative;
  z-index: 10;
  padding: 0 0 10px;
  font-size: 1.6rem;
  border: none;
  text-align: left;
  color: #0069B5;
  background-color: transparent;
  transition: all 0.4s ease-out;
  cursor: pointer;
}
.textarea_wrap .main_btn .btn_arrow {
  position: absolute;
  bottom: 10px;
  right: 0;
}
.textarea_wrap .error {
  padding-left: 3.846vw;
  margin-top: 5px;
}
@media screen and (min-width: 769px) {
  .textarea_wrap .error {
    padding-left: 20px;
  }
}
.textarea_wrap .form_return {
  display: none;
}

/* sec_CONTACT_確認ページ
--------------------------------------------------*/
.mw_wp_form_preview .input::after {
  border-color: #0069B5;
}
.mw_wp_form_preview .confirmation {
  color: #0069B5;
}
.mw_wp_form_preview .confirmation::before {
  background-color: #0069B5;
}
.mw_wp_form_preview #contact__formwrap .form_wrap {
  padding-bottom: 10px;
  border-bottom: 1px solid #E9E9E9;
}
.mw_wp_form_preview #contact__formwrap .form_wrap.agree_wrap {
  padding-bottom: 0;
  border-bottom: none;
}
.mw_wp_form_preview #contact__formwrap .form_box {
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .mw_wp_form_preview #contact__formwrap .form_box {
    font-size: 1.8rem;
  }
}
.mw_wp_form_preview #contact__formwrap .select_box::before, .mw_wp_form_preview #contact__formwrap .select_box::after {
  display: none;
}
.mw_wp_form_preview #contact__formwrap .textarea_wrap .agree_wrap .checkbox_wrap {
  display: none;
}
@media screen and (min-width: 769px) {
  .mw_wp_form_preview #contact__formwrap .btn_wrap_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.mw_wp_form_preview #contact__formwrap .form_return {
  display: block;
}
.mw_wp_form_preview #contact__formwrap .form_return .main_btn {
  color: #959595;
}
.mw_wp_form_preview #contact__formwrap .form_return .main_btn:hover .btn_arrow::before {
  left: -50%;
}
.mw_wp_form_preview #contact__formwrap .form_return .main_btn:hover .btn_arrow::after {
  left: 50%;
}
.mw_wp_form_preview #contact__formwrap .form_return .back {
  text-align: right;
  color: #959595;
}
.mw_wp_form_preview #contact__formwrap .form_return .btn_arrow {
  left: 0;
  background-color: #959595;
}
.mw_wp_form_preview #contact__formwrap .form_return .btn_arrow::before, .mw_wp_form_preview #contact__formwrap .form_return .btn_arrow::after {
  left: 50%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='19' height='10' viewBox='0 0 19 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.97168 0C4.97168 1.21044 4.38199 2.22547 3.59375 3.02246C2.8031 3.82186 1.84875 4.36317 1.22656 4.61035L0 5.09766L1.24219 5.54492C1.86235 5.76853 2.81329 6.27302 3.60059 7.04004C4.38423 7.80357 4.97168 8.79179 4.97168 10H5.97168C5.97168 8.43914 5.20598 7.209 4.29785 6.32422C4.00873 6.04254 3.70043 5.79399 3.39258 5.5752H18.5488V4.5752H3.30762C3.64609 4.32931 3.98692 4.04687 4.30469 3.72559C5.20827 2.81197 5.97168 1.55868 5.97168 0H4.97168Z' fill='%230069B5'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='19' height='10' viewBox='0 0 19 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.97168 0C4.97168 1.21044 4.38199 2.22547 3.59375 3.02246C2.8031 3.82186 1.84875 4.36317 1.22656 4.61035L0 5.09766L1.24219 5.54492C1.86235 5.76853 2.81329 6.27302 3.60059 7.04004C4.38423 7.80357 4.97168 8.79179 4.97168 10H5.97168C5.97168 8.43914 5.20598 7.209 4.29785 6.32422C4.00873 6.04254 3.70043 5.79399 3.39258 5.5752H18.5488V4.5752H3.30762C3.64609 4.32931 3.98692 4.04687 4.30469 3.72559C5.20827 2.81197 5.97168 1.55868 5.97168 0H4.97168Z' fill='%230069B5'/%3E%3C/svg%3E%0A");
}
.mw_wp_form_preview #contact__formwrap .form_return .btn_arrow::after {
  left: 150%;
}
.mw_wp_form_preview #contact__formwrap .form_send .main_btn {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .mw_wp_form_preview #contact__formwrap .form_send .main_btn {
    margin-top: 80px;
  }
}

/* sec_CONTACT_完了ページ
--------------------------------------------------*/
.mw_wp_form_complete .input::after {
  border-color: #0069B5;
}
.mw_wp_form_complete .confirmation {
  color: #0069B5;
}
.mw_wp_form_complete .confirmation::before {
  background-color: #0069B5;
}
.mw_wp_form_complete .confirmation::after {
  border-color: #0069B5;
}
.mw_wp_form_complete .completion {
  color: #0069B5;
}
.mw_wp_form_complete .completion::before {
  background-color: #0069B5;
}
.mw_wp_form_complete .big_contact_txt {
  font-size: clamp(1.9rem, 3.125vw, 2.4rem);
  font-weight: 600;
  color: #0069B5;
}
@media screen and (min-width: 769px) {
  .mw_wp_form_complete .big_contact_txt {
    font-size: 2.8rem;
  }
}
.mw_wp_form_complete .small_contact_txt {
  margin-top: 30px;
  font-weight: 500;
}
.mw_wp_form_complete .main_btn {
  margin: 60px 0 0;
  padding-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .mw_wp_form_complete .main_btn {
    margin: 80px 0 0;
  }
}

.error_message {
  color: red;
  text-align: center;
  margin-top: 50px;
  font-weight: 900;
  font-size: 3rem;
}
/*# sourceMappingURL=contact.css.map */