@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;
  --black2: #333333;
  --rose: #C73481;
  --darkblue: #2C2D4B;
  --line: #00B900;
  --contact: #EEB33A;
  --orange1: #E67D22;
  --orange2: #F39C12;
  --orange3: #D94E1F;
  --yellow: #FEF100;
  --gray: #B8B8B8;
  --beige: #FAF9F6;
}





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

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

.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(--orange1);
}
.section-title--underLine::after {
  position: absolute;
  bottom: 0;
  left: 88px;
  content: "";
  width: calc(100% - 88px);
  height: 3px;
  background-color: var(--gray);
}

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

.section-title__text-line {
  display: inline-block;
  color: var(--orange1);
  position: relative;
  z-index: 1;
}
.section-title__text-line::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 11px;
  background-color: var(--yellow);
  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: var(--gray);
  }
  .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: var(--gray);
  }

}





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

.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: var(--orange1);
  }

}





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

.fv {
  background-image: url(../image/fv/fv_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.fv::before {
  position: absolute;
  display: block;
  bottom: 0;
  left: calc((100vw - 1440px) / 2);
  content: "";
  width: calc(100% * 395/1440);
  max-width: 395px;
  height: auto;
  aspect-ratio: 395/540;
  background-image: url(../image/fv/fv_image01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.fv::after {
  position: absolute;
  display: block;
  bottom: 0;
  right: calc((100vw - 1440px) / 2);
  content: "";
  width: calc(100% * 390/1440);
  max-width: 390px;
  aspect-ratio: 390/600;
  height: auto;
  background-image: url(../image/fv/fv_image02.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.fv__inner {
  padding-top: min(calc(100vw / 1440 * 67),67px);
  padding-bottom: min(calc(100vw / 1440 * 30),30px);
  padding-inline: min(calc(100vw / 1440 * 90), 90px);
  margin-inline: auto;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.fv__lead {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 32), 32px);
  line-height: calc(38/32);
}

.fv__catchZone {
  margin-top: 14px;
}

.fv__catch {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 62), 62px);
  line-height: 1.1;
  background: linear-gradient(103deg, #D94E1F 0%, #E67D22 50%, #FFB347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
}

.fv__titleZone {
  max-width: 670px;
  margin-top: 20px;
  margin-inline: auto;
  padding-block: min(calc(100vw / 1440 * 21), 21px) ;
  padding-inline: min(calc(100vw / 1440 * 16), 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(103deg, #D94E1F 0%, #E67D22 50%, #FFB347 100%);
  width: min(calc(100vw / 1440 * 670), 670px);
}

.fv__subTitle {
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 28), 28px);
  line-height: calc(34/28);
  color: #fff;
}

.fv__title {
  margin-top: -2px;
  font-weight: bold;
  font-size: min(calc(100vw / 1440 * 56), 56px);
  line-height: 1.1;
  color: #fff;
  display: flex;
  align-items: center;
}
.fv__title span {
  margin-left: 10px;
  font-size: min(calc(100vw / 1440 * 86), 86px);
  line-height: calc(56/86);
}

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

.fv__feature {
  border-radius: 50%;
  width: min(calc(100vw / 1440 * 230), 230px);
  aspect-ratio: 1/1;
  padding-block: min(calc(100vw / 1440 * 26), 26px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.fv__feature::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: min(calc(100vw / 1440 * 215), 215px);
  height: min(calc(100vw / 1440 * 215), 215px);
  border-radius: 50%;
  padding: 3px; /* 枠線の太さ */
  background: linear-gradient(105deg, #D94E1F 0%, #E67D22 50%, #FFB347 100%);
  -webkit-mask:
    linear-gradient(#fff , #fff) content-box,
    linear-gradient(#fff , #fff);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background-clip: border-box;
  pointer-events: none;
  z-index: 0;
}
.fv__feature::after {
  position: absolute;
  top: calc(100% * 21/230);
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: calc(100% * 54/230);
  height: calc(100% * 39/230);
  background-image: url(../image/fv/fv_markup.svg);
  background-repeat: no-repeat;
  background-size: cover;
}


.fv__feature-text {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 20), 20px);
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-top: 8px;
}

.fv__feature-text-grad {
  display: inline-block;
  background: linear-gradient(103deg, #D94E1F 0%, #E67D22 50%, #FFB347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fv__feature-text-big {
  font-size: min(calc(100vw / 1440 * 32), 32px);
}

.fv__feature-text-middle {
  font-size: min(calc(100vw / 1440 * 24), 24px);
}


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

  .fv::before {
    left: 0;
  }

  .fv::after {
    right: 0;
  }

}


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

  .fv::before {
    width: calc(100% * 160/375);
    max-width: 395px;
    left: -25px;
  }
  .fv::after {
    width: calc(100% * 170/375);
    max-width: 390px;
  }

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

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

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

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

  .fv__catch {
    font-size: 28px;
  }

  .fv__titleZone{
    margin-top: 16px;
    width: calc(100vw / 390 * 205);
    padding-block: 10px 14px;
  }

  .fv__subTitle {
    font-size: calc(100vw / 390 * 13);
    line-height: 1.4;
    text-align: center;
  }
  .fv__subTitle span{
    display: inline-block;
  }

  .fv__title {
    margin-top: 4px;
    font-size: calc(100vw / 390 * 26);
  }

  .fv__title span {
    font-size: min(calc(100vw / 700 * 50), 50px);
    margin-left: 2px;
  }

  .fv__feature {
    width: min(calc(100vw / 700 * 200), 200px);
  }

  .fv__feature::before {
    width: min(calc(100vw / 700 * 190), 190px);
    height: min(calc(100vw / 700 * 190), 190px);
    padding: 2px;
  }

  .fv__feature-text {
    font-size: min(calc(100vw / 700 * 20), 20px);
  }

  .fv__feature-text-large {
    font-size: min(calc(100vw / 700 * 28), 28px);
  }

  .fv__feature-text-big {
    font-size: min(calc(100vw / 700 * 30), 30px);
  }

  .fv__feature-text-middle {
    font-size: min(calc(100vw / 700 * 20), 24px);
  }

}





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

.problem {
  padding-top: 29px;
  padding-bottom: min(calc(100vw / 1440 * 230), 230px);
  padding-inline: 20px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.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: 1148px;
  padding-top: 114px;
  padding-bottom: 108px;
  position: relative;
}

.problem-heading__title {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1200 * 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 / 1440 * 30), 30px);
  border-radius: 7px;
  border: 1px solid var(--orange1);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.problem-heading__item--01 {
  position: absolute;
  top: 0;
  left: 13.9%;
}
.problem-heading__item--02 {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-52%);
}
.problem-heading__item--03 {
  position: absolute;
  bottom: 0;
  left: 9.7%;
}
.problem-heading__item--04 {
  position: absolute;
  top: 0;
  right: 9.4%;
}
.problem-heading__item--05 {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-52%);
}
.problem-heading__item--06 {
  position: absolute;
  bottom: 0;
  right: 9.9%;
}

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


@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: 126px;
}

.solution .section-title--underLine {
  padding-bottom: 29px;
}

.solution-title__comment.js-fadeIn {
  position: absolute;
  top: -40px;
  left: calc(50% - 200px);
  width: fit-content;
  background-color: var(--black);
  padding: 5px 20px;
  transform: translateY(25px) rotate(-11deg);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--yellow);
  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);
}

.solution .section-title__text-line {
  margin-inline: min(calc(100vw / 1440 * 10), 10px);
  margin-bottom: 8px;
  font-size: 38px;
  letter-spacing: -0.01em;
}
.solution .section-title__text-line::before {
  bottom: 5px;
  left: 50%;
  width: 103%;
  height: 19px;
  transform: translateX(-50%);
}

.solution-title__text-margin {
  margin-top: -8px;
}

.solution .section-title__text-big {
  font-size: min(5vw,45px);
  line-height: calc(70/45);
}


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

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

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

  .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 {
    height: 10px;
  }

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

}


/*-------------------------------------
支援イメージ図
-------------------------------------*/

.assist-content {
  margin-top: 27px;
  background-image: url(../image/assist/assist_bg01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 50px;
  padding-inline: 20px;
  margin-inline: auto;
}

.assist-content2{
  margin-top: 142px;
  padding-block: 84px;
  background-image: url(../image/assist/assist_bg02.webp);
  position: relative;
}

.assist-textZone{
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  justify-content: center;
  width: 100%;
}

.assist-textZone__image1{
  width: min(calc(100vw / 1200 * 59),59px);
  margin-right: 33px;
}

.assist-textZone__image2{
  width: min(calc(100vw / 1200 * 45.5),45.5px);
  margin-left: 46px;
}

.assist-text{
  margin-top: 8px;
  font-size: min(calc(100vw / 1200 * 32),32px);
  font-weight: 700;
  color: #fff;
  background-color: var(--orange2);
  width: min(calc(100vw / 1200 * 480),480px);
  height: min(calc(100vw / 1200 * 70),70px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
  position: relative;
}
.assist-text::before{
  position: absolute;
  bottom: -24.4%;
  left: 80.6%;
  content: "";
  display: block;
  width: 20px;
  height: 35px;
  transform: rotate(30deg);
  background-color: var(--orange2);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.assist-content__items{
  margin-inline: auto;
  display: grid;
  max-width: 1330px;
  column-gap: calc(100% * 30/1330);
  grid-template-columns: repeat(4,1fr);
}

.assist-content__image{
  box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
  aspect-ratio: 310/310;
}


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

  .assist-content{
    padding-block: 25px;
  }

  .assist-content2{
    margin-top: 100px;
    padding-block: 60px 50px;
  }

  .assist-textZone__image1{
    width: min(calc(100vw / 768 * 55),55px);
    margin-right: 10px;
  }

  .assist-textZone__image2{
    width: min(calc(100vw / 768 * 46),46px);
    margin-left: 10px;
  }

  .assist-text{
    font-size: min(calc(100vw / 768 * 34),34px);
    width: min(calc(100vw / 768 * 480),480px);
    height: 60px;
  }

  .assist-content__items{
    row-gap: calc(100% * 30/1330);
    grid-template-columns: repeat(2,1fr);
  }

}

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

  .assist-textZone{
    top: 5px;
  }

  .assist-text{
    margin-top: 0;
  }

}




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

.reason {
  padding-top: 67px;
  padding-bottom: 49px;
  background-color: var(--beige);
}

.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: 50%;
  content: "";
  width: 105%;
  height: 15px;
  transform: translateX(-50%);
}

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

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

.reason-item__body {
  flex: 1;
}
.reason-item--reverse .reason-item__body {
  flex: none;
  width: calc(100% * 522/912);
}

.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(--orange1);
  position: relative;
  z-index: -1;
}

.reason-item__body-titleZone {
  margin-top: -21px;
  background-color: var(--black2);
  padding-block: 14px 14px;
  padding-inline: min(calc(100vw / 1050 * 60), 60px) min(calc(100vw / 1050 * 30), 30px);
}

.reason-item:nth-child(2) .reason-item__body-titleZone {
  padding: 10px min(calc(100vw / 1050 * 15), 15px) 15px;
}

.reason-item:nth-child(3) .reason-item__body-titleZone {
  padding-block: 12px 13px;
}

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

.reason-item__title-big{
  font-size: min(calc(100vw / 1050 * 24), 24px);
  color: var(--yellow);
}

.reason-item:nth-child(2) .reason-item__body-title {
  letter-spacing: -0.01em;
}

.reason-item__body-text {
  margin-top: 16px;
  font-weight: 500;
  font-size: 16px;
}
.reason-item__body-text-color {
  font-weight: 700;
  color: var(--orange1);
}
.reason-item:nth-child(2) .reason-item__body-text ,
.reason-item:nth-child(3) .reason-item__body-text {
  margin-top: 15px;
}

.reason-item:nth-child(1) .reason-item__body-image {
  width: 44.7%;
  transform: translate(3px,28px);
}
.reason-item:nth-child(2) .reason-item__body-image {
  width: 40.3%;
  transform: translateY(-8px);
}
.reason-item:nth-child(3) .reason-item__body-image {
  width: 48.5%;
  transform: translateY(-27px);
}


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

  .reason-item:nth-child(1) {
    margin-right: 0;
  }
  .reason-item.reason-item--reverse {
    align-items: center;
  }
  .reason-item:nth-child(3) {
    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 {
    height: 10px;
  }
  .reason .section-title__text-big {
    margin-inline: -3px;
    font-size: 32px;
  }
  .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__title-big{
    font-size: min(calc(100vw / 390 * 24), 24px);
  }

  .reason-item__body-linebreak{
    display: inline-block;
  }

  .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: 100px;
  padding-bottom: 60px;
}

.support-title{
  padding-bottom: 0;
}

.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;
  line-height: calc(28/18);
}

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

}





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

.cta {
  background: linear-gradient(105deg, #D94E1F 0%, #E67D22 50%, #FFB347 100%);
  padding: 50px 50px 56px;
}

.cta-inner {
  padding: 15px;
  max-width: 1340px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 20px;
}

.cta-body{
  padding-block: 25px;
  padding-inline: 30px;
  position: relative;
  background: #fff;
  z-index: 1;
}
.cta-body::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px; /* 枠の太さ */
  border-radius: 20px;
  background: linear-gradient(105deg, #D94E1F 0%, #E67D22 50%, #FFB347 100%);
  -webkit-mask:
    linear-gradient(#fff , #fff) content-box,
    linear-gradient(#fff , #fff);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.cta-body__heading {
  position: relative;
}

.cta-body__comment{
  font-size: 20px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--orange1);
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding-inline: min(calc(100vw / 1440 * 67), 67px);
  border: 3px dotted var(--orange1);
  border-radius: 40px;

}

.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.js-fadeIn.is-active {
  transform: translateY(0) rotate(-11deg);
}

.cta-body__title {
  text-align: center;
  font-weight: 700;
  font-size: min(calc(100vw / 1440 * 24), 24px);
  line-height: calc(35/24);
  color: var(--orange1);
}

.cta-body__title2 {
  margin-top: 16px;
  font-size: min(calc(100vw / 1440 * 32), 32px);
  line-height: calc(38/32);
}

.cta-body__buttonZone {
  max-width: 780px;
  margin-top: 15px;
  margin-inline: auto;
  padding-block: 25px 29px;
  background-color: #FAFAFA;
  filter: drop-shadow(0px 5px 15px rgba(0,0,0,0.15));
  border-radius: 17px;
}
.cta-body__buttonZone2 {
  margin-top: 25px;
}

.cta-body__buttonText {
  position: relative;
  color: var(--orange1);
  font-weight: 700;
  display: block;
  margin-inline: auto;
  width: fit-content;
  letter-spacing: 0.1em;
}
.cta-body__buttonText::before {
  position: absolute;
  top: 8px;
  left: -7px;
  transform: translate(-50% , -50%);
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../image/cta/cta_image.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.cta-body__buttonText--big{
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0;
}

.cta-body__buttonList {
  margin-top: 4px;
  display: flex;
  column-gap: 30px;
  justify-content: center;
}

.cta-body__buttonLink {
  padding-block: min(calc(100vw / 1000 * 16), 16px) ;
  border-radius: 50px;
  box-shadow: 2px 2px 0 #BF891A;
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 20), 20px);
  letter-spacing: 0.05em;
  line-height: 1.3;
  width: min(calc(100vw / 1000 * 300), 300px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-body__buttonLink--form {
  color: #fff;
  border: 2px solid var(--contact);
  background-color: var(--orange2);
}
@media (hover: hover) {
  .cta-body__buttonLink--form:hover {
    opacity: 1;
    color: var(--orange2);
    background-color: #fff;
  }
}

.cta-body__buttonLink--line {
  color: #fff;
  border: 2px solid #26BF67;
  background-color: #27AE60;
  box-shadow: 2px 2px 0 #4D936B;
}
@media (hover: hover) {
  .cta-body__buttonLink--line:hover {
    opacity: 1;
    color: #26BF67;
    background-color: #fff;
  }
}


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

  .cta {
    padding: min(calc(100vw / 768 * 50),50px);
  }

  .cta-inner {
    padding: 10px;
  }

  .cta-body {
    padding-bottom: 10px;
    padding-inline: 10px;
  }
  .cta-body::before {
    padding: 2px;
  }

  .cta-body__heading {
    order: 1;
  }

  .cta-body__comment{
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0;
    padding-inline: min(calc(100vw / 768 * 20), 20px);
    text-align: center;
    padding-block: 6px;
  }
  .cta-body__comment span{
    display: inline-block;
  }

  .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__title {
    margin-top: 5px;
    font-size: 18px;
    line-height: 1.4;
  }

  .cta-body__title2 {
    margin-top: 15px;
    line-height: 1.4;
  }

  .cta-body__title-linebreak2 {
    display: inline-block;
  }

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

  .cta-body__buttonZone {
    padding-block: 15px;
    padding-inline: 8px;
  }

  .cta-body__buttonZone2 {
    margin-top: 15px;
  }

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

  .cta-body__buttonItem{
    width: 100%;
    max-width: 350px;
  }

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

}

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

  .cta-body__title-linebreak1{
    display: inline-block;
  }

}

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

  .cta-body__comment{
    font-size: 15px;
  }

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

}





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

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

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

.voice-list {
  margin-top: 45px;
  position: relative;
}
.voice-list::before {
  position: absolute;
  display: block;
  top: -100px;
  right: 0;
  content: "voice";
  font-size: 105px;
  line-height: 1;
  font-weight: 700;
  color: rgba(243, 156, 18, 0.3); /* F39C12 30% */
  z-index: -1;
}

.voice-item {
  display: flex;
  align-items: flex-start;
}
.voice-item.voice-item--reverse {
  flex-direction: row-reverse;
}
.voice-item {
  column-gap: 17px;
}
.voice-item:not(:first-child) {
  margin-top: 65px;
}

.voice-item__person {
  width: 100px;
}

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

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

.voice-item__commentZone {
  flex: 1;
  background: linear-gradient(103deg, #D94E1F 0%, #E67D22 50%, #FFB347 100%);
  border-radius: 7px;
  padding: 2px;
  position: relative;
}
.voice-item__commentZone::before {
  position: absolute;
  right: calc(100% - 1px);
  top: 45px;
  content: "";
  width: 18px;
  height: 11px;
  background-color: #D94E1F;
  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-block: 19px 22px;
  padding-inline: min(calc(100vw / 1440 * 40), 40px);
  position: relative;
}
.voice-item:nth-child(1) .voice-item__comment{
  padding-block: 20px 5px;
}
.voice-item:nth-child(2) .voice-item__comment{
  padding-block: 19px 20px;
}

.voice-item__comment::before {
  position: absolute;
  right: calc(100% - 1px);
  top: 47px;
  content: "";
  width: 6px;
  height: 3px;
  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: min(2.9vw,28px);
  background: linear-gradient(103deg, #D94E1F 0%, #E67D22 50%, #FFB347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
}

.voice-item__comment-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: calc(27/16);
  font-weight: 500;
}
.voice-item__comment-text span{
  color: var(--orange1);
}

.voice-item__comment-nameBody{
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.voice-item__comment-name-image{
  width: 217px;
}

.voice-item__comment-name{
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  text-align: right;
  color: var(--black2);
}
.voice-item:nth-child(2) .voice-item__comment-name{
  margin-top: 15px;
}


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

  .voice {
    padding-block: 50px;
  }

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

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

  .voice-list::before{
    top: -56px;
    font-size: 60px;
  }

  .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: 17px;
    line-height: 1.7;
  }

  .voice-item__comment-text {
    margin-top: 16px;
  }
  .voice-item:nth-child(2) .voice-item__comment-text {
    line-height: 1.5;
  }

  .voice-item__comment-nameBody{
    flex-direction: column;
    align-items: flex-end;
  }

  .voice-item__comment-name{
    font-size: 15px;
  }

}





/*-------------------------------------
責任者ご紹介
-------------------------------------*/

.message{
  padding-top: 75px;
  background-color: var(--beige);
}

.message .section-title {
  padding-bottom: 12px;
}

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

.message-profile{
  margin-top: 43px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  max-width: 842px;
  align-items: flex-end;
}

.message-profile__image{
  width: calc(100% * 410/842);
}

.message-profile__image{
  aspect-ratio: 410 / 280;
}

.message-profile__textZone{
  flex: 1;
  padding-block: min(calc(100vw / 1440 * 33), 33px);
  padding-inline: min(calc(100vw / 1440 * 25), 25px);
  background-color: #fff;
}

.message-profile__name{
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange1);
}

.message-profile__post{
  margin-top: 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--black2);
}

.message-profile__career{
  margin-top: 15px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--black2);
}

.message-profile__text{
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--black2);
}

.message-concept{
  padding-block: 52px 70px;
  padding-inline: min(calc(100vw / 1440 * 45), 45px);
  position: relative;
  z-index: 0;
}
.message-concept::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../image/message/message_noise.png);
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: overlay;
  z-index: 0;
}
.message-concept::after{
  position: absolute;
  display: block;
  top: 170px;
  right: -30.3%;
  transform: rotate(90deg);
  content: "message";
  font-size: 105px;
  line-height: 1;
  font-weight: 700;
  color: rgba(243, 156, 18, 0.3); /* F39C12 30% */
}

.message-concept__title{
  position: relative;
  z-index: 1;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

.message-concept__textZone{
  margin-top: 15px;
}

.message-concept__text{
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  color: var(--darkblue);/* 色確認 */
}
.message-concept__text:not(:first-child){
  margin-top: 24px;
}
.message-concept__text span{
  color: var(--orange1);
  font-weight: 700;
}


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

  .message-concept{
    margin-top: 90px;
  }

  .message-concept::after{
    transform: unset;
    right: 0;
    top: -85px;
    font-size: 90px;
  }

}


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

  .message-profile__career{
    letter-spacing: -0.01em;
  }

  .message-concept__text{
    font-size: min(calc(100vw / 900 * 15), 15px);
  }

  .message-concept__linebreak{
    display: inline-block;
  }

}


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

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

  .message-profile{
    flex-direction: column;
    align-items: unset;
  }

  .message-profile__textZone{
    padding: 16px 10px;
  }

  .message-profile__image{
    width: 100%;
  }

  .message-profile__name{
    text-align: center;
  }

  .message-profile__post{
    text-align: center;
  }

  .message-profile__career{
    display: flex;
    flex-direction: column;
    max-width: 350px;
    margin-inline: auto;
    font-size: 11px;
  }

  .message-profile__text{
    text-align: center;
  }

  .message-concept{
    margin-top: 60px;
    padding-block: 30px;
    padding-inline: 15px;
  }

  .message-concept::after{
    top: -56px;
    font-size: 60px;
  }

  .message-concept__title {
    font-size: 20px;
  }

  .message-concept__title span{
    display: inline-block;
  }

  .message-concept__text{
    text-align: left;
    font-size: 15px;
  }

  .message-concept__text:not(:first-child){
    margin-top: 15px;
  }

  .message-concept__linebreak{
    display: inline;
  }

}

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

  .message-profile__career{
    margin-inline: initial;
    margin-right: -10px;
  }

}



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

  .message-profile__textZone{
    padding-inline: min(calc(100vw / 375 * 10 ),10px);
  }
  .message-profile__name{
    font-size: 20px;
  }

  .message-profile__post{
    font-size: 12px;
  }

  .message-profile__career{
    letter-spacing: -0.09em;
    font-size: 10px;
    max-width: 265px;
  }

  .message-concept::after{
    top: -48px;
    font-size: 50px;
  }

}




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

.plan {
  padding-top: 93px;
  position: relative;
  z-index: 0;
}

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

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

.plan-tableZone {
  margin-top: 49px;
  display: grid;
  grid-template-columns: 1fr 1fr calc(100% * 320/900);
  column-gap: calc(100% * 15/900);
}

.plan-row {
  border: 1px solid var(--gray);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  overflow: hidden;
}

.plan-tableZone dt {
  background-color: var(--black2);
  padding-block: 16px;
  vertical-align: middle;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #fff;
}

.plan-tableZone dd {
  margin-left: 0;
  background-color: #fff;
  padding-block: 20px;
  vertical-align: middle;
  text-align: center;
  font-family: var(--Roboto);
  font-weight: 700;
  font-size: 30px;
  color: var(--orange1);
}

.plan-word {
  margin-top: 50px;
  background-color: var(--beige);
  padding-block: 15px 25px;
  padding-inline: 16px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.plan-word__title {
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  line-height: calc(34/26);
  color: var(--orange1);
}

.plan-word__text {
  margin-top: 5px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 2.5;
  color: var(--black2);

}
.plan-word__text span {
  display: block;
  border-bottom: 1px dashed var(--gray);
}

.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;
  }
  .plan::before,
  .plan::after {
    display: none;
  }

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

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

  .plan-tableZone {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    margin-inline: auto;
    max-width: 300px;
  }

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

  .plan-tableZone dt {
    padding-block: 10px;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #fff;
  }

  .plan-tableZone dd {
    padding-block: 8px;
  }

  .plan-word {
    margin-inline: auto;
    margin-top: 30px;
    padding-inline: 3px;
    max-width: 450px;
  }

  .plan-word__title {
    font-size: 24px;
  }

  .plan-word__text {
    font-size: 12px;
    letter-spacing: -0.01em;
  }

}

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

  .plan-word__text {
    font-size: min(calc(100vw / 375 * 12), 12px);
    letter-spacing: -0.01em;
  }

}




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

.flow {
  padding-top: 128px;
  padding-bottom: 70px;
  background-color: var(--beige);
  position: relative;
  z-index: 0;
}

.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;
  overflow: hidden;
}
.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(--orange2);
  border-right: 3px solid var(--orange2);
}

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

.present-title {
  position: relative;
}

.present-title__comment.js-fadeIn {
  position: absolute;
  top: -66px;
  left: calc(50% - 300px);
  width: fit-content;
  background-color: var(--black2);
  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(--black2);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  z-index: -1;
}

.present-title__text {
  text-align: center;
  font-weight: 900;
  font-size: min(4.7vw,40px);
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding-bottom: 14px;
  position: relative;
  color: var(--orange1);
}
.present-title__text-small {
  font-size: 30px;
  color: var(--black2); /* 色確認セクションタイトル */
  letter-spacing: 0.1em;
}
.letter-spacing__03{
  letter-spacing: -0.3em;
}

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

.present-inner {
  margin-top: 21px;
  margin-inline: auto;
  max-width: 1000px;
  padding-inline: 7px 20px;
  display: flex;
  column-gap: 60px;
  align-items: center;
}

.present-image {
  width: calc(100% * 481/973);
  overflow: hidden;
  height: 100%;
}

.present-image img{
  aspect-ratio: 470/422;
}

.present-body {
  flex: 1;
}

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

.present-item {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--black2);
  padding-left: 41px;
  position: relative;
  font-family: var(--Inter);
}
.present-item::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--orange2);
  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: 50px;
  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: 21px 48px 20px;
  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;
    column-gap: 40px;
  }

  .present-image {
    width: 48%;
  }

  .present-container {
    margin-top: 0;
    padding: 20px 24px;
    width: 100%;
  }

  .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: 25px;
    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: 100%;
    margin-inline: auto;
  }

  .present-body {
    margin-top: 35px;
    width: 100%;
    max-width: 325px;
  }

  .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;
    padding-inline: 20px;
  }

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

}

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

  .present-item {
    font-size: 15px;
  }

}



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

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

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

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

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

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

.accordion-button {
  display: block;
  width: 100%;
  padding: 24px 72px 24px 24px;
  background-color: var(--beige);
  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: var(--gray);
  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: var(--gray);
  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-button .accordion-flex{
  align-items: center;
}

.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(--black2);
}
.accordion-content .accordion-en {
  background-color: var(--orange2);
}

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

.accordion-question {
  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 {
    right: 11px;
    transform: unset;
    width: 9px;
    height: 1px;
  }
  .accordion-button::after {
    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: var(--beige);
}

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

.contact-content {
  margin-top: 48px;
  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: 38px;
}

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

.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(--orange2);
}
@media (hover: hover){
  .c-form__label-text:hover {
    cursor: pointer;
  }
}

.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: 17px 14px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}

.c-form__input-text::placeholder,
.c-form__textarea::placeholder {
  font-weight: 400;
  color: var(--gray);
}

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

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

.c-button {
  padding: 23px 48px;
  border-radius: 60px;
  background-color: var(--orange1);
  filter: drop-shadow(0px 4px 4px rgba(0,0,0,0.25));
  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: 100%;
    max-width: 350px;
    padding: 11px 5px;
    text-align: center;
    line-height: 1.5;
  }

}

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

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

}





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

.company {
  padding-top: 85px;
  padding-bottom: 100px;
}

.company .section-title{
  padding-bottom: 17px;
}

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

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

}