@charset "utf-8";

/*-------------------------------------------------------------------------------------
LP基本設定
----------------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
  @media screen and (min-width:751px) and ( max-width:1080px)  {
    html {
      font-size: calc((100vw / 108));
    }
  }
  @media screen and (max-width: 750px) {
    html {
      font-size: calc((100vw / 37.5));
    }
  }

body{
  background: url(../img/bg-fv.svg) no-repeat top right;
  background-size: 32rem 29rem;
  line-height: 1.5;
  font-size: 1.4rem;
  color: var(--black-color);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@media screen and (min-width:751px){
  body{
    background: url(../img/bg-fv.svg) no-repeat top right;
    background-size: 72rem 64rem;
    line-height: 1.5;
    font-size: 1.8rem;
  }
}

/*
#header
--------------------------------------------------------*/

.header__inner{
  width: min(100%,1680px);
  height: 100%;
  padding: 3.2rem 2.4rem 2.4rem;
  align-items: center;
  justify-content: space-between;
}
.header__right{
  display: none!important;
}
.header__logo {
  width: 18rem;
  height: 100%;
  line-height: 1;
}

/* global-nav */
.global-nav__list{
  gap: 3.2rem;
}
.global-nav__list a{
  color: var(--black-color);
}

 @media screen and (min-width:751px) and ( max-width:1280px){
  .header__inner{
    padding: 3.2rem 3.125vw;
  }
  .header__logo {
    width: 20.3125vw;
  }
  .global-nav__list{
    gap: 1.875vw;
  }
 }

 @media screen and (min-width:751px) {
  .header__inner{
    width: min(100%,1680px);
    height: 100%;
    padding: 3.2rem 4rem;
    align-items: center;
    justify-content: space-between;
  }
  .header__right{
    display: block!important;
  }
  .header__logo {
    width: 26rem;
  }
 }


/*
sticky-btn-wrap
--------------------------------------------------------*/
.sticky-btn-wrap{
  width: 100%;
  position: fixed;
  display: flex;
  gap: 0;
  z-index: 1000;
  right: 0;
  bottom: 0;
}
.sticky-btn{
  position: relative;
  display: block;
  width: 50%;
  padding: 1.2rem 1.6rem 1.2rem 2.4rem;
  border: 2px solid var(--white-color);
  border-bottom: none;
  color: var(--white-color);
  transition: all 0.3s;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  /* border: 3px solid var(--white-color); */
}
.sticky-btn:hover{
  opacity: 0.8;
}
.sticky-btn--document::before{
  content: "";
  width: 3rem;
  height: 1.8rem;
  position: absolute;
  top: 3.4rem;
  left: 0.7rem;
  background: url(../img/document.png) no-repeat center center / contain;
}
.sticky-btn--contact::before{
  content: "";
  width: 2.1rem;
  height: 1.6rem;
  position: absolute;
  top: 3.4rem;
  left: 1.5rem;
  background: url(../img/icon-mail.svg) no-repeat center center / contain;
}
.sticky-btn--tel::before{
  content: "";
  width: 1.2rem;
  height: 2rem;
  position: absolute;
  top: 3.1rem;
  left: 2.5rem;
  background: url(../img/icon-tel.svg) no-repeat center center / contain;
}
.sticky-btn--document{
  border-radius: 8px 0 0 0;
  background: var(--green-color01);
  border-right: 1px solid var(--white-color);
}
.sticky-btn--contact{
  border-radius: 0 8px 0 0;
  background: var(--red-color01);
  border-left: 1px solid var(--white-color);
}
.sticky-btn--tel{
  border-radius: 8px 0 0 0;
  background: var(--sub-color);
  border-right: 1px solid var(--white-color);
}

.sticky-btn__micro-copy{
  display: block;
  border-radius: 40px;
  line-height: 1;
  margin-bottom: 0.2rem;
  padding: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
}
.sticky-btn--document .sticky-btn__micro-copy{
  background: var(--green-color02);
}
.sticky-btn--contact .sticky-btn__micro-copy{
  background: var(--red-color02);
}
.sticky-btn--tel .sticky-btn__micro-copy{
  background: var(--main-color);
}

@media screen and (min-width:751px) and ( max-width:1380px){
  .sticky-btn{
    display: none!important;
  }
}

@media screen and (min-width:1381px){
  .sticky-btn-wrap{
    width: auto;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    z-index: 1000;
    left: auto;
    right: 0;
    bottom: 4.8rem;
  }
  .sticky-btn{
    position: relative;
    display: block;
    width: auto;
    padding: 6.4rem 1rem 1rem;
    border: 3px solid var(--white-color);
    border-right: none;
    color: var(--white-color);
    border-radius: 10px 0 0 10px;
    transition: all 0.3s;
    font-size: 1.8rem;
    font-weight: 800;
  }
  .sticky-btn--document::before{
    content: "";
    width: 6.4rem;
    height: 3.9rem;
    position: absolute;
    top: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/document.png) no-repeat center center / contain;
  }
  .sticky-btn--contact::before{
    content: "";
    width: 3.6rem;
    height: 2.7rem;
    position: absolute;
    top: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/icon-mail.svg) no-repeat center center / contain;
  }
  .sticky-btn--document{
    background: var(--green-color01);
  }
  .sticky-btn--contact{
    background: var(--red-color01);
  }
  .sticky-btn__micro-copy{
    display: block;
    border-radius: 40px;
    line-height: 1;
    padding: 0.4rem;
    font-size: 1rem;
    font-weight: 700;
  }

}

/*
fv
--------------------------------------------------------*/
.fv {
  position: relative;
  padding: 0;
}
.fv:after{
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  right: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 3rem;
  background: url(../img/sp-cta-separator.svg) no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}
.fv__inner{
  width: min(100%,1280px);
  padding-right: 0;
  padding-left: 0;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
.fv__left{
  position: relative;
  padding-top: 1.6rem;
  padding-bottom: 12.7rem;
}
.fv__lead-copy{
  margin-bottom: 0.4rem;
  width: 23.7rem;
}
.fv__main-copy{
  margin-bottom: 0.8rem;
  width: 33.5rem;
}
.fv__sub-copy{
  display: inline-block;
  margin-bottom: 1.2rem;
  background-image: repeating-linear-gradient(90deg, #002984, #002984 4px, transparent 4px, transparent 8px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  font-size: 1.8rem;
  font-weight: 800;
}
.fv__point-list{
  gap: 0;
  width: 17rem;
  justify-content: center;
}
.fv__point-item{
  width: calc(17rem / 2);
}
.fv__authority{
  position: absolute;
  width: 12.5rem;
  left: 2.4rem;
  top: 37.5rem;
}
.fv__right{
  position: absolute;
  right: 0;
  top: 24rem;
  width: 59%;
}


@media screen and (min-width:751px) and ( max-width:1280px){
  .fv {
    position: relative;
    padding: 0;
  }
  .fv:after{
    height: 5.468vw;
    background: url(../img/cta-separator.svg) no-repeat center center / cover;
  }
  .fv__inner{
    width: min(100%,1280px);
    padding-right: 0;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding-left: 3.125vw;
    gap: 3.125vw;
  }
  .fv__left{
    position: relative;
    padding-bottom: 0;
    padding-top: 1.25vw;
  }
  .fv__lead-copy{
    margin-bottom: 0.3125vw;
    width: 35.3125vw;
  }
  .fv__main-copy{
    margin-bottom: 0.625vw;
    width: 49.0625vw;
  }
  .fv__sub-copy{
    display: inline-block;
    margin-bottom: 1.2rem;
    background-image: repeating-linear-gradient(90deg, #002984, #002984 4px, transparent 4px, transparent 8px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.9375vw;
    font-size: 2.343vw;
  }
  .fv__point-list{
    width: auto;
    gap: 0.15625vw;
    justify-content: flex-start;
  }
  .fv__point-item{
    width: 13.28125vw;
  }
  .fv__authority{
    position: absolute;
    top: auto;
    left: auto;
    width: 17.578125vw;
    right: -10.15625vw;
    bottom: -1.875vw;
  }
  .fv__right{
    position: static;
    width: 42.1875vw;
  }
}



@media screen and (min-width:1281px){
  .fv {
    position: relative;
    padding: 0;
  }
  .fv:after{
    height: 7rem;
    background: url(../img/cta-separator.svg) no-repeat center center / cover;
  }
  .fv__inner{
    width: min(100%,1280px);
    padding-right: 0;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }
  .fv__left{
    position: relative;
    padding-top: 1.6rem;
    padding-bottom: 0;
  }
  .fv__lead-copy{
    margin-bottom: 0.4rem;
    width: 45.2rem;
  }
  .fv__main-copy{
    margin-bottom: 0.8rem;
    width: 62.8rem;
  }
  .fv__sub-copy{
    display: inline-block;
    margin-bottom: 1.2rem;
    background-image: repeating-linear-gradient(90deg, #002984, #002984 4px, transparent 4px, transparent 8px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px;
    font-size: 3rem;
    font-weight: 800;
  }
  .fv__point-list{
    width: auto;
    gap: 0.2rem;
    justify-content: flex-start;
  }
  .fv__point-item{
    width: 17rem;
  }
  .fv__authority{
    position: absolute;
    width: 22.5rem;
    top: auto;
    left: auto;
    right: -13rem;
    bottom: -2.4rem;
  }
  .fv__right{
    position: static;
    width: 54rem;
  }

}



/*
.cta01
--------------------------------------------------------*/
.cta{
  background: var(--main-color);
  color: var(--white-color);
}
.cta--type01{
  padding: 3.2rem 0 3.2rem;
}
.cta--type01 .cta__lead-copy{
  margin-bottom: 0.8rem;
  text-align: center;
}
.cta--type01 .cta__lead-copy span{
  position: relative;
  font-size: 1.5rem;
  font-weight: 900;
}
.cta--type01 .cta__lead-copy span::before{
  position: absolute;
  top: 1.6rem;
  left: -2.4rem;
  content: "";
  width: 2rem;
  height: 2.2rem;
  background: url(../img/guruguru.svg) no-repeat center center / contain;
}
.cta--type01 .cta__lead-copy span::after{
  position: absolute;
  top: 1.6rem;
  right: -3.2rem;
  content: "";
  width: 2.5rem;
  height: 2rem;
  background: url(../img/tameiki.svg) no-repeat center center / contain;
}
.cta--type01 .cta__title{
  margin-bottom: 1.6rem;
  text-align: center;
  font-size: 2.4rem;
}
.cta__list{
  width: min(100%,880px);
  margin: 0 auto 2.4rem;
  gap: 0.4rem 2.4rem;
}
.cta__item{
  padding-left: 2.1rem;
  background: url(../img/icon-check.svg) no-repeat center left;
  background-size: 1.6rem 1.2rem;
  font-size: 1.4rem;
}

.cta__btn-wrap{
  justify-content: center;
  gap: 1.2rem;
}
.cta-btn{
  position: relative;
  display: block;
  width: min(96%,48rem);
  padding: 1.6rem 3.6rem;
  border-radius: 10px;
  border: 3px solid var(--white-color);
  text-align: center;
  color: var(--white-color);
  transition: all 0.3s;
}
.cta-btn:hover{
  transform: scale(1.02);
}
.cta-btn::after{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8rem;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
}
.cta-btn--document{
  background: var(--green-color01);
  padding: 1.6rem 4.8rem;
}
.cta-btn--tel{
  background: var(--sub-color);
}
.cta-btn--tel::before{
  position: absolute;
  bottom: 1.7rem;
  left: 3.2rem;
  content: "";
  background: url(../img/icon-tel.svg) no-repeat center center / contain;
  width: 1.8rem;
  height: 3rem;
}

.cta-btn--document::before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.6rem;
  content: "";
  background: url(../img/document.png) no-repeat center center / contain;
  width: 7.2rem;
  height: 4.4rem;
}
.cta-btn--document:after{
  background: url(../img/icon-document-arrow.svg) no-repeat center center / contain;
}
.cta-btn--contact{
  background: var(--red-color01);
}
.cta-btn--contact::before{
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  content: "";
  background: url(../img/icon-mail.svg) no-repeat center center / contain;
  width: 3.2rem;
  height: 2.4rem;
}
.cta-btn--contact:after{
  background: url(../img/icon-contact-arrow.svg) no-repeat center center / contain;
}

.cta-btn__micro-copy{
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.3rem 2.4rem;
  border-radius: 60px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 700;
}
.cta-btn--document .cta-btn__micro-copy{
  background: var(--green-color02);
}
.cta-btn--contact .cta-btn__micro-copy{
  background: var(--red-color02);
}
.cta-btn--tel .cta-btn__micro-copy{
  background: var(--main-color);
}

.cta-btn__text{
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
}
.cta-btn--contact .cta-btn__text{
  position: relative;
  left: 1rem;
}


/* cta-tel */
.cta-tel{
  padding-block: 1.6rem;
  background: var(--sub-color);
  text-align: center;
}
.cta-tel *{
  line-height: 1;
}
.cta-tel__btn{
  display: inline-block;
  color: var(--white-color);
}
.cta-tel__title{
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.cta-tel__num{
  position: relative;
  line-height: 1.2;
  font-size: 3.2rem;
  font-weight: 800;
}
.cta-tel__num::before{
  position: absolute;
  top: 50%;
  transform: translateY(-51%);
  left: -2.1rem;
  content: "";
  width: 2rem;
  height: 3.4rem;
  background: url(../img/icon-tel.svg) no-repeat center center / contain;
}
.cta-tel__time{
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

.cta--type02{
  padding: 4rem 0 3.2rem;
}
.cta__title-wrap{
  position: relative;
  margin-bottom: 1.2rem;
  padding-bottom: 14rem;
}
.cta--type02 .cta__title{
  text-align: center;
  font-size: 3.2rem;
}
.cta__title-lead{
  width: 26rem;
  margin: 0 auto 0.8rem;
}
.cta__authority{
  width: 16rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}


@media screen and (min-width:751px){
  .cta{
    background: var(--main-color);
    color: var(--white-color);
  }
  .cta--type01{
    padding: 4rem 0 0;
  }
  .cta--type01 .cta__lead-copy{
    text-align: center;
  }
  .cta--type01 .cta__lead-copy span{
    position: relative;
    font-size: 2.4rem;
    font-weight: 900;
  }
  .cta--type01 .cta__lead-copy span::before{
    position: absolute;
    top: 0;
    left: -2rem;
    content: "";
    width: 2rem;
    height: 2.2rem;
    background: url(../img/guruguru.svg) no-repeat center center / contain;
  }
  .cta--type01 .cta__lead-copy span::after{
    position: absolute;
    top: 0.6rem;
    right: -2rem;
    content: "";
    width: 2.5rem;
    height: 2rem;
    background: url(../img/tameiki.svg) no-repeat center center / contain;
  }
  .cta--type01 .cta__title{
    margin-bottom: 1.6rem;
    text-align: center;
    font-size: 4.8rem;
  }
  .cta__list{
    width: min(100%,880px);
    margin: 0 auto 2.4rem;
    gap: 0.4rem 2.4rem;
  }
  .cta__item{
    padding-left: 2.4rem;
    background: url(../img/icon-check.svg) no-repeat center left;
    background-size: 1.9rem 1.4rem;
    font-size: inherit;
  }

  .cta__btn-wrap{
    margin-bottom: 4rem;
    justify-content: center;
    gap: 2rem;
  }
  .cta-btn{
    position: relative;
    display: block;
    width: calc((100% - 2rem) / 2);
    padding: 2rem 4.8rem;
    border-radius: 10px;
    border: 4px solid var(--white-color);
    text-align: center;
    color: var(--white-color);
    transition: all 0.3s;
  }
  .cta-btn:hover{
    transform: scale(1.02);
  }
  .cta-btn::after{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.6rem;
    content: "";
    width: 3.5rem;
    height: 3.5rem;
  }
  .cta-btn--document{
    background: var(--green-color01);
    padding: 2rem 8rem;
  }
  .cta-btn--document::before{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -4rem;
    content: "";
    background: url(../img/document.png) no-repeat center center / contain;
    width: 11.6rem;
    height: 7.1rem;
  }
  .cta-btn--document:after{
    background: url(../img/icon-document-arrow.svg) no-repeat center center / contain;
  }
  .cta-btn--contact{
    background: var(--red-color01);
  }
  .cta-btn--contact::before{
    position: absolute;
    bottom: 2.8rem;
    left: 3.4rem;
    content: "";
    background: url(../img/icon-mail.svg) no-repeat center center / contain;
    width: 3.8rem;
    height: 2.8rem;
  }
  .cta-btn--contact:after{
    background: url(../img/icon-contact-arrow.svg) no-repeat center center / contain;
  }

  .cta-btn__micro-copy{
    padding: 0.3rem 2.4rem;
    border-radius: 60px;
    line-height: 1;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .cta-btn--document .cta-btn__micro-copy{
    background: var(--green-color02);
  }
  .cta-btn--contact .cta-btn__micro-copy{
    background: var(--red-color02);
  }

  .cta-btn__text{
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
  }
  .cta-btn--contact .cta-btn__text{
    position: relative;
    left: 1rem;
  }


  /* cta-tel */
  .cta-tel{
    padding-block: 1.6rem;
    background: var(--sub-color);
    text-align: center;
  }
  .cta-tel *{
    line-height: 1;
  }
  .cta-tel__btn{
    display: inline-block;
    color: var(--white-color);
  }
  .cta-tel__title{
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .cta-tel__num{
    position: relative;
    line-height: 1.2;
    font-size: 3.6rem;
    font-weight: 800;
  }
  .cta-tel__num::before{
    position: absolute;
      top: 50%;
      transform: translateY(-51%);
      left: -2.6rem;
    content: "";
    width: 2.4rem;
    height: 4rem;
    background: url(../img/icon-tel.svg) no-repeat center center /contain;
  }
  .cta-tel__time{
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
  }

  .cta--type02{
    padding: 6.4rem 0 0;
  }
  .cta__title-wrap{
    position: relative;
    margin-bottom: 1.6rem;
    padding-right: 30rem;
    padding-bottom: 0;
  }
  .cta--type02 .cta__title{
    text-align: left;
    font-size: 6.4rem;
  }
  .cta__title-lead{
    margin: 0 0 0.8rem;
    width: 39rem;
  }
  .cta__authority{
    width: 27rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: auto;
    right: 0;
  }

}



/*
#problem
--------------------------------------------------------*/
.problem{
  position: relative;
  padding: 4.8rem 0 0;
  background: var(--bg-gray);
}
.problem::before{
  content: "";
  position: absolute;
  bottom: -2.9rem;
  left: 0;
  right: 0;
  width: 100%;
  height: 3rem;
  background: inherit;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.problem__title{
  margin-bottom: 2.4rem;
  text-align: center;
  font-size: 2.8rem;
}
.problem__list{
  gap: 2.4rem 1.2rem;
  justify-content: center;
}
.problem__item{
  width: calc((100% - 1.2rem) / 2);
}
.problem__item-img{
  margin-bottom: 0.8rem;
}
.problem__item-text{
  line-height: 1.35;
  text-align: center;
  font-size: inherit;
  font-weight: 700;
}
.problem__bridge{
  position: absolute;
  bottom: -4.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 16rem;
}

@media screen and (min-width:751px){
  .problem{
    position: relative;
    padding: 8.8rem 0 0;
    background: var(--bg-gray);
  }
  .problem::before{
    content: "";
    position: absolute;
    bottom: -9.9rem;
    left: 0;
    right: 0;
    width: 100%;
    height: 10rem;
    background: inherit;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  .problem__title{
    margin-bottom: 3.2rem;
    text-align: center;
    font-size: 5.6rem;
  }
  .problem__list{
    gap: 2.4rem;
  }
  .problem__item{
    width: calc((100% - 4.8rem) / 3);
  }
  .problem__item-img{
    margin-bottom: 0.8rem;
  }
  .problem__item-text{
    line-height: 1.35;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .problem__bridge{
    position: absolute;
    bottom: -14rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28rem;
  }
}


/*
#solution
--------------------------------------------------------*/
.solution{
  padding-top: 7.2rem;
  padding-bottom: 4rem;
}
.solution__body{
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
}
.solution__img{
  width: 16rem;
}
.solution__detail{
  /* flex: 1; */
}
.solution__lead-text{
  width: 90%;
  margin: 0 auto 0.8rem;
}
.solution__title{
  margin-bottom: 1.6rem;
  line-height: 1.15;
  text-align: center;
  font-size: 3.2rem;
  color: var(--main-color);
}
.solution__text{
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (min-width:751px){
  .solution {
    padding-block: 9.6rem;
  }
  .solution__body{
    gap: 2.4rem;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  .solution__img{
    width: 30rem;
  }
  .solution__lead-text{
    width: 56rem;
    margin: 0 0 0.4rem 0;
  }
  .solution__title{
    margin-bottom: 1.6rem;
    line-height: 1.15;
    text-align: left;
    font-size: 5.8rem;
    color: var(--main-color);
  }
  .solution__text{
    text-align: left;
    font-size: 2.4rem;
    font-weight: 700;
  }

}



/*
#change
--------------------------------------------------------*/
.change{
  position: relative;
  background: url(../img/bg-change.svg) repeat;
  padding: 11rem 0 0;
}
.change:after{
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  right: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 3rem;
  background: url(../img/sp-reason-separator-top.svg) no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}
.change__inner{
  position: relative;
  z-index: 1;
  /* margin-bottom: -8rem; */
}
.change__hukidashi-wrap{
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%,90rem);
}
.change__hukidashi{
  position: relative;
  padding: 1.6rem 1.2rem;
  border: 4px solid #ccc;
  border-radius: 16px;
  background: var(--white-color);
}
.change__hukidashi::before,
.change__hukidashi::after{
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.change__hukidashi::before{
  bottom: -1.9rem;
  width: 4rem;
  height: 1.8rem;
  background: #ccc;
}
.change__hukidashi::after{
  bottom: -1.3rem;
  width: 3.2rem;
  height: 1.4rem;
  background: var(--white-color);
}

.change__text{
  text-align: center;
  font-size: inherit;
  font-weight: 700;
}
.change__text span{
  font-weight: inherit;
}
.change__img{
  width: min(100%,88rem);
  margin: auto;
}

@media screen and (min-width:751px){
  .change{
    position: relative;
    background: url(../img/bg-change.svg) repeat;
    padding: 12.8rem 0 0;
  }
  .change:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 7rem;
    background: url(../img/reason-separator-top.svg) no-repeat center center / cover;
    z-index: 1;
  }
  .change__inner{
    position: relative;
    z-index: 1;
    /* margin-bottom: -8rem; */
  }
  .change__hukidashi-wrap{
    position: absolute;
    top: -10rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%,90rem);
  }
  .change__hukidashi{
    position: relative;
    padding: 3.2rem 4.8rem;
    border: 4px solid #ccc;
    border-radius: 16px;
    background: var(--white-color);
  }
  .change__hukidashi::before,
  .change__hukidashi::after{
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  .change__hukidashi::before{
    bottom: -4rem;
    width: 8rem;
    height: 4rem;
    background: #ccc;
  }
  .change__hukidashi::after{
    bottom: -3.3rem;
    width: 7.2rem;
    height: 3.6rem;
    background: var(--white-color);
  }


  .change__text{
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
  }
  .change__text span{
    font-weight: inherit;
  }
  .change__img{
    width: min(100%,88rem);
    margin: auto;
  }
}

/*
#reason
--------------------------------------------------------*/
.reason{
  position: relative;
  background: var(--sub-color);
  padding: 4rem 0 6.4rem;
}
.reason__separator{
  position: absolute;
  bottom: -2.9rem;
  left: 0;
  right: 0;
  height: 3rem;
}
.reason__separator svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* .reason::after{
  content: "";
  position: absolute;
  bottom: -2.9rem;
  left: 0;
  right: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 3rem;
  background: url(../img/sp-reason-separator-bottom.svg) no-repeat;
  background-size: 100% 100%;
  z-index: 1;
} */

.reason__inner{
  width: min(100%,1180px);
}
.reason__title{
  margin-bottom: 2.4rem;
  font-size: 3rem;
  color: var(--white-color);
}

.reason-box--media{
  margin-bottom: 2.4rem;
}
.reason-box{
  border-radius: 24px;
  background: var(--white-color);
}
.reason-box__title-wrap{
  border-radius: 24px 24px 0 0;
  background: var(--green-color02);
  padding: 1.6rem 2.4rem 1.2rem;
  text-align: center;
  color: var(--white-color);
}
.reason-box__title-lead{
  margin-bottom: 0.4rem;
  text-align: center;
  font-size: 85%;
  font-weight: 900;
}
.reason-box__title{
  font-size: 2rem;
  font-weight: 900;
}
.reason-box__body{
  padding: 2.4rem 1.6rem;
}
.reason-box__text{
  margin-bottom: 2.4rem;
  text-align: left;
  font-weight: 700;
}
.reason-box__sub-title-wrap{
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
}
.reason-box__sub-title-wrap::before,
.reason-box__sub-title-wrap::after{
  content: "";
  flex: 1;
  height: 2px;
  background: var(--main-color);
}
.reason-box__sub-title-wrap::before{
  margin-right: 1.6rem;
}
.reason-box__sub-title-wrap::after{
  margin-left: 1.6rem;
}
.reason-box__sub-title{
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--main-color);
}
.reason-box__sub-title .u-text-small{
  text-align: center;
}
.pr-media__list{
  margin-bottom: 2.4rem;
  gap: 1.6rem 0.8rem;
  justify-content: center;
}
.pr-media__item{
  width: calc((100% - 1.6rem) / 3);
}
.pr-media__item-title{
  margin-bottom: 0.2rem;
  text-align: center;
  font-size: 1.2rem;
  color: var(--main-color);
  font-weight: 900;
}
.pr-media__item-text{
  min-height: 2rem;
  margin-bottom: 0.6rem;
  line-height: 1.25;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
}


.other-media{
  width: min(100%,88rem);
  margin: 0 auto 4rem;
  background: #F2F2F2;
  border-radius: 24px;
  padding: 2.4rem 1.6rem;
}
.other-media__title{
  margin-bottom: 1.2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--main-color);
}
.other-media__list{
  gap: 0.8rem;
  justify-content: center;
}
.other-media__item{
  width: calc((100% - 1.6rem) / 3);
}
.other-media__item-img{
  max-width: 4.8rem;
  width: 100%;
  margin: 0 auto 0.8rem;
}
.other-media__item-text{
  line-height: 1.25;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #666;
}

.branding-point__list{
  width: 88%;
  margin: 0 auto;
  gap: 1.6rem;
}
.branding-point__item{
  width: 100%;
  background: var(--bg-light-yellow);
  border-radius: 24px;
  padding: 3.2rem 2.4rem;
}
.branding-point__item-img{
  width: 8rem;
  margin: 0 auto 1.2rem;
}
.branding-point__item-title{
  margin-bottom: 0.8rem;
  line-height: 1.25;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--main-color);
}


.reason-box--white{
  margin-bottom: 8rem;
}
.reason-box__hukidashi{
    position: relative;
    width: min(100%,80rem);
    margin: 0 auto 2.4rem;
    padding: 1.6rem 1.2rem;
    border: 4px solid #ccc;
    border-radius: 16px;
    background: var(--white-color);
}
.reason-box__hukidashi::before,
.reason-box__hukidashi::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.reason-box__hukidashi::before {
    bottom: -1.9rem;
    width: 4rem;
    height: 1.8rem;
    background: #ccc;
}
.reason-box__hukidashi::after {
    bottom: -1.3rem;
    width: 3.2rem;
    height: 1.4rem;
    background: var(--white-color);
}
.reason-box__hukidashi-text{
  text-align: center;
  font-size: inherit;
  font-weight: 700;
}


.black-hat__list{
  width: min(100%,77rem);
  margin: 0 auto 1.6rem;
  gap: 1.6rem 0.8rem;
  justify-content: center;
}

.black-hat__item{
  position: relative;
  width: calc((100% - 1.2rem) / 2);
  padding: 3.2rem 0.4rem;
  border-radius: 16px;
  text-align: center;
  line-height: 1.25;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  background: #444 url(../img/bg-black-hat.svg) no-repeat center center;
  background-size: 5.3rem 5.7rem;
}
.black-hat__item::before{
  position: absolute;
  content: "";
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.6rem;
  height: 2.6rem;
  background: url(../img/icon-batu.svg) no-repeat center center / contain;
}
.black-hat__text{
  margin-bottom: 1.6rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
}


.white-hat{
  width: min(100%,66.5rem);
  margin: 0 auto 1.2rem;
  position: relative;
  border-radius: 16px;
  background: var(--bg-light-yellow);
  padding: 2.4rem 1.2rem 2.4rem 8rem;
}
.white-hat__img{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -3rem;
  width: 10rem;
}
.white-hat__title{
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  color: var(--main-color);
}


.beware{
  width: min(100%,80rem);
  margin: 0 auto;
  background: var(--black-color) url(../img/icon-warning.svg) no-repeat left 0rem center / 8.8rem 5.6rem;
  border-radius: 16px;
  padding: 2.4rem 1.6rem;
  color: var(--white-color);
}
.beware__title{
  margin-bottom: 0.8rem;
  text-align: center;
  font-size: 1.8rem;
}
.beware__text{
  font-size: 80%;
}


@media screen and (min-width:751px){
  .reason{
    position: relative;
    background: var(--sub-color);
    padding: 8rem 0 6.4rem;
  }
  .reason::after{
    content: "";
    position: absolute;
    bottom: -6.9rem;
    left: 0;
    right: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 7rem;
    background: url(../img/reason-separator-bottom.svg) no-repeat center center / cover;
    z-index: -1;
  }
  .reason__inner{
    width: min(100%,1180px);
  }
  .reason__title{
    font-size: 5.6rem;
    color: var(--white-color);
  }

  .reason-box--media{
    margin-bottom: 4.8rem;
  }
  .reason-box{
    border-radius: 48px;
    background: var(--white-color);
  }
  .reason-box__title-wrap{
    border-radius: 48px 48px 0 0;
    background: var(--green-color02);
    padding: 3.2rem 4rem 2.4rem;
    text-align: center;
    color: var(--white-color);
  }
  .reason-box__title-lead{
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
  }
  .reason-box__title{
    font-size: 4rem;
    font-weight: 900;
  }
  .reason-box__body{
    padding: 4.8rem;
  }
  .reason-box__text{
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 800;
    font-size: 2rem;
  }
  .reason-box__sub-title-wrap{
    margin-bottom: 3.2rem;
    display: flex;
    align-items: center;
  }
  .reason-box__sub-title-wrap::before,
  .reason-box__sub-title-wrap::after{
    content: "";
    flex: 1;
    height: 2px;
    background: var(--main-color);
  }
  .reason-box__sub-title-wrap::before{
    margin-right: 1.6rem;
  }
  .reason-box__sub-title-wrap::after{
    margin-left: 1.6rem;
  }
  .reason-box__sub-title{
    font-size: 4rem;
    font-weight: 900;
    color: var(--main-color);
  }
  .reason-box__sub-title .u-text-small{
    text-align: center;
  }
  .pr-media__list{
    margin-bottom: 2.4rem;
    gap: 0.8rem;
  }
  .pr-media__item{
    width: calc((100% - 4rem) / 5);
  }
  .pr-media__item-title{
    margin-bottom: 0.8rem;
    text-align: center;
    font-size: 1.5rem;
    color: 
    var(--main-color);
    font-weight: 900;
  }
  .pr-media__item-text{
    min-height: 3rem;
    margin-bottom: 1.2rem;
    line-height: 1.25;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
  }


  .other-media{
    width: min(100%,88rem);
    margin: 0 auto 4.8rem;
    background: #F2F2F2;
    border-radius: 24px;
    padding: 2.4rem;
  }
  .other-media__title{
    margin-bottom: 1.2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--main-color);
  }
  .other-media__list{
    gap: 0.8rem;
    justify-content: center;
  }
  .other-media__item{
    width: 11rem;
  }
  .other-media__item-img{
    max-width: 6rem;
    width: 100%;
    margin: 0 auto 0.8rem;
  }
  .other-media__item-text{
    line-height: 1.25;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
  }

  .branding-point__list{
    width: 96%;
    gap: 2.4rem;
  }
  .branding-point__item{
    width: calc((100% - 4.8rem) / 3);
    background: var(--bg-light-yellow);
    border-radius: 30px;
    padding: 4rem 1.6rem;
  }
  .branding-point__item-img{
    width: 9.6rem;
    margin: 0 auto 1.6rem;
  }
  .branding-point__item-title{
    margin-bottom: 1.2rem;
    line-height: 1.25;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--main-color);
  }


  .reason-box--white{
    margin-bottom: 8rem;
  }
  .reason-box__hukidashi{
      position: relative;
      width: min(100%,80rem);
      margin: 0 auto 4rem;
      padding: 3.2rem 2.4rem;
      border: 4px solid #ccc;
      border-radius: 16px;
      background: var(--white-color);
  }
  .reason-box__hukidashi::before,
  .reason-box__hukidashi::after {
      position: absolute;
      content: "";
      left: 50%;
      transform: translateX(-50%);
      clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  .reason-box__hukidashi::before {
      bottom: -3.1rem;
      width: 8rem;
      height: 3rem;
      background: #ccc;
  }
  .reason-box__hukidashi::after {
      bottom: -2.5rem;
      width: 7.2rem;
      height: 2.6rem;
      background: var(--white-color);
  }
  .reason-box__hukidashi-text{
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
  }


  .black-hat__list{
    width: min(100%,77rem);
    margin: 0 auto 2rem;
    gap: 1.2rem;
    justify-content: center;
  }

  .black-hat__item{
    position: relative;
    width: calc((100% - 3.6rem) / 4);
    padding: 4rem 0.8rem;
    border-radius: 16px;
    text-align: center;
    line-height: 1.25;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
    background: #444 url(../img/bg-black-hat.svg) no-repeat center center;
    background-size: 8.3rem 9.3rem;
  }
  .black-hat__item::before{
    position: absolute;
    content: "";
    top: -1.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.6rem;
    height: 3.6rem;
    background: url(../img/icon-batu.svg) no-repeat center center / contain;
  }
  .black-hat__text{
    margin-bottom: 4rem;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 900;
  }


  .white-hat{
    width: min(100%,66.5rem);
    margin: 0 auto 3.2rem;
    position: relative;
    border-radius: 32px;
    background: var(--bg-light-yellow);
    padding: 2.4rem 4rem 2.4rem 21rem;
  }
  .white-hat__img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -1rem;
    width: 20rem;
  }
  .white-hat__title{
    margin-bottom: 0.8rem;
    text-emphasis: left;
    font-size: 3.2rem;
    color: var(--main-color);
  }


  .beware{
    width: min(100%,80rem);
    margin: 0 auto;
    background: var(--black-color) url(../img/icon-warning.svg) no-repeat left 2.7rem center / 13.8rem 12.4rem;
    border-radius: 24px;
    padding: 3.2rem 4.8rem;
    color: var(--white-color);
  }
  .beware__title{
    margin-bottom: 1.6rem;
    text-align: center;
    font-size: 3.2rem;
  }
  .beware__text{
    font-size: 1.8rem;
  }
}










/*
#llmo
--------------------------------------------------------*/
.llmo-box{
  position: relative;
  z-index: 3;
  width: min(100%,84rem);
  margin: -8rem auto 4rem;
  border-radius: 24px;
  border: 4px solid #B3C4EA;
  background: var(--white-color);
}
.llmo-bridge{
  position: absolute;
  top: -2rem;
  width: 24rem;
  left: 50%;
  transform: translateX(-50%);
}
.llmo-box__body{
  position: relative;
  padding: 21rem 1.6rem 2.4rem;
}
.llmo-box__title{
  margin-bottom: 0.8rem;
  text-align: center;
  font-size: 2rem;
  color: var(--main-color);
}
.llmo-box__img{
  width: 16rem;
  position: absolute;
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.llmo-box__text .u-yellow-line{
  font-weight: 700;
}

@media screen and (min-width:751px){
  .llmo-box{
    position: relative;
    width: min(100%,84rem);
    margin: -8rem auto 8rem;
    border-radius: 32px;
    border: 4px solid #B3C4EA;
    background: var(--white-color);
  }
  .llmo-bridge{
    position: absolute;
    top: -2.7rem;
    width: min(100%,32.4rem);
    left: 50%;
    transform: translateX(-50%);
  }
  .llmo-box__body{
    position: relative;
    padding: 6.4rem 21.3rem 4.8rem 5.6rem;
  }
  .llmo-box__title{
    margin-bottom: 1.6rem;
    text-align: left;
    font-size: 4rem;
    color: var(--main-color);
  }
  .llmo-box__img{
    width: 30rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: -12rem;
  }
}


/*
#result
--------------------------------------------------------*/
.result{
  background: 
  url(../img/blob01.svg) no-repeat top -8rem right / 16rem auto,
  url(../img/blob02.svg) no-repeat top 84rem left / 16rem auto,
  url(../img/blob03.svg) no-repeat top 168rem right / 16rem auto,
  url(../img/blob04.svg) no-repeat top 248rem left / 14rem auto;
}
.result__title{
  margin-bottom: 2.4rem;
}
.result-box{
  border-radius: 24px;
  border:5px solid var(--sub-color);
  background: var(--white-color);
}
.result-box{
  margin-bottom: 2.4rem;
}
.result-box:last-of-type{
  margin-bottom: 1.2rem;
}
.result-box__title{
  border-radius: 18px 18px 0 0;
  background: var(--sub-color);
  padding: 1.6rem 0.8rem;
  text-align: center;
  font-size: 1.6rem;
  color: var(--white-color);
}
.result-box__body{
  padding: 3.2rem 2rem 2.4rem;
}
.result-box__body-inner{
  position: relative;
  gap: 7.2rem;
}
.result-box__arrow{
  width: 9.4rem;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}






.result-card{
  position: relative;
  width: 100%;
  padding: 4rem 1.6rem 2.4rem;
  border-radius: 16px;
}
.result-card__tag{
  position: absolute;
  width: 19rem;
  left: 50%;
  transform: translateX(-50%);
  top: -1.2rem;
}

.result-card--before{
  background: #eee;
}
.result-card--after{
  background: var(--bg-light-yellow);
}
.result-card--before .result-card__problem-item{
  color: #444;
}
.result-card--after .result-card__problem-item{
  color: var(--main-color);
}
.result-card__problem-list{
  margin-bottom: 1.2rem;
}
.result-card__problem-item{
  position: relative;
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  padding: 0.8rem 0.8rem 0.8rem 4rem;
  border-radius: 80px;
  background: var(--white-color);
  line-height: 1.35;
  font-size: 1.3rem;
  font-weight: 900;
}
.result-card__problem-item + .result-card__problem-item{
  margin-top: 0.8rem;
}
.result-card--before .result-card__problem-item::before,
.result-card--after .result-card__problem-item::before{
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 900;
  width: 2.4rem;
  height: 2.4rem;
}
.result-card--before .result-card__problem-item::before{
  background: url(../img/icon-result-item-before.svg) no-repeat center center / contain;
}
.result-card--after .result-card__problem-item::before{
  background: url(../img/icon-result-item-after.svg) no-repeat center center / contain;
}
.result-card__result-item{
  padding: 0.8rem 0;
  border-bottom: 1px solid #aaa;
  gap: 4rem;
  justify-content: space-between;
  align-items: center;
}
.result-card--before .result-card__result-item{
  color: #444;
}
.result-card--after .result-card__result-item{
  color: var(--main-color);
}
.result-card__result-item:last-of-type{
  border-bottom: none;
}
.result-card__result-item *{
  font-size: 1.2rem;
  font-weight: 900;
}
/* .result-card__result-item .u-text-em{
  font-size: 150%;
} */

.result__note{
  font-size: 0.8rem;
  color: #4D4D4D;
  font-weight: 400;
}



@media screen and (min-width:751px){
  .result{
    background: 
    url(../img/blob01.svg) no-repeat top -24rem right / 43.8rem auto,
    url(../img/blob02.svg) no-repeat top 48rem left / 40.9rem auto,
    url(../img/blob03.svg) no-repeat top 128rem right / 46.7rem auto,
    url(../img/blob04.svg) no-repeat top 190rem left / 32.1rem auto;
  }
  .result__title{
    margin-bottom: 4rem;
  }
  .result-box{
    border-radius: 32px;
    border:5px solid var(--sub-color);
    background: var(--white-color);
  }
  .result-box{
    margin-bottom: 4rem;
  }
  .result-box:last-of-type{
    margin-bottom: 2.4rem;
  }
  .result-box__title{
    border-radius: 26px 26px 0 0;
    background: var(--sub-color);
    padding: 2.4rem;
    text-align: center;
    font-size: 3.2rem;
    color: var(--white-color);
  }
  .result-box__body{
    padding: 4rem 2.4rem 2.4rem;
  }
  .result-box__body-inner{
    position: relative;
    gap: 3.2rem;
  }
  .result-box__arrow{
    width: 9.4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }






  .result-card{
    position: relative;
    width: calc((100% - 3.2rem) / 2);
    padding: 4.8rem 3.2rem 4rem;
    border-radius: 16px;
  }
  .result-card__tag{
    position: absolute;
    width: 24rem;
    left: 50%;
    transform: translateX(-50%);
    top: -1.4rem;
  }

  .result-card--before{
    background: #eee;
  }
  .result-card--after{
    background: var(--bg-light-yellow);
  }
  .result-card--before .result-card__problem-item{
    color: #444;
  }
  .result-card--after .result-card__problem-item{
    color: var(--main-color);
  }
  .result-card__problem-list{
    margin-bottom: 3.2rem;
  }
  .result-card__problem-item{
    position: relative;
    min-height: 7rem;
    display: flex;
    align-items: center;
    padding: 1rem 3rem 1rem 6.4rem;
    border-radius: 80px;
    background: var(--white-color);
    line-height: 1.35;
    font-size: inherit;
    font-weight: 900;
  }
  .result-card__problem-item + .result-card__problem-item{
    margin-top: 1rem;
  }
  .result-card--before .result-card__problem-item::before,
  .result-card--after .result-card__problem-item::before{
    content: "";
    position: absolute;
    left: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    width: 3.6rem;
    height: 3.6rem;
  }
  .result-card--before .result-card__problem-item::before{
    background: url(../img/icon-result-item-before.svg) no-repeat center center / contain;
  }
  .result-card--after .result-card__problem-item::before{
    background: url(../img/icon-result-item-after.svg) no-repeat center center / contain;
  }
  .result-card__result-item{
    padding: 0.8rem 0;
    border-bottom: 1px solid #aaa;
    gap: 4rem;
    justify-content: space-between;
    align-items: center;
  }
  .result-card--before .result-card__result-item{
    color: #444;
  }
  .result-card--after .result-card__result-item{
    color: var(--main-color);
  }
  .result-card__result-item:last-of-type{
    border-bottom: none;
  }
  .result-card__result-item *{
    font-size: inherit;
    font-weight: 900;
  }
  .result__note{
    font-size: 1.4rem;
    color: #4D4D4D;
    font-weight: 400;
  }
}

/*
#price
--------------------------------------------------------*/
.price{
  background: var(--bg-light-blue);
  /* border-radius: 80px; */
}
.price__title{
  margin-bottom: 1.6rem;
}
.price__text{
  margin-bottom: 2.4rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
}
.price-cards{
  margin-bottom: 1.2rem;
  gap: 1.2rem;
}
.price-card{
  width: 80%;
  background: var(--white-color);
  margin: auto;
  padding: 2.4rem 1.6rem;
  border-radius: 16px;
  border: 4px solid;
  text-align: center;
  font-weight: 900;
}
.price-card *{
  font-weight: inherit;
}
.price-card--personal{
  border-color: #B3C4EA;
}
.price-card--personal *{
  color: var(--sub-color);
}
.price-card--corporate{
  border-color: #CCDFB3;
}
.price-card--corporate *{
  color: var(--green-color02);
}
.price-card--service{
  border-color: #F7D1B7;
}
.price-card--service *{
  color: var(--red-color02);
}

.price-card__title{
  margin-bottom: 0.8rem;
  font-size: 3.2rem;
}
.price-card__title .u-text-small{
  font-size: 50%;
}
.price-card__price{
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  justify-content: center;
  align-items: baseline;
  line-height: 1;
  font-size: 4.8rem;
}
.price-card__price-tag{
  position: relative;
  top: -0.4rem;
  display: inline-block;
  line-height: 1;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 1.4rem;
  color: var(--white-color);
  font-weight: 700;
}

.price-card--personal .price-card__price-tag{
  background: var(--sub-color);
}
.price-card--corporate .price-card__price-tag{
  background: var(--green-color02);
}
.price-card--service .price-card__price-tag{
  background: var(--red-color02);
}

.price-card--personal .price-card__price{
  border-bottom: 2px solid #B3C4EA;
}
.price-card--corporate .price-card__price{
  border-bottom: 2px solid #CCDFB3;
}
.price-card--service .price-card__price{
  border-bottom: 2px solid #F7D1B7;
}

.price-card__price-unit{
  font-size: 40%;
}
.price-card__term{
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.price__note{
  margin-bottom: 2.4rem;
  text-align: center;
  color: #4D4D4D;
  font-size: 1.2rem;
  font-weight: 400;
}

.price-spot{
  position: relative;
  width: min(100%,64rem);
  margin: 0 auto;
  padding: 2.4rem 0.8rem 2.4rem 8rem;
  border-radius: 16px;
  background: var(--white-color);
}
.price-spot__img{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -0.8rem;
  width: 8rem;
}
.price-spot__text{
  line-height: 1.35;
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: 800;
}


@media screen and (min-width:751px){
  .price{
    background: var(--bg-light-blue);
  }
  .price__title{
    margin-bottom: 1.6rem;
  }
  .price__text{
    margin-bottom: 4rem;
    text-align: center;
    font-size: inherit;
    font-weight: 700;
  }
  .price-cards{
    margin-bottom: 2.4rem;
    gap: 2.4rem;
  }
  .price-card{
    width: calc((100% - 4.8rem) / 3);
    background: var(--white-color);
    padding: 3.2rem 2rem;
    border-radius: 16px;
    border: 4px solid;
    text-align: center;
    font-weight: 900;
  }
  .price-card *{
    font-weight: inherit;
  }
  .price-card--personal{
    border-color: #B3C4EA;
  }
  .price-card--personal *{
    color: var(--sub-color);
  }
  .price-card--corporate{
    border-color: #CCDFB3;
  }
  .price-card--corporate *{
    color: var(--green-color02);
  }
  .price-card--service{
    border-color: #F7D1B7;
  }
  .price-card--service *{
    color: var(--red-color02);
  }

  .price-card__title{
    margin-bottom: 0.8rem;
    font-size: 3.6rem;
  }
  .price-card__title .u-text-small{
    font-size: 50%;
  }
  .price-card__price{
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
    justify-content: center;
    align-items: baseline;
    line-height: 1;
    font-size: 4.8rem;
  }
  .price-card__price-tag{
    position: relative;
    top: -0.4rem;
    display: inline-block;
    line-height: 1;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 1.4rem;
    color: var(--white-color);
    font-weight: 700;
  }

  .price-card--personal .price-card__price-tag{
    background: var(--sub-color);
  }
  .price-card--corporate .price-card__price-tag{
    background: var(--green-color02);
  }
  .price-card--service .price-card__price-tag{
    background: var(--red-color02);
  }

  .price-card--personal .price-card__price{
    border-bottom: 2px solid #B3C4EA;
  }
  .price-card--corporate .price-card__price{
    border-bottom: 2px solid #CCDFB3;
  }
  .price-card--service .price-card__price{
    border-bottom: 2px solid #F7D1B7;
  }

  .price-card__price-unit{
    font-size: 40%;
  }
  .price-card__term{
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .price__note{
    margin-bottom: 4.8rem;
    text-align: center;
    color: #4D4D4D;
    font-size: 1.6rem;
    font-weight: 400;
  }

  .price-spot{
    position: relative;
    width: min(100%,64rem);
    margin: 0 auto;
    padding: 3.2rem 4rem 3.2rem 14rem;
    border-radius: 32px;
    background: var(--white-color);
  }
  .price-spot__img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -8rem;
    width: 20rem;
  }
  .price-spot__text{
    line-height: 1.35;
    font-size: 3rem;
    color: var(--main-color);
    font-weight: 800;
  }
}


/*
#case
--------------------------------------------------------*/
.case{
  background: 
  url(../img/blob01.svg) no-repeat top -6rem right / 16rem auto, 
  url(../img/blob02.svg) no-repeat top 49rem left / 12rem auto, 
  url(../img/blob03.svg) no-repeat top 99rem right / 13rem auto;
  padding-bottom: 8rem;
}
.case__title{
  margin-bottom: 2.4rem;
}
.case__title .u-text-small{
  font-size: 65%;
}
.case-card{
  position: relative;
  padding: 3.2rem 1.6rem;
  background: var(--white-color);
  border-radius: 16px;
  border: 4px solid #B3C4EA;
  gap: 1.6rem;
  align-items: center;
}
.case-card + .case-card{
  margin-top: 8rem;
}
.case-card__img{
  width: 18rem;
  margin: 0 auto;
}
.case-card__title{
  margin-bottom: 1.2rem;
  text-align: center;
  font-size: 2rem;
  color: var(--main-color);
}
.case-card__detail{
  width: 100%;
}
.case-card__note-text{
  position: absolute;
  width: calc(100% - 4rem);
  left: 50%;
  transform: translateX(-50%);
  bottom: -6rem;
  background: #444;
  padding: 1.6rem 1.2rem;
  border-radius: 16px;
  text-align: center;
  color: var(--white-color);
  font-size: 1.4rem;
  font-weight: 800;
}
.case-card:nth-of-type(3) .case-card__note-text{
  bottom: -4rem;
}


@media screen and (min-width:751px){
  .case{
    background: 
    url(../img/blob01.svg) no-repeat top -24rem right / 43.8rem auto, 
    url(../img/blob02.svg) no-repeat top 48rem left / 40.9rem auto, 
    url(../img/blob03.svg) no-repeat top 108rem right / 46.7rem auto;
    padding-bottom: 16rem;
  }
  .case__title .u-text-small{
    font-size: 65%;
  }
  .case-card{
    position: relative;
    padding: 4.8rem 5.6rem;
    background: var(--white-color);
    border-radius: 16px;
    border: 4px solid #B3C4EA;
    gap: 4rem;
    align-items: center;
  }
  .case-card + .case-card{
    margin-top: 10.4rem;
  }
  .case-card__img{
    width: 25.3rem;
  }
  .case-card__title{
    margin-bottom: 1.2rem;
    text-align: left;
    font-size: 3.2rem;
    color: var(--main-color);
  }
  .case-card__detail{
    flex: 1;
    /* width: calc(100% - 29.3rem); */
  }
  .case-card__note-text{
    position: absolute;
    width: calc(100% - 12rem);
    left: 50%;
    transform: translateX(-50%);
    bottom: -6.6rem;
    background: #444;
    padding: 2.4rem;
    border-radius: 24px;
    text-align: center;
    color: var(--white-color);
    font-size: 2.2rem;
    font-weight: 900;
  }
  .case-card:nth-of-type(3) .case-card__note-text{
    bottom: -8rem;
  }

}




/*
#step
--------------------------------------------------------*/
.step{
  background: var(--bg-light-blue);
  /* border-radius: 0 0 80px 80px; */
}
.step__title{
  margin-bottom: 1.6rem;
}
.step__lead{
  margin-bottom: 2.4rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.step-list{
  gap: 1.2rem;
}
.step-item{
  position: relative;
  width: calc((100% - 1.2rem) / 2);
  background: var(--white-color);
  border-radius: 16px;
  border: 4px solid #B3C4EA;
  padding: 1.6rem 1.2rem;
}

.step-item + .step-item::before{
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -1rem;
  width: 1.6rem;
  height: 2.5rem;
  background: var(--sub-color);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.step-item__img{
  width: 50%;
  margin: 0 auto 1.2rem;
}
.step-item__title{
  margin-bottom: 0.4rem;
  text-align: center;
  font-size: 1.6rem;
  color: var(--main-color);
  font-weight: 800;
}
/* .step-item__text{
  font-size: inherit;
} */

@media screen and (min-width:751px){
  .step{
    background: var(--bg-light-blue);
  }
  .step__title{
    margin-bottom: 1.6rem;
  }
  .step__lead{
    margin-bottom: 4.8rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
  }
  .step-list{
    gap: 2.4rem;
  }
  .step-item{
    position: relative;
    width: calc((100% - 7.2rem) / 4);
    background: var(--white-color);
    border-radius: 16px;
    border: 4px solid #B3C4EA;
    padding: 2.4rem 2rem;
  }

  .step-item + .step-item::before{
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: -1rem;
    width: 1.6rem;
    height: 2.5rem;
    background: var(--sub-color);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
  }
  .step-item__img{
    width: 50%;
    margin: 0 auto 1.2rem;
  }
  .step-item__title{
    margin-bottom: 0.8rem;
    text-align: center;
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 900;
  }
  .step-item__text{
    font-size: 1.6rem;
  }

}















/*
#faq
--------------------------------------------------------*/
.faq{
  background: 
  url(../img/blob01.svg) no-repeat top -16rem right / 16rem auto,
  url(../img/blob02.svg) no-repeat top 40rem left / 13rem auto,
  url(../img/blob03.svg) no-repeat top 80rem right / 14rem auto;
}
.faq__inner{
  width: min(100%,94rem);
}
.faq__title{
  margin-bottom: 2.4rem;
}
.faq__item + .faq__item{
  margin-top: 2rem;
}
.faq__item{
  border: 4px solid #B3C4EA;
  border-radius: 16px;
  background: var(--white-color);
}
.faq__question{
  position: relative;
  padding: 1.6rem 4.6rem 1.6rem 5.8rem;
  text-align: left;
  line-height: 1.35;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--main-color);
}
.faq__question::before,
.faq__answer::before{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 1.6rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 900;
  top: 50%;
}
.faq__question::before{
  top: 2.1rem;
  content: "Q";
  background: var(--sub-color);
  color: var(--white-color);
}
.faq__answer{
  position: relative;
  padding: 0.7rem 4.6rem 2.4rem 5.8rem;
  line-height: 1.5;
}
.faq__answer::before{
  top: 0;
  content: "A";
  background: var(--orange-color);
  color: var(--white-color);
}
.faq__toggle {
  position: absolute;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8rem;
}
.faq__toggle:before, 
.faq__toggle:after {
  content: "";
  position: absolute;
  display: block;
  background: var(--sub-color);
  width: 2rem;
  height: 3px;
  bottom: 44%;
  right: 0.8rem;
}
.faq__toggle:before {
  transform: rotate(180deg);
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.faq__toggle:after {
  transform: rotate(0deg);
}
.faq__toggle.open:before {
  transform: rotate(90deg);
  transform: rotate(180deg);
}
.js-accordion__body{
  display: none;
}
.faq__campeign-list{
  margin: 0.6rem 0 0.8rem 1.2rem;
}
.faq__campeign-item{
  position: relative;
  margin-bottom: 0.4rem;
  padding-left: 1.6rem;
}
.faq__campeign-item::before{
  position: absolute;
  top: 1.2rem;
  left: 0;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--black-color);
}
.faq__campeign-item .u-text-small{
  display: block;
  line-height: 1.5;
  font-size: 60%;
  font-weight: 400;
}

@media screen and (min-width:751px){
  .faq{
    background: 
    url(../img/blob01.svg) no-repeat top -32rem right / 43.8rem auto,
    url(../img/blob02.svg) no-repeat top 40rem left / 40.9rem auto,
    url(../img/blob03.svg) no-repeat top 96rem right / 46.7rem auto;
  }
  .faq__inner{
    width: min(100%,94rem);
  }
  .faq__item + .faq__item{
    margin-top: 2.4rem;
  }
  .faq__item{
    border: 4px solid #B3C4EA;
    border-radius: 16px;
    background: var(--white-color);
    /* padding: 3.2rem 4rem; */
  }
  .faq__question{
    position: relative;
    padding: 2.4rem 6rem 2.4rem 7.2rem;
    text-align: left;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--main-color);
  }
  .faq__question::before,
  .faq__answer::before{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 2rem;
    width: 4rem;
    height: 4rem;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: 900;
    top: 50%;
  }
  .faq__question::before{
    top: 2.1rem;
    content: "Q";
    background: var(--sub-color);
    color: var(--white-color);
  }
  .faq__answer{
    position: relative;
    padding: 0.8rem 6rem 2.4rem 7.2rem;
    line-height: 1.5;
  }
  .faq__answer::before{
    top: 0;
    content: "A";
    background: var(--orange-color);
    color: var(--white-color);
  }
  .faq__toggle {
    position: absolute;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: 1.6rem;
  }
  .faq__toggle:before, 
  .faq__toggle:after {
    content: "";
    position: absolute;
    display: block;
    background: var(--sub-color);
    width: 2rem;
    height: 3px;
    bottom: 44%;
    right: 0.8rem;
  }
  .faq__toggle:before {
    transform: rotate(180deg);
    transform: rotate(90deg);
    transition: transform 0.3s;
  }
  .faq__toggle:after {
    transform: rotate(0deg);
  }
  .faq__toggle.open:before {
    transform: rotate(90deg);
    transform: rotate(180deg);
  }
  .js-accordion__body{
    display: none;
  }
  .faq__campeign-list{
    margin: 0.8rem 0 0.8rem 1.2rem;
  }
  .faq__campeign-item{
    position: relative;
    margin-bottom: 0.4rem;
    padding-left: 1.6rem;
  }
  .faq__campeign-item::before{
    position: absolute;
    top: 1.2rem;
    left: 0;
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--black-color);
  }
  .faq__campeign-item .u-text-small{
    display: block;
    line-height: 1.5;
    font-size: 60%;
    font-weight: 400;
  }
}



/*
#message
--------------------------------------------------------*/
.message{
  background: var(--bg-light-blue);
  overflow-x: hidden;
}
.message__title{
  margin-bottom: 2.4rem;
  font-size: 2.6rem;
}
.message__title .u-text-small{
  margin-bottom: 0.8rem;
  font-size: 60%;
}
.message-box{
  position: relative;
  width: min(100%,88rem);
  margin: auto;
  padding: 3.2rem 1.6rem 2.4rem 1.6rem;
  background: var(--white-color);
  border-radius: 16px;
  border: 4px solid #B3C4EA;
}
.message-box__title{
  margin-bottom: 1.2rem;
  font-size: 2.2rem;
  color: var(--main-color);
  font-weight: 800;
}
.message__img{
  position: absolute;
  width: 12rem;
  right: -2.8rem;
  bottom: -5.2rem;
}



@media screen and (min-width:751px){
  .message{
    background: var(--bg-light-blue);
  }
  .message__title{
    margin-bottom: 2.4rem;
    font-size: 4.4rem;
  }
  .message__title .u-text-small{
    font-size: 65%;
  }
  .message-box{
    position: relative;
    width: min(100%,88rem);
    margin: auto;
    padding: 5.6rem 27rem 5.6rem 6.4rem;
    background: var(--white-color);
    border-radius: 16px;
    border: 4px solid #B3C4EA;
  }
  .message-box__title{
    margin-bottom: 2.4rem;
    font-size: 3.6rem;
    color: var(--main-color);
  }
  .message__img{
    position: absolute;
    width: 29rem;
    right: -2.6rem;
    bottom: 0rem;
  }

}











/*
#form
--------------------------------------------------------*/
#form{
  background: var(--sub-color);
}
.form__inner{
  width: min(100%,960px);
}
.form__lead-tag{
  position: relative;
  width: min(100%,24rem);
  margin: 0 auto 0.4rem;
  border-radius: 80px;
  background: var(--green-color01);
  text-align: center;
  color: var(--white-color);
  font-weight: 800;
}
.form__lead{
  margin-bottom: 2.4rem;
  text-align: center;
  color: var(--white-color);
}
.form__title{
  margin-bottom: 0.8rem;
  color: var(--white-color);
}
.form__body{
  background: var(--white-color);
  border-radius: 16px;
  padding: 3.2rem 2rem;
}
.form__table{
  width: 100%;
}

.form__list{
  margin-bottom: 0.4rem;
}
.form__label{
  width: 100%;
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
}
.form__label-title{
  font-size: 1.6rem;
  font-weight: 700;
}
.form__value{
  width: 100%;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
}

.form__badge{
  position: relative;
  top: -0.2rem;
  display: inline-block;
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
  line-height: 1;
  font-size: 1.1rem;
  color: var(--white-color);
}
.form__badge--req{
  background: var(--red-color02);
}
.form__badge--any{
  background: #9FA1A6;
}

.form__value--check{
  gap: 0.8rem 1.6rem;
}

.form__privacy-text{
  margin-bottom: 1.6rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}
.form__privacy-text a{
  text-decoration: underline;
  color: inherit;
  font-weight: inherit;
}
.form__privacy-text a:hover{
  text-decoration: none;
}

.form__submit{
  display: block;
  width: min(88%,36rem);
  margin: auto;
  padding: 1.6rem 3.2rem;
  border-radius: 80px;
  background: var(--red-color01);
  line-height: 1;
  text-align: center;
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s;
}
.form__submit:hover{
  transform: scale(1.025);
  background: var(--red-color02);
}






@media screen and (min-width:751px){
  #form{
    background: var(--sub-color);
  }
  .form__inner{
    width: min(100%,960px);
  }
  .form__lead-tag{
    position: relative;
    width: min(100%,24rem);
    margin: 0 auto 0.4rem;
    border-radius: 80px;
    background: var(--green-color01);
    text-align: center;
    color: var(--white-color);
    font-weight: 800;
  }
  .form__lead{
    margin-bottom: 4rem;
    text-align: center;
    color: var(--white-color);
  }
  .form__title{
    margin-bottom: 2.4rem;
    color: var(--white-color);
  }
  .form__body{
    background: var(--white-color);
    border-radius: 32px;
    padding: 6.4rem;
  }
  .form__table{
    width: 100%;
  }

  .form__list{
    margin-bottom: 0.8rem;
    gap: 2rem 4rem;
  }
  .form__label{
    width: 35%;
    margin-bottom: 0;
  }
  .form__label-title{
    font-size: 1.8rem;
  }
  .form__value{
    width: calc(65% - 4rem);
    margin-bottom: 0;
    font-size: 1.8rem;
  }

  .form__badge{
    position: relative;
    top: -0.2rem;
    display: inline-block;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    line-height: 1;
    font-size: 1.3rem;
    color: var(--white-color);
  }
  .form__badge--req{
    background: var(--red-color02);
  }
  .form__badge--any{
    background: #9FA1A6;
  }

  .form__value--check{
    gap: 0.4rem 1.6rem;
  }

  .form__privacy-text{
    margin-bottom: 2.4rem;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    color: #666;
  }
  .form__privacy-text a{
    text-decoration: underline;
    color: inherit;
    font-weight: inherit;
  }
  .form__privacy-text a:hover{
    text-decoration: none;
  }

  .form__submit{
    display: block;
    width: min(88%,36rem);
    margin: auto;
    padding: 2rem 4rem;
    border-radius: 80px;
    background: var(--red-color01);
    line-height: 1;
    text-align: center;
    color: var(--white-color);
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.3s;
  }
  .form__submit:hover{
    transform: scale(1.025);
    background: var(--red-color02);
  }

}








/*
#company
--------------------------------------------------------*/
.company__inner{
  width: min(100%,128rem);
}
.company__body{
  margin-bottom: 2.4rem;
  gap: 2.4rem;
}
.company__title{
  margin-bottom: 2.4rem;
}
.company__img{
  width: 100%;
  margin-left: calc(50% - 50vw);
  height: 20rem;
  overflow: hidden;
  border-radius: 0 32px 32px 0;
}
.company__img img{
  object-fit: cover;
  object-position: center center;
  display: block;
}

.company__table{
  width: 100%;
  border-collapse: separate;
}
.company__table-label{
  width: 36%;
  background: var(--bg-light-blue);
  border-radius: 8px;
  border: 2px solid var(--white-color);
  padding: 0.8rem;
  line-height: 1.35;
  text-align: left;
  color: var(--main-color);
  font-weight: 700;
}
.company__table-value{
  border: 4px solid var(--white-color);
  padding: 0.8rem 0 0.8rem;
  vertical-align: middle;
}

.business-item{
  position: relative;
  padding-left: 1.6rem;
}
.business-item::before{
  position: absolute;
  top: 0.7rem;
  left: 0;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--sub-color);
}

.company__img-list{
  width: 100%;
  margin: auto;
  justify-content: center;
  gap: 0.8rem;
}
.company__img-item{
  width: calc((100% - 0.8rem) / 2);
  overflow: hidden;
  border-radius: 0;
}
.company__img-item img{
  aspect-ratio: 392 / 242;
  object-fit: cover;
}

@media screen and (min-width:751px){
  .company__inner{
    width: min(100%,128rem);
  }
  .company__body{
    margin-bottom: 4rem;
    gap: 6.4rem;
  }
  .company__title{
    margin-bottom: 4rem;
  }
  .company__img{
    width: 48%;
    height: auto;
    margin: 0.6rem 0 0;
    border-radius: 0;
  }

  .company__table{
    width: calc(52% - 6.4rem);
    border-collapse: separate;
  }
  .company__table-label{
    width: 35%;
    background: var(--bg-light-blue);
    border-radius: 8px;
    border: 2px solid var(--white-color);
    padding: 0.4rem 1.2rem;
    text-align: left;
    font-size: inherit;
    color: var(--main-color);
    font-weight: 700;
  }
  .company__table-value{
    border: 4px solid var(--white-color);
    padding: 0.4rem 0.8rem;
    font-size: inherit;
  }

  .business-item{
    position: relative;
    padding-left: 1.6rem;
  }
  .business-item::before{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: var(--sub-color);
  }

  .company__img-list{
    width: min(100%,1800px);
    margin: auto;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.8rem;
  }
  .company__img-item{
    width: calc((100% - 2.4rem) / 4);
    overflow: hidden;
  }
  .company__img-item img{
    aspect-ratio: 392 / 242;
    object-fit: cover;
  }
}



