@charset "UTF-8";
/* メディアクエリ
==================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
button,
textarea,
select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* デフォルトスタイルをリセット */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  color: inherit;
  font-size: 16px;
  font-family: inherit;
}

label {
  cursor: pointer;
}

html {
  min-height: 100vh;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  color: #3E3625;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
}

main {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ------ 旧62.5%のscss ----- */
.inner {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
}

.section__title {
  color: #002D6A;
  font-weight: 600;
  font-size: 7.47vw;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

body {
  position: relative;
}

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 11.47vw;
  background: linear-gradient(149.12deg, #24579B 29.81%, #002D6A 85.07%);
}

.header__container {
  width: 100%;
  text-align: center;
}

.header__name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 4.27vw;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
}

.header__links {
  display: none;
}

.cta__sp {
  display: block;
  padding: 8.53vw 0;
  background: #F2F4F8;
  text-align: center;
}

.cta__btns {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 91.4666666667%;
  margin-inline: auto;
  gap: 1vw;
}

.cta__btn img {
  width: 100%;
}

.section06 {
  margin-top: -10%;
}

.section07 {
  padding: 10vw 0;
  background: #EDF0F6;
}

.section07__title {
  width: 78.67vw;
  margin-inline: auto;
}

.section07__items {
  margin-top: 6.7vw;
}

.section07__cta {
  margin-top: 2.6vw;
}

.cta__text {
  width: 49.87vw;
  margin-bottom: 1vw;
  margin-inline: auto;
}

.section09 {
  padding-bottom: 10.67vw;
  background: #F1F1F1;
}

.section09__title {
  width: 44.8vw;
  margin-inline: auto;
}

.qa__items {
  display: grid;
  margin-top: 8.534vw;
  gap: 5.87vw;
}

.qa__item {
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.0784313725);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.0784313725);
}

.qa__q {
  position: relative;
  padding: 4.27vw 11.7vw 4.27vw 17vw;
  border-radius: 4px;
  background: #FFFFFF;
  color: #002D6A;
  font-weight: 700;
  font-size: 4.27vw;
  cursor: pointer;
}
.qa__q span {
  position: relative;
}
.qa__q span::before {
  position: absolute;
  top: 50%;
  left: -13vw;
  aspect-ratio: 1/1;
  width: 9.6vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon_q.svg) no-repeat center center/contain;
  content: "";
}

.qa__q.is-active {
  border-radius: 4px 4px 0 0;
  background: #002D6A;
  color: #FFFFFF;
}
.qa__q.is-active span::before {
  background: url(../img/icon_q_white.svg) no-repeat center center/contain;
}
.qa__q.is-active::before, .qa__q.is-active::after {
  background: #FFFFFF;
}

.qa__q::after,
.qa__q::before {
  display: block;
  position: absolute;
  top: 50%;
  height: 2px;
  background: #999999;
  content: "";
  -webkit-transform: translateY(-50%);
  right: 16px;
  width: 4.267vw;
  transform: translateY(-50%);
}

.qa__q::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.qa__q.is-active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.qa__a {
  max-height: 0;
  padding: 0 4.27vw 0 17vw;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
  background: #FFFFFF;
  color: #333333;
  font-size: 3.734vw;
  line-height: 180%;
  letter-spacing: 0.04em;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.qa__a.is-open {
  max-height: 500px;
  padding: 4.27vw 4.27vw 4.27vw 17vw;
}
.qa__a span {
  position: relative;
}
.qa__a span::before {
  position: absolute;
  top: 50%;
  left: -13vw;
  aspect-ratio: 1/1;
  width: 9.6vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon_a.svg) no-repeat center center/contain;
  content: "";
}

.contact {
  padding: 13.34vw 0;
  background: #F2F4F8;
}
.contact .inner {
  max-width: 900px;
}

.contact__lead {
  margin-top: 4vw;
  color: #333333;
  font-size: 4.267vw;
  line-height: 1.8;
  text-align: center;
}

.contact-form {
  margin-top: 8vw;
}

.contact-input {
  display: grid;
  margin-bottom: 6.4vw;
  gap: 2.67vw;
}

.contact-label {
  padding-top: 0.2em;
  color: #333333;
  font-weight: 600;
  font-size: 4.267vw;
}
.contact-label.is-required {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.contact-label.is-required::after {
  display: inline-block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 2px 6px;
  border-radius: 3px;
  background: #C0392B;
  content: "必須";
  color: #FFFFFF;
  font-weight: 500;
  font-size: 2.93vw;
  line-height: 1.4;
}

.contact-field {
  display: grid;
  gap: 1.6vw;
}
.contact-field ::-webkit-input-placeholder {
  color: #AAAAAA;
}
.contact-field ::-moz-placeholder {
  color: #AAAAAA;
}
.contact-field :-ms-input-placeholder {
  color: #AAAAAA;
}
.contact-field ::-ms-input-placeholder {
  color: #AAAAAA;
}
.contact-field ::placeholder {
  color: #AAAAAA;
}
.contact-field input[type=text],
.contact-field input[type=tel],
.contact-field input[type=email] {
  width: 100%;
  padding: 3.2vw 4vw;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  outline: none;
  background: #FFFFFF;
  font-size: 4vw;
  font-family: inherit;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.contact-field input[type=text]:focus,
.contact-field input[type=tel]:focus,
.contact-field input[type=email]:focus {
  border-color: #002D6A;
}
.contact-field input[type=text].is-error,
.contact-field input[type=tel].is-error,
.contact-field input[type=email].is-error {
  border-color: #C0392B;
}
.contact-field textarea {
  width: 100%;
  min-height: 32vw;
  padding: 3.2vw 4vw;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  outline: none;
  background: #FFFFFF;
  font-size: 4vw;
  font-family: inherit;
  resize: vertical;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.contact-field textarea:focus {
  border-color: #002D6A;
}

.contact-error {
  display: none;
  color: #C0392B;
  font-size: 3.734vw;
}
.is-error + .contact-error {
  display: block;
}

.contact-privacy {
  margin-top: 8vw;
}

.contact-privacy__box {
  max-height: 40vw;
  padding: 4vw;
  overflow-y: auto;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  background: #FFFFFF;
  color: #333333;
  font-size: 3.7vw;
  line-height: 1.8;
}
.contact-privacy__box p + p {
  margin-top: 1em;
}

.contact-privacy__title {
  margin-bottom: 0.5em;
  color: #002D6A;
  font-weight: 700;
  font-size: 4.267vw;
}
.contact-privacy__title + p {
  margin-top: 0;
}

.contact-privacy__head {
  margin-top: 1.2em;
  margin-bottom: 0.3em;
  font-weight: 600;
}

.contact-agree {
  margin-top: 5.34vw;
  text-align: center;
}

.contact-agree__label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #333333;
  font-weight: 500;
  font-size: 4.267vw;
  cursor: pointer;
}
.contact-agree__label input[type=checkbox] {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: checkbox;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 5.34vw;
  height: 5.34vw;
  accent-color: #002D6A;
  cursor: pointer;
}

.contact-submit {
  margin-top: 8vw;
  text-align: center;
}
.contact-submit button {
  display: inline-block;
  padding: 4.27vw 16vw;
  border: none;
  border-radius: 100px;
  background: #002D6A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 4.27vw;
  font-family: inherit;
  letter-spacing: 0.05em;
  cursor: pointer;
  -webkit-transition: opacity 0.2s, background 0.2s;
  transition: opacity 0.2s, background 0.2s;
}
.contact-submit button:disabled {
  background: #AAAAAA;
  cursor: not-allowed;
  opacity: 1;
}

.company {
  padding: 50px 0;
}

.company__items {
  margin-top: 4vw;
  border-bottom: 1px solid #999999;
}

.company__item {
  display: grid;
  grid-template-columns: 40% 1fr;
  padding: 4vw 0;
  border-top: 1px solid #999999;
  font-size: 4.27vw;
}

.company__label {
  font-weight: 600;
}

.footer {
  padding: 6.4vw 0 0;
}

.footer__links {
  display: grid;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4.8vw;
  gap: 4.8vw;
}

.footer__link {
  color: #002D6A;
  font-weight: 400;
  font-size: 4.267vw;
}

.footer__text {
  display: grid;
  place-items: center;
  min-height: 9.34vw;
  margin-top: 4.8vw;
  background: #002D6A;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 4.267vw;
  font-family: "Noto Serif JP", serif;
}

.thanks {
  padding: 50px 0;
}

.thanks__text {
  margin-top: 20px;
  font-size: 16px;
}

.u-desktop {
  display: none;
}

@media screen and (min-width: 751px) {
  body {
    font-size: 16px;
  }
  .section__title {
    font-size: min(46px, 3.2vw);
  }
  .header {
    min-height: 97px;
  }
  .header__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 30px 0 min(58px, 4vw);
    text-align: initial;
  }
  .header__name {
    font-weight: 700;
    font-size: 20px;
  }
  .header__links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 618px;
    gap: 10px;
  }
  .header__link {
    max-width: min(318px, 30vw);
  }
  .cta__sp {
    display: none;
  }
  .cta__btn {
    width: min(568px, 39.44vw);
  }
  .section01 {
    margin-top: -5px;
  }
  .section03 {
    margin-top: -3.6%;
  }
  .section04 {
    margin-top: -2px;
  }
  .section06 {
    margin-top: initial;
  }
  .section07 {
    padding: 68px 0;
  }
  .section07__title {
    width: min(488px, 33.89vw);
  }
  .section07__items {
    width: 89.4444444444%;
    margin-top: min(41px, 2.847vw);
    margin-inline: auto;
  }
  .cta__text {
    width: min(309px, 21.458vw);
    margin-bottom: 10px;
  }
  .section09 {
    padding-bottom: 66px;
  }
  .section09__title {
    width: min(279px, 19.375vw);
  }
  .qa__items {
    max-width: 568px;
    margin-top: 52px;
    margin-inline: auto;
    gap: 36px;
  }
  .qa__item {
    border-radius: 7px;
  }
  .qa__q {
    padding: 26px 72px 26px 105px;
    border-radius: 7px;
    font-size: 26px;
    font-size: min(26px, 1.81vw);
  }
  .qa__q span::before {
    left: -80px;
    width: min(60px, 4.167vw);
  }
  .qa__q.is-active {
    border-radius: 7px 7px 0 0;
  }
  .qa__q::after,
  .qa__q::before {
    right: 26px;
    width: 26px;
  }
  .qa__a {
    padding: 0 26px 0 105px;
    border-radius: 0 0 7px 7px;
    font-size: min(24px, 1.67vw);
  }
  .qa__a.is-open {
    padding: 26px 26px 26px 105px;
  }
  .qa__a span::before {
    left: -80px;
    width: 60px;
  }
  .contact {
    padding: 80px 0;
  }
  .contact__lead {
    margin-top: 20px;
    font-size: min(16px, 1.11vw);
  }
  .contact-form {
    margin-top: 48px;
  }
  .contact-input {
    grid-template-columns: 300px 1fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 28px;
    gap: 16px;
  }
  .contact-label {
    padding-top: min(8px, 0.56vw);
    font-size: min(20px, 1.38vw);
  }
  .contact-label.is-required::after {
    padding: 3px 7px;
    font-size: 11px;
    font-size: min(12px, 0.834vw);
  }
  .contact-field {
    gap: 8px;
  }
  .contact-field input[type=text],
  .contact-field input[type=tel],
  .contact-field input[type=email] {
    padding: 12px 16px;
    border-radius: 5px;
    font-size: min(20px, 1.38vw);
  }
  .contact-field textarea {
    min-height: 160px;
    padding: 12px 16px;
    border-radius: 5px;
    font-size: min(20px, 1.38vw);
  }
  .contact-error {
    font-size: 16px;
  }
  .contact-privacy {
    margin-top: 40px;
  }
  .contact-privacy__box {
    max-height: 200px;
    padding: 20px 24px;
    font-size: min(16px, 1.12vw);
  }
  .contact-privacy__title {
    font-size: min(16px, 1.12vw);
  }
  .contact-agree {
    margin-top: 28px;
  }
  .contact-agree__label {
    gap: 12px;
    font-size: min(20px, 1.38vw);
  }
  .contact-agree__label input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .contact-submit {
    margin-top: 40px;
  }
  .contact-submit button {
    padding: 20px 80px;
    font-size: min(18px, 1.25vw);
  }
  .company__items {
    max-width: 900px;
    margin-top: 50px;
    margin-inline: auto;
  }
  .company__item {
    grid-template-columns: 25% 1fr;
    padding: min(50px, 3.472vw) 0;
    font-size: min(24px, 1.67vw);
  }
  .footer {
    padding: 40px 0 0;
  }
  .footer__links {
    margin-top: min(40px, 2.77vw);
    gap: 29px;
  }
  .footer__link {
    font-size: min(26.5px, 1.81vw);
  }
  .footer__text {
    min-height: 58px;
    margin-top: min(80px, 5.55vw);
    font-size: min(26.5px, 1.81vw);
  }
  .thanks {
    padding: 60px 0;
  }
  .thanks__text {
    margin-top: 40px;
    font-size: 24px;
    line-height: 2;
    text-align: center;
  }
  .u-mobile {
    display: none;
  }
  .u-desktop {
    display: block;
  }
}

@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
    opacity: 0.9;
  }
  .contact-submit button:not(:disabled):hover {
    opacity: 0.85;
  }
}
/*# sourceMappingURL=map/styles.css.map */