@charset "utf-8";

/*-------------------------------------
変数
-------------------------------------*/

:root {
  --NotoSansJp: "Noto Sans JP", sans-serif;
  --Poppins: "Poppins", sans-serif;
  --color-skyblue: #5095DF;
  --color-navy: #355065;
}





/*-------------------------------------
共通
-------------------------------------*/

/********************/
/* タグ */
/********************/

.body {
  font-family: var(--NotoSansJp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #1C1C1C;
  background-color: #FFF8ED;
}
.body.no-scroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

figure {
  margin: 0;
}



/********************/
/* PC版とsp版で表示非表示の切り替え */
/********************/

.sp-only {
  display: none;
}

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



/********************/
/* スマホはタップで通話できるが、PCではクリックさせない */
/********************/

@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}



/********************/
/* ボタン */
/********************/

a {
  display: block;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

button {
  display: block;
  transition: all 0.3s;
}
@media (hover: hover) {
  button:hover {
    opacity: 0.7;
  }
}

.common-button {
  display: flex;
  justify-content: center;
}

.common-button__link {
  width: 440px;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0px 0px 7px 0px #ffffff;
  display: flex;
  align-items: center;
  column-gap: 10px;
  position: relative;
}
.common-button__link--bgWhite {
  padding-block: 8px;
  border: 2px solid #09b2d3;
  background-color: #fff;
}
.common-button__link--bgNavy {
  background-color: var(--color-navy);
  justify-content: center;
}
.common-button__link--bgBlue {
  background-color: #09b2d3;
}

.common-button__link::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  content: "";
  width: 10px;
  height: auto;
  aspect-ratio: 10 / 15;
  background-image: url(../image/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}
.common-button__link--bgNavy::after,
.common-button__link--bgBlue::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.common-button__icon {
  width: 45px;
  height: auto;
  aspect-ratio: 1 / 1;
}
.common-button__link--bgNavy .common-button__icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.common-button__text {
  padding-block: 6px;
  font-weight: 600;
  font-size: 24px;
  line-height: calc(34 / 24);
  color: #000;
  transition: all 0.3s;
}
.common-button__link--bgWhite .common-button__text {
  color: var(--color-navy);
}
.common-button__link--bgNavy .common-button__text,
.common-button__link--bgBlue .common-button__text {
  color: #fff;
}

@media (hover: hover) {

  .common-button__link:hover {
    opacity: 1;
  }
  .common-button__link--bgWhite:hover {
    background-color: var(--color-navy);
  }
  .common-button__link--bgNavy:hover {
    background-color: #fff;
    box-shadow: 0px 0px 7px 0px #355065;
  }
  .common-button__link--bgBlue:hover {
    background-color: #fff;
    box-shadow: 0px 0px 7px 0px #355065;
  }

  .common-button__link--bgWhite:hover::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .common-button__link--bgNavy:hover::after,
  .common-button__link--bgBlue:hover::after {
    -webkit-filter: unset;
    filter: unset;
  }

  .common-button__link--bgWhite:hover .common-button__text {
    color: #fff;
  }
  .common-button__link--bgNavy:hover .common-button__text,
  .common-button__link--bgBlue:hover .common-button__text {
    color: var(--color-navy);
  }

}

@media screen and (max-width: 767.98px) {
  .common-button__link {
    padding: 5px min(calc(100vw / 375 * 14), 14px);
    width: min(calc(100vw / 375 * 298), 298px);
    box-shadow: 0px 0px 7px 0px #ffffff;
    column-gap: 17px;
  }
  .common-button__link--bgWhite {
    border: 1px solid #09b2d3;
  }
  .common-button__icon {
    width: 37px;
  }
  .common-button__link--bgNavy .common-button__icon {
    left: min(calc(100vw / 375 * 14), 14px);
  }
  .common-button__text {
    font-size: min(calc(100vw / 375 * 18), 18px);
  }
}



/********************/
/* インナー */
/********************/

.common-inner {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: min(calc(100vw / 375 * 20), 20px);
}



/********************/
/* タイトル */
/********************/

.common-heading {
  margin-inline: auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.common-heading__title {
  border-radius: 5px;
  background-color: var(--color-skyblue);
  padding: 1px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 40px;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .common-heading__title {
    border-radius: 3px;
    padding: 1px 10px;
    font-size: min(calc(100vw / 375 * 24), 24px);
    line-height: 1.2;
  }
}



/********************/
/* アニメーション */
/********************/

.js-visible {
  opacity: 0;
}
.js-visible.is-visible {
  animation-name: open-visible;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes open-visible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.js-hidden.is-hidden {
  animation-name: open-hidden;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes open-hidden {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.js-fadeIn {
  opacity: 0;
}
.js-fadeIn.is-active {
  opacity: 0;
  animation-name: anime-fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes anime-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.js-fadeUp {
  opacity: 0;
}
.js-fadeUp.is-active {
  opacity: 0;
  animation-name: anime-fadeUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes anime-fadeUp {
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}





/*-------------------------------------
ヘッダー
-------------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
}

.header__inner {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  max-width: 1320px;
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: min(calc(100vw / 1280 * 331), 331px);
  position: relative;
  z-index: 9999;
}

.header__logo-link {
  position: relative;
  width: 100%;
  height: 100%;
}

.header__menu {
  height: 100%;
  padding-top: 16px;
  display: flex;
  align-items: center;
  column-gap: min(calc(100vw / 1280 * 40), 40px);
}

.header__nav {
  height: 100%;
}

.header__nav-list {
  height: 100%;
  display: flex;
  align-items: center;
}

.header__nav-item {
  position: relative;
}
.header__nav-item:not(:first-child) {
  margin-left: 40px;
}
.header__nav-item:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 24px;
  background-color: var(--color-navy);
}

.header__nav-link {
  display: inline-block;
  font-weight: 600;
  font-size: min(calc(100vw / 1000 * 16), 16px);
  color: var(--color-navy);
}

.header__button-link {
  width: min(calc(100vw / 1280 * 320), 320px);
  padding: 9px min(calc(100vw / 1280 * 16), 16px);
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0px 0px 7px 0px rgba(0, 116, 232, 0.5);
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 600;
  position: relative;
}
.header__button-link::after {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  content: "";
  width: min(calc(100vw / 1280 * 10), 10px);
  height: auto;
  aspect-ratio: 10 / 15;
  background-image: url(../image/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}

.header__button-text {
  transition: all 0.3s;
}

@media (hover: hover) {
  .header__button-link:hover {
    opacity: 1;
    background-color: var(--color-navy);
    box-shadow: 0px 0px 7px 0px #ffffff;
  }
  .header__button-link:hover .header__button-text {
    color: #fff;
  }
  .header__button-link:hover::after {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
}

.header__button-icon {
  display: inline-block;
  width: min(calc(100vw / 1280 * 45), 45px);
  height: auto;
  aspect-ratio: 1 / 1;
}

.header__button-text {
  font-weight: 600;
  font-size: min(calc(100vw / 1280 * 24), 24px);
  line-height: 1.4;
  color: var(--color-navy);
}

.hamburger {
  display: none;
}


@media screen and (max-width: 767.98px) {

  .header {
    height: 78px;
  }

  .header__inner {
    padding: 18px 20px 18px;
  }

  .header__logo {
    width: 224px;
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 130px;
    background-color: #FFF9ED;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
  }
  .header__menu.is-active {
    opacity: 1;
    visibility: visible;
  }

  .header__nav {
    width: 100%;
    height: auto;
  }

  .header__nav-list {
    width: 100%;
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .header__nav-item {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .header__nav-item:not(:first-child) {
    margin-left: 0;
    margin-top: 24px;
  }
  .header__nav-item:not(:first-child)::before {
    display: none;
  }

  .header__nav-link {
    font-size: 16px;
  }

  .header__button {
    margin-top: 64px;
  }

  .header__button-link {
    padding: 5px min(calc(100vw / 375 * 14), 14px);
    width: min(calc(100vw / 375 * 298), 298px);
    box-shadow: 0px 0px 4px 0px rgba(0, 116, 232, 0.5);
    column-gap: 17px;
    justify-content: center;
  }
  .header__button-link::after {
    right: 20px;
    width: 10px;
  }

  .header__menu .sp-only .common-button__link {
    box-shadow: 0px 0px 4px 0px #ffffff;
  }
  @media (hover: hover) {
    .header__menu .sp-only .common-button__link:hover {
      box-shadow: 0px 0px 7px 0px #355065;
    }
  }

  .header__button-icon {
    position: absolute;
    top: 50%;
    left: min(calc(100vw / 375 * 14), 14px);
    transform: translateY(-50%);
    width: 37px;
  }

  .header__button-text {
    padding-block: 6px;
    font-size: min(calc(100vw / 375 * 18), 18px);
  }

  .hamburger {
    display: block;
    position: fixed;
    top: 25px;
    right: 14px;
    width: 40px;
    height: 30px;
    padding: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 9999;
  }

  .hamburger__line-zone {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .hamburger__line {
    display: inline-block;
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1.5px;
    background-color: var(--color-navy);
    transition: all 0.3s;
  }
  .hamburger__line:nth-child(1) {
    top: 10px;
  }
  .hamburger__line:nth-child(2) {
    top: 18px;
  }
  .hamburger.is-active .hamburger__line:nth-child(1) {
    top: 14px;
    transform: rotate(-45deg);
  }
  .hamburger.is-active .hamburger__line:nth-child(2) {
    top: 14px;
    transform: rotate(45deg);
  }

}




/*-------------------------------------
fv
-------------------------------------*/

.fv {
  padding-top: 118px;
}

.fv__inner {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}

.fv__open-image01 {
  position: absolute;
  top: 15%;
  left: 29%;
  width: calc((305 / 1440) * 100%);
  height: auto;
  aspect-ratio: 305 / 270;
}
.fv__open-image01.is-active {
  top: 20.5%;
  left: 15.5%;
}
.fv__open-image02 {
  position: absolute;
  top: 51%;
  left: 34.5%;
  width: calc((113 / 1440) * 100%);
  height: auto;
  aspect-ratio: 122 / 113;
}
.fv__open-image02.is-active {
  top: 64%;
  left: 24%;
}
.fv__open-image03 {
  position: absolute;
  top: 55%;
  left: 38.5%;
  width: calc((219 / 1440) * 100%);
  height: auto;
  aspect-ratio: 219 / 209;
}
.fv__open-image03.is-active {
  top: 83%;
  left: 21.5%;
}
.fv__open-image04 {
  position: absolute;
  top: 6%;
  left: 38.5%;
  width: calc((517 / 1440) * 100%);
  height: auto;
  aspect-ratio: 517 / 315;
}
.fv__open-image04.is-active {
  top: 4%;
  left: 50%;
}
.fv__open-image05 {
  position: absolute;
  top: 35%;
  left: 46.5%;
  width: calc((316 / 1440) * 100%);
  height: auto;
  aspect-ratio: 316 / 389;
}
.fv__open-image05.is-active {
  top: 66%;
  left: 61%;
}

.js-open-image {
  transition: 1s;
}

.js-open-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.fv__other {
  margin-inline: auto;
  max-width: 1440px;
  position: relative;
  z-index: 1;
}

.fv__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fv__heading-subTitle {
  padding: 4px 8px;
  border-radius: 5px;
  background-color: var(--color-skyblue);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

.fv__heading-title {
  margin-top: -8px;
  font-weight: 600;
  font-size: min(calc(100vw / 1280 * 80), 80px);
  color: var(--color-navy);
}

.fv__heading-title span {
  position: relative;
  z-index: 1;
}

.fv__heading-title .small,
.fv__heading-title .pc-small {
  font-size: min(calc(100vw / 1280 * 60), 60px);
}

.fv__heading-title .line {
  display: inline-block;
}
.fv__heading-title .line::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: min(calc(100vw / 1280 * 250), 250px);
  height: auto;
  aspect-ratio: 211 / 42;
  background-image: url(../image/fv/fv_title_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.fv__images {
  margin-top: 40px;
  position: relative;
}

.fv__images img {
  border-radius: 30px;
}

.fv__image01 {
  margin-inline: auto;
  width: min(calc(100vw / 1440 * 584), 584px);
  transform: translateX(4%);
  position: relative;
  z-index: 2;
}

.fv__image02 {
  position: absolute;
  top: 50%;
  left: 9.5%;
  transform: translateY(-50%);
  width: min(calc(100vw / 1440 * 384), 384px);
}

.fv__image03 {
  position: absolute;
  top: -14%;
  left: 64.5%;
  width: min(calc(100vw / 1440 * 377), 377px);
}

.fv__slider-wrapper {
  margin-top: -24px;
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.fv__slider {
  animation: scroll-left 50s infinite linear both;
  display: flex;
}
.fv__slide {
  width: max-content;
  padding-inline: 10px;
  font-family: var(--Poppins);
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 150), 150px);
  line-height: 1;
  color: var(--color-skyblue);
  text-shadow: 0px 0px 10px #ffffff;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


@media screen and (max-width: 767.98px) {

  .fv {
    padding-top: 104px;
    overflow: hidden;
  }

  .fv__inner {
    max-width: 375px;
  }

  .fv__open-image01 {
    top: 30%;
    left: 5.5%;
    width: min(calc(100vw / 375 * 169), 169px);
  }
  .fv__open-image01.is-active {
    top: 39%;
    left: -15.5%;
  }
  .fv__open-image02 {
    top: 58%;
    left: 20%;
    width: min(calc(100vw / 375 * 63), 63px);
  }
  .fv__open-image02.is-active {
    top: 75%;
    left: -1%;
  }
  .fv__open-image03 {
    top: 70%;
    left: 21%;
    width: min(calc(100vw / 375 * 121), 121px);
  }
  .fv__open-image03.is-active {
    top: 98%;
    left: -2.5%;
  }
  .fv__open-image04 {
    top: 24%;
    left: 19%;
    width: min(calc(100vw / 375 * 287), 287px);
  }
  .fv__open-image04.is-active {
    position: absolute;
    top: 13%;
    left: 33%;
  }
  .fv__open-image05 {
    top: 55%;
    left: 40%;
    width: min(calc(100vw / 375 * 196), 196px);
  }
  .fv__open-image05.is-active {
    top: 66%;
    left: 51%;
  }


  .fv__heading-subTitle {
    font-size: 20px;
  }

  .fv__heading-title {
    margin-top: 0;
    text-align: center;
    font-size: 40px;
    line-height: 1.25;
  }

  .fv__heading-title .sp-small,
  .fv__heading-title .small {
    font-size: 30px;
  }

  .fv__heading-title .pc-small {
    font-size: 40px;
  }

  .fv__heading-title .line::after {
    width: 155px;
    background-image: url(../image/fv/fv_title_line_sp.svg);
    aspect-ratio: 154 / 25;
    left: 3px;
    bottom: -8px;
  }

  .fv__images {
    margin-top: 56px;
  }

  .fv__images img {
    border-radius: 10px;
  }
  .fv__image01 img {
    border-radius: 15px;
  }

  .fv__image01 {
    width: 295px;
    transform: translateX(-7px);
    z-index: 1;
  }

  .fv__image02 {
    top: 108%;
    left: -1.5%;
    width: 176px;
    z-index: 2;
  }

  .fv__image03 {
    top: -30%;
    left: 62%;
    width: 164px;
  }

  .fv__slider-wrapper {
    margin-top: 84px;
  }

  .fv__slide {
    font-size: 48px;
    text-shadow: 0px 0px 5px #ffffff;
  }

}





/*-------------------------------------
trouble
-------------------------------------*/

.trouble {
  margin-top: 42px;
}

.trouble__top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trouble__top-subTitle {
  margin-bottom: 3px;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-navy);
  position: relative;
}
.trouble__top-subTitle::before {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%) rotate(-30deg);
  content: "";
  width: 2px;
  height: 22px;
  border-radius: 5px;
  background-color: var(--color-navy);
}
.trouble__top-subTitle::after {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%) rotate(30deg);
  content: "";
  width: 2px;
  height: 22px;
  border-radius: 5px;
  background-color: var(--color-navy);
}

.trouble .common-heading__en {
  position: absolute;
  top: -38px;
  left: -76px;
  width: 225px;
}

.trouble .common-heading__title {
  line-height: 1.2;
}

.trouble__list {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px 49px;
  padding-bottom: 56px;
  position: relative;
}
.trouble__list::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: min(calc(100vw / 1000 * 251), 251px);
  height: auto;
  aspect-ratio: 251 / 459;
  background-image: url(../image/trouble/trouble_deco01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.trouble__list::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: min(calc(100vw / 1000 * 219), 219px);
  height: auto;
  aspect-ratio: 219 / 477;
  background-image: url(../image/trouble/trouble_deco02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.trouble__item {
  width: calc((100% - 49px * 2) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
}

.trouble__item-body {
  flex: 1;
  padding: 11px 8px 24px;
}

.trouble__item-text {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  text-align: center;
}

.trouble__item-text .big {
  font-size: 24px;
}

.trouble__item-text .sp {
  display: none;
}

@media screen and (max-width: 1279.98px) {
  .trouble__list {
    gap: 36px 28px;
  }
  .trouble__item {
    width: calc((100% - 28px) / 2);
  }
}


@media screen and (max-width: 767.98px) {

  .trouble {
    margin-top: 48px;
  }

  .trouble__top-subTitle {
    font-size: 16px;
  }
  .trouble__top-subTitle::before {
    left: -15px;
    height: 17px;
  }
  .trouble__top-subTitle::after {
    right: -15px;
    height: 17px;
  }

  .trouble .common-heading__en {
    top: -17px;
    left: -17px;
    width: 116px;
  }

  .trouble__list {
    margin-top: 32px;
    gap: 16px 21px;
    padding-bottom: 16px;
  }
  .trouble__list::before {
    width: min(calc(100vw / 375 * 98), 98px);
    left: -3px;
  }
  .trouble__list::after {
    width: min(calc(100vw / 375 * 86), 86px);
  }

  .trouble__item {
    width: calc((100% - 21px) / 2);
    border-radius: 5px;
  }

  .trouble__item-body {
    padding: 0 8px 10px;
  }

  .trouble__item-text {
    text-align: left;
    font-weight: 500;
    font-size: 14px;
  }

  .trouble__item-text .big {
    font-size: 14px;
  }

  .trouble__item-text .sp {
    display: inline-block;
  }

}





/*-------------------------------------
cta01
-------------------------------------*/

.cta01__container {
  padding: 97px 20px 80px;
  border-radius: 10px;
  background-image: url(../image/cta01/cta01_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta01__subTitle {
  padding: 4px 8px;
  border-radius: 5px;
  background-color: var(--color-skyblue);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: #fff;
}

.cta01__title {
  text-align: center;
  font-weight: 600;
  font-size: min(calc(100vw / 1280 * 87), 87px);
  letter-spacing: 0.03em;
  color: var(--color-navy);
  text-shadow: 0px 0px 21px #ffffff;
}

.cta01__title .small {
  font-size: min(calc(100vw / 1280 * 66), 66px);
}

.cta01__button {
  margin-top: 10px;
}


@media screen and (max-width: 767.98px) {

  .cta01__container {
    background-image: url(../image/cta01/cta01_bg_sp.webp);
  }

  .cta01 .common-inner {
    padding-inline: 0;
  }

  .cta01__container {
    padding: 36px 10px 49px;
  }

  .cta01__subTitle {
    padding: 0 min(calc(100vw / 375 * 10), 10px);
    font-size: min(calc(100vw / 375 * 24), 24px);
    line-height: 1.3;
  }

  .cta01__title {
    margin-top: 4px;
    text-align: center;
    font-size: 32px;
  }

  .cta01__title .small {
    font-size: 24px;
  }

  .cta01__button {
    margin-top: 20px;
  }

  .cta01__button-link {
    width: 280px;
    padding: 11px 16px;
  }
  .cta01__button-link::after {
    right: 16px;
  }

  .cta01__button-icon {
    width: 24px;
  }

  .cta01__button-text {
    font-size: 18px;
  }

}





/*-------------------------------------
feature
-------------------------------------*/

.feature {
  margin-top: 80px;
  padding-top: 35px;
}

.feature .common-heading__title {
  letter-spacing: 0.05em;
}

.feature .common-heading__en {
  position: absolute;
  top: -30px;
  left: -56px;
  width: 156px;
}

.feature__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px 55px;
}

.feature__item {
  width: calc((100% - 55px * 2) / 3);
  overflow: hidden;
  position: relative;
}

.feature__item-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 106px;
  height: 106px;
  border-radius: 10px 0 0 0;
  background-color: var(--color-navy);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  display: flex;
  flex-direction: column;
  padding: 7px 8px;
  font-weight: 700;
  font-family: var(--Poppins);
  color: #fff;
  z-index: 1;
}

.feature__item-label-en {
  font-size: 18px;
  line-height: calc(27 / 18);
}

.feature__item-label-num {
  padding-left: 11px;
  font-size: 32px;
  line-height: calc(36 / 32);
}

.feature__item-image img {
  border-radius: 10px;
  aspect-ratio: 390 / 236;
}

.feature__item-body {
  margin-top: 18px;
}

.feature__item-title {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: calc(29 / 20);
}

.feature__item-text {
  margin-top: 8px;
  font-weight: 300;
}


@media screen and (max-width: 1279.98px) {
  .feature__list {
    gap: 36px 28px;
  }
  .feature__item {
    width: calc((100% - 28px) / 2);
  }
}


@media screen and (max-width: 767.98px) {

  .feature {
    margin-top: 32px;
  }

  .feature .common-heading__en {
    top: -17px;
    left: -19px;
    width: 78px;
  }

  .feature__item-title {
    font-size: min(calc(100vw / 375 * 20), 20px);
  }
  .feature__item-title .pc {
    display: none;
  }

  .feature__list {
    margin-top: 32px;
    flex-direction: column;
    gap: 25px;
  }

  .feature__item {
    width: 100%;
    border-radius: 5px;
  }

  .feature__item-body {
    margin-top: 20px;
  }

}





/*-------------------------------------
cta02
-------------------------------------*/

.cta02 {
  margin-top: 102px;
}

.cta02__container {
  padding: 89px 5px 98px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(233, 206, 71, 0.699999988079071);
  background-image: url(../image/cta02/cta02_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta02__subTitle {
  padding-inline: 24px;
  font-weight: 600;
  font-size: 24px;
  line-height: calc(33 / 24);
  color: #0074e8;
  position: relative;
}
.cta02__subTitle::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "";
  width: 2px;
  height: 28px;
  transform: rotate(-35deg);
  background-color: #0074e8;
}
.cta02__subTitle::after {
  position: absolute;
  top: 2px;
  right: 0;
  content: "";
  width: 2px;
  height: 28px;
  transform: rotate(35deg);
  background-color: #0074e8;
}

.cta02__title {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
  font-size: min(calc(100vw / 1000 * 64), 64px);
  line-height: calc(87 / 64);
  text-shadow: 0px 0px 9px #ffffff;
}

.cta02__button {
  margin-top: 17px;
}


@media screen and (max-width: 767.98px) {

  .cta02 {
    margin-top: 40px;
  }

  .cta02__container {
    padding-top: 74px;
    padding-bottom: 74px;
    background-image: url(../image/cta02/cta02_bg_sp.webp);
  }

  .cta02__subTitle {
    font-size: 16px;
  }
  .cta02__subTitle::before,
  .cta02__subTitle::after {
    height: 24px;
  }

  .cta02__title {
    margin-top: 2px;
    font-size: min(calc(100vw / 375 * 40), 40px);
  }

  .cta02__button {
    margin-top: 30px;
  }

}





/*-------------------------------------
service
-------------------------------------*/

.service {
  margin-top: 100px;
  margin-bottom: 96px;
  padding-top: 37px;
  overflow: hidden;
}

.service .common-heading__en {
  position: absolute;
  top: -36px;
  left: -62px;
  width: 230px;
}

.service__lead {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 1107px;
  padding-inline: 30px;
}

.service__lead-image {
  position: relative;
  z-index: 2;
}

.service__lead-image img {
  border-radius: 10px;
}

.service__lead-body {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.service__lead-title {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
}

.service__lead-textZone {
  margin-top: 12px;
  margin-inline: auto;
  max-width: 900px;
}

.service__lead-text {
  text-align: left;
  line-height: 1.8;
}
.service__lead-text:not(:first-child) {
  margin-top: 30px;
}

.service__lead-deco {
  position: absolute;
  top: -44%;
  right: max(calc(-100vw / 1280 * 102), -102px);
  width: min(calc(100vw / 1280 * 189), 189px);
  z-index: -1;
}

.service__list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service__item {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.service__item--reverse {
  flex-direction: row-reverse;
}

.service__item-body {
  flex: 1;
}

.service__item-title {
  font-weight: 600;
  font-size: min(calc(100vw / 1000 * 24), 24px);
}

.service__item-textZone {
  margin-top: 12px;
}

.service__item-text {
  font-weight: 300;
  font-size: min(calc(100vw / 1000 * 16), 16px);
  color: #000;
}
.service__item-text:not(:first-child) {
  margin-top: 24px;
}

.service__item-imageZone {
  width: 43.6%;
  position: relative;
}

.service__item-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 106px;
  height: 106px;
  border-radius: 10px 0 0 0;
  background-color: var(--color-navy);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  padding: 20px 9px;
  z-index: 1;
}

.service__item-label-num {
  font-family: var(--Poppins);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #fff;
}

.service__item-image img {
  border-radius: 10px;
  aspect-ratio: 558 / 338;
}

.service__item-deco01 {
  position: absolute;
  top: 19px;
  left: max(calc(-100vw / 1280 * 53), -53px);
  width: min(calc(100vw / 1280 * 120), 120px);
  z-index: -1;
}

.service__item-deco02 {
  position: absolute;
  top: 0;
  right: max(calc(-100vw / 1280 * 39), -39px);
  width: min(calc(100vw / 1280 * 192), 192px);
  z-index: -1;
}


@media screen and (max-width: 767.98px) {

  .service {
    margin-top: 36px;
    margin-bottom: 40px;
  }

  .service .common-heading__en {
    top: -18px;
    left: -32px;
    width: 120px;
  }

  .service__lead {
    margin-top: 24px;
    padding-inline: 0;
  }

  .service__lead-image {
    width: 100%;
  }

  .service__lead-body {
    margin-top: 16px;
  }

  .service__lead-title {
    font-size: min(calc(100vw / 375 * 24), 24px);
  }

  .service__lead-text {
    margin-top: 8px;
  }

  .service__lead-deco {
    width: 82px;
    top: -16%;
    right: -43px;
  }

  .service__list {
    margin-top: 40px;
    gap: 32px;
  }

  .service__item,
  .service__item--reverse {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .service__item-title {
    text-align: center;
    font-size: 20px;
  }

  .service__item-textZone {
    margin-top: 8px;
  }

  .service__item-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .service__item-imageZone {
    width: 100%;
  }

  .service__item-label-num {
    font-size: 32px;
  }

  .service__item-deco01 {
    width: min(calc(100vw / 375 * 120), 120px);
    left: -50px;
    top: -30px;
  }

  .service__item-deco02 {
    top: 11%;
    right: -100px;
    width: min(calc(100vw / 375 * 192), 192px);
  }

}





/*-------------------------------------
work
-------------------------------------*/

.work {
  padding-top: 135px;
  padding-bottom: 100px;
  background-color: #fff;
  border-radius: 60px;
}

.work .common-heading__en {
  position: absolute;
  top: -30px;
  left: -50px;
  width: 188px;
}

.work__list {
  margin-top: 40px;
  display: flex;
  column-gap: min(calc(100vw / 1280 * 55), 55px);
}

.work__item {
  width: calc((100% - min(calc(100vw / 1280 * 55), 55px) * 2) / 3);
}

.work__item-image img {
  border-radius: 10px;
  aspect-ratio: 390 / 236;
}

.work__item-body {
  margin-top: 20px;
}

.work__item-title {
  font-weight: 600;
  font-size: 20px;
  line-height: calc(27 / 20);
}

.work__item-company {
  margin-top: 10px;
  font-weight: 600;
}

.work__item-text {
  margin-top: 8px;
  font-weight: 300;
}


@media screen and (max-width: 767.98px) {

  .work {
    padding-top: 50px;
    padding-bottom: 40px;
    border-radius: 15px;
  }

  .work .common-heading__en {
    top: -16px;
    left: -36px;
    width: 95px;
  }

  .work__list {
    margin-top: 35px;
    flex-direction: column;
    gap: 34px;
  }

  .work__item {
    width: 100%;
  }

  .work__item-image img {
    border-radius: 5px;
  }

  .work__item-body {
    margin-top: 16px;
  }

  .work__item-title {
    font-size: 18px;
    line-height: calc(25 / 18);
  }

}





/*-------------------------------------
what
-------------------------------------*/

.what {
  margin-top: 136px;
}

.what .common-heading__en {
  position: absolute;
  top: -35px;
  left: -58px;
  width: 200px;
}

.what__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 43px 66px;
}

.what__item {
  width: calc((100% - 66px * 2) / 3);
}

.what__item-image img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.what__item-text {
  margin-top: 22px;
  text-align: center;
  font-weight: 600;
  font-size: min(calc(100vw / 1000 * 20), 20px);
}


@media screen and (max-width: 767.98px) {

  .what {
    margin-top: 66px;
  }

  .what .common-heading__en {
    top: -18px;
    left: -33px;
    width: 100px;
  }

  .what__list {
    gap: 21px 15px;
  }

  .what__item {
    width: calc((100% - 15px) / 2);
  }

  .what__item-text {
    margin-top: 12px;
    font-size: 16px;
  }

}





/*-------------------------------------
option
-------------------------------------*/

.option {
  margin-top: 146px;
}

.option .common-heading__en {
  position: absolute;
  top: -22px;
  left: -48px;
  width: 120px;
}

.option__list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: min(calc(100vw / 1280 * 47), 47px);
}

.option__item {
  width: calc((100% - min(calc(100vw / 1280 * 47), 47px) * 3) / 4);
}

.option__item-image img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.option__item-text {
  margin-top: 21px;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
}


@media screen and (max-width: 767.98px) {

  .option {
    margin-top: 58px;
  }

  .option .common-heading__en {
    top: -15px;
    left: -22px;
    width: 60px;
  }

  .option__list {
    gap: 22px 15px;
  }

  .option__item {
    width: calc((100% - 15px) / 2);
  }

  .option__item-text {
    font-size: 16px;
  }

}





/*-------------------------------------
flow
-------------------------------------*/

.flow__content {
  margin-top: 25px;
}

.flow__inner {
  margin-inline: auto;
  max-width: 1340px;
  padding-inline: 20px;
}

.flow__scroll {
  padding-inline: 10px;
}

.flow-item {
  padding-top: 25px;
}

.flow-item__container {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 8px 0px rgba(233, 206, 71, 0.6000000238418579);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.flow-item__step {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  width: 100px;
}

.flow-item__text {
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
}

.flow01 {
  margin-top: 120px;
  padding-top: 125px;
  padding-bottom: 100px;
  border-radius: 60px;
  background-color: #fff;
}

.flow01 .common-heading__en {
  position: absolute;
  top: -25px;
  left: -50px;
  width: 100px;
}

.flow01__list {
  display: flex;
  column-gap: 30px;
}

.flow01__item {
  width: calc((100% - 30px * 4) / 5);
}

.flow01__item .flow-item__container {
  padding-top: 46px;
  padding-bottom: 47px;
}

.flow01__item-image {
  width: 66px;
}

.flow01__button {
  margin-top: 30px;
}

.flow02 {
  padding-top: 125px;
  padding-bottom: 100px;
  border-radius: 60px;
  background-color: #FFEFCF;
}

.flow02 .common-heading__en {
  position: absolute;
  top: -22px;
  left: -38px;
  width: 100px;
}

.flow02__list {
  display: flex;
  column-gap: 40px;
}

.flow02__item {
  width: calc((100% - 40px * 3) / 4);
}

.flow02__item .flow-item__container {
  padding-top: 53px;
  padding-bottom: 42px;
}

.flow02__item-image {
  width: 90px;
  height: 90px;
}
.flow02__item:nth-child(2) .flow02__item-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow02__item:nth-child(2) .flow02__item-image img {
  width: 72px;
}


@media screen and (max-width: 767.98px) {

  .flow__inner {
    padding-inline: 0;
  }

  .flow__scroll {
    padding-inline: 0;
  }

  .flow-item {
    padding-top: 34px;
  }

  .flow-item__container {
    box-shadow: 0px 0px 4px 0px rgba(233, 206, 71, 0.6000000238418579);
  }

  .flow-item__step {
    top: -5px;
    width: 72px;
  }

  .flow01 {
    margin-top: 42px;
    padding-top: 50px;
    padding-bottom: 40px;
    border-radius: 15px;
  }

  .flow01 .common-heading__en {
    top: -16px;
    left: -10px;
    width: 55px;
  }

  .flow01__list {
    width: 859px;
    padding-inline: 20px;
    column-gap: 16px;
  }

  .flow01__item,
  .flow02__item {
    width: 151px;
  }

  .flow01__item .flow-item__container,
  .flow02__item .flow-item__container {
    padding-block: 27px;
  }

  .flow01__item-image {
    width: 50px;
  }

  .flow01__button {
    margin-top: 24px;
  }

  .flow02 {
    padding-top: 50px;
    padding-bottom: 35px;
    border-radius: 15px;
  }

  .flow02 .common-heading__en {
    top: -10px;
    left: -10px;
    width: 60px;
  }

  .flow02__list {
    margin-inline: auto;
    width: 692px;
    padding-inline: 20px;
    column-gap: 16px;
  }

  .flow02__item-image {
    width: 50px;
    height: 50px;
  }

  .flow02__item:nth-child(2) .flow02__item-image img {
    width: 100%;
  }

}





/*-------------------------------------
contact
-------------------------------------*/

.contact {
  margin-top: 195px;
}

.contact__container {
  border-radius: 60px;
  background-color: #fff;
  padding: 88px 50px 96px;
}

.contact .common-heading__en {
  position: absolute;
  top: -25px;
  left: -62px;
  width: 145px;
}

.contact-form {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 760px;
}

.contact-form__item {
  display: flex;
}
.contact-form__item:not(:first-child) {
  margin-top: 56px;
}

.contact-form__label {
  width: 210px;
  padding-right: 10px;
}

.contact-form__label-text {
  display: inline-block;
  font-weight: 300;
  position: relative;
}
.contact-form__label-text::before {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  content: "※";
  font-weight: 400;
  font-size: 12px;
  color: #CB0000;
}
@media (hover: hover){
  .contact-form__label-text:hover {
    cursor: pointer;
  }
}

.contact-form__input-text::placeholder {
  color: #bababa;
}

.contact-form__input {
  margin: 0;
  flex: 1;
}

.contact-form__input-text,
.contact-form__textarea {
  width: 100%;
  background-color: #f7f7f7;
  padding: 11px 16px;
  font-weight: 300;
}

input[type="date"].contact-form__input-text {
  height: 46px;
  text-align: left;
}
input[type="date"].contact-form__input-text:invalid {
  color: #bababa;
}

/* iOS Safari対応：日付入力欄を左寄せ */
input[type="date"].contact-form__input-text::-webkit-date-and-time-value {
  text-align: left;
}
input[type="date"].contact-form__input-text > * {
  text-align: left;
}

.contact-form__select-zone {
  position: relative;
}
.contact-form__select-zone::before {
  position: absolute;
  top: 18px;
  right: 20px;
  content: "";
  width: 19px;
  height: 11px;
  background-color: #d9d9d9;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  pointer-events: none;
}
.contact-form__select {
  width: 100%;
  background-color: #f7f7f7;
  padding: 11px 16px;
  font-weight: 300;
}
.contact-form__select option:first-child {
  color: #D3D3D3;
}
.contact-form__select:invalid {
  color: #D3D3D3;
}
.contact-form__select option {
  color: #000;
}

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

.contact-form__bottom {
  margin-top: 60px;
  margin-inline: auto;
  max-width: 480px;
  padding-left: 40px;
}

.contact-form__check {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
  margin-inline: auto;
  max-width: 280px;
}
.contact-form__check-label {
  display: inline-block;
  cursor: pointer;
}
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
.contact-form__check-text {
  padding-left: 22px;
  font-size: 14px;
  line-height: 1;
  position: relative;
}
.contact-form__check-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid #bababa;
  background-color: #fff;
  vertical-align: middle;
}
input[type="checkbox"]:checked + .contact-form__check-text::after {
  position: absolute;
  top: 7px;
  left: 3.5px;
  transform: rotate(-45deg);
  content: "";
  width: 7px;
  height: 4px;
  border-left: 1px solid #bababa;
  border-bottom: 1px solid #bababa;
}

.contact-form__privacy {
  margin-top: 3px;
  margin-inline: auto;
  max-width: 280px;
  position: relative;
}

.contact-form__privacy-text {
  padding: 10px 16px;
  background-color: #f7f7f7;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
.contact-form__privacy-text::before {
  position: absolute;
  top: 50%;
  right: 19px;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #000;
}
.contact-form__privacy-text::after {
  position: absolute;
  top: 50%;
  right: 19px;
  content: "";
  width: 10px;
  height: 1px;
  transform: rotate(90deg);
  background-color: #000;
  transition: 0.3s;
}
.contact-form__privacy-text.is-active::after {
  transform: rotate(0deg);
}

.contact-form__privacy-area {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 150px;
  margin: 0 auto;
  padding: 10px 16px;
  background-color: #f7f7f7;
  font-size: 14px;
  z-index: 1;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.contact-form__privacy-area.is-active {
  opacity: 1;
  visibility: visible;
}

.contact-form__button {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.contact-form__button .common-button__link {
  padding: 0;
  transition: all 0.3s;
}
.contact-form__button .common-button__icon {
  display: none;
}
.contact-form__button .common-button__text {
  width: 100%;
  height: 100%;
  padding: 10px 16px;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 767.98px) {

  .contact {
    margin-top: 40px;
  }

  .contact__container {
    border-radius: 10px;
    padding: 50px min(calc(100vw / 375 * 20), 20px) 40px;
  }

  .contact .common-heading__en {
    top: -13px;
    left: -22px;
    width: 78px;
  }

  .contact-form {
    margin-top: 26px;
  }

  .contact-form__item {
    flex-direction: column;
    gap: 8px;
  }
  .contact-form__item:not(:first-child) {
    margin-top: 24px;
  }

  .contact-form__label {
    width: 100%;
    padding-right: 0;
  }

  .contact-form__textarea {
    height: 236px;
  }

  .contact-form__bottom {
    margin-top: 35px;
    max-width: 100%;
    padding-left: 0;
  }

  .contact-form__privacy-area {
    height: 160px;
  }

  .contact-form__button .common-button__icon {
    display: inline-block;
    pointer-events: none;
  }

}

@media screen and (max-width: 374.98px) {
  .contact-form__input-text#company-name::placeholder {
    font-size: 13px;
  }
}




/*-------------------------------------
faq
-------------------------------------*/

.faq {
  margin-top: 133px;
}

.faq .common-heading__en {
  position: absolute;
  top: -25px;
  left: -60px;
  width: 140px;
}

.faq__content {
  margin-top: 40px;
}

.faq__inner {
  margin-inline: auto;
  max-width: 840px;
  padding-inline: min(calc(100vw / 375 * 20), 20px);
}

.faq__accordion-item {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 8px 0px rgba(233, 206, 71, 0.6000000238418579);
}
.faq__accordion-item:not(:first-child) {
  margin-top: 24px;
}

.faq__accordion-button {
  display: block;
  width: 100%;
  padding: 40px 84px 33px 48px;
  position: relative;
}
.faq__accordion-button::before {
  position: absolute;
  top: 55%;
  right: 48px;
  transform: translateY(-50%);
  content: "";
  width: 23px;
  height: 2px;
  border-radius: 2px;
  background-color: #1C1C1C;
  transition: all 0.3s;
}
.faq__accordion-button::after {
  position: absolute;
  top: 55%;
  right: 48px;
  transform: translateY(-50%) rotate(90deg);
  content: "";
  width: 23px;
  height: 2px;
  border-radius: 2px;
  background-color: #1C1C1C;
  transition: all 0.3s;
}
.faq__accordion-button.is-active::after {
  transform: translateY(-50%) rotate(0);
}

.faq__accordion-flex {
  display: flex;
  gap: 10px;
}

.faq__accordion-en {
  font-family: var(--Poppins);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--color-navy);
}

.faq__accordion-question {
  font-weight: 600;
  font-size: 20px;
}

.faq__accordion-content {
  width: 100%;
  padding: 0 48px 33px 48px;
}

.faq__accordion-content .faq__accordion-flex {
  padding-top: 23px;
  border-top: 1px solid #e9d98d;
  padding-right: 36px;
}

.faq__accordion-answer {
  padding-top: 9px;
  font-weight: 300;
}

.js-accordion-content {
  display: none;
}


@media screen and (max-width: 767.98px) {

  .faq {
    margin-top: 55px;
  }

  .faq .common-heading__en {
    top: -14px;
    left: -22px;
    width: 70px;
  }

  .faq__content {
    margin-top: 26px;
  }

  .faq__accordion-button {
    padding: 20px min(calc(100vw / 375 * 62), 62px) 22px min(calc(100vw / 375 * 20), 20px);
  }

  .faq__accordion-button::before {
    top: 31px;
    right: min(calc(100vw / 375 * 20), 20px);
    transform: translateY(0);
    width: 20px;
  }
  .faq__accordion-button::after {
    top: 31px;
    right: min(calc(100vw / 375 * 20), 20px);
    transform: translateY(0) rotate(90deg);
    width: 20px;
  }
  .faq__accordion-button.is-active::after {
    transform: rotate(0);
  }

  .faq__accordion-flex {
    gap: 8px;
  }

  .faq__accordion-en {
    font-size: 24px;
  }

  .faq__accordion-question {
    font-size: 18px;
  }

  .faq__accordion-content {
    padding: 0 min(calc(100vw / 375 * 20), 20px) 20px min(calc(100vw / 375 * 20), 20px);
  }

  .faq__accordion-content .faq__accordion-flex {
    padding-top: 21px;
    padding-right: 0;
    gap: 12px;
  }



}





/*-------------------------------------
philosophy
-------------------------------------*/

.philosophy {
  margin-top: 80px;
  padding-top: 72px;
  padding-bottom: 35px;
  overflow: hidden;
}

.philosophy .common-inner {
  position: relative;
}

.philosophy__container {
  border-radius: 50px;
  background-color: #ffefcf;
  padding: 95px 48px 125px;
}

.philosophy .common-heading__en {
  position: absolute;
  top: -28px;
  left: -72px;
  width: 178px;
}

.philosophy__lead {
  margin-top: 40px;
}

.philosophy__lead-title {
  text-align: center;
  font-weight: 600;
  font-size: 56px;
}

.philosophy__lead-title .line {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.philosophy__lead-title .line::before {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  width: 402px;
  height: auto;
  aspect-ratio: 402 / 43;
  background-image: url(../image/philosophy/philosophy_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.philosophy__lead-text {
  margin-top: 12px;
  margin-inline: auto;
  max-width: 900px;
  text-align: left;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.8;
}

.philosophy__content {
  margin-top: 64px;
}

.philosophy__item {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
.philosophy__item:not(:first-child) {
  margin-top: 40px;
}

.philosophy__item-image {
  width: 36.4%;
}

.philosophy__item-image img {
  border-radius: 10px;
}

.philosophy__item-body {
  flex: 1;
}

.philosophy__item-title {
  font-weight: 600;
  font-size: 24px;
}

.philosophy__item-text {
  margin-top: 12px;
  font-weight: 300;
  line-height: 1.8;
}
.philosophy__item:nth-child(3) .philosophy__item-text {
  padding-right: min(calc(100vw / 1280 * 75), 75px);
}

.philosophy__deco01 {
  position: absolute;
  top: -40px;
  left: -85px;
  width: min(calc(100vw / 1280 * 305), 305px);
  transform: rotate(10deg);
}

.philosophy__deco02 {
  position: absolute;
  top: min(calc(100vw / 1280 * 202), 202px);
  left: -24px;
  width: min(calc(100vw / 1280 * 120), 120px);
  transform: rotate(10deg);
}

.philosophy__deco03 {
  position: absolute;
  bottom: -32px;
  right: -57px;
  width: min(calc(100vw / 1280 * 316), 316px);
}


@media screen and (max-width: 767.98px) {

  .philosophy {
    margin-top: 8px;
    padding-top: 32px;
    padding-bottom: 13px;
  }

  .philosophy__container {
    border-radius: 20px;
    padding: 55px 20px 32px;
  }

  .philosophy .common-heading__en {
    top: -18px;
    left: -50px;
    width: 92px;
  }

  .philosophy__lead {
    margin-top: 28px;
  }

  .philosophy__lead-title {
    font-size: 24px;
  }

  .philosophy__lead-title .line::before {
    width: 201px;
    left: 50%;
    transform: translateX(-50%);
  }

  .philosophy__lead-text {
    font-size: 16px;
  }

  .philosophy__content {
    margin-top: 26px;
  }

  .philosophy__item {
    flex-direction: column;
    position: relative;
    z-index: 2;
  }
  .philosophy__item:not(:first-child) {
    margin-top: 28px;
  }

  .philosophy__item-image {
    width: 100%;
  }

  .philosophy__item-image img {
    border-radius: 5px;
  }
  .philosophy__item:not(:first-child) .philosophy__item-image img {
    transform: scaleX(-1);
  }

  .philosophy__item-body {
    margin-top: 16px;
  }

  .philosophy__item-title {
    font-size: 20px;
  }

  .philosophy__item-text {
    line-height: 1.5;
  }

  .philosophy__item:nth-child(3) .philosophy__item-text {
    padding-right: 0;
  }

  .philosophy__deco01 {
    top: -20px;
    left: -30px;
    width: min(calc(100vw / 375 * 115), 115px);
    transform: rotate(16deg);
  }

  .philosophy__deco02 {
    top: min(calc(100vw / 375 * 70), 70px);
    left: -11px;
    width: 48px;
    transform: rotate(17deg);
  }

  .philosophy__deco03 {
    bottom: -10px;
    right: -10px;
    width: 120px;
  }

}





/*-------------------------------------
message
-------------------------------------*/

.message {
  margin-top: 108px;
}

.message .common-heading__en {
  position: absolute;
  top: -25px;
  left: -73px;
  width: 150px;
}

.message__container {
  margin-top: 40px;
  display: flex;
  align-items: center;
  column-gap: 40px;
}

.message__image {
  width: 43.5%;
}

.message__image img {
  border-radius: 20px;
}

.message__body {
  flex: 1;
}

.message__body-title {
  font-weight: 600;
  font-size: 24px;
}

.message__body-textZone {
  margin-top: 12px;
}

.message__body-text {
  font-weight: 300;
  line-height: 1.8;
}
.message__body-text:not(:first-child) {
  margin-top: 30px;
}


@media screen and (max-width: 767.98px) {

  .message {
    margin-top: 45px;
  }

  .message .common-heading__en {
    top: -16px;
    left: -36px;
    width: 85px;
  }

  .message__container {
    margin-top: 24px;
    flex-direction: column;
    padding-inline: 20px;
  }

  .message__image {
    width: 100%;
  }

  .message__body {
    margin-top: 20px;
  }

  .message__body-title {
    text-align: center;
    font-size: 20px;
  }

  .message__body-text {
    line-height: 1.5;
  }
  .message__body-text:not(:first-child) {
    margin-top: 25px;
  }

}





/*-------------------------------------
company
-------------------------------------*/

.company {
  margin-top: 100px;
}

.company__container {
  border-radius: 60px;
  background-color: #fff;
  padding: 113px 50px 100px;
}

.company .common-heading__en {
  position: absolute;
  top: -25px;
  left: -62px;
  width: 152px;
}

.company__container-inner {
  margin-top: 50px;
  margin-inline: auto;
  max-width: 700px;
}

.company__item {
  display: flex;
}
.company__item:not(:first-child) {
  margin-top: 38px;
}

.company__item-title {
  width: 140px;
  border-bottom: 2px solid var(--color-skyblue);
  padding-bottom: 32px;
  font-weight: 600;
  line-height: calc(22 / 16);
  color: #020202;
}

.company__item-text {
  flex: 1;
  border-bottom: 2px solid #C1C1C1;
  padding-left: 16px;
  padding-bottom: 32px;
  font-weight: 300;
  color: #020202;
}

.company__item-text a {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.company__image {
  margin-top: 48px;
}

.company__image img {
  border-radius: 10px;
}


@media screen and (max-width: 767.98px) {

  .company {
    margin-top: 40px;
  }

  .company__container {
    border-radius: 10px;
    padding: 48px 16px 40px;
  }

  .company .common-heading__en {
    top: -14px;
    left: -35px;
    width: 80px;
  }

  .company__container-inner {
    margin-top: 25px;
  }

  .company__item {
    flex-direction: column;
    border-bottom: 1px solid #A6C5E7;
    padding-bottom: 24px;
  }
  .company__item:not(:first-child) {
    margin-top: 24px;
  }

  .company__item-title {
    width: 100%;
    padding-bottom: 0;
    border-bottom: none;
  }

  .company__item-text {
    margin-top: 12px;
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .company__image {
    margin-top: 25px;
  }

  .company__image img {
    border-radius: 5px;
  }

}





/*-------------------------------------
cta03
-------------------------------------*/

.cta03 {
  margin-top: 100px;
}

.cta03__container {
  padding: 78px 5px 120px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(233, 206, 71, 0.699999988079071);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta03__container-inner {
  position: relative;
  z-index: 1;
}
.cta03__container-inner::before {
  position: absolute;
  top: 60%;
  left: max(calc(-100vw / 1280 * 200), -200px);
  transform: translateY(-50%);
  content: "";
  width: min(calc(100vw / 1280 * 274), 274px);
  height: auto;
  aspect-ratio: 274 / 322;
  background-image: url(../image/cta03/cta03_deco01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.cta03__container-inner::after {
  position: absolute;
  top: 69%;
  right: max(calc(-100vw / 1280 * 170), -170px);
  transform: translateY(-50%);
  content: "";
  width: min(calc(100vw / 1280 * 292), 292px);
  height: auto;
  aspect-ratio: 292 / 357;
  background-image: url(../image/cta03/cta03_deco02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.cta03__subTitle {
  width: fit-content;
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  line-height: calc(33 / 24);
  color: var(--color-navy);
  position: relative;
}
.cta03__subTitle::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "";
  width: 2px;
  height: 28px;
  transform: rotate(-35deg);
  background-color: var(--color-navy);
}
.cta03__subTitle::after {
  position: absolute;
  top: 2px;
  right: 0;
  content: "";
  width: 2px;
  height: 28px;
  transform: rotate(35deg);
  background-color: var(--color-navy);
}

.cta03__title {
  margin-top: 8px;
  text-align: center;
  font-weight: 600;
  font-size: min(calc(100vw / 1000 * 56), 56px);
  line-height: calc(76 / 56);
  color: var(--color-navy);
}

.cta03__button {
  margin-top: 25px;
}


@media screen and (max-width: 767.98px) {

  .cta03 {
    margin-top: 18px;
    padding-top: 20px;
    padding-bottom: 10px;
    overflow: hidden;
  }

  .cta03__container {
    padding-top: 62px;
    padding-bottom: 38px;
    background-image: url(../image/cta03/cta03_bg_sp.webp);
  }

  .cta03__container-inner::before {
    background-image: url(../image/cta03/cta03_deco01_sp.svg);
    top: -85px;
    left: -50px;
    transform: translateY(0);
    content: "";
    width: 115px;
  }
  .cta03__container-inner::after {
    background-image: url(../image/cta03/cta03_deco02_sp.svg);
    top: -72px;
    right: -58px;
    transform: translateY(0);
    width: 86px;
  }

  .cta03__subTitle {
    font-size: min(calc(100vw / 375 * 18), 18px);
    padding-inline: min(calc(100vw / 375 * 16), 16px);
  }
  .cta03__subTitle::before,
  .cta03__subTitle::after {
    height: 24px;
  }

  .cta03__title {
    margin-top: 4px;
    font-size: min(calc(100vw / 375 * 28), 28px);
  }

  .cta03__button {
    margin-top: 30px;
  }

}





/*-------------------------------------
footer
-------------------------------------*/

.footer {
  margin-top: 100px;
  border-radius: 50px 50px 0px 0px;
  background-color: var(--color-navy);
  padding-top: 80px;
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}

.footer .common-inner {
  position: relative;
}

.footer__logo {
  width: 358px;
}

.footer__nav {
  margin-top: 40px;
}

.footer__nav-list {
  display: flex;
  column-gap: 24px;
}

.footer__nav-item {
  width: calc((100% - 24px * 3) / 4);
}

.footer__nav-link {
  width: 100%;
  height: 100%;
  padding-block: 15px;
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid #DDD;
  position: relative;
}
.footer__nav-link::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.footer__nav-link span {
  display: inline-block;
}

.footer__nav-icon {
  width: 24px;
}

.footer__copy {
  display: block;
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.footer__pageTop {
  position: absolute;
  top: 26px;
  right: min(calc(100vw / 375 * 20), 20px);
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background-color: #fff;
  z-index: 9;
}
.footer__pageTop::before {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 20px;
  height: 14px;
  background-color: var(--color-navy);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.footer__deco {
  position: absolute;
  top: -82px;
  right: 0;
  width: 250px;
  z-index: -1;
}


@media screen and (max-width: 767.98px) {

  .footer {
    margin-top: 72px;
    border-radius: 20px 20px 0px 0px;
    padding-top: 27px;
    padding-bottom: 51px;
  }

  .footer__logo{
    width: min(calc(100vw / 375 * 261), 261px);
  }

  .footer__nav {
    margin-top: 22px;
  }

  .footer__nav-list {
    flex-direction: column;
    row-gap: 25px;
  }

  .footer__nav-item {
    width: 100%;
  }

  .footer__copy {
    margin-top: 42px;
  }

  .footer__pageTop {
    top: 3px;
    width: min(calc(100vw / 375 * 48), 48px);
    height: min(calc(100vw / 375 * 48), 48px);
  }
  .footer__pageTop::before {
    top: min(calc(100vw / 375 * 17), 17px);
    width: 18px;
    height: 13px;
  }

  .footer__deco {
    top: -60px;
    width: 145px;
  }

}