@charset "UTF-8";
/* ===================================================================
CSS information

file name  : contact.css
author     : Abilive
style info : お問い合わせ
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
/* 冪乗計算(乗数は整数のみ)
 *
 * $base: 冪乗される数
 * $exp : 冪乗する回数
 *
 * @return: $baseの$exp乗
 *
 * 例: $base=2, $exp=3 => @return=8
 */
/* 階乗計算
 *
 * $val: 階数
 *
 * @return: $valの階乗
 *
 * 例: $val=5 => @return=120
 */
/* 正弦(sin)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: sin($angle)
 *
 * 例: $angle=30, $degrees=true => @return=0.5
 */
/* 余弦(cos)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: cos($angle)
 *
 * 例: $angle=60, $degrees=true => @return=0.5
 */
/* 正接(tan)計算
 *
 * $angle:   角度(弧度法)
 * $degrees: $angleが度数かどうか
 *
 * @return: tan($angle)
 *
 * 例: $angle=45, $degrees=true => @return=1
 */
.con_contact .box_contents {
  margin-inline: auto;
}
@media screen and (min-width: 64.0625em) {
  .con_contact .box_contents {
    max-width: calc(1280 / 16 * 1em);
    width: 90%;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_contact .box_contents {
    width: 90%;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_contact .box_contents {
    width: 90%;
  }
}

.box_form label:has(input[type=checkbox]) input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

label {
  gap: 0.5rem;
}

.con_contact .box_page_header {
  position: relative;
}
.con_contact .box_page_header:before {
  position: absolute;
  content: "Contact";
}
@media screen and (min-width: 120.0625em) {
  .con_contact .box_page_header:before {
    font-size: 15rem;
  }
}
@media screen and (min-width: 90.0625em) and (max-width: 120em) {
  .con_contact .box_page_header:before {
    font-size: calc(15rem + (1vw - 0.900625rem) * (0));
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 90em) {
  .con_contact .box_page_header:before {
    font-size: calc(12.5rem + (1vw - 0.640625rem) * (9.6385542169));
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_contact .box_page_header:before {
    font-size: calc(6.25rem + (1vw - 0.48rem) * (39.0625));
  }
}
@media screen and (min-width: 23.4375em) and (max-width: 47.9375em) {
  .con_contact .box_page_header:before {
    font-size: calc(3.125rem + (1vw - 0.234375rem) * (12.7551020408));
  }
}
@media screen and (max-width: 23.375em) {
  .con_contact .box_page_header:before {
    font-size: calc(2.6666666667rem + (1vw - 0.2rem) * (13.5802469136));
  }
}
.con_contact .box_page_header:before {
  color: #23263b;
}
@media screen and (min-width: 64.0625em) {
  .con_contact .box_page_header:before {
    bottom: 50px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_contact .box_page_header:before {
    bottom: 90px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_contact .box_page_header:before {
    bottom: 45px;
  }
}
.con_contact .box_page_header:before {
  right: 0;
  font-family: "sofia-pro", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.con_contact .box_contents_inner .box_contact_info {
  margin-bottom: 4em;
  padding: 2em 1.5em;
  border: 4px solid #292e49;
}
.con_contact .box_contents_inner .box_contact_info .txt_large {
  margin-bottom: 0.75em;
  text-align: center;
}
.con_contact .box_contents_inner .box_contact_info p {
  text-align: center;
}
.con_contact .box_contents_inner .box_contact_info .txt_time {
  margin-block: 1em;
  text-align: center;
}
.con_contact .box_contents_inner .box_contact_info .txt_time strong {
  word-break: keep-all;
  overflow-wrap: break-word;
}
.con_contact .box_contents_inner .box_contact_info .box_notes {
  margin-bottom: 2em;
  margin-inline: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.con_contact .box_contents_inner .box_contact_info .btn_basic {
  text-align: center;
}
.con_contact .box_contents_inner .box_contact_guide {
  margin-bottom: 4em;
}
.con_contact .box_contents_inner .box_contact_guide .title_medium {
  margin-bottom: 3em;
}
.con_contact .box_contents_inner .box_contact_guide .box_notice {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  row-gap: 3em;
}
.con_contact .box_contents_inner .box_contact_guide .box_notice li {
  display: contents;
}
.con_contact .box_contents_inner .box_contact_guide .box_notice li div {
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.con_contact .box_contents_inner .box_contact_guide .box_notice li .txt_basic {
  margin-bottom: 1em;
}
.con_contact .box_contents_inner .box_contact_guide .box_notice li .txt_small {
  margin-bottom: 0.5em;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.con_contact .box_contents_inner .box_contact_guide .box_notice li .box_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  margin-block: 1em;
}
.con_contact .box_contents_inner .box_contact_guide .box_notice li .box_links .btn_basic {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.con_contact .box_contents_inner .box_contact_guide .box_notice li .box_tel {
  margin-block: 1em;
  padding: 1.5em;
  border: 3px double #292e49;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.con_contact .box_contents_inner .box_contact_guide .box_notice li section + section {
  margin-top: 1.5em;
}
.con_contact .box_contents_inner-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
}
@media screen and (min-width: 64.0625em) {
  .con_contact .box_contents_inner-flow {
    margin-top: 80px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_contact .box_contents_inner-flow {
    margin-top: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_contact .box_contents_inner-flow {
    margin-top: 25px;
  }
}
.con_contact .box_contents_inner-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-align: center;
  width: 33.3333333333%;
  height: 5.2rem;
  font-weight: 600;
  color: #afafaf;
}
.con_contact .box_contents_inner-flow__item:first-child {
  background-color: #efefef;
}
.con_contact .box_contents_inner-flow__item:nth-child(2) {
  background-color: #e7e7e7;
}
.con_contact .box_contents_inner-flow__item:nth-child(3) {
  background-color: #dfdfdf;
}
.con_contact .box_contents_inner-flow__item.is-current {
  color: white;
  background-color: #292e49;
}
.con_contact .box_contents_inner-flow__item-label {
  display: block;
  margin-bottom: 0.3em;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.6;
  text-transform: uppercase;
}
@media screen and (min-width: 64.0625em) {
  .con_contact .box_contents_inner-body {
    margin-top: 80px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_contact .box_contents_inner-body {
    margin-top: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_contact .box_contents_inner-body {
    margin-top: 25px;
  }
}
.con_contact .box_contents_inner-body .box_form .note table th span {
  color: #cc0033;
}
.con_contact .box_contents_inner-body .box_form .note {
  margin-bottom: 1rem;
}
.con_contact .box_contents_inner-body .box_form .note span {
  color: #cc0033;
}
@media screen and (min-width: 64.0625em) {
  .con_contact .box_contents_inner-body .box_form table th {
    padding: 2rem 1rem;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_contact .box_contents_inner-body .box_form table th {
    padding: 1rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_contact .box_contents_inner-body .box_form table th {
    padding: 0.5rem;
  }
}
.con_contact .box_contents_inner-body .box_form table th span {
  color: #cc0033;
}
@media screen and (min-width: 48em) {
  .con_contact .box_contents_inner-body .box_form table td {
    padding: 1rem !important;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_contact .box_contents_inner-body .box_form table td {
    padding: 0.5rem 0 !important;
  }
}
.con_contact .box_contents_inner-body .box_form table td .sub_tb tr th {
  border: none;
}
.con_contact .box_contents_inner-body .box_form table td .sub_tb tr td {
  border: none;
}
.con_contact .box_contents_inner-body .box_form table td .sub_tb tr td.no_border {
  display: none;
}
.con_contact .box_contents_inner-body .box_form table td fieldset {
  border: 0;
  margin-bottom: 1.5em;
}
.con_contact .box_contents_inner-body .box_form table td fieldset:first-child {
  margin-top: 1rem;
}
.con_contact .box_contents_inner-body .box_form table td fieldset legend {
  margin-bottom: 0.5em;
}
.con_contact .box_contents_inner-body .box_form table td fieldset p:has(small) {
  margin-top: 1em;
  margin-left: 1em;
}
.con_contact .box_contents_inner-body .box_form table td fieldset p:has(small) small {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.con_contact .box_contents_inner-body .box_form .box_btn01 {
  text-align: center;
}
@media screen and (min-width: 64.0625em) {
  .con_contact .box_contents_inner-body .box_form .box_btn01 {
    margin-top: 80px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .con_contact .box_contents_inner-body .box_form .box_btn01 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_contact .box_contents_inner-body .box_form .box_btn01 {
    margin-top: 25px;
  }
}
.con_contact .box_contents_inner-body .box_form .box_btn01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 48em) {
  .con_contact .box_contents_inner-body .box_form .box_btn01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 47.9375em) {
  .con_contact .box_contents_inner-body .box_form .box_btn01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.con_contact .box_contents_inner-body .box_form .box_btn01 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

/*----------------------------------------
	input select textarea btn設定
----------------------------------------*/
.box_form input[type=text],
.box_form input[type=tel],
.box_form input[type=email],
.box_form select,
.box_form textarea {
  width: 100%;
  height: auto;
  padding: 1rem 2rem;
  border-radius: 1px;
  border: none;
  background: #f8f8f8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box_form select {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/2em #f8f8f8;
}
.box_form label:has(input[type=checkbox]) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.box_form label:has(input[type=checkbox]) input[type=checkbox] {
  position: absolute;
  left: 0;
  z-index: 1;
  margin: 0;
  width: 1em;
  aspect-ratio: 1;
  opacity: 0;
}
.box_form label:has(input[type=checkbox])::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  position: relative;
  z-index: 0;
  margin-right: 0.25em;
  width: 1em;
  aspect-ratio: 1;
  background: #fff;
  border: 0.1em solid #141934;
  border-radius: 0.125em;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  content: "";
}
.box_form label:has(input[type=checkbox])::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-left: calc(1em / 2);
  width: 0.7em;
  height: 0.4em;
  border-left: 0.15em solid transparent;
  border-bottom: 0.15em solid transparent;
  -webkit-transform: translate(-50%, -60%) rotate(-50deg);
          transform: translate(-50%, -60%) rotate(-50deg);
  -webkit-transition: inherit;
  transition: inherit;
  content: "";
}
.box_form label:has(input[type=checkbox]):has(input[type=checkbox]:checked)::before {
  border-color: #141934;
  background: #141934;
}
.box_form label:has(input[type=checkbox]):has(input[type=checkbox]:checked)::after {
  border-left: 0.15em solid #fff;
  border-bottom: 0.15em solid #fff;
}
.box_form label:has(input[type=checkbox]):has(input[type=checkbox]:disabled) {
  cursor: not-allowed;
}
.box_form label:has(input[type=checkbox]):has(input[type=checkbox]:disabled)::before {
  border-color: #ddd;
  background: #ddd;
}
.box_form label:has(input[type=checkbox]):has(input[type=checkbox]:disabled)::after {
  border-left: 0.15em solid transparent;
  border-bottom: 0.15em solid transparent;
}
.box_form label:has(input[type=checkbox]):has(input[type=checkbox]:disabled) .wpcf7-list-item-label {
  color: #a5a5a5;
  cursor: default;
}
.box_form label:has(input[type=checkbox]):has(input[type=checkbox]:focus)::before {
  opacity: 1;
}

/*----------------------------------------
	confirm-page
----------------------------------------*/
.p-confirm tbody tr td {
  padding: 0.5rem 0 !important;
  width: 100%;
  height: auto;
  padding: 1rem 2rem;
  border-radius: 1px;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #d7dde0;
  border-bottom: 1px solid #d7dde0;
}
@media screen and (max-width: 47.9375em) {
  .p-confirm tbody tr td {
    text-align: center;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-confirm tbody tr td table.sub_tb {
    width: 100%;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-confirm tbody tr td table.sub_tb td {
    text-align: center;
  }
}

/*----------------------------------------
	thanks-page
----------------------------------------*/
.p-thanks_box_form {
  text-align: center;
}
@media screen and (min-width: 64.0625em) {
  .p-thanks_box_form p {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  .p-thanks_box_form p {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-thanks_box_form p {
    margin-bottom: 25px;
  }
}