@charset "utf-8";
/*===================
fv
===================*/
.fv {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 782px;
}

.fv__img-wrap {
  position: relative;
  height: 97vh;
}
.fv__img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 760px;
  background-color: rgba(51, 62, 59, 0.3);
  pointer-events: none; /* クリックできる要素の上にオーバーレイしたい場合 */
}
.fv__movie {
  display: none;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.site-title {
  width: 218px;
  height: 154px;
  position: absolute;
  top: 278px;
  left: 19px;
  z-index: 1;
}

/* fvロゴ パラパラ↓ */
.site-title__text {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* 初期状態で透明 */
  transition: opacity 0.5s; /* スムーズな透明度の変化 */
}
.site-title__img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* .site-title__text {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
} */
.site-title .site-title__item {
  display: block;
  width: 218px;
  height: 154px;
  top: 36.4%;
  left: 19px;
  z-index: 1;
  overflow: hidden;
}
/* .site-title span::before {
  animation: img-wrap 15s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: transparent;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
} */

/* fvロゴ パラパラ↑ */

.sub-title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0.15em;
  z-index: 2;
}
/* .sub-title .sub-title__position {
  position: relative;
  top: -10px;
} */

/* 上からフェードアニメーション */
.sub-title__fade {
  position: absolute;
  top: 93px;
  opacity: 0;
  transform: translateY(-100px);
  z-index: 2;
}
.sub-title__fade--type01 {
  right: 16px;
}
.sub-title__fade--type02 {
  right: 54px;
}
.sub-title__fade--type03 {
  right: 90px;
}

.fv__vertical-text {
  width: 8px;
  position: absolute;
  top: 29px;
  left: 16px;
  z-index: 2;
  opacity: 0;
}
.fv__intro {
  width: 100%;
  max-width: 250px;
  position: absolute;
  bottom: 158px;
  left: 30px;
  z-index: 2;
  opacity: 0;
}
.fv__intro-heading {
  margin-bottom: 18px;
}
.fv__intro-headingImg {
  display: block;
}
.fv__intro-heading--type01 {
  width: 126px;
  margin-bottom: 10px;
}
.fv__intro-heading--type02 {
  width: 194px;
}

.fv__intro-text {
  width: 250px;
}

.fv__img {
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}
.fv__bg {
  width: 100%;
  position: absolute;
  bottom: -1px;
}

#logoGif {
  opacity: 0; /* 初期状態で非表示に設定 */
}
/* .fv__logo-movie {
  width: 218px;
  height: 154px;
} */

/* スクロールバー */
/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  bottom: 27px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 110px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.scroll__icon-wrap {
  position: absolute;
  width: 11px;
  height: 8px;
  bottom: -12px;
  right: -9px;
  transform: translateY(-25%) rotate(45deg);
}
.scroll__icon-wrap::before {
  animation: scrollIcon 2s infinite;
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 11px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@keyframes scrollIcon {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
}

/* スクロールバー */

/*===================
solution
===================*/
.solution {
  padding-top: 10px;
  padding-bottom: 126px;
  position: relative;
}
.solution__text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.28;
  letter-spacing: 0.15em;
  font-feature-settings: "palt";
}

/*===================
solved
===================*/
.solved {
  padding-bottom: 197px;
  position: relative;
  background: rgb(255, 178, 202);
  background: linear-gradient(0deg, rgba(255, 178, 202, 1) 0%, rgba(255, 68, 125, 1) 70%);
}
.solved__heading {
  color: #fff;
  font-size: 87px;
  font-family: "AvenirLTPro-HeavyOblique";
  position: absolute;
  top: -45px;
  z-index: 2;
  line-height: 1;
  letter-spacing: -0.015em;
}
.solved__img-wrap {
  position: relative;
  padding-top: 21px;
  margin-bottom: 24px;
  z-index: 1;
}
.solved__img {
  position: relative;
}
.solved__img1 {
  width: 223px;
  margin: 0 0 0 auto;
  z-index: 3;
}
.solved__img2 {
  width: 207px;
  position: absolute;
  top: 96px;
  left: 0;
  z-index: 2;
}
.solved__img3 {
  width: 328px;
  margin: 0 0 0 auto;
  padding-top: 34px;
  z-index: 1;
}
.solved__text-wrap {
  position: absolute;
  bottom: 120px;
  left: 20px;
  z-index: 4;
}
.solved__text {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0.15em;
}

.solved .arrow__down {
  padding-bottom: 36px;
}

.solved__bg {
  position: absolute;
  bottom: -1px;
}

/*===================
worry
===================*/
.worry {
  padding-bottom: 164px;
  position: relative;
}
.question__bg {
  width: 100%;
  position: absolute;
  top: -142px;
  left: -8px;
}
.worry__heading {
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  top: 0;
  right: 52px;
  height: 182px;
  line-height: 1.88;
  letter-spacing: 0.2em;
}

.worry__slide-wrap:not(:last-child) {
  margin-bottom: 53px;
}
.worry__slide-wrap1,
.worry__slide-wrap2,
.worry__slide-wrap3 {
  position: relative;
}
.worry__slide-wrap1 {
  margin-top: 79px;
}

.worry__slide {
  position: absolute;
  top: 13px;
  z-index: 2;
}

.worry__slide .splide__slide img {
  width: 100%;
  max-width: 257px;
  height: auto;
  margin: 0 auto;
  display: block;
}
/* ページネーションのスタイル */
.worry__slide-page {
  background-color: #fff;
  height: 10px;
  transition: 0.5s all;
  width: 10px;
  border-radius: 50px;
}
/* 現在表示されているページネーションのスタイル */
.worry__slide-page.is-active {
  background-color: #ff447d;
  opacity: 1;
}
/* ページネーションの位置 */
.worry__slide-pagination {
  position: absolute;
  bottom: -208px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
/* ページネーション間の余白 */
.worry__slide-pagination li {
  margin-left: 10px;
  margin-right: 10px;
}

/* 矢印のクリック範囲など */
.worry__slide .button {
  background-color: transparent; /* ボタンの背景を透明にする */
  transition: 0.2s;
  width: 25px;
  height: 40px;
  position: absolute;
  top: 182px;
}
.worry__slide .button.splide__arrow--prev {
  left: 0;
}
.worry__slide .button.splide__arrow--next {
  right: 0;
}
/* 矢印共通のスタイル */
.worry__slide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";

  margin: auto;
  position: absolute;
  top: 0;
  width: 19px;
  height: 37px;
}
/* 前の矢印 */
.worry__slide .prev::before {
  background-image: url("../imgs/index/worry_arrow_prev.png");
  left: 0;
}
/* 次の矢印 */
.worry__slide .next::before {
  background-image: url("../imgs/index/worry_arrow_next.png");
  right: 0;
}
/* 次のスライドが無い場合の矢印 */
.worry__slide .button:disabled::before {
  opacity: 0.5;
}

.worry__slide-contents {
  width: 88%;
  max-width: 290px;
  margin: 0 auto;
  padding: 130px 10px 70px 10px;
  background-color: #ffdae5;
  box-shadow: 4px 4px 10px 1px rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  position: relative;
  top: 31px;
}
.worry__comment-bg {
  width: 100%;
  max-width: 257px;
  position: absolute;
  top: -18px;
  left: 17px;
  right: auto;
}
.worry__slide-img {
  width: 80%;
  max-width: 216px;
  margin: 0 auto 20px;
}
.worry__slide-contents2 .worry__slide-img {
  max-width: 212px;
  margin: 0 auto 0;
}
.worry__slide-contents3 .worry__slide-img {
  max-width: 184px;
  margin: 0 auto 10px;
}
.worry__slide-text {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.42;
  letter-spacing: 0.15em;
}

/*===================
asn
===================*/
.asn {
  padding-top: 300px;
  padding-bottom: 322px;
  position: relative;
}
.asn__title-wrap {
  position: absolute;
  top: -55px;
}
.asn__title {
  color: #6decaa;
  font-size: 130px;
  font-family: "AvenirLTPro-HeavyOblique";
}
.slide-title__parts {
  display: block;
  line-height: 0.85;
}
.slide-title__parts1 {
  display: flex;
  justify-content: flex-end;
  padding-right: 31px;
}
.slide-title__parts2 {
  position: relative;
  left: -11px;
}
.slide-title__parts3 {
  display: flex;
  justify-content: flex-end;
  position: relative;
  right: -52px;
}
.asn__sub-title {
  width: 200px;
  position: absolute;
  bottom: 100px;
  left: 59%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.asn__line-box {
  width: calc(100% - 40px);
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 2;
}

.asn__bg {
  width: 100%;
  position: absolute;
  bottom: -1px;
}

/*===================
case
===================*/
.case {
  padding-top: 67px;
  padding-bottom: 59px;
}

.case .text__common {
  padding-bottom: 20px;
}

.slide-text__loop {
  color: #6decaa;
  font-size: 120px;
  font-family: "AvenirLTPro-Light";
}

/* スライド */
.case__wrap {
  width: 100%;
  max-width: 375px;
  margin: 0 auto 37px;
}

/*splide */
.case__slide {
  position: relative;
}
.case__slide .splide__arrows {
  position: absolute;
  right: 30px;
  bottom: 15%;
  z-index: 1;
}

/* 矢印のクリック範囲など */
.case__slide .button {
  width: 50px;
  height: 50px;
  transition: 0.2s;
  cursor: pointer;
}
.case__slide button svg {
  opacity: 0;
}
/* 前の矢印 */
.case__slide button.splide__arrow--prev {
  margin-right: 10px;
  background-image: url(../imgs/index/slide-ancL.png);
  background-size: contain;
  background-repeat: no-repeat;
}
/* 次の矢印 */
.case__slide button.splide__arrow--next {
  background-image: url(../imgs/index/slide-ancR.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* スライドの中身 */
.splide-case__slide {
  width: 375px;
  height: 330px;
  margin-top: 10px;
}
.case__talk {
  width: 331px;
  height: 233px;
  background-color: #ffdae5;
  border-radius: 50%;
  box-shadow: 5px 4px 8px 0 rgb(0, 0, 0, 0.4);
  position: relative;
  margin: 0 auto;
}

.case__talkBox {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.case__talkBox-title {
  margin-bottom: 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #4d4d4d;
}
.case__talkBox-titleSpace {
  letter-spacing: 0;
}
.case__talkBox-btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 170px;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  background-color: #06c755;
  color: #fff;
}
.case__talkIcon {
  width: 76px;
  position: absolute;
  left: 50px;
  bottom: -80px;
}
.case__talkIcon-type {
  margin-top: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #4d4d4d;
}

/* モーダル中身 */
.remodal-overlay {
  background: rgba(255, 255, 255, 0.9);
}
.accordion-open {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 50px;
}
.remodal-wrapper {
  margin-top: 25px;
  overflow: hidden; /*追加 2024/10/24*/
}
.remodal {
  width: calc(100% - 40px);
  max-width: 331px;
  margin: 0 auto 20px auto;
  height: 100%;
}
.remodal-case {
  background-color: #6decaa;
  padding: 55px 0 0 0;
  box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.4);
}
.remodal-case .remodal-close {
  margin: 10px 0 0 10px;
  width: auto;
  text-align-last: left;
  color: #4d4d4d;
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.modal__close-text {
  font-family: "HelveticaLTPro-Bold";
}

.remodal-case .remodal-close--element {
  width: 43px;
  height: 26px;
  position: fixed; /*追加 2024/10/24*/
  top: 11px;
  left: auto;
  right: 10px;
  margin: 0;
}
.remodal-case .remodal-close--element span {
  display: block;
  width: 42px;
  height: 1px;
  background-color: #4d4d4d;
  transition: 0.3s;
  position: absolute;
}
.remodal-case .remodal-close--element span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(26deg);
  top: 50%;
  left: 50%;
}
.remodal-case .remodal-close--element span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-26deg);
}

.remodal-case .remodal-close::before {
  display: none;
}
.remodal-cancel {
  display: none;
}
.remodal-confirm {
  display: none;
}
/* モーダル矢印 */
.modal__close-anc {
  position: relative;
  top: -3px;
  display: block;
  width: 5.2px;
  height: 9.5px;
  padding-right: 15px;
}
.modal__close-anc::before,
.modal__close-anc::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #4d4d4d;
  transform-origin: 0.5px 50%;
}
.modal__close-anc::before {
  transform: rotate(45deg);
}
.modal__close-anc::after {
  transform: rotate(-45deg);
}

/* ライントーク */
.line-talk__inner {
  /*追加2024/10/24*/
  overflow: auto;
  height: 100%;
}
.line-talk {
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.line-talk__left {
  display: flex;
  justify-content: start;
  align-items: start;
}
.line-talk__icon {
  margin-right: 8px;
  width: 42px;
  height: 42px;
}
.line-talk__box {
  width: 215px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}
p.line-talk__text {
  font-size: 15px;
  color: #4d4d4d;
  line-height: 1.5;
  text-align: left;
  font-weight: 300;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
.line-talk__boxR {
  margin-right: 0;
  margin-left: auto;
  background: #d3f9e5;
}
.line-talk__end {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.line-talk__end-text {
  position: relative;
  font-size: 16px;
  color: #cccccc;
  text-align-last: left;
  font-weight: 200;
  width: 100%;
  height: 50px;
  background: #fff;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  padding: 0 20px;
}
.line-talk__end-text::after {
  position: absolute;
  top: 15px;
  left: 20px;
  content: "";
  display: block;
  height: 20px;
  width: 1px;
  background: #4d4d4d;
}

/* ページネーションのスタイル */
.case__slide-page {
  background-color: #fff;
  height: 10px;
  transition: 0.5s all;
  width: 10px;
  border-radius: 50px;
}
/* 現在表示されているページネーションのスタイル */
.case__slide-page.is-active {
  background-color: #ff447d;
  opacity: 1;
}
/* ページネーションの位置 */
.case__slide-pagination {
  position: absolute;
  bottom: 23px;
  right: 31px;
  z-index: 3;
}
/* ページネーション間の余白 */
.case__slide-pagination li {
  margin-left: 7.6px;
  margin-right: 7.6px;
}
.case__slide-pagination li:last-child {
  margin-right: 0;
}

/*===================
point
===================*/
.point {
  padding-bottom: 95px;
}

.point__slide .splide__slide img {
  width: 100%;
  height: auto;
}

/* ページネーションのスタイル */
.point__slide-page {
  background-color: #fff;
  transition: 0.5s all;
  width: 20px;
  height: 2px;
}
/* 現在表示されているページネーションのスタイル */
.point__slide-page.is-active {
  background-color: #ff447d;
  opacity: 1;
}
/* ページネーションの位置 */
.point__slide-pagination {
  position: absolute;
  top: 42px;
  right: 17px;
}
/* ページネーション間の余白 */
.point__slide-pagination li {
  margin-left: 5px;
  margin-right: 5px;
}

/* 矢印のクリック範囲など */
.point__arrows {
  width: 100%;
  max-width: 189px;
}
.point__slide .button {
  background-color: transparent; /* ボタンの背景を透明にする */
  transition: 0.2s;
  width: 20px;
  height: 40px;
  position: absolute;
  top: 220px;
}
.point__slide .button.splide__arrow--prev {
  left: 168px;
}
.point__slide .button.splide__arrow--next {
  right: 13px;
}
/* 矢印共通のスタイル */
.point__slide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";

  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 17px;
  height: 36px;
}
/* 前の矢印 */
.point__slide .prev::before {
  background-image: url("../imgs/index/point_arrow_prev.png");
}
/* 次の矢印 */
.point__slide .next::before {
  background-image: url("../imgs/index/point_arrow_next.png");
}
/* 次のスライドが無い場合の矢印 */
.point__slide .button:disabled::before {
  /* opacity: 0; */
  cursor: pointer;
}

/* pointコンテンツ ↓ */
.point .section-title {
  position: absolute;
  top: 23px;
  z-index: 2;
}

.point__list-item {
  width: 100%;
  max-width: 320px;
  padding-top: 70px;
  padding-bottom: 29px;
  background-color: #6decaa;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  position: relative;
}
.point__list-img {
  position: relative;
  width: calc(100% - 23px);
  max-width: 296px;
  margin: 0 auto 23px 0;
}
.point__num {
  color: #ff447d;
  font-size: 120px;
  font-family: "AvenirLTPro-LightOblique";
  line-height: 1;
  position: absolute;
  bottom: -42px;
}
.point__num--type01 {
  right: -41px;
}
.point__num--type02 {
  right: -29px;
}
.point__num--type03 {
  right: -27px;
}
.point__num--type04 {
  right: -27px;
}
.point__num--type05 {
  right: -27px;
}
.point__inner {
  width: calc(100% - 46px);
  margin: 0 auto;
}
.point__list-contents {
  margin-bottom: 20px;
}
.point__list-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.point__list-text {
  font-size: 14px;
  text-align: justify;
  font-feature-settings: "palt";
  line-height: 1.57;
  letter-spacing: 0.075em;
}
.point__list-text--height {
  height: 113.781px !important;
}
.point__list-note {
  font-size: 11px;
  line-height: 1.18;
  letter-spacing: 0.1em;
}
/* pointコンテンツ ↑ */

/*===================
how to use
===================*/
.how {
  padding-bottom: 890px;
  position: relative;
}
.how__main-img {
  position: relative;
}
.how__main-title {
  color: #fff;
  font-size: 62px;
  font-family: "AvenirLTPro-HeavyOblique";
  line-height: 1;
  position: absolute;
  top: 171px;
  right: 0;
}

.how__wrap {
  position: absolute;
  width: calc(100% - 40px);
  max-width: 331px;
  top: 338px;
}
.how__contents {
  width: 100%;
  background-color: #ff447d;
  border-radius: 29px;
  padding: 46px 25px 60px;
  position: relative;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
.how .section-title {
  font-size: 50px;
  margin-bottom: 17px;
}
.how__text {
  font-weight: 500;
  padding-bottom: 35px;
  line-height: 1.65;
}
.how__text--clr {
  width: 100%;
  max-width: 202px;
  padding-top: 10px;
  margin: 0 auto;
  display: block;
}
.how__list {
  width: 100%;
}
.how__list-item {
  width: 100%;
  max-width: 240px;
  margin: 0 0 0 auto;
  position: relative;
}
.how__list-item:not(:last-child) {
  margin-bottom: 16px;
}
.how__text2 {
  width: 36px;
  position: absolute;
  top: 291px;
  left: 23px;
}

.line-link {
  width: 55px;
  height: 25px;
  position: absolute;
  top: 20px;
  left: 94px;
}

/*===================
Support member
===================*/

.support {
  background: #f0f2f3;
  padding-top: 10px;
}
.support__wrap {
  margin-top: 30px;
  padding-bottom: 60px;
  background: #6decaa;
  position: relative;
}
.support__title {
  width: 295px;
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  font-size: 42px;
  color: #ff447d;
}
.support__sub-title {
  padding-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/* スライド */
.splide__slide-support {
  height: 400px;
  margin: 0 auto;
}
/* 矢印共通のスタイル */
.support__slide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  margin: auto;
  position: absolute;
  top: -270px;
  width: 19px;
  height: 37px;
}
/* 前の矢印 */
.support__slide .prev::before {
  background-image: url("../imgs/index/support_arrow_prev.png");
  left: 0;
}
/* 次の矢印 */
.support__slide .next::before {
  background-image: url("../imgs/index/support_arrow_next.png");
  right: 0;
}
/* 次のスライドが無い場合の矢印 */
.support__slide .button:disabled::before {
  opacity: 0.5;
}
/* ページネーションのスタイル */
.support__slide-page {
  background-color: #fff;
  height: 10px;
  transition: 0.5s all;
  width: 10px;
  border-radius: 50px;
}
/* 現在表示されているページネーションのスタイル */
.support__slide-page.is-active {
  background-color: #4d4d4d;
  opacity: 1;
}
/* ページネーションの位置 */
.support__slide-pagination {
  width: 220px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
/* ページネーション間の余白 */
.support__slide li {
  margin-left: 10px;
  margin-right: 10px;
}

/* スライド中身 */
.support__container {
  width: 250px;
  margin: 0 auto;
}
.support__box {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.support__name {
  font-size: 24px;
  font-weight: 600;
  color: #4d4d4d;
  letter-spacing: 0.1em;
}
.support__img {
  width: 113px;
  margin-right: 20px;
}
.support__box-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-feature-settings: "palt";
}

/*===================
message
===================*/
.message {
  padding-top: 117px;
  padding-bottom: 65px;
  position: relative;
}
.message .section-title {
  position: absolute;
  top: 65px;
  right: 33px;
  z-index: 2;
}
.message__img {
  width: calc(100% - 50px);
  max-width: 325px;
  margin-bottom: 26px;
  position: relative;
}
.message__name {
  color: #fff;
  margin-bottom: 16px;
}
.message__name--sml,
.message__name--lrg {
  display: block;
}
.message__name--sml {
  font-size: 12px;
  margin-bottom: 4px;
  line-height: 1.83;
  letter-spacing: 0.1em;
}
.message__name--lrg {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.message__bg {
  width: 321px;
  position: absolute;
  bottom: -91px;
  left: 54px;
}
.message__bg img {
  mix-blend-mode: overlay;
}
.message__text-wrap {
  color: #fff;
}
.message__text-box01 {
  width: 100%;
  max-width: 331px;
  padding-bottom: 27px;
  margin-bottom: 24px;
  border-bottom: 1px solid #fff;
}
.message__text01 {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.075em;
  text-align: justify;
  font-feature-settings: "palt";
}
.message__text--lrg {
  font-size: 20px;
  font-weight: 600;
  font-feature-settings: "palt";
  margin-bottom: 17px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.message__text02 {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.71;
  letter-spacing: 0.1em;
  text-align: justify;
  font-feature-settings: "palt";
}
.message__text02:not(:last-child) {
  margin-bottom: 25px;
}
/*===================
faq
===================*/

.faq {
  padding-top: 70px;
  padding-bottom: 72px;
  background-color: #fff;
}
.faq .section-title {
  margin-bottom: 24px;
}
ul.faq__wrap {
  width: 100%;
}
li.faq__box:not(:last-child) {
  margin-bottom: 20px;
}
.faq__question {
  padding: 23px 6% 10px;
  background-color: #99f2c3;
  cursor: pointer;
  position: relative;
}
.faq__cat {
  position: absolute;
  width: 65px;
  top: 0;
  right: 0;
  padding: 3px;
  background: #949494;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
.faq__question-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
}
.faq__question-title {
  font-size: 24px;
  font-weight: bold;
  padding-right: 15px;
  line-height: 0.9;
}
.faq__question-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.faq__question-anText {
  font-size: 12px;
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.024em;
}
.faq__question-anAnc {
  margin: 0 auto;
}
.faq__question-an {
  text-align: center;
}

/* 矢印 */
.arrow {
  margin-top: 2px;
  position: relative;
  display: block;
  width: 10.2px;
  height: 4.9px;
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 7px;
  border-radius: 9999px;
  background-color: #4d4d4d;
  transform-origin: 50% calc(100% - 0.5px);
}
.arrow::before {
  transform: rotate(50deg);
}
.arrow::after {
  transform: rotate(-50deg);
}

/* open */
.accordion-open {
  display: none;
}
.faq__answer {
  margin-top: 5px;
  padding: 15px 6% 30px;
  background-color: #99f2c3;
}
.faq__answer-titleBox {
  margin-bottom: 10px;
}
.faq__answer-title {
  font-size: 24px;
  font-weight: bold;
}
.faq__answer-text {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.faq__answer-text:not(:last-child) {
  margin-bottom: 15px;
}
/* open　矢印 */
.open .arrow::before {
  top: -7px;
  bottom: auto;
  transform: rotate(130deg);
}
.open .arrow::after {
  top: -7px;
  bottom: auto;
  transform: rotate(-130deg);
}

/* 悩んだらまずご相談 */
.consult {
}
.consult__wrap {
  background: #4d4d4d;
  position: relative;
}
.consult__bg {
  position: relative;
  top: -1px;
}
.consult__title {
  width: 292px;
  position: absolute;
  top: 69px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.consult__wrap .text__common {
  padding-bottom: 20px;
}
.consult__down {
  margin-bottom: 20px;
}

/*===================
presence
===================*/

.present {
  padding-top: 80px;
  padding-bottom: 145px;
  background: #4d4d4d;
}
.present__inner {
  width: 100%;
  max-width: 311px;
  margin: 0 auto;
}
.present__title {
  line-height: 0.5;
  text-align: center;
  color: #fff;
  font-size: 62px;
  font-family: "AvenirLTPro-HeavyOblique";
}
.present__wrap {
  padding: 30px 17px 45px;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  text-align: center;
}
.present__sub {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.present__text {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 300;
}
.present__box {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid #fff;
}
.present__box-farst {
  margin-top: 30px;
}
.present__lavel {
  margin-bottom: 15px;
  display: inline-block;
  width: 152px;
  padding: 3px;
  background: #fff;
  color: #4d4d4d;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.present__nam {
  margin-bottom: 3px;
  font-size: 14px;
}
.present__quest {
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.present__explain {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.present__explain:not(:last-child) {
  margin-bottom: 15px;
}

/*===================
who we are
===================*/
.who {
  padding-top: 46px;
  position: relative;
}
.who__wrap {
  width: calc(100% - 21px);
  margin: 0 auto 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.who__title-wrap {
  width: 63px;
}
.who__contents {
  width: calc(100% - 78px);
  max-width: 271px;
  margin: 0 0 0 auto;
}
.who__heading-contents {
  width: 100%;
  max-width: 250px;
  margin-bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.who__heading {
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
.who__heading-logo {
  width: 183px;
  padding-top: 11px;
}
.who__text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 33px;
  text-align: justify;
  font-feature-settings: "palt";
  line-height: 1.85;
  letter-spacing: 0.1em;
}
.who__btn {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  width: 183px;
  margin-left: 12px;
  display: block;
  padding: 15px 5px 17px;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: #6decaa;
  border: 1px solid #6decaa;
  border-radius: 24px;
  position: relative;
  transition: background-color 0.3s;
}
.who__btn:hover {
  color: #6decaa;
  background-color: #fff;
}
.who__btn:before {
  content: "";
  display: block;
  width: 7px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 13px;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  background: url("../imgs/index/btn_arrow_rgt.png") center center / cover no-repeat;
}
.who__btn:hover:before {
  background: url("../imgs/index/btn_arrow_rgt_gr.png") center center / cover no-repeat;
}

/*===================
partner
===================*/
.partner {
  padding-top: 50px;
  position: relative;
}
.partner__bg-clr {
  width: 100%;
  height: 75px;
}
.partner__wrap {
  position: relative;
}
.partner__map-wrap {
  padding-top: 485px;
}
.partner__title-wrap {
  position: absolute;
  top: 155px;
  left: -6px;
}
.partner .section-title .section__title--block {
  display: block;
}
.partner__title-wrap02 {
  position: absolute;
  top: -93px;
  right: 29px;
}
.partner__sub-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: 0.1em;
}
.partner__map-img {
  width: calc(100% - 40px);
  max-width: 331px;
  margin: 0 auto;
  position: absolute;
  top: -57px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.partner__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-bottom: 74px;
}
.partner__list-item {
  border-right: 1px solid #4d4d4d;
}
.partner__list-item:first-child {
  border-left: 1px solid #4d4d4d;
}
.partner__list-item:nth-child(6) {
  border-left: 1px solid #4d4d4d;
}

.partner__list-btn {
  font-size: 14px;
  text-align: center;
  display: block;
  padding: 1px 9.4px;
  line-height: 1.28;
  letter-spacing: 0.025em;
  pointer-events: none;
  cursor: default;
}
.partner__list-item:nth-child(n + 6) .partner__list-btn {
  padding: 1px 10.8px;
}

.partner__address {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 64px;
}
.partner__address-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}
.partner__address-wrap {
  width: 100%;
}
.partner__address-contents {
  display: flex;
  justify-content: space-between;
}
.partner__address-contents:not(:last-child) {
  margin-bottom: 10px;
}
.partner__address-heading,
.partner__address-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
  letter-spacing: 0.025em;
}
.partner__address-heading {
  width: 78px;
}
.partner__address-text {
  width: calc(100% - 78px);
  max-width: 243px;
}
.partner__address-link {
  font-size: 11px;
  display: block;
  width: 120px;
  margin-left: 18px;
}

.privacy__heading {
  font-size: 14px;
  text-align: center;
  margin-bottom: 4px;
  line-height: 2.21;
  letter-spacing: 0.025em;
}
.privacy__contents {
  width: 100%;
  height: 208px;
  padding: 15px 10px 10px;
  background-color: #d3f9e5;
  margin: 0 auto;
  position: relative;
}
.privacy__contents02 {
  width: 100%;
  max-width: 296px;
  margin: 0 0 0 auto;
  height: 179px;
  overflow: auto;
  scrollbar-color: #fff #d3f9e5;
  scrollbar-width: thin;
  padding-right: 15px;
}
.privacy__contents02::-webkit-scrollbar {
  width: 6px;
  background-color: #d3f9e5;
}
.privacy__contents02::-webkit-scrollbar-thumb {
  background: #fff;
  width: 6px;
  height: 108px;
  border-radius: 5px;
}
.privacy__contents-heading,
.privacy__contents-text {
  font-size: 14px;
  line-height: 1.28;
  letter-spacing: 0.05em;
}
.privacy__contents-heading {
  text-align: center;
  margin-bottom: 18px;
}
.privacy__contents-text {
  text-align: justify;
  font-feature-settings: "palt";
}

.privacy__contents .privacy__contents-text:not(:last-child) {
  margin-bottom: 17px;
}
.privacy__line {
  width: 100%;
  max-width: 218px;
  height: 2px;
  margin: 25px auto;
  background-image: linear-gradient(to right, #4d4d4d 12px, transparent 12px);
  background-size: 14.6px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

/* トップに戻るボタン */
.totop-wrap {
  padding-top: 91px;
}
.totop {
  position: absolute;
  width: 51px;
  height: 51px;
  bottom: 0;
  right: 50px;
  z-index: 2;
}

.totop-wrap::after {
  content: "";
  display: block;
  width: calc(100% - 40px);
  max-width: 331px;
  margin: 0 auto;
  border-top: 1px solid #4d4d4d;
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
@media screen and (max-width: 1080px) {
  /*===================
fv
===================*/

  .fv__img-wrap {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    height: 100vh;
  }
  .fv__img--sp {
    display: none;
  }
  .fv__movie {
    display: block;
    width: 100%;
    height: 570px;
    min-height: auto;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
  }
}

@media screen and (max-width: 440px) {
  .fv__img-wrap {
    max-width: 100%;
  }
  .fv__movie {
    height: 590px;
  }

  .solved__bg {
    width: 100%;
    bottom: -0.227vw;
  }
  .question__bg {
    top: -38.263vw;
  }

  .point__list-item {
    max-width: 84.09vw;
  }
  .point__list-img {
    max-width: 346px;
  }
  /* .point__num--type01 {
    right: -20.909vw;
  }
  .point__num--type02 {
    right: -17.954vw;
  }
  .point__num--type03 {
    right: -18.181vw;
  }
  .point__num--type04 {
    right: -17.5vw;
  }
  .point__num--type05 {
    right: -17.5vw;
  } */
  .point__slide .button {
    top: 56.818vw;
  }
  .point__slide .button.splide__arrow--prev {
    left: 47.372vw;
  }
  .point__slide .button.splide__arrow--next {
    right: 4.545vw;
  }
  .point__slide-pagination {
    right: 7.136vw;
  }

  .message__img {
    max-width: 89.772vw;
  }
  .message__bg {
    width: 72.954vw;
    left: 26.818vw;
  }

  .partner__title-wrap {
    left: -6px;
  }
}
@media screen and (max-width: 380px) {
  .point__list-img {
    margin: 0 auto 6.052vw 0;
  }
  .point__list-heading {
    font-size: 5.7894vw;
    margin-bottom: 4.736vw;
  }
}

@media screen and (max-width: 375px) {
  /*===================
fv
===================*/
  .fv {
    min-height: 211vw;
  }

  .site-title {
    width: 58.133vw;
    height: 41.066vw;
    top: 75.733vw;
    left: 5.066vw;
  }
  .fv__intro {
    max-width: 66.666vw;
    bottom: 42.133vw;
    left: 8vw;
  }
  .fv__intro-heading {
    margin-bottom: 4.8vw;
  }
  .fv__intro-heading--type01 {
    width: 33.6vw;
    margin-bottom: 2.666vw;
  }
  .fv__intro-heading--type02 {
    width: 51.733vw;
  }

  .fv__intro-text {
    width: 66.666vw;
  }

  .scroll {
    bottom: 7.199vw;
  }
  .scroll::before {
    height: 29.333vw;
    width: 0.266vw;
  }
  .scroll__icon:before {
    width: 2.933vw;
    height: 2.133vw;
    bottom: -1.866vw;
    right: -2.4vw;
  }

  .scroll__icon-wrap {
    width: 2.933vw;
    height: 2.133vw;
    bottom: -3.2vw;
    right: -2.4vw;
  }
  .scroll__icon-wrap::before {
    height: 2.933vw;
    width: 0.266vw;
  }
  /*===================
solution
===================*/
  .solution {
    padding-top: 2.666vw;
    padding-bottom: 33.6vw;
  }
  .solution__text {
    font-size: 3.733vw;
  }

  /*===================
solved
===================*/
  .solved {
    padding-bottom: 52.533vw;
  }
  .solved__heading {
    font-size: 23.2vw;
    top: -12vw;
  }
  .solved__img-wrap {
    padding-top: 5.6vw;
    margin-bottom: 6.4vw;
  }
  .solved__img1 {
    width: 59.466vw;
  }
  .solved__img2 {
    width: 55.2vw;
    top: 25.6vw;
  }
  .solved__img3 {
    width: 87.466vw;
    padding-top: 9.066vw;
  }
  .solved__text-wrap {
    bottom: 32vw;
    left: 5.333vw;
  }
  .solved__text {
    font-size: 6.4vw;
  }

  .solved .arrow__down {
    padding-bottom: 9.6vw;
  }

  /*===================
worry
===================*/
  .worry {
    padding-bottom: 43.733vw;
  }
  .question__bg {
    width: 102.133vw;
    top: -38.933vw;
    left: -2.133vw;
  }
  .worry__heading {
    font-size: 4.8vw;
    right: 13.866vw;
    height: 48.533vw;
  }
  .worry__slide-wrap:not(:last-child) {
    margin-bottom: 14.133vw;
  }
  .worry__slide-wrap1 {
    margin-top: 21.066vw;
  }
  .worry__slide-contents {
    padding: 34.666vw 2.666vw 18.666vw 2.666vw;
    top: 8.266vw;
  }
  .worry__slide .splide__slide img {
    width: 100%;
    max-width: 68.533vw;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .worry__comment-bg {
    max-width: 68.533vw;
    top: -4.8vw;
    left: 4.533vw;
  }
  .worry__slide-text {
    font-size: 3.733vw;
  }

  .worry__slide-pagination {
    bottom: -55.466vw;
  }
  .worry__slide-pagination li {
    margin-left: 2.666vw;
    margin-right: 2.666vw;
  }
  /* ページネーションのスタイル */
  .worry__slide-page {
    height: 2.666vw;
    width: 2.666vw;
  }
  .worry__slide .button {
    width: 6.666vw;
    height: 10.666vw;
    top: 48.533vw;
  }
  .worry__slide .button::before {
    width: 5.066vw;
    height: 9.866vw;
  }

  /*===================
asn
===================*/
  .asn {
    padding-top: 80vw;
  }
  .asn__title-wrap {
    top: -14.666vw;
  }
  .asn__title {
    font-size: 34.666vw;
  }
  .slide-title__parts1 {
    padding-right: 8.266vw;
  }
  .slide-title__parts2 {
    left: -2.933vw;
  }
  .slide-title__parts3 {
    right: -13.866vw;
  }
  .asn__sub-title {
    width: 53.333vw;
    bottom: 26.666vw;
  }

  /*===================
case
===================*/
  .case {
    padding-top: 17.866vw;
    padding-bottom: 15.733vw;
  }
  .case__wrap {
    margin: 0 auto 9.866vw;
  }
  .case__slide .splide__arrows {
    right: 8vw;
  }
  .case__slide button.splide__arrow--prev {
    margin-right: 2.666vw;
  }
  .splide-case__slide {
    width: 100vw;
    height: 88vw;
    margin-top: 2.666vw;
  }
  .case__talk {
    width: 88.266vw;
    height: 62.133vw;
  }
  .case__talkBox {
    width: 80vw;
  }
  .case__talkBox-title {
    margin-bottom: 4vw;
    font-size: 4.266vw;
  }
  .case__talkBox-btn {
    width: 45.333vw;
    padding: 2.666vw;
    font-size: 3.733vw;
  }
  .case__talkIcon {
    width: 20.266vw;
    left: 13.333vw;
    bottom: -21.333vw;
  }
  .case__talkIcon-type {
    margin-top: 1.333vw;
    font-size: 3.733vw;
  }

  .slide-text__loop {
    font-size: 32vw;
  }

  .remodal-case .remodals-close--element {
    width: 11.466vw;
    height: 6.933vw;
    top: 2.933vw;
    right: 2.666vw;
  }
  .remodal-case .remodal-close--element span {
    width: 11.2vw;
    height: 0.266vw;
  }

  /* ライントーク */
  .line-talk {
    padding-right: 4vw;
    padding-left: 4vw;
    margin-bottom: 13.333vw;
    gap: 5.333vw;
  }
  .line-talk__icon {
    margin-right: 2.133vw;
    width: 11.2vw;
    height: 11.2vw;
  }

  .line-talk__box {
    width: 57.333vw;
    padding: 2.666vw;
  }
  p.line-talk__text {
    font-size: 4vw;
  }
  .line-talk__end-text {
    font-size: 4.266vw;
    height: 13.333vw;
    padding: 0 5.333vw;
  }
  .line-talk__end-text::after {
    height: 5.333vw;
    width: 0.266vw;
    top: 4vw;
    left: 5.333vw;
  }

  /* ページネーションのスタイル */
  .case__slide-page {
    height: 2.666vw;
    width: 2.666vw;
  }
  /* ページネーションの位置 */
  .case__slide-pagination {
    bottom: 6.133vw;
    right: 8.266vw;
  }
  /* ページネーション間の余白 */
  .case__slide-pagination li {
    margin-left: 2.026vw;
    margin-right: 2.026vw;
  }
  /*===================
point
===================*/
  .point {
    padding-bottom: 25.333vw;
  }

  .point__list-item {
    max-width: 85.333vw;
    padding-top: 18.666vw;
    padding-bottom: 7.733vw;
  }
  .point .section-title {
    top: 6.133vw;
  }
  .point__list-img {
    width: calc(100% - 6.133vw);
    max-width: 78.933vw;
  }
  .point__num {
    font-size: 32vw;
    bottom: -11.2vw;
  }
  .point__num--type01 {
    right: -10.933vw;
  }
  .point__num--type02 {
    right: -7.733vw;
  }
  .point__num--type03 {
    right: -7.199vw;
  }
  .point__num--type04 {
    right: -7.199vw;
  }
  .point__num--type05 {
    right: -7.199vw;
  }
  .point__inner {
    width: calc(100% - 12.266vw);
  }
  .point__list-contents {
    margin-bottom: 5.333vw;
  }

  .point__list-text {
    font-size: 3.733vw;
  }
  .point__list-text--height {
    height: 30.341vw !important;
  }
  .point__list-note {
    font-size: 2.933vw;
  }
  .point__slide .button {
    width: 5.333vw;
    height: 10.666vw;
    top: 56.818vw;
  }
  .point__slide .button.splide__arrow--prev {
    left: 44.8vw;
  }
  .point__slide .button.splide__arrow--next {
    right: 3.466vw;
  }
  .point__slide-pagination {
    top: 11.2vw;
    right: 4.533vw;
  }
  .point__slide-pagination li {
    margin-left: 1.333vw;
    margin-right: 1.333vw;
  }
  .point__slide-page {
    width: 5.333vw;
    height: 0.533vw;
  }

  /*===================
how
===================*/
  .how {
    padding-bottom: 237.333vw;
  }

  .how__main-title {
    font-size: 16.533vw;
    top: 45.6vw;
  }

  .how__wrap {
    width: calc(100% - 10.666vw);
    max-width: 88.266vw;
    top: 90.133vw;
  }
  .how__contents {
    padding: 12.266vw 6.666vw 16vw;
  }
  .how .section-title {
    font-size: 13.333vw;
    margin-bottom: 4.533vw;
  }
  .how__text {
    padding-bottom: 9.333vw;
  }
  .how__list-item {
    max-width: 64vw;
  }
  .how__text2 {
    width: 9.6vw;
    top: 77.6vw;
    left: 6.133vw;
  }

  .line-link {
    width: 14.666vw;
    height: 6.666vw;
    top: 5.333vw;
    left: 25.066vw;
  }

  /*===================
support
===================*/
  .support {
    padding-top: 2.666vw;
  }
  .support__wrap {
    margin-top: 8vw;
    padding-bottom: 16vw;
  }
  .support__title {
    width: 78.666vw;
    top: -7.733vw;
    font-size: 11.2vw;
  }
  .support__sub-title {
    padding-top: 13.333vw;
    margin-bottom: 8vw;
    font-size: 4.533vw;
  }
  .splide__slide-support {
    height: 106.666vw;
  }
  .support__container {
    width: 66.666vw;
  }
  .support__box {
    margin-bottom: 5.333vw;
  }
  .support__name {
    font-size: 6.4vw;
  }
  .support__img {
    width: 30.133vw;
    margin-right: 5.333vw;
  }
  .support__box-text {
    font-size: 3.733vw;
  }
  .support__slide .button::before {
    top: -72vw;
    width: 5.0666vw;
    height: 9.866vw;
  }
  .support__slide-pagination {
    width: 58.666vw;
    bottom: 2.666vw;
  }
  .support__slide li {
    margin-left: 2.666vw;
    margin-right: 2.666vw;
  }
  .support__slide-page {
    height: 2.666vw;
    width: 2.666vw;
  }

  /*===================
message
===================*/
  .message {
    padding-top: 31.2vw;
    padding-bottom: 17.333vw;
  }
  .message .section-title {
    top: 17.333vw;
    right: 8.799vw;
  }
  .message__img {
    width: calc(100% - 13.333vw);
    max-width: 86.666vw;
    margin-bottom: 6.933vw;
  }
  .message__name {
    margin-bottom: 4.266vw;
  }
  .message__name--sml {
    font-size: 3.2vw;
    margin-bottom: 1.066vw;
  }
  .message__name--lrg {
    font-size: 5.333vw;
  }
  .message__bg {
    width: 85.6vw;
    bottom: -24.266vw;
    left: 14.399vw;
  }
  .message__text-box01 {
    max-width: 88.266vw;
    padding-bottom: 7.199vw;
    margin-bottom: 6.4vw;
  }
  .message__text01 {
    font-size: 3.2vw;
  }
  .message__text--lrg {
    font-size: 5.333vw;
    margin-bottom: 4.533vw;
  }
  .message__text02 {
    font-size: 3.733vw;
  }
  .message__text02:not(:last-child) {
    margin-bottom: 6.666vw;
  }
  /*===================
faq
===================*/

  .faq {
    padding-top: 18.666vw;
    padding-bottom: 19.2vw;
  }
  .faq .section-title {
    margin-bottom: 6.4vw;
  }
  li.faq__box:not(:last-child) {
    margin-bottom: 5.333vw;
  }
  .faq__question {
    padding: 6.133vw 6% 2.666vw;
  }
  .faq__cat {
    width: 17.333vw;
    padding: 0.8vw;
    font-size: 3.2vw;
  }
  .faq__question-box {
    margin-bottom: 2.666vw;
  }
  .faq__question-title {
    font-size: 6.4vw;
    padding-right: 4vw;
  }
  .faq__question-text {
    font-size: 4.266vw;
  }
  .faq__question-anText {
    font-size: 3.2vw;
  }

  /* 矢印 */
  .arrow {
    margin-top: 0.533vw;
    width: 2.719vw;
    height: 1.306vw;
  }
  .arrow::before,
  .arrow::after {
    left: calc(50% - 0.133vw);
    width: 0.266vw;
    height: 1.866vw;
    transform-origin: 50% calc(100% - 0.133vw);
  }

  /* open */
  .faq__answer {
    margin-top: 1.333vw;
    padding: 4vw 6% 8vw;
  }
  .faq__answer-titleBox {
    margin-bottom: 2.666vw;
  }
  .faq__answer-title {
    font-size: 6.4vw;
  }
  .faq__answer-text {
    font-size: 3.733vw;
  }
  .faq__answer-text:not(:last-child) {
    margin-bottom: 4vw;
  }
  /* open 矢印 */
  .open .arrow::before {
    top: -1.866vw;
  }
  .open .arrow::after {
    top: -1.866vw;
  }

  /* 悩んだらまずご相談 */
  .consult__title {
    width: 77.866vw;
    top: 18.4vw;
  }
  .consult__wrap .text__common {
    padding-bottom: 5.333vw;
  }
  .consult__down {
    margin-bottom: 5.333vw;
  }

  /*===================
presence
===================*/

  .present {
    padding-top: 21.333vw;
    padding-bottom: 38.666vw;
  }
  .present__inner {
    max-width: 82.933vw;
  }
  .present__title {
    font-size: 16.533vw;
  }
  .present__wrap {
    padding: 8vw 4.533vw 12vw;
  }
  .present__sub {
    margin-bottom: 2.666vw;
    font-size: 4.8vw;
  }
  .present__text {
    font-size: 3.733vw;
  }
  .present__box {
    margin-top: 9.333vw;
    padding-top: 9.333vw;
  }
  .present__box-farst {
    margin-top: 8vw;
  }
  .present__lavel {
    margin-bottom: 4vw;
    width: 40.533vw;
    padding: 0.8vw;
    border-radius: 5.333vw;
    font-size: 4.266vw;
  }
  .present__nam {
    margin-bottom: 0.8vw;
    font-size: 3.733vw;
  }
  .present__quest {
    margin-bottom: 0.8vw;
    font-size: 3.2vw;
  }
  .present__explain {
    font-size: 4.8vw;
  }
  .present__explain:not(:last-child) {
    margin-bottom: 4vw;
  }

  /*===================
who we are
===================*/
  .who {
    padding-top: 12.266vw;
  }
  .who__title-wrap {
    width: 16.8vw;
  }
  .who__contents {
    width: calc(100% - 20.8vw);
    max-width: 72.266vw;
  }
  .who__heading-contents {
    max-width: 66.666vw;
    margin-bottom: 9.066vw;
  }
  .who__heading {
    font-size: 4.533vw;
  }
  .who__heading-logo {
    width: 48.8vw;
    padding-top: 2.933vw;
  }
  .who__text {
    font-size: 3.733vw;
    margin-bottom: 8.799vw;
  }
  .who__btn {
    font-size: 4.266vw;
    width: 48.8vw;
    margin-left: 3.2vw;
    padding: 4vw 1.333vw 4.533vw;
  }
  .who__btn:before {
    width: 1.866vw;
    height: 4.266vw;
    top: 49%;
    right: 3.466vw;
  }

  /*===================
partner
===================*/
  .partner {
    padding-top: 13.333vw;
  }
  .partner__bg-clr {
    height: 20vw;
  }
  .partner__map-wrap {
    padding-top: 129.333vw;
  }
  .partner__title-wrap {
    top: 41.333vw;
    left: -1.6vw;
  }
  .partner__title-wrap02 {
    top: -24.8vw;
    right: 7.733vw;
  }
  .partner__sub-heading {
    font-size: 6.4vw;
  }
  .partner__map-img {
    max-width: 88.266vw;
    top: -15.2vw;
  }

  .partner__list {
    gap: 2.666vw 0;
    margin-bottom: 19.733vw;
  }

  .partner__list-btn {
    font-size: 3.733vw;
    padding: 0.266vw 2.406vw;
  }
  .partner__list-item:nth-child(n + 6) .partner__list-btn {
    padding: 0.266vw 2.78vw;
  }

  .partner__address {
    max-width: 85.333vw;
    margin: 0 auto 17.066vw;
  }
  .partner__address-title {
    font-size: 3.733vw;
    margin-bottom: 5.866vw;
  }
  .partner__address-contents:not(:last-child) {
    margin-bottom: 2.666vw;
  }
  .partner__address-heading,
  .partner__address-text {
    font-size: 3.733vw;
  }
  .partner__address-heading {
    width: 20.8vw;
  }
  .partner__address-text {
    width: calc(100% - 20.8vw);
    max-width: 64.8vw;
  }
  .partner__address-link {
    font-size: 2.933vw;
    width: 32vw;
    margin-left: 4.8vw;
  }

  .privacy__heading {
    font-size: 3.733vw;
    margin-bottom: 1.066vw;
  }
  .privacy__contents {
    height: 55.466vw;
    padding: 4vw 2.666vw 2.666vw;
  }
  .privacy__contents02 {
    max-width: 78.933vw;
    height: 47.733vw;
    padding-right: 4vw;
  }
  .privacy__contents-heading,
  .privacy__contents-text {
    font-size: 3.733vw;
  }
  .privacy__contents-heading {
    margin-bottom: 4.8vw;
  }

  .privacy__contents .privacy__contents-text:not(:last-child) {
    margin-bottom: 4.533vw;
  }
  .privacy__line {
    max-width: 58.133vw;
    height: 0.533vw;
    margin: 6.666vw auto;
    background-image: linear-gradient(to right, #4d4d4d 3.2vw, transparent 3.2vw);
    background-size: 3.893vw 0.533vw;
  }

  /* トップに戻るボタン */
  .totop-wrap {
    padding-top: 24.533vw;
  }
  .totop {
    width: 13.6vw;
    height: 13.6vw;
    right: 13.333vw;
  }
}

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