@charset "UTF-8";

/* ------------------------------------------
アニメーション
------------------------------------------- */
/* タイトルスライドイン
========================================= */
.slide-in {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.slide-in_inner {
  display: inline-block;
  vertical-align: top;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* svg 線を描くアニメーション */
.stroke path {
  stroke: transparent;
}

.is-stroke path {
  animation: stroke 3s ease-in-out forwards;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 2.5;
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* ぼかしフェードイン
======================================== */
.blur {
  opacity: 0;
}

.is-blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

/* ふわふわ
======================================== */
.anime-upDown {
  animation: 3s upDown infinite;
}

@keyframes upDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* フェードイン（基本）
======================================== */
.fadeIn,
.fadeUpDown,
.fadeLeftRight,
.fadeRightLeft,
.fadeInOpacity,
.fv_fadeRightLeft,
.fv_fadeInOpacity,
.fadeInSP,
.fadeUpDownSP,
.fadeLeftRightSP,
.fadeRightLeftSP {
  opacity: 0;
  animation-fill-mode: forwards;
  transition: opacity 1s, visibility 1s, transform 1s;
}

.fadeIn_PC_TB {
  opacity: 0;
  animation-fill-mode: forwards;
  transition: opacity 1s, visibility 1s, transform 1s;
}

@media (max-width: 768px) {
  .fadeIn_PC_TB {
    opacity: 1;
  }
}

.is-fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.is-fadeInSP {
  animation-name: fadeInAnimeSP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.is-fadeUpDown {
  animation-name: fadeUpDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.is-fadeUpDownSP {
  animation-name: fadeUpDownAnimeSP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-25px);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.is-fadeLeftRight {
  animation-name: fadeLeftRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.is-fadeLeftRightSP {
  animation-name: fadeLeftRightAnimeSP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-25px);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.is-fadeRightLeft {
  animation-name: fadeRightLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.is-fadeRightLeftSP {
  animation-name: fadeRightLeftAnimeSP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    transform: translateX(25px);
  }

  to {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.is-fadeInOpacity {
  animation-name: fadeInOpacityAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* フェードイン（時間差）
======================================== */
.delayScroll>* {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUpSP {
  animation-name: fadeUpAnimeSP;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　遅延時間
======================================== */
.delay-time_05s {
  animation-delay: 0.5s;
}

.delay-time_1s {
  animation-delay: 1s;
}

.delay-time_2s {
  animation-delay: 2s;
}

.delay-time_3s {
  animation-delay: 3s;
}

.delay-time_n1 {
  animation-delay: 1s;
}

.delay-time_n2 {
  animation-delay: 1.5s;
}

.delay-time_n3 {
  animation-delay: 2.5s;
}

.delay-time_n4 {
  animation-delay: 3.5s;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.111vw, 16px);
  color: #191919;
  background-color: #fff;
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

* {
  box-sizing: border-box;
}

a {
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #191919;
}

h2,
h3,
h4,
h5,
h6 {
  font-size: 16px;
}

li {
  list-style: none;
}

img,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

body {
  margin: 0;
}

/* utility 
====================================== */
@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}

@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}

@media (max-width: 1024px) {
  .tb_only {
    display: block;
  }
}

@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}

@media (max-width: 1024px) {
  .tb_sp {
    display: block;
  }
}

.full-size {
  margin: 0 calc(50% - 50vw);
}

.coming {
  text-align: center;
  font-size: 1.333em;
  margin-bottom: 3em;
}

/* section common
====================================== */
.section__inner {
  width: 79.1667%;
  max-width: 1280px;
  margin: auto;
  padding: 5em 0;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  .section__inner {
    padding: 4rem 0;
    width: 89.75%;
  }
}

.section__inner.--s {
  max-width: 960px;
}

.section__inner.--l {
  max-width: 1520px;
}

.section__inner.--center {
  text-align: center;
}

.section__title {
  text-align: center;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .section__title {
    margin-bottom: 1rem;
  }
}

.section__title-en {
  font-family: "Oswald", sans-serif;
  font-size: 6em;
  color: #9DD5FF;
  font-weight: bold;
  line-height: 0.7;
}

@media (max-width: 768px) {
  .section__title-en {
    font-size: 4em;
    line-height: 0.75;
  }
}

.section__title-jp {
  font-size: 2em;
  font-weight: 900;
  color: #000B60;
  line-height: 1.1875;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .section__title-jp {
    font-size: 1.75em;
  }
}

.section__title-jp span {
  font-size: 1.75em;
}

@media (max-width: 768px) {
  .section__title-jp span {
    font-size: 1.25em;
  }
}

/* cta
======================================= */
.cta {
  background: url(../images/cta_bg.png) no-repeat center center/cover;
}

.cta__inner {
  padding: 3.75em 0;
  text-align: center;
}

.cta__price {
  font-size: 2em;
  font-weight: 900;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .cta__price {
    font-size: 1.5em;
  }
}

.cta__price span {
  font-size: 3em;
  font-family: "Oswald", sans-serif;
  color: #E80909;
  font-weight: bold;
  margin-left: 0.5rem;
}

.cta__title {
  font-size: 2em;
  font-weight: 900;
  color: #E80909;
  line-height: 1.1875;
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .cta__title {
    font-size: 1.55em;
  }
}

.cta__title::before,
.cta__title::after {
  position: absolute;
  top: 65%;
  content: "";
  display: block;
  width: 1em;
  height: 38px;
  background: url(../images/icon_triangle.svg) no-repeat center center/contain;
}

.cta__title::before {
  transform: translateY(-50%);
  left: -1em;
}

.cta__title::after {
  transform: translateY(-50%) scale(-1, 1);
  right: -1em;
}

.cta__btn {
  flex: 1;
  max-width: 400px;
}

@media (max-width: 768px) {
  .cta__btn {
    flex: none;
    width: 100%;
    max-width: none;
  }
}

.cta__btn a {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  font-size: 2em;
}

.cta__btn a img {
  width: auto;
  height: auto;
}

@media (max-width: 768px) {
  .cta__btn a img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.cta__text {
  font-size: 1.25em;
  font-weight: bold;
}

@media (max-width: 768px) {
  .cta__text {
    font-size: 0.875rem;
  }
}

.footer {
  background-color: #E8F5FF;
  position: relative;
}

@media (max-width: 768px) {
  .footer {
    margin-bottom: 5em;
  }
}

@media (max-width: 768px) {
  .footer__upper {
    padding: 2em 0;
  }
}

.footer__logo {
  width: 100px;
  height: 100px;
  margin: auto;
}

@media (max-width: 768px) {
  .footer__logo {
    width: 50px;
    height: 50px;
  }
}

.footer__lower {
  background-color: #000B60;
  padding: 1.5em 0 4em;
}

.footer__lower-copy {
  font-size: 1.125em;
  color: #fff;
  text-align: center;
}

.header__btn {
  position: fixed;
  top: 0;
  right: 6.25%;
  z-index: 10;
  width: 557px;
}

@media (max-width: 768px) {
  .header__btn {
    width: 335px;
    top: inherit;
    right: 50%;
    transform: translate(50%, 100%);
    bottom: 0;
    transition: 0.3s;
  }
}

.header__btn a {
  background-color: #FF9F15;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 2em;
  color: #fff;
  font-weight: 900;
  padding: 1.75rem 1.3125rem;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
  .header__btn a {
    font-size: 1.125rem;
    border-radius: 10px 10px 0 0;
    padding: 1em 1em 1.5em;
  }
}

.header__btn a img {
  width: 2.5rem;
  height: 2.5rem;
}

@media (max-width: 768px) {
  .header__btn a img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header.is-scrolled .header__btn {
    transform: translate(50%, 0);
  }
}

/* fv
======================================= */
.fv {
  overflow: hidden;
}

.fv__logo {
  background: #fff;
  padding: 2.5em;
}

@media (max-width: 768px) {
  .fv__logo {
    padding: 1em;
  }
}

.fv__logo-image {
  width: 100px;
  height: 100px;
  margin: auto;
}

@media (max-width: 768px) {
  .fv__logo-image {
    width: 50px;
    height: 50px;
  }
}

.fv__container {
  background: linear-gradient(to bottom right, #6DAAD9, #BEE3FF, #6DAAD9);
  position: relative;
}

.fv__container-inner {
  width: 79.1667%;
  max-width: 1280px;
  margin: auto;
  position: relative;
  padding: 6.25em 0 1.25rem;
}

@media (max-width: 768px) {
  .fv__container-inner {
    width: 89.3333%;
    padding: 3em 0;
  }
}

.fv__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 118%;
  height: 457px;
  background: #69BFED;
  opacity: 0.7;
  transform: rotate(9deg);
  transform-origin: right bottom;
}

@media (max-width: 768px) {
  .fv__container::before {
    width: 150%;
    height: 200px;
    transform: rotate(24deg);
  }
}

.fv__text-upper {
  display: inline-block;
  background-color: #fff;
  border: 3px solid #2C4F9D;
  border-radius: 50px;
  padding: 0.6875rem 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .fv__text-upper {
    border: 2px solid #2C4F9D;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
  }
}

.fv__text-upper-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.fv__text-upper img {
  width: 2.25rem;
  height: 2.25rem;
}

@media (max-width: 768px) {
  .fv__text-upper img {
    width: 1rem;
    height: 1rem;
  }
}

.fv__text-upper span {
  font-size: 1.75em;
  font-weight: 900;
  line-height: 1;
  color: #2C4F9D;
}

@media (max-width: 768px) {
  .fv__text-upper span {
    font-size: 0.875em;
  }
}

.fv__text-lower {
  font-size: 2em;
  font-weight: bold;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .fv__text-lower {
    font-size: 0.75em;
  }
}

.fv__text-lower strong {
  font-size: 2.625rem;
  font-weight: 900;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  .fv__text-lower strong {
    font-size: 1.25rem;
  }
}

.fv__text-lower strong::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 25%;
  background-color: #FFEB52;
}

.fv__title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  position: relative;
  background-color: #000B60;
  margin: 0 calc(50% - 50vw) 1.25rem;
}

@media (max-width: 1280px) {
  .fv__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .fv__title {
    font-size: 1.75em;
    margin-bottom: 1rem;
  }
}

.fv__title span {
  color: #FF9F15;
  font-size: 4.5rem;
  line-height: 1.333;
}

@media (max-width: 1280px) {
  .fv__title span {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .fv__title span {
    font-size: 2rem;
  }
}

.fv__title::before,
.fv__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
}

.fv__title::before {
  top: 0.5rem;
}

.fv__title::after {
  bottom: 0.5rem;
}

.fv__title-inner {
  width: 79.1667%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.5rem 0 1rem;
}

@media (max-width: 768px) {
  .fv__title-inner {
    width: 89.3333%;
  }
}

.fv__list {
  display: flex;
  gap: 1rem;
  padding-left: 5%;
}

@media (max-width: 1280px) {
  .fv__list {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .fv__list {
    gap: 0.25rem;
  }
}

.fv__item {
  width: 184px;
  height: 184px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 10px solid #2C4F9D;
  background-color: #fff;
  border-radius: 100px;
  font-size: 1.6875em;
  font-weight: 900;
  line-height: 1.2;
}

@media (max-width: 1280px) {
  .fv__item {
    width: 120px;
    height: 120px;
    font-size: 1.25em;
    border: 5px solid #2C4F9D;
  }
}

@media (max-width: 768px) {
  .fv__item {
    width: 65px;
    height: 65px;
    font-size: 0.75em;
    border: 3px solid #2C4F9D;
  }
}

.fv__item .red {
  color: #E80909;
}

.fv__image {
  position: absolute;
  bottom: 0;
  right: -10%;
  width: clamp(200px, 72%, 924px);
}

@media (max-width: 1280px) {
  .fv__image {
    right: -13%;
    width: 60%;
  }
}

@media (max-width: 768px) {
  .fv__image {
    right: -13%;
    width: 72%;
  }
}

/* merit
======================================= */
.merit {
  background-color: #E8F5FF;
  text-align: center;
}

.merit__inner {
  padding-bottom: 2.5em;
}

@media (max-width: 768px) {
  .merit__inner {
    padding-bottom: 4rem;
  }
}

.merit__title {
  font-size: 2em;
  font-weight: 900;
  color: #000B60;
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
  display: inline-block;
}

@media (max-width: 768px) {
  .merit__title {
    font-size: 1.25em;
    margin-bottom: 1rem;
  }
}

.merit__title img {
  position: absolute;
  top: 0%;
  left: 95%;
  transform: translate(-50%, -50%);
  width: 302px;
  height: 201px;
}

@media (max-width: 768px) {
  .merit__title img {
    display: none;
  }
}

.merit__item {
  text-align: left;
  max-width: 772px;
}

.merit__item:nth-child(n+2) {
  margin-top: 0.5rem;
}

.merit__item:nth-child(2n) {
  margin-left: auto;
}

.merit__item-title {
  display: inline-block;
  background-color: #2C4F9D;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  line-height: 1;
  border-radius: 15px;
  padding: 0.25rem 0.5rem;
  transform: translate(-1.5em, 50%);
}

@media (max-width: 768px) {
  .merit__item-title {
    transform: translate(-0.5em, 50%);
  }
}

.merit__item-title span {
  font-family: "Oswald", sans-serif;
  color: #FF9F15;
  font-size: 1.5em;
  margin-left: 0.25rem;
  vertical-align: text-bottom;
}

.merit__item-contents {
  border: 3px solid #2C4F9D;
  border-radius: 20px;
  padding: 2rem;
  background-color: #fff;
}

@media (max-width: 768px) {
  .merit__item-contents {
    padding: 2rem 1rem;
  }
}

.merit__item-catch {
  display: inline-block;
  font-size: 1.5em;
  font-weight: 900;
  margin-bottom: 1.125rem;
  background-color: #FFFDC3;
}

@media (max-width: 768px) {
  .merit__item-catch {
    font-size: 1.25em;
    margin-bottom: 1rem;
  }
}

.merit__item-text {
  font-size: 0.875rem;
}

/* worry
======================================= */
.worry {
  background-color: #F4F4F4;
  overflow: hidden;
}

.worry__inner {
  position: relative;
  padding-bottom: 6.25em;
}

@media (max-width: 768px) {
  .worry__inner {
    padding-bottom: 5rem;
  }
}

.worry__container {
  padding-top: 4.5em;
  padding-bottom: 6.25em;
  background: url(../images/worry_bg.png) no-repeat center center/contain;
  position: relative;
}

@media (max-width: 768px) {
  .worry__container {
    padding-top: 0;
    padding-bottom: 6rem;
  }
}

.worry__contents {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .worry__contents {
    flex-direction: column;
  }
}

.worry__title {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .worry__title {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}

.worry__title span {
  font-size: 2.25rem;
  font-weight: 900;
  color: #2C4F9D;
  border-bottom: 5px solid #2C4F9D;
}

@media (max-width: 768px) {
  .worry__title span {
    font-size: 1.5rem;
  }
}

.worry__icon {
  width: 176px;
  height: 147px;
}

@media (max-width: 768px) {
  .worry__icon {
    display: none;
  }
}

.worry__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .worry__item {
    gap: 0.25rem;
  }
}

@media (max-width: 768px) {
  .worry__item:nth-child(n+2) {
    margin-top: 0.5rem;
  }
}

.worry__item::before {
  content: "";
  width: 2.25em;
  height: 2.25em;
  background: url(../images/icon_worry.svg) no-repeat center center/contain;
  display: inline-block;
}

@media (max-width: 768px) {
  .worry__item::before {
    width: 1.5em;
    height: 1.5em;
  }
}

.worry__item>span {
  margin-top: 0.25rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .worry__item>span {
    margin-top: 0;
  }
}

.worry__item span.blue {
  color: #2C4F9D;
  font-weight: 900;
}

.worry__box {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 25%);
  text-align: center;
  background-color: #2C4F9D;
  width: 387px;
  border-radius: 5px;
  padding: 1em;
}

@media (max-width: 768px) {
  .worry__box {
    width: 100%;
    transform: translate(-50%, 25%);
  }
}

.worry__box-text {
  color: #fff;
  font-weight: 900;
}

.worry__box-text span {
  color: #FF9F15;
}

.worry__image {
  width: 48%;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 768px) {
  .worry__image {
    right: -10%;
  }
}

/* strengths
======================================= */
.strengths {
  background: linear-gradient(to bottom right, #6DAAD9, #BEE3FF, #6DAAD9);
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.strengths::before,
.strengths::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 118%;
  height: 391px;
  background: #69BFED;
  opacity: 0.7;
  transform: rotate(9deg);
  transform-origin: right bottom;
}

.strengths::before {
  top: 21em;
}

@media (max-width: 768px) {
  .strengths::before {
    top: 10em;
    height: 536px;
    width: 130%;
  }
}

.strengths::after {
  top: 73em;
}

@media (max-width: 768px) {
  .strengths::after {
    top: 89em;
    height: 605px;
    width: 130%;
  }
}

.strengths__inner {
  position: relative;
  padding-top: 0;
  padding-bottom: 6.25em;
  max-width: 1080px;
}

@media (max-width: 768px) {
  .strengths__inner {
    padding-bottom: 4rem;
  }
}

.strengths__title-en {
  color: #69BEFF;
}

.strengths__title-jp {
  color: #fff;
}

.strengths__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .strengths__item {
    flex-direction: column;
  }
}

.strengths__item:nth-child(2n) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .strengths__item:nth-child(2n) {
    flex-direction: column;
  }
}

.strengths__item:nth-child(2n) .strengths__item-contents {
  padding-top: 2em;
}

@media (max-width: 768px) {
  .strengths__item:nth-child(2n) .strengths__item-contents {
    padding-top: 0;
  }
}

.strengths__item:nth-child(2n-1) .strengths__item-image {
  margin-top: 2em;
}

@media (max-width: 768px) {
  .strengths__item:nth-child(2n-1) .strengths__item-image {
    margin-top: 0;
  }
}

.strengths__item:nth-child(n+2) {
  margin-top: 4em;
}

@media (max-width: 768px) {
  .strengths__item:nth-child(n+2) {
    margin-top: 3em;
  }
}

.strengths__item:nth-child(3) .strengths__item-image {
  border-radius: 20px;
  background-color: #fff;
}

.strengths__item:nth-child(3) .strengths__item-image img {
  object-fit: contain;
}

@media (max-width: 768px) {
  .strengths__item:nth-child(3) .strengths__item-image {
    margin-bottom: 6em;
  }
}

.strengths__item:nth-child(4) {
  margin-top: 7.5em;
}

@media (max-width: 768px) {
  .strengths__item:nth-child(4) {
    margin-top: 3em;
  }
}

.strengths__item-contents {
  width: 51%;
}

@media (max-width: 768px) {
  .strengths__item-contents {
    width: 100%;
  }
}

.strengths__item-title {
  padding-left: 2.5em;
  position: relative;
  margin-bottom: 1rem;
}

.strengths__item-title .text {
  font-size: 1.5em;
  color: #fff;
  font-weight: bold;
  background-color: #2C4F9D;
  padding: 6px 10px;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-35%);
}

@media (max-width: 768px) {
  .strengths__item-title .text {
    font-size: 1em;
  }
}

.strengths__item-title .num {
  font-family: "Oswald", sans-serif;
  font-size: 6em;
  color: #fff;
  line-height: 1;
}

@media (max-width: 768px) {
  .strengths__item-title .num {
    font-size: 4em;
  }
}

.strengths__item-catch {
  margin-bottom: 1rem;
}

.strengths__item-catch span {
  font-size: 1.75em;
  font-weight: 900;
  background-color: #FFEB52;
  display: inline-block;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .strengths__item-catch span {
    font-size: 1.5em;
  }
}

.strengths__item-text {
  line-height: 2;
}

.strengths__item-text span {
  font-weight: 900;
  border-bottom: 2px solid #191919;
}

.strengths__item-image {
  width: 42%;
  position: relative;
}

.strengths__item-image::before {
  content: "";
  display: block;
  padding-top: 66.667%;
}

.strengths__item-image img,
.strengths__item-image video,
.strengths__item-image iframe,
.strengths__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .strengths__item-image {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.strengths__item-image img {
  border-radius: 20px;
}

@media (max-width: 768px) {
  .strengths__item-image img {
    border-radius: 10px;
  }
}

.strengths__item-note {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}

/* flow
======================================= */
.flow {
  background-color: #BEE3FF;
}

.flow__inner {
  padding-top: 0;
  padding-bottom: 7.5em;
}

@media (max-width: 768px) {
  .flow__inner {
    padding-bottom: 4em;
  }
}

.flow__title-en {
  color: #9DD5FF;
}

.flow__title-jp {
  color: #000B60;
}

.flow__item {
  display: flex;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  min-height: 216px;
  border-radius: 10px;
}

.flow__item:nth-child(n+2) {
  margin-top: 3.5em;
}

@media (max-width: 768px) {
  .flow__item:nth-child(n+2) {
    margin-top: 2.5em;
  }
}

.flow__item::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 48px solid transparent;
  border-left: 48px solid transparent;
  border-top: 32px solid #69BEFF;
  border-bottom: 0;
}

@media (max-width: 768px) {
  .flow__item::after {
    border-right: 32px solid transparent;
    border-left: 32px solid transparent;
    border-top: 24px solid #69BEFF;
  }
}

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

.flow__item.--01 .flow__item-left {
  background-color: #8DCEFF;
}

.flow__item.--02 .flow__item-left {
  background-color: #7AA5E1;
}

.flow__item.--03 .flow__item-left {
  background-color: #677EC4;
}

.flow__item.--04 .flow__item-left {
  background-color: #565CA6;
}

.flow__item.--05 .flow__item-left {
  background-color: #4C4589;
}

.flow__item.--06 .flow__item-left {
  background-color: #45346B;
}

.flow__item-left {
  width: 30%;
  display: flex;
  align-items: center;
  gap: 15%;
  padding: 3em;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .flow__item-left {
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding: 3em 0;
  }
}

.flow__item-step {
  text-align: center;
}

.flow__item-step .step {
  font-family: "Oswald", sans-serif;
  font-size: 2em;
  font-weight: bold;
  display: block;
  color: #FFF95F;
}

@media (max-width: 768px) {
  .flow__item-step .step {
    font-size: 1.5em;
  }
}

.flow__item-step .num {
  font-family: "Oswald", sans-serif;
  display: block;
  color: #fff;
  font-size: 3.5em;
  line-height: 0.77;
  font-weight: bold;
}

@media (max-width: 768px) {
  .flow__item-step .num {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .flow__item-image {
    width: 40px;
    height: 40px;
  }
}

.flow__item-right {
  width: 70%;
  padding: 2em;
  background-color: #fff;
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .flow__item-right {
    width: 100%;
    padding: 2em 1em;
  }
}

.flow__item-title {
  font-size: 1.5em;
  color: #2C4F9D;
  font-weight: 900;
  margin-bottom: 1.125rem;
}

@media (max-width: 768px) {
  .flow__item-title {
    font-size: 1.25em;
    margin-bottom: 1rem;
  }
}

.flow__item-buttons {
  display: flex;
  gap: 15px;
  margin-top: 1.5em;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .flow__item-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.flow__item-btn {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 768px) {
  .flow__item-btn {
    width: 100%;
    min-width: auto;
  }
}

.flow__item-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .flow__item-btn a {
    font-size: 13px;
    padding: 12px 16px;
    gap: 8px;
  }
}

.flow__item-btn.btn__orange a {
  background: linear-gradient(135deg, #FF9F15 0%, #FF7A00 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(255, 159, 21, 0.3);
}

.flow__item-btn.btn__orange a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 159, 21, 0.4);
}

.flow__item-btn.btn__green a {
  background: linear-gradient(135deg, #00C300 0%, #00A000 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 195, 0, 0.3);
}

.flow__item-btn.btn__green a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 195, 0, 0.4);
}

.flow__item-btn a img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .flow__item-btn a img {
    width: 14px;
    height: 14px;
  }
}

/* features
======================================= */
.features {
  background-color: #E8F5FF;
}

.features__inner {
  padding-top: 0;
  padding-bottom: 7.5em;
}

@media (max-width: 768px) {
  .features__inner {
    padding-bottom: 4em;
  }
}

@media (max-width: 768px) {
  .features__title {
    margin-bottom: 3em;
  }
}

.features__table {
  overflow-x: scroll;
}

.features__table table {
  border-collapse: separate;
  border-spacing: 10px 0;
}

@media (max-width: 768px) {
  .features__table table {
    border-spacing: 5px 0;
  }
}

.features__table th {
  background-color: #ccc;
  border-radius: 10px 10px 0 0;
  min-width: 180px;
  padding: 1.75em 0.5em;
}

@media (max-width: 768px) {
  .features__table th {
    min-width: 130px;
  }
}

.features__table th.title {
  min-width: 190px;
  background-color: inherit;
}

@media (max-width: 768px) {
  .features__table th.title {
    min-width: 145px;
  }
}

.features__table th.main {
  background-color: #2C4F9D;
  color: #fff;
  font-size: 1.125em;
}

.features__table td {
  background-color: #fff;
  padding: 1rem 0.5rem;
  font-size: 2em;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  color: #2C4F9D;
  text-align: center;
  line-height: 1.5;
  position: relative;
}

@media (max-width: 768px) {
  .features__table td {
    font-size: 1.5em;
  }
}

.features__table td::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5px;
  width: calc(100% - 10px);
  height: 2px;
  border-bottom: 1px dashed #ccc;
}

.features__table td.title {
  font-size: 1em;
  font-weight: bold;
  color: #191919;
}

.features__table td.main {
  border-left: 3px solid #2C4F9D;
  border-right: 3px solid #2C4F9D;
}

.features__table td.bottom {
  font-size: 1em;
  border-radius: 0 0 10px 10px;
}

.features__table td.bottom::after {
  display: none;
}

.features__table td.bottom.main {
  font-size: 1.5em;
  border-bottom: 3px solid #2C4F9D;
}

.features__table td .note {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.2;
}

/* staff
======================================= */
.staff__inner {
  padding-top: 0;
}

.staff__list {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .staff__list {
    flex-direction: column;
    gap: 2em;
  }
}

.staff__item {
  width: 46.333%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
  .staff__item {
    width: 100%;
  }
}

.staff__item-info {
  background-color: #2C4F9D;
  padding: 1em;
  display: flex;
  align-items: center;
  gap: 2em;
}

.staff__item-name {
  color: #fff;
}

.staff__item-name-jp {
  font-size: 1.5em;
  font-weight: 900;
  margin-bottom: 0.3rem;
}

.staff__item-name-en {
  font-family: "Oswald", sans-serif;
  font-size: 1.125em;
  font-weight: bold;
}

.staff__item-text {
  padding: 1.25em 5%;
  font-weight: bold;
  line-height: 2;
}

/* faq
======================================= */
.faq {
  background-color: #E8F5FF;
}

.faq__inner {
  padding-top: 0;
}

.faq__item {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 1em 2.5em;
  cursor: pointer;
  position: relative;
}

@media (max-width: 768px) {
  .faq__item {
    padding: 1em 4em 1em 1em;
  }
}

.faq__item:nth-child(n+2) {
  margin-top: 1.5em;
}

.faq__item-question {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .faq__item-question {
    gap: 1.5rem;
    align-items: center;
  }
}

.faq__item-question-q {
  font-size: 2em;
  font-family: "Oswald", sans-serif;
  color: #2C4F9D;
  font-weight: bold;
}

.faq__item-question-text {
  font-size: 1.125em;
  color: #000B60;
  font-weight: 900;
  padding-top: 0.5em;
}

@media (max-width: 768px) {
  .faq__item-question-text {
    font-size: 1rem;
    padding-top: 0;
  }
}

.faq__item-question-btn {
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 1.8em;
  right: 2em;
}

.faq__item-question-btn::before,
.faq__item-question-btn::after {
  content: "";
  display: block;
  width: 1rem;
  height: 2.5px;
  background-color: #2C4F9D;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 0;
}

.faq__item-question-btn::before {
  transform: rotate(90deg);
  transition: 0.3s;
}

.faq__item-answer {
  padding-left: 4.5rem;
  line-height: 2;
}

@media (max-width: 768px) {
  .faq__item-answer {
    padding-left: 3.5rem;
  }
}

.faq__item.active .faq__item-question-btn::before {
  transform: rotate(0deg);
}

/* btn 
========================================= */
.btn__orange {
  max-width: 557px;
}

@media (max-width: 768px) {
  .btn__orange {
    max-width: 100%;
  }
}

.btn__orange a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 50px;
  background: linear-gradient(135deg, #FF9F15 0%, #FF7A00 100%);
  color: #fff;
  padding: 20px 30px;
  box-shadow: 0 4px 15px rgba(255, 159, 21, 0.3);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .btn__orange a {
    font-size: 16px;
    border-radius: 25px;
    padding: 18px 25px;
    gap: 8px;
  }
}

.btn__orange a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 159, 21, 0.4);
}

.btn__orange a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .btn__orange a img {
    width: 20px;
    height: 20px;
  }
}

/* CTA ボタンコンテナ */
.cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .cta__buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

/* 緑色のボタン（LINE用） */
.btn__green {
  display: inline-block;
  width: 100%;
}

@media (max-width: 768px) {
  .btn__green {
    width: 100%;
  }
}

.btn__green a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #00C300 0%, #00A000 100%);
  color: #fff;
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 195, 0, 0.3);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .btn__green a {
    padding: 18px 25px;
    font-size: 16px;
    gap: 8px;
  }
}

.btn__green a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 195, 0, 0.4);
}

.btn__green a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .btn__green a img {
    width: 20px;
    height: 20px;
  }
}

/* リップル効果のスタイル */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* LP全画面表示用のスタイル */
#my-unique-lp-wrapper {
  margin: 0 !important;
  padding: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* WordPressのデフォルトコンテナの余白を無効化（ヘッダーとフッターを除く） */
.page-template-template-lp .l-content,
.page-template-template-lp .l-article,
.page-template-template-lp .p-entry,
.page-template-template-lp .p-entryBody,
.page-template-template-lp .c-container:not(.l-header .c-container):not(.l-footer .c-container),
.page-template-template-lp .l-main,
.page-template-template-lp .l-mainContent {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* ヘッダーとフッターの余白調整 */
.page-template-template-lp .l-header {
  margin-bottom: 0 !important;
}

.page-template-template-lp .l-footer {
  margin-top: 0 !important;
}

/* SWELLテーマ特有のコンテナクラスも対応（ヘッダーとフッター除く） */
.page-template-template-lp .c-container:not(.l-header .c-container):not(.l-footer .c-container),
.page-template-template-lp .l-container:not(.l-header .l-container):not(.l-footer .l-container):not(.l-fixHeader__inner),
.page-template-template-lp .u-container:not(.l-header .u-container):not(.l-footer .u-container) {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* bodyの余白も無効化 */
body.page-template-template-lp {
  margin: 0 !important;
  padding: 0 !important;
}

/* 一般的なWordPressコンテナクラスも対応（ヘッダーとフッター除く） */
.page-template-template-lp .wp-site-blocks:not(.l-header .wp-site-blocks):not(.l-footer .wp-site-blocks),
.page-template-template-lp .wp-block-group:not(.l-header .wp-block-group):not(.l-footer .wp-block-group),
.page-template-template-lp .entry-content:not(.l-header .entry-content):not(.l-footer .entry-content),
.page-template-template-lp .site-main:not(.l-header .site-main):not(.l-footer .site-main),
.page-template-template-lp .content-area:not(.l-header .content-area):not(.l-footer .content-area) {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* サイドバーを非表示 */
.page-template-template-lp .l-sidebar,
.page-template-template-lp #sidebar,
.page-template-template-lp .sidebar,
.page-template-template-lp .widget-area {
  display: none !important;
}

/* メインコンテンツエリアを全幅に */
.page-template-template-lp .l-main,
.page-template-template-lp .l-mainContent,
.page-template-template-lp .main-content,
.page-template-template-lp .content-wrapper {
  width: 100% !important;
  max-width: none !important;
}

/* ヘッダーをLPページの制約から除外 */
.page-template-template-lp .l-header {
  margin: initial !important;
  padding: initial !important;
  max-width: initial !important;
  width: initial !important;
  position: initial !important;
  left: initial !important;
  right: initial !important;
  margin-left: initial !important;
  margin-right: initial !important;
}

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