@charset "utf-8";

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

:root {
  --NotoSansJP: "Noto Sans JP", sans-serif;
  --Lato: "Lato", sans-serif;
}


/* 色 */
:root {
  --black: #333333;
  --purple: #501AA4;
  --deepblue: #30427E;
  --skyblue: #8DDFFF;
  --orange02: #FF8517;
  --orange03: #FEB101;
  --red: #ED0101;
  --yellow: #FFE628;
}




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

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

.body {
  font-family: var(--NotoSansJP);
  line-height: 1.5;
  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: block;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

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



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

.common-inner {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 20px;
}





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

.section-title{
  font-size: 36px;
  font-weight: 500;
  line-height: calc(65/36);
  text-align: center;
  letter-spacing: 0.03em;
}

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

  .section-title{
    font-size: 28px;
    line-height: 1.5;
  }
}

.linebreak{
  display: inline-block;
}

/********************/
/* テキストカラー */
/********************/
.text--purple{
  color: var(--purple);
}

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

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

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



/********************/
/* 視覚的非表示 */
/********************/

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  z-index: 5000;
  display: flex;
  align-items: center;
}

.header__upper-text{
  font-size: min(calc(100vw / 1200 * 14), 14px);
  font-weight: 500;
  line-height: calc(17 / 14);
  color: #393636;
}

.header__inner {
  max-width: 1440px;
  width: 100%;
  padding-block: 12px 9px;
  padding-left: min(calc(100vw / 1440 * 45), 45px);
  padding-right: min(calc(100vw / 1440 * 45), 45px);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  margin-top: -5px;
  width: min(calc(100vw / 1200 * 131), 131px);
  height: auto;
  aspect-ratio: 131 / 47;
  position: relative;
  z-index: 9999;
}

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

.header__menu {
  height: 100%;
  display: flex;
}

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

.header__nav-item {
  height: 100%;
}

.header__nav-link {
  height: 100%;
  display: inline-block;
  font-weight: 700;
  font-size: min(calc(100vw / 1200 * 16), 16px);
  line-height: 1.8;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-link--contact{
  margin-left: min(calc(100vw / 1440 * 110), 110px);
  color: #fff;
  padding-block: min(calc(100vw / 1000 * 10), 10px);
  background: linear-gradient(45deg, #470B9F 0%, #8777C0 55.41%, #6272A3 100%);
  width: min(calc(100vw / 1200 * 159), 159px);
  border-radius: 23px;
}

.hamburger {
  display: none;
}


@media screen and (max-width: 1300px) {
  .header__nav-link--contact{
    margin-left: 0;
  }
}

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

  .header {
    height: 72px;
  }
  .header:has(.hamburger.is-active){
    background-color: #fff
  }

  .header__upper-text{
    font-size: min(calc(100vw / 375 * 12), 12px);
    line-height: calc(20/12);
  }

  .header__inner {
    padding-block: 7px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .header__logo {
    width: 110px;
    aspect-ratio: 110/40;
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    margin-top: 72px;
    background-color: #EFF8FF;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
  }
  .header__menu.is-active {
    opacity: 1;
    visibility: visible;
  }
  .header__menu::before {
    position: absolute;
    bottom: calc(100% - 1px);
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 72px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  }

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

  .header__nav-list {
    width: 100%;
    height: auto;
    padding: min(calc(100vh / 812 * 53),53px) 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .header__nav-item {
    width: 100%;
    padding-left: 23px;
    border-bottom: 1px solid #d9d9d9;
  }
  .header__nav-item:not(:first-child) {
    margin-top:  min(calc(100vh / 812 * 24),24px);
  }

  .header__nav-link {
    font-size:  min(calc(100vh / 812 * 20),20px);
    line-height: 1.2;
    padding-block:  min(calc(100vh / 812 * 12),12px) min(calc(100vh / 812 * 11),11px);
    padding-inline: 24px;
    width: fit-content;
    position: relative;
  }
  .header__nav-link::before{
    position: absolute;
    display: block;
    content: "";
    width: 11px;
    height: 12px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--deepblue);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
  }

  .hamburger {
    display: block;
    position: fixed;
    top: 16px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 14px 11px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 9999;
    background: linear-gradient(to top right, #470B9F 0%, #8777C0 55%, #6272A3 100%);;
  }

  .hamburger__line-zone {
    display: block;
    width: 18px;
    height: 12px;
    position: relative;
  }

  .hamburger__line {
    display: inline-block;
    position: absolute;
    left: 0;
    content: "";
    width: 18px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
  }
  .hamburger__line:nth-child(1) {
    top: 0;
  }
  .hamburger__line:nth-child(2) {
    top: 5px;
  }
  .hamburger__line:nth-child(3) {
    top: 10px;
  }
  .hamburger.is-active .hamburger__line:nth-child(1) {
    top: 5px;
    transform: rotate(-45deg);
  }
  .hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active .hamburger__line:nth-child(3) {
    top: 5px;
    transform: rotate(45deg);
  }

}

@media screen and (max-width: 374.98px) {
  .header__nav-list {
    padding: min(calc(100vh / 812 * 53),53px) 15px  min(calc(100vh / 812 * 41),41px);
  }
}

@media screen and (max-width: 767.98px) and (max-height: 750px) {
  .header__nav-list{
    padding: 15px 15px;
  }
}

.main{
  margin-top: 80px;
}

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





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

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

  .floating-body.cta-body{
    padding-block: 10px 20px;
    padding-inline: min(calc(100vw / 550 * 20),20px) ;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .floating-body .cta-body__buttonText{
    font-size: min(calc(100vw / 550 * 20),20px);
  }

  .floating-body .cta-body__buttonText-grad01{
    font-size: min(calc(100vw / 550 * 28),28px);
  }

  .floating-body .cta-body__buttonList{
    flex-direction: initial;
    column-gap: calc(100% /720 * 30);
  }

.floating-body .cta-body__buttonLink{
    font-size: min(calc(100vw / 550 * 20),20px);
    padding-block: 14px;
  }
}

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

  .floating-body .cta-body__buttonLink{
    padding-right: 5%;
  }

}



/*-------------------------------------
top-bg-area
-------------------------------------*/

.top-bg-area {
  position: relative;
  z-index: 1;
}

.top-bg-area::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #F0F0F0 20.74%, #E6DFEB 61.28%);
  opacity: 0.8;
  z-index: -1;
}



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

.fv{
  width: 100%;
  position: relative;
  padding-top: 42px;
  padding-bottom: 70px;
  overflow: hidden;
}

.fv__inner{
  max-width: 1180px;
  padding-inline: min(calc(100vw / 1440 * 40), 40px);
  margin-inline: auto;
}

.fv__container{
  display: flex;
  column-gap: min(calc(100vw / 1440 * 50), 50px);
  align-items: center;
}

.fv__text-container{
  flex: 1;
  position: relative;
  z-index: 1;
}
.fv__text-container::before {
  position: absolute;
  top: 64%;
  left: 40%;
  transform: translate(-50%, -50%);
  content: "";
  width: min(calc(100vw / 1440 * 892), 892px);
  height: auto;
  aspect-ratio: 2191 / 608;
  background-image: url(../image/fv/fv_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.fv__catch{
  font-size: min(calc(100vw / 1000 * 20), 20px);
  font-weight: 700;
  line-height: 1.8;
}
.fv__catch-line{
  margin-inline: 5px;
  display: inline-block;
  padding-inline: 5.5px;
  background: linear-gradient(to top right, #470B9F 0%, #8777C0 55.41%, #6272A3 100%);
  color: #fff;
}

.fv__titleZone{
  margin-top: min(calc(100vw / 1200 * 32), 32px);
}

.fv__title{
  font-weight: 700;
  font-size: min(calc(100vw / 1200 * 36), 36px);
  line-height: 1.53;
}

.fv__title-grad{
  font-size: min(calc(100vw / 1200 * 48), 48px);
  background: linear-gradient(to top right, #470B9F 0%, #8777C0 90%, #6272A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fv__title--middle{
  margin-top: 5px;
  display: inline-block;
  font-size: min(calc(100vw / 1200 * 46), 46px);
}

.fv__lead{
  margin-top: min(calc(100vw / 1200 * 50), 50px);
  font-size: min(calc(100vw / 1000 * 16), 16px);
  line-height: 2;
}

.fv__lead span{
  display: inline-block;
}

.fv__imageZone{
  margin-top: -70px;
  margin-inline: auto;
  max-width: 1266px;
  padding-inline: 20px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.fv__image{
  width: 246px;
}

.fv .cta{
  margin-top: -26px;
}

@media screen and (max-width: 1279.98px) {
  .fv__text-container::before {
    left: 45%;
  }
}

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

  .fv{
    padding-block: 38px 58px;
  }
  .fv__inner{
    padding-inline: 20px;
  }
  .fv__container{
    flex-direction: column;
  }
  .fv__text-container{
    width: 100%;
  }

  .fv__catch{
    font-size: min(calc(100vw / 375 * 18), 18px);
    line-height: 1.5;
  }

  .fv__catch-line{
    margin-top: 4px;
    padding-inline: 4px;
  }

  .fv__catch span {
    display: inline-block;
  }

  .fv__text-container::before{
    top: 59%;
  }

  .fv__titleZone{
    margin-top: 20px;
    padding-block: 15px 10px;
    position: relative;
    z-index: 1;
  }

  .fv__title{
    font-size: min(calc(100vw / 375 * 20), 20px);
  }
  .fv__title--middle{
    font-size: min(calc(100vw / 375 * 25), 25px);
  }
  .fv__title-grad{
    font-size: min(calc(100vw / 375 * 25), 25px);
  }
  .fv__lead{
    margin-top: 17px;
    text-align: left;
    font-size: min(calc(100vw / 375 * 15), 15px);
    line-height: 1.8;
  }

  .fv__image{
    margin-top: 0;
    margin-right: -50px;
    width: calc(100% * 162/375);
    aspect-ratio: 162/123;
  }

  .fv .cta{
    margin-top: 16px;
  }

}

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

.fv__image{
  margin-right: 0;
}

}




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

.cta__inner.common-inner{
  max-width: 1303px;
  padding-inline: 100px;
}

.cta__body{
  width: calc(100% - 4px);
  margin-left: 2px;
  margin-top: -2px;
  background-color: #EAE4EE;
  border: 1px solid #929292;
  border-radius: 0 0 10px 10px;
  padding: min(calc(100vw / 1000 * 24), 24px) 100px min(calc(100vw / 1000 * 32), 32px);
  position: relative;
}
.cta1 .cta__body{
  background-color: #fff;
  padding-bottom: 48px;
}
.cta__body::after{
  content: "";
  position: absolute;
  right: -9%;
  bottom: -7%;
  width: min(calc(100vw / 1000 * 247), 247px);
  aspect-ratio: 494 / 445;
  background-image: url(../image/cta/cta_image.webp);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.cta1 .cta__body::after{
  bottom: -43%;
}

.cta__badge{
  position: relative;
  z-index: 1;
  background-color: #333;
  padding: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  font-feature-settings: "palt";
}

.cta__lead{
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.5;
}

.cta__note{
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 16px;
}

.cta-body__buttonLink--document::before{
  display: none;
}

.cta-body__buttonList {
  display: flex;
  column-gap: min(calc(100vw / 1440 * 70), 70px);
  justify-content: center;
  align-items: flex-end;
}

.cta-body__buttonText{
  font-size: min(calc(100vw / 1000 * 16), 16px);
  font-weight: 700;
  line-height: calc(19/16);
  position: relative;
  margin-inline: auto;
  width: fit-content;
}
.cta-body__buttonText::before,
.cta-body__buttonText::after{
  position: absolute;
  top: 50%;
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  background-color: #333;
}
.cta-body__buttonText::before{
  left: -3px;
  transform: rotate(-44deg) translateY(-50%);
}
.cta-body__buttonText::after{
  right: 0;
  transform: rotate(43deg) translateY(-50%);
}

.cta-body__buttonText-grad01 {
  font-family: var(--Lato);
  font-size: min(calc(100vw / 1000 * 26), 26px);
  line-height: calc(31 / 26);
  background: linear-gradient(to top right, #470B9F 0%, #8777C0 55%, #6272A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-body__buttonText-grad02 {
  font-family: var(--Lato);
  background: linear-gradient(to top right, #470B9F 0%, #8777C0 90%, #6272A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-body__buttonText--orange{
  color: #FDA502;
}
.cta-body__buttonText--purple{
  color: var(--skyblue);
}
.cta-body__buttonText--large{
  font-family: var(--Lato);
  font-size: min(calc(100vw / 1000 * 26), 26px);
  line-height: calc(19/26);
}

.cta-body__buttonLink {
  margin-top: 5px;
  padding-block: min(calc(100vw / 1000 * 16), 16px) ;
  border-radius: 35px;
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 20), 20px);
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #fff;
  width: min(calc(100vw / 980 * 340), 340px);
  padding-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
  position: relative;
}
.cta-body__buttonLink::after{
  position: absolute;
  content: "";
  display: block;
  width: 11px;
  height: 12px;
  right: calc(100% / 340 * 40);
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transition: all 0.3s;
}
.cta-body__buttonLink--form::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  transition: all 0.3s;
  background: linear-gradient(to top right, #470B9F 0%, #8777C0 55%, #6272A3 100%);
}
.cta-body__buttonLink--form::after {
  background-color: #fff;
}
@media (hover: hover) {
  .cta-body__buttonLink--form:hover {
    opacity: 1;
    color: #501AA4;
    background-color: #fff;
  }
  .cta-body__buttonLink--form:hover::before {
    opacity: 0;
  }
  .cta-body__buttonLink--form:hover.cta-body__buttonLink::after{
    background-color: #501AA4;
  }
}

.cta-body__buttonLink--document {
  color: #333;
  background-color: #fff;
  border: 1px solid #333;
  padding-block: min(calc(100vw / 1000 * 15), 15px) ;
  position: relative;
}
.cta-body__buttonLink--document::after{
  right: calc(100% / 340 * 20);
}

@media (hover: hover) {
  .cta-body__buttonLink--document:hover {
    opacity: 1;
    color: #fff;
    background-color: #333;
  }
  .cta-body__buttonLink--document:hover.cta-body__buttonLink::after{
    background-color: #fff;
  }
}

@media screen and (max-width: 999.98px) {
  .fv .cta {
    margin-top: -10px;
  }
  .cta-body__buttonList{
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .cta__body::after {
    bottom: 7%;
  }
  .cta1 .cta__body::after {
    bottom: -25%;
  }
}

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

  .cta__body{
    padding: 22px 14px;
    border-radius: 5px;
  }
  .cta__body::after{
    display: none;
  }
  .cta__badge{
    font-size: min(calc(100vw / 375 * 15), 15px);
    padding: 10px 8px;
  }

  .cta__inner.common-inner{
    padding-inline: 15px;
  }

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

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

  .cta-body__buttonText{
    font-size: min(calc(100vw / 375 * 15),15px);
    line-height: calc(18/15);
  }
  .cta-body__buttonText--large{
  font-size: min(calc(100vw / 375 * 20),20px);
  line-height: 1.2;
  }

  .cta-body__buttonLink {
    padding-block: 16px;
    font-size: min(calc(100vw / 375 * 18),18px);
    width: 100%;
  }

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

  .cta-body__buttonLink--form::after,
  .cta-body__buttonLink--document::after {
    right: 5%;
  }

  .cta__lead{
    font-size: 15px;
  }

  .fv .cta{
    margin-top: 42px;
  }
}

/*-------------------------------------
ヘッダーCTA（SP専用・スコープ限定）
-------------------------------------*/

@media screen and (max-width: 767.98px) {
  .header-cta .cta__body {
    border-radius: 0 0 5px 5px;
  }
  .header-cta .cta-body__buttonText-grad01 {
    font-size: min(calc(100vw / 375 * 22), 22px);
  }
}

/*-------------------------------------
支援サービス
-------------------------------------*/

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

.service-inner.common-inner{
  max-width: 1021px;
}

.service__title{
  text-align: center;
  font-size: 36px;
  line-height: calc(62/36);
  font-weight: 700;
}
.service__title-orange{
  margin-left: 6px;
  display: inline-block;
  background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
  color: #fff;
  padding-left: 3px;
  letter-spacing: -0.1em;
}

.service__textZone{
  margin-top: 23px;
  text-align: center;
}

.service__text{
  font-weight: 500;
  font-size: 20px;
}
.service__text-bold{
  font-weight: 700;
}
.service__text:not(:first-child){
  margin-top: 23px;
}

.service__cards{
  margin-top: 50px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.service__cards::before{
  position: absolute;
  content: "";
  top: 51%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: min(calc(100vw / 1150 * 1095),1095px);
  height: min(calc(100vw / 1150 * 304),304px);
  background-image: url(../image/service/service_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.service__card{
  width: 300px;
  min-height: 286px;
  padding: 12px;
  background-color: #fff;
  border-radius: 10px;
}

.service-card__image{
  width: 70px;
  aspect-ratio: 1/1;
  margin-inline: auto;
}

.service-card__title{
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.service-card__text{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.service__bottom01 {
  margin-top: 50px;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

.service__bottom01 span {
  display: inline-block;
}

.service__bottom-big {
  font-size: 24px;
}

.service__bottom-grad {
  display: inline-block;
  background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

.service__bottom02 {
  margin-top: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
}


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

  .service__cards{
    gap: 24px 30px;
  }

}

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

  .service{
    padding-block: 12px 48px;
  }

  .service__title{
    font-size: 28px;
    line-height: 1.5;
  }

  .service__textZone{
    margin-top: 20px;
    text-align: left;
  }

  .service__text{
    font-size: 16px;
  }
  .service__text:not(:first-child){
    margin-top: 0;
  }

  .service__cards{
    margin-top: 30px;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
  }
  .service__cards::before{
    top: 100%;
    transform: translateX(-50%);
  }

  .service__card{
    width: 100%;
    max-width: 400px;
    min-height: auto;
    padding-bottom: 20px;
  }
  .service__card:nth-child(4){
    margin-right: 0;
  }
  .service__card:nth-child(5){
    margin-left: 0;
  }

  .service-card__text{
    margin-top: 8px;
  }

}

@media screen and (max-width: 374.98px) {
  .service__title{
    font-size: 24px;
  }
}


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

.problem{
  margin-top: -1px;
  padding-top: 28px;
  padding-bottom: 74px;
}

.problem .common-inner {
  max-width: 1188px;
}

.problem__body {
  padding-right: 48px;
  position: relative;
}
.problem__body::before{
  position: absolute;
  content: "";
  display: block;
  bottom: -10px;
  right: 0;
  width: calc(100% / 1100 * 268);
  height: auto;
  aspect-ratio: 268/243;
  background-image: url(../image/problem/problem_image.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.problem__container{
  width: 100%;
  background-color: #F2F2F2;
  border-radius: 10px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.1));
  position: relative;
}

.problem__title{
  padding-block: 23px 17px;
  padding-inline: 30px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  background-color: var(--black);
  color: #fff;
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.problem__title--big{
  margin-right: 4px;
  font-size: 36px;
}
.problem__title::before{
  position: absolute;
  content: "";
  width: 54px;
  height: 19px;
  background-color: var(--black);
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}
.problem__title-linebreak{
  display: inline-block;
}

.problem__list{
  padding-block: 38px 26px;
  padding-inline: 30px;
  margin-inline: auto;
  max-width: 802px;
}

.problem-item{
  padding-bottom: 24px;
}
.problem-item:not(:first-child){
  border-top: 1px solid #cacaca;
  padding-top: 23px;
}

.problem-item__titleZone{
  display: flex;
  align-items: center;
}

.problem-item__title{
  flex: 1;
  font-size: 20px;
  font-weight: 700;
}

.problem-item__circle{
  margin-right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--black);

}
.problem-item__circle::before,
.problem-item__circle::after{
  position: absolute;
  content: "";
  display: block;
  background-color: #fff;
  transform: rotate(45deg);
}
.problem-item__circle::before{
  width: 2px;
  height: 10px;
}
.problem-item__circle::after{
  width: 10px;
  height: 2px;
}

.problem-item__text{
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.problem-item__text--red{
  font-weight: 700;
  color: var(--red);
}
.problem-item:nth-child(1) .problem-item__text{
  padding-right: 42px;
}
.problem-item:nth-child(2) .problem-item__text,
.problem-item:nth-child(3) .problem-item__text{
  padding-right: 63px;
}

.problem__bottom {
  margin-top: 96px;
  position: relative;
}
.problem__bottom::before {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 320px;
  height: 55px;
  background-color: #AC45B2;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.problem__bottom-text {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
}
.problem__bottom-text:not(:first-child) {
  margin-top: 1px;
}

.problem__bottom-grad {
  display: inline-block;
  background: linear-gradient(to top right, #470B9F 0%, #8777C0 55%, #6272A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

  .problem{
    padding-top: 0;
  }

  .problem__body{
    padding-right: 0;
  }
  .problem__body::before{
    width: 140px;
  }

  .problem__title--big{
    font-size: 26px;
  }

  .problem__container{
    padding-bottom: 70px;
  }

  .problem__title{
    padding-block: 10px;
    font-size: 20px;
  }

  .problem__list{
    padding-inline: 15px;
  }

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

  .problem-item:nth-child(1) .problem-item__text,
  .problem-item:nth-child(2) .problem-item__text,
  .problem-item:nth-child(3) .problem-item__text{
    padding-right: 0;
  }

  .problem-item__text--red{
    font-size: 16px;
  }

  .problem-item__text:nth-child(3){
    margin-top: 0;
  }

  .problem__bottom::before {
    top: -65px;
    width: 150px;
    height: 30px;
  }

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

}

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

  .problem__title{
    padding-inline: 15px;
    font-size: 19px;
  }

}




/*-------------------------------------
大転換期
-------------------------------------*/

.transition{
  padding-block: min(calc(100vw / 1000 * 60), 60px);
}

.transition .common-inner {
  max-width: 1340px;
}

.transition__body {
  padding-inline: 102px;
  position: relative;
}
.transition__body::before{
  position: absolute;
  content: "";
  display: block;
  bottom: -25px;
  right: 0;
  width: calc(100% / 1100 * 222);
  height: auto;
  aspect-ratio: 268/243;
  background-image: url(../image/problem/problem_image.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.transition__container{
  width: 100%;
  background-color: #F2F2F2;
  border-radius: 10px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.1));
  position: relative;
}

.transition__title{
  padding-block: 23px 17px;
  padding-inline: 30px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  background-color: var(--black);
  color: #fff;
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.transition__list{
  padding-block: 30px 14px;
  padding-inline: 30px;
  margin-inline: auto;
  max-width: 802px;
}

.transition-item{
  padding-bottom: 24px;
}
.transition-item:not(:first-child){
  border-top: 1px solid #555;
  padding-top: 23px;
}

.transition-item__title{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.transition-item__text{
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

.transition-item__accent{
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
}

.transition__bottom{
  margin-top: 42px;
  text-align: center;
}

.transition__bottom-text01{
  display: inline-block;
  background: linear-gradient(to top right, #470B9F 0%, #8777C0 55%, #6272A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
}

.transition__bottom-text02{
  margin-top: 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}


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

  .transition__title{
    padding-block: 10px;
    font-size: 20px;
  }

  .transition__list{
    padding-inline: 15px;
    padding-bottom: 60px;
  }

  .transition-item__title{
    font-size: 18px;
  }

  .transition__body{
    padding-inline: 0;
  }
  .transition__body::before{
    bottom: -14px;
    right: 0;
    width: 120px;
  }

  .transition__bottom-text01{
    font-size: min(calc(100vw / 375 * 20), 20px);
  }
  .transition__bottom-text02{
    font-size: min(calc(100vw / 375 * 18), 18px);
  }

}



.cta2 {
  margin-top: 10px;
}



/*-------------------------------------
solution
-------------------------------------*/

.solution{
  padding-block: 46px 131px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.solution::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 2880 / 1452;
  background-image: url(../image/solution/solution_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.solution-inner.common-inner{
  max-width: 1101px;
}

.solution__title{
  font-size: min(calc(100vw / 1000 * 36), 36px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.solution__title--top {
  display: inline-block;
  margin-bottom: 20px;
}
.solution__title--bgWhite{
  color: var(--purple);
  position: relative;
  z-index: 1;
}
.solution__title--bgWhite::before{
  position: absolute;
  top: -6%;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 116%;
  background-color: #fff;
  z-index: -1;
}
.solution__title--small{
  font-size: min(calc(100vw / 1000 * 32), 32px);
}

.solution__textZone{
  margin-top: 52px;
  text-align: center;
  line-height: 1.5;
  color: #fff;
}
.solution__text01{
  font-size: 20px;
}
.solution__text01:not(:first-child){
  margin-top: 30px;
}
.solution__text02{
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 30), 30px);
}
.solution__text03{
  margin-top: 50px;
  font-size: 24px;
}
.solution__text03-bold{
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}
.solution__text03-line{
  background: #fff;
  color: var(--purple);
  display: inline-block;
  font-weight: 700;
  padding: 4px 6px;
  margin-right: 4px;
  border: 2px solid var(--purple);
}

@media screen and (min-width: 1441px) {
  .solution{
    aspect-ratio: 1440 / 719;
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 1439.98px) {
  .solution::before {
    width: 1440px;
  }
}

@media screen and (max-width: 767.98px) {
  .solution{
    padding-block: 42px 100px;
    min-height: 790px;
  }
  .solution__title--top{
    margin-bottom: 7px;
  }
  .solution__title{
    font-size: min(calc(100vw / 375 * 20) , 20px);
    line-height: 1.5;
  }
  .solution__title--small{
    font-size: min(calc(100vw / 375 * 18) , 18px);
  }
  .solution__textZone{
    margin-top: 20px;
    text-align: left;
  }
  .solution__text01{
    font-size: 15px;
  }
  .solution__text02{
    font-size: 20px;
  }
  .solution__text03{
    font-size: 17px;
  }
}

@media screen and (max-width: 374.98px) {
  .solution__title,
  .solution__title--small{
    font-size: 18px;
  }
  .solution__text01{
    font-size: 14px;
  }
  .solution__text02{
    font-size: 18px;
  }
  .solution__text03{
    font-size: 15px;
  }
}



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

.reason {
  margin-top: 70px;
  background-color: #F2F2F2;
  padding-top: 70px;
  padding-bottom: 110px;
}

.reason .common-inner {
  max-width: 1021px;
}

.reason__title {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
}

.reason__list {
  margin-top: 30px;
}

.reason-item {
  border-radius: 10px;
  background-color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.reason-item:not(:first-child) {
  margin-top: 14px;
}

.reason-item__title {
  width: fit-content;
  display: inline-block;
  background: linear-gradient(to top right, #470B9F 0%, #8777C0 55%, #6272A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}

.reason-item__body {
  margin-top: 8px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reason-item__body-item {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}
.reason-item__body-item::before {
  position: absolute;
  top: 9px;
  left: 6px;
  content: "";
  display: block;
  background-color: #333;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.reason-item__body-text {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

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

  .reason {
    margin-top: 40px;
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .reason__title {
    font-size: 24px;
    line-height: 1.4;
  }

  .reason__list {
    margin-top: 20px;
  }

  .reason-item {
    padding: 18px 16px;
  }
  .reason-item:not(:first-child) {
    margin-top: 10px;
  }

  .reason-item__title {
    font-size: 18px;
    line-height: 1.5;
  }

  .reason-item__body {
    padding-left: 8px;
  }

}



/*-------------------------------------
サービス内容と料金
-------------------------------------*/

.plan{
  padding-block: 90px 80px;
  background-color: #EAE4EE;
}

.plan .common-inner {
  max-width: 1021px;
}

.plan__title{
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px){
  .plan__title{
    font-size: 24px;
  }
}

.plan__table{
  margin-top: 32px;
  width: 100%;
}
@media screen and (max-width: 767.98px){
  .plan__table{
    margin-top: 28px;
  }
}

.plan-table__label{
  background-color: var(--black);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 30px;
  width: 220px;
  vertical-align: middle;
  text-align: left;
}
tr:not(:first-child) .plan-table__label {
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767.98px){
  .plan-table__label{
    width: 80px;
    font-size: 13px;
    padding: 12px 8px;
  }
}

.plan-table__value{
  background-color: #fff;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 16px 10px;
  vertical-align: middle;
}
tr:not(:first-child) .plan-table__value {
  border-top: 1px solid #C3C3C3;
}
@media screen and (max-width: 767.98px){
  .plan-table__value{
    font-size: 13px;
    padding: 12px 14px;
  }
}

.plan__list{
  margin-top: 48px;
  padding-inline: min(calc(100vw / 1440 * 42), 42px);
}

.plan-item:not(:first-child){
  margin-top: 12px;
}

.plan-item__heading{
  padding: 6px 14px;
  border-radius: 10px 10px 0 0;
  background-color: var(--purple);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 767.98px){
  .plan-item__heading{
    font-size: 16px;
    padding: 12px 16px;
  }
}

.plan-item__body{
  background-color: #fff;
  padding: 8px 24px 26px;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 767.98px){
  .plan-item__body{
    padding: 16px;
  }
}

.plan-item__text{
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 28px;
}
.plan-item__text::before{
  position: absolute;
  top: 16px;
  left: 12px;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #333;
  border-radius: 50%;
}
@media screen and (max-width: 767.98px){
  .plan-item__text{
    font-size: 15px;
    padding-left: 16px;
  }
  .plan-item__text::before {
    top: 13px;
    left: 4px;
  }
}

.plan__note{
  margin-top: 32px;
  padding-inline: min(calc(100vw / 1440 * 60), 60px);
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 767.98px){
  .plan__note{
    margin-top: 24px;
    font-size: 15px;
  }
}

.cta3 {
  margin-block: 70px;
}


/*-------------------------------------
大切なお話
-------------------------------------*/

.notice{
  padding-block: 132px 60px;
  background-color: #F4F4F4;
}

.notice__container{
  padding-block: 100px 110px;
  padding-inline: min(calc(100vw / 1440 * 162), 162px);
  border-radius: 10px;
  background-image: url(../image/notice/notice_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.notice__container::before,
.notice__container::after{
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.notice__container::before{
  right: 0;
  top: calc(100% - 115px);
  background-image: url(../image/notice/notice_image.webp);
  width: min(calc(100vw / 1024 * 249),249px);
  aspect-ratio: 249/184;
  z-index: 1;
}
.notice__container::after{
  left: 50%;
  top: calc(100% - 80px);
  transform: translateX(-50%);
  background-image: url(../image/double-arrow.svg);
  width: 76px;
  height: auto;
  aspect-ratio: 76/59;
}

.notice__leadZone{
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  width: 557px;
  padding-block: 24px 20px;
  padding-inline: 15px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  overflow: visible;
  z-index: 1;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.notice__leadZone::after{
  position: absolute;
  display: block;
  content: "";
  width: 64px;
  height: 26px;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: -1;
}
.js-fadeUp.notice__leadZone{
  transform: translate(-50% , 50px);
}
.js-fadeUp.is-active.notice__leadZone{
  opacity: 1;
  transform: translate(-50% , 0);
}

.notice__lead--small{
  font-size: min(calc(100vw / 500 * 20),20px);
}
.notice__lead--large{
  font-size: min(calc(100vw / 500 * 26),26px);
}
.notice__lead-dot{
  background-image: radial-gradient(circle at center, #fff 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 0.3em; /* 縦方向の位置調整 */
}

.notice__title{
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
  text-align: center;
}
.notice__text{
  text-align: center;
  font-size: 20px;
  color: #fff;
}
.notice__text1,
.notice__text3{
  margin-top: 25px;
}
.notice__text2{
  margin-top: 12px;
}
.notice__text--yellow{
  color: var(--yellow);
  font-weight: 700;
}

.notice__listZone{
  margin-top: 12px;
  margin-inline: auto;
  padding: 8px 12px;
  background-color: #F2F2F2;
  width: 100%;
  max-width: 507px;
  border: 1px solid #77A4DB;
}

.notice__item{
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
}


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

  .notice__container{
    padding-inline: 20px;
  }
  .notice__container::before{
    top: calc(100% - 80px);
  }

  .notice__text{
    font-size: 16px;
  }
}

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

  .notice{
    padding-block: 100px 60px;
  }

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

  .notice__container{
  padding-block: min(calc(100vw / 500 * 98),98px) 105px;
  }
  .notice__container::before{
    top: auto;
    bottom: 0;
    right: 5px;
    width: min(calc(100% / 375 * 145),145px);
  }
  .notice__container::after{
    width: 60px;
  }

  .notice__leadZone{
  width: 90%;
  padding-block: 15px;
  }

  .notice__title{
    font-size: min(calc(100vw / 500 * 28),28px);
    line-height: 1.5;
  }
  .notice__text1, .notice__text3{
    margin-top: 30px;
  }

  .notice__text{
    text-align: left;
  }

  .notice__item{
    font-size: 14px;
  }

}

@media screen and (max-width: 374.98px) {
  .notice__title{
    font-size: 19px;
  }

  .notice__lead--small{
  font-size: 16px;
  }
  .notice__lead--large{
    font-size: 17px;
  }

}



/*-------------------------------------
無料相談
-------------------------------------*/

.consult{
  margin-top: -1px;
  background-color: #F4F4F4;
  padding-block: 30px 90px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 66px), 50% 100%, 0 calc(100% - 66px));
}

.consult__title{
  text-align: center;
  font-size: 32px;
  line-height: calc(58/32);
  font-weight: 700;
}
.consult__title-grad{
  display: inline-block;
  padding-inline: 4px;
  background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
  color: #fff;
}
.consult__title span {
  display: inline-block;
  margin-inline: 7px;
}

.consult__contents{
  margin-top: 25px;
  padding-right: min(calc(100vw / 1440 * 28), 28px);
  display: flex;
  column-gap: min(calc(100vw / 1440 * 59), 59px);
}

.consult__image{
  width: 46%;
}

.consult__textZone{
  flex: 1;
}

.consult__text{
  font-size: 18px;
  line-height: 1.5;
}
.consult__text-bold {
  font-weight: 700;
}

.consult__block {
  margin-top: 33px;
  background-color: #fff;
  padding: 25px 15px;
  font-size: 18px;
  line-height: 1.5;
}

.consult__block-item {
  position: relative;
  padding-left: 25px;
}
.consult__block-item::before {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 13px;
  left: 8px;
  background-color: var(--black);
}

.consult__bottom{
  margin-top: 24px;
}

.consult__bottom-tex01{
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.consult__bottom-tex02{
  margin-top: 12px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.cta4{
  margin-top: 66px;
}

@media screen and (max-width: 1200px) {
  .consult__contents{
    padding-right: 0;
  }
}

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

  .consult{
    padding-block: 25px 100px;
  }

  .consult__contents{
    margin-top: 20px;
  }

  .consult__image{
    width: 100%;
  }

  .consult__title{
    font-size: clamp(20px,calc(100vw / 550 * 28),28px);
    line-height: 1.5;
  }

  .consult__text{
    font-size: 16px;
  }

  .consult__block{
    font-size: 16px;
  }

  .consult__contents{
    flex-direction: column;
    row-gap: 20px;
  }

  .consult__bottom-tex01{
    font-size: 21px;
  }

  .consult__bottom-tex02{
    font-size: 16px;
  }

  .cta4{
    padding-block: 30px;
  }

}

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

  .consult__title{
    letter-spacing: -0.09em;
  }
}






/*-------------------------------------
staff
-------------------------------------*/

.staff{
  padding-top: 70px;
  padding-bottom: 100px;
}

.staff__inner.common-inner{
  max-width: 1022px;
}

.staff__lead{
  font-size: 40px;
  line-height: calc(62/40);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff__lead-grad{
  font-size: 36px;
  background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
  color: #fff;
  line-height: calc(62/36);
  padding-inline: 2px;
  margin-right: 4px;
}

.staff__text{
  margin-top: 23px;
  text-align: center;
  font-size: 20px;
}

.staff__container{
  margin-top: 48px;
}

.staff-card{
  display: flex;
  align-items: center;
  background-color: #fff;
  background-image:
    linear-gradient(to right, rgba(217,217,217,0.5) 0.6px, transparent 0.6px),
    linear-gradient(to bottom, rgba(217,217,217,0.5) 0.6px, transparent 0.6px);
  background-size: 20px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 24px 22px;
}
.staff-card:not(:first-child){
  margin-top: 24px;
}

.staff-card__image{
  flex-shrink: 0;
  width: 200px;
}

.staff-card__body{
  flex: 1;
  margin-left: 36px;
}

.staff-card__nameZone{
  position: relative;
  display: flex;
  align-items: baseline;
  padding-left: 22px;
}
.staff-card__nameZone::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to right, var(--orange02), var(--orange03));
  z-index: 0;
}

.staff-card__role{
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.staff-card__name{
  margin-left: 16px;
  font-weight: 500;
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.staff-card__text{
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.staff__bottom{
  margin-top: 48px;
}

.staff-bottom__title{
  font-weight: 700;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.staff-bottom__text{
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px){
  .staff-bottom__title{
    font-size: 18px;
  }
  .staff-bottom__text{
    font-size: 14px;
  }
}

@media screen and (max-width: 767.98px){
  .staff-card{
    flex-direction: column;
    padding: 20px;
  }
  .staff-card__image{
    width: 180px;
  }
  .staff-card__body{
    margin-left: 0;
    margin-top: 16px;
  }
  .staff-card__name{
    font-size: 20px;
  }
  .staff-card__text{
    font-size: 14px;
  }
}


@media screen and (max-width: 767.98px) {
  .staff__lead{
    font-size: clamp(22px,calc(100vw / 600 * 28),28px);
    flex-wrap: wrap;
  }
  .staff__lead-grad{
    font-size: clamp(24px,calc(100vw / 600 * 32),32px);
  }
  .staff__text{
    margin-top: 8px;
    font-size: clamp(18px,calc(100vw / 700 * 22),22px)
  }

}






/*-------------------------------------
サービス導入までの流れ
-------------------------------------*/

.border-outer{
  padding-top: 102px;
  background-color: #F2F2F2;
  background-image:
    repeating-linear-gradient(0deg, rgba(135, 135, 135, 0.4) 0 0.5px, transparent 0.5px 30px ),
    repeating-linear-gradient(90deg, rgba(135, 135, 135, 0.4) 0 0.5px, transparent 0.5px 30px );
  background-repeat: repeat;
  background-attachment: fixed;
}

.step{
  padding-bottom: 70px;
}

.step__container{
  padding: 70px min(calc(100vw / 1440 * 110), 110px);
  background-color: #EAE4EE;
  border-radius: 10px;
}

.step__title{
  text-align: center;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  color: var(--purple);
}

.step__list{
  margin-top: 32px;
}

.step-item{
  position: relative;
}
.step-item:not(:first-child){
  margin-top: 72px;
}
.step-item:not(:last-child)::before{
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 18px;
  left: 50%;
  bottom: -48px;
  transform: translateX(-50%);
  clip-path: polygon(0 0 , 50% 100% , 100% 0);
  background-color: #555555;
}

.step-item__titleZone{
  padding-block: 20px;
  padding-inline: min(calc(100vw / 1024 * 106),106px) 20px;
  position: relative;
  background-color: var(--purple);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.step-item__titleZone::before{
  position: absolute;
  content: "";
  display: block;
  width: calc(100% / 880 * 98);
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.step-item:nth-child(1) .step-item__titleZone::before{
  background-image: url(../image/step/step_image01.webp);
}
.step-item:nth-child(2) .step-item__titleZone::before{
  background-image: url(../image/step/step_image02.webp);
}
.step-item:nth-child(3) .step-item__titleZone::before{
  background-image: url(../image/step/step_image03.webp);
}
.step-item:nth-child(4) .step-item__titleZone::before{
  background-image: url(../image/step/step_image04.webp);
}

.step-item__number{
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  font-family: var(--Lato);
}

.step-item__title{
  margin-top: 4px;
  font-size: 20px;
  line-height: calc(36/20);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.step-item__textZone{
  padding: 24px 40px;
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.step-item__text{
  line-height: calc(29/16);
  letter-spacing: 0.04em;
}
.step-item__text--bold{
  font-weight: 700;
}

.step-item__link{
  font-weight: 700;
  display: inline;
  color: #1C65BD;
  text-decoration-line: underline;
  text-underline-offset: 2px;
}


@media screen and (max-width: 1024px) {
  .step__container{
    padding: 70px 20px;
  }
}

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

  .border-outer{
    padding-top: 70px;
  }

  .step{
    padding-bottom: 40px;
  }

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

  .step__container{
    padding: 50px 20px;
  }

  .step__title{
    font-size: clamp(22px,calc(100vw / 600 * 28),28px);
  }
  .step-item__titleZone{
    padding-inline: min(calc(100vw / 375 * 75),75px) 20px;
  }
  .step-item__titleZone::before{
    width: min(calc(100vw / 375 * 70),70px);
  }

  .step-item__number{
    font-size: 16px;
  }

  .step-item__title{
    font-size: 18px;
    line-height: 1.4;
  }

  .step-item__textZone{
    padding: 20px 20px;
  }
}

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

  .step-item__title{
    letter-spacing: -0.01em;
  }

  .step-item__textZone{
    padding: 20px 15px;
  }
}


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

.faq{
  padding-bottom: 30px;
}

.faq-inner.common-inner{
  max-width: 880px;
}

.faq .section-title{
  color: var(--purple);
}

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

.accordion-item{
  background-color: #fff;
  border: 2px solid var(--purple);
  border-radius: 5px;
}

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

.accordion-button {
  display: block;
  width: 100%;
  padding: 32px 46px 30px 46px;
  position: relative;
  transition: all 0.3s;
}
.accordion-button::before {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  content: "";
  width: 18px;
  height: 2px;
  background-color: var(--purple);
  transition: all 0.3s;
}
.accordion-button::after {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(90deg);
  content: "";
  width: 18px;
  height: 2px;
  background-color: var(--purple);
  transition: all 0.3s;
}
.accordion-button.is-active::after {
  transform: translateY(-50%) rotate(0);
}

.accordion-flex {
  display: flex;
  align-items: center;
  gap: 24px;
}
.accordion-content .accordion-flex{
  align-items: flex-start;
  gap: 16px;
}

.accordion-en {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--purple);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding-bottom: 2px;
}

.accordion-a{
  font-weight: 700;
  font-size: 18px;
  line-height: calc(25/18);
  color: var(--purple);
}

.accordion-question,
.accordion-answer {
  flex: 1;
  transition: all 0.3s;
  font-size: 18px;
  line-height: calc(29/18);
}
.accordion-question{
  font-weight: 700;
  padding-right: 8px;
}

.accordion-content {
  width: 100%;
  padding: 26px 46px 34px 46px;
  position: relative;
}
.accordion-content::before{
  position: absolute;
  content: "";
  top: 2px;
  left: 50%;
  width: calc(100% * 746/836);
  height: 1px;
  transform: translateX(-50%);
  background-color: #999999;
}

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

.cta5{
  padding-block: 66px 70px;
}

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

  .faq{
    padding-block: 20px 60px;
  }

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

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

  .accordion-button {
    padding: 12px 30px 12px 15px;
  }

  .accordion-button::before {
    right: 11px;
    transform: unset;
    width: 15px;
  }
  .accordion-button::after {
    right: 11px;
    transform: rotate(90deg);
    width: 15px;
  }
  .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);
  }

  .accordion-content {
    padding: 15px 20px;
  }

  .cta5{
    padding-block: 60px;
  }

}

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

  .accordion-question {
    font-size: 16px;
  }

  .accordion-answer {
    font-size: 16px;
  }

}




/*-------------------------------------
代表者挨拶
-------------------------------------*/

.greeting{
  margin-top: 40px;
  margin-inline: auto;
  max-width: 1140px;
  padding-inline: 20px;
  padding-bottom: 100px;
}

.greeting__container{
  border: 1px solid #7E76B9;
  border-radius: 10px;
  background-color: #fff;
  padding: 50px min(calc(100vw / 1200 * 60), 60px);
  position: relative;
  z-index: 1;
}
.greeting__container::before{
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: min(calc(100vw / 1280 * 574), 574px);
  height: auto;
  aspect-ratio: 574/159;
  background-image: url(../image/greeting/greeting_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.greeting__title{
  font-weight: 500;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--purple);
}

.greeting__body{
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
}

.greeting__image{
  flex-shrink: 0;
  width: 150px;
}

.greeting__textZone{
  flex: 1;
  margin-left: 25px;
}

.greeting__text{
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.greeting__text:not(:first-child){
  margin-top: 24px;
}

.greeting__sign{
  margin-top: 24px;
  text-align: right;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767.98px){
  .greeting{
    margin-top: 10px;
  }
  .greeting__container{
    padding: 20px;
  }
  .greeting__body{
    flex-direction: column;
  }
  .greeting__image{
    width: 150px;
  }
  .greeting__textZone{
    margin-left: 0;
    margin-top: 16px;
  }
  .greeting__text{
    font-size: 14px;
  }
}


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

.company {
  padding-bottom: 70px;
}

.company-inner{
  max-width: 1014px;
  margin-inline: auto;
  padding-inline: 20px;
}

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

.company-list {
  display: flex;
  column-gap: 56px;
}

.company-title-zone {
  width: 196px;
  padding: 32px 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #d9d9d9;
}
.company-list:first-child .company-title-zone{
  padding: 30px 24px 32px;
  border-top: 2px solid #d9d9d9;
}

.company-data-zone {
  flex: 1;
  margin: 0;
  padding: 30px 40px 32px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #d9d9d9;
}
.company-list:first-child .company-data-zone{
  padding: 30px 40px 32px;
  border-top: 2px solid #d9d9d9;
}

.company-title,
.company-data {
  font-size: 16px;
  letter-spacing: 0.02em;
}
.company-title {
  font-weight: 700;
  color: #1C65BD;
}
.company-data{
  line-height: calc(26/16);
}


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

  .company {
    padding-block: 10px 60px;
  }

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

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

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

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

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

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

}

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

.footer{
  width: 100%;
  background-color: #333;
  padding-block: 46px 48px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.footer__inner{
  max-width: 1140px;
  padding-inline: 20px;
  margin-inline: auto;
}

.footer__menu{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo{
  width: min(calc(100vw / 1000 * 236), 236px);
  aspect-ratio: 236/68;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-link{
  display: block;
  width: 100%;
  padding: min(calc(100vw / 1000 * 14), 14px) min(calc(100vw / 1000 * 53.5), 53.5px);
}

.footer__nav-list{
  margin-top: -16px;
  display: flex;
  align-items: center;
  column-gap: min(calc(100vw / 1440 * 24), 24px);
}

.footer__nav-link{
  font-size: min(calc(100vw / 1000 * 16), 16px);
  font-weight: 700;
  color: #fff;
}

.footer__copy{
  margin-top: 49px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  line-height: calc(16/13);
}


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

  .footer__menu{
    flex-direction: column;
    row-gap: 24px;
  }

  .footer__logo{
    width: 236px;
  }

  .footer__logo-link{
    padding: 14px 53.5px;
  }
  .footer__nav-list{
    margin-top: 0;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
  }

  .footer__nav-link{
    font-size: 14px;
  }

}


/*-------------------------------------
FVフォーム
-------------------------------------*/

.fv__formArea{
  width: min(calc(100vw / 1200 * 430), 430px);
  min-width: 0;
  align-self: center;
  border-radius: 8px;
  background: linear-gradient(to top right, #470B9F 0%, #8777C0 55%, #6272A3 100%);
  padding: 2px;
  position: relative;
  z-index: 2;
}

.fv-form{
  background: #fff;
  border-radius: 7px;
  padding: 24px min(calc(100vw / 1200 * 24), 24px) 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fv-form__title{
  font-weight: 700;
  font-size: min(calc(100vw / 1000 * 14), 14px);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
  color: #501AA4;
}

.fv-form__body{
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.fv-form__field{
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fv-form__label{
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #1E1E1E;
}

.fv-form__required{
  color: #FF8D28;
  margin-left: 2px;
}

.fv-form__input{
  width: 100%;
  padding: 12px 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  outline: none;
  color: #1E1E1E;
  transition: border-color 0.2s;
  background-color: #fff;
}

.fv-form__input::placeholder{
  color: #B3B3B3;
}

.fv-form__select-wrap{
  position: relative;
}

.fv-form__select-wrap::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url(../image/fv/fv_icon.svg) no-repeat center / contain;
  pointer-events: none;
}

.fv-form__select{
  width: 100%;
  padding: 10px 32px 10px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}

.fv-form__select:not(:invalid){
  color: #1E1E1E;
}

.fv-form__select option:not([disabled]){
  color: #1E1E1E;
}

.fv-form__btn{
  margin-top: 12px;
  margin-inline: auto;
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 15px 12px;
  font-size: min(calc(100vw / 1000 * 14), 14px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(to top right, #470B9F 0%, #8777C0 55%, #6272A3 100%);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s;
}

@media (hover: hover){
  .fv-form__btn:hover{
    opacity: 0.85;
  }
}

@media screen and (max-width: 767.98px){
  .fv__formArea{
    width: 100%;
    margin-top: 28px;
  }
  .fv-form{
    padding-inline: 20px;
  }
  .fv-form__title{
    font-size: min(calc(100vw / 375 * 14), 14px);
  }
  .fv-form__btn{
    font-size: min(calc(100vw / 375 * 14), 14px);
  }
  .fv__imageZone{
    margin-top: -12px;
  }
}


/*-------------------------------------
サンクスページ
-------------------------------------*/

.thanks {
  padding-block: 70px 100px;
  background-color: #F4F4F4;
  min-height: calc(100svh - 80px - 180px);
  display: flex;
  align-items: center;
}

.thanks__inner {
  width: 100%;
  max-width: 700px;
}

.thanks__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--purple);
}

.thanks__body {
  margin-top: 32px;
  background-color: #fff;
  border-radius: 10px;
  padding: 48px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.thanks__text {
  font-size: 18px;
  line-height: 1.8;
}

.thanks__text + .thanks__text {
  margin-top: 8px;
}

.thanks__link {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.thanks__link-btn {
  padding: 16px 48px;
  background: linear-gradient(to top right, #470B9F 0%, #8777C0 55%, #6272A3 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 35px;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
  transition: opacity 0.3s;
}

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

  .thanks {
    padding-block: 50px 80px;
    min-height: calc(100svh - 72px - 210px);
  }

  .thanks__title {
    font-size: 24px;
  }

  .thanks__body {
    padding: 32px 20px;
  }

  .thanks__text {
    font-size: 16px;
  }

  .thanks__link-btn {
    font-size: 16px;
    padding: 16px 32px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

}
