@charset "utf-8";

/************************************
 * Reset
************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}
a:not([class]) {
  color: currentColor;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
textarea:not([rows]) {
  min-height: 10em;
}
:target {
  scroll-margin-block: 5ex;
}
em {
  font-style: normal;
}

/************************************
 * Base
 ************************************/
:root {
  --base-width: 375; /* 基準幅 */
  --max-width: 640; /* 最大幅 */
  --base-font-size: 10; /* 基準フォントサイズ (10px) */
  /* 最大横幅サイズ時の最大フォントサイズ */
  --max-font-size: calc((var(--base-font-size) / var(--base-width)) * var(--max-width) * 1px);
}

html {
  /** 以下指定で、横幅が --base-width 時に 1rem が 10pxとなる */
  font-size: min(calc((var(--base-font-size) / var(--base-width)) * 100vw), var(--max-font-size));
  scroll-behavior: smooth;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.03rem;
  color: #222;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.4rem;
}
img,
video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  transition: opacity 0.2s;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  button:hover {
    cursor: pointer;
  }
  label:hover {
    cursor: pointer;
  }
}
input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  font-size: 1.6rem;
}
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: auto;
}

textarea,
input[type="tel"],
input[type="email"],
input[type="text"] {
  width: 100%;
  background: #f9f9f9;
  border: 1px solid #9f9f9f;
  padding: 1.2rem 1rem;
  border-radius: 6px;
}

input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 2rem;
  height: 2rem;
  border: 1px solid #9f9f9f;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
input[type="checkbox"]:checked::after {
  content: "✔";
  font-size: 1.3rem;
  color: #2974ff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
input[type="radio"] {
  transform: scale(1.3);
}
select {
  width: 100%;
  border: 1px solid #9f9f9f;
  padding: 1.2rem 1rem;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23000000"%3E%3Cpath d="M7 10l5 5 5-5z"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 2rem;
}
button {
  border: none;
  border-radius: 0.7rem;
  cursor: pointer;
}
/************************************
 * Utility
************************************/
.u-fs--10 {
  font-size: 1rem;
}
.u-fs--12 {
  font-size: 1.2rem;
}
.font-weight {
  font-weight: bold !important;
}
.u-fw--bold {
  font-weight: bold !important;
}
.u-text--center {
  text-align: center !important;
}
.u-color--magenta {
  color: #db1447 !important;
}
.u-width--30 {
  width: 30% !important;
}
.u-width--35 {
  width: 35% !important;
}
.u-width--40 {
  width: 40% !important;
}
.u-width--50 {
  width: 50% !important;
}
.u-width--60 {
  width: 60% !important;
}
.u-width--70 {
  width: 70% !important;
}
.u-width--100 {
  width: 100% !important;
}
.u-mr--05 {
  margin-right: .5rem !important;
}
.u-mb--1 {
  margin-bottom: 1rem !important;
}
.u-mb--2 {
  margin-bottom: 2rem !important;
}
.u-mb--3 {
  margin-bottom: 3rem !important;
}
.u-mb--4 {
  margin-bottom: 4rem !important;
}
.u-mb--5 {
  margin-bottom: 5rem !important;
}
/************************************
 * Components
************************************/
.c-radio-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .5rem;
  font-size: 1.5rem;
}
.c-icon--required {
  padding: .2rem .5rem;
  margin-left: .5rem;
  background-color: #db1447;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
  vertical-align: text-bottom;
  font-weight: normal;
}
.c-icon--optional {
  padding: .2rem .5rem;
  margin-left: .5rem;
  background-color: #a2a2a2;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
  vertical-align: text-bottom;
  font-weight: normal;
}
.c-btn__submit {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  background-color: #db1447;
  border-radius: 60rem;
  box-shadow: 0 .5rem 0 #940b2d;
  color: #fff;
  font-weight: bold;
}
@media (hover: hover) {
  .c-btn__submit:hover {
    transform: translateY(.5rem);
    box-shadow: none;
  }
}
.c-btn__prev {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  background-color: #f4f4f4;
  border-radius: 50rem;
  text-align: center;
  text-decoration: none;
  color: #222;
  transition: opacity .2s;
}
@media (hover: hover) {
  .c-btn__submit:hover {
    transition: opacity .2s;
    opacity: .6;
  }
}
/************************************
 * Page
************************************/
.page-wrap {
  width: 100%;
  max-width: calc(var(--max-width) * 1px);
  margin: 0 auto;
  overflow-x: hidden;
}
/* header */
.page-header {
  padding-top: 1rem;
}
.page-header__logo {
  width: 18rem;
  margin: 0 auto 1.2rem auto;
}
.page-header__title {
  padding: 1.2rem 1rem;
  background-color: #141C5E;
  color: #fff;
  text-align: center;
  font-size: 2rem;
}
/* footer */
.page-footer {
  padding: 3rem 0;
  background-color: #141C5E;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}
.page-footer a {
  margin: 0 .5rem;
  text-decoration: none;
}
/* sec-form */
.sec-form {
  padding: 2rem 2rem 4rem;
}
.sec-form__header {
  margin: 0 auto 2rem auto;
  text-align: center;
}
.sec-form__header-title {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  padding-top: 1.5rem;
  font-size: 2.2rem;
  font-weight: bold;
}
.sec-form__header-title::before,
.sec-form__header-title::after {
  display: inline-block;
  content: '';
  width: 2rem;
  height: 2px;
  background-color: #141C5E;
}
.sec-form__item {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.sec-form__label {
  border-left: 4px solid #141C5E;
  padding-left: .6rem;
  margin-bottom: .7rem;
  font-weight: bold;
  line-height: 1.3;
}
.sec-form__radio-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.sec-form__contact-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.sec-form__input-phone {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: center;
  align-items: center;
}
.sec-form__input-phone input,
.sec-form__input-phone select {
  text-align: center;
}
.sec-form__policy-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}
.sec-form__confirm-value {
  padding: 1rem 0 .5rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.sec-form__footer {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 1rem;
  justify-content: center;
  align-items: center;
}
/* sec-thanks */
.sec-thanks {
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(242,247,253,1) 50%, rgba(230,239,251,1) 80%, rgb(217, 233, 255) 100%);
}
.sec-thanks__header {
  margin: 0 auto;
  padding: 2.5rem 0 .5rem;
  text-align: center;
}
.sec-thanks__header-text {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 2.2rem;
  font-weight: bold;
}
.sec-thanks__inner {
  padding: 2rem;
}
.sec-thanks__text-box {
  width: 100%;
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 2rem;
  border: 2px solid #133e6e;
  background-color: #fff;
  box-shadow: .5rem .5rem 0 #133e6e;
  position: relative;
  line-height: 1.6;
}
.sec-thanks__text-box-human {
  width: 14rem;
  position: absolute;
  bottom: -5%;
  right: -3%;
}
.sec-thanks__tel {
  display: flex;
  -moz-column-gap: .8rem;
       column-gap: .2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: bold;
  color: #141C5E;
  text-decoration: none;
  letter-spacing: .1rem;
}
.sec-thanks__tel-icon {
  display: inline-block;
  width: 2.8rem;
  height: 2.8rem;
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iX3gzMl8iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDUxMiA1MTIiPiAgIDwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyOS4zLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiAyLjEuMCBCdWlsZCAxNDYpICAtLT4gICA8ZGVmcz4gICAgIDxzdHlsZT4gICAgICAgLnN0MCB7ICAgICAgICAgZmlsbDogIzE0MUM1RTsgICAgICAgfSAgICAgPC9zdHlsZT4gICA8L2RlZnM+ICAgPHBhdGggY2xhc3M9InN0MCIgZD0iTTk0LjgsMjEuN2MtMzUuMiwyMi44LTQyLjEsOTQuMS0yOC44LDE1Mi4zLDEwLjMsNDUuMywzMi4zLDEwNiw2OS40LDE2My4yLDM0LjksNTMuOCw4My42LDEwMiwxMjAuNywxMjkuOSw0Ny43LDM1LjgsMTE1LjYsNTguNiwxNTAuOCwzNS44LDE3LjgtMTEuNSw0NC4yLTQzLjEsNDUuNC00OC43LDAsMC0xNS41LTIzLjktMTguOS0yOS4xbC01Mi04MC4xYy0zLjktNi0yOC4xLS41LTQwLjQsNi41LTE2LjYsOS40LTMxLjksMzQuNi0zMS45LDM0LjYtMTEuNCw2LjYtMjAuOSwwLTQwLjgtOS4xLTI0LjUtMTEuMy01Mi00Ni4zLTczLjktNzcuOS0yMC0zMi45LTQwLjctNzIuMy00MS05OS4zLS4yLTIxLjktMi4zLTMzLjMsOC4zLTQxLDAsMCwyOS4zLTMuNyw0NC42LTE1LDExLjQtOC40LDI2LjItMjguMywyMi40LTM0LjJsLTUyLTgwLjFDMTczLjMsMjQsMTU3LjgsMCwxNTcuOCwwYy01LjctMS4yLTQ1LjIsMTAuMS02MywyMS42WiIvPiA8L3N2Zz4=) 50% 50% no-repeat;
  background-size: 100%;
}
