@charset "utf-8";

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

/* フォント */
:root {
  --NotoSans: "Noto Sans JP", sans-serif;
  --Khula: "Khula", sans-serif;
  --Inter: "Inter", sans-serif;
  --Ubuntu: "Ubuntu Sans", sans-serif;
  --Roboto: "Roboto", sans-serif;
}

/* 色 */
:root {
  --black: #151515;
  --rose: #C73481;
  --darkblue: #2C2D4B;
  --line: #00B900;
  --contact: #EEB33A;
}





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

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

.body {
  font-family: var(--NotoSans);
  font-weight: 400;
  line-height: 1.8;
  color: var(--black);
}
.body.no-scroll {
  overflow: hidden;
}

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

figure {
  margin: 0;
}



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

.sp-only {
  display: none;
}

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



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

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



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

a {
  display: 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;
  }
}



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

.wide-inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

.short-inner {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 50px;
}

@media screen and (max-width: 999.98px) {
  .short-inner {
    padding-inline: 20px;
  }
}



/********************/
/* セクションタイトル */
/********************/

.section-title {
  padding-bottom: 15px;
  position: relative;
}
.section-title--underLine::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 88px;
  height: 3px;
  background-color: var(--rose);
}
.section-title--underLine::after {
  position: absolute;
  bottom: 0;
  left: 88px;
  content: "";
  width: calc(100% - 88px);
  height: 3px;
  background-color: #B8B8B8;
}

.section-title__text {
  text-align: center;
  font-weight: 900;
  font-size: 30px;
}

.section-title__text-line {
  display: inline-block;
  color: var(--rose);
  position: relative;
  z-index: 1;
}
.section-title__text-line::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 11px;
  background-color: #F5E5ED;
  z-index: -1;
}


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

  .section-title {
    padding-bottom: 4px;
    line-height: 1.55;
  }
  .section-title--underLine::before {
    width: 34px;
  }
  .section-title--underLine::after {
    left: 34px;
    width: calc(100% - 34px);
  }
  .section-title__text-line::before {
    height: 10px;
  }

}



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

.js-fadeIn {
  opacity: 0;
  transition: all 1s;
}
.js-fadeIn.is-active {
  opacity: 1;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s;
}
.js-fadeUp.is-active {
  opacity: 1;
  transform: translateY(0);
}





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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 79px;
  background-color: var(--black);
  z-index: 999;
}

.header__inner {
  width: 100%;
  height: 100%;
  padding-inline: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

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

.header__nav-list {
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: min(calc(100vw / 1280 * 24), 24px);
}

.header__nav-link {
  display: inline-block;
  padding: 8px;
  font-weight: 700;
  font-size: min(calc(100vw / 1280 * 16), 16px);
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
}

.header__button-list {
  display: flex;
  align-items: center;
  column-gap: min(calc(100vw / 1280 * 16), 16px);
}

.header__button-item {
  min-width: 172px;
}

.header__button-link {
  width: 100%;
  height: 100%;
  border-radius: 60px;
  padding: 12px 16px;
  background-color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1280 * 16), 16px);
  line-height: calc(19 / 16);
  text-transform: uppercase;
}
.header__button-link--line {
  color: var(--line);
  border: 1px solid var(--line);
  filter: drop-shadow(1px 1px 0 #159515);
}
.header__button-link--contact {
  color: var(--contact);
  border: 1px solid var(--contact);
  filter: drop-shadow(1px 1px 0 #BF891A);
}
@media (hover: hover) {
  .header__button-link--line:hover {
    opacity: 1;
    color: #fff;
    background-color: var(--line);
  }
  .header__button-link--contact:hover {
    opacity: 1;
    color: #fff;
    background-color: var(--contact);
  }
}

.hamburger {
  display: none;
}


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

  .header {
    height: 50px;
  }

  .header__inner {
    padding-inline: 14px;
    justify-content: flex-start;
  }

  .header__logo-link {
    font-weight: 700;
    font-size: 12px;
    line-height: calc(14 / 12);
    color: #fff;
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
    overflow: auto;
  }
  .header__menu.is-active {
    opacity: 1;
    visibility: visible;
  }

  .header__nav {
    width: 100%;
    padding-top: 92px;
    padding-bottom: 132px;
  }

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

  .header__nav-item {
    width: 100%;
    padding: 10px 30px 11px;
  }

  .header__nav-link {
    padding: 4px 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--black);
  }

  .hamburger {
    display: block;
    position: fixed;
    top: 13px;
    right: 15px;
    width: 25px;
    height: 17px;
    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: #fff;
    transition: 0.3s;
  }
  .hamburger__line:nth-child(1) {
    top: 0;
  }
  .hamburger__line:nth-child(2) {
    top: 8px;
  }
  .hamburger__line:nth-child(3) {
    top: 15px;
  }
  .hamburger.is-active .hamburger__line:nth-child(1) {
    top: 8px;
    transform: rotate(-45deg);
    background-color: #B8B8B8;
  }
  .hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active .hamburger__line:nth-child(3) {
    top: 8px;
    transform: rotate(45deg);
    background-color: #B8B8B8;
  }

}





/*-------------------------------------
メイン
-------------------------------------*/

.main {
  margin-top: 78px;
}

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





/*-------------------------------------
フローティング
-------------------------------------*/

@media screen and (max-width: 767.98px) {
  .floating {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  .floating.is-hidden {
    opacity: 0;
    visibility: hidden;
  }

  .floating-list {
    display: flex;
  }

  .floating-item {
    width: 50%;
    height: 60px;
  }

  .floating-link {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .floating-link--line {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    background-color: var(--line);
  }
  .floating-link--contact {
    font-weight: 700;
    font-size: 18px;
    line-height: calc(22 / 18);
    color: #fff;
    background-color: #B8B8B8;
  }

}





/*-------------------------------------
FV
-------------------------------------*/

.fv {
  background-image: url(../image/fv/fv_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.fv__inner {
  padding-top: calc(100vw / 1440 * 46);
  padding-bottom: calc(100vw / 1440 * 128);
  padding-inline: min(calc(100vw / 1440 * 90), 90px);
  margin-inline: auto;
  max-width: 1440px;
}

.fv__lead {
  display: inline-block;
  margin-left: min(calc(100vw / 1440 * 16), 16px);
  padding: min(calc(100vw / 1440 * 17), 17px) min(calc(100vw / 1440 * 45), 45px);
  background-color: var(--darkblue);
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 30), 30px);
  line-height: 1.2;
  color: #fff;
}

.fv__catchZone {
  margin-top: 14px;
  padding-inline: min(calc(100vw / 1440 * 16), 16px);
  position: relative;
}

.fv__catchComment {
  position: absolute;
  top: -29%;
  right: 4.5%;
  width: min(calc(100vw / 1440 * 307), 307px);
}

.fv__catch {
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 72), 72px);
  line-height: 1.18;
  position: relative;
}
.fv__catch-big {
  font-size: min(calc(100vw / 1440 * 120), 120px);
}
.fv__catch-small {
  font-size: min(calc(100vw / 1440 * 70), 70px);
}
.fv__catch-middle {
  margin-left: min(calc(100vw / 1440 * 10), 10px);
  font-size: min(calc(100vw / 1440 * 100), 100px);
}
.fv__catch-mark {
  position: absolute;
  bottom: -9%;
  right: -2.7%;
  display: inline-block;
  font-size: min(calc(100vw / 1440 * 120), 120px);
  color: #000;
  transform: translateY(5px) rotate(15deg);
}

.fv__titleZone {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fv__title {
  font-weight: bold;
  font-size: 32px;
  line-height: 1;
  background: linear-gradient(95deg, #C73481 0%, #B27593 57%, #90265D 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fv__subTitle {
  font-weight: bold;
  font-size: 60px;
  line-height: 1;
  background: linear-gradient(95deg, #C73481 0%, #B27593 57%, #90265D 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fv__description {
  margin-top: 7px;
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 32), 32px);
}
.fv__description span {
  display: inline-block;
}

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

.fv__feature {
  border-radius: 21px;
  width: min(calc(100vw / 1440 * 400), 400px);
  padding-block: min(calc(100vw / 1440 * 26), 26px);
  background: linear-gradient(100deg, #2C2D4B 0%, #9EA0E8 51%, #2C2D4B 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv__feature-text {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 24), 24px);
  line-height: 1.6;
  color: #fff;
}
.fv__feature-text-large {
  font-size: min(calc(100vw / 1440 * 42), 42px);
}
.fv__feature-text-big {
  font-size: min(calc(100vw / 1440 * 32), 32px);
}
.fv__feature-text-middle {
  font-size: min(calc(100vw / 1440 * 30), 30px);
}


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

  .fv {
    background-image: url(../image/fv/fv_bg_sp.webp);
  }

  .fv__inner {
    padding-block: min(calc(100vw / 390 * 30), 30px);
    padding-inline: min(calc(100vw / 390 * 25), 25px);
    max-width: 390px;
  }

  .fv__lead {
    margin-left: 0;
    padding: 5px 12px;
    font-size: 16px;
  }

  .fv__catchZone {
    margin-top: 16px;
    padding-inline: 0;
  }

  .fv__catchComment {
    top: -62%;
    right: -2.5%;
    width: min(calc(100vw / 390 * 95), 95px);
  }

  .fv__catch {
    font-size: min(calc(100vw / 390 * 24), 24px);
  }
  .fv__catch-big {
    font-size: min(calc(100vw / 390 * 36), 36px);
  }
  .fv__catch-small {
    font-size: min(calc(100vw / 390 * 20), 20px);
  }
  .fv__catch-middle {
    font-size: min(calc(100vw / 390 * 24), 24px);
  }
  .fv__catch-mark {
    bottom: -5%;
    right: -0.7%;
    font-size: min(calc(100vw / 390 * 36), 36px);
  }

  .fv__titleZone {
    margin-top: 24px;
  }

  .fv__title {
    font-size: 12px;
  }

  .fv__subTitle {
    font-size: 24px;
  }

  .fv__description {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
  }

  .fv__features {
    margin-top: 12px;
    flex-direction: column;
    gap: 10px;
  }

  .fv__feature {
    width: 100%;
    padding-block: 0;
    height: 64px;
    background: var(--darkblue);
  }

  .fv__feature-text {
    font-size: 14px;
    line-height: 1.3;
  }
  .fv__feature:first-child .fv__feature-text {
    line-height: 1.14;
  }
  .fv__feature-text-large {
    font-size: 28px;
  }
  .fv__feature-text-spBig {
    font-size: 16px;
  }
  .fv__feature-text-spLarge {
    font-size: 21px;
  }
  .fv__feature-text-big {
    font-size: 16px;
  }
  .fv__feature-text-middle {
    font-size: 20px;
  }


}





/*-------------------------------------
こんなお悩みはありませんか？
-------------------------------------*/

.problem {
  padding-top: 60px;
  padding-bottom: 230px;
  padding-inline: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.problem::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #FAFAFA;
  width: 100%;
  height: 70%;
  z-index: -1;
}
.problem::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 2880 / 1194;
  background-image: url(../image/problem/problem_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.problem-heading {
  margin-inline: auto;
  max-width: 1070px;
  padding-top: 114px;
  padding-bottom: 108px;
  position: relative;
}

.problem-heading__title {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 36), 36px);
  letter-spacing: 0.06em;
  line-height: calc(43 / 36);
}

.problem-heading__item {
  min-height: 72px;
  width: fit-content;
  padding: 14px min(calc(100vw / 1000 * 30), 30px);
  border-radius: 7px;
  border: 1px solid var(--rose);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.problem-heading__item--01 {
  position: absolute;
  top: 0;
  left: 14.5%;
}
.problem-heading__item--02 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.problem-heading__item--03 {
  position: absolute;
  bottom: 0;
  left: 11%;
}
.problem-heading__item--04 {
  position: absolute;
  top: 0;
  right: 7%;
}
.problem-heading__item--05 {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
}
.problem-heading__item--06 {
  position: absolute;
  bottom: 0;
  right: 5.5%;
}

.problem-heading__item-text {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 16), 16px);
  line-height: 1.4;
}
.problem-heading__item--01 .problem-heading__item-text,
.problem-heading__item--04 .problem-heading__item-text {
  line-height: 1.5;
}

.problem-heading__item-text span {
  font-size: min(calc(100vw / 1000 * 18), 18px);
  color: var(--rose);
}


@media screen and (min-width: 1441px) {
  .problem {
    padding-bottom: calc(100vw / 1440 * 257);
  }
}


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

  .problem {
    padding-top: 22px;
    padding-bottom: calc(100vw / 390 * 152);
  }
  .problem::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #FAFAFA;
    width: 100%;
    height: 50%;
    z-index: -1;
  }
  .problem::after {
    aspect-ratio: 780 / 1273;
    background-image: url(../image/problem/problem_bg_sp.webp);
  }

  .problem-heading {
    padding-block: 0;
  }

  .problem-heading__title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .problem-heading__list {
    margin-top: 14px;
    margin-inline: auto;
    max-width: 344px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .problem-heading__item {
    width: 100%;
    min-height: auto;
    padding: 10px min(calc(100vw / 390 * 7), 7px);
    border-radius: 5px;
  }
  .problem-heading__item:not(:first-child) {
    margin-top: 5px;
  }
  .problem-heading__item--01,
  .problem-heading__item--02,
  .problem-heading__item--03,
  .problem-heading__item--04,
  .problem-heading__item--05,
  .problem-heading__item--06 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: unset;
    width: 100%;
  }

  .problem-heading__item-text {
    font-size: min(calc(100vw / 390 * 14), 14px);
  }
  .problem-heading__item--01 .problem-heading__item-text,
  .problem-heading__item--05 .problem-heading__item-text {
    line-height: 1.3;
  }
  .problem-heading__item--02 .problem-heading__item-text,
  .problem-heading__item--03 .problem-heading__item-text {
    line-height: 1.4;
  }
  .problem-heading__item--04 .problem-heading__item-text {
    line-height: 1.5;
  }


  .problem-heading__item-text span {
    font-size: min(calc(100vw / 390 * 16), 16px);
  }

}

@media screen and (max-width: 389.98px) {
  .problem {
    padding-bottom: 140px;
  }
}





/*-------------------------------------
解決できます！
-------------------------------------*/

.solution {
  padding-top: 65px;
  padding-bottom: 52px;
}

.solution-title__comment.js-fadeIn {
  position: absolute;
  top: -40px;
  left: calc(50% - 280px);
  width: fit-content;
  background-color: var(--darkblue);
  padding: 5px 20px;
  transform: translateY(25px) rotate(-11deg);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  z-index: 1;
}
.solution-title__comment::before {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-65%) rotate(9deg);
  content: "";
  width: 13px;
  height: 18px;
  background-color: var(--darkblue);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  z-index: -1;
}
.solution-title__comment.js-fadeIn.is-active {
  transform: translateY(0) rotate(-11deg);
}

.solution .section-title__text {
  font-size: min(3vw, 30px);
  line-height: 1.55;
}

.solution .section-title__text-line {
  margin-inline: min(calc(100vw / 1440 * 20), 20px);
  margin-bottom: 5px;
  font-size: 32px;
  letter-spacing: -0.01em;
}
.solution .section-title__text-line::before {
  bottom: 10px;
}
.solution .section-title__text-big {
  font-size: 48px;
}

.solution-content {
  margin-top: 6px;
}

.solution-slider-zone {
  position: relative;
}

.solution-slider-zone .slick-track {
  padding-block: 32px;
}

.solution-slider__item {
  margin-inline: 2.5vw;
}

.solution-slider__image {
  box-shadow: 5px 5px 26px rgba(0,0,0,0.25);
}

.solution-slider__image img {
  aspect-ratio: 950 / 380;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100vw / 1440 * 60);
  height: calc(100vw / 1440 * 60);
  cursor: pointer;
  outline: none;
  z-index: 10;
}

.slick-prev {
  left: 12.5vw;
}
.slick-prev::before {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-60%) rotate(-45deg);
  content: "";
  width: calc(100vw / 1440 * 36);
  height: calc(100vw / 1440 * 36);
  border-top: min(calc(100vw / 1440 * 6), 6px) solid var(--darkblue);
  border-left: min(calc(100vw / 1440 * 6), 6px) solid var(--darkblue);
  border-radius: min(calc(100vw / 1440 * 6), 6px) 0 0 0;
}

.slick-next {
  right: 12.5vw;
}
.slick-next::before {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-60%) rotate(45deg);
  content: "";
  width: calc(100vw / 1440 * 36);
  height: calc(100vw / 1440 * 36);
  border-top: min(calc(100vw / 1440 * 6), 6px) solid var(--darkblue);
  border-right: min(calc(100vw / 1440 * 6), 6px) solid var(--darkblue);
  border-radius: 0 min(calc(100vw / 1440 * 6), 6px) 0 0;
}


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

  .solution {
    padding-top: 24px;
    padding-bottom: 35px;
    overflow: hidden;
  }

  .solution-title__comment.js-fadeIn {
    top: 6px;
    left: calc(50% - 132px);
    padding: 4px 15px;
    font-size: 14px;
  }
  .solution-title__comment::before {
    width: 10px;
    height: 10px;
    left: 35%;
    transform: translateX(-65%) rotate(-16deg);
  }

  .solution .section-title__text {
    font-size: min(calc(100vw / 390 * 20), 20px);
    line-height: 1.6;
    padding-bottom: 5px;
  }

  .solution .section-title__text-line {
    margin-left: 3px;
    margin-right: 4px;
    font-size: min(calc(100vw / 390 * 16), 16px);
    letter-spacing: -0.01em;
    line-height: 1.4;
  }
  .solution .section-title__text-line::before {
    bottom: 0;
  }
  .section-title__text-spMiddle {
    font-size: min(calc(100vw / 390 * 24), 24px);
    transform: translate(4px, 4px);
    display: inline-block;
  }
  .solution .section-title__text-spSmall {
    font-size: min(calc(100vw / 390 * 16), 16px);
  }
  .solution .section-title__text-big {
    font-size: min(calc(100vw / 390 * 24), 24px);
  }
  .solution .section-title__text-spLarge {
    font-size: min(calc(100vw / 390 * 30), 30px);
  }

  .solution-content {
    margin-top: 21px;
    padding-inline: 20px;
  }

  .solution-content__item:not(:first-child) {
    margin-top: 15px;
  }

  .solution-slider__image {
    box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.25);
  }


}





/*-------------------------------------
選ばれる３つの理由
-------------------------------------*/

.reason {
  padding-top: 65px;
  padding-bottom: 108px;
  background-color: #FAFAFA;
}

.reason .section-title {
  padding-bottom: 24px;
}

.reason .section-title__text {
  font-size: 25px;
  line-height: 1.4;
}
.reason .section-title__text-line {
  font-size: 32px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.reason .section-title__text-big {
  font-size: 42px;
  margin-inline: -5px;
}
.reason .section-title__text-large {
  font-size: 42px;
}
.reason .section-title__text-line::before {
  bottom: 5px;
  left: -8%;
  content: "";
  width: 116%;
  height: 14px;
}

.reason-list {
  margin-top: 60px;
  margin-left: -6px;
  width: calc(100% + 12px);
}

.reason-item {
  display: flex;
}
.reason-item:nth-child(1) {
  align-items: center;
  column-gap: 4%;
  margin-right: -40px;
}
.reason-item.reason-item--reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-end;
  column-gap: 1%;
}
.reason-item:nth-child(3) {
  column-gap: 3%;
  margin-right: -110px;
}
.reason-item:not(:first-child) {
  margin-top: 90px;
}

.reason-item__body {
  flex: 1;
}
.reason-item--reverse .reason-item__body {
  flex: none;
  width: 55%;
}

.reason-item__body-number {
  display: block;
  font-family: var(--Khula);
  font-weight: 700;
  font-size: 65px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--rose);
}

.reason-item__body-titleZone {
  margin-top: -21px;
  background-color: var(--darkblue);
  padding: 10px min(calc(100vw / 1050 * 24), 24px);
}

.reason-item__body-title {
  font-weight: 900;
  font-size: min(calc(100vw / 1050 * 24), 24px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #fff;
}

.reason-item__body-text {
  margin-top: 14px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.reason-item__body-text-color {
  font-weight: 700;
  color: var(--rose);
}

.reason-item:nth-child(1) .reason-item__body-image {
  width: 44%;
  transform: translateY(10px);
}
.reason-item:nth-child(2) .reason-item__body-image {
  width: 41%;
}
.reason-item:nth-child(3) .reason-item__body-image {
  width: 48%;
}


@media screen and (max-width: 1200px) {
  .reason-item:nth-child(1) {
    margin-right: 0;
  }
  .reason-item.reason-item--reverse {
    column-gap: 4%;
    align-items: center;
  }
  .reason-item:nth-child(3) {
    column-gap: 4%;
    margin-right: 0;
    align-items: center;
  }
  .reason-item--reverse .reason-item__body {
    flex: 1;
    width: auto;
  }
  .reason-item:nth-child(1) .reason-item__body-image {
    width: 41%;
    transform: translateY(0);
  }
  .reason-item:nth-child(3) .reason-item__body-image {
    width: 41%;
  }
}


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

  .reason {
    padding-top: 32px;
    padding-bottom: 50px;
  }

  .reason .section-title {
    padding-bottom: 14px;
  }

  .reason .section-title__text {
    font-size: 20px;
    line-height: 1;
  }
  .reason .section-title__text-line {
    margin-top: -7px;
    font-size: 24px;
  }
  .reason .section-title__text-line::before {
    bottom: 7px;
    left: -7%;
    width: 114%;
    height: 10px;
  }
  .reason .section-title__text-big {
    margin-inline: -3px;
  }
  .reason .section-title__text-large {
    font-size: 32px;
  }

  .reason-list {
    margin-top: 26px;
    margin-left: 0;
    width: 100%;
  }

  .reason-item,
  .reason-item.reason-item--reverse {
    flex-direction: column;
  }
  .reason-item:not(:first-child) {
    margin-top: 30px;
  }

  .reason-item__body-number {
    text-align: center;
    font-size: 36px;
  }

  .reason-item__body-titleZone {
    margin-top: 0;
    width: 100%;
    padding: 10px 1px;
    display: flex;
    justify-content: center;
  }

  .reason-item__body-title {
    text-align: center;
    font-size: min(calc(100vw / 390 * 16), 16px);
  }

  .reason-item__body-text {
    margin-top: 10px;
    padding-inline: 5px;
    font-size: 14px;
    text-align: justify;
  }

  .reason-item__body-image {
    max-width: 450px;
  }
  .reason-item:nth-child(1) .reason-item__body-image {
    margin-top: 8px;
    width: 72%;
  }
  .reason-item:nth-child(2) .reason-item__body-image {
    margin-top: 10px;
    width: 70%;
  }
  .reason-item:nth-child(3) .reason-item__body-image {
    margin-top: 10px;
    width: 85%;
  }

}

@media screen and (max-width: 374.98px) {
  .reason-item__body-title {
    font-size: min(calc(100vw / 375 * 16), 16px);
  }
}





/*-------------------------------------
ご支援企業様
-------------------------------------*/

.support {
  padding-top: 96px;
  padding-bottom: 60px;
}

.support .section-title__text {
  font-size: 40px;
  line-height: 1.55;
}

.support-subTitle {
  display: block;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.support-slider02 {
  margin-top: -28px;
}

.support-slider01 .slick-track,
.support-slider02 .slick-track {
  padding-block: 20px;
}

.support-slider__item {
  margin-right: 24px;
  width: 389px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}


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

  .support {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .support .section-title__text {
    font-size: 20px;
  }

  .support-subTitle {
    font-size: 16px;
  }

  .support-slider02 {
    margin-top: -4px;
  }

  .support-slider01 .slick-track,
  .support-slider02 .slick-track {
    padding-block: 10px;
  }

  .support-slider__item {
    margin-right: 12px;
    width: 180px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  }

}





/*-------------------------------------
アカウント支援実績
-------------------------------------*/

.work {
  padding-top: 114px;
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.work::before {
  position: absolute;
  top: 9%;
  right: 0;
  transform: translateX(8%);
  content: "";
  width: 191px;
  height: 419px;
  background-image: url(../image/work/work_deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.work .section-title {
  padding-bottom: 26px;
}

.work .section-title__text {
  font-size: min(calc(100vw / 1000 * 30), 30px);
  line-height: 1;
}
.work .section-title__text-line {
  font-size: min(calc(100vw / 1000 * 45), 45px);
  letter-spacing: -0.01em;
}
.work .section-title__text-line::before {
  bottom: 0;
}
.work .section-title__text-small {
  margin-top: 6px;
  display: block;
  font-weight: 400;
  font-size: 18px;
}

.work-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 8px;
}

.work-item {
  width: 219px;
  height: 50px;
  border-radius: 4px;
  border: 1px solid #B8B8B8;
  background-color: #FAFAFA;
  padding: 8px 3px 8px 32px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
}
.work-item::before {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../image/work/work_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}


@media screen and (max-width: 999.98px) {
  .work-list {
    margin-inline: auto;
    max-width: 673px;
  }
  .work-item {
    width: calc((100% - 8px * 2) / 3);
  }
}

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

  .work {
    padding-top: 55px;
    padding-bottom: 50px;
  }
  .work::before {
    display: none;
  }

  .work .section-title {
    padding-bottom: 18px;
  }

  .work .section-title__text {
    font-size: 20px;
    letter-spacing: -0.01em;
    line-height: 1.5;
  }
  .work .section-title__text-line {
    font-size: min(calc(100vw / 390 * 32), 32px);
  }
  .work .section-title__text-line::before {
    bottom: 4px;
  }
  .work .section-title__text-small {
    margin-top: 0;
    display: inline-block;
    font-size: 16px;
  }

  .work .section-title__text span.sp-only {
    display: inline-block;
    font-weight: 400;
    font-size: 16px;
  }

  .work-subTitle.pc-only {
    display: none;
  }

  .work-list {
    margin-top: 14px;
    margin-inline: auto;
    max-width: 350px;
    gap: 6px 10px;
  }

  .work-item {
    width: calc((100% - 10px) / 2);
    height: 38px;
    padding: 5px 3px 5px 20px;
    border-radius: 2px;
    font-size: 10px;
  }
  .work-item::before {
    left: 5px;
    width: 10px;
    height: 10px;
  }

  .work-item span {
    display: block;
    width: 100%;
    text-align: left;
  }

}


@media screen and (max-width: 374.98px) {
  .work-list {
    gap: 10px 6px;
  }
  .work-item {
    width: calc((100% - 6px) / 2);
    padding-left: 13px;
  }
  .work-item::before {
    left: 3px;
    width: 8px;
    height: 8px;
  }
}





/*-------------------------------------
CTA
-------------------------------------*/

.cta {
  background: linear-gradient(100deg, #2C2D4B 0%, #9EA0E8 51%, #2C2D4B 100%);
}

.cta-inner {
  padding: 70px min(calc(100vw / 1440 * 92), 92px) 83px 20px;
  max-width: 1320px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  column-gap: 7%;
}

.cta-image {
  flex: 1;
}

.cta-body {
  padding-top: min(calc(100vw / 1440 * 16), 16px);
}

.cta-body__heading {
  position: relative;
}

.cta-body__comment.js-fadeIn {
  position: absolute;
  top: -5px;
  left: 0;
  width: fit-content;
  background-color: var(--darkblue);
  padding: 5px min(calc(100vw / 1440 * 23), 23px);
  transform: translateY(25px) rotate(-11deg);
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 20), 20px);
  line-height: 1.5;
  text-transform: uppercase;
  color: #fff;
  z-index: 1;
}
.cta-body__comment::before {
  position: absolute;
  top: calc(100% - 6px);
  left: 68%;
  transform: translateX(-65%) rotate(-18deg);
  content: "";
  width: 13px;
  height: 18px;
  background-color: var(--darkblue);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  z-index: -1;
}
.cta-body__comment.js-fadeIn.is-active {
  transform: translateY(0) rotate(-11deg);
}

.cta-body__subTitle {
  display: flex;
  justify-content: center;
  column-gap: 6px;
}

.cta-body__subTitle span {
  width: min(5vw, 50px);
  height: min(5vw, 50px);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: min(3vw, 30px);
  line-height: 1;
  color: #2C2D4B;
}

.cta-body__title {
  margin-top: 12px;
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 48), 48px);
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #fff;
}

.cta-body__buttonList {
  margin-top: 30px;
  padding-left: 5px;
  display: flex;
  column-gap: 15px;
}

.cta-body__buttonLink {
  padding: min(calc(100vw / 1440 * 16), 16px) min(calc(100vw / 1440 * 32), 32px);
  border-radius: 50px;
  box-shadow: 1px 2px 0 #fff;
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 20), 20px);
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.cta-body__buttonLink--form {
  color: #fff;
  border: 2px solid var(--rose);
  background-color: var(--rose);
}
@media (hover: hover) {
  .cta-body__buttonLink--form:hover {
    opacity: 1;
    color: var(--rose);
    background-color: #fff;
  }
}
.cta-body__buttonLink--line {
  color: #32C55A;
  border: 2px solid #32C55A;
  background-color: #fff;
}
@media (hover: hover) {
  .cta-body__buttonLink--line:hover {
    opacity: 1;
    color: #fff;
    background-color: #32C55A;
  }
}

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

  .cta {
    background: linear-gradient(135deg, #2C2D4B 0%, #9EA0E8 51%, #2C2D4B 100%);
  }

  .cta-inner {
    padding-top: 50px;
    padding-bottom: 46px;
    padding-inline: 5px;
    flex-direction: column;
    align-items: center;
  }

  .cta-body {
    display: contents;
  }

  .cta-body__heading {
    order: 1;
  }

  .cta-body__comment.js-fadeIn {
    top: -7px;
    left: -5px;
    padding: 2px 7px;
    font-size: 10px;
  }
  .cta-body__comment::before {
    width: 10px;
    height: 13px;
  }

  .cta-body__subTitle {
    padding-left: 8px;
    column-gap: 2px;
  }

  .cta-body__subTitle span {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .cta-body__title {
    margin-top: 5px;
    font-size: 20px;
  }

  .cta-image {
    order: 2;
    margin-top: 30px;
    width: 184px;
  }

  .cta-body__buttonList {
    order: 3;
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }

  .cta-body__buttonLink {
    width: 265px;
    padding: 16px;
    text-align: center;
    font-size: 16px;
  }

}





/*-------------------------------------
お客様の声
-------------------------------------*/

.voice {
  padding-top: 75px;
  padding-bottom: 100px;
}

.voice .section-title__text {
  font-size: 40px;
}

.voice-list {
  margin-top: 80px;
}

.voice-item {
  display: flex;
  align-items: center;
}
.voice-item.voice-item--reverse {
  flex-direction: row-reverse;
}
.voice-item:nth-child(1) {
  width: 95%;
  column-gap: 16px;
}
.voice-item:nth-child(2) {
  margin-top: 48px;
  margin-left: 10px;
  width: 98%;
  column-gap: 45px;
}

.voice-item:nth-child(1) .voice-item__person {
  width: 110px;
}

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

.voice-item__image img {
  width: 100px;
  border-radius: 50%;
}

.voice-item__image h3 {
  display: block;
  margin-top: 7px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}

.voice-item__commentZone {
  flex: 1;
  background-color: var(--rose);
  border-radius: 7px;
  padding: 1px;
  position: relative;
}
.voice-item__commentZone::before {
  position: absolute;
  right: calc(100% - 1px);
  top: 31px;
  content: "";
  width: 18px;
  height: 9px;
  background-color: var(--rose);
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}
.voice-item:nth-child(3) .voice-item__commentZone::before {
  top: 44px;
}
.voice-item--reverse .voice-item__commentZone::before {
  left: calc(100% - 1px);
  top: 44px;
  clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
}

.voice-item__comment {
  background-color: #fff;
  border-radius: 7px;
  padding: 28px 12px;
  position: relative;
}
.voice-item__comment::before {
  position: absolute;
  right: calc(100% - 1px);
  top: 31px;
  content: "";
  width: 16px;
  height: 7px;
  background-color: #fff;
  clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}
.voice-item--reverse .voice-item__comment::before {
  left: calc(100% - 1px);
  top: 44px;
  clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
}

.voice-item__comment-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--rose);
  line-height: 1.4;
}

.voice-item__comment-text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.4;
}


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

  .voice {
    padding-block: 50px;
  }

  .voice .section-title__text {
    font-size: 24px;
  }

  .voice-list {
    margin-top: 30px;
  }

  .voice-item,
  .voice-item.voice-item--reverse {
    flex-direction: column-reverse;
  }
  .voice-item:nth-child(1) {
    width: 100%;
  }
  .voice-item:nth-child(2) {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
  }

  .voice-item__person {
    margin-top: 28px;
    width: 100%;
  }

  .voice-item__image h3 {
    font-size: 14px;
  }

  .voice-item__commentZone::before,
  .voice-item:nth-child(3) .voice-item__commentZone::before,
  .voice-item--reverse .voice-item__commentZone::before {
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 7px;
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  }

  .voice-item__comment {
    padding: 25px 20px 32px;
  }
  .voice-item__comment::before,
  .voice-item:nth-child(3) .voice-item__comment::before,
  .voice-item--reverse .voice-item__comment::before {
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 6px;
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  }

  .voice-item__comment-title {
    font-size: 16px;
    line-height: 1.8;
  }

  .voice-item__comment-text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
  .voice-item:nth-child(2) .voice-item__comment-text {
    line-height: 1.5;
  }

}





/*-------------------------------------
料金プラン
-------------------------------------*/

.plan {
  padding-top: 70px;
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
}
.plan::before {
  position: absolute;
  top: 25px;
  right: 0;
  content: "";
  width: 292px;
  height: auto;
  aspect-ratio: 292 / 398;
  background-image: url(../image/plan/plan_deco01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.plan::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 591px;
  height: auto;
  aspect-ratio: 591 / 199;
  background-image: url(../image/plan/plan_deco02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.plan .section-title__text {
  font-size: 40px;
}

.plan-tableZone {
  margin-top: 50px;
}

.plan-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  text-align: center;
  table-layout: fixed;
}

.plan-table th {
  background-color: var(--rose);
  height: 70px;
  vertical-align: middle;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #fff;
}

.plan-table td {
  background-color: #F5E5ED;
  height: 100px;
  vertical-align: middle;
  text-align: center;
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 42px;
}

.plan-word {
  margin-top: 85px;
}

.plan-word__text01 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #000;
}
.plan-word__text01 span {
  display: inline-block;
}

.plan-word__text02 {
  margin-top: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #000;
}

.plan-slider01 {
  margin-top: 60px;
}

.plan-slider02 {
  margin-top: -12px;
}

.plan-slider01 .slick-track,
.plan-slider02 .slick-track {
  padding-block: 30px;
}

.plan-slider__item {
  margin-right: 30px;
  width: 400px;
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.25);
}



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

  .plan {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .plan::before,
  .plan::after {
    display: none;
  }

  .plan .section-title__text {
    font-size: 24px;
  }

  .plan-tableZone {
    margin-top: 30px;
  }

  .plan .section-title {
    margin-inline: auto;
    width: calc(100% - 20px);
  }

  .plan-row:not(:first-child) {
    margin-top: 15px;
  }

  .plan-tableZone {
    margin-inline: auto;
    max-width: 300px;
  }

  .plan-tableZone dt {
    background-color: var(--rose);
    padding-block: 10px;
    vertical-align: middle;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #fff;
  }

  .plan-tableZone dd {
    margin-left: 0;
    background-color: #F5E5ED;
    padding-block: 8px;
    vertical-align: middle;
    text-align: center;
    font-family: var(--Roboto);
    font-weight: 700;
    font-size: 36px;
  }
  .plan-tableZone .plan-row:first-child dd {
    padding-block: 4px;
  }

  .plan-word {
    margin-top: 30px;
  }

  .plan-word__text01 {
    font-size: 14px;
  }

  .plan-word__text02 {
    margin-top: 0;
    font-size: 24px;
  }

  .plan-slider01 {
    margin-top: 24px;
  }
  .plan-slider02 {
    margin-top: -36px;
  }

  .plan-slider__item {
    margin-right: 15px;
    width: 200px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.25);
  }

}





/*-------------------------------------
ご利用の流れ
-------------------------------------*/

.flow {
  padding-top: 110px;
  padding-bottom: 70px;
  background-color: #FAFAFA;
  border-radius: 0 100px 0 0;
  position: relative;
  z-index: 1;
}
.flow::before {
  position: absolute;
  top: -59px;
  right: 0;
  content: "";
  width: 306px;
  height: 206px;
  background-image: url(../image/flow/flow_deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.flow .section-title__text {
  letter-spacing: 0.1em;
  line-height: 1;
}

.flow .section-title__text h2 {
  font-size: 40px;
}

.flow .section-title__text-small {
  display: block;
  margin-top: 13px;
  font-size: 30px;
}

.flow .section-title__text-line::before {
  bottom: -4px;
}

.flow-content {
  margin-top: 30px;
  margin-inline: auto;
  max-width: 1405px;
  padding-inline: 20px;
}

.flow-scroll {
  overflow: auto;
}

.flow-list {
  padding: 30px;
  width: 1365px;
  display: flex;
  column-gap: 15px;
}

.flow-item {
  width: 249px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border-radius: 16px;
  position: relative;
}
.flow-item:not(:last-child)::before {
  position: absolute;
  top: 48%;
  right: -10px;
  transform: rotate(45deg);
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--rose);
  border-right: 3px solid var(--rose);
}

.flow-item__title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-item__title-step {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--darkblue);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #fff;
}

.flow-item__title-word {
  margin-top: 7px;
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--darkblue);
}


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

  .flow {
    padding-top: 53px;
    padding-bottom: 38px;
    border-radius: 0;
    overflow: hidden;
  }
  .flow::before {
    display: none;
  }

  .flow .section-title__text h2 {
    font-size: 24px;
  }

  .flow .section-title__text-small {
    margin-top: 11px;
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }

  .flow .section-title__text-line::before {
    bottom: 1px;
    left: -4px;
    width: calc(100% + 4px);
  }

  .flow-content {
    margin-top: 7px;
  }

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

  .flow-list {
    padding-inline: 30px;
    flex-wrap: nowrap;
  }

  .flow-item__title {
    margin-top: 0;
  }

}





/*-------------------------------------
プレゼント
-------------------------------------*/

.present {
  padding-top: 128px;
  padding-bottom: 80px;
  background-color: #F5E5ED;
}

.present-title {
  position: relative;
}

.present-title__comment.js-fadeIn {
  position: absolute;
  top: -65px;
  left: calc(50% - 300px);
  width: fit-content;
  background-color: var(--darkblue);
  padding: 5px 30px;
  transform: translateY(25px) rotate(-11deg);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  z-index: 1;
}
.present-title__comment.js-fadeIn.is-active {
  transform: translateY(0) rotate(-11deg);
}
.present-title__comment::before {
  position: absolute;
  top: calc(100% - 8px);
  left: 58%;
  transform: translateX(-65%) rotate(-20deg);
  content: "";
  width: 15px;
  height: 22px;
  background-color: var(--black);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  z-index: -1;
}

.present-title__text {
  text-align: center;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding-bottom: 15px;
  position: relative;
}
.present-title__text-small {
  font-size: 30px;
  color: var(--rose);
  letter-spacing: 0.1em;
}

.present-title__text::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background-color: var(--rose);
}
.present-title__text::after {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 42px;
  height: 22px;
  background-color: var(--rose);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.present-inner {
  margin-top: 30px;
  margin-inline: auto;
  max-width: 1036px;
  padding-left: 38px;
  padding-right: 20px;
  display: flex;
  column-gap: 60px;
}

.present-image {
  width: 48%;
}

.present-body {
  flex: 1;
}

.present-container {
  width: calc(100% - 48px);
  border-radius: 13px;
  border: 2px solid var(--rose);
  background-color: #fff;
  padding: 28px 40px;
}

.present-item {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #333;
  padding-left: 41px;
  position: relative;
}
.present-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--rose);
  border-radius: 2px;
}
.present-item::after {
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-65%) rotate(-45deg);
  content: "";
  width: 12px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 0 0 0 2px;
}
.present-item:not(:first-child) {
  margin-top: 10px;
}

.present-catch {
  margin-top: 30px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: var(--rose);
}

.present-buttonZone {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}

.present-button {
  background-color: #25A651;
  filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.25));
  border-radius: 50px;
  padding: 20px 38px;
  text-align: center;
  font-family: var(--Ubuntu);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
}


@media screen and (max-width: 999.98px) {
  .present-inner {
    padding-inline: 20px;
  }
  .present-image {
    width: 42%;
  }
  .present-container {
    padding: 20px 24px;
  }
  .present-item {
    padding-left: calc(100vw / 1000 * 40);
    font-size: calc(100vw / 1000 * 20);
  }
  .present-catch {
    font-size: calc(100vw / 1000 * 28);
  }
}


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

  .present {
    padding-top: 68px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.05));
  }

  .present-title__text {
    font-size: 16px;
    letter-spacing: 0;
    padding-bottom: 18px;
  }
  .present-title__text::before {
    height: 3px;
  }
  .present-title__text::after {
    width: 30px;
    height: 18px;
  }

  .present-title__text-small {
    font-size: 20px;
  }

  .present-title__comment.js-fadeIn {
    top: -36px;
    left: calc(50% - 140px);
    padding: 3px 18px;
    font-size: 12px;
  }
  .present-title__comment.js-fadeIn.is-active {
    transform: translateY(0) rotate(-11deg);
  }
  .present-title__comment::before {
    top: calc(100% - 4px);
    transform: translateX(-45%) rotate(-18deg);
    width: 9px;
    height: 13px;
  }

  .present-inner {
    margin-top: 50px;
    max-width: 450px;
    flex-direction: column;
  }

  .present-image {
    width: 253px;
    margin-inline: auto;
  }

  .present-body {
    margin-top: 35px;
  }

  .present-container {
    width: 100%;
    padding: 15px min(calc(100vw / 390 * 26), 26px);
    flex-direction: column-reverse;
  }

  .present-item {
    font-size: 16px;
    padding-left: 43px;
    margin-right: -2px;
  }
  .present-item::before {
    width: 25px;
    height: 25px;
  }
  .present-item::after {
    top: 45%;
    left: 6px;
    width: 12px;
    height: 7px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
  .present-item:not(:first-child) {
    margin-top: 12px;
  }

  .present-catch {
    margin-top: 25px;
    text-align: center;
    font-size: min(calc(100vw / 390 * 20), 20px);
    line-height: 1.4;
  }

  .present-buttonZone {
    margin-top: 32px;
  }

  .present-button {
    padding: 16px;
    max-width: 350px;
    width: 100%;
    font-size: min(calc(100vw / 390 * 16), 16px);
    line-height: calc(19 / 16);
  }

}





/*-------------------------------------
よくあるご質問
-------------------------------------*/

.faq {
  padding-top: 92px;
  padding-bottom: 100px;
}

.faq .section-title__text {
  font-size: 40px;
}

.accordion-list {
  margin-top: 80px;
}

.accordion-item {
  border-top: 1px solid #B8B8B8;
  border-bottom: 1px solid #B8B8B8;
}
.accordion-item:not(:first-child) {
  margin-top: 46px;
}

.accordion-button {
  display: block;
  width: 100%;
  padding: 24px 72px 24px 24px;
  background-color: #F2F2F2;
  position: relative;
  transition: all 0.3s;
}
.accordion-button::before {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  content: "";
  width: 23px;
  height: 3px;
  background-color: #B8B8B8;
  transition: all 0.3s;
}
.accordion-button::after {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%) rotate(90deg);
  content: "";
  width: 23px;
  height: 3px;
  background-color: #B8B8B8;
  transition: all 0.3s;
}
.accordion-button.is-active::after {
  transform: translateY(-50%) rotate(0);
}
@media (hover: hover) {
  .accordion-button:hover {
    opacity: 1;
  }
}

.accordion-flex {
  display: flex;
  gap: 17px;
}

.accordion-en {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--Inter);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}
.accordion-button .accordion-en {
  background-color: var(--black);
}
.accordion-content .accordion-en {
  background-color: var(--rose);
}

.accordion-question,
.accordion-answer {
  flex: 1;
  transition: all 0.3s;
}

.accordion-question {
  padding-top: 6px;
  font-weight: 700;
  font-size: 22px;
  line-height: calc(26 / 22);
}

.accordion-answer {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
}

.accordion-content {
  width: 100%;
  padding: 16px 24px;
}

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


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

  .faq {
    padding-block: 50px;
  }

  .faq .section-title {
    padding-bottom: 8px;
  }

  .faq .section-title__text {
    font-size: 24px;
    letter-spacing: 0.1em;
  }

  .accordion-list {
    margin-top: 35px;
  }

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

  .accordion-button {
    padding: 8px 31px 8px 8px;
  }

  .accordion-button::before {
    top: 15px;
    right: 11px;
    transform: unset;
    width: 9px;
    height: 1px;
  }
  .accordion-button::after {
    top: 15px;
    right: 11px;
    transform: rotate(90deg);
    width: 9px;
    height: 1px;
  }
  .accordion-button.is-active::after {
    transform: rotate(0);
  }

  .accordion-flex {
    gap: 6px;
  }

  .accordion-en {
    width: 21px;
    height: 21px;
    font-size: 14px;
  }

  .accordion-question {
    padding-top: 0;
    font-size: min(calc(100vw / 390 * 16), 16px);
    line-height: 1.3;
  }

  .accordion-answer {
    font-size: min(calc(100vw / 390 * 16), 16px);
    line-height: 1.3;
  }

  .accordion-content {
    padding: 6px 9px;
  }

}





/*-------------------------------------
お問い合わせ
-------------------------------------*/

.contact {
  padding-top: 92px;
  padding-bottom: 100px;
  background-color: #FAFAFA;
}

.contact .section-title__text {
  font-size: 40px;
}

.contact-content {
  margin-top: 50px;
  margin-inline: auto;
  max-width: 658px;
}

.contact-lead {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

.contact__form {
  margin-top: 40px;
}

.c-form__item:not(:first-child) {
  margin-top: 29px;
}

.c-form__label {
  width: 100%;
}

.c-form__label-text {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.c-form__label-text--must {
  position: relative;
}
.c-form__label-text--must::before {
  position: absolute;
  top: 0;
  left: calc(100% + 2px);
  content: "*";
  color: var(--rose);
}

.c-form__input {
  margin: 0;
  width: 100%;
}

.c-form__input-text,
.c-form__textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--darkblue);
  background-color: #fff;
  padding: 18px 14px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.c-form__input-text::placeholder,
.c-form__textarea::placeholder {
  font-weight: 400;
  color: #B8B8B8;
}

.c-form__textarea {
  height: 162px;
  resize: vertical;
}

.c-form__button {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}

.c-button {
  padding: 23px 48px;
  border-radius: 60px;
  background-color: var(--rose);
  font-weight: 700;
  font-size: 16px;
  line-height: calc(19 / 16);
  color: #fff;
  white-space: pre-line;
  transition: all 0.3s;
}
@media (hover: hover) {
  .c-button:hover {
    opacity: 0.7;
  }
}


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

  .contact {
    padding-top: 45px;
    padding-bottom: 40px;
  }

  .contact .section-title {
    padding-bottom: 7px;
  }

  .contact .section-title__text {
    font-size: 24px;
  }

  .contact-content {
    margin-top: 20px;
  }

  .contact-lead {
    font-size: 14px;
  }

  .contact__form {
    margin-top: 30px;
  }

  .c-form__item:not(:first-child) {
    margin-top: 16px;
  }

  .c-form__input-text,
  .c-form__textarea {
    padding: 18px 10px;
  }

  .c-form__textarea {
    height: 142px;
  }

  .c-form__button {
    margin-top: 30px;
  }

  .c-button {
    width: 292px;
    padding: 11px 5px;
    text-align: center;
    line-height: 1.5;
  }

}





/*-------------------------------------
会社概要
-------------------------------------*/

.company {
  padding-top: 90px;
  padding-bottom: 118px;
}

.company .section-title__text {
  font-size: 40px;
}

.company-content {
  margin-top: 50px;
}

.company-list {
  display: flex;
}
.company-list:not(:last-child) {
  border-bottom: 1px solid #B8B8B8;
}

.company-title-zone {
  width: 240px;
  padding: 40px 24px 41px;
  display: flex;
  align-items: center;
}

.company-data-zone {
  flex: 1;
  margin: 0;
  padding: 40px 24px 41px;
  display: flex;
  align-items: center;
}
.company-list:nth-child(3) .company-data-zone {
  padding: 60px 24px;
}

.company-title,
.company-data {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
.company-title {
  letter-spacing: 0.1em;
}


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

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

  .company .section-title__text {
    font-size: 24px;
    letter-spacing: 0.1em;
    padding-bottom: 2px;
  }

  .company-content {
    margin-top: 30px;
  }

  .company-list {
    column-gap: 5px;
  }

  .company-title-zone {
    width: min(calc(100vw / 390 * 110), 110px);
    padding: 15px 9px;
  }

  .company-data-zone {
    padding: 15px 9px;
  }
  .company-list:nth-child(3) .company-data-zone {
    padding: 22px 9px;
  }

  .company-title {
    font-size: min(calc(100vw / 390 * 16), 16px);
  }

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

}





/*-------------------------------------
フッター
-------------------------------------*/

.footer {
  padding-top: 32px;
  padding-bottom: 35px;
  background-color: var(--black);
}

.footer-text {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  line-height: calc(38 / 32);
  color: #fff;
}

.footer-copy {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: calc(17 / 14);
  color: #fff;
}


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

  .footer {
    padding-top: 9px;
    padding-bottom: 10px;
  }

  .footer-text {
    font-size: 20px;
    line-height: calc(22 / 18);
  }

  .footer-copy {
    margin-top: 14px;
    font-size: 10px;
  }

}