@charset "UTF-8";
/* contact */
.contactFv {
  padding: 90px 0;
}
.contactFv_inner {
  max-width: 1076px;
  width: 100%;
  margin-inline: auto;
}
.contactFv_title {
  text-align: center;
  font-size: calc(45 / 16 * 1rem);
  font-family: "Kosugi Maru", sans-serif;
  letter-spacing: 0.03em;
  margin-bottom: 60px;
  line-height: 1.4;
}
.contactFv_cards {
  display: flex;
  background-color: transparent;
}
.contactFv_card {
  width: 50%;
}
.contactFv_card .kosugimaru {
  font-size: 2.5rem;
  letter-spacing: 0.06em;
}
.contactFv_card .contact-item__ttl .has-arrow-icon {
  font-size: 16px;
  letter-spacing: 0.06em;
}
.contactFv_card .contact-item__ttl {
  padding: 11px 0;
}
.contactFv_card .contact-item-tel-wrapper {
  padding: 33px 0;
}
.contactFv_card .contact-item-tel-inner {
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.contactFv_card .contact-item-tel__img {
  padding: 0;
  width: 74px;
}
.contactFv_card .contact-item-tel__link {
  width: 320px;
  padding: 0;
}
.contactFv_card .contact-item-tel__link--txt {
  font-size: 14px;
  letter-spacing: 0.03em;
}
.contactFv_card .contact-item-btn-wrapper .btn--line span {
  padding-left: 33px;
}
@media screen and (max-width: 767px) {
  .contactFv_title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .contactFv_cards {
    flex-direction: column;
    gap: 15px;
  }
  .contactFv_card {
    width: 100%;
    padding: 0 20px;
  }
  .contactFv_card .contact-item__ttl {
    padding: 19px 0;
  }
  .contactFv_card .contact-item-tel__img {
    width: 59px;
  }
  .contactFv_card .contact-item-tel__link {
    width: 224px;
  }
  .contactFv_card .kosugimaru {
    font-size: 28px;
  }
  .contactFv_card .contact-item-tel__link--txt {
    font-size: 12px;
  }
  .contactFv_card .contact-item-tel-wrapper {
    padding: 30px 0;
  }
}

/* form */
.form {
  padding: 100px 0;
}
.form_inner {
  max-width: 1006px;
  margin-inline: auto;
  padding-inline: 40px;
}
.form_steps {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}
.form_steps::before {
  position: absolute;
  content: "…";
  font-size: 20px;
  letter-spacing: 0.03em;
  color: #3d56a8;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form_step {
  border: 1px solid #3d56a8;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #3d56a8;
}
.form_step--current {
  background-color: #3d56a8;
  color: white;
}
.form_title {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}
.form_text {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.form_body {
  margin-top: 80px;
}
.form_items {
  margin-bottom: 60px;
}
.form_item {
  display: flex;
  margin-bottom: 40px;
}
.form_item dt {
  width: 300px;
  width: calc(300 / 926 * 100%);
  padding-top: 16px;
}
.form_item dt label {
  display: block;
  width: fit-content;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
}
.form_item dt label::after {
  display: inline-block;
  margin-left: 15px;
  vertical-align: top;
  margin-top: 3px;
  content: "必須";
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: white;
  background-color: #3d56a8;
  border-radius: 8px;
  width: 40px;
  text-align: center;
  line-height: calc(17 / 10);
  padding-bottom: 1px;
}
.form_item dd {
  flex: 1;
}
.radio {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 15px;
}
.form_radio input {
  display: none;
}
.form_radio label {
  position: relative;
  padding-left: 31px;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.form_radio label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border: 1px solid #818181;
  border-radius: 50%;
  background-color: white;
}
.form_radio label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #3d56a8;
  display: none;
}
.form_radio input:checked + * + label::after {
  display: block;
}
.form_radio input:checked + label::after {
  display: block;
}
.form_item--text input,
.form_item--text textarea {
  width: 100% !important;
  border: 1px solid #cccccc;
  border-radius: 3px;
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: calc(32 / 18);
  background-color: #f4f4f5 !important;
  font-weight: 400;
  padding: 10px 15px;
}
.form_item--text input::placeholder,
.form_item--text textarea::placeholder {
  color: #818181;
}
.yuubinbango {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.yuubinbango span {
  font-size: 18px;
  letter-spacing: 0.03em;
}
.form_item textarea {
  min-height: 400px;
  display: block;
  resize: none;
}
.form_privacy {
  text-align: center;
  margin-bottom: 40px;
}
.form_privacy label {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.form_privacy label a {
  text-decoration: underline;
}
.form_privacy label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 1px solid #818181;
  border-radius: 50%;
  background-color: white;
}
.form_privacy label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #3d56a8;
  display: none;
}
.form_privacy input:checked + * + label::after {
  display: block;
}
.form_btn {
  display: flex;
  justify-content: center;
}
.form_btn a,
.form_btn button {
  background-color: #3d56a8;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 70px;
  border: none;
  border-radius: 45px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
  .form {
    padding: 60px 0;
  }
  .form_inner {
    padding-inline: 20px;
  }
  .form_steps {
    margin-bottom: 20px;
  }
  .form_step {
    width: 70px;
    height: 70px;
    font-size: 14px;
  }
  .form_text {
    text-align: left;
    font-size: 16px;
  }
  .form_body {
    margin-top: 40px;
  }
  .form_items {
    margin-bottom: 30px;
  }
  .form_item {
    display: block;
    margin-bottom: 30px;
  }
  .form_item dt {
    padding-top: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .form_item dt label {
    font-size: 16px;
  }
  .form_item dt label::after {
    margin-top: 1px;
  }
  .form_radio label {
    padding-left: 26px;
    font-size: 16px;
  }
  .form_radio label::before {
    top: 5px;
  }
  .form_radio label::after {
    top: 9px;
  }
  .radio {
    margin-top: 20px;
    gap: 10px;
  }
  .form_item--text input,
  .form_item--text textarea {
    font-size: 16px;
    line-height: calc(28 / 16);
    padding: 10px 12px;
  }
  .yuubinbango {
    gap: 4px;
    margin-bottom: 10px;
  }
  .yuubinbango span {
    font-size: 16px;
  }
  .form_privacy {
    margin-bottom: 30px;
  }
  .form_privacy label {
    padding-left: 26px;
    font-size: 12px;
  }
  .form_privacy label::before {
    top: 2px;
  }
  .form_privacy label::after {
    top: 6px;
  }
  .form_btn a,
  .form_btn button {
    max-width: 335px;
    width: 100%;
    border-radius: 36px;
    font-size: 16px;
  }
}

/* privacy */
.privacy {
  padding: 100px 0;
}
.privacy_inner {
  max-width: 1006px;
  margin-inline: auto;
  padding: 0 40px;
}
.privacy_title {
  font-size: 30px;
  font-family: "Kosugi Maru", sans-serif;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 60px;
}
.privacy_body {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.privacy_body .item {
  margin-bottom: 1em;
}
.privacy_body h2 {
  font-weight: 500;
  color: #3d56a8;
}
.privacy_body strong {
  font-weight: 500;
  display: block;
}
.privacy_body a {
  display: block;
  transition: all 0.5s;
  word-break: break-all;
}
.privacy_body a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding: 60px 0;
  }
  .privacy_inner {
    padding: 0 20px;
  }
  .privacy_body {
    font-size: 16px;
  }
  .privacy_title {
    margin-bottom: 40px;
    font-size: 24px;
  }
}
