@charset "UTF-8";
/* common 
******************************************************************************************/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}
body {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #242424;
}

body.is-noscroll {
  overflow: hidden;
}

body.is-noscroll .is-fixed {
  background-color: transparent;
  box-shadow: none;
}

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

.container {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}
.pc-none {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}
.heading {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #011985;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .heading {
    font-size: min(32px, 7.2727272727vw);
  }
}
.heading span.small {
  display: block;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .heading span.small {
    font-size: min(20px, 4.5454545455vw);
    margin-bottom: 13px;
  }
}
span.dot {
  position: relative;
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  span.dot {
    font-size: min(32px, 7.2727272727vw);
  }
}
span.dot::before {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  bottom: -10px;
  left: 50%;
  translate: -50%;
  background-color: #D1983A;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  span.dot::before {
    width: min(10px, 2.2727272727vw);
    height: min(10px, 2.2727272727vw);
  }
}
.btn {
  display: block;
  max-width: 1000px;
  width: 100%;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 24px;
  margin: auto;
  background: linear-gradient(to right, #011985, #2672D6);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  transition: opacity 0.4s;
}

.btn:hover, .btn:active {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .btn {
    position: fixed;
    font-size: min(24px, 5.4545454545vw);
    text-indent: -10px;
    left: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 0;
  }
}
.btn span {
  position: relative;
  margin-left: -51px;
}

.btn span::before, .btn span::after {
  position: absolute;
  display: block;
  content: "";
  width: 15px;
  height: 25px;
  top: 50%;
  translate: 0 -50%;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.btn span::before {
  right: -57px;
}

@media screen and (max-width: 768px) {
  .btn span::before {
    right: -43px;
  }
}
.btn span::after {
  right: -76px;
}

@media screen and (max-width: 768px) {
  .btn span::after {
    right: -61px;
  }
}
.white {
  color: #fff;
}

/* header
******************************************************************************************/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.6s;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  font-size: 0;
  padding: 16px 18px 15px 20px;
  margin: auto;
  background-color: transparent;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 18px 0 5px;
  }
}

.header__title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #021C87;
}

@media (max-width: 1025px) {
  .header__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__title {
    font-size: 20px;
    font-size: min(20px, 4.5454545455vw);
  }
}
@media screen and (max-width: 768px) {
  .header__title span.text {
    position: relative;
    top: 3px;
  }
}
.header__title span.small {
  position: relative;
  font-size: 16px;
  margin-left: 11px;
  top: 17px;
}

@media (max-width: 1025px) {
  .header__title span.small {
    font-size: 14px;
    top: 14px;
  }
}
@media screen and (max-width: 768px) {
  .header__title span.small {
    display: none;
  }
}
.header__title a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .header__title a {
    flex-direction: row-reverse;
    gap: 18px;
    gap: min(18px, 4.0909090909vw);
  }
}
.header__title .wrap {
  display: flex;
}

.header__logo {
  width: 211px;
}

@media (max-width: 1025px) {
  .header__logo {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 105px;
    width: min(105px, 23.8636363636vw);
  }
}
.header__logo img {
  width: 100%;
  height: auto;
}

.header__right {
  display: flex;
  align-items: baseline;
  margin-left: auto;
  flex-shrink: 0;
}

.header-nav {
  position: relative;
  margin-left: auto;
  top: 4px;
}

@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav__item {
  position: relative;
  font-size: 16px;
  color: #242424;
}

@media (max-width: 1025px) {
  .header-nav__item {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .header-nav__item {
    font-size: 11px;
  }
}
.header-nav__item::after {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  margin-top: 6px;
  background-color: #242424;
  transition: width 0.4s;
}

.header-nav__item:hover::after {
  width: 100%;
}

.header.is-in .header-nav__item {
  color: #fff;
}

.header.is-in .header-nav__item:hover::after {
  background-color: #fff;
}

.icon-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 36px;
}

@media screen and (max-width: 768px) {
  .icon-wrap {
    gap: 7px;
    margin-left: 0;
  }
}
.header__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 53px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0 30px;
  margin-left: 17px;
  border: 1px solid #000;
  background-color: #3A3B3B;
  color: #fff;
  border-radius: 6px;
  transition: background-color 0.4s;
}

@media (max-width: 1025px) {
  .header__contact {
    height: 40px;
    font-size: 16px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__contact {
    display: none;
  }
}
.header__contact:hover {
  background-color: #000;
}

.header-btn {
  position: relative;
  display: none;
  width: 58px;
  height: 58px;
  z-index: 2;
  cursor: pointer;
  transition: background-color 0.4s;
}

@media screen and (max-width: 768px) {
  .header-btn {
    display: block;
    width: 40px;
    height: 40px;
    top: 50%;
    right: 0;
  }
}

.header-btn span {
  position: absolute;
  width: 28px;
  height: 3px;
  left: 7px;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.header-btn span:nth-child(1) {
  top: 13px;
}

.header-btn span:nth-child(2) {
  top: 20px;
}

.header-btn span:nth-child(3) {
  top: 27px;
}

.header-btn span.close {
  position: absolute;
  width: 28px;
  height: 3px;
  left: 7px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .header-btn span.close {
    height: 2px;
  }
}
.header-btn span.close:nth-child(1) {
  width: 17px;
  top: 20px;
  left: 12px;
  transform: rotate(-45deg);
}

.header-btn span.close:nth-child(2) {
  display: none;
}

.header-btn span.close:nth-child(3) {
  width: 17px;
  top: 20px;
  left: 12px;
  transform: rotate(45deg);
}

.drawer {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 100%;
  padding-top: 136px;
  padding-bottom: 87px;
  transition: left 0.6s;
  z-index: 1;
  background: linear-gradient(to bottom, #031D88, #2570D4);
  overflow: auto;
}

.drawer.slidein {
  left: 0;
}

.drawer__inner {
  display: flex;
  justify-content: center;
}

.drawer__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 88px;
  width: fit-content;
  padding: 30px;
  overflow: auto;
}

.drawer-link-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 0;
  z-index: 1;
}

.drawer-link__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 480px;
  width: 100%;
}

.drawer-link__item {
  position: relative;
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}

.drawer-link__item::after {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  margin-top: 6px;
  background-color: #fff;
  transition: width 0.4s;
}

.drawer-link__item:hover::after {
  width: 100%;
}

.drawer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 240px;
  height: 54px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-color: #D1983A;
  color: #fff;
  border-radius: 6px;
  transition: background-color 0.4s;
}

/* footer
******************************************************************************************/
.footer {
  padding: 70px 0 32px;
  background-color: #3F3F3F;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 18px 30px 80px;
  }
}
.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .footer__links {
    display: none;
  }
}
.footer__link {
  transition: opacity 0.4s;
}

.footer__link:hover, .footer__link:active {
  opacity: 0.6;
}

.footer__copy {
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-top: 49px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer__copy {
    margin-top: 0;
  }
}
.mv {
  padding: 170px 0 66px;
  background-color: #EBF4FF;
}

@media screen and (max-width: 768px) {
  .mv {
    padding: 113px 0 20px;
  }
}
.mv__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .mv__inner {
    flex-direction: column;
  }
}
.mv__image {
  width: min(450px, 43.2692307692vw);
  transform: translateX(-25px);
  margin-top: 4px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .mv__image {
    display: contents;
    width: 100%;
    height: 200px;
    transform: translateX(0);
  }
}
.mv__image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .mv__image img {
    display: block;
    max-width: 412px;
    width: 68%;
    margin: 36px auto 0;
    transform: translateX(-8px);
    order: 2;
  }
}
.mv__image span {
  display: block;
  font-size: min(14px, 1.3461538462vw);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 10px;
  text-align: right;
  color: #3F3F3F;
}

@media screen and (max-width: 768px) {
  .mv__image span {
    font-size: 14px;
    padding-left: 0;
    margin-top: 10px;
    text-align: center;
    order: 4;
  }
}
.mv__image span.atarisk {
  position: relative;
  display: inline-block;
  font-size: 10px;
  margin-right: 0;
  top: -1px;
}

.mv__text {
  width: 58.5%;
}

@media screen and (max-width: 768px) {
  .mv__text {
    display: contents;
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .mv-text__top {
    order: 1;
  }
}
.mv-text__lead {
  width: fit-content;
  font-size: min(24px, 2.1818181818vw);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: min(15px, 1.3636363636vw) min(29px, 2.6363636364vw) min(12px, 1.0909090909vw);
  background-color: #D1983A;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .mv-text__lead {
    font-size: min(18px, 3.9130434783vw);
    padding: min(14px, 3.0434782609vw) min(20px, 4.347826087vw) min(15px, 3.2608695652vw);
  }
}
.mv-text__main {
  font-size: min(58px, 5.2727272727vw);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-top: min(22px, 2vw);
  color: #021C87;
}

@media screen and (max-width: 768px) {
  .mv-text__main {
    font-size: min(42px, 9.1304347826vw);
    margin-top: 16px;
  }
}
.mv-text__description {
  font-size: min(20px, 1.8181818182vw);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: min(17px, 1.5454545455vw);
  padding-left: min(5px, 0.4545454545vw);
}

@media screen and (max-width: 768px) {
  .mv-text__description {
    font-size: min(20px, 4.347826087vw);
    margin-top: 23px;
    padding-left: min(5px, 1.0869565217vw);
  }
}
.mv-text__emblem {
  width: min(510px, 46.3636363636vw);
  margin-top: min(45px, 4.0909090909vw);
  margin-left: -9px;
}

@media screen and (max-width: 768px) {
  .mv-text__emblem {
    max-width: 510px;
    width: 100vw;
    align-self: center;
    margin: 35px calc(50% - 50vw) 0;
    order: 3;
    padding: 0 20px;
    text-align: center;
  }
}
.lead {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 24px 0;
  background: linear-gradient(to right, #011985, #2672D6);
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .lead {
    font-size: 24px;
    line-height: 1.3;
    padding: 22px 0 25px;
  }
}
/**worry**************************/
.worry {
  position: relative;
  padding-top: 94px;
  padding-bottom: 46px;
  background-color: #D9D9D9;
}

@media screen and (max-width: 768px) {
  .worry {
    padding-top: 61px;
    padding-bottom: 0;
  }
}
.worry::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 21%;
  bottom: -20.9%;
  left: 0;
  background-color: #D9D9D9;
  clip-path: polygon(0 0, 100% 0, 100% 5%, 50% 100%, 0 5%);
}

@media screen and (max-width: 768px) {
  .worry::before {
    height: 10%;
    bottom: -9.9%;
  }
}
.worry__heading h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: #011985;
}

@media screen and (max-width: 768px) {
  .worry__heading h2 {
    font-size: 26px;
    font-size: min(26px, 5.9090909091vw);
    margin: 0 -10px;
  }
}
.worry__inner {
  max-width: 1052px;
}

.worry__content {
  display: flex;
  gap: 87px;
  margin-top: 77px;
}

@media screen and (max-width: 768px) {
  .worry__content {
    flex-direction: column;
    gap: 69px;
    margin-top: 84px;
  }
}
.worry__image {
  width: 250px;
}

@media screen and (max-width: 768px) {
  .worry__image {
    width: 55%;
    max-width: 250px;
    margin: auto;
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .worry__text {
    order: 1;
  }
}
.worry__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .worry__list {
    margin-top: 0;
  }
}
.worry__item {
  position: relative;
  padding-left: 36px;
}

@media screen and (max-width: 768px) {
  .worry__item {
    padding-left: 29px;
  }
}
.worry__item h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.worry__item h3::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background-color: #242424;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .worry__item h3::before {
    width: 20px;
    height: 20px;
  }
}
.worry__item h3::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 14px;
  height: 6px;
  border-left: 3px solid #D9D9D9;
  border-bottom: 3px solid #D9D9D9;
  top: 8px;
  left: 5px;
  transform: rotate(-50deg);
}

@media screen and (max-width: 768px) {
  .worry__item h3::after {
    top: 6px;
    left: 3px;
    transform: rotate(-42deg);
  }
}
.worry__item p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .worry__item p {
    line-height: 1.2;
    margin-top: 21px;
    margin-left: -11px;
  }
}
.support {
  padding-top: 212px;
  padding-bottom: 75px;
  background-color: #F2F7FF;
}

@media screen and (max-width: 768px) {
  .support {
    padding-top: 142px;
    padding-bottom: 104px;
  }
}
.support__inner {
  max-width: 1120px;
}

.support__list {
  display: flex;
  gap: 30px;
  margin-top: 127px;
}

@media screen and (max-width: 768px) {
  .support__list {
    flex-direction: column;
    align-items: center;
    margin-top: 77px;
    gap: 64px;
  }
}
.support__item {
  position: relative;
  width: calc(33.3333333333% - 15px);
  padding: 70px 20px 48px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
  .support__item {
    width: 100%;
    max-width: 335px;
    padding: 70px 20px 67px;
  }
}
.support__item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-top: 30px;
}

.support__item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  margin-top: 20px;
}

.support__num {
  position: absolute;
  display: block;
  content: "";
  font-size: 50px;
  top: -19px;
  left: 25px;
  color: orange;
}

.support__image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  margin: auto;
}

.support__image img {
  width: auto;
}

.profile {
  padding-top: 86px;
  padding-bottom: 98px;
}

@media screen and (max-width: 768px) {
  .profile {
    padding-top: 63px;
    padding-bottom: 114px;
  }
}
.profile__inner {
  max-width: 980px;
}

@media screen and (max-width: 768px) {
  .profile__inner {
    padding: 0 25px;
  }
}
.profile__content {
  display: flex;
  gap: 100px;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .profile__content {
    flex-direction: column;
    align-items: center;
    gap: 72px;
    margin-top: 84px;
  }
}
.profile__image {
  position: relative;
  width: 200px;
}

.profile__image::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 240px;
  top: 15px;
  left: 15px;
  background-color: #D8EFFD;
  z-index: -1;
}

.profile__text {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .profile__text {
    width: 100%;
  }
}
.profile__text p.bold {
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  color: #011985;
}

@media screen and (max-width: 768px) {
  .profile__text p.bold {
    font-size: min(18px, 4.8vw);
    line-height: 1.2;
  }
}
.profile__name {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-top: 32px;
  text-align: center;
}

.profile-text__top {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 38px;
}

@media screen and (max-width: 768px) {
  .profile-text__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    max-width: 353px;
    margin-bottom: 27px;
  }
}
.profile__label {
  display: block;
  width: fit-content;
  font-size: 16px;
  line-height: 1.375;
  font-weight: 700;
  flex-shrink: 0;
  padding: 2px 15px;
  background-color: #2570D3;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .profile__label {
    font-size: min(16px, 4.2666666667vw);
    padding: min(2px, 0.5333333333vw) min(15px, 4vw);
  }
}
.profile__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 9px;
}

@media screen and (max-width: 768px) {
  .profile__list {
    margin-top: 19px;
  }
}
.profile__item {
  position: relative;
  font-size: 16px;
  line-height: 1.375;
  font-weight: 500;
  padding-left: 20px;
}

.profile__item::before {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 3px;
  top: 10px;
  left: 0;
  background-color: #AFAFAF;
}

.service {
  padding-top: 127px;
  padding-bottom: 104px;
  background-color: #F2F7FF;
}

@media screen and (max-width: 768px) {
  .service {
    padding-top: 68px;
    padding-bottom: 79px;
  }
}
.service__list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 114px;
  margin-bottom: 139px;
}

@media screen and (max-width: 768px) {
  .service__list {
    gap: 69px;
    margin-top: 62px;
    margin-bottom: 0;
  }
}
.service__item {
  display: flex;
  align-items: center;
  border-right: 6px solid #021C87;
}

@media screen and (max-width: 768px) {
  .service__item {
    flex-direction: column;
    gap: 27px;
    border-right: none;
  }
}
.service__item:nth-child(2) {
  flex-direction: row-reverse;
  border-right: none;
  border-left: 6px solid #021C87;
}

@media screen and (max-width: 768px) {
  .service__item:nth-child(2) {
    flex-direction: column;
    border-left: none;
  }
}
.service__image {
  width: 360px;
}

@media screen and (max-width: 768px) {
  .service__image {
    max-width: 390px;
    width: 100%;
  }
}
.service__text {
  padding: 0 36px;
  flex: 1;
  color: #141414;
}

@media screen and (max-width: 768px) {
  .service__text {
    padding: 0 0 0 20px;
    border-left: 6px solid #021C87;
  }
}
.service__text h3 {
  width: fit-content;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .service__text h3 {
    font-size: min(24px, 5.3333333333vw);
    margin-left: 0;
  }
}
.service__text p {
  line-height: 1.375;
  margin-top: 23px;
}

@media screen and (max-width: 768px) {
  .service__text p {
    margin-top: 7px;
  }
}
.hole {
  padding-top: 109px;
  padding-bottom: 107px;
  background-color: #8A8A8A;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .hole {
    padding-top: 65px;
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 768px) {
  .hole__heading h2 {
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) {
  .hole__heading span.small {
    margin-bottom: 19px;
  }
}
.hole__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 70px;
  margin-bottom: 82px;
}

@media screen and (max-width: 768px) {
  .hole__list {
    gap: 29px;
    margin: 70px calc(50% - 50vw) 0;
  }
}
.hole__item {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .hole__item {
    flex-direction: column;
  }
}
.hole__left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 330px;
  height: 200px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  padding: 19px;
  background-color: #D1A13A;
}

@media screen and (max-width: 768px) {
  .hole__left {
    width: 75%;
    min-width: 300px;
    height: auto;
    padding: 21px 20px 18px;
  }
}
.hole__left span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}

.hole__left span.num {
  position: relative;
  font-size: 22px;
  top: 3px;
}

.hole__left h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 18px;
  color: #242424;
}

@media screen and (max-width: 768px) {
  .hole__left h3 {
    font-size: min(20px, 4.5454545455vw);
  }
}
.hole__right {
  width: 75%;
  min-height: 200px;
  line-height: 1.375;
  padding: 30px 27px 28px 109px;
  margin-top: 15px;
  margin-left: -78px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .hole__right {
    width: 90%;
    padding: 89px 11px 44px 24px;
    margin-top: -45px;
    margin-left: auto;
  }
}
.hole__right h4 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-bottom: 4px;
  border-bottom: 4px solid #F1655C;
}

@media screen and (max-width: 768px) {
  .hole__right h4 {
    font-size: min(20px, 4.5454545455vw);
    letter-spacing: 0.03em;
    padding-right: 7px;
    padding-bottom: 11px;
    text-align: right;
  }
}
.hole__right p {
  font-size: 16px;
  line-height: 1.375;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .hole__right p {
    margin-top: 27px;
  }
}
.present {
  padding-top: 102px;
  padding-bottom: 125px;
  background-color: #E9E9E9;
  color: #242424;
}

@media screen and (max-width: 768px) {
  .present {
    padding-top: 78px;
    padding-bottom: 103px;
  }
}
.present__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 32px;
  font-size: min(32px, 4vw);
  font-weight: 800;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .present__heading {
    font-size: min(24px, 5.4545454545vw);
    line-height: 1.2;
    gap: min(8px, 1.8181818182vw);
  }
}
.present__heading:before, .present__heading:after {
  position: relative;
  display: inline-block;
  content: "";
  width: 37px;
  aspect-ratio: 37/60;
  top: 5px;
}

@media screen and (max-width: 768px) {
  .present__heading:before, .present__heading:after {
    top: -1px;
    width: min(28px, 6.3636363636vw);
  }
}
.present__heading::before {
  background: url(../images/present_deco_left.svg) no-repeat;
  background-size: contain;
}

.present__heading::after {
  background: url(../images/present_deco_right.svg) no-repeat;
  background-size: contain;
}

.present__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 86px;
}

@media screen and (max-width: 768px) {
  .present__list {
    gap: 55px;
    margin-top: 72px;
  }
}
.present__item {
  position: relative;
  padding: 45px 46px 52px 194px;
  background-color: #fff;
  color: #242424;
}

@media screen and (max-width: 768px) {
  .present__item {
    padding: 131px 10px 46px 10px;
  }
}
.present__item .label {
  position: absolute;
  display: block;
  content: "";
  top: -7px;
  left: 40px;
}

@media screen and (max-width: 768px) {
  .present__item .label {
    width: 64px;
    top: -6px;
    left: 46px;
  }
}
.present__item h3 {
  font-size: 24px;
  font-weight: 600;
  padding-left: 10px;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid #8A8A8A;
}

@media screen and (max-width: 768px) {
  .present__item h3 {
    font-size: min(24px, 5.4545454545vw);
    line-height: 1.2;
    padding-bottom: 15px;
    text-align: center;
  }
}
.present__item p {
  line-height: 1.35;
  margin-top: 20px;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .present__item p {
    margin-top: 28px;
  }
}
.flow {
  padding-top: 118px;
  padding-bottom: 119px;
  background-color: #F2F7FF;
}

@media screen and (max-width: 768px) {
  .flow {
    padding-top: 87px;
    padding-bottom: 69px;
  }
}
.flow__inner {
  max-width: 700px;
}

.flow__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 125px;
  margin-top: 59px;
}

.flow__item {
  position: relative;
  display: flex;
  gap: 22px;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .flow__item {
    gap: 13px;
  }
}
.flow__item:last-child {
  margin-top: -30px;
}

.flow__item:last-child .flow__left::after {
  display: none;
}

.flow__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.flow__left::after {
  display: block;
  content: "";
  width: 1px;
  height: 80px;
  text-align: center;
  background-color: #021C87;
}

@media screen and (max-width: 768px) {
  .flow__left::after {
    height: 100%;
  }
}
.flow__text {
  padding-top: 11px;
  flex: 1;
}

.flow__text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #021C87;
}

.flow__text p {
  line-height: 1.375;
  font-weight: 500;
  margin-top: 23px;
  color: #242424;
}

@media screen and (max-width: 768px) {
  .flow__text p {
    margin-top: 14px;
  }
}
.faq {
  padding-top: 132px;
  padding-bottom: 128px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-top: 69px;
  }
}
.faq__heading {
  margin-bottom: 95px;
}

@media screen and (max-width: 768px) {
  .faq__heading {
    margin-bottom: 40px;
  }
}
summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  background-color: #E9E9E9;
}

summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

details {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  details {
    margin: 20px calc(50% - 50vw);
  }
}
details:nth-of-type(1) {
  margin-top: 0;
}

.summary_inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 16px 16px 30px;
  font-weight: bold;
  color: #002255;
}

@media screen and (max-width: 768px) {
  .summary_inner {
    padding: 11px 16px 11px 12px;
  }
}
.summary_inner p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #242424;
}

@media screen and (max-width: 768px) {
  .summary_inner p {
    padding-right: 13px;
  }
}
/* --------アイコンがプラス------------------ */
.plus {
  display: block;
  position: relative;
  width: 20px;
  margin-left: auto;
  flex-shrink: 0;
  transform-origin: center 43%;
  /*  transition: transform 0.4s;*/
}

/* is-openedクラスが付与されたときのスタイル */
details.is-opened .plus::after {
  transform: rotate(0);
}

/* アイコンのバーのスタイル */
.plus::before,
.plus::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background-color: #D1983A;
}

.plus::before {
  left: 0;
  transform: rotate(0);
}

.plus::after {
  right: 0;
  transform: rotate(-90deg);
  transition: transform 0.4s;
}

.qa {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-right: 37px;
  color: #D1983A;
}

@media screen and (max-width: 768px) {
  .qa {
    font-size: 30px;
    margin-right: 14px;
  }
}
/* --------アコーディオンの中身のスタイル-------- */
.content {
  overflow: hidden;
  background-color: #fff;
  border: 2px solid #E9E9E9;
  border-top: none;
  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}

.content_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  padding: 25px 100px 30px;
  color: #242424;
}

@media screen and (max-width: 768px) {
  .content_inner {
    padding: 25px 13% 30px;
  }
}
/* thanks 完了画面
******************************************************************************************/
.thanks {
  padding: 90px 0 160px;
}

@media screen and (max-width: 768px) {
  .thanks {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
.thanks__title {
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .thanks__title {
    font-size: 20px;
  }
}
.thanks__text {
  font-size: 18px;
  line-height: 1.625;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .thanks__text {
    font-size: 14px;
  }
}
.thanks__btn {
  display: block;
  width: fit-content;
  font-size: 18px;
  text-decoration: underline;
  margin: 55px auto 0;
}

@media screen and (max-width: 768px) {
  .thanks__btn {
    font-size: 14px;
    margin: 20px auto 0;
  }
}
.contact__inner.thanks {
  background-color: #F2F7FF;
}

/* contact
******************************************************************************************/
.contact {
  position: relative;
  padding: 124px 0 150px;
  background-color: #F2F7FF;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 60px 0 56px;
  }
}
.contact__inner {
  position: relative;
  width: 100%;
  padding: 100px 80px 40px;
  margin: 85px auto 0;
  background-color: #fff;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 30px 15px 56px;
    margin: 52px auto 0;
  }
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

@media screen and (max-width: 768px) {
  .contact__list {
    gap: 6px;
  }
}
.contact__item {
  display: flex;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .contact__item {
    flex-direction: column;
    gap: 12px;
  }
}
.contact__item dt {
  width: 190px;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 21px;
  color: #3F3F3F;
}

@media screen and (max-width: 768px) {
  .contact__item dt {
    font-size: 18px;
    width: 100%;
  }
}
.contact__item dt .astarisk {
  position: relative;
  font-size: 12px;
  color: #C10000;
  top: -10px;
}

@media screen and (max-width: 768px) {
  .contact__item dt .astarisk {
    top: -6px;
  }
}
.contact__item dt p {
  font-size: 16px;
  font-weight: 500;
  text-indent: -13px;
}

@media screen and (max-width: 768px) {
  .contact__item dt p {
    display: inline-block;
  }
}
.contact__item dd {
  width: 100%;
  font-size: 16px;
}

.contact__item dd p {
  display: none;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 5px;
  color: #C10000;
}

@media screen and (max-width: 768px) {
  .contact__item dd {
    padding: 0 15px;
  }
}
input::placeholder,
textarea::placeholder {
  color: #B3B3B3;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 20px 30px;
  border: 1px solid #8A8A8A;
  border-radius: 6px;
}

textarea {
  min-height: 165px;
}

.agree {
  display: block;
  width: fit-content;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 39px auto 0 190px;
}

@media screen and (max-width: 768px) {
  .agree {
    font-size: min(16px, 3.6363636364vw);
    letter-spacing: 0;
    margin: 41px auto 0;
    transform: translateX(-12px);
  }
}
input[type=checkbox] {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  border: 1px solid #3F3F3F;
  vertical-align: middle;
  display: none;
}

label:has(input[type=checkbox]) {
  position: relative;
  padding-left: 48px;
}

@media screen and (max-width: 768px) {
  label:has(input[type=checkbox]) {
    padding-left: 24px;
  }
}
label:has(input[type=checkbox])::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  top: -5px;
  left: 0;
  border-radius: 3px;
  border: 1px solid #3F3F3F;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  label:has(input[type=checkbox])::before {
    width: 20px;
    height: 20px;
    top: -1px;
  }
}
label:has(input[type=checkbox]:checked)::before {
  background-color: #fff;
}

label:has(input[type=checkbox]:checked)::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 10px;
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
  top: 3px;
  left: 5px;
  transform: rotate(-50deg);
}

@media screen and (max-width: 768px) {
  label:has(input[type=checkbox]:checked)::after {
    width: 14px;
    height: 7px;
    top: 4px;
    left: 3px;
  }
}
.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-list-item {
  margin: 0;
}

.contact-btn-wrap {
  margin: 85px auto 0;
}

@media screen and (max-width: 768px) {
  .contact-btn-wrap {
    margin: 20px auto 0;
    padding: 0 6px;
  }
}
input[type=submit] {
  display: block;
  width: 100%;
  font-size: 20px;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 0.19em;
  background-color: #D1983A;
  color: #fff;
  text-align: center;
  transition: opacity 0.4s;
  border-radius: 6px;
  cursor: pointer;
}

input[type=submit]:hover, input[type=submit]:active {
  opacity: 0.6;
}

/* 404
******************************************************************************************/
.page-404 {
  position: relative;
  min-height: calc(100vh - 316px);
  padding: 90px 0 120px;
}

@media screen and (max-width: 768px) {
  .page-404 {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
  }
}
.page-404 p {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #242424;
  text-align: center;
}

.page-404 a {
  display: block;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #242424;
  margin-top: 40px;
  text-align: center;
  text-decoration: underline;
  transition: opacity 0.4s;
}

.page-404 a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .page-404 a {
    margin-top: 20px;
  }
}
.page-404__inner {
  position: relative;
}