/* ======================================================================
 p-contact
====================================================================== */
/**
 * error message
 */
.mw_wp_form .error {
  display: block;
  color: #EB4B45;
  font-size: 14px;
}

/**
 * error message of akismet
 */
.mw_wp_form .akismet_error {
  display: block;
}

/**
 * vertical style of radio and checkbox
 */
.mw_wp_form .vertical-item {
  display: block;
}

.mw_wp_form .vertical-item + .vertical-item {
  margin-top: 5px;
}

/**
 * horizontal style of radio and checkbox
 */
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 10px;
}

/**
 * radio and checkbox
 */
.mwform-checkbox-field label,
.mwform-radio-field label {
  margin-bottom: 0;
  font-weight: normal;
}

/**
 * datepicker
 */
.mw_wp_form .ui-datepicker .ui-datepicker-title select.ui-datepicker-month,
.mw_wp_form .ui-datepicker .ui-datepicker-title select.ui-datepicker-year {
  margin: 0 5px;
  width: 40%;
}

/**
 * deprecated message
 */
.mw-wp-form-deprecated-message {
  margin: 0 0 5px;
  padding: 5px;
  border: #b40404 solid 2px;
  border-radius: 5px;
  background: #f5a9a9;
  font-size: 10px;
  line-height: 1.6;
}

/**
 * file
 */
.mw_wp_form input[type=file] {
  display: inline-block;
}

/**
 * file delete button
 */
.mwform-file-delete {
  visibility: hidden;
  cursor: pointer;
}

/**
 * tel and zip
 */
.mwform-tel-field input[type=text],
.mwform-zip-field input[type=text] {
  display: inline-block;
  width: auto;
}

.mw_wp_form .error {
  display: inline-block !important;
}

.p-contact {
  background: #fff;
  border-radius: 60px;
  padding: 60px 80px 80px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 2rem 1.5rem 4rem;
    border-radius: 2rem;
  }
}
.p-contact .mw_wp_form {
  margin: 0 auto;
  width: 100%;
  max-width: 840px;
}
.p-contact .wpcf7 .wpcf7-response-output {
  display: none !important;
}
.p-contact .wpcf7 form {
  margin: 0 auto;
  width: 100%;
  max-width: 840px;
}
.p-contact .wpcf7 form .wpcf7-form-control-wrap {
  display: block;
}
.p-contact .wpcf7 form .form__item-body .mwform-textarea,
.p-contact .wpcf7 form .form__item-body textarea {
  width: 100%;
}
.p-contact .wpcf7 form .form__item--file .cf7-file-native {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.p-contact .wpcf7 form .form__item--file .wpcf7-form-control-wrap {
  display: none;
}
.p-contact .wpcf7 form .cf7-file-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.p-contact .wpcf7 form .cf7-file-description {
  text-align: center;
}
.p-contact .wpcf7 form .cf7-file-description-main {
  color: #123762;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contact .wpcf7 form .cf7-file-description-main {
    text-align: left;
    margin-bottom: 5px;
  }
}
.p-contact .wpcf7 form .cf7-file-description-sub {
  color: #7E93A8;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contact .wpcf7 form .cf7-file-description-sub {
    text-align: left;
  }
}
.p-contact .wpcf7 form .cf7-file-note {
  font-size: 14px;
  color: #4A5568;
}
.p-contact .wpcf7 form .cf7-file-drop-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.p-contact .wpcf7 form .cf7-file-slot {
  position: relative;
}
.p-contact .wpcf7 form .cf7-file-dropzone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 94px;
  border: 1px dashed #9AB2C8;
  border-radius: 16px;
  background: #EAF2F8;
  padding: 24px 20px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.p-contact .wpcf7 form .cf7-file-dropzone::before {
  content: none;
}
.p-contact .wpcf7 form .cf7-file-dropzone.is-over {
  background: #DDECF8;
  border-color: #4B87B7;
}
@media screen and (max-width: 767px) {
  .p-contact .wpcf7 form .cf7-file-dropzone {
    flex-direction: column;
    min-height: 10rem;
    padding: 2rem 1.2rem;
  }
  .p-contact .wpcf7 form .cf7-file-dropzone::before {
    content: "";
    display: block;
    width: 39px;
    height: 31px;
    background: url("../img/p_contact/drop.svg") no-repeat center/100%;
  }
}
.p-contact .wpcf7 form .cf7-file-drop-text {
  font-size: 14px;
  color: #123762;
}
@media screen and (max-width: 767px) {
  .p-contact .wpcf7 form .cf7-file-drop-text {
    display: none;
  }
}
.p-contact .wpcf7 form .cf7-file-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 118px;
  height: 34px;
  padding: 0;
  border: 1px solid #123762;
  border-radius: 5px;
  background: #fff;
  color: #123762;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact .wpcf7 form .cf7-file-select {
    width: 118px;
    height: 34px;
    font-size: 14px;
    padding: 0;
  }
}
.p-contact .wpcf7 form .cf7-file-slot-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border: 0;
  padding: 1px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  line-height: 0;
  background: url("../img/p_contact/close_box.svg") no-repeat center/contain;
  background-origin: content-box;
  color: transparent;
  font-size: 0;
  cursor: pointer;
}
.p-contact .wpcf7 form .cf7-file-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px dashed #9AB2C8;
  border-radius: 16px;
  background: #EAF2F8;
  padding: 12px 14px;
}
.p-contact .wpcf7 form .cf7-file-thumb {
  width: 102px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.p-contact .wpcf7 form .cf7-file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-contact .wpcf7 form .cf7-file-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}
.p-contact .wpcf7 form .cf7-file-name {
  color: #123762;
  font-size: 16px;
  line-height: 1.4;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-contact .wpcf7 form .cf7-file-name {
    font-size: 16px;
  }
}
.p-contact .wpcf7 form .cf7-file-size {
  color: #7E93A8;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-contact .wpcf7 form .cf7-file-size {
    font-size: 16px;
  }
}
.p-contact .wpcf7 form .cf7-file-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border: 0;
  padding: 1px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  line-height: 0;
  background: url("../img/p_contact/remove_img.svg") no-repeat center/contain;
  background-origin: content-box;
  color: transparent;
  font-size: 0;
  cursor: pointer;
}
.p-contact .wpcf7 form .cf7-file-add-wrap {
  display: flex;
  justify-content: center;
}
.p-contact .wpcf7 form .form__file-add {
  display: inline-flex;
  width: auto;
  min-height: 32px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #123762;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}
.p-contact .wpcf7 form .form__file-add::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  padding: 1px;
  box-sizing: border-box;
  background: url("../img/common/plus_nv.svg") no-repeat center/contain;
  background-origin: content-box;
  margin-left: 10px;
}
.p-contact .wpcf7 form .form__file-add.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  .p-contact .wpcf7 form .form__file-add {
    font-size: 16px;
  }
  .p-contact .wpcf7 form .form__file-add::after {
    width: 28px;
    height: 28px;
  }
}
.p-contact .wpcf7 form .wpcf7-not-valid-tip {
  display: block;
  color: #EB4B45;
  font-size: 14px;
  margin-top: 5px;
  line-height: 1.4;
}
.p-contact .wpcf7 form .wpcf7-not-valid {
  border-color: #EB4B45 !important;
}
.p-contact .wpcf7 form .form__item.is-error .mwform-text,
.p-contact .wpcf7 form .form__item.is-error .mwform-textarea,
.p-contact .wpcf7 form .form__item.is-error input[type=text],
.p-contact .wpcf7 form .form__item.is-error input[type=email],
.p-contact .wpcf7 form .form__item.is-error input[type=tel],
.p-contact .wpcf7 form .form__item.is-error input[type=number],
.p-contact .wpcf7 form .form__item.is-error textarea {
  border-color: #EB4B45 !important;
}
.p-contact .wpcf7 form .wpcf7-response-output {
  margin: 12px 0 0;
  font-size: 14px;
}
.p-contact .form__item {
  display: flex;
  justify-content: space-between;
  background-image: radial-gradient(circle, #B7D7F7 1.75px, transparent 1.75px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 12px 3px;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-contact .form__item {
    display: block;
    padding: 2rem 0;
  }
}
.p-contact .form__item.is-error .mwform-text,
.p-contact .form__item.is-error .mwform-textarea {
  border-color: #EB4B45;
}
.p-contact .form__item-top .form__item-head {
  padding-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-contact .form__item-top .form__item-head {
    padding-top: 0;
  }
}
.p-contact .form__item-top .form__required {
  top: 3px;
}
.p-contact .form__item-head {
  position: relative;
  width: 27%;
  padding-top: 18px;
}
.p-contact .form__item-head:has(.form__label-min) {
  padding-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-contact .form__item-head:has(.form__label-min) {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-contact .form__item-head {
    width: auto;
    padding-top: 0;
  }
}
.p-contact .form__item-body {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-contact .form__item-body {
    width: auto;
  }
}
.p-contact .form__item-body .error {
  order: 2;
  margin-top: 5px;
}
.p-contact .form__item .mwform-text,
.p-contact .form__item .mwform-textarea {
  background: #F1F9FF;
  border: 1px solid #8697AC;
  border-radius: 10px;
  padding: 15px;
}
.p-contact .form__item .mwform-text {
  width: 350px;
  max-width: 100%;
  height: 56px;
}
.p-contact .form__item .mwform-text[name=name], .p-contact .form__item .mwform-text[name=kana], .p-contact .form__item .mwform-text[name=city], .p-contact .form__item .mwform-text[name=address] {
  width: 350px;
}
.p-contact .form__item .mwform-text[name=zipcode] {
  width: 256px;
}
.p-contact .form__item .mwform-text[name=tel] {
  width: 279px;
}
.p-contact .form__item .mwform-text[name=prefecture] {
  width: 125px;
}
.p-contact .form__item .mwform-text[name=tsubo], .p-contact .form__item .mwform-text[name=age] {
  width: 80px;
  -moz-appearance: textfield;
  appearance: textfield;
}
.p-contact .form__item .mwform-text[name=tsubo]::-webkit-outer-spin-button, .p-contact .form__item .mwform-text[name=tsubo]::-webkit-inner-spin-button, .p-contact .form__item .mwform-text[name=age]::-webkit-outer-spin-button, .p-contact .form__item .mwform-text[name=age]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.p-contact .form__item .mwform-text[name=email], .p-contact .form__item .mwform-text[name=building], .p-contact .form__item .mwform-text[name=roof_type], .p-contact .form__item .mwform-text[name=exterior_type] {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact .form__item .mwform-text {
    width: 100%;
  }
}
.p-contact .form__item .mwform-textarea {
  height: 160px;
  line-height: 1.6;
}
.p-contact .form__item input::placeholder,
.p-contact .form__item textarea::placeholder {
  color: #8697AC;
}
.p-contact .form__item .mwform-radio-field--circle {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  padding-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-contact .form__item .mwform-radio-field--circle {
    padding-top: 0;
  }
}
.p-contact .form__item .mwform-radio-field--circle .wpcf7-list-item {
  margin: 0;
  width: 33.333%;
}
.p-contact .form__item .mwform-radio-field--circle .wpcf7-list-item-label {
  font-size: 16px;
}
.p-contact .form__item .mwform-radio-field--circle label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.p-contact .form__item .mwform-radio-field--circle input[type=radio],
.p-contact .form__item .mwform-radio-field--circle input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  background: url("../img/common/radio_off.svg") no-repeat center/contain;
  margin: 0;
  flex: 0 0 24px;
}
.p-contact .form__item .mwform-radio-field--circle input[type=radio]:checked,
.p-contact .form__item .mwform-radio-field--circle input[type=checkbox]:checked {
  background-image: url("../img/common/radio_on.svg");
}
@media screen and (max-width: 767px) {
  .p-contact .form__item .mwform-radio-field--circle {
    gap: 10px 0;
  }
  .p-contact .form__item .mwform-radio-field--circle .wpcf7-list-item {
    width: 100%;
  }
}
.p-contact .form__item .mwform-checkbox-field--worktypes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  padding-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-contact .form__item .mwform-checkbox-field--worktypes {
    padding-top: 0;
  }
}
.p-contact .form__item .mwform-checkbox-field--worktypes .wpcf7-list-item {
  margin: 0;
  width: 33.333%;
}
.p-contact .form__item .mwform-checkbox-field--worktypes .wpcf7-list-item-label {
  font-size: 16px;
}
.p-contact .form__item .mwform-checkbox-field--worktypes label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.p-contact .form__item .mwform-checkbox-field--worktypes input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  margin: 0;
  flex: 0 0 24px;
  background: url("../img/common/check_off_2.svg") no-repeat center/contain;
}
.p-contact .form__item .mwform-checkbox-field--worktypes input[type=checkbox]:checked {
  background-image: url("../img/common/check_on_2.svg");
}
@media screen and (max-width: 767px) {
  .p-contact .form__item .mwform-checkbox-field--worktypes .wpcf7-list-item {
    width: 100%;
  }
}
.p-contact .form__item .form__required,
.p-contact .form__item .form__optional {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  right: 0;
  width: 49px;
  height: 28px;
  border-radius: 3px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-contact .form__item .form__required,
  .p-contact .form__item .form__optional {
    position: static;
    width: 4rem;
    height: 2.3rem;
    font-size: 1.4rem;
    margin-left: 1rem;
  }
}
.p-contact .form__item .form__required {
  background: #EB4B45;
}
.p-contact .form__item .form__optional {
  background: #1383F3;
}
.p-contact .form__item--confirm {
  padding-top: 22px;
  padding-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .p-contact .form__item--confirm {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.p-contact .form__item--confirm .form__item-head {
  padding-top: 0;
}
.p-contact .form__item--confirm .form__item-body {
  justify-content: center;
}
.p-contact .form__item--confirm .form__item-body p {
  margin: 0;
}
.p-contact .form__label {
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
}
.p-contact .form__label-min {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  order: 3;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-contact .form__label-min {
    display: inline;
    flex: 0 1 auto;
    width: auto;
    order: initial;
    font-size: 14px;
    margin-left: 0.2em;
  }
}
@media screen and (max-width: 767px) {
  .p-contact .form__label {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.p-contact .form__agreement {
  margin: 30px auto 0;
  max-width: 840px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact .form__agreement {
    margin: 4rem auto 0;
  }
}
.p-contact .form__agreement-body {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.p-contact .form__agreement-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #123762;
  font-size: 18px;
  white-space: nowrap;
}
.p-contact .form__agreement-label .wpcf7-list-item-label {
  white-space: nowrap;
}
.p-contact .form__agreement-label a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1383F3;
  text-decoration: underline;
}
.p-contact .form__agreement-label a::after {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: url("../img/ico/external_link.svg") no-repeat center/contain;
}
.p-contact .form__agreement-label input[type=checkbox] {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .p-contact .form__agreement-label {
    font-size: 1.6rem;
  }
}
.p-contact .form__agreement .wpcf7-not-valid-tip {
  color: #EB4B45;
  font-size: 14px;
  line-height: 1.4;
  margin-left: 28px;
}
.p-contact .form__submit {
  margin-top: 26px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 26px;
}
.p-contact .form__submit p {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 26px;
}
.p-contact .form__submit br {
  display: none;
}
.p-contact .form__submit input[type=hidden] {
  display: none;
}
.p-contact .form__submit .wpcf7-submit,
.p-contact .form__submit .form__submit-btn,
.p-contact .form__submit .wpcf7-previous {
  position: relative;
  transition: all 0.3s;
  border: 0;
  border-radius: 100px;
  height: 56px;
  padding: 0 60px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}
.p-contact .form__submit .wpcf7-submit,
.p-contact .form__submit .form__submit-btn {
  width: 300px;
  background-color: #0A274A;
  box-shadow: 0 4px 0 #000B17;
  padding-right: 74px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='16' viewBox='0 0 13 16'%3E%3Cpath fill='%23ffffff' d='M0 0l13 8L0 16z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 22px) center;
  background-size: 12px 15px;
}
@media screen and (min-width: 768px) {
  .p-contact .form__submit .wpcf7-submit:hover,
  .p-contact .form__submit .form__submit-btn:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
.p-contact .form__submit .wpcf7-previous {
  width: 240px;
  white-space: nowrap;
  background: #8697AC;
  box-shadow: 0 4px 0 #5C6B7D;
  padding-left: 74px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='16' viewBox='0 0 13 16'%3E%3Cpath fill='%23ffffff' d='M13 0L0 8l13 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 22px center;
  background-size: 12px 15px;
}
@media screen and (min-width: 768px) {
  .p-contact .form__submit .wpcf7-previous:hover {
    box-shadow: none;
    transform: translateY(4px);
  }
}
@media screen and (max-width: 767px) {
  .p-contact .form__submit {
    flex-direction: column;
    gap: 1.2rem;
  }
  .p-contact .form__submit p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .p-contact .form__submit .wpcf7-submit,
  .p-contact .form__submit .form__submit-btn {
    order: 1;
    width: 315px;
    max-width: 100%;
    height: 60px;
    font-size: 1.6rem;
  }
  .p-contact .form__submit .wpcf7-previous {
    order: 2;
    width: 240px;
    height: 60px;
    margin-top: 20px;
    font-size: 1.6rem;
  }
}
.p-contact .form__submit .wpcf7-spinner {
  display: none;
}
.p-contact .form__privacy {
  margin: 48px auto 0;
  max-width: 1020px;
  background: #EAF2F8;
  border-radius: 32px;
  padding: 40px 44px;
  color: #0A274A;
}
@media screen and (max-width: 767px) {
  .p-contact .form__privacy {
    margin-top: 4rem;
    border-radius: 2rem;
    padding: 2rem 1.5rem;
  }
}
.p-contact .form__privacy-ttl {
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
}
.p-contact .form__privacy-ttl::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 50%;
  background: #67AAFB;
  box-shadow: 10px 0 0 #95D4FF, 20px 0 0 #67AAFB, 30px 0 0 #95D4FF, 40px 0 0 #67AAFB, 50px 0 0 #95D4FF, 60px 0 0 #67AAFB, 70px 0 0 #95D4FF;
  transform: translateX(-35px);
}
@media screen and (max-width: 767px) {
  .p-contact .form__privacy-ttl {
    font-size: 2.4rem;
  }
}
.p-contact .form__privacy-subttl {
  font-weight: 700;
  font-size: 16px;
  margin: 28px 0 10px;
}
@media screen and (max-width: 767px) {
  .p-contact .form__privacy-subttl {
    font-size: 1.6rem;
  }
}
.p-contact .form__privacy-txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-contact .form__privacy-txt {
    font-size: 1.6rem;
  }
}
.p-contact__tel {
  position: relative;
  box-sizing: border-box;
  margin: 0 auto 60px;
  background: #FFFDD8;
  width: 100%;
  max-width: 680px;
  height: 197px;
  border-radius: 40px;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .p-contact__tel {
    border-radius: 2rem;
    padding: 1rem;
    height: 24rem;
    margin-bottom: 4rem;
  }
}
.p-contact__tel::before, .p-contact__tel::after {
  content: "";
  display: block;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  z-index: 1;
}
.p-contact__tel::before {
  background-image: url(../img/common/img_boots.svg);
  width: 75px;
  height: 56px;
  left: 10px;
  bottom: 30px;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .p-contact__tel::before {
    display: none;
  }
}
.p-contact__tel::after {
  background-image: url(../img/p_contact/staff.svg);
  width: 70px;
  height: 124px;
  bottom: 0;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .p-contact__tel::after {
    right: -1rem;
    width: 4.7rem;
    height: 8.3rem;
  }
}
.p-contact__tel-box {
  position: relative;
  border: 0;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.p-contact__tel-box .p-contact__tel-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-contact__tel-box .p-contact__tel-border rect {
  fill: none;
  stroke: #FFF64C;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 7 8;
  stroke-dashoffset: 1;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-box {
    border-radius: 1rem;
  }
}
.p-contact__tel-ttl {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-ttl {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
}
.p-contact__tel-num {
  pointer-events: none;
  font-family: "Gantari", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.p-contact__tel-num:link, .p-contact__tel-num:active, .p-contact__tel-num:visited {
  color: #1383F3;
  cursor: pointer;
}
.p-contact__tel-num:hover {
  color: #1383F3;
}
.p-contact__tel-num {
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-num {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    width: 24.5rem;
    height: 6rem;
    border-radius: 6rem;
  }
  .p-contact__tel-num:link, .p-contact__tel-num:active, .p-contact__tel-num:visited {
    color: #fff;
    cursor: pointer;
  }
  .p-contact__tel-num:hover {
    color: #fff;
  }
  .p-contact__tel-num {
    background-color: #1383F3;
    box-shadow: 0 4px 0 0 #0053A6;
  }
}
.p-contact__tel-num-ico {
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-image: url(../img/ico/tel_bl.svg);
  background-size: 38px;
  padding-left: 48px;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-num-ico {
    background-image: url(../img/ico/tel_wh.svg);
    background-size: 2rem;
    padding-left: 2.5rem;
  }
}
.p-contact__tel-txt {
  font-weight: 700;
  color: #1383F3;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-txt {
    font-size: 1.6rem;
  }
}
.p-contact__step {
  display: flex;
  justify-content: center;
  gap: 0 107px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-contact__step {
    gap: inherit;
    justify-content: space-between;
  }
}
.p-contact__step-box {
  position: relative;
  font-size: 0;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 116px;
  height: 130px;
}
@media screen and (max-width: 767px) {
  .p-contact__step-box {
    width: 25%;
    height: 10rem;
  }
}
.p-contact__step-box::before {
  content: "";
  display: block;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 40px;
  left: -77px;
  width: 47px;
  height: 16px;
  background-image: url(../img/p_contact/water_gy.svg);
}
@media screen and (max-width: 767px) {
  .p-contact__step-box::before {
    width: 2.8rem;
    height: 1.2rem;
    left: -3.4rem;
    top: 30%;
  }
}
.p-contact__step-box-01 {
  background-image: url(../img/p_contact/step01.svg);
}
.p-contact__step-box-01.p-contact__step-active {
  background-image: url(../img/p_contact/step01_active.svg);
}
.p-contact__step-box-01::before {
  display: none;
}
.p-contact__step-box-02 {
  background-image: url(../img/p_contact/step02.svg);
}
.p-contact__step-box-02.p-contact__step-active {
  background-image: url(../img/p_contact/step02_active.svg);
}
.p-contact__step-box-03 {
  background-image: url(../img/p_contact/step03.svg);
}
.p-contact__step-box-03.p-contact__step-active {
  background-image: url(../img/p_contact/step03_active.svg);
}
.p-contact__step-active::before {
  background-image: url(../img/p_contact/water_bl.svg);
}/*# sourceMappingURL=p-contact.css.map */