@charset "UTF-8";
/* カラー設定 */
:root {
  --primary-color: #2048B4;
  --secondary-color: #284593;
  --accent-color: #EE7F00;
  --back-color: #F0F7FF;
  --white-color: #FFFFFF;
}

/*----------------------------------------------------------*/
/* トップページ */
/*----------------------------------------------------------*/
/*---
mv
---*/
.mv {
  padding-top: 90px;
  height: 55vw;
  min-height: 790px;
  background-image: url(../images/mv_pc.png);
  background-size: 100%;
  background-position: right 0vw bottom 0;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mv {
    height: 680px;
    min-height: inherit;
    background-image: url(../images/mv_sp.png);
  }
}
.mv__content {
  width: 100%;
  height: 100%;
  padding: 0 5.5vw;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  margin-top: -2vw;
}
@media screen and (max-width: 768px) {
  .mv__content {
    justify-content: flex-start;
    margin-top: 40px;
  }
}
.mv__content h2 {
  font-size: 5.4rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .mv__content h2 {
    font-size: 3.2rem;
  }
}
.mv__content h2 span {
  font-size: 6.8rem;
}
@media screen and (max-width: 768px) {
  .mv__content h2 span {
    font-size: 4.4rem;
  }
}
.mv__content .link-btn {
  margin-top: 12px;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .mv__content .link-btn {
    justify-content: center;
  }
}

/*---
section-worries
---*/
.section-worries__item {
  text-align: center;
  background-color: var(--back-color);
  padding: 24px;
  width: 100%;
  max-width: 450px;
  border-radius: 200px;
  position: relative;
  line-height: 1.6;
}
.section-worries__item:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid var(--back-color);
}
.section-worries__item--1 {
  margin: auto;
  margin-bottom: 20px;
}
.section-worries__item span.marker {
  background: linear-gradient(transparent 50%, #F8DEC0 50%);
}
.section-worries__flex {
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  justify-content: space-evenly;
  margin: auto;
}
.section-worries__person {
  display: block;
  max-width: 100%;
  width: 180px;
  max-width: 40%;
  margin: auto;
  margin-top: 24px;
}
.section-worries__risk {
  background-color: var(--secondary-color);
  border-radius: 32px;
  padding: 40px;
  width: 100%;
  max-width: 1120px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .section-worries__risk {
    padding: 40px 20px;
  }
}
.section-worries__risk h3 {
  color: #fff;
  text-align: center;
}
.section-worries__risk__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px 3%;
  margin: auto;
  margin-top: 32px;
}
@media screen and (max-width: 1000px) {
  .section-worries__risk__list {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}
.section-worries__risk__item {
  background-color: var(--white-color);
  border-radius: 24px;
  padding: 16px 8px;
}
.section-worries__risk__item img {
  display: block;
  width: 36px;
  margin: auto;
}
.section-worries__risk__item p {
  font-size: 2rem;
  text-align: center;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .section-worries__risk__item p {
    font-size: 1.6rem;
  }
}
.section-worries__risk__item p span {
  font-size: 120%;
  font-weight: 900;
}
.section-worries__risk__note {
  color: #E7EBF7;
  text-align: center;
  margin-top: 32px;
}

/*---
section-agency
---*/
.section-agency__list {
  max-width: 1020px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .section-agency__list {
    grid-template-columns: 1fr;
    gap: 20px 40px;
  }
}
.section-agency__item {
  background-color: var(--white-color);
  border-radius: 24px;
  padding: 32px 40px;
  display: grid;
  gap: 20px;
  box-shadow: 0px 4px 14px rgba(40, 69, 147, 0.05);
}
@media screen and (max-width: 768px) {
  .section-agency__item {
    padding: 20px;
    gap: 16px;
  }
}
.section-agency__item__img {
  width: 80px;
  display: block;
  margin: auto;
}
.section-agency__item__title {
  text-align: center;
}
.section-agency__possible {
  width: 100%;
  max-width: 1020px;
  margin: auto;
}
.section-agency__possible__title {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: 32px 32px 0 0;
  text-align: center;
  font-weight: 700;
  padding: 12px 16px;
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .section-agency__possible__title {
    border-radius: 24px 24px 0 0;
    font-size: 2rem;
  }
}
.section-agency__possible__list {
  background-color: var(--white-color);
  padding: 32px 52px;
  display: grid;
  gap: 12px;
  border-radius: 0 0 32px 32px;
}
@media screen and (max-width: 768px) {
  .section-agency__possible__list {
    padding: 20px 20px 20px 32px;
    border-radius: 0 0 24px 24px;
  }
}
.section-agency__possible__item {
  list-style-type: disc;
  font-weight: 700;
  padding-left: 0.4em;
  padding-bottom: 12px;
  border-bottom: solid 1px #E4EDF8;
}
.section-agency__possible__item::marker {
  margin-top: -2em;
}
.section-agency__possible__item h4 {
  display: inline-flex;
}
@media screen and (max-width: 768px) {
  .section-agency__possible__item h4 {
    font-size: 1.8rem;
  }
}
.section-agency__possible__item span.option {
  font-size: 1.5rem;
  background-color: #E8F0F9;
  border-radius: 4px;
  padding: 2px 4px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .section-agency__possible__item span.option {
    font-size: 1.3rem;
  }
}

/*---
section-fee
---*/
.section-fee .sec-title__description span {
  font-size: 80%;
  margin-top: 8px;
  display: block;
}
.section-fee__content {
  width: 100%;
  max-width: 820px;
  margin: auto;
}
.section-fee__item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: solid 1px #DEDEDE;
  padding: 20px 0;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .section-fee__item {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.section-fee__item .item {
  width: 260px;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .section-fee__item .item {
    font-size: 1.6rem;
    width: fit-content;
  }
}
.section-fee__item .fee {
  width: 160px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  flex-shrink: 0;
}
@media screen and (max-width: 930px) {
  .section-fee__item .fee {
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .section-fee__item .fee {
    font-size: 1.6rem;
    width: fit-content;
  }
}
.section-fee__item .fee .fee-small {
  font-size: 90%;
}
.section-fee__item .content {
  width: calc(100% - 40px - 450px);
  max-width: fit-content;
  flex-shrink: 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 930px) {
  .section-fee__item .content {
    width: calc(100% - 40px - 390px);
  }
}
@media screen and (max-width: 768px) {
  .section-fee__item .content {
    width: 100%;
    max-width: 100%;
    font-size: 1.4rem;
  }
}
.section-fee__item--head {
  border-top: solid 1px var(--secondary-color);
  border-bottom: solid 1px var(--secondary-color);
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .section-fee__item--head {
    display: none;
  }
}
.section-fee__item--head .content {
  font-size: 1.8rem;
  font-weight: 700;
}
.section-fee__tax {
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin-top: 12px;
  text-align: right;
}
.section-fee__note {
  margin-top: 20px;
}
.section-fee__note p {
  line-height: 1.6;
}
.section-fee__option {
  display: grid;
  gap: 12px;
  background-color: #F8F8F8;
  border-radius: 24px;
  padding: 20px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .section-fee__option {
    margin-top: 20px;
  }
}
.section-fee__option__title, .section-fee__option__fee {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-fee__option__title, .section-fee__option__fee {
    font-size: 1.6rem;
  }
}
.section-fee__option__description {
  font-weight: 400;
  text-align: center;
  max-width: 500px;
  margin: auto;
}

/*---
section-voice
---*/
.section-voice__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .section-voice__list {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: auto;
  }
}
.section-voice__item {
  position: relative;
  background-color: var(--white-color);
  padding: 32px 24px 60px;
  border-radius: 24px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .section-voice__item {
    width: 80%;
    margin: auto;
    margin-bottom: 24px;
  }
}
.section-voice__item__text {
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .section-voice__item__text {
    font-size: 1.6rem;
  }
}
.section-voice__item__img {
  position: absolute;
  width: 140px;
  bottom: -86px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .section-voice__item__img {
    width: 100px;
    bottom: -52px;
  }
}

/*---
section-cta
---*/
.section-cta {
  padding: 60px 20px;
  background-color: #001D69;
}
@media screen and (max-width: 768px) {
  .section-cta {
    padding: 40px 16px;
  }
}
.section-cta h4 {
  color: var(--white-color);
  text-align: center;
}
.section-cta .link-btn {
  margin: auto;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .section-cta .link-btn {
    margin-top: 20px;
  }
}

/*---
section-flow
---*/
.section-flow__list {
  width: 100%;
  max-width: 800px;
  margin: auto;
  display: grid;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .section-flow__list {
    gap: 10px;
  }
}
.section-flow__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
  border: solid 2px var(--secondary-color);
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .section-flow__item {
    padding: 12px 20px;
    gap: 12px;
  }
}
.section-flow__item .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: 2.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .section-flow__item .number {
    min-width: 32px;
    width: 32px;
    min-height: 32px;
    height: 32px;
    font-size: 1.8rem;
  }
}
.section-flow__item .title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
}
@media screen and (max-width: 768px) {
  .section-flow__item .title {
    font-size: 1.6rem;
    width: 100%;
  }
}
.section-flow__item .title span {
  font-size: 68%;
  background-color: #EEEEEE;
  border-radius: 100px;
  padding: 8px 16px;
  border-radius: 100px;
  display: inline-block;
  color: var(--secondary-color);
}
@media screen and (max-width: 768px) {
  .section-flow__item .title span {
    padding: 4px 8px;
  }
}
.section-flow__item__dot {
  display: block;
  height: 24px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .section-flow__item__dot {
    height: 20px;
  }
}
.section-flow__item--last {
  background-color: var(--secondary-color);
}
.section-flow__item--last .number {
  background-color: var(--white-color);
  color: var(--secondary-color);
}
.section-flow__item--last .title {
  color: var(--white-color);
}

/*---
section-faq
---*/
.section-faq .faq__q, .section-faq .faq__a {
  font-size: 4rem;
  font-weight: 900;
  display: block;
}
@media screen and (max-width: 768px) {
  .section-faq .faq__q, .section-faq .faq__a {
    font-size: 2.8rem;
  }
}
.section-faq .faq__q {
  color: var(--secondary-color);
}
.section-faq .faq__a {
  color: #C0CBE7;
}
.section-faq .accordion {
  width: 100%;
  max-width: 1020px;
  margin: auto;
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .section-faq .accordion {
    gap: 20px;
  }
}
.section-faq .accordion__wrapper {
  background-color: var(--white-color);
  border-radius: 24px;
}
.section-faq .accordion-header {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  background-color: var(--white-color);
  padding: 8px 40px;
  border-radius: 24px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .section-faq .accordion-header {
    gap: 16px;
    padding: 8px 16px;
  }
}
.section-faq .accordion-header h5 {
  max-width: 80%;
}
@media screen and (max-width: 500px) {
  .section-faq .accordion-header h5 {
    max-width: 78%;
  }
}
.section-faq .accordion-content {
  background-color: var(--white-color);
  padding: 0 40px;
  border-radius: 0 0 24px 24px;
}
@media screen and (max-width: 768px) {
  .section-faq .accordion-content {
    padding: 0 16px;
  }
}
.section-faq .accordion-content::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #DEDEDE;
}
.section-faq .accordion-content__box {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .section-faq .accordion-content__box {
    gap: 16px;
  }
}
.section-faq .accordion-header::before,
.section-faq .accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 40px;
  bottom: 0;
  width: 24px;
  height: 5px;
  margin: auto;
  background: var(--secondary-color);
}
@media screen and (max-width: 768px) {
  .section-faq .accordion-header::before,
  .section-faq .accordion-header::after {
    right: 16px;
    width: 16px;
    height: 3px;
  }
}
.section-faq .accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.section-faq .accordion-header.active::after {
  transform: rotate(0deg);
}
.section-faq .accordion-content {
  display: none;
}

/*----------------------------------------------------------*/
/* 下層ページ_共通 */
/*----------------------------------------------------------*/
.page {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .page {
    padding-top: 60px;
  }
}

.page-description {
  text-align: center;
  font-weight: 700;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-description {
    margin-top: 32px;
  }
}

.page__content {
  background-color: var(--white-color);
  padding: 60px 6.3%;
  border-radius: 32px;
  width: 100%;
  max-width: 940px;
  margin: auto;
  color: #222222;
}
@media screen and (max-width: 768px) {
  .page__content {
    padding: 32px 20px;
  }
}

/*----------------------------------------------------------*/
/* お問い合わせページ */
/*----------------------------------------------------------*/
.page-contact__terms {
  color: #9f9f9f;
  text-align: center;
  font-size: 1.2rem;
}
.page-contact__terms a {
  text-decoration: underline;
}
.page-contact select,
.page-contact input,
.page-contact textarea {
  border: solid 1px #DCDCDC;
  padding: 16px 20px;
  border-radius: 12px;
  width: 100%;
  font-size: 1.6rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page-contact select,
  .page-contact input,
  .page-contact textarea {
    padding: 12px 16px;
    font-size: 1.4rem;
  }
}
.page-contact select::placeholder,
.page-contact input::placeholder,
.page-contact textarea::placeholder {
  font-size: 1.6rem;
  color: #B6B6B6;
}
@media screen and (max-width: 768px) {
  .page-contact select::placeholder,
  .page-contact input::placeholder,
  .page-contact textarea::placeholder {
    font-size: 1.4rem;
  }
}
.page-contact select {
  color: #999;
}
.page-contact select option:not(:first-child) {
  color: #999;
}
.page-contact .wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.page-contact .select-wrap::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../images/form_select.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: 26px;
  right: 3%;
}
@media screen and (max-width: 768px) {
  .page-contact .select-wrap::after {
    top: 20px;
  }
}
.page-contact input[type=file]::file-selector-button {
  font-size: 14px;
  border: solid 1px #BBBBBB;
  background-color: #E0E0E0;
  border-radius: 4px;
  padding: 2px 8px;
  text-align: center;
  cursor: pointer;
  color: #222;
}
.page-contact input[type=submit] {
  background-color: var(--primary-color);
  border: none;
  border-radius: 10px;
  color: var(--white-color);
  width: 260px;
  margin: auto;
  display: block;
  text-align: center;
  font-weight: 700;
}
.page-contact input[type=file] {
  font-size: 1.4rem;
  border: none;
  padding: 0;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .page-contact input[type=file] {
    font-size: 1.2rem;
    border: none;
  }
}
.page-contact select[name=contact-type] {
  width: 50%;
  min-width: 360px;
}
@media screen and (max-width: 768px) {
  .page-contact select[name=contact-type] {
    width: 100%;
    min-width: inherit;
  }
}
.page-contact .form__list {
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .page-contact .form__list {
    gap: 20px;
  }
}
.page-contact .form .form-title {
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .page-contact .form .form-title {
    margin-bottom: 8px;
  }
}
.page-contact .form .form-title__required {
  background-color: var(--accent-color);
  color: var(--white-color);
  padding: 1px 8px;
  border-radius: 20px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .page-contact .form .form-title__required {
    font-size: 1rem;
  }
}
.page-contact .form__area-wprapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
@media screen and (max-width: 768px) {
  .page-contact .form__area-wprapper {
    grid-template-columns: 1fr;
  }
}
.page-contact .form__area-wprapper .select-wrap {
  width: 100%;
}
.page-contact .form__privacy {
  margin-bottom: 28px;
  font-weight: 400;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-contact .form__privacy {
    margin-top: 20px;
  }
}
.page-contact .form__privacy-link {
  text-decoration: underline;
  margin-left: 4px;
}

/*----------------------------------------------------------*/
/* プライバシーポリシーページ */
/*----------------------------------------------------------*/
.page-privacy .page__content {
  display: grid;
  gap: 40px;
}
.page-privacy ol {
  list-style: decimal;
}
.page-privacy ol li {
  margin-left: 1.6rem;
}
.page-privacy ol li::marker {
  font-size: 1.6rem;
}

.page-privacy__item {
  display: grid;
  gap: 12px;
}

/*----------------------------------------------------------*/
/* 運営会社ページ */
/*----------------------------------------------------------*/
.page-company tbody {
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .page-company tbody {
    gap: 20px;
  }
}
.page-company tr {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-company tr {
    flex-direction: column;
    align-items: start;
  }
}
.page-company tr th {
  min-width: 200px;
  padding-right: 12px;
}
@media screen and (max-width: 768px) {
  .page-company tr th {
    padding-right: 0;
    padding-bottom: 4px;
  }
}

/*----------------------------------------------------------*/
/* 404ページ*/
/*----------------------------------------------------------*/
.section-404 h2 {
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .section-404 h2 {
    font-size: 5.2rem;
  }
}
.section-404__text {
  text-align: center;
}
.section-404 .top-link {
  border: solid 1px var(--primary-color);
  padding: 12px 16px;
  width: 100%;
  max-width: 320px;
  margin: auto;
  text-align: center;
  border-radius: 100px;
}

/*----------------------------------------------------------*/
/* thanksページ */
/*----------------------------------------------------------*/
.section-thanks__text {
  text-align: center;
}
.section-thanks .top-link {
  border: solid 1px var(--primary-color);
  padding: 12px 16px;
  width: 100%;
  max-width: 320px;
  margin: auto;
  text-align: center;
  border-radius: 100px;
}