@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/*-------------------------
▼ 共通
- intro_sec

▼ 入力画面
- form_sec
- contact_item
- 必須/任意アイコン
- 記入例
- 郵便番号で自動入力 ※都道府県プルダウン
- チェックボックス
- セレクトボックス
- inquiry_box
- 個人情報の取り扱いについて
- 確認/戻るボタン

▼ エラー画面
- ajax_form_txt_error

ラジオボタン

tel_contact
-------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*=======================================
　ボタン
=======================================*/
.coso_sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .coso_sec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
  }
}
.coso_sec .mail-button {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.coso_sec .mail-button a::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 42px;
  background-image: url("../img/contact/icon_mail.svg");
  background-size: 42px 42px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 1.9rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .coso_sec .mail-button a::before {
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
    margin-right: 0;
  }
}
.coso_sec .tel-button {
  background: url("../img/contact/bnr_tel_bg.jpg") center/cover no-repeat;
  color: white;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.coso_sec .tel-button a::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 42px;
  background-image: url("../img/contact/icon_tel.svg");
  background-size: 42px 42px;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 1.9rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .coso_sec .tel-button a::before {
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
    margin-right: 0;
  }
}
.coso_sec .mail-button,
.coso_sec .tel-button {
  max-width: 326px;
  height: 100px;
  width: 100%;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .coso_sec .mail-button,
  .coso_sec .tel-button {
    max-width: 100%;
    height: 80px;
  }
}
.coso_sec .mail-button .img,
.coso_sec .tel-button .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.coso_sec .mail-button .img img,
.coso_sec .tel-button .img img {
  width: 100%;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .coso_sec .mail-button:hover .img,
  .coso_sec .tel-button:hover .img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .coso_sec .mail-button:hover .img,
  .coso_sec .tel-button:hover .img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.coso_sec .mail-button a,
.coso_sec .tel-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 22px 0 42px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .coso_sec .mail-button a,
  .coso_sec .tel-button a {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
    height: 80px;
    padding: 0 32px;
  }
}
.coso_sec .mail-button a::after,
.coso_sec .tel-button a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 5px;
  background-image: url("../img/contact/arrow02.svg");
  background-size: 10px 5px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  padding-left: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .coso_sec .mail-button a::after,
  .coso_sec .tel-button a::after {
    margin-left: 0;
  }
}
.coso_sec .mail-button .text-block,
.coso_sec .tel-button .text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .coso_sec .mail-button .text-block,
  .coso_sec .tel-button .text-block {
    font-size: 14px;
  }
  .coso_sec .mail-button .text-block br,
  .coso_sec .tel-button .text-block br {
    display: none;
  }
}

/*=======================================
　contact_ttl
=======================================*/
.contact_ttl {
  font-size: 25px;
  letter-spacing: 0.1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  padding-left: 38px;
  position: relative;
  /* アイコン無し */
}
@media screen and (max-width: 768px) {
  .contact_ttl {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.contact_ttl::before {
  content: "";
  background-size: cover !important;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 32px;
  height: 32px;
}
.contact_ttl.icon_none {
  padding-left: 0;
}
.contact_ttl.icon_none::before {
  display: none;
}

/*=======================================
　intro_sec
=======================================*/
.intro_sec {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .intro_sec {
    margin-bottom: 60px;
  }
}
.intro_sec .inner > p {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .intro_sec .inner > p {
    margin-bottom: 25px;
  }
}
.intro_sec .inner .contact_box {
  max-width: 625px;
  background: #F3F3F3;
  padding: 46.5px 0 42px;
  text-align: center;
  margin: 0 auto;
  /* FAXあり */
}
@media screen and (max-width: 768px) {
  .intro_sec .inner .contact_box {
    padding: 30px 5%;
  }
}
.intro_sec .inner .contact_box .contact_ttl {
  margin-bottom: 13.5px;
}
@media screen and (max-width: 768px) {
  .intro_sec .inner .contact_box .contact_ttl {
    margin-bottom: 10px;
  }
}
.intro_sec .inner .contact_box .contact_ttl::before {
  background: url("../img/common/icon_tel.svg") no-repeat;
}
.intro_sec .inner .contact_box .tel {
  font-size: 30px;
  margin-bottom: 31.5px;
  font-family: "Noto Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .intro_sec .inner .contact_box .tel {
    font-size: 22px;
  }
}
.intro_sec .inner .contact_box .notes_area {
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.intro_sec .inner .contact_box .notes_area .txt_large {
  margin-bottom: 9.5px;
}
.intro_sec .inner .contact_box .notes_area .txt_small {
  font-size: 12px;
}
.intro_sec .inner .contact_box.fax_act .tel {
  margin-bottom: 0;
}
.intro_sec .inner .contact_box.fax_act .fax {
  font-size: 19px;
  margin-bottom: 24.5px;
}
@media screen and (max-width: 768px) {
  .intro_sec .inner .contact_box.fax_act .fax {
    font-size: 13px;
  }
}

/* 入力フォーム
--------------------------------------------------------- */
/* labelタグ 指マークトリ */
label {
  cursor: auto !important;
  width: 100%;
}

/*=======================================
　form_sec
=======================================*/
#form_sec {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #form_sec {
    margin-bottom: 40px;
  }
}
#form_sec .inner > p {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #form_sec .inner > p {
    margin-bottom: 35px;
  }
}
#form_sec .inner > .contact_ttl {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #form_sec .inner > .contact_ttl {
    margin-bottom: 40px;
  }
}
#form_sec .inner > .contact_ttl::before {
  background: url("../img/common/icon_mail.svg") no-repeat;
}
#form_sec .inner .contact_item > p {
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #form_sec .inner .contact_item > p {
    margin-bottom: 35px;
  }
}
#form_sec .inner .cmn_btn01 {
  margin: 0 auto;
}
#form_sec .inner .cmn_btn01 span {
  text-align: center;
}

/*=======================================
　contact_item
=======================================*/
.contact_item {
  display: table;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  margin-bottom: 80px;
}
@media screen and (max-width: 640px) {
  .contact_item {
    margin-bottom: 40px;
  }
}
.contact_item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 768px) {
  .contact_item dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.contact_item dl:not(:last-child) {
  margin-bottom: 30px;
}
.contact_item dl dt {
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* justify-content: space-between; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 21px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact_item dl dt {
    width: 100%;
    line-height: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
    height: auto;
  }
}
.contact_item dl dt label {
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 21px;
}
@media screen and (max-width: 768px) {
  .contact_item dl dt label {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
}
.contact_item dl dd {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .contact_item dl dd {
    gap: 10px;
  }
}
.contact_item dl dd .h-adr {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .contact_item dl dd .h-adr {
    width: 100%;
    gap: 10px;
  }
}
.contact_item dl dd .h-adr > span {
  position: relative;
  top: 1em;
}
.contact_item dl dd text-checker-element {
  display: none;
}
.contact_item dl.address_postal, .contact_item dl:last-child {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact_item input[type=text],
.contact_item input[type=email],
.contact_item input[type=tel],
.contact_item input[type=date],
.contact_item input[type=time],
.contact_item textarea,
.contact_item select {
  background-color: #F9F9F9;
  width: 100%;
  height: 54px;
  padding: 0 21.5px;
}
@media screen and (max-width: 768px) {
  .contact_item input[type=text],
  .contact_item input[type=email],
  .contact_item input[type=tel],
  .contact_item input[type=date],
  .contact_item input[type=time],
  .contact_item textarea,
  .contact_item select {
    height: 45px;
    padding: 0 1em;
  }
}
.contact_item textarea {
  background-color: #F9F9F9;
  resize: vertical;
  height: 200px;
  padding-top: 27px;
  padding-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .contact_item textarea {
    height: 150px;
    padding: 1em;
  }
}

/*=======================================
　必須/任意アイコン
=======================================*/
.mk_icon {
  font-size: 12px;
  color: #fff;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  width: 51px;
  height: 21px;
  padding-bottom: 1px;
}
@media screen and (max-width: 768px) {
  .mk_icon {
    font-size: 11px;
    width: 40px;
    padding-top: 0;
  }
}
.mk_icon.must_mk {
  background: #EC6D3C;
}
.mk_icon.opt_mk {
  background: #858585;
}

/*=======================================
　記入例
=======================================*/
::-webkit-input-placeholder {
  color: #A2A2A2;
}
::-moz-placeholder {
  color: #A2A2A2;
}
:-ms-input-placeholder {
  color: #A2A2A2;
}
::-ms-input-placeholder {
  color: #A2A2A2;
}
::placeholder {
  color: #A2A2A2;
}

/*=======================================
　セレクトボックス
=======================================*/
label:has(.selectbox) {
  position: relative;
}
label:has(.selectbox)::after {
  content: "";
  position: absolute;
  background: url("../img/contact/arrow01.svg") no-repeat;
  background-size: cover;
  -webkit-filter: brightness(0) saturate(100%) invert(11%) sepia(1%) saturate(1007%) hue-rotate(332deg) brightness(96%) contrast(76%);
          filter: brightness(0) saturate(100%) invert(11%) sepia(1%) saturate(1007%) hue-rotate(332deg) brightness(96%) contrast(76%);
  top: 22px;
  right: 27px;
  width: 11px;
  height: 10px;
}
@media screen and (max-width: 768px) {
  label:has(.selectbox)::after {
    top: 18px;
    right: 1em;
  }
}

/*=======================================
　チェックボックス
=======================================*/
input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
}

.checkbox fieldset ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 2em;
}
.checkbox .checkbox01 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer !important;
  display: inline-block;
  padding-left: 30px;
  position: relative;
  width: auto;
}
.checkbox .checkbox01::before {
  background: #fff;
  border: 1px solid #979797;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  left: 0;
  position: absolute;
  top: 0.2em;
}
.checkbox .checkbox01::after {
  border-right: 2px solid #181a2e;
  border-bottom: 2px solid #181a2e;
  content: "";
  display: block;
  width: 7px;
  height: 11px;
  left: 5px;
  opacity: 0;
  position: absolute;
  top: 0.2em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*=======================================
　郵便番号で自動入力 ※都道府県プルダウン
=======================================*/
.address_postal .p-postal-code {
  width: 189px !important;
}
.address_postal .selectbox {
  width: 189px;
}
.address_postal label:has(.selectbox)::after {
  left: 162px;
  right: auto;
}

/*=======================================
　inquiry_box
=======================================*/
.inquiry_box {
  border: 1px solid #979797;
  padding: 46px 50px;
}
@media screen and (max-width: 768px) {
  .inquiry_box {
    padding: 15px 15px;
  }
}

/*======================================
file
======================================*/
.file dt {
  gap: 21px;
}
@media screen and (max-width: 768px) {
  .file dt {
    margin-bottom: 18px;
  }
}
.file dt .en {
  display: block;
  color: var(--main_orange);
  font-size: 10px;
  margin-top: 3px;
}
.file dd .file-wrap {
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28.5px;
  position: relative;
}
.file dd .file-wrap:has(.ajax_form_txt_error) {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .file dd .file-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
  .file dd .file-wrap:nth-of-type(3) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .file dd .file-wrap > span {
    font-size: 13px;
  }
}
.file dd .file-wrap .file_box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  position: relative;
  background-color: #F9F9F9;
}
@media screen and (max-width: 768px) {
  .file dd .file-wrap .file_box {
    width: 100%;
    padding: 10px;
  }
}
.file dd .file-wrap .file_box input[type=file] {
  display: none;
}
.file dd .file-wrap .file_box .file_label {
  color: #FFF;
  background: var(--main_orange);
  font-size: 16px;
  width: 165px;
  height: 32px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.3em;
  border-radius: 3px;
  cursor: pointer !important;
}
@media screen and (max-width: 768px) {
  .file dd .file-wrap .file_box .file_label {
    font-size: 13px;
    width: 115px;
    padding: 0 0.5em;
  }
}
.file dd .file-wrap .file_box .file_label .wpcf7-not-valid-tip {
  position: absolute;
  width: 192px;
  bottom: -35px;
  left: -10px;
}
@media screen and (max-width: 768px) {
  .file dd .file-wrap .file_box .file_label .wpcf7-not-valid-tip {
    bottom: -30px;
    left: -7px;
  }
}
.file dd .file-wrap .file_box .js-upload-filename-1,
.file dd .file-wrap .file_box .js-upload-filename-2,
.file dd .file-wrap .file_box .js-upload-filename-3 {
  padding: 0 60px 0 16px;
  color: #8b8b8b;
  cursor: auto !important;
  font-size: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .file dd .file-wrap .file_box .js-upload-filename-1,
  .file dd .file-wrap .file_box .js-upload-filename-2,
  .file dd .file-wrap .file_box .js-upload-filename-3 {
    font-size: 13px;
    padding-right: 55px;
  }
}
.file dd .file-wrap .file_box .file_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  width: 100%;
  height: 100%;
  border: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.file dd .file-wrap .file_box .file_item .file_label {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1em;
  height: 30px;
  color: #fff;
  background: #333;
  cursor: pointer !important;
}
.file dd .file-wrap .file_box .file_item .file_none {
  color: #8B8B8B;
  word-break: break-all;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 1.5em;
}
.file dd .file-wrap .file_box .file_item [type=file] {
  display: none !important;
}
.file dd .file-wrap .file_box + p {
  font-size: 12px;
}
.file dd p {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.file dd p a {
  text-decoration: underline;
}
.file .file-delete {
  color: #fff;
  background-color: #8B8B8B;
  padding: 4px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  cursor: pointer;
  visibility: hidden;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .file .file-delete {
    font-size: 13px;
  }
}
.file .ajax_form_txt_error {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: absolute;
  bottom: -30px;
  left: 0;
  margin-top: 0;
  white-space: nowrap;
  cursor: auto;
}
@media screen and (max-width: 768px) {
  .file .ajax_form_txt_error {
    font-size: 13px;
    left: 0;
    bottom: -20px;
  }
}

/*=======================================
　個人情報の取り扱いについて
=======================================*/
/* 共通 */
.privacy_area {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .privacy_area {
    margin-bottom: 60px;
  }
}
.privacy_area .checkbox_privacy {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3em;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .privacy_area .checkbox_privacy {
    font-size: 14px;
  }
}
.privacy_area .checkbox_privacy .checkbox {
  display: none;
}
.privacy_area .checkbox_privacy .checkmark {
  position: absolute;
  top: 0.2em;
  left: 0;
  height: 16px;
  width: 16px;
  background: #fff;
  border: 1px solid #979797;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.privacy_area .checkbox_privacy .checkmark:after {
  border-right: 2px solid #181a2e;
  border-bottom: 2px solid #181a2e;
  content: "";
  display: block;
  width: 7px;
  height: 11px;
  left: 4px;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.privacy_area .checkbox_privacy input:checked + .checkmark::after {
  opacity: 1;
}

/* 埋め込み */
.privacy_area.embed > p {
  font-size: 18px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .privacy_area.embed > p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.privacy_area.embed .inquiry_box {
  border: 1px solid #C5C5C5;
  padding: 29px 35px;
  height: 350px;
  overflow-y: scroll;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .privacy_area.embed .inquiry_box {
    padding: 15px;
    margin-bottom: 25px;
    height: 200px;
  }
}
.privacy_area.embed .inquiry_box .privacy_txt .ttl {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .privacy_area.embed .inquiry_box .privacy_txt .ttl {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.privacy_area.embed .inquiry_box .privacy_txt li {
  margin-bottom: 20px;
}
.privacy_area.embed .inquiry_box .privacy_txt li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .privacy_area.embed .inquiry_box .privacy_txt li {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

/*=======================================
　確認/戻るボタン
=======================================*/
.submit_btnarea {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 60px;
}
@media screen and (max-width: 640px) {
  .submit_btnarea {
    margin-bottom: 60px;
    -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: 20px;
  }
}
.submit_btnarea.mab200 {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .submit_btnarea.mab200 {
    margin-bottom: 50px;
  }
}
.submit_btnarea.mab120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .submit_btnarea.mab120 {
    margin-bottom: 60px;
  }
}
.submit_btnarea.mab80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .submit_btnarea.mab80 {
    margin-bottom: 40px;
  }
}
.submit_btnarea .btn {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  border-radius: 50vw;
  position: relative;
  background-position: 1% 50% !important;
  background-size: 200% auto !important;
  background: #434343;
  max-width: 242px;
  width: 100%;
  height: 60px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .submit_btnarea .btn {
    width: 100%;
    max-width: 335px;
    height: 73px;
  }
}
.submit_btnarea .btn::after {
  content: "";
  background: url("../img/common/arrow01.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 21px;
  width: 18px;
  height: 10px;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(19deg) brightness(103%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(19deg) brightness(103%) contrast(101%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .submit_btnarea .btn::after {
    right: 20px;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .submit_btnarea .btn:hover {
    opacity: 1;
    background: #fff;
    color: var(--main_orange);
  }
  .submit_btnarea .btn:hover::after {
    -webkit-filter: brightness(0) saturate(100%) invert(65%) sepia(71%) saturate(3545%) hue-rotate(334deg) brightness(94%) contrast(97%);
            filter: brightness(0) saturate(100%) invert(65%) sepia(71%) saturate(3545%) hue-rotate(334deg) brightness(94%) contrast(97%);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .submit_btnarea .btn:hover {
    opacity: 1;
    background: #fff;
    color: var(--main_orange);
  }
  .submit_btnarea .btn:hover::after {
    -webkit-filter: brightness(0) saturate(100%) invert(65%) sepia(71%) saturate(3545%) hue-rotate(334deg) brightness(94%) contrast(97%);
            filter: brightness(0) saturate(100%) invert(65%) sepia(71%) saturate(3545%) hue-rotate(334deg) brightness(94%) contrast(97%);
  }
}
.submit_btnarea .btn.return::after {
  right: auto;
  left: 22px;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  top: 42%;
}
.submit_btnarea .btn.return .form_btn {
  background: #8A8A8A;
  border: 1px solid #8A8A8A;
  text-align: center;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .submit_btnarea .btn.return .form_btn:hover {
    opacity: 1;
    background: #fff;
    color: #8A8A8A;
  }
  .submit_btnarea .btn.return .form_btn:hover::after {
    fill: #8A8A8A;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .submit_btnarea .btn.return .form_btn:hover {
    opacity: 1;
    background: #fff;
    color: #8A8A8A;
  }
  .submit_btnarea .btn.return .form_btn:hover::after {
    fill: #8A8A8A;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .submit_btnarea .btn.return:hover::after {
    -webkit-filter: grayscale(100%) brightness(85%) contrast(90%);
            filter: grayscale(100%) brightness(85%) contrast(90%);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .submit_btnarea .btn.return:hover::after {
    -webkit-filter: grayscale(100%) brightness(85%) contrast(90%);
            filter: grayscale(100%) brightness(85%) contrast(90%);
  }
}
.submit_btnarea .form_btn {
  -webkit-appearance: none; /*iOS Safariのデフォルトスタイルをクリア*/
  border-style: none; /*PCブラウザのデフォルトのボーダーをトル*/
  background: none;
  background: var(--main_orange);
  border: 1px solid var(--main_orange);
  letter-spacing: 0.08em;
  line-height: 19px;
  color: #fff;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding-left: 25px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.submit_btnarea .form_btn.tc {
  text-align: center;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .submit_btnarea .form_btn {
    text-align: center;
    padding-left: 0;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .submit_btnarea .form_btn:hover {
    opacity: 1;
    background: #fff;
    color: var(--main_orange);
  }
  .submit_btnarea .form_btn:hover::after {
    -webkit-filter: brightness(0) saturate(100%) invert(65%) sepia(71%) saturate(3545%) hue-rotate(334deg) brightness(94%) contrast(97%);
            filter: brightness(0) saturate(100%) invert(65%) sepia(71%) saturate(3545%) hue-rotate(334deg) brightness(94%) contrast(97%);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .submit_btnarea .form_btn:hover {
    opacity: 1;
    background: #fff;
    color: var(--main_orange);
  }
  .submit_btnarea .form_btn:hover::after {
    -webkit-filter: brightness(0) saturate(100%) invert(65%) sepia(71%) saturate(3545%) hue-rotate(334deg) brightness(94%) contrast(97%);
            filter: brightness(0) saturate(100%) invert(65%) sepia(71%) saturate(3545%) hue-rotate(334deg) brightness(94%) contrast(97%);
  }
}

/* 確認画面
--------------------------------------------------------- */
.submit_btnarea .btn.return {
  background: #8A8A8A;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .submit_btnarea .btn:hover {
    opacity: 0.8;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .submit_btnarea .btn:hover {
    opacity: 0.8;
  }
}

/* 完了画面
--------------------------------------------------------- */
main > .cmn_btn {
  margin: 0 auto;
}

/*=======================================
　ラジオボタン
=======================================*/
input[type=radio] {
  display: none;
}
input[type=radio]:checked + .radio01::after {
  opacity: 1;
}

.radio_btn fieldset ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3em 3em;
  border: none;
}
@media screen and (max-width: 768px) {
  .radio_btn fieldset ul {
    gap: 10px 1.5em;
  }
}
.radio_btn .radio01 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer !important;
  display: inline-block;
  padding-left: 30px;
  position: relative;
  width: auto;
}
.radio_btn .radio01::before {
  background: #fff;
  border: 1px solid #979797;
  border-radius: 50%;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 0em;
  left: 0;
}
.radio_btn .radio01::after {
  background: #EC6D3C;
  border-radius: 50%;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  opacity: 0;
  position: absolute;
  top: 0.2em;
  left: 3px;
}

/*=======================================
　tel_contact
=======================================*/
#tel_contact {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  #tel_contact {
    margin-bottom: 100px;
  }
}
#tel_contact .mab_47 {
  margin-bottom: 47.5px;
}
#tel_contact .mab_50 {
  margin-bottom: 50px;
}
#tel_contact .cmn_btn01 {
  margin: 0 auto;
}

/*=======================================
　form_txt_note
=======================================*/
.form_txt_note {
  font-size: 12px;
  line-height: 1.667;
}
@media screen and (max-width: 768px) {
  .form_txt_note {
    font-size: 11px;
  }
}

/*=======================================
　contact-card
=======================================*/
.contact-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ddd;
  background-color: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .contact-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}
.contact-card a {
  display: none;
}
@media (max-width: 768px) {
  .contact-card a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.contact-card .contact-image {
  max-width: 280px;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .contact-card .contact-image {
    max-width: 120px;
  }
}
@media screen and (max-width: 640px) {
  .contact-card .contact-image {
    max-width: 100px;
  }
}
.contact-card .contact-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.contact-card .contact-info {
  max-width: 328px;
  width: 100%;
  margin: 0 auto;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 0;
}
@media (max-width: 768px) {
  .contact-card .contact-info {
    padding: 0 2rem;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: inherit;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-column-gap: 1em;
       -moz-column-gap: 1em;
            column-gap: 1em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 640px) {
  .contact-card .contact-info {
    padding: 0 1em;
  }
}
.contact-card .contact-info .section-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 13px;
}
@media (max-width: 768px) {
  .contact-card .contact-info .section-title {
    font-size: 11px;
    margin-bottom: 4px;
    width: 100%;
  }
}
.contact-card .contact-info .section-title .icon {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .contact-card .contact-info .section-title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.contact-card .contact-info .phone-number {
  font-family: "Noto Sans", sans-serif;
  font-size: 44px;
  font-weight: bold;
  color: #222;
  letter-spacing: 0.09em;
  margin-bottom: 15px;
  text-align: left;
}
@media (max-width: 768px) {
  .contact-card .contact-info .phone-number {
    font-size: 25px;
    text-align: left;
    margin-bottom: 5px;
  }
}
.contact-card .contact-info .schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
}
@media (max-width: 768px) {
  .contact-card .contact-info .schedule {
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 640px) {
  .contact-card .contact-info .schedule {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.contact-card .contact-info .schedule .label {
  background-color: #f15b2a;
  color: #fff;
  padding: 0.3em 1.2em;
  border-radius: 2px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .contact-card .contact-info .schedule .label {
    width: 100%;
    text-align: center;
    padding-left: 2em;
    padding-right: 2em;
  }
}
.contact-card .contact-info .schedule .time {
  font-family: "Noto Sans", sans-serif;
  background-color: #fff4ee;
  color: #444;
  padding: 0.3em 1em;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .contact-card .contact-info .schedule .time {
    width: 100%;
    text-align: center;
    padding-left: 2em;
    padding-right: 2em;
  }
}

input.checkbox + .checkmark + span {
  opacity: 0.5;
}

input.checkbox:not(:disabled) + .checkmark + span {
  opacity: 1;
}

/*=======================================
　131.お問い合わせ扉 contact/index.html
=======================================*/
.contact_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  gap: 44px 50px;
}
@media screen and (max-width: 768px) {
  .contact_list {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    gap: 35px;
  }
}
.contact_list .contact_link {
  max-width: 425px;
  padding-top: 42px;
  padding-bottom: 40px;
  border-radius: 2px;
  background: #FFF;
  text-align: center;
  -webkit-filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.16));
  will-change: filter;
}
@media screen and (max-width: 768px) {
  .contact_list .contact_link {
    width: 100%;
    padding-top: 29px;
    padding-bottom: 28px;
  }
}
.contact_list .contact_link p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6818;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .contact_list .contact_link p {
    font-size: 18px;
  }
}
.contact_list .contact_link .cmn_btn01 {
  width: min(75.76%, 322px);
  text-align: center;
  margin-inline: auto;
}

/* エラー画面
--------------------------------------------------------- */
.ajax_form_txt_error {
  color: #FF0000;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .ajax_form_txt_error {
    font-size: 14px;
  }
}/*# sourceMappingURL=contact.css.map */