@charset "UTF-8";
/***
  The new CSS reset - version 1.7.3 (last updated 7.8.2022)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
*/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
  - fix for the content editable attribute will work properly.
  - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

.hover-anime {
  transition: all 0.4s ease;
}

.hover-anime:hover {
  opacity: 0.6;
}

html {
  font-size: 62.5%;
}

body {
  background: url(../images/bg.webp), #F2F0F1;
  background-blend-mode: overlay;
  color: #2E2E2E;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2;
  text-align: justify;
  min-width: 375px;
  font-feature-settings: "palt" on;
}
@media screen and (min-width: 961px) {
  body {
    overflow-y: scroll;
    min-width: 1100px;
  }
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media screen and (min-width: 961px) {
  img,
  svg {
    width: auto;
  }
}

.c-svg-sprite {
  display: none;
}

a,
button {
  cursor: pointer;
}

.l-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 30px;
}
@media screen and (max-width: 960px) {
  .l-inner {
    padding-inline: 33px;
  }
}

.c-svg-sprite {
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.c-button {
  width: 456px;
  height: 72px;
}
@media screen and (max-width: 960px) {
  .c-button {
    width: 186px;
    height: 42px;
  }
}

.c-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  border-radius: 73px;
}
@media screen and (max-width: 960px) {
  .c-button a {
    gap: 4px;
  }
}

.c-button--mail a {
  background: #1381C4;
}

.c-button--mitsumori a {
  background: #E4B524;
}

.c-button__icon {
  width: 26px;
}
@media screen and (max-width: 960px) {
  .c-button__icon {
    width: 16px;
  }
}

.c-button p {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .c-button p {
    font-size: 1.3rem;
  }
}

.c-title {
  background: #024082;
  padding: 14px 0 18px;
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .c-title {
    font-size: 2rem;
  }
}

.c-title span {
  display: inline-block;
  margin: 0 10px;
  padding: 0 10px;
  background: linear-gradient(transparent 70%, #E4B524 70%);
  font-size: 4rem;
  line-height: 1.3;
}
@media screen and (max-width: 960px) {
  .c-title span {
    margin: 0;
    padding: 0;
    font-size: 2.6rem;
    background: linear-gradient(transparent 75%, #E4B524 75%);
  }
}

.p-mv {
  position: relative;
  clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-mv {
    padding-top: 83px;
  }
}

.p-mv__image {
  width: 100%;
  height: 1055px;
}
@media screen and (max-width: 960px) {
  .p-mv__image {
    height: auto;
    aspect-ratio: 375/767;
  }
}

.p-mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .p-mv__image img {
    -o-object-position: top center;
       object-position: top center;
  }
}

.p-mv__link {
  position: absolute;
  top: 123px;
  right: 0;
}
@media screen and (max-width: 960px) {
  .p-mv__link {
    top: 200px;
  }
}

.p-mv__link a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #024082;
  padding: 15px 4px 15px 10px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.p-mv__link a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .p-mv__link a span {
    width: 22px;
    height: 22px;
  }
}

.p-mv__link a span::before {
  content: "";
  position: absolute;
  left: 8px;
  width: 8px;
  height: 12px;
  background: #024082;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.p-mv__head-text {
  position: absolute;
  top: 130px;
  left: 50%;
  width: 687px;
  height: auto;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .p-mv__head-text {
    top: 110px;
    width: 243px;
  }
}

.p-mv__text-area {
  position: absolute;
  top: 368px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .p-mv__text-area {
    top: auto;
    bottom: 110px;
  }
}

.p-mv__title {
  width: 1072px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .p-mv__title {
    width: 375px;
    height: auto;
  }
}

.p-mv__button-area {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: -20px;
}
@media screen and (max-width: 960px) {
  .p-mv__button-area {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: -54px;
  }
}

.p-intro {
  position: relative;
  z-index: 1;
  margin-top: -264px;
  padding-bottom: 120px;
}
@media screen and (max-width: 960px) {
  .p-intro {
    margin-top: -60px;
    padding-bottom: 40px;
  }
}

.p-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 68px);
  background: url(../images/bg-tra.webp), #1381C4;
  background-blend-mode: overlay;
  clip-path: polygon(50% 0%, 100% 29%, 100% 100%, 0 100%, 0 29%);
}
@media screen and (max-width: 960px) {
  .p-intro::after {
    height: calc(100% - 270px);
    clip-path: polygon(50% 0%, 100% 9%, 100% 100%, 0 100%, 0 9%);
  }
}

.p-intro__read {
  max-width: 1040px;
  margin: 0 auto;
  filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 960px) {
  .p-intro__read {
    width: 100%;
    padding-inline: 33px;
  }
}

.p-intro__title {
  max-width: 1139px;
  margin: 90px auto 0;
}
@media screen and (max-width: 960px) {
  .p-intro__title {
    width: 351px;
    margin-top: 16px;
  }
}

.p-intro__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 19px;
  margin-top: 58px;
}
@media screen and (max-width: 960px) {
  .p-intro__list {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 28px;
  }
}

.p-intro__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: #fff;
  border-radius: 10px;
  height: 206px;
}
@media screen and (max-width: 960px) {
  .p-intro__item a {
    height: 147px;
  }
}

.p-intro__item a::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 33px;
  height: 33px;
  background: url(../images/icon_triangle.svg) center center/contain no-repeat;
}
@media screen and (max-width: 960px) {
  .p-intro__item a::before {
    bottom: 6px;
    right: 6px;
  }
}

.p-intro__num {
  position: absolute;
  top: -27px;
  left: 17px;
  width: auto;
  height: 58px;
}
@media screen and (max-width: 960px) {
  .p-intro__num {
    height: 36px;
    top: -18px;
    left: 10px;
  }
}

.p-intro__num img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-intro__text {
  padding-top: 16px;
  color: #024082;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3461;
}
@media screen and (max-width: 960px) {
  .p-intro__text {
    padding-top: 0;
    font-size: 1.5rem;
    line-height: 1.2666;
  }
}

.p-intro__text span {
  color: #E4B524;
  font-size: 3.5rem;
  line-height: 1.2857;
}
@media screen and (max-width: 960px) {
  .p-intro__text span {
    font-size: 2.6rem;
    line-height: 1.1153;
  }
}

.p-merit__text {
  margin-top: 28px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.44;
}

.p-merit__wrapper {
  position: relative;
  margin-top: 44px;
  background: #fff;
  border-radius: 10px;
}

.p-merit__num {
  position: absolute;
  top: -42px;
  left: 42px;
  height: 95px;
}
@media screen and (max-width: 960px) {
  .p-merit__num {
    top: -22px;
    left: 17px;
    height: 56px;
  }
}

.p-merit__num img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-merit01 {
  padding: 130px 0;
  background: url(../images/bg-tra.webp), #C8E3F3;
  background-blend-mode: overlay;
}
@media screen and (max-width: 960px) {
  .p-merit01 {
    padding: 80px 0 30px;
  }
}

.p-merit01 .p-merit__wrapper {
  padding: 120px 110px 46px 170px;
}
@media screen and (max-width: 960px) {
  .p-merit01 .p-merit__wrapper {
    padding: 70px 30px 30px;
  }
}

.p-merit01-cost__graph-title {
  color: #E4B524;
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.36;
}
@media screen and (max-width: 960px) {
  .p-merit01-cost__graph-title {
    text-align: center;
    font-size: 3.3rem;
  }
}

.p-merit01-cost__graph-image {
  width: 735px;
  margin-inline: -16px;
}
@media screen and (max-width: 960px) {
  .p-merit01-cost__graph-image {
    width: auto;
    height: auto;
    aspect-ratio: 283/142;
  }
}

.p-merit01-cost__desc {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .p-merit01-cost__desc {
    flex-direction: column-reverse;
    margin-top: 40px;
  }
}

.p-merit01-cost__desc-text {
  width: 100%;
  background: #E4B524;
  border-radius: 10px;
  margin-top: 30px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4166;
}
@media screen and (max-width: 960px) {
  .p-merit01-cost__desc-text {
    margin: 0;
    padding: 24px;
    font-size: 2rem;
    line-height: 1.2;
  }
}

.p-merit01-cost__desc-image {
  flex-shrink: 0;
  width: 161px;
  height: 190px;
}
@media screen and (max-width: 960px) {
  .p-merit01-cost__desc-image {
    width: 131px;
    height: 155px;
  }
}

.p-merit01-cost__desc-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-merit01-price {
  background: url(../images/bg-tra.webp), #1381C4;
  border-radius: 10px;
  margin-top: 60px;
  padding: 70px 45px;
}
@media screen and (max-width: 960px) {
  .p-merit01-price {
    padding: 50px 15px 15px;
  }
}

.p-merit01-price__title {
  width: 839px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-merit01-price__title {
    width: 241px;
  }
}

.p-merit01-price__graph {
  margin-top: 60px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-merit01-price__graph {
    margin-top: 20px;
  }
}

.p-merit01-ex {
  margin-top: 60px;
  text-align: center;
}

.p-merit01-ex__title {
  color: #1381C4;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.p-merit01-ex__text {
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.375;
}

.p-merit01-ex__list {
  margin-top: 46px;
  padding-bottom: 60px;
}

.p-merit01-ex__item.swiper-slide {
  width: 290px;
  border-radius: 8px;
  overflow: hidden;
}

.p-merit01-ex__pagination.swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 46px;
}
.p-merit01-ex__pagination.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
}
.p-merit01-ex__pagination.swiper-pagination .swiper-pagination-bullet-active {
  background: #2E2E2E;
}

.p-contact {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #024082;
  border-radius: 10px;
  padding: 100px 0 120px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-contact {
    padding: 46px 0 42px;
  }
}

.p-contact__title {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.26;
}
@media screen and (max-width: 960px) {
  .p-contact__title {
    font-size: 3.3rem;
  }
}

.p-contact__title::before {
  content: "";
  position: absolute;
  top: 22px;
  left: -77px;
  width: 55px;
  height: 104px;
  background: url(../images/title_deco.svg);
}
@media screen and (max-width: 960px) {
  .p-contact__title::before {
    display: none;
  }
}

.p-contact__title::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -77px;
  width: 55px;
  height: 104px;
  background: url(../images/title_deco.svg);
  transform: scaleX(-1);
}
@media screen and (max-width: 960px) {
  .p-contact__title::after {
    display: none;
  }
}

.p-contact__button-area {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 44px;
}
@media screen and (max-width: 960px) {
  .p-contact__button-area {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }
}

.p-merit02 {
  padding: 130px 0;
  background: #F2F0F1;
}
@media screen and (max-width: 960px) {
  .p-merit02 {
    padding: 50px 0;
  }
}

.p-merit02 .p-merit__wrapper {
  margin-top: 84px;
  padding: 50px 76px 70px;
}
@media screen and (max-width: 960px) {
  .p-merit02 .p-merit__wrapper {
    margin-top: 50px;
    padding: 60px 20px 30px;
  }
}

.p-merit02__logo {
  width: 513px;
  height: auto;
  aspect-ratio: 513/472;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-merit02__logo {
    width: 100%;
  }
}

.p-merit02__point {
  position: relative;
  background: #024082;
  border-radius: 10px;
  margin-top: 70px;
  padding: 35px 0 20px;
}
@media screen and (max-width: 960px) {
  .p-merit02__point {
    margin: 50px 10px 0;
    padding: 27px 0;
  }
}

.p-merit02__point-title {
  position: absolute;
  top: -54px;
  left: 50%;
  text-align: center;
  width: 270px;
  height: 170px;
  background: #024082;
  border-radius: 50%;
  transform: translateX(-50%);
  padding-top: 24px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-merit02__point-title {
    top: -44px;
    width: 143px;
    height: 90px;
    padding-top: 16px;
    font-size: 2rem;
  }
}

.p-merit02__point-title::before {
  content: "";
  position: absolute;
  top: 74px;
  left: 50%;
  width: 136px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .p-merit02__point-title::before {
    top: 45px;
    width: 76px;
  }
}

.p-merit02__point-text {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.55;
}
@media screen and (max-width: 960px) {
  .p-merit02__point-text {
    font-size: 1.4rem;
  }
}

.p-merit02__point-text span {
  color: #E4B524;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.19;
}
@media screen and (max-width: 960px) {
  .p-merit02__point-text span {
    font-size: 1.9rem;
  }
}

.p-merit03 {
  padding: 130px 0;
  background: url(../images/bg-tra.webp), #C8E3F3;
  background-blend-mode: overlay;
}
@media screen and (max-width: 960px) {
  .p-merit03 {
    padding: 50px 0;
  }
}

.p-merit03 .p-merit__wrapper {
  position: relative;
  padding: 112px 80px 80px;
}
@media screen and (max-width: 960px) {
  .p-merit03 .p-merit__wrapper {
    padding: 0 0 30px;
  }
}

.p-merit03__image {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .p-merit03__image {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }
}

.p-merit03__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-merit03__title {
  color: #E4B524;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
@media screen and (max-width: 960px) {
  .p-merit03__title {
    margin-top: 25px;
    text-align: center;
    font-size: 3.3rem;
  }
}

.p-merit03__text {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .p-merit03__text {
    margin-top: 18px;
    padding: 0 30px;
  }
}

.p-merit04 {
  padding-top: 130px;
  background: #F2F0F1;
}
@media screen and (max-width: 960px) {
  .p-merit04 {
    padding-top: 50px;
  }
}

.p-merit04 .p-merit__wrapper {
  margin-bottom: 130px;
  padding: 66px 80px 65px;
}
@media screen and (max-width: 960px) {
  .p-merit04 .p-merit__wrapper {
    margin-bottom: 50px;
    padding: 60px 30px 36px;
  }
}

.p-merit04__image {
  width: 658px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-merit04__image {
    width: 100%;
  }
}

.p-merit04__logo {
  position: absolute;
  bottom: 170px;
  right: 160px;
  width: 192px;
  height: 192px;
}
@media screen and (max-width: 960px) {
  .p-merit04__logo {
    position: static;
    margin: 8px auto 0;
    width: 111px;
    height: 111px;
  }
}

.p-merit04__title {
  margin-top: 50px;
  color: #024082;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
@media screen and (max-width: 960px) {
  .p-merit04__title {
    margin-top: 14px;
    text-align: center;
    font-size: 3.3rem;
    white-space: nowrap;
  }
}

.p-merit04__text {
  margin-top: 21px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 2;
}

.p-merit04__button {
  position: absolute;
  bottom: 65px;
  right: 80px;
  width: 350px;
  height: 72px;
}
@media screen and (max-width: 960px) {
  .p-merit04__button {
    position: static;
    margin: 28px auto 0;
    width: 212px;
    height: 42px;
  }
}

.p-merit04__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 73px;
  background: #E4B524;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-merit04__button a {
    font-size: 1.3rem;
  }
}

.p-feature {
  position: relative;
  background: #C7E3F3;
  margin-top: -230px;
  margin-bottom: 100px;
  padding: 360px 0 100px;
  clip-path: polygon(50% 0%, 100% 24%, 100% 100%, 0 100%, 0 24%);
}
@media screen and (max-width: 960px) {
  .p-feature {
    margin-top: -176px;
    margin-bottom: 50px;
    padding: 256px 0 50px;
    clip-path: polygon(50% 0%, 100% 13%, 100% 100%, 0 100%, 0 13%);
  }
}

.p-feature__title {
  text-align: center;
  color: #1381C4;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-shadow: 1px 1px 4px #FFFFFF;
}
@media screen and (max-width: 960px) {
  .p-feature__title {
    font-size: 4rem;
  }
}

.p-feature__list {
  width: 867px;
  margin: 50px auto 0;
}
@media screen and (max-width: 960px) {
  .p-feature__list {
    width: 100%;
    margin-top: 44px;
  }
}

.p-feature__item {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-feature__item {
    display: block;
  }
}

.p-feature__item + .p-feature__item {
  margin-top: 12px;
}

.p-feature__heading {
  background: #024082;
  padding: 17px 19px;
}
@media screen and (max-width: 960px) {
  .p-feature__heading {
    height: 52px;
    padding: 17px 0;
  }
}

.p-feature__heading img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-feature__text {
  padding-left: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-feature__text {
    padding: 25px 0;
    text-align: center;
    font-size: 2rem;
    line-height: 1.3;
  }
}

.p-feature__text span {
  color: #024082;
  font-size: 3.5rem;
}
@media screen and (max-width: 960px) {
  .p-feature__text span {
    font-size: 2.8rem;
  }
}

.p-scroll {
  width: 100%;
  overflow: hidden;
  margin-top: 52px;
}
@media screen and (max-width: 960px) {
  .p-scroll {
    margin-top: 24px;
  }
}

.p-scroll__wrapper {
  display: flex;
  gap: 60px;
  animation: scroll-left 30s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .p-scroll__wrapper {
    gap: 30px;
  }
}

.p-scroll__item {
  width: 1920px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .p-scroll__item {
    width: 1168px;
  }
}

.p-scroll__item img {
  width: 100%;
  height: auto;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-flow {
  background: url(../images/bg-tra.webp), #1381C4;
  background-blend-mode: overlay;
  margin-top: 100px;
  padding: 100px 0;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-flow {
    margin-top: 50px;
    padding: 38px 0 50px;
  }
}

.p-flow__title {
  color: #fff;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2727;
}
@media screen and (max-width: 960px) {
  .p-flow__title {
    font-size: 3.3rem;
  }
}

.p-flow__step {
  margin-top: 30px;
}
@media screen and (max-width: 960px) {
  .p-flow__step {
    margin-top: 20px;
  }
}

.p-flow__text {
  margin-top: 50px;
  color: #fff;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2727;
}
@media screen and (max-width: 960px) {
  .p-flow__text {
    margin-top: 26px;
    font-size: 2.6rem;
  }
}

.p-faq {
  padding-top: 100px;
}
@media screen and (max-width: 960px) {
  .p-faq {
    padding-top: 50px;
  }
}

.p-faq__title {
  text-align: center;
  color: #024082;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2121;
}
@media screen and (max-width: 960px) {
  .p-faq__title {
    font-size: 3.3rem;
  }
}

.p-faq__list {
  margin-top: 52px;
}
@media screen and (max-width: 960px) {
  .p-faq__list {
    margin-top: 40px;
  }
}

.p-faq__item {
  background: #fff;
  position: relative;
  padding: 32px 23px 36px 84px;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .p-faq__item {
    padding: 12px 20px 12px 64px;
  }
}

.p-faq__item + .p-faq__item {
  margin-top: 10px;
}

.p-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.p-faq__question-text {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 70px;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
@media screen and (max-width: 960px) {
  .p-faq__question-text {
    padding-right: 44px;
    font-size: 1.8rem;
  }
}

.p-faq__question::before {
  content: "Q";
  position: absolute;
  left: -28px;
  color: #024082;
  font-family: "Inter", sans-serif;
  font-size: 4.3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(-100%);
}
@media screen and (max-width: 960px) {
  .p-faq__question::before {
    top: -8px;
    left: -10px;
  }
}

.p-faq__answer {
  height: 0;
  overflow: hidden;
}

.p-faq__answer-text {
  padding: 30px 70px 0 0;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-faq__answer-text {
    padding: 2px 44px 0 0;
    font-size: 1.8rem;
  }
}

.p-faq__toggle {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  pointer-events: none;
  border-radius: 50%;
  background: #2E2E2E;
  transition: all 0.4s ease;
}

.p-faq__toggle::before,
.p-faq__toggle::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: #fff;
  transition: all 0.4s ease;
}

.p-faq__toggle::after {
  transform: rotate(90deg);
}

.p-faq__question.is-active .p-faq__question-text {
  opacity: 0.5;
}
.p-faq__question.is-active .p-faq__toggle {
  opacity: 0.5;
}
.p-faq__question.is-active .p-faq__toggle::after {
  transform: rotate(180deg);
}

.p-contact-form {
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .p-contact-form {
    padding: 100px 0 80px;
  }
}

.p-contact-form__title {
  text-align: center;
  color: #024082;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2121;
}
@media screen and (max-width: 960px) {
  .p-contact-form__title {
    font-size: 3.3rem;
  }
}

.p-contact-form__wrapper {
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .p-contact-form__wrapper {
    margin-top: 42px;
  }
}

.p-contact-form__form {
  background: #fff;
  box-shadow: 3px 3px 23px rgba(35, 95, 236, 0.12);
  border-radius: 20px;
  padding: 72px;
}
@media screen and (max-width: 960px) {
  .p-contact-form__form {
    padding: 20px;
  }
}

.p-contact-form__item {
  padding: 30px 42px;
  border-bottom: 1px solid #F1EFF0;
}
@media screen and (max-width: 960px) {
  .p-contact-form__item {
    padding: 30px 0;
  }
}

.p-contact-form__label {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.p-contact-form__tag {
  display: inline-block;
  background: #E4B524;
  color: #fff;
  font-size: 1.3rem;
  padding: 6px 9px;
  margin-right: 12px;
  border-radius: 4px;
}
.p-contact-form__tag--any {
  background: #2E2E2E;
}

.p-contact-form__note {
  margin-left: 10px;
  font-size: 1.3rem;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-contact-form__note {
    display: block;
    margin: 4px 0 0;
  }
}

.p-contact-form__input,
.p-contact-form__textarea {
  width: 100%;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 5px;
  background: #EEEEF2;
  border: 1px solid #F1EFF0;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.63;
}
@media screen and (max-width: 960px) {
  .p-contact-form__input,
  .p-contact-form__textarea {
    margin-top: 10px;
  }
}

.p-contact-form__input::-moz-placeholder, .p-contact-form__textarea::-moz-placeholder {
  opacity: 0.33;
}

.p-contact-form__input::placeholder,
.p-contact-form__textarea::placeholder {
  opacity: 0.33;
}

.p-contact-form__textarea {
  height: 100px;
  resize: vertical;
}

.p-contact-form__scroll {
  width: 100%;
  height: 176px;
  margin-top: 30px;
  border: 1px solid #F1EFF0;
  border-radius: 5px;
  overflow-y: scroll;
}

.p-contact-form__scroll-content {
  width: 100%;
  height: 100%;
  padding: 40px;
}
@media screen and (max-width: 960px) {
  .p-contact-form__scroll-content {
    padding: 30px;
  }
}

.p-contact-form__scroll-content h3 {
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1;
}

.p-contact-form__scroll-content p {
  margin-top: 25px;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 1.91;
  padding-bottom: 40px;
}

.p-contact-form__check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.p-contact-form__check input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: 16px;
  height: 16px;
  background: #000;
  border: 1px solid #F2F0F1;
}

.p-contact-form__submit {
  text-align: center;
  margin-top: 32px;
}

.p-contact-form__button {
  width: 271px;
  height: 51px;
  margin: 30px auto 0;
}

.p-contact-form__button button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: #2E2E2E;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.p-contact-form__button-arrow {
  position: absolute;
  right: 13px;
  width: 13px;
  height: 11px;
}

.s-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  padding: 24px 30px;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .s-header {
    display: flex;
    justify-content: space-between;
    padding: 19px;
  }
}

.s-header__title {
  position: relative;
}
@media screen and (max-width: 960px) {
  .s-header__title {
    display: flex;
    justify-content: center;
  }
}

.s-header__logo {
  width: 208px;
  height: 43px;
}
@media screen and (max-width: 960px) {
  .s-header__logo {
    width: 173px;
    height: 36px;
  }
}

.s-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.s-header__title p {
  position: absolute;
  bottom: -16px;
  left: 70px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .s-header__title p {
    position: static;
  }
}

.s-header__bubble {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  background: #024082;
  padding: 20px 32px;
  transition: all 0.4s ease;
}
@media screen and (max-width: 960px) {
  .s-header__bubble {
    background: transparent;
    width: 100%;
    padding: 18px 33px;
  }
}

.s-header__bubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: 126px;
  width: 22px;
  height: 11px;
  background: #024082;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  transform: translateY(-100%);
}
@media screen and (max-width: 960px) {
  .s-header__bubble::before {
    display: none;
  }
}

.s-header__bubble.is-hide {
  opacity: 0;
}

.s-header__bubble-text {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .s-header__bubble-text {
    display: none;
  }
}

.s-header__bubble-button {
  width: 194px;
  height: 24px;
  margin-top: 16px;
}
@media screen and (max-width: 960px) {
  .s-header__bubble-button {
    width: 100%;
    height: 50px;
    margin: 0;
  }
}

.s-header__bubble-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  background: #E4B524;
  border-radius: 60px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .s-header__bubble-button a {
    justify-content: flex-start;
    background: #024082;
    border-radius: 10px;
    padding-left: 10px;
    font-size: 1.3rem;
  }
}

.s-header__bubble-button span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .s-header__bubble-button span {
    width: 22px;
    height: 22px;
  }
}

.s-header__bubble-button span::before {
  content: "";
  position: absolute;
  left: 5px;
  width: 5px;
  height: 7px;
  background: #E4B524;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (max-width: 960px) {
  .s-header__bubble-button span::before {
    left: 8px;
    width: 7px;
    height: 12px;
    background: #024082;
  }
}

.s-header__nav {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 960px) {
  .s-header__nav {
    display: none;
  }
}

.s-header__nav-item {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.s-header__nav-item a {
  display: block;
}

.s-header__button-area {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.s-header__button {
  width: 200px;
  height: 45px;
}
@media screen and (max-width: 960px) {
  .s-header__button {
    width: 44px;
    height: 45px;
  }
}

.s-header__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.s-header__button--mail a {
  background: #1381C4;
}

.s-header__button--mitsumori a {
  background: #E4B524;
}

.s-header__button-icon {
  width: 20px;
}
@media screen and (max-width: 960px) {
  .s-header__button-icon {
    width: 16px;
    height: 17px;
  }
}

.s-header__button p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .s-header__button p {
    display: none;
  }
}

.s-footer {
  background: #fff;
  padding: 92px 0;
}
@media screen and (max-width: 960px) {
  .s-footer {
    padding: 62px 0;
  }
}

.s-footer__logo {
  width: 348px;
  height: auto;
  aspect-ratio: 348/40;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .s-footer__logo {
    width: 261px;
  }
}

.s-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 961px) {
  .u-sp {
    display: none;
  }
}

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

.u-mt05 {
  margin-top: 0.5em;
}

.u-mb05 {
  margin-bottom: 0.5em;
}

.u-pt05 {
  padding-top: 0.5em;
}

.u-pb05 {
  padding-bottom: 0.5em;
}

.u-mt1 {
  margin-top: 1em;
}

.u-mb1 {
  margin-bottom: 1em;
}

.u-pt1 {
  padding-top: 1em;
}

.u-pb1 {
  padding-bottom: 1em;
}

.u-mt2 {
  margin-top: 2em;
}

.u-mb2 {
  margin-bottom: 2em;
}

.u-pt2 {
  padding-top: 2em;
}

.u-pb2 {
  padding-bottom: 2em;
}

.u-mt3 {
  margin-top: 3em;
}

.u-mb3 {
  margin-bottom: 3em;
}

.u-pt3 {
  padding-top: 3em;
}

.u-pb3 {
  padding-bottom: 3em;
}

.u-mt4 {
  margin-top: 4em;
}

.u-mb4 {
  margin-bottom: 4em;
}

.u-pt4 {
  padding-top: 4em;
}

.u-pb4 {
  padding-bottom: 4em;
}

.u-mt5 {
  margin-top: 5em;
}

.u-mb5 {
  margin-bottom: 5em;
}

.u-pt5 {
  padding-top: 5em;
}

.u-pb5 {
  padding-bottom: 5em;
}

.u-white {
  color: #fff;
  fill: #fff;
}
.u-white * {
  color: #fff;
  fill: #fff;
}

.u-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.u-right {
  text-align: right;
  margin-left: auto;
}

.u-left {
  text-align: left;
  margin-right: auto;
}

@media screen and (min-width: 961px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .u-pc {
    display: none !important;
  }
}