@charset "UTF-8";
/* faq
======================================= */
.faq__inner {
  padding-top: 5em;
  padding-bottom: 0em;
}
@media (max-width: 768px) {
  .faq__inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5em;
  }
}
.faq__container {
  background-color: #fff;
  padding: 5em 1.25em;
  border-radius: 10px;
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .faq__container {
    margin-bottom: 2.5em;
    padding: 2.5rem 1.25rem;
  }
}
.faq__list {
  max-width: 879px;
  margin: auto;
}
.faq__item {
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 2px solid #007CCF;
  cursor: pointer;
  overflow: hidden;
}
.faq__item:nth-child(n+2) {
  margin-top: 2.5em;
}
@media (max-width: 768px) {
  .faq__item:nth-child(n+2) {
    margin-top: 1.5em;
  }
}
.faq__item.is-open .faq__item-question {
  background-color: #007CCF;
}
.faq__item.is-open .faq__item-question-text {
  color: #fff;
}
.faq__item.is-open .faq__item-question-btn {
  background-color: #fff;
  transform: rotate(180deg);
}
.faq__item.is-open .faq__item-question-btn::before {
  border-right: 2px solid #007CCF;
  border-bottom: 2px solid #007CCF;
}
@media (max-width: 768px) {
  .faq__item.is-open .faq__item-question-btn::before {
    transform: translate(-1px, -1px) rotate(45deg);
  }
}
.faq__item-question-text {
  font-weight: 600;
  color: #007CCF;
  line-height: 1.6875;
  padding: 1.375rem 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .faq__item-question-text {
    font-size: 0.875em;
    padding: 1em;
  }
}
.faq__item-question-btn {
  display: block;
  width: 29.5px;
  height: 29.5px;
  flex-shrink: 0;
  background-color: #007CCF;
  border: 1px solid #007CCF;
  border-radius: 15px;
  position: relative;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .faq__item-question-btn {
    width: 24px;
    height: 24px;
  }
}
.faq__item-question-btn::before {
  position: absolute;
  top: 7px;
  left: 9px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .faq__item-question-btn::before {
    top: 6px;
    left: 7.5px;
    width: 8px;
    height: 8px;
  }
}
.faq__item-answer {
  display: none;
  padding: 2.5em 1.875em;
}
@media (max-width: 768px) {
  .faq__item-answer {
    font-size: 0.875em;
    padding: 1em;
  }
}
.faq__btn {
  margin: auto;
}

/* loading
======================================= */
.loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: auto;
}
.loading-wrapper.is-hidden {
  pointer-events: none;
}
.loading-wrapper.is-hidden .loading-slide-layer {
  transform: translateY(-160%);
}
.loading-wrapper.is-hidden .loading__logo,
.loading-wrapper.is-hidden .loading__catch {
  opacity: 0;
}
.loading-slide-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.25s;
}
.loading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.loading-fog {
  position: absolute;
  top: 100%;
  left: -20%;
  width: 140%;
  height: 50vh;
  background: radial-gradient(ellipse 45% 100% at 15% 0%, #ffffff 0%, #ffffff 10%, transparent 65%), radial-gradient(ellipse 45% 100% at 85% 0%, #ffffff 0%, #ffffff 10%, transparent 65%), radial-gradient(ellipse 80% 50% at 50% 0%, #ffffff 0%, transparent 70%), linear-gradient(to bottom, #ffffff 0%, transparent 20%);
  transform-origin: top center;
  animation: fog-sway 3.5s ease-in-out infinite alternate;
}
.loading__inr {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  top: 114px;
  transition: opacity 1s ease-out;
}
@media (min-width: 1025px) {
  .loading__inr {
    top: 274px;
    width: 48.88%;
  }
}
.loading__catch {
  display: block;
  margin: auto;
  width: 100%;
  opacity: 1;
  transition-property: opacity;
  transition-timing-function: ease;
  transition-duration: 0.8s;
  transition-delay: 0.4s;
}
.loading__logo {
  display: block;
  margin: 67px auto 0;
  width: 94%;
  height: auto;
  opacity: 1;
  transition-property: opacity;
  transition-timing-function: ease;
  transition-duration: 0.8s;
  transition-delay: 0.3s;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .loading__logo {
    margin: 63px auto 0;
    width: 90%;
  }
}
@media (min-width: 1025px) {
  .loading__logo {
    max-width: 442px;
    width: 100%;
    margin: 76px auto 0;
  }
}

@keyframes fog-sway {
  0% {
    transform: translateX(-5%) scaleY(0.9) skewX(3deg);
  }
  50% {
    transform: translateX(4%) scaleY(1.2) skewX(-3deg);
  }
  100% {
    transform: translateX(-3%) scaleY(0.85) skewX(2deg);
  }
}
/* youtube
======================================= */
.yt__player {
  width: 100%;
  aspect-ratio: 9/16;
  height: auto;
}
@media (max-width: 768px) {
  .yt__player {
    margin-inline: auto;
  }
}

/* パララックス
======================================= */
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/* fv
======================================= */
.fv {
  position: relative;
}
.fv__parallax {
  position: relative;
}
.fv__clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 230px;
  clip-path: inset(0);
  z-index: -1;
}
.fv__fixed {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background: url(../img/top/fv/fv-pc.jpg) no-repeat left top/cover;
}
@media (max-width: 768px) {
  .fv__fixed {
    background: url(../img/top/fv/fv-sp.jpg) no-repeat center top/cover;
  }
}
.fv__logo {
  height: auto;
  margin: auto;
  display: block;
  width: 86%;
}
@media (min-width: 1025px) {
  .fv__logo {
    max-width: 442px;
    width: 100%;
  }
}
.fv__catch {
  font-family: "Sawarabi Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #ffffff;
  text-shadow: 0 3px 6px #007CCF;
  text-align: center;
  font-weight: 500;
  width: 100%;
  padding: 114px 16px 70px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fv__catch {
    width: calc(100% - 32px);
    padding: 114px 0 70px;
    margin: auto;
  }
}
@media (min-width: 1025px) {
  .fv__catch {
    width: 48.88%;
    padding: 105px 0 80px;
    margin: auto;
  }
}
.fv__copy {
  position: relative;
  width: 100%;
  height: 500px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fv__copy {
    height: 80vh;
  }
}
@media (min-width: 1025px) {
  .fv__copy {
    height: 70vh;
  }
}
.fv__icons {
  width: auto;
  position: relative;
  z-index: 2;
  margin: 0 auto 16px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fv__icons {
    width: 90%;
    margin: 0 auto 32px;
  }
}
@media (min-width: 1025px) {
  .fv__icons {
    width: 46.11%;
    margin: 0 auto 32px;
  }
}
.fv__icons--list {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 1024px) {
  .fv__icons--list {
    gap: 8px;
  }
}
.fv__icon {
  width: 30%;
}
@media (max-width: 1024px) {
  .fv__icon {
    width: 30.49%;
  }
}
.fv__object {
  display: block;
  position: absolute;
}
.fv__object--001 {
  width: 18px;
  top: -9%;
  left: 2%;
  animation-delay: 0s;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fv__object--001 {
    width: 3%;
  }
}
@media (min-width: 1025px) {
  .fv__object--001 {
    top: 5%;
    left: -18%;
    width: 54px;
  }
}
.fv__object--002 {
  width: 22px;
  top: 14%;
  left: -7%;
  animation-delay: 0.3s;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fv__object--002 {
    width: 42px;
  }
}
@media (min-width: 1025px) {
  .fv__object--002 {
    top: 31.8%;
    left: -39.7%;
    width: 54px;
  }
}
.fv__object--003 {
  width: 21px;
  top: 40%;
  left: -1%;
  animation-delay: 0.1s;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fv__object--003 {
    width: 41px;
  }
}
@media (min-width: 1025px) {
  .fv__object--003 {
    top: 89.5%;
    left: -28%;
    width: 55px;
  }
}
.fv__object--004 {
  display: none;
}
@media (min-width: 1025px) {
  .fv__object--004 {
    display: block;
    top: 40%;
    right: -32%;
    width: 30px;
    animation-delay: 0.6s;
  }
}
.fv__object--005 {
  display: none;
}
@media (min-width: 1025px) {
  .fv__object--005 {
    display: block;
    top: 61%;
    right: -20%;
    width: 30px;
    animation-delay: 0s;
  }
}
.fv__object--006 {
  width: 28px;
  top: 55%;
  right: -7.2%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fv__object--006 {
    width: 48px;
  }
}
@media (min-width: 1025px) {
  .fv__object--006 {
    top: 85%;
    right: -30%;
    width: 62px;
    animation-delay: 0.4s;
  }
}
.fv__object--007 {
  width: 30px;
  top: 94%;
  right: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fv__object--007 {
    width: 52px;
  }
}
@media (min-width: 1025px) {
  .fv__object--007 {
    top: 106%;
    right: -14.3%;
    width: 70px;
    animation-delay: 0.1s;
  }
}
.fv__links {
  display: flex;
  align-items: center;
  gap: 20px 30px;
}
@media (max-width: 1280px) {
  .fv__links {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .fv__links {
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
  }
}
.fv__link {
  width: 50%;
  height: 92px;
}
@media (max-width: 1280px) {
  .fv__link {
    width: 100%;
    max-width: 350px;
  }
}
.fv__link a {
  display: flex;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  height: 100%;
  padding: 0 2em;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1560px) {
  .fv__link a {
    padding: 0 1em;
  }
}
.fv__link img {
  display: block;
  width: auto;
  height: auto;
}
.fv__link.--tel a {
  background-color: #F963A1;
  border: 1px solid #ffffff;
  flex-direction: column;
  justify-content: center;
}
.fv__link.--tel a span.upper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  font-size: 1.25em;
}
@media (max-width: 1280px) {
  .fv__link.--tel a span.upper {
    font-size: 1em;
  }
}
@media (max-width: 768px) {
  .fv__link.--tel a span.upper {
    font-size: 1em;
  }
}
.fv__link.--tel a span.upper .image {
  position: relative;
}
.fv__link.--tel a span.upper .image img {
  width: 48.42px;
  height: 38.51px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .fv__link.--tel a span.upper .image img {
    width: 36.84px;
    height: 29px;
  }
}
.fv__link.--tel a span.upper .image img.pink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.fv__link.--tel a span.lower {
  font-size: 1.125em;
}
@media (max-width: 768px) {
  .fv__link.--tel a span.lower {
    font-size: 0.875em;
  }
}
.fv__link.--tel a:hover {
  background-color: #ffffff;
  color: #F963A1;
}
.fv__link.--tel a:hover span.image img.pink {
  opacity: 1;
}
.fv__link.--tel a:hover span.image img.white {
  opacity: 0;
}
.fv__link.--mail a {
  background-color: #EEA70E;
  align-items: center;
  gap: 1.7em;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 1560px) {
  .fv__link.--mail a {
    gap: 1em;
  }
}
@media (max-width: 768px) {
  .fv__link.--mail a {
    gap: 1.25em;
  }
}
.fv__link.--mail a span.upper {
  font-size: 1.3125em;
}
@media (max-width: 768px) {
  .fv__link.--mail a span.upper {
    font-size: 1em;
  }
}
.fv__link.--mail a span.lower {
  font-size: 1.25em;
}
@media (max-width: 768px) {
  .fv__link.--mail a span.lower {
    font-size: 1em;
  }
}
.fv__link.--mail a span.image {
  position: relative;
}
.fv__link.--mail a span.image img {
  transition: 0.3s;
}
@media screen and (max-width: 1560px) {
  .fv__link.--mail a span.image img {
    width: 41.27px;
    height: 33px;
  }
}
@media (max-width: 1024px) {
  .fv__link.--mail a span.image img {
    width: 41.27px;
    height: 33px;
  }
}
.fv__link.--mail a span.image .yellow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.fv__link.--mail a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 1em;
  height: 1.75em;
  background: url(../img/common/icons/icon_right-white.svg) no-repeat center center/contain;
  transition: 0.3s;
}
@media screen and (max-width: 1560px) {
  .fv__link.--mail a::after {
    right: 1.625em;
  }
}
@media (max-width: 768px) {
  .fv__link.--mail a::after {
    width: 0.75em;
    height: 1.3125em;
    right: 1.625em;
  }
}
.fv__link.--mail a:hover {
  background-color: #ffffff;
  color: #EEA70E;
}
.fv__link.--mail a:hover span.image .yellow {
  opacity: 1;
}
.fv__link.--mail a:hover span.image .white {
  opacity: 0;
}
.fv__link.--mail a:hover::after {
  background: url(../img/common/icons/icon_right-yellow.svg) no-repeat center center/contain;
}
.fv__waves {
  position: relative;
  bottom: -3px;
}
.fv__waves--svg {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -8px;
  min-height: 100px;
  max-height: 150px;
}
@media (max-width: 768px) {
  .fv__waves--svg {
    height: 40px;
    min-height: 40px;
  }
}
.fv__contents {
  background: linear-gradient(180deg, #E6F5FF 0%, #ffffff 100%);
  padding: 80px 0 113px;
}
@media (max-width: 768px) {
  .fv__contents {
    padding: 32px 16px 85px;
  }
}
.fv__jpx {
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 16px 32px;
  display: flex;
  width: 51.3%;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .fv__jpx {
    gap: 8px;
    margin: 16px 0 8px;
    padding: 8px 16px;
    width: auto;
  }
}
.fv__jpx-image {
  width: 46px;
  height: 60px;
}
.fv__jpx-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: left;
  letter-spacing: -0.001rem;
  flex: 1;
  color: #1B357A;
}
@media (max-width: 768px) {
  .fv__jpx-text {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: normal;
  }
}
.fv__note {
  display: block;
  margin-top: 16px;
  font-size: 10px;
  text-align: center;
  font-size: 12px;
}
@media (max-width: 768px) {
  .fv__note {
    margin-top: 8px;
    font-size: 10px;
  }
}

/* 花びらのアニメーション */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounce {
  animation-name: bounce;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 3s;
}
@media (max-width: 768px) {
  .bounce {
    animation-duration: 6s;
  }
}

/* top共通
======================================= */
.top__title {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .top__title {
    justify-content: center;
  }
}
.top__title.--center {
  justify-content: center;
}
.top__title-text {
  font-size: 1.5em;
}
@media (max-width: 768px) {
  .top__title-text {
    font-size: 1.25em;
  }
}
.top__title--h2 {
  color: #0057A8;
  font-size: 40px;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 8px;
}
@media (max-width: 768px) {
  .top__title--h2 {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 2px;
  }
}
.top__title--h2 span {
  color: #3C3C3C;
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .top__title--h2 span {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.top__catch {
  text-align: center;
  font-size: 2.5em;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .top__catch {
    font-size: 2em;
  }
}
@media (max-width: 768px) {
  .top__catch {
    font-size: 1.5625rem;
    line-height: 1.6;
    margin-bottom: 3.125rem;
  }
}
.top__catch span {
  color: #007CCF;
}
.top__text {
  font-weight: 500;
  margin-bottom: 3.125em;
}
@media (max-width: 768px) {
  .top__text {
    font-size: 0.875em;
    line-height: 1.714;
  }
}

/* voice
======================================= */
.voice {
  position: relative;
}
.voice__parallax {
  position: relative;
}
.voice__clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 230px;
  clip-path: inset(0);
  z-index: -1;
}
.voice__fixed {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background: #0057A8 url(../img/top/voice/back.jpg) no-repeat left top/cover;
}
.voice__inner {
  margin: 0 1em;
  width: auto;
  padding: 56px 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .voice__inner {
    padding: 100px 40px 88px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
  }
}
@media (min-width: 1025px) {
  .voice__inner {
    padding: 100px 0 88px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
  }
}
.voice__title--pc {
  display: none;
}
@media (min-width: 1025px) {
  .voice__title--pc {
    max-width: 856px;
    display: block;
  }
}
.voice__title--sp {
  display: block;
  width: 100%;
}
@media (min-width: 1025px) {
  .voice__title--sp {
    display: none;
  }
}
.voice__google {
  display: block;
  margin: 56px 0 48px;
}
@media (min-width: 1025px) {
  .voice__google {
    display: flex;
    margin: 82px 0 88px;
    gap: 24px;
  }
}
.voice__description {
  width: 100%;
}
@media (min-width: 1025px) {
  .voice__description {
    width: 40.1%;
  }
}
.voice__text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .voice__text {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.voice__image {
  width: 100%;
  margin: 16px auto;
}
@media (min-width: 1025px) {
  .voice__image {
    width: 532px;
    margin: 0;
  }
}
.voice__note--pc {
  display: none;
}
@media (min-width: 1025px) {
  .voice__note--pc {
    font-size: 12px;
    line-height: 2;
    color: #ffffff;
    text-align: left;
    display: block;
  }
}
.voice__note--pc a {
  color: #ffffff;
  text-decoration: underline;
}
.voice__note--sp {
  display: block;
  line-height: 1.3;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
}
@media (min-width: 1025px) {
  .voice__note--sp {
    display: none;
  }
}
.voice__note--sp a {
  color: #ffffff;
  text-decoration: underline;
}
.voice__movie {
  background: #E6F5FF;
  padding: 32px 48px;
}
@media (max-width: 768px) {
  .voice__movie {
    padding: 16px;
  }
}
.voice__movie--ttl {
  color: #0057A8;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 768px) {
  .voice__movie--ttl {
    font-size: 16px;
  }
}
.voice__list {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .voice__list {
    display: block;
    margin-top: 16px;
  }
}
.voice__item {
  width: 25%;
  aspect-ratio: 9/16;
  overflow: hidden;
}
@media (max-width: 768px) {
  .voice__item {
    width: 100%;
    max-width: 288px;
    margin: auto auto 16px;
  }
  .voice__item:last-child {
    margin-bottom: 0;
  }
}

/* t_plans
======================================= */
.t_plans {
  background-color: #ffffff;
}
.t_plans__inner {
  margin: 0 1em;
  width: auto;
  padding: 56px 0 104px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .t_plans__inner {
    padding: 136px 40px 144px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
  }
}
@media (min-width: 1025px) {
  .t_plans__inner {
    padding: 136px 0 144px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
  }
}
.t_plans__list {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .t_plans__list {
    margin-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .t_plans__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.t_plans__item {
  border-radius: 0 4px 4px 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 48px;
}
.t_plans__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .t_plans__item {
    margin-bottom: 24px;
  }
}
.t_plans__item-catch {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .t_plans__item-catch {
    font-size: 14px;
    line-height: 1.4;
  }
}
.t_plans__item-image {
  overflow: hidden;
  aspect-ratio: 370/193;
  width: 33.035%;
}
@media (max-width: 768px) {
  .t_plans__item-image {
    aspect-ratio: 164/75;
    width: 100%;
  }
}
.t_plans__item-contents {
  color: #ffffff;
  background: var(--grad-blue-dark, linear-gradient(90deg, var(--color-azure-33, #0057A8) 0%, #2396E2 100%));
  width: 66.965%;
  padding: 1.5rem 2rem;
  position: relative;
}
@media (max-width: 768px) {
  .t_plans__item-contents {
    padding: 1rem;
    width: 100%;
  }
}
.t_plans__item-contents::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background: url(../img/top/t_plans/arrow.png) no-repeat center center/cover;
}
@media (max-width: 768px) {
  .t_plans__item-contents::after {
    right: 16px;
    width: 40px;
    height: 40px;
  }
}
.t_plans__item-title {
  font-size: 30px;
  color: #ffffff;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
  padding: 0.5rem 0 1rem;
  font-weight: 500;
  width: 81.057%;
}
@media (max-width: 768px) {
  .t_plans__item-title {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
}
.t_plans__item-price {
  font-size: 32px;
  line-height: 0.96;
}
@media (max-width: 768px) {
  .t_plans__item-price {
    font-size: 24px;
  }
}
.t_plans__item-price span {
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 768px) {
  .t_plans__item-price span {
    font-size: 14px;
  }
}
.t_plans__item-price em {
  font-style: normal;
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 768px) {
  .t_plans__item-price em {
    font-size: 14px;
  }
}
.t_plans__item a {
  display: block;
  display: flex;
}
@media (max-width: 768px) {
  .t_plans__item a {
    display: block;
  }
}

/* features
======================================= */
.features {
  background-color: #E6F5FF;
  position: relative;
}
.features__inner {
  margin: 0 auto;
  padding: 56px 16px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .features__inner {
    padding: 136px 0 96px;
    max-width: 570px;
  }
}
@media (min-width: 1025px) {
  .features__inner {
    padding: 136px 0 96px;
    max-width: 840px;
  }
}
.features__list {
  margin: 80px auto 0;
}
@media (max-width: 1024px) {
  .features__list {
    margin: 40px auto;
  }
}
.features__item {
  display: flex;
  align-items: center;
  position: relative;
  gap: 72px;
  margin-bottom: 80px;
}
.features__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .features__item {
    display: block;
    gap: 0;
    margin-bottom: 40px;
  }
}
.features__item-text {
  font-weight: normal;
  font-size: 30px;
  position: relative;
  z-index: 1;
  width: 59.28%;
}
@media (max-width: 768px) {
  .features__item-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    width: 100%;
  }
}
.features__item-text em {
  font-style: normal;
}
.features__item-num {
  font-size: 168px;
  color: rgba(116, 202, 243, 0.3);
  line-height: 1;
  font-weight: 600;
  position: absolute;
  right: 0;
  top: -50px;
  z-index: -1;
}
@media (max-width: 768px) {
  .features__item-num {
    font-size: 88px;
    position: relative;
    top: auto;
  }
}
.features__item-image {
  max-width: 270px;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 9/16;
}
@media (max-width: 768px) {
  .features__item-image {
    max-width: 288px;
    margin: 8px auto 40px;
  }
}
.features__waves {
  position: absolute;
  top: -38px;
  left: 0;
  width: 100%;
}
.features__waves--svg {
  position: relative;
  width: 100%;
  height: 10vh;
  margin-bottom: -7px;
  min-height: 38px;
  max-height: 38px;
}

/* flow
======================================= */
.flow {
  background-color: #ffffff;
}
.flow__inner {
  padding-bottom: 3.75em;
  padding: 56px 16px 50px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 136px 0 163px 3%;
  }
}
@media (min-width: 1025px) {
  .flow__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 136px 0 163px;
  }
}
.flow__title {
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .flow__title {
    margin-bottom: 2em;
  }
}
.flow__list {
  margin: 40px 0 0 auto;
  width: 86.59%;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow__list {
    margin: 80px auto 0;
    width: 80%;
  }
}
@media (min-width: 1025px) {
  .flow__list {
    margin: 80px auto 0;
    max-width: 1000px;
    width: 100%;
  }
}
.flow__list::before {
  content: "";
  position: absolute;
  left: -13.41%;
  top: 10px;
  height: 100%;
  width: 2px;
  background-color: #74CAF3;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow__list::before {
    top: 5px;
    left: -80px;
  }
}
@media (min-width: 1025px) {
  .flow__list::before {
    top: 5px;
    left: -100px;
  }
}
.flow__item {
  align-items: start;
  display: flex;
  margin-bottom: 80px;
  position: relative;
}
.flow__item::before {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: calc(-13.41% - 4px);
  width: 10px;
  height: 10px;
  z-index: 2;
  background-color: #74CAF3;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow__item::before {
    left: -86px;
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 1025px) {
  .flow__item::before {
    left: -106px;
    width: 16px;
    height: 16px;
  }
}
.flow__item:first-child::before {
  top: 18px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow__item:first-child::before {
    top: 15px;
  }
}
@media (min-width: 1025px) {
  .flow__item:first-child::before {
    top: 15px;
  }
}
.flow__item:first-child::after {
  content: "";
  background: #ffffff;
  border: #74CAF3 1px solid;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  width: 24px;
  height: 24px;
  top: 10px;
  left: calc(-13.41% - 11px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow__item:first-child::after {
    width: 36px;
    height: 36px;
    top: 5px;
    left: -96px;
  }
}
@media (min-width: 1025px) {
  .flow__item:first-child::after {
    width: 36px;
    height: 36px;
    top: 5px;
    left: -116px;
  }
}
.flow__item:nth-child(2) .flow__item-title {
  align-items: flex-start;
}
.flow__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .flow__item {
    display: block;
    margin-bottom: 32px;
  }
}
.flow__item-title {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 1.1875em;
  width: 600px;
}
@media (max-width: 768px) {
  .flow__item-title {
    gap: 0.5em;
    margin-bottom: 0.5em;
    width: 100%;
  }
}
.flow__item-title-num {
  font-size: 50px;
  color: #74CAF3;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .flow__item-title-num {
    font-size: 32px;
  }
}
.flow__item-title-text {
  font-size: 30px;
  font-weight: normal;
}
@media (max-width: 768px) {
  .flow__item-title-text {
    font-size: 1em;
  }
}
.flow__item-image {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  aspect-ratio: 200/97;
  width: 400px;
}
@media (max-width: 768px) {
  .flow__item-image {
    aspect-ratio: 71/35;
    width: 100%;
  }
}
.flow__movie {
  width: 400px;
  aspect-ratio: 9/16;
  overflow: hidden;
  margin: auto;
}
@media (max-width: 768px) {
  .flow__movie {
    width: 100%;
    max-width: 288px;
    margin-inline: auto;
  }
}

/* faq
======================================= */
.faq {
  background-color: #E6F5FF;
  position: relative;
  z-index: 0;
}
.faq::before {
  background: url(../img/top/faq/bg.jpg) no-repeat bottom center/cover;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: -1;
}
@media (max-width: 768px) {
  .faq::before {
    background: url(../img/top/faq/bg-sp.jpg) no-repeat bottom center/cover;
    height: 9.5em;
  }
}
.faq::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-color: rgba(0, 124, 207, 0.6);
  z-index: -1;
}
@media (max-width: 768px) {
  .faq::after {
    height: 9.5em;
  }
}
.faq__inner {
  padding-top: 7.5em;
  padding-bottom: 363px;
}
@media (max-width: 768px) {
  .faq__inner {
    padding-top: 3.75em;
    padding-bottom: 9.5em;
  }
}
.faq__title {
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .faq__title {
    margin-bottom: 3em;
  }
}
.faq__container {
  background-color: inherit;
  padding: 0;
}
@media (max-width: 768px) {
  .faq__container {
    margin-bottom: 3.75em;
  }
}
.faq__item {
  background-color: #ffffff;
}

/*# sourceMappingURL=top2.css.map */
