@charset "utf-8";

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

:root {
  --NotoSansJP: "Noto Sans JP", sans-serif;
  --NotoSerifJP: "Noto Serif JP", serif;
  --Roboto: "Roboto", sans-serif;
}





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

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

.body {
  font-family: var(--NotoSansJP);
  line-height: 1.4;
  color: #333;
}
.body.no-scroll {
  overflow: hidden;
}

.main {
  margin-top: 165px;
}
@media screen and (max-width: 767.98px) {
  .main {
    margin-top: 80px;
  }
}

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: inline-block;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

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



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

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



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

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

.common-heading__en {
  text-align: center;
  font-family: var(--Roboto);
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #1e7ac7;
  text-transform: uppercase;
}

.common-heading__ja {
  margin-top: -5px;
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1280 * 52), 52px);
  letter-spacing: 0.05em;
  line-height: calc(75 / 52);
  color: #24106a;
  position: relative;
  z-index: 1;
}
.common-heading__ja .small {
  font-size: min(calc(100vw / 1280 * 42), 42px);
}
.common-heading__ja .underLine {
  position: relative;
}
.common-heading__ja .underLine::before {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 95%;
  height: 10px;
  background-color: #cececf;
  z-index: -1;
}
.common-heading__ja .number {
  display: inline-block;
  width: min(calc(100vw / 1280 * 65), 65px);
  transform: translateY(-8px);
}

@media screen and (max-width: 767.98px) {
  .common-heading__en {
    font-size: 16px;
  }
  .common-heading__ja {
    margin-top: 0;
    font-size: min(calc(100vw / 375 * 26), 26px);
  }
  .common-heading__ja .small {
    font-size: min(calc(100vw / 375 * 24), 24px);
  }
  .common-heading__ja .number {
    margin-top: 10px;
    margin-inline: 3px;
    width: 26px;
    transform: translateY(-4px);
  }
  .common-heading__ja .underLine::before {
    bottom: 3px;
    height: 7px;
  }
}



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

.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);
  }
}

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

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






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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 165px;
  background-color: #fff;
  z-index: 999;
}

.header__inner {
  width: 100%;
  height: 100px;
  padding-left: 27px;
  padding-right: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: min(calc(100vw / 1440 * 412), 412px);
  height: auto;
  aspect-ratio: 412 / 55;
  position: relative;
  z-index: 9999;
}

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

.header__flex {
  display: flex;
  align-items: center;
  column-gap: min(calc(100vw / 1000 * 12), 12px);
}
.header__flex.sp-only {
  display: none;
}

.header__button {
  width: min(calc(100vw / 1000 * 262), 262px);
  height: min(calc(100vw / 1000 * 60), 60px);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
}
.header__button--material {
  background-color: #00bfa6;
}
.header__button--contact {
  background-color: #ea9500;
}

.header__button--material .header__button-icon {
  width: 37px;
}
.header__button--contact .header__button-icon {
  width: 24px;
}

.header__button-text {
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 16), 16px);
  letter-spacing: 0.05em;
  color: #fff;
}

.header__privacy {
  width: 68px;
}

.header__menu {
  width: 100%;
  height: 65px;
}

.header__nav {
  width: 100%;
  height: 100%;
  background-color: #26126b;
}

.header__nav-list {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: min(calc(100vw / 1440 * 40), 40px);
}

.header__nav-item {
  position: relative;
}
.header__nav-item:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: max(calc(-100vw / 1440 * 20), -20px);
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 20px;
  background-color: #8c90a1;
}

.header__nav-link {
  display: inline-block;
  font-weight: 700;
  font-size: min(calc(100vw / 1100 * 18), 18px);
  letter-spacing: 0.04em;
  color: #fff;
}

.hamburger {
  display: none;
}


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

  .header {
    height: 80px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
  }

  .header__inner {
    height: 100%;
    padding-left: 20px;
    padding-right: 0;
  }

  .header__logo {
    width: 230px;
  }

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

  .header__nav {
    width: 100%;
    padding-bottom: 80px;
    background-color: unset;
    overflow: auto;
  }

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

  .header__nav-item {
    width: 100%;
  }
  .header__nav-item:not(:first-child) {
    margin-top: 25px;
  }

  .header__nav-link {
    font-size: 16px;
    color: #26126b;
  }
  .header__nav-item:not(:first-child)::before {
    display: none;
  }

  .header__flex.pc-only {
    display: none;
  }
  .header__flex.sp-only {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .header__flex {
    margin-top: 40px;
    padding-inline: 20px;
  }

  .header__button {
    width: 262px;
    height: 50px;
  }

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

  .hamburger {
    display: block;
    position: fixed;
    top: 27px;
    right: 20px;
    width: 35px;
    height: 28px;
    padding: 5px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
  }

  @media (hover: hover) {
    .hamburger:hover {
      opacity: 0.7;
    }
  }

  .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: 2px;
    background-color: #26126b;
    transition: 0.3s;
  }
  .hamburger__line:nth-child(1) {
    top: 0;
  }
  .hamburger__line:nth-child(2) {
    top: 9px;
  }
  .hamburger__line:nth-child(3) {
    top: 17px;
  }
  .hamburger.is-active .hamburger__line:nth-child(1) {
    top: 8px;
    transform: rotate(-45deg);
  }
  .hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active .hamburger__line:nth-child(3) {
    top: 8px;
    transform: rotate(45deg);
  }

}





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

.fv {
  padding-top: 93px;
  padding-bottom: 122px;
  background-image: url(../image/fv_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.fv .common-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fv__catch {
  width: fit-content;
  padding-left: 16px;
  text-align: center;
  font-family: var(--NotoSerifJP);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: #26126b;
  position: relative;
  z-index: 1;
}
.fv__catch::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skewX(-20deg);
  content: "";
  width: 107%;
  height: 142%;
  background-color: #fff;
  z-index: -1;
}

.fv__title {
  margin-top: 28px;
  text-align: center;
  font-family: var(--NotoSerifJP);
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 61), 61px);
  line-height: 1.2;
  letter-spacing: 0.055em;
  color: #fff;
}

.fv__title span {
  font-size: min(calc(100vw / 1000 * 85), 85px);
}
.fv__title span.space {
  margin-left: min(calc(100vw / 1000 * 42), 42px);
}

.fv__list {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  column-gap: min(calc(100vw / 1440 * 30), 30px);
}

.fv__item {
  width: 236px;
  height: 236px;
  padding-top: 16px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fv__item:nth-child(1) .fv__item-image {
  width: 66px;
}
.fv__item:nth-child(2) .fv__item-image {
  width: 56px;
}
.fv__item:nth-child(3) .fv__item-image {
  width: 102px;
}

.fv__item-text {
  margin-top: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.fv__item-text .color {
  display: inline-block;
  font-size: 33px;
  line-height: 1.3;
  color: #1e7ac7;
  position: relative;
  z-index: 1;
}
.fv__item:nth-child(3) .fv__item-text .color {
  margin-top: -12px;
  margin-left: 5px;
  font-size: 26px;
  line-height: 1.65;
}
.fv__item-text .color::before {
  position: absolute;
  bottom: 1px;
  left: 0;
  content: "";
  width: 100%;
  height: 20%;
  background-color: #ffaa16;
  z-index: -1;
}
.fv__item:nth-child(3) .fv__item-text .color::before {
  bottom: 3px;
  height: 18%;
}

.fv__buttonZone {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  column-gap: 18px;
}

.fv__button {
  width: min(calc(100vw / 900 * 375), 375px);
  height: min(calc(100vw / 900 * 87), 87px);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
}
.fv__button--material {
  background-color: #00bfa6;
}
.fv__button--contact {
  background-color: #ea9500;
}

.fv__button--material .fv__button-icon {
  width: 42px;
}
.fv__button--contact .fv__button-icon {
  margin-left: 12px;
  width: 27px;
}

.fv__button-text {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #fff;
}


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

  .fv {
    padding-top: 50px;
    padding-bottom: 64px;
  }

  .fv__catch {
    font-size: 21px;
  }
  .fv__catch::before {
    height: 122%;
  }

  .fv__title {
    line-height: 1.4;
  }

  .fv__list {
    flex-wrap: wrap;
    gap: 0 10px;
  }

  .fv__item {
    width: calc((100% - 10px) / 2);
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .fv__item:nth-child(3) {
    margin-top: -10px;
  }

  .fv__item:nth-child(1) .fv__item-image {
    width: min(calc(100vw / 375 * 40), 40px);
  }
  .fv__item:nth-child(2) .fv__item-image {
    width: min(calc(100vw / 375 * 36), 36px);
  }
  .fv__item:nth-child(3) .fv__item-image {
    width: min(calc(100vw / 375 * 70), 70px);
  }

  .fv__item-text {
    font-size: min(calc(100vw / 375 * 14), 14px);
  }

  .fv__item-text .color {
    font-size: min(calc(100vw / 375 * 22), 22px);
  }

  .fv__item:nth-child(3) .fv__item-text .color {
    font-size: min(calc(100vw / 375 * 17), 17px);
  }

  .fv__buttonZone {
    flex-direction: column;
    row-gap: 16px;
  }

  .fv__button {
    width: 262px;
    height: 50px;
  }

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

}





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

.company {
  padding-top: 50px;
  padding-bottom: 76px;
  overflow: hidden;
}

.company__sliderZone {
  margin-top: 40px;
  display: flex;
}

.company__slider {
  display: flex;
  align-items: center;
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.company__slider-item {
  margin-inline: 30px;
}

.company__slider-item img {
  height: 33px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.company__slider-item.company__slider-item01 img {
  height: 40px;
}
.company__slider-item.company__slider-item02 img {
  height: 42px;
}
.company__slider-item.company__slider-item07 img {
  height: 40px;
}
.company__slider-item.company__slider-item09 img {
  height: 48px;
}


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

  .company {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .company__slider {
    animation-duration: 25s;
  }

  .company__slider-item {
    margin-inline: 25px;
  }

  .company__slider-item img {
    height: 20px;
  }
  .company__slider-item.company__slider-item01 img {
    height: 25px;
  }
  .company__slider-item.company__slider-item02 img {
    height: 26px;
  }
  .company__slider-item.company__slider-item07 img {
    height: 25px;
  }
  .company__slider-item.company__slider-item09 img {
    height: 28px;
  }

}





/*-------------------------------------
movie
-------------------------------------*/

.movie {
  padding-top: 126px;
  padding-bottom: 120px;
  background-image: url(../image/movie_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.movie__container {
  margin-inline: auto;
  max-width: 962px;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0px 0px 16px rgba(4, 0, 0, 0.1);
  padding-top: 30px;
  padding-inline: 50px;
  padding-bottom: 84px;
  position: relative;
}

.movie__tag {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 305px;
  height: 40px;
  background-color: #1e7ac7;
  text-align: center;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 0.05em;
  color: #fff;
}

.movie__wrapper {
  margin-top: 25px;
  margin-inline: auto;
  max-width: 810px;
}

.movie__wrapper video {
  width: 100%;
}


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

  .movie {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .movie__tag {
    top: -16px;
    width: 240px;
    height: 32px;
    font-size: 19px;
    line-height: 32px;
  }

  .movie__container {
    padding-top: 28px;
    padding-inline: 20px;
    padding-bottom: 32px;
  }

  .movie__wrapper {
    margin-top: 24px;
  }

}





/*-------------------------------------
problem
-------------------------------------*/

.problem-top {
  padding-top: 123px;
  padding-bottom: 92px;
}

.problem-top__inner {
  padding-inline: 20px;
}

.problem-top__list {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 20px;
}

.problem-top__item {
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.problem-top__item-number {
  position: absolute;
  top: -16px;
  left: 36px;
  font-family: var(--NotoSerifJP);
  font-weight: 500;
  font-size: 76px;
  line-height: 1;
  color: #796e9d;
}

.problem-top__item-image {
  margin-inline: auto;
  width: 305px;
}

.problem-top__item-title {
  margin-top: 15px;
  text-align: center;
  font-weight: 700;
  font-size: min(3.2vw, 32px);
  letter-spacing: 0.05em;
  color: #594e7c;
}

.problem-top__item-text {
  margin-top: 10px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.problem-top__item-text span {
  display: inline-block;
}

.problem-top__arrow {
  margin-top: 70px;
  margin-inline: auto;
  width: 175px;
}

.problem-bottom {
  padding-top: 70px;
  padding-bottom: 75px;
  background-image: url(../image/problem_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.problem-bottom__text {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1280 * 35), 35px);
  letter-spacing: 0.05em;
  color: #fff;
}

.problem-bottom__text .big {
  font-size: min(calc(100vw / 1280 * 48), 48px);
}

.problem-bottom__text .color {
  font-size: min(calc(100vw / 1280 * 69), 69px);
  color: #f69f08;
}


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

  .problem-top {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .problem-top__list {
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
  }

  .problem-top__item {
    width: 100%;
  }

  .problem-top__item-number {
    left: calc(50% - 120px);
    font-size: 60px;
  }

  .problem-top__item-image {
    width: 220px;
  }

  .problem-top__item-title {
    margin-top: 8px;
    font-size: 21px;
  }

  .problem-top__item-text {
    font-size: 16px;
  }

  .problem-top__arrow {
    margin-top: 40px;
    width: 100px;
  }

  .problem-bottom {
    padding-block: 40px;
  }

  .problem-bottom__text {
    font-size: 18px;
  }

  .problem-bottom__text .big {
    font-size: 21px;
  }

  .problem-bottom__text .color {
    font-size: 24px;
  }

}





/*-------------------------------------
about
-------------------------------------*/

.about {
  padding-top: 118px;
  padding-bottom: 174px;
  background-image: url(../image/about_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.about::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 2px;
  height: 76px;
  background-color: #112e80;
}

.about .common-heading__ja {
  margin-top: 7px;
}

.about-top__flex {
  margin-top: 42px;
  display: flex;
  column-gap: min(calc(100vw / 1280 * 65), 65px);
}

.about-top__image {
  width: 48%;
}

.about-top__text {
  flex: 1;
  font-size: 18px;
  line-height: calc(45 / 18);
}

.about-middle {
  margin-top: 112px;
}

.about-middle__title {
  padding-block: 21px;
  border-top: 2px solid #24106a;
  border-bottom: 2px solid #24106a;
  text-align: center;
  font-size: min(calc(100vw / 1280 * 42), 42px);
  line-height: calc(60 / 42);
  color: #24106a;
  position: relative;
}
.about-middle__title::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 30px;
  height: 18px;
  background-color: #24106a;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.about-middle__wrapper {
  margin-top: 42px;
}

.about-middle__scroll {
  display: contents;
}

.about-middle__item {
  display: flex;
}
.about-middle__item.collection {
  margin-top: 16px;
}
.about-middle__item.calculation {
  margin-top: -36px;
}

.about-middle__left {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.survey .about-middle__left {
  background-color: #24106A;
}
.survey .about-middle__left::after {
  position: absolute;
  top: calc(100% - 15px);
  left: 0;
  content: "";
  width: 100%;
  height: 70px;
  background-color: #24106A;
  clip-path: polygon(0% 0%, 100% 0%, 100% 20px, 50% 100%, 0% 20px);
}

.collection .about-middle__left {
  background-color: #0E599E;
  clip-path: polygon(0% 0%, 50% 50px, 100% 0%, 100% calc(100% - 50px), 50% 100%, 0% calc(100% - 50px));
}
.collection .about-middle__left::after {
  position: absolute;
  top: calc(100% - 15px);
  left: 0;
  content: "";
  width: 100%;
  height: 70px;
  background-color: #0E599E;
  clip-path: polygon(0% 0%, 100% 0%, 100% 20px, 50% 100%, 0% 20px);
}

.calculation .about-middle__left {
  background-color: #119CB1;
  clip-path: polygon(0% 0%, 50% 50px, 100% 0%, 100% calc(100% - 70px), 50% calc(100% - 20px), 0% calc(100% - 70px));
}

.about-middle__left-text {
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  color: #fff;
}

.about-middle__center {
  flex: 1;
  padding-left: 45px;
}
.survey .about-middle__center {
  padding-block: 30px;
}
.calculation .about-middle__center {
  padding-block: 60px;
}
.collection .about-middle__center {
  padding-block: 55px;
}

.about-middle__center-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-middle__center-item {
  border-radius: 4px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 21px;
}
.survey .about-middle__center-item {
  width: 161px;
  height: 83px;
  border: 1px solid #24106A;
  color: #24106A;
}
.collection .about-middle__center-item {
  width: 161px;
  height: 122px;
  border: 1px solid #0E599E;
  color: #0E599E;
}
.calculation .about-middle__center-item {
  width: 246px;
  height: 71px;
  border: 1px solid #119CB1;
  color: #119CB1;
}

.about-middle__right {
  width: 350px;
  padding-left: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.about-middle__right::before {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  content: "";
  width: 37px;
  height: auto;
  aspect-ratio: 37 / 150;
  background-image: url(../image/about_arrow.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.about-middle__right-text {
  text-align: center;
  font-weight: 700;
  font-size: 45px;
  line-height: 1;
  color: #f72300;
}

.about-middle__right-desc {
  display: block;
  margin-top: 22px;
  width: 100%;
  padding: 8px 2px;
  background-color: #ffdad4;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: calc(26 / 16);
}

.about-bottom {
  margin-top: 30px;
  padding: 60px;
  background-image: url(../image/about_bottom.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.about-bottom::before {
  position: absolute;
  top: 15px;
  left: 15px;
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid #fff;
}

.about-middle__text {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1280 * 35), 35px);
  letter-spacing: 0.05em;
  line-height: calc(72 / 47);
  color: #fff;
}
.about-middle__text .big {
  font-size: min(calc(100vw / 1280 * 47), 47px);
}
.about-middle__text .underLine {
  position: relative;
}
.about-middle__text .underLine::before {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  width: 88%;
  height: 3px;
  background-color: #f69f08;
}


@media screen and (max-width: 999.98px) {
  .about-middle__scroll {
    display: block;
  }
  .about-middle__list {
    width: 1100px;
  }
}

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

  .about {
    padding-top: 80px;
    padding-bottom: 48px;
    overflow: hidden;
  }
  .about::before {
    height: 48px;
  }

  .about-top__flex {
    margin-top: 36px;
    flex-direction: column;
    align-items: center;
  }

  .about-top__image {
    width: 100%;
    max-width: 450px;
  }

  .about-top__text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 2;
  }

  .about-middle {
    margin-top: 48px;
  }

  .about-middle__title {
    padding-block: 16px;
    font-size: 20px;
  }
  .about-middle__title::after {
    width: 25px;
    height: 14px;
  }

  .about-bottom {
    padding: 25px;
  }
  .about-bottom::before {
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }

  .about-middle__text {
    font-size: 18px;
  }

  .about-middle__text .big {
    font-size: 21px;
  }

  .about-middle__text .underLine::before {
    bottom: 1px;
    height: 2px;
  }

  .about-middle__wrapper {
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }

  .about-middle__list {
    width: 770px;
    padding-inline: min(calc(100vw / 375 * 20), 20px);
    padding-bottom: 20px;
  }

  .about-middle__left {
    width: 135px;
  }
  .calculation .about-middle__left {
    clip-path: polygon(0% 0%, 50% 50px, 100% 0%, 100% calc(100% - 50px), 50% 100%, 0% calc(100% - 50px));
  }

  .about-middle__left-text {
    font-size: 19px;
  }

  .about-middle__center {
    padding-left: 28px;
  }

  .about-middle__center-item {
    font-size: 16px;
  }
  .survey .about-middle__center-item {
    width: 125px;
    height: 60px;
  }
  .collection .about-middle__center-item {
    width: 125px;
    height: 77px;
  }
  .calculation .about-middle__center-item {
    width: 125px;
    height: 60px;
  }

  .about-middle__right {
    width: 280px;
    padding-left: 80px;
  }
  .about-middle__right::before {
    left: 20px;
    width: 24px;
  }

  .about-middle__right-text {
    font-size: 32px;
  }

  .about-middle__right-desc {
    margin-top: 14px;
    padding: 6px 2px;
    font-size: 14px;
  }

}





/*-------------------------------------
reason
-------------------------------------*/

.reason {
  padding-top: 134px;
  padding-bottom: 162px;
  background-image: url(../image/reason_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
.reason .common-heading__ja {
  margin-top: 8px;
}

.reason__list {
  margin-top: 65px;
}

.reason__item {
  display: flex;
  column-gap: min(calc(100vw / 1280 * 65), 65px);
  margin-right: -10px;
}
.reason__item.reason__item--reverse {
  flex-direction: row-reverse;
  margin-right: 0;
  margin-left: -20px;
}
.reason__item:not(:first-child) {
  margin-top: 86px;
}

.reason__item-body {
  width: 45.5%;
}

.reason__item-heading {
  padding-bottom: min(calc(100vw / 1280 * 25), 25px);
  border-bottom: 1px solid #96bed4;
  display: flex;
  align-items: center;
}

.reason__item-circle {
  width: min(calc(100vw / 1000 * 92), 92px);
  height: min(calc(100vw / 1000 * 92), 92px);
  background-image: url(../image/reason_circle.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.reason__item-en {
  text-align: center;
  font-family: var(--NotoSerifJP);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #fff;
}

.reason__item-number {
  text-align: center;
  font-family: var(--NotoSerifJP);
  font-weight: 500;
  font-size: min(calc(100vw / 1000 * 38), 38px);
  line-height: 1;
  color: #fff;
}

.reason__item-title {
  flex: 1;
  margin-left: min(calc(100vw / 1280 * 24), 24px);
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 30), 30px);
  line-height: calc(42 / 30);
  letter-spacing: 0.05em;
  color: #0d66b0;
}

.reason__item-text {
  margin-top: 25px;
  font-size: 15px;
  line-height: calc(35 / 15);
  letter-spacing: 0.05em;
}

.reason__item-image {
  flex: 1;
}


@media screen and (max-width: 1279.98px) {
  .reason__item {
    margin-right: 0;
  }
  .reason__item.reason__item--reverse {
    margin-left: 0;
  }
}

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

  .reason {
    padding-block: 60px;
  }

  .reason__list {
    margin-top: 40px;
  }

  .reason__item,
  .reason__item.reason__item--reverse {
    flex-direction: column;
  }
  .reason__item:not(:first-child) {
    margin-top: 48px;
  }

  .reason__item-body {
    width: 100%;
  }

  .reason__item-heading {
    padding-bottom: 12px;
  }

  .reason__item-circle {
    width: 65px;
    height: 65px;
  }

  .reason__item-number {
    font-size: 24px;
  }

  .reason__item-title {
    margin-left: min(calc(100vw / 375 * 14), 14px);
    font-size: min(calc(100vw / 375 * 18), 18px);
  }

  .reason__item-text {
    margin-top: 16px;
    font-size: min(calc(100vw / 375 * 15), 15px);
    line-height: 2;
  }

  .reason__item-image {
    margin-top: 21px;
    margin-inline: auto;
    max-width: 280px;
  }

}





/*-------------------------------------
cta
-------------------------------------*/

.cta {
  padding-top: 88px;
  padding-bottom: 95px;
  background-image: url(../image/cta_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.cta::before {
  position: absolute;
  bottom: 0;
  left: calc(50% + 355px);
  content: "";
  width: min(calc(100vw / 1440 * 360), 360px);
  height: auto;
  aspect-ratio: 313 / 298;
  background-image: url(../image/cta_woman.webp);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.cta__inner {
  margin-inline: auto;
  width: 80%;
  max-width: 788px;
  padding-inline: 20px;
}

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

.cta__heading-lead {
  font-family: var(--NotoSerifJP);
  font-size: min(calc(100vw / 1280 * 26), 26px);
  letter-spacing: 0.07em;
  color: #fff;
  display: inline-block;
  position: relative;
}
.cta__heading-lead::before {
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%) rotate(-25deg);
  content: "";
  width: 1px;
  height: 40px;
  background-color: #fff;
}
.cta__heading-lead::after {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%) rotate(25deg);
  content: "";
  width: 1px;
  height: 40px;
  background-color: #fff;
}

.cta__heading-link {
  margin-top: 26px;
  width: 100%;
  padding-block: min(calc(100vw / 1280 * 35), 35px);
  border-radius: 100px;
  background-color: #00bfa6;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 14px;
}

.cta__heading-icon {
  width: min(calc(100vw / 1000 * 35), 35px);
}

.cta__heading-text {
  font-weight: 700;
  font-size: min(calc(100vw / 1280 * 28), 28px);
  letter-spacing: 0.05em;
  color: #fff;
}

.cta__buttonZone {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}

.cta__button {
  width: 363px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  position: relative;
}
.cta__button--contact {
  height: min(calc(100vw / 1280 * 90), 90px);
  background-color: #ea9500;
}
.cta__button--tel {
  height: 90px;
  padding-bottom: 12px;
  background-color: #fff;
}

.cta__button-mailIcon {
  margin-left: 10px;
  width: 24px;
}
.cta__button-telIcon {
  width: 23px;
}

.cta__button-text {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #fff;
}
.cta__button-number {
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 35px;
  color: #24106a;
}

.cta__button-time {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #24106a;
}


@media screen and (max-width: 1439.98px) {
  .cta::before {
    left: auto;
    right: 3.5%;
  }
  .cta__buttonZone {
    flex-direction: column;
    row-gap: 35px;
  }
}

@media screen and (max-width: 767.98px) {
  .cta {
    padding-top: 48px;
    padding-bottom: 120px;
  }
  .cta::before {
    width: 117px;
    height: 112px;
  }
  .cta__inner {
    width: 90%;
    max-width: 450px;
    padding-inline: 10px;
  }
  .cta__heading-lead {
    text-align: center;
    font-size: 16px;
  }
  .cta__heading-link {
    padding-block: 15px;
    column-gap: 10px;
  }
  .cta__heading-icon {
    width: min(calc(100vw / 375 * 14), 14px);
  }
  .cta__heading-icon img {
    display: block;
  }
  .cta__heading-text {
    font-size: min(calc(100vw / 375 * 14), 14px);
  }
  .cta__buttonZone {
    margin-top: 24px;
    row-gap: 24px;
  }
  .cta__button--contact {
    width: 100%;
    height: auto;
    padding-block: 16px;
    column-gap: 10px;
  }
  .cta__button-mailIcon {
    margin-left: 0;
    width: 16px;
  }
  .cta__button-mailIcon img {
    display: block;
  }
  .cta__button-text {
    font-size: min(calc(100vw / 375 * 14), 14px);
  }
  .cta__button--tel {
    width: 100%;
    height: auto;
    padding-top: 6px;
    padding-bottom: 21px;
  }
  .cta__button-telIcon {
    width: 16px;
  }
  .cta__button-telIcon img {
    display: block;
  }
  .cta__button-number {
    font-size: 26px;
  }
  .cta__button-time {
    bottom: 10px;
    font-size: 11px;
  }
}





/*-------------------------------------
step
-------------------------------------*/

.step {
  padding-top: 158px;
  padding-bottom: 168px;
}

.step .common-heading__ja {
  letter-spacing: 0;
}

.step__top {
  position: relative;
  z-index: 1;
}
.step__top::before {
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: min(calc(100vw / 1280 * 624), 624px);
  height: auto;
  aspect-ratio: 624 / 371;
  background-image: url(../image/step_text.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.step__top-minute {
  position: absolute;
  top: -100%;
  right: 2%;
  width: min(calc(100vw / 1280 * 137), 137px);
}

.step__list {
  margin-top: 95px;
  position: relative;
  z-index: 1;
}

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

.step__item-left {
  width: min(calc(100vw / 1000 * 119), 119px);
  position: relative;
  z-index: 1;
}
.step__item-left::before {
  position: absolute;
  top: min(10vw, 100px);
  left: min(5.4vw, 54px);
  content: "";
  width: min(1.4vw, 14px);
  height: 100%;
  background-color: #cddaec;
  z-index: -1;
}
.step__item:last-child .step__item-left::before {
  display: none;
}

.step__item-circle {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-image: url(../image/step_circle.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.step__item-en {
  text-align: center;
  font-family: var(--NotoSerifJP);
  font-weight: 500;
  font-size: min(calc(100vw / 1000 * 20), 20px);
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
}

.step__item-number {
  margin-top: 1px;
  text-align: center;
  font-family: var(--NotoSerifJP);
  font-size: min(calc(100vw / 1000 * 43), 43px);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
}

.step__item-right {
  margin-left: min(calc(100vw / 1280 * 40), 40px);
  flex: 1;
  display: flex;
  padding-bottom: 55px;
  background-image: repeating-linear-gradient(90deg, rgba(36, 16, 106, 0.1), rgba(36, 16, 106, 0.1) 8px, transparent 8px, transparent 12px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}

.step__item-body {
  width: 50.5%;
  padding-top: 22px;
}

.step__item-title {
  font-weight: 700;
  font-size: min(2.8vw, 28px);
  letter-spacing: 0.05em;
  color: #24106a;
}

.step__item-text {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.step__item-image {
  flex: 1;
  margin-left: 15px;
}

.step__arrow {
  margin-top: 59px;
  margin-inline: auto;
  width: 172px;
}

.step__bottom {
  margin-top: 14px;
}

.step__bottom-title {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1280 * 45), 45px);
  letter-spacing: 0.05em;
  color: #24106a;
}

.step__bottom-list {
  margin-top: 40px;
  display: flex;
  column-gap: 40px;
}

.step__bottom-item {
  width: calc((100% - 40px) / 2);
}

.step__bottom-text {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1280 * 28), 28px);
  letter-spacing: 0.05em;
  color: #fff;
  padding-block: 12px;
  border-radius: 6px;
  background-color: #24106a;
  position: relative;
}
.step__bottom-text::after {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 24px;
  height: 15px;
  background-color: #24106a;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.step__bottom-image {
  margin-top: 36px;
}


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

  .step {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .step__top {
    margin-inline: auto;
    max-width: 425px;
  }

  .step__top::before {
    width: 80%;
    max-width: 330px;
  }

  .step__top-minute {
    top: -18px;
    width: 60px;
  }

  .step__list {
    margin-top: 50px;
  }

  .step__item:not(:first-child) {
    margin-top: 24px;
  }

  .step__item-left::before {
    top: 60px;
    left: 31px;
    width: 10px;
    height: calc(100% - 20px);
  }

  .step__item-left {
    width: 70px;
  }

  .step__item-circle {
    width: 70px;
    height: 70px;
  }

  .step__item-en {
    font-size: 13px;
  }

  .step__item-number {
    font-size: 25px;
  }

  .step__item-right {
    margin-left: 14px;
    flex-direction: column;
    padding-bottom: 42px;
  }

  .step__item-body {
    width: 100%;
  }

  .step__item-title {
    font-size: 21px;
  }

  .step__item-image {
    margin-top: 24px;
    margin-left: 0;
    width: 100%;
  }

  .step__arrow {
    margin-top: 42px;
    width: 100px;
  }

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

  .step__bottom-list {
    margin-top: 36px;
    row-gap: 40px;
    flex-direction: column;
    align-items: center;
  }

  .step__bottom-item{
    width: 100%;
    max-width: 280px;
  }

  .step__bottom-text {
    font-size: 16px;
    padding-block: 9px;
  }
  .step__bottom-text::after {
    width: 20px;
    height: 10px;
  }

  .step__bottom-image {
    margin-top: 21px;
  }

}





/*-------------------------------------
function
-------------------------------------*/

.function {
  padding-top: 123px;
  padding-bottom: 130px;
  background-image: url(../image/function_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.function__title {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1280 * 48), 48px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #24106a;
  position: relative;
  z-index: 1;
}
.function__title::before {
  position: absolute;
  top: 45%;
  left: 54%;
  transform: translate(-50%, -50%);
  content: "";
  width: min(calc(100vw / 1280 * 956), 956px);
  height: auto;
  aspect-ratio: 1912 / 556;
  background-image: url(../image/function_text.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

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

.function__title .color {
  color: #1e7ac7;
}

.function__list {
  margin-top: 53px;
  display: flex;
  flex-wrap: wrap;
  gap: 42px 39px;
  position: relative;
  z-index: 1;
}

.function__item {
  width: calc((100% - 39px) / 2);
  display: flex;
  flex-direction: column;
}

.function__item-title {
  border-radius: 6px 6px 0 0;
  background-color: #458ac4;
  padding: 27px 12px;
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 28), 28px);
  letter-spacing: 0.05em;
  color: #fff;
}

.function__item-body {
  flex: 1;
  padding-inline: min(calc(100vw / 1280 * 42), 42px);
  padding-bottom: 50px;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
}
.function__item:nth-child(1) .function__item-body {
  padding-top: 32px;
}
.function__item:nth-child(2) .function__item-body {
  padding-top: 22px;
}
.function__item:nth-child(3) .function__item-body {
  padding-top: 32px;
}
.function__item:nth-child(4) .function__item-body {
  padding-top: 32px;
}

.function__item-image {
  margin-inline: auto;
}
.function__item:nth-child(1) .function__item-image {
  margin-bottom: 22px;
  width: 250px;
}
.function__item:nth-child(2) .function__item-image {
  margin-bottom: 19px;
  width: 269px;
}
.function__item:nth-child(3) .function__item-image {
  margin-bottom: 22px;
  width: 249px;
}
.function__item:nth-child(4) .function__item-image {
  margin-bottom: 19px;
  width: 255px;
}

.function__item-text {
  font-size: 16px;
  line-height: calc(28 / 16);
  letter-spacing: 0.05em;
}

.function__bottom {
  margin-top: 54px;
  display: flex;
  justify-content: center;
}

.function__bottom-text {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 25), 25px);
  letter-spacing: 0.05em;
  color: #24106a;
  padding-bottom: 12px;
  position: relative;
}
.function__bottom-text::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #24106a;
}
.function__bottom-text::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #24106a;
}


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

  .function {
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .function__title {
    font-size: 21px;
  }
  .function__title .small {
    font-size: 16px;
  }

  .function__title::before {
    left: 50%;
    width: min(calc(100vw / 375 * 350), 350px);
  }

  .function__list {
    margin-top: 40px;
    margin-inline: auto;
    max-width: 450px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .function__item {
    width: 100%;
  }

  .function__item-title {
    padding-block: 21px;
    font-size: min(calc(100vw / 375 * 18), 18px);
  }

  .function__item-body {
    padding-bottom: 28px;
  }

  .function__item:nth-child(1) .function__item-image {
    width: 200px;
  }
  .function__item:nth-child(2) .function__item-image {
    margin-bottom: 19px;
    width: 219px;
  }
  .function__item:nth-child(3) .function__item-image {
    margin-bottom: 22px;
    width: 200px;
  }
  .function__item:nth-child(4) .function__item-image {
    margin-bottom: 19px;
    width: 205px;
  }

  .function__bottom {
    margin-top: 40px;
  }

  .function__bottom-text {
    font-size: min(calc(100vw / 375 * 16), 16px);
    padding-bottom: 8px;
  }

}





/*-------------------------------------
voice
-------------------------------------*/

.voice {
  padding-top: 106px;
  padding-bottom: 140px;
  background-image: url(../image/voice_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.voice__inner {
  margin-inline: auto;
  max-width: 1100px;
  padding-inline: 20px;
}

.voice .common-heading__ja {
  margin-top: 8px;
  position: relative;
}
.voice .common-heading__ja::before {
  position: absolute;
  top: -6px;
  transform: rotate(25deg);
  left: calc(50% + 190px);
  content: "";
  width: 7px;
  height: 19px;
  background-color: #1E7AC7;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}
.voice .common-heading__ja::after {
  position: absolute;
  top: 4px;
  transform: rotate(60deg);
  left: calc(50% + 200px);
  content: "";
  width: 7px;
  height: 19px;
  background-color: #1E7AC7;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.voice__content {
  margin-top: 55px;
  margin-inline: auto;
  max-width: 1440px;
  position: relative;
}

.voice__content-image {
  position: absolute;
  top: 8%;
  left: 0;
  width: 42%;
}

.voice__content-base {
  margin-left: auto;
  width: calc(50% + min(calc(100vw / 1440 * 355), 355px));
  background-image: url(../image/voice_base.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
}

.voice__content-inner {
  margin-left: min(calc(100vw / 1440 * 300), 300px);
  max-width: 640px;
  padding-top: 60px;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  padding-bottom: 295px;
}

.voice__content-name {
  display: inline-block;
  width: fit-content;
  background-color: #fff;
  padding: 5px 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #3f4851;
}

.voice__content-title {
  margin-top: 14px;
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 36), 36px);
  line-height: calc(52 / 36);
  color: #fff;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}

.voice__content-text {
  margin-top: 21px;
  font-size: 17px;
  line-height: calc(38 / 17);
  color: #fff;
}

.voice-bottom {
  margin-top: -246px;
  position: relative;
  z-index: 2;
}

.voice__container {
  box-shadow: 0px 0px 16px rgba(4, 0, 0, 0.1);
}

.voice__container-title {
  border-radius: 6px 6px 0 0;
  background-color: #eaf2f6;
  padding: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  color: #24106a;
}

.voice__container-title span {
  position: relative;
}
.voice__container-title span::before {
  position: absolute;
  top: 50%;
  right: 102.5%;
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 1px;
  background-color: #24106a;
}
.voice__container-title span::after {
  position: absolute;
  top: 50%;
  left: 102.5%;
  transform: translateY(-50%);
  content: "";
  width: 30px;
  height: 1px;
  background-color: #24106a;
}

.voice__container-body {
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  padding: 37px 50px 50px;
}

.voice__container-list {
  margin-inline: auto;
  max-width: 920px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

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

.voice__buttonZone {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.voice__button {
  width: 516px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: #eb3200;
  padding: min(calc(100vw / 1280 * 32), 32px);
  column-gap: 14px;
  padding-left: min(calc(100vw / 1280 * 55), 55px);
}

.voice__button-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #fff;
}

.voice__button-icon {
  width: 22px;
}


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

  .voice__content-image {
    position: relative;
    top: 0;
    margin-inline: auto;
    width: 100%;
    max-width: 450px;
  }

  .voice__content-base {
    margin-top: 24px;
    width: 100%;
  }

  .voice__content-inner {
    margin-left: 30%;
    padding-top: 40px;
  }

}

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

  .voice {
    padding-top: 48px;
    padding-bottom: 60px;
    background-size: contain;
    background-repeat: repeat;
  }

  .voice .common-heading__ja::before {
    top: -8px;
    left: 100%;
    width: 6px;
    height: 15px;
  }
  .voice .common-heading__ja::after {
    top: 0;
    left: 103%;
    width: 6px;
    height: 15px;
  }

  .voice__content {
    margin-top: 40px;
  }

  .voice__content-base {
    background-position: center right;
    background-color: rgba(0,0,0,0.9);
  }

  .voice__content-inner {
    margin-left: 0;
    padding-bottom: 150px;
  }

  .voice__content-name {
    font-size: 16px;
  }

  .voice__content-title {
    margin-top: 16px;
    font-size: 21px;
  }

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

  .voice-bottom {
    margin-top: -120px;
  }

  .voice__container-title {
    padding: 21px;
    font-size: 21px;
  }

  .voice__container-title span::before {
    right: calc(50% + 110px);
    width: 24px;
  }
  .voice__container-title span::after {
    left: calc(50% + 95px);
    width: 24px;
  }

  .voice__container-body {
    padding: 30px min(calc(100vw / 375 * 20), 20px);
  }

  .voice__container-list {
    margin-inline: auto;
    max-width: 400px;
    gap: 20px;
  }

  .voice__container-item {
    width: calc((100% - 20px) / 2);
  }

  .voice__button {
    max-width: 430px;
    padding: 14px;
    gap: 10px;
  }

  .voice__button-text {
    font-size: min(calc(100vw / 375 * 16), 16px);
  }

  .voice__button-icon {
    width: 17px;
  }
  .voice__button-icon img {
    display: block;
  }

}





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

.faq {
  padding-top: 126px;
  padding-bottom: 100px;
  background-color: #f7f7f7;
}

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

.faq .common-heading {
  position: relative;
  z-index: 1;
}
.faq .common-heading::before {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "?";
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 240px;
  color: #fff;
  z-index: -1;
  pointer-events: none;
}
.faq h3{
  font-size:28px;
  font-weight: 600;
  color:#1e7ac7;
  text-align: center;
  margin-top:50px;
}
.faq .common-heading__ja {
  margin-top: 8px;
}

.faq__accordion-list {
  margin-top: 40px;
}

.faq__accordion-item {
  padding-bottom: 12px;
  border-radius: 6px;
  box-shadow: 0px 0px 16px rgba(4, 0, 0, 0.1);
  background-color: #fff;
}

.faq__accordion-item:not(:first-child) {
  margin-top: 30px;
}

.faq__accordion-button {
  display: block;
  width: 100%;
  padding: 30px min(calc(100vw / 1280 * 52), 52px) 22px;
  position: relative;
}

.faq__accordion-button .faq__accordion-flex {
  display: flex;
  gap: 12px;
}
.faq__accordion-content .faq__accordion-flex {
  display: flex;
  gap: 22px;
}

.faq__accordion-en {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 500;
  font-family: var(--NotoSerifJP);
  font-size: 22px;
  line-height: 1;
  color: #fff;
}
.faq__accordion-button .faq__accordion-en {
  background-color: #24106a;
}
.faq__accordion-content .faq__accordion-en {
  background-color: #de1f00;
}

.faq__accordion-question,
.faq__accordion-answer {
  flex: 1;
  transition: all 0.3s;
}
.faq__accordion-question {
  padding-top: 10px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #24106a;
}
.faq__accordion-answer {
  font-size: 18px;
  line-height: calc(34 / 18);
  letter-spacing: 0.05em;
  margin-top:0.3em;
}
.faq__accordion-answer a{
  text-decoration: underline;
  color:#24106a;
}
.faq__accordion-content {
  width: 100%;
  padding: 24px min(calc(100vw / 1280 * 52), 52px) 34px;
  position: relative;
}
.faq__accordion-content::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: calc(100% - min(calc(100vw / 1280 * 104), 104px));
  height: 1px;
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2) 5px, transparent 5px, transparent 8px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}

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

.faq__accordion-button::after {
    display: block;
    position: absolute;
    right:40px;
    top:50%;
    transform: translateY(-25%) rotate(45deg);
    width: 15px;
    height: 15px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.faq__accordion-button.is-active::after {
    transform: rotate(225deg);
}



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

  .faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .faq .common-heading::before {
    top: 45%;
    font-size: 150px;
  }

  .faq h3{
    font-size:18px;
    margin-top:50px;
    margin-bottom: -20px;
  }

  .faq__accordion-item {
    padding-bottom: 4px;
  }
  .faq__accordion-item:not(:first-child) {
    margin-top: 21px;
  }

  .faq__accordion-button {
    padding: 16px;
  }

  .faq__accordion-en {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .faq__accordion-question {
    padding-top: 8px;
    padding-right: 10px;
    font-size: 16px;
  }

  .faq__accordion-content {
    padding: 24px 16px 10px;
  }

  .faq__accordion-content .faq__accordion-flex {
    gap: 16px;
  }

  .faq__accordion-answer {
    font-size: 15px;
  }

  .faq__accordion-content::before {
    width: calc(100% - 32px);
  }

  .faq__accordion-button::after{
    right:15px;
    width: 10px;
    height: 10px;
  }

}





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

.contact {
  padding-top: 118px;
  padding-bottom: 122px;
}

.contact .common-heading__ja {
  margin-top: 8px;
}
.contact .common-heading__ja span {
  display: inline-block;
}

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

.contact__lead {
  margin-top: 60px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.05em;
}

.contact__caution {
  margin-top: 20px;
  border-radius: 6px;
  background-color: #f9f9f9;
  padding: 42px min(calc(100vw / 1280 * 52), 52px) 58px;
}

.contact__caution-list {
  list-style: none;
  counter-reset: item;
}

.contact__caution-item {
  font-size: 15px;
  line-height: calc(26 / 15);
  counter-increment: item;
  position: relative;
  padding-left: 1.3em;
}
.contact__caution-item::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
}
.contact__caution-item:not(:first-child) {
  margin-top: 9px;
}

.contact__caution-item span {
  display: inline-block;
}

.contact__caution-item a {
  color: #1e7ac7;
  text-decoration: underline;
  text-underline-offset: 9px;
}

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

.contact-form__list {
  display: flex;
}
.contact-form__list.last {
  align-items: flex-start;
}

.contact-form__list:not(:first-child) {
  margin-top: 30px;
}

/* dt */
.contact-form__title {
  width: 300px;
  padding-inline: min(calc(100vw / 1280 * 27), 27px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-form__list.last .contact-form__label-zone {
  padding-top: 14px;
}

.contact-form__label {
  font-weight: 700;
  font-size: 18px;
  line-height: calc(24.33 / 18);
  letter-spacing: 0.05em;
}

.contact-form__must {
  padding: 1px 5px;
  background-color: #1e7ac7;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #fff;
}

/* dd */
.contact-form__data {
  flex: 1;
  margin: 0;
}

.contact-form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ebebeb;
  background-color: #fff;
  font-size: 18px;
}
.contact-form__input-zone.short .contact-form__input {
  width: 204px;
}

.contact-form__textarea {
  width: 100%;
  height: 220px;
  padding: 12px 16px;
  border: 1px solid #ebebeb;
  background-color: #fff;
  font-size: 18px;
  line-height: 1.5;
  resize: vertical;
}

.contact-form__radio-list {
  display: flex;
  gap: 16px 32px;
  flex-wrap: wrap;
}
input[type="radio"] {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}
.contact-form__radio-label {
  display: flex;
  width: fit-content;
  align-items: center;
  font-size: 15px;
  line-height: calc(24.33 / 15);
  letter-spacing: 0.05em;
  cursor: pointer;
}
.contact-form__radio-label::before {
  margin-right: 5px;
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #cdcdcd;
  border-radius: 50%;
  background-color: #fff;
}
input[type="radio"]:checked + .contact-form__radio-label::before {
  background-color: #24106a;
  box-shadow: inset 0 0 0 3px #fff;
}

.contact-form__post-list {
  display: flex;
  gap: 38px;
}
.contact-form__post-item.short {
  width: 111px;
}
.contact-form__post-item.long {
  width: 159px;
  position: relative;
}
.contact-form__post-item.long::before {
  position: absolute;
  top: 50%;
  left: -27px;
  transform: translateY(-50%);
  content: "";
  width: 16px;
  height: 1px;
  background-color: #333;
}
.contact-form__post-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ebebeb;
  background-color: #fff;
  font-size: 18px;
}

/* 個人情報の注意 */
.contact-form__caution {
  margin-top: 75px;
}
.contact-form__caution-title {
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.05em;
}
.contact-form__caution-container {
  margin-top: 20px;
  border-radius: 6px;
  border: 1px solid #d7d7d7;
  background-color: #fff;
  padding: 16px min(calc(100vw / 1280 * 44), 44px);
  height: 135px;
  overflow: auto;
}
.contact-form__caution-item:not(:first-child) {
  margin-top: 8px;
}
.contact-form__caution-text {
  font-size: 14px;
  line-height: calc(24 / 14);
  letter-spacing: 0.05em;
}

/* 個人情報のチェック */
.contact-form__check {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}
.contact-form__check-label {
  display: inline-block;
  cursor: pointer;
}
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
.contact-form__check-text {
  padding-left: 25px;
  font-size: 15px;
  letter-spacing: 0.05em;
  position: relative;
}
.contact-form__check-text .min-only {
  display: none;
}
.contact-form__check-text::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #B2B2B2;
  background-color: #fff;
  vertical-align: middle;
}
input[type="checkbox"]:checked + .contact-form__check-text::after {
  position: absolute;
  top: 7px;
  left: 4px;
  transform: rotate(-45deg);
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #B2B2B2;
  border-bottom: 2px solid #B2B2B2;
}

/* 送信ボタン */
.contact-form__submit {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.contact-form__submit-button {
  width: 100%;
  max-width: 508px;
  height: 90px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #24106a;
  transition: all 0.3s;
}
.contact-form__submit-button:disabled {
  cursor: not-allowed;
}
@media (hover: hover) {
  .contact-form__submit-button:hover {
    opacity: 0.7;
  }
}


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

  .contact {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .contact__lead {
    margin-top: 45px;
    font-size: 18px;
  }

  .contact__caution {
    padding: 21px 16px;
  }

  .contact__caution-item {
    font-size: 14px;
  }
  .contact__caution-item a {
    text-underline-offset: 5px;
  }

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

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

  .contact-form__data {
    width: 100%;
  }

  .contact-form__title {
    width: 100%;
    padding-inline: 0;
  }

  .contact-form__label {
    font-size: 16px;
  }

  .contact-form__must {
    font-size: 10px;
  }

  .contact-form__radio-list {
    flex-direction: column;
    row-gap: 6px;
  }

  .contact-form__input,
  .contact-form__post-input,
  .contact-form__textarea {
    padding: 10px;
    font-size: 16px;
  }

  .contact-form__post-item.short {
    width: 70px;
  }
  .contact-form__post-item.long {
    width: 115px;
  }

  .contact-form__input-zone.short .contact-form__input {
    width: 150px;
  }

  .contact-form__caution {
    margin-top: 48px;
  }

  .contact-form__caution-title {
    font-size: 16px;
  }

  .contact-form__caution-container {
    margin-top: 16px;
    padding: 10px 14px;
  }

  .contact-form__caution-text {
    font-size: 12px;
  }

  .contact-form__check {
    margin-top: 24px;
  }

  .contact-form__check-text {
    display: block;
  }

  input[type="checkbox"]:checked + .contact-form__check-text::after {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }

  .contact-form__submit-button {
    width: 100%;
    max-width: 430px;
    height: 64px;
    font-size: 18px;
  }

}

@media screen and (max-width: 499.98px) {
  .contact-form__check-text .min-only {
    display: block;
  }
}










/*-------------------------------------
info
-------------------------------------*/

.info {
  padding-top: 100px;
  padding-bottom: 160px;
  background-color: #ebf5fa;
}

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

.info .common-heading__ja {
  margin-top: 6px;
}

.info__container {
  margin-top: 32px;
  border-radius: 6px;
  background-color: #fff;
  padding: 42px min(calc(100vw / 1280 * 77), 77px) 92px;
}

.info__container-list {
  display: flex;
  border-bottom: 1px solid rgba(36, 16, 106, 0.149);
}

.info__container-titleZone {
  width: 200px;
  padding: 27px 5px;
  position: relative;
}
.info__container-titleZone::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #1E7AC7;
}

.info__container-title {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.info__container-dataZone {
  flex: 1;
  padding: 27px min(calc(100vw / 1280 * 34), 34px);
}

.info__container-data {
  font-size: 18px;
  line-height: calc(30 / 18);
  letter-spacing: 0.05em;
}

.info__container-data span {
  display: inline-block;
}

.info__container-data a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.info__container-data.last {
  display: flex;
  align-items: center;
}
.info__container-data img {
  display: block;
  width: 44px;
  margin-right: 20px;
  margin-block: -6px;
}


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

  .info {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .info__container {
    margin-top: 24px;
    padding: 10px 20px 30px;
  }

  .info__container-titleZone {
    width: 100px;
    padding: 16px 0;
  }

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

  .info__container-title span {
    display: inline-block;
  }

  .info__container-dataZone {
    padding: 16px 10px;
  }

  .info__container-data {
    font-size: min(calc(100vw / 375 * 14), 14px);
  }

  .info__container-data img {
    width: 34px;
    margin-top: 0;
    margin-right: 14px;
    margin-bottom: 0;
  }

}





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

.footer {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #24106a;
}

.footer__logo {
  margin-inline: auto;
  width: 170px;
}

.footer__copy {
  display: block;
  margin-top: 25px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #fff;
}

.pageTop {
  position: fixed;
  right: 36px;
  bottom: 10vh;
  width: 85px;
  height: 85px;
  transition: all 0.6s;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
.pageTop.is-active {
  opacity: 1;
  visibility: visible;
}

.pageTop-button {
  width: 100%;
  border-radius: 50%;
  background-color: #fff;
}


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

  .footer {
    padding-block: 36px;
    padding-inline: min(calc(100vw / 375 * 20), 20px);
  }

  .footer__logo {
    width: 112px;
  }

  .footer__copy {
    font-size: 10px;
  }

  .footer__copy span {
    display: inline-block;
  }

  .pageTop {
    right: 10px;
    width: 55px;
    height: 55px;
  }

}


/*-------------------------------------
サンクスページ
-------------------------------------*/
.thanks .inner {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
  padding-top:3em;
}

.thanks h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.8em;
  color: #41556d;
}

.thanks .btn_01 {
  margin-bottom: 40px;
}

.thanks .btn_01 {
  margin-bottom: 40px;
}

.thanks .btn_01 .btn {
  font-size: 22px;
  font-weight: 700;
  line-height: 80px;
  position: relative;
  display: block;
  width: 100%;
  max-width: 500px;
  margin: auto;
  cursor: pointer;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  background-color: #02bcf2;
}

.thanks .note {
    max-width: 600px;
    margin: auto;
    margin-bottom: 40px;
    padding-left: 1em;
    text-indent: -1em;
}

.thanks h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #41556d;
}

.thanks .company {
    max-width: 750px;
    margin: 0 auto 80px;
    padding: 20px 10px;
    text-align: center;
    color: #333;
    line-height: 1.8em;
    border-radius: 10px;
    border: #ccc 1px solid;
}