@charset "UTF-8";
@media screen and (min-width: 1080px) {
  .is_sp {
    display: none;
  }
  .font-l {
    font-size: 20px;
  }
  .font-m {
    font-size: 18px;
  }
  .font-xs {
    font-size: 14px;
  }
}
@media screen and (max-width: 1080px) {
  .is_pc {
    display: none;
  }
  .font-l {
    font-size: 4.5vw;
  }
  .font-m {
    font-size: 3.8vw;
  }
  .font-xs {
    font-size: 3vw;
  }
}
/*共通設定*/
body {
  background: #fff;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
}
body ul {
  list-style: none !important;
  padding-left: 0 !important;
}
body a:hover,
body button:hover {
  filter: brightness(1.1);
  opacity: 0.9;
  transition: all 0.2s ease;
}

/*sectionのタイトル*/
.sec_ttl {
  color: #1d428b;
  font-weight: bold;
  text-align: center;
}
.sec_ttl::after {
  content: "";
  display: block;
  background-color: #1d428b;
}
@media screen and (min-width: 1080px) {
  .sec_ttl {
    font-size: 40px;
  }
  .sec_ttl::after {
    width: 60px;
    height: 3px;
    margin: 5px auto 0 auto;
  }
}
@media screen and (max-width: 1080px) {
  .sec_ttl {
    font-size: 5.8vw;
  }
  .sec_ttl::after {
    width: 16vw;
    height: 2px;
    margin: 1.5vw auto 0 auto;
  }
}

body {
  background-color: #dfeef7;
}

/*ヘッダー*/
header {
  position: sticky;
  top: 0;
  background-color: #fff;
  width: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  z-index: 100;
}
header .header_inr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1em 0;
  margin-inline: auto;
}
header .header_inr .header_info {
  display: flex;
}
header .header_inr .logo img {
  height: auto;
}
header .logo a {
  display: inline-block;
}
@media screen and (min-width: 1080px) {
  header {
    height: 70px;
  }
  header .header_inr {
    max-width: 1200px;
    height: 70px;
  }
  header .logo a {
    width: 90px;
    display: block;
  }
}
@media screen and (max-width: 1080px) {
  header {
    height: 13vw;
  }
  header .header_inr {
    width: 100vw;
    height: 13vw;
    margin: auto;
    align-items: center;
  }
  header .logo a {
    display: block;
  }
  header .logo a img {
    width: 15vw;
  }
}

/*フォーム*/
.sec_form {
  text-align: center;
}
.sec_form .sec_ttl + .font-m {
  margin-top: 2.5em;
  color: #333333;
}
.sec_form .form_note {
  text-align: left;
  margin-top: 4em;
  color: #1d428b;
}
.sec_form form {
  text-align: left;
}
.sec_form form .item_ttl {
  color: #333333;
}
.sec_form form .item_ttl.is_must::after {
  content: "※";
  color: #1d428b;
}
.sec_form form .item_field {
  width: 100%;
  background-color: #f3f3f3;
  border: none;
  border-radius: 3px;
}
.sec_form form .item_field.is_select,
.sec_form form .item_field.is_comment {
  color: #333333;
}
.sec_form form .agreeCheck {
  text-align: center;
}
.sec_form form .agreeCheck a {
  color: #1d428b;
}
.sec_form form button {
  color: #fff;
  background-color: #1d428b;
  font-weight: bold;
  border: none;
  display: block;
  margin: 0 auto;
}
.sec_form form button:disabled {
  background-color: #ccc;
  pointer-events: none;
}
.sec_form .thanks_button a {
  color: #fff;
  background-color: #1d428b;
  font-weight: bold;
  border: none;
  display: block;
  margin: 0 auto;
  text-decoration: none;
}
@media screen and (min-width: 1080px) {
  .sec_form {
    margin: 100px auto 0;
    width: 700px;
  }
  .sec_form .form_note {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .sec_form form {
    font-size: 18px;
  }
  .sec_form form .item_field {
    margin: 5px auto 35px auto;
    height: 45px;
    line-height: 45px;
    padding: 0 1em;
  }
  .sec_form form .item_field.is_comment {
    height: 90px;
  }
  .sec_form form .agreeCheck {
    margin: 40px auto;
  }
  .sec_form form .agreeCheck p {
    font-size: 14px;
    margin-top: 20px;
  }
  .sec_form form button {
    font-size: 15px;
    padding: 10px 100px;
    border-radius: 30px;
    cursor: pointer;
  }
  .sec_form .thanks_button a {
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    margin: 70px auto 130px auto;
    width: 330px;
    height: 50px;
    line-height: 50px;
  }
}
@media screen and (max-width: 1080px) {
  .sec_form {
    margin: 15vw auto 0;
    width: 90vw;
  }
  .sec_form .form_note {
    font-size: 3vw;
    margin-bottom: 5vw;
  }
  .sec_form form {
    font-size: 3.8vw;
  }
  .sec_form form .item_field {
    margin: 1vw auto 7vw auto;
    height: 12vw;
    line-height: 12vw;
    padding: 0 1em;
  }
  .sec_form form .item_field.is_comment {
    height: 24vw;
  }
  .sec_form form .agreeCheck {
    margin: 5vw auto 7vw;
  }
  .sec_form form .agreeCheck p {
    font-size: 3.4vw;
    margin-top: 1.5em;
  }
  .sec_form form button {
    font-size: 4vw;
    padding: 2vw 20vw;
    border-radius: 30px;
    cursor: pointer;
  }
  .sec_form .thanks_button a {
    font-size: 4vw;
    width: 70vw;
    height: 10vw;
    line-height: 10vw;
    margin: 10vw auto 20vw auto;
    border-radius: 5vw;
  }
}

.sec_form form .item_field.checkbox,
.sec_form form .item_field.radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
  height: auto;
  background: none;
  padding: 0;
}
.sec_form form .item_field.checkbox label,
.sec_form form .item_field.radio label {
  line-height: 1.8;
}

#answered_case {
  margin-bottom: 0.5em;
}
#answered_case + .notice {
  background: rgb(187, 13, 45);
  color: white;
  padding: 0.5em 1em;
  border-radius: 0.25em;
  margin-bottom: 35px;
}
@media screen and (max-width: 1080px) {
  #answered_case + .notice {
    margin-bottom: 7vw;
  }
}

/*その他のサービス*/
.sec_other .sec_ttl::after {
  margin-top: 10px;
}
.sec_other .other_wrp {
  background-color: #e0eef7;
}
.sec_other .other_wrp .other_txt {
  color: #4ba3c6;
}
@media screen and (min-width: 1080px) {
  .sec_other {
    margin-top: 60px;
  }
  .sec_other .sec_ttl {
    font-size: 28px;
  }
  .sec_other .other_wrp .other_cnt {
    box-shadow: 0.5vw 0.5vw 0 0 #4ba3c6;
  }
}
@media screen and (max-width: 1080px) {
  .sec_other {
    margin-top: 8vw;
  }
  .sec_other .sec_ttl {
    font-size: 5vw;
  }
  .sec_other .other_wrp .other_cnt {
    box-shadow: 2vw 2vw 0 0 #4ba3c6;
  }
}

/*フッター*/
footer {
  background-image: linear-gradient(310deg, rgb(29, 66, 139), rgb(7, 111, 170));
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 100;
}
footer nav ul {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
footer nav ul a {
  color: #fff;
  text-decoration: none;
}
footer .link_ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .link_ul li:not(:last-of-type)::after {
  content: "|";
  display: inline-block;
  padding: 0 20px;
}
footer .link_ul a {
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 1080px) {
  footer {
    padding: 45px 0;
    margin-top: 60px;
  }
  footer nav ul {
    width: 550px;
    margin: auto;
  }
  footer nav ul a {
    font-size: 16px;
  }
  footer small {
    display: block;
    font-size: 14px;
    margin-top: 45px;
  }
  footer .link_ul {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1080px) {
  footer {
    padding: 5vw 0;
    margin-top: 13vw;
  }
  footer nav ul {
    width: 50vw;
    margin: auto;
    flex-wrap: wrap;
  }
  footer nav ul a {
    font-size: 3.2vw;
    margin-top: 3vw;
    display: block;
  }
  footer small {
    display: block;
    font-size: 3vw;
    margin-top: 8vw;
  }
  footer .link_ul {
    font-size: 3vw;
    margin-top: 3vw;
  }
} /*# sourceMappingURL=form.css.map */
