@charset "utf-8";

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

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


/* 色 */
:root {
  --black: #333333;
  --blue: #1C65BD;
  --deepblue: #30427E;
  --skyblue: #8DDFFF;
  --orange1: #FD7202;
  --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--blue{
  color: var(--blue);
}

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

.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;
  width: 100%;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  z-index: 5000;
}

.header__upper{
  width: 100%;
  height: 20px;
  background-color: var(--deepblue);
  margin-inline: auto;
}

.header__upper-inner{
  max-width: 1440px;
  padding-left: min(calc(100vw / 1000 * 45), 45px);
  padding-right: min(calc(100vw / 1000 * 45), 45px);
  margin-inline: auto;
}

.header__upper-text{
  font-size: 14px;
  font-weight: 500;
  line-height: calc(20/14);
  color: #fff;
}

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

.header__logo {
  width: min(calc(100vw / 1440 * 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 / 1000 * 16), 16px);
  line-height: 1.8;
  color: var(--deepblue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-link--contact{
  margin-left: min(calc(100vw / 1440 * 198), 198px);
  color: #fff;
  background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
  width: min(calc(100vw / 1000 * 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-inner{
    padding-left: 15px;
    padding-right: 15px;
  }

  .header__upper-text{
    font-size: 12px;
    line-height: calc(20/12);
  }

  .header__inner {
    height: 52px;
    padding-block: 4px 8px;
    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: 24px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 14px 11px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 9999;
    background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 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: 90px;
}

@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--large{
    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--document::before{
    background-image: none;
  }

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

}



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

.fv{
  width: 100%;
  position: relative;
  padding-block: 92px 73px;
  background-color: #EFF8FF;
}
.fv::before{
  position: absolute;
  content: "";
  display: block;
  top: -18px;
  right: 0;
  width: calc(100% * 782/1440);
  background-image: url(../image/fv/fv_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 782/608;
}

.fv-pc,.fv-sp{
  position: relative;
}

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

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

.fv__text-container{
  width: calc(100% * 620/982);
}

.fv__catch{
  text-align: center;
  font-size: min(calc(100vw / 1000 * 20), 20px);
  font-weight: 700;
  line-height: 1.8;
}
.fv__catch-line{
  display: inline-block;
  padding-inline: 5.5px;
  background-color: var(--deepblue);
  color: #fff;
}

.fv__titleZone{
  margin-top: 16px;
  text-align: center;
}

.fv__title{
  font-size: min(calc(100vw / 1200 * 56), 56px);
  font-weight: 700;
  text-align: center;
}

.fv__title-grad{
  background: linear-gradient(91.02deg, #FF8717 52.48%, #FED401 104.16%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fv__title--middle{
  font-size: min(calc(100vw / 1200 * 46), 46px);
}
.fv__title--small{
  margin-top: 12px;
  display: block;
  font-size: min(calc(100vw / 1200 * 34), 34px);
  position: relative;
}
.fv__title--small::before,
.fv__title--small::after{
  position: absolute;
  content: "";
  display: block;
  width: calc(100% * 582/620);
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #BDB4B5;
}
.fv__title--small::before{
  top: -6px;
}
.fv__title--small::after{
  bottom: -6px;
}

.fv__title-block{
  margin-top: 10px;
  display: block;
}

.fv__lead{
  margin-top: 24px;
  text-align: center;
  font-size: min(calc(100vw / 1000 * 20), 20px);
  font-weight: 700;
}
.fv__lead--large{
  color: var(--orange1);
  font-size: min(calc(100vw / 1440 * 24), 24px);
  letter-spacing: -0.03em;
}

.fv__lead-dot{
  background-image: radial-gradient(circle at center, var(--orange1) 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 0.97em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 0.1em; /* 縦方向の位置調整 */
}

.fv__lead--thin{
  font-weight: 400;
  display: inline-block;
  margin-top: 3px;
}

.fv__image{
  margin-top: 71px;
  margin-right: -71px;
  width: calc(100% * 391/982);
  aspect-ratio: 391/296;
}

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

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

  .fv{
    padding-block: 38px 58px;
  }
  .fv::before{
    top: 0;
    width: calc(100% * 316/375);
    background-image: url(../image/fv/fv_bg_sp.webp);
    aspect-ratio: 316/288;
  }
  .fv__inner{
    padding-inline: 0;
  }
  .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__titleZone{
    margin-top: 28px;
    padding-block: 15px 10px;
    background-color: #fff;
    position: relative;
    z-index: 1;
  }

  .fv__title{
    font-size: min(calc(100vw / 375 * 33), 33px);
  }
  .fv__title--large{
    font-size: min(calc(100vw / 375 * 24), 24px);
  }
  .fv__title--middle{
    font-size: min(calc(100vw / 375 * 23), 23px);
  }
  .fv__title--small{
    margin-top: 6px;
    font-size: min(calc(100vw / 375 * 20), 20px);
  }
  .fv__title--small::before,
  .fv__title--small::after{
    width: min(calc(100vw / 375 * 305), 305px);
  }
  .fv__title--small::before{
    top: -6px;
  }
  .fv__title--small::after{
    bottom: -4px;
  }

  .fv-sp__title--large{
    font-size: min(calc(100vw / 375 * 31), 31px);
  }
  .fv-sp__title--small{
    font-size: min(calc(100vw / 375 * 20), 20px);
    margin-left: -11px;
  }
  .fv__title-block{
    margin-top: 2px;
  }

  .fv-sp__flex{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: calc(100% / 375 * 5);
  }

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

  .fv__lead--large{
    font-size: min(calc(100vw / 375 * 15), 15px);
    display: inline-block;
    margin-top: 3px;
    line-height: 2.4;
  }

  .fv__lead-dot{
    padding-top: 0.25em;
  }

  .fv__lead--thin{
    text-align: center;
    display: block;
    margin-top: 20px;
  }

  .fv__lead-linebreak{
    display: inline-block;
  }

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

}

@media screen and (max-width: 374.98px) {
  .fv__lead--thin{
    font-size: 15px;
  }
}




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

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

.cta__body{
  background-color: var(--deepblue);
  border-radius: 10px;
  padding-block: min(calc(100vw / 1000 * 54), 54px) min(calc(100vw / 1000 * 47), 47px);
  padding-inline: 20px;
}
.cta2 .cta__body{
  padding-block: 40px 41px;
}

.cta-body__title{
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.cta-body__title--yellow{
  color: var(--yellow);
}

.cta-body__buttonList {
  display: flex;
  column-gap: 37px;
  justify-content: center;
  align-items: flex-end;
}
.cta2 .cta-body__buttonList {
  margin-top: 28px;
}

.cta-body__buttonText{
  font-size: min(calc(100vw / 1000 * 16), 16px);
  font-weight: 700;
  color: #fff;
  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: 80%;
  background-color: #fff;
}
.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--orange{
  color: #FDA502;
}
.cta-body__buttonText--blue{
  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 * 323), 323px);
  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% / 323 * 23);
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  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(90deg, var(--orange02) 0%, var(--orange03) 100%);
}
@media (hover: hover) {
  .cta-body__buttonLink--form:hover {
    opacity: 1;
    color: var(--orange1);
    background-color: #fff;
  }
  .cta-body__buttonLink--form:hover::before {
    opacity: 0;
  }
  .cta-body__buttonLink--form:hover.cta-body__buttonLink::after{
    background-color: var(--orange1);
  }

}

.cta-body__buttonLink--document {
  color: #fff;
  border: 1px solid #fff;
  background-color: var(--deepblue);
  padding-block: min(calc(100vw / 1000 * 15), 15px) ;
  position: relative;
}
.cta-body__buttonLink--document::before{
  position: absolute;
  display: block;
  content: "";
  width: calc(100% / 323 * 97);
  aspect-ratio: 97/65;
  top: 0;
  left: -20px;
  background-image: url(../image/cta/cta_image.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

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


@media screen and (max-width: 1024px) {
  .cta2 .cta-body__title{
    line-height: 1.5;
  }
}

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

  .cta__body,
  .cta2 .cta__body{
    padding-block: 22px;
    border-radius: 5px;
  }

  .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__buttonLink--document::before{
    width: 77px;
    width: min(calc(100vw / 375 * 77),77px);
    left: 0;
  }

}

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

  .cta2 .cta__body{
    padding-inline: 10px;
  }
  .cta-body__title{
    font-size: 24px;
  }
}

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

.service{
  margin-top: -1px;
  padding-block: 10px 40px;
  background: linear-gradient(180deg, #EFF8FF 0%, #DDE8FB 100%);
}

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

.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-size: 20px;
}
.service__text-bold{
  font-weight: 700;
}
.service__text:not(:first-child){
  margin-top: 23px;
}

.service__cards{
  margin-top: 34px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 48px;
}
.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{
  max-width: 220px;
  padding: 12px;
  background-color: #fff;
  border-radius: 10px;
}
.service__card:nth-child(4){
  margin-right: 10.5px;
}
.service__card:nth-child(5){
  margin-left: 10.5px;
}

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

.service-card__title{
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}

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


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

  .service__cards{
    gap: 24px 30px;
  }

}

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

  .service{
    padding-block: 12px calc(100vw / 767 * 205);
  }

  .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{
    max-width: 400px;
  }
  .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: 47px;
  background-color: #DDE8FB;
}

.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__container::before{
  position: absolute;
  content: "";
  display: block;
  bottom: -31px;
  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;
}

.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::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--blue{
  margin-right: 4px;
  font-size: 36px;
  color: var(--skyblue);
}
.problem__title-linebreak{
  display: inline-block;
}

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

.problem-item{
  padding-bottom: 24px;
}
.problem-item:not(:first-child){
  border-top: 1px solid #555555;
  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;
}
.problem-item__text--red{
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
}

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

  .problem{
    padding-top: 0;
  }

  .problem__container{
    padding-bottom: 70px;
  }
  .problem__container::before{
    width: 170px;
  }

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

  .problem__list{
    padding-inline: 15px;
  }

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

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

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

}

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

  .problem__container::before{
    width: 150px;
  }
  .problem__title{
    padding-inline: 15px;
    font-size: 19px;
  }

  .problem__title--blue{
    font-size: 24px;
  }

}




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

.solution{
  margin-top: -70px;
  padding-block: 138px 131px;
  background-color: #E3ECFC;
  background-image: url(../image/solution/solution_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  max-height: 700px;
}

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

.solution__title{
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.solution__title--orange{
  display: inline-block;
  margin-top: 12px;
  color: #FF9F21;
}
.solution__title--small{
  font-size: 32px;
}

.solution__textZone{
  margin-top: 36px;
}

.solution__text{
  text-align: center;
  font-size: 24px;
  color: #fff;
}
.solution__text:nth-child(1){
  font-weight: 500;
}
.solution__text:nth-child(2){
  margin-top: 11px;
}
.solution__text:nth-child(3){
  margin-top: 20px;
}
.solution__text-line{
  background: #fff;
  color: var(--blue);
  display: inline-block;
  font-weight: 700;
  padding: 4px 6px;
  margin-right: 4px;
  border: 2px solid var(--blue);
}

@media screen and (max-width: 767.98px) {
  .solution{
    padding-block: 120px 100px;
  }
  .solution__title{
    font-size: min(calc(100vw / 450 * 28) , 28px);
    line-height: 1.5;
  }
  .solution__title--orange{
    margin-top: 0;
  }
  .solution__title--small{
    font-size: min(calc(100vw / 450 * 28) , 28px);
  }
  .solution__textZone{
    margin-top: 20px;
  }
  .solution__text{
    font-size: 20px;
    display: inline;
    text-align: left;
  }
  .solution__text:nth-child(2),
  .solution__text:nth-child(3){
    margin-top: 0;
  }
}

@media screen and (max-width: 374.98px) {
  .solution__title,
  .solution__title--small{
    font-size: 20px;
  }
  .solution__text{
    font-size: 16px;
  }
}

/*-------------------------------------
ご提案の流れ
-------------------------------------*/

.propose{
  margin-top: -1px;
  padding-block: 70px 94px;
  background-color: #E3ECFC;
}

.propose-container{
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding-block: 60px 77px;
  padding-inline: 60px;
}

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

.propose__lead{
  margin-top: 24px;
  text-align: center;
}

.propose-flow{
  margin-top: 64px;
}

.propose-item{
  display: flex;
  align-items: stretch;
  column-gap: 12px;
  padding-block: 24px 25px;
}
.propose-item:not(:first-child){
  padding-block: 23px 11px;
}

.propose-item__arrow{
  width:76px;
  height:auto;
  background:#4188E1;
  color:#fff;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  position: relative;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}
.propose-item:nth-child(2) .propose-item__arrow{
  background-color: #347BD3;
}
.propose-item:nth-child(3) .propose-item__arrow{
  background-color: #236AC1;
}
.propose-item:nth-child(4) .propose-item__arrow{
  background-color: #1158B0;
}
.propose-item:nth-child(5) .propose-item__arrow{
  background-color: #034495;
}

.propose-item__arrow::before,
.propose-item__arrow::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../image/propose/propose_arrow01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  left: 0;
}
.propose-item:nth-child(2) .propose-item__arrow::before,
.propose-item:nth-child(2) .propose-item__arrow::after{
  background-image: url(../image/propose/propose_arrow02.webp);
}
.propose-item:nth-child(3) .propose-item__arrow::before,
.propose-item:nth-child(3) .propose-item__arrow::after{
  background-image: url(../image/propose/propose_arrow03.webp);
}
.propose-item:nth-child(4) .propose-item__arrow::before,
.propose-item:nth-child(4) .propose-item__arrow::after{
  background-image: url(../image/propose/propose_arrow04.webp);
}
.propose-item:nth-child(5) .propose-item__arrow::before,
.propose-item:nth-child(5) .propose-item__arrow::after{
  background-image: url(../image/propose/propose_arrow05.webp);
}
.propose-item__arrow::before{
  top: -24px;
  background-position: top;
}
.propose-item__arrow::after{
  bottom: -42px;
  background-position: bottom;
}
.propose-item:not(:first-child) .propose-item__arrow::before{
  top: -20px;
}
.propose-item:not(:first-child) .propose-item__arrow::after{
  bottom: -27px;
}

.propose-item:not(:first-child) .propose-item__arrow{
  padding-top: 12px;
}

.propose-item__label,
.propose-item__number{
  position: relative;
  z-index: 1;
  font-weight: 900;
  line-height: 1;
  font-family: var(--Lato);
  display: block;
  filter: drop-shadow(0 0 10px rgba(0, 83, 92, 0.3));
}

.propose-item__label{
  font-size: 18px;
}

.propose-item__number{
  margin-top: 2px;
  font-size: 28px;
}

.propose-item__contents{
  display: flex;
  column-gap: 24px;
  padding-inline: 24px;
  flex: 1;
}

.propose-item__image{
  margin-top: 2px;
  width: calc(100% / 844 * 219);
  aspect-ratio: 219/164;
}

.propose-item__textZone{
  flex: 1;
}

.propose-item__title{
  font-size: 20px;
  line-height: calc(24/20);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.propose-item__text{
  margin-top: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.propose-item__text-line{
  text-decoration-line: underline;
  text-decoration-thickness: 9px;
  text-underline-offset: -5px;
  text-decoration-color: var(--yellow);
  text-decoration-skip-ink: none;
}

.propose .cta{
  margin-top: 82px;
}


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

  .propose-container{
    padding-inline: 20px;
  }
  .propose__title{
    font-size: 32px;
  }
  .propose-flow{
    margin-top: 40px;
  }
  .propose-item__contents{
    padding-inline: 0;
  }
}

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

  .propose{
    padding-block: 60px 73px;
  }

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

  .propose-container{
    padding-block: 40px 60px;
  }

  .propose__title{
    font-size: 28px;
  }

  .propose__lead{
    text-align: left;
  }

  .propose-item{
    column-gap: 10px;
  }

  .propose-item:not(:first-child){
    padding-block: 27px 10px;
  }

  .propose-item__arrow{
    width: 56px;
  }
  .propose-item__arrow::before, .propose-item__arrow::after {
    background-size: contain;
  }

  .propose-item__label{
    font-size: 15px;
  }

  .propose-item__number{
    font-size: 18px;
  }

  .propose-item__contents{
    column-gap: 10px;
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 10px;
  }

  .propose-item__image{
    width: 50%;
  }

  .propose-item__title{
    letter-spacing: 0;
  }

  .propose-item__text{
    line-height: 1.5;
    letter-spacing: 0;
  }

  .propose .cta{
    margin-top: 60px;
  }

}

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

  .propose__title{
    font-size: 24px;
    line-height: 1.5;
  }
  .propose-item__image{
    width: 70%;
  }

}

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

  .propose-item__image{
    width: 100%;
  }

}
/*-------------------------------------
お客様事例
-------------------------------------*/

.result{
  margin-top: -10px;
  padding-block: 60px 113px;
  background-color: #2D6DB9;
  border-radius: 10px;
  position: relative;
}
.result::after{
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: 50%;
  top: calc(100% - 30px);
  transform: translateX(-50%);
  background-image: url(../image/double-arrow.svg);
  width: 76px;
  height: auto;
  aspect-ratio: 76/59;
}

.result__lead{
  font-size: 36px;
  line-height: calc(62/36);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}

.result__lead-line{
  margin-inline: 4px;
  padding-inline: 4px;
  display: inline-block;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
}

.result__title{
  text-align: center;
  margin-top: 24px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.12em;
}

.result__cards{
  margin-top: 64px;
  padding-inline: 24px;
  display: flex;
  column-gap: min(calc(100vw / 1440 * 46),46px);
  justify-content: center;
  align-items: stretch;
}

.result-card{
  display: flex;
  flex-direction: column;
  width: calc(100% / 1052 * 320);
}

.result-card__image{
  aspect-ratio: 320/231;
}
.result-card:nth-child(2) .result-card__image{
  margin-inline: 21px;
  aspect-ratio: 278/227;
}
.result-card:nth-child(3) .result-card__image{
  margin-inline: 21px;
  aspect-ratio: 278/217;
}

.result-card__title{
  margin-top: 11px;
  font-size: min(calc(100vw / 1024 * 20), 20px);
  font-weight: 700;
  color: #fff;
}
.result-card:nth-child(2) .result-card__title{
  margin-top: 16px;
}
.result-card:nth-child(3) .result-card__title{
  margin-top: 29px;
}
.result-card__title-grad{
  background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.result-card__title--large{
  font-size: 34px;
  line-height: 1;
}
.result-card__title--middle{
  font-size: 24px;
  line-height: 1.6;
}
.result-card__title-linebreak{
  display: inline-block;
}

.result-card__name{
  margin-top: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: calc(29/16);
  color: #fff;
}

.result-card__text{
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 2;
  color: #fff;
}

.result-card__link{
  margin-top: auto;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: calc(18/15);
  display: flex;
  align-items: center;
  width: fit-content;
}

.result-card__link-circle{
  margin-left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
  position: relative;
}
.result-card__link-circle::after{
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 56%;
  transform: translate(-50% , -50%);
  width: 5px;
  height: 6px;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  background-color: #fff;
}


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

  .result__lead{
    font-size: 30px;
  }

  .result__title{
    margin-top: 15px;
  }

  .result__cards{
    padding-inline: 0;
  }

  .result-card{
    width: calc(100% / 984 * 306);
  }

}

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

  .result{
    padding-block: 40px 80px;
  }
  .result::after{
    width: 60px;
    top: calc(100% - 22px);
  }

  .result__cards{
    margin-top: 40px;
    flex-direction: column;
    row-gap: 30px;
  }

  .result-card{
    width: 100%;
  }

  .result-card__image{
    max-width: 500px;
    margin-inline: auto;
  }

  .result-card:nth-child(2) .result-card__image,
  .result-card:nth-child(3) .result-card__image{
    margin-inline: auto;
  }

  .result-card__title{
    font-size: 18px;
  }

  .result-card__link {
    font-size: 16px;
    line-height: 1.5;
  }

}

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

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


/*-------------------------------------
concern
-------------------------------------*/

.concern{
  padding-block: 44px 42px;
}

.concern__inner{
  margin-inline: auto;
  width: 100%;
  max-width: 680px;
  padding-inline: 20px;
  display: flex;
  justify-content: center;
}

.concern__body{
  margin-left: 22px;
  position: relative;
  width: min(calc(100vw / 1000 * 619), 619px);
}

.concern__body::after{
  position: absolute;
  content: "";
  display: block;
  width: min(calc(100vw / 1000 * 63),63px);
  aspect-ratio: 63/255;
  right: 35px;
  top: calc(100% - 229px);
  background-image: url(../image/concern/concern_image.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.concern__imageZone{
  filter: drop-shadow(0 4px 4px rgba(0,0,0,0.25));
}

.concern__image {
  width: min(calc(100vw / 1000 * 609),609px);
  aspect-ratio: 609/289;
  -webkit-mask-image: url(../image/concern/concern_bg.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: url(../image/concern/concern_bg.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  overflow: hidden;
  position: relative;
}
.concern__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(144, 143, 143, 0.64);
}

.concern__textZone{
  position: absolute;
  top: 51%;
  left: 48%;
  transform: translate(-50% ,-50%);
  text-align: center;
  width: 100%;
}

.concern__text{
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.concern__text-image{
  margin-top: 17px;
  transform: rotate(-3deg);
  width: calc(100% / 618 * 419);
  margin-inline: auto;
}

.concern__text2{
  margin-top: 16px;
}

@media screen and (max-width: 1024px) {
  .concern__body::after{
    top: 20%;
    right: 5%;
  }
}



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

  .concern__body{
    margin-left: 0;
    width: min(calc(100vw / 540 * 487) , 487px);
  }
  .concern__body::after{
    width: min(calc(100vw / 540 * 48) , 48px);
  }
  .concern__image{
    width: min(calc(100vw / 540 * 467) , 467px);
  }
  .concern__text-image{
    margin-top: min(calc(100vw / 540 * 17) , 17px);
    width: min(calc(100vw / 540 * 320) , 320px);
  }
  .concern__text{
    font-size: min(calc(100vw / 540 * 26) , 26px);
  }


}


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

.plan{
  padding-block: 89px 63px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../image/plan/plan_bg_pc.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  z-index: -1;
}
.plan::after{
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 200px);
  top: 200px;
  background-color: #D7ECFA;
  z-index: -2;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

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

.plan__title{
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.plan__title-grad{
  font-size: 32px;
  line-height: calc(56/32);
  display: inline-block;
  background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
  color: #fff;
  padding-inline: 4px;
}
.plan__title--middle{
  font-size: 32px;
}

.plan__leadZone{
  margin-top: 34px;
  text-align: center;
}

.plan__lead{
  font-size: 18px;
}
.plan__lead:not(:first-child){
  margin-top: 24px;
}
.plan__lead--red{
  color: var(--red);
}
.plan__lead--bold{
  font-weight: 700;
}

.plan-accordion-list{
  margin-top: 52px;
}

.plan-accordion-item{
  border-radius: 10px;
  overflow: hidden;
}

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

.plan-accordion-button {
  background-color: var(--deepblue);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: block;
  width: 100%;
  padding: 5.5px 40px 5.5px 14px;
  position: relative;
  transition: all 0.3s;
}
.plan-accordion-button::before {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  content: "";
  width: 16px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.plan-accordion-button::after {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) rotate(90deg);
  content: "";
  width: 16px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.plan-accordion-button.is-active::after {
  transform: translateY(-50%) rotate(0);
}

.plan-accordion-flex {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 24px;
  line-height: calc(43/24);
  font-weight: 700;
  flex-wrap: wrap;
}

.plan-accordion-title{
  color: var(--yellow);
}

.plan-accordion-price{
  color: #fff;
}

.plan-accordion-content {
  width: 100%;
  padding: 9px 22px 26px 22px;
  background-color: #fff;
  position: relative;
}

.plan-accordion-text{
  font-size: 18px;
  line-height: calc(32/18);
  letter-spacing: 0.04em;
}

.plan-accordion-exampleZone{
  margin-top: 12px;
  padding: 7px 11px;
  width: 100%;
  border: 1px solid #A9A9A9;
}

.plan-accordion-example{
  line-height: 2;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.plan-accordion-exampleZone ul{
  display: flex;
  flex-wrap: wrap;
  row-gap: 4px;
}

.plan-accordion-exampleZone li{
  margin-right: 4px;
  display: inline-block;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.plan__note{
  margin-top: 14px;
  text-align: right;
}

.plan + .cta{
  padding-block: 78px 72px;
}


@media screen and (max-width: 767.98px) {
  .plan{
    padding-block: 60px 40px;
    background-image: url(../image/plan/plan_bg_sp.webp);
    background-size: contain;
  }
  .plan::before{
    content: none;
  }

  .plan__title-grad{
    font-size: 24px;
    display: initial;
  }
  .plan__title--middle{
    font-size: 24px;
  }

  .plan__leadZone{
    margin-top: 20px;
    text-align: left;
  }
  .plan__lead{
    font-size: 16px;
  }
  .plan__lead:not(:first-child){
    margin-top: 20px;
  }

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

  .plan-accordion-button{
    padding: 12px 40px 12px 14px;
  }

  .plan-accordion-flex{
    font-size: 18px;
    column-gap: 4px;
    line-height: 1.5;
  }
  .plan-accordion-price{
    font-size: 16px;
  }
  .plan-accordion-content{
    padding: 15px;
  }
  .plan-accordion-text{
    font-size: 16px;
  }
  .plan-accordion-exampleZone li{
    font-size: 14px;
  }

  .plan + .cta{
    padding-block: 60px;
  }

}


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

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

.notice__container{
  padding-block: 98px 76px;
  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% - 107px);
  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% - 22px);
  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: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
  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: linear-gradient(-90deg, var(--orange02) 0%, var(--orange03) 100%);
  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--blue{
  color: var(--blue);
}
.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__title--orange{
  color: #FF9F21;
}

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

.notice__listZone{
  margin-top: 26px;
  padding: 7px 12px 7px;
  background-color: #F2F2F2;
  width: 100%;
  border: 1px solid #77A4DB;
}

.notice__list-title{
  font-weight: 700;
}

.notice__list{
  margin-top: 8px;
}

.notice__item{
  font-size: 15px;
  line-height: calc(23/15);
  position: relative;
  padding-left: 1.45em;
}
.notice__item::before {
  content: "・";
  position: absolute;
  left: 3px;
  top: 0.05em;
  font-size: 1.1em;
}


@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: #E3ECFC;
  padding-block: 25px 142px;
  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__contents{
  margin-top: 42px;
  padding-right: 61px;
  display: flex;
  align-items: center;
  column-gap: 59px;
}

.consult__image{
  width: calc(100% / 1039 * 491);
  aspect-ratio: 491/351;
}

.consult__textZone{
  flex: 1;
}

.consult__text{
  font-size: 18px;
}
.consult__note{
  margin-top: 33px;
  font-size: 18px;
}

.consult + .cta{
  padding-block: 48px 50px;
}

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

@media screen and (max-width: 1024px) {
  .consult__contents{
    flex-direction: column;
    row-gap: 20px;
  }

  .consult__image{
    width: 100%;
  }

}

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

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

  .consult__contents{
    margin-top: 20px;
  }

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

  .consult__text{
    font-size: 16px;
  }

  .consult__note{
    margin-top: 20px;
    font-size: 16px;
  }

  .consult + .cta{
    padding-block: 30px;
  }

}

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

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






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

.staff{
  padding-top: 50px;
}

.staff-inner.common-inner{
  max-width: 868px;
}

.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__title{
  margin-top: 23px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

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

.staff__container{
  margin-top: 30px;
  padding-block: 34px 41px;
  background-color: #D7ECFA;
}

.staff__swiper{
  width: 100%;
  position: relative;
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
  margin-block: 15px;
}

.slide-visible{
  overflow: visible;
}

.staff-slide__item{
  width: 100%;
  padding-block: 24px;
  padding-inline: 24px 22px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  column-gap: 36px;
  background-color: #fff;
  background-image:
    repeating-linear-gradient(0deg, rgba(217, 217, 217, 0.4) 0 0.5px, transparent 0.32px 20.56px ),
    repeating-linear-gradient(90deg, rgba(217, 217, 217, 0.4) 0 0.5px, transparent 0.32px 20.56px );
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.staff-slide__image{
  aspect-ratio: 1/1;
  width: calc(100% / 934 * 378);
}

.staff-slide__textZone{
  flex: 1;
}

.staff-slide__title{
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 8px;
}
.staff-slide__title::before{
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
}
.staff-slide__title--small{
  margin-right: 16px;
  font-size: 16px;
}

.staff-slide__text{
  font-size: 15px;
  line-height: calc(27/15);
  letter-spacing: 0.04em;
}
.staff-slide__text1{
  margin-top: 26px;
}
.staff-slide__text2{
  margin-top: 27px;
}

.staff-swiper-button-prev,
.staff-swiper-button-next{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  z-index: 100;
  top: calc(100% / 426 * 208);
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.1));
}
.staff-swiper-button-prev{
  margin: 0;
  background: linear-gradient(-90deg, var(--orange02) 0%, var(--orange03) 100%);
  left: calc(100vw / 1440 * 180);
}
.staff-swiper-button-next{
  margin: 0;
  background: linear-gradient(90deg, var(--orange02) 0%, var(--orange03) 100%);
  right: calc(100vw / 1440 * 180);
}
.staff-swiper-button-prev::after,
.staff-swiper-button-next::after{
  position: absolute;
  top: 50%;
  width: 16px;
  height: 19px;
  content: "";
  background-color: #fff;
  transform: translate(-50% ,-50%);
}
.staff-swiper-button-prev::after{
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  left: 47%;
}
.staff-swiper-button-next::after{
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  left: 53%;
}


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

  .staff-slide__item{
    flex-direction: column;
    row-gap: 15px;
  }

  .staff-swiper-button-prev,
  .staff-swiper-button-next{
    top: 50%;
    transform: translateY(-50%);
  }
  .staff-swiper-button-prev{
    left: calc(100vw / 1440 * 145);
  }
  .staff-swiper-button-next{
    right: calc(100vw / 1440 * 145);
  }

}

@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__title{
    margin-top: 0;
    font-size: clamp(22px,calc(100vw / 600 * 28),28px);
    line-height: 1.5;
  }
  .staff__text{
    margin-top: 8px;
    font-size: clamp(18px,calc(100vw / 700 * 22),22px)
  }

  .staff-slide__item{
    margin-inline: 20px;
  }

  .staff-slide__image{
    width: 60%;
  }

  .staff-swiper-button-prev,
  .staff-swiper-button-next{
    width: 48px;
    height: 48px;
    top: calc(100vw / 768 * 225);
  }
  .staff-swiper-button-prev{
    left: calc(100vw / 768 * 20);
  }
  .staff-swiper-button-next{
    right: calc(100vw / 768 * 20);
  }

}


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

  .staff-slide__image{
    width: 100%;
  }

  .staff-swiper-button-prev,
  .staff-swiper-button-next{
    top: calc(100vw / 500 * 225);
  }

}

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

  .staff-slide__title{
    font-size: 20px;
  }

}

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

.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: #E3ECFC;
  border-radius: 10px;
}

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

.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(--blue);
  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: var(--blue);
  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{
    margin-top: 0;
    font-size: 18px;
  }

  .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-block: 8px 86px;
}

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

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

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

.accordion-item{
  background-color: #fff;
  border: 2px solid var(--blue);
  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(--blue);
  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(--blue);
  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(--blue);
  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(--blue);
}

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

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

.border-outer + .cta{
  padding-block: 88px 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: 24px;
  }

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

  .border-outer + .cta{
    padding-block: 60px;
  }

}

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

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

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

}




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

.company {
  padding-block: 23px 103px;
}

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

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

.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: var(--blue);
}
.company-data{
  line-height: calc(26/16);
}


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

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

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

}