@charset "utf-8";

html {
    scroll-behavior: smooth;
}

body {
    font-size: clamp(14px, 1.04vw, 18px); /*15*/
    line-height: 1.5;
    color: #fff;
    background-color: #1D2242;
}

@media (max-width: 480px) {
    body {
        padding-bottom: 48.75px;
    }
}

/*------------------------------------------------
   #lp__fv
--------------------------------------------------*/
#lp__fv {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 36 / 19;
    padding: 2.2% 3.6%;
    background-image: url(../img/lp/fv-bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.lp__in {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url(../img/lp/fv-inner-frame.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    text-align: center;
}

.lp__in h1 {
    width: 10.27vw;
}

.fv__textContents {
    text-align: center;
}

.fv__mainCopy {
    display: inline-block;
    margin: clamp(2rem, 5vw, 10rem) auto clamp(2rem, 4vw, 8rem);
    color: #fff;
    font-size: clamp(32px, 4.16vw, 100px);
    font-weight: 900;
    line-height: 1em;
    opacity: 0;
}

.fv__mainCopy > span {
    font-size: clamp(18px, 1.66vw, 40px);
    font-weight: 500;
}

.fv__textInner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: clamp(1.5rem, 2.2vw, 5rem) clamp(1.5rem, 3vw, 10rem);
    color: #1D2242;
    background-color: #ffffffcc;
    opacity: 0;
    transform: translateY(15px);
}

.fv__textInner h2 {
    font-size: clamp(16px, 1.4vw, 32px);
    font-weight: 600;
    text-align: center;
}

.fv__textInner h2 > br {
    display: none;
}

.fv__textInner p {
    margin: 1.2em auto;
    font-size: clamp(22px, 2.2vw, 48px);
    font-weight: 700;
    text-align: center;
    opacity: 0;
}

.lp__in > button {
    position: absolute;
    right: 0;
    bottom: 5%;
    width: 19.4vw;
    height: 5.55vw;
    background-image: linear-gradient(90deg, #0e0d35, #524b8f 50%, #548ec0);
    /*アニメーション用*/
    overflow: hidden;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center right;
}

.lp__in > button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ffffff80,  transparent);
  transform: skewX(-30deg); 
  z-index: 2;
  -webkit-animation: shine-animation 5s ease-in-out 2s infinite;
  animation: shine-animation 5s ease-in-out 2s infinite;
  
}
@-webkit-keyframes shine-animation {
  0% {
    left: -100%;
  }
  90% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes shine-animation {
  0% {
    left: -100%;
  }
  90% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.lp__in > button a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: clamp(20px, 2.2vw, 48px);
    line-height: 5.55vw;
    white-space: nowrap;
    text-align: center;
    transition: 0.3s;
}

.lp__in > button a:hover,
.lp__in > button a:active,
.lp__in > button a:focus {
    opacity: 0.5;
    transition: 0.3s;
}

.lp__in > .scroll {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 80%;
    font-weight: 700;
}
.lp__in > .scroll > span {
    display: block;
    width: 1px;
    height: 40px;
    margin-top: 10px;
    background-color: #fff;
    -webkit-animation: scroll-anime 2.5s infinite;
    animation: scroll-anime 2.5s infinite;
}
@-webkit-keyframes scroll-anime {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes scroll-anime {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/**/
#lp__fv .lp__in.animation-on .fv__mainCopy {
    opacity: 1;
    transition: 1s;
    transition-delay: 0.5s;
}
#lp__fv .lp__in.animation-on .fv__textInner {
    opacity: 1;
    transform: translateY(0);
    transition: 1s;
    transition-delay: 1.5s;
}
#lp__fv .lp__in.animation-on .fv__textInner p {
    opacity: 1;
    transition: 2.2s;
    transition-delay: 2.6s;
}
#lp__fv .lp__in.animation-on button {
    opacity: 1;
    transform: scaleX(1);
    transition: 0.6s;
    transition-delay: 4s;
}

@media (max-width: 896px) {
    #lp__fv {
        aspect-ratio: 36 / 32;
        background-size: cover;
    }
    .lp__in {
        background-image: url(../img/lp/fv-inner-frame-tab.svg);
    }
    .fv__mainCopy {
        margin: clamp(2rem, 10vw, 10rem) auto clamp(2rem, 5vw, 8rem);
    }
    .fv__textInner {
        width: 75%;
    }    
    .fv__textInner h2 > br {
        display: block;
    }
    .lp__in > button {
        position: static;
        width: 30vw;
        height: 7vw;
        margin-top: 5%;
    }
    .lp__in > button a {
        padding: 0 5%;
        line-height: 7vw;
    }
}
@media (max-width: 700px) {
    .fv__mainCopy {
        margin: 5.2vw auto 4.8vw;
    }
    .fv__textInner {
        padding: 2.5vw;
    }
    .fv__textInner p {
        margin: 1em auto 0.5em;
        font-size: clamp(20px, 2.2vw, 48px);
    }
}

@media (max-width: 480px) {
    #lp__fv {
        aspect-ratio: 1 / 1.7;
        background-position: center right 43%;
    }
    .lp__in {
        background-image: url(../img/lp/fv-inner-frame-sp.svg);
    }
    .fv__mainCopy {
        margin: 16% auto;
    }
    .fv__textInner {
        width: 85%;
        padding: 8vw 2.5vw;
    }
    .fv__textInner h2 {
        font-size: 14px;
    }
    .lp__in > button {
        width: 45vw;
        height: 15vw;
        margin-top: 10%;
    }
    .lp__in > button a {
        line-height: 15vw;
    }
    .lp__in > .scroll {
        bottom: 2%;
    }
}

/*------------------------------------------------
   #lpコンテンツ幅用inner
--------------------------------------------------*/
.lp__inner {
    width: 86%;
    max-width: 1140px;
    padding: 0 25px;
    margin: auto;
    position: relative;
}
@media (max-width: 896px) {
    .lp__inner {
        width: 100%;
    }
}

/*------------------------------------------------
   #lp__about
--------------------------------------------------*/
#lp__about {
    padding: 5rem 0;
    text-align: center;
    color: #fff;
    background: radial-gradient(#593d7b 0%, #1d2242 70%);
}

#lp__about .lp__inner h2 {
    position: relative;
    display: inline-block;
    font-size: clamp(24px,1.66vw, 42px);
    margin-bottom: 2em;
    line-height: 2.4em;
}
#lp__about .lp__inner h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background-color: #fff;
}

#lp__about .lp__inner p {
    line-height: 2.2em;
}

#lp__about .lp__inner p:first-of-type {
    margin-bottom: 2em;
}

/*改行制御*/
#lp__about .lp__inner p > br.br__tab {
    display: none;
}

#lp__about .lp__inner p > br.br__sp {
    display: none;
}

@media (max-width: 700px) {
    #lp__about .lp__inner p > br.br__tab {
        display: block;
    }
}

@media (max-width: 480px) {
    #lp__about .lp__inner p {
        line-height: 2em;
    }
    #lp__about .lp__inner p > br.br__sp {
        display: block;
    }
}


/*------------------------------------------------
   #lp__member
--------------------------------------------------*/
#lp__member{
    padding: 5rem 0;
    background-image: url(../img/lp/member-container-bg1.svg), url(../img/lp/member-container-bg2.svg);
    background-size: contain;
    background-position: center top 40%, center bottom 0;
    background-repeat: no-repeat;
}

#lp__member .lp__inner h2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: clamp(24px,1.66vw, 42px);
    margin: 0 0 1em auto;
    line-height: 2.4em;
    border-bottom: 3px #F72A57 solid;
}

#lp__member .lp__inner p.subTitle {
    text-align: right;
    font-size: 120%;
}

ul.member__container {/*
    display: flex;
    justify-content: space-between;*/
    display: grid;
    grid-template-columns: repeat(3, 1fr);/*
    grid-template-rows: 2;*/
    -moz-column-gap: 5%;
         column-gap: 5%;
    row-gap: 5rem;
    width: 90%;/*
    margin: 2.5rem 0 5rem;*/
    margin: 2.5rem 0;
}
/*
ul.member__container:last-of-type {
    margin: 2.5rem 0 1rem;
}*/

li.member__item {/*
    width: 28%;*/
    width: auto;
}
li.member__item:nth-of-type(2),
li.member__item:nth-of-type(5) {
    margin-top: 45px;
}
li.member__item:nth-of-type(3),
li.member__item:nth-of-type(6) {
    margin-top: 90px;
}


.member__item > .imgWrap {
    margin-bottom: 0.5rem;
}

.member__item > .imgWrap figure {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 267 / 407;
}

.member__item > .imgWrap figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.member__item > .imgWrap figure figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 3%;
    background-color: #1d2242;
}
/*
.member__item > .imgWrap figure figcaption.long > .company {
    text-align: left;
    font-size: 86%;
}*/
.member__item > .imgWrap figure figcaption .company {
    width: 100%;
    text-align: center;
    font-size: 90%;
}
.member__item > .imgWrap figure figcaption .company span {
    display: inline-block;
    text-align: left;
}

.member__item > .imgWrap figure figcaption .name {
    font-size: clamp(24px, 1.66vw, 28px);
    line-height: 1.8em;
    text-align: center;
}

.member__item > .discWrap h4 {
    color: #F72A57;
}

@media (min-width: 1900px) {
    #lp__member{
        background-image: url(../img/lp/member-container-bg1-wide.svg), url(../img/lp/member-container-bg2-wide.svg);
        background-size: contain;
        background-position: center top 35%, center bottom 0%;
        background-repeat: no-repeat;
    }
}

@media (max-width: 896px) {
    #lp__member{
        background-image: url(../img/lp/member-container-bg1-tab.svg), url(../img/lp/member-container-bg2-tab.svg);
    }
    ul.member__container {
        width: 100%;
    }
    .member__item > .imgWrap figure figcaption .name {
        font-size: clamp(17px, 2.2vw, 24px);
    }
}

@media (max-width: 700px) {
    #lp__member{
        background-image: url(../img/lp/member-container-bg-sp.svg),url(../img/lp/member-container-bg-sp.svg);
        background-position: center bottom calc(50% + 15%), center bottom 0%;
    }
    #lp__member .lp__inner p.subTitle {
        font-size: 110%;
    }
    ul.member__container {/*
        display: block;*/
        grid-template-columns: repeat(2, 1fr);/*
        grid-template-rows: 3;*/
        row-gap: 2.5rem;
        margin: 3rem 0;
    }
    li.member__item {/*
        width: 70%;*/
        margin: 0 auto;
    }
    .member__item > .imgWrap {
        -webkit-filter: drop-shadow(#cccccc4d 0 2px 15px);
                filter: drop-shadow(#cccccc4d 0 2px 15px);
    }
    li.member__item:nth-of-type(3),
    li.member__item:nth-of-type(5) {
        margin-top: 0;
    }
    li.member__item:nth-of-type(4),
    li.member__item:nth-of-type(6) {
        margin-top: 45px;
    }/*
    .member__item > .imgWrap figure figcaption.long > .company {
        text-align: center;
    }*/
    .member__item > .imgWrap figure figcaption .name {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    #lp__member .lp__inner p.subTitle {
        text-align: left;
    }
    .member__item > .imgWrap figure figcaption .company {
        font-size: 95%;
    }

    /**/
    ul.member__container {/*
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        column-gap: 0;*/
        display: block;
    }
    li.member__item {
        position: relative;
        margin-top: 0;
        padding-top: 2rem;
        padding-top: 3rem;
    }
    li.member__item:first-of-type {
        padding-top: 0;
    }
    .member__item > .imgWrap {
        -webkit-filter: none;
                filter: none;
    }
    .member__item > .imgWrap figure {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        aspect-ratio: inherit;
    }
    .member__item > .imgWrap figure img {
        width: 40%;
        height: auto;
        aspect-ratio: 267 / 407;
    }
    .member__item > .imgWrap figure figcaption {
        bottom: auto;
        top: 0;
        left: 45%;
        width: 55%;
        padding: 0;
        background-color: transparent;
    }
    .member__item > .imgWrap figure figcaption .company,
    .member__item > .imgWrap figure figcaption .name {
        text-align: left;
    }
    .member__item > .discWrap {
        position: absolute;
        top: 3.5rem;
        right: 0;
        width: 55%;
    }
    .member__item > .discWrap p {
        font-size: 12px;
    }
    /*偶数用*/
    .member__item:nth-of-type(2n) > .imgWrap figure {
        text-align: right;
    }
    .member__item:nth-of-type(2n) > .imgWrap figure figcaption {
        left: auto;
        right: 45%;
    }
    .member__item:nth-of-type(2n) > .discWrap {
        right: auto;
        left: 0;
    }
    /*個別用*/
    li.member__item:nth-of-type(2), li.member__item:nth-of-type(3), li.member__item:nth-of-type(4),
    li.member__item:nth-of-type(5),li.member__item:nth-of-type(6) {
        margin-top: 0;
    }
    li.member__item:nth-of-type(2) > .discWrap, li.member__item:nth-of-type(3) > .discWrap,
    li.member__item:nth-of-type(5) > .discWrap {
        top: 7.75rem;
    }
    li.member__item:nth-of-type(4) > .discWrap, 
    li.member__item:nth-of-type(6) > .discWrap {
        top: 6.5rem;
    }
}


    /**/



    /*    
    ul.member__container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        column-gap: 0;
    }
    li.member__item {
        position: relative;
    }
    .member__item > .imgWrap {
        -webkit-filter: none;
                filter: none;
    }
    .member__item > .imgWrap figure {
        width: 40%;
    }
    .member__item > .imgWrap figure figcaption {
        left: calc(100% + 1rem);
        bottom: auto;
        top: 0;
        width: 150%;
        background-color: transparent;
    }
    .member__item > .imgWrap figure figcaption .company,
    .member__item > .imgWrap figure figcaption .name {
        text-align: left;
    }
    .member__item > .discWrap {
        position: absolute;
        left: 45%;
        top: 4rem;
        width: 55%;
    }*/



/*------------------------------------------------
   #growth_appeal
--------------------------------------------------*/
#growth__appeal {
    position: relative;
    margin-top: -10rem;
    padding: calc(10rem + 5rem) 0 5rem;
    font-size: clamp(24px, 2.2vw, 48px);
    text-align: center;
    line-height: 2;
}
#growth__appeal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/lp/growth-appeal-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

#growth__appeal p.intro {
    margin-bottom: 0.5em;
}

#growth__appeal p.intro span.underline {
    position: relative;
    font-size: 125%;
    font-weight: 700;
}
#growth__appeal p.intro span.underline::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #0E0D35, #524B8F, #548EC0);
    z-index: -1;
}

#growth__appeal h2 {
    font-size: clamp(24px, 2.2vw, 48px);
    font-weight: 500;
    white-space: nowrap;
}

#growth__appeal h2 span.highlight {
    position: relative;
    padding: 0 0.4em;
    font-size: 125%;
    font-weight: 700;
    color: #F72A57;
}
#growth__appeal h2 span.highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-clip-path: polygon(0.3em 0, 100% 0, calc(100% - 0.3em) 100%, 0 100%);
            clip-path: polygon(0.3em 0, 100% 0, calc(100% - 0.3em) 100%, 0 100%);
    z-index: -1;
}

ul.benefit__list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 5rem auto;
    text-align: left;
}

li.benefit__text {
    position: relative;
    margin-bottom: 1.5em;
    line-height: 1.5;
}
li.benefit__text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1em;
    transform: translateY(-45%);
    width: 2em;
    height: 2em;
    width: 70px;
    height: 70px;
    border: #ffffff80 1px solid;
    border-radius: 50%;
}

li.benefit__text span{
    font-size: 125%;
    font-weight: 700;
}

.summary__text {
    width: 100%;
    margin: 0 auto;
    font-size: clamp(18px, 1.66vw, 40px);
    line-height: 2;
    text-align: left;
}

#growth__appeal .br__sp {
    display: none;
}

@media (max-width: 896px) {
    #growth__appeal,
    #growth__appeal h2 {
        font-size: clamp(18px, 1.4vw, 24px);
    }
    .summary__text {
        font-size: inherit;
    }
}
@media (max-width: 480px) {
    #growth__appeal p.intro {
        text-align: center;
    }
    li.benefit__text {
        margin-bottom: 2.5em;
    }
    #growth__appeal .br__sp {
        display: block;
    }
}


/*------------------------------------------------
   #seminars-history
--------------------------------------------------*/
#seminars-history {
    padding: 5rem 0;
    color: #1D2242;
    background-color: #ECE9F2;
}

#seminars-history .lp__inner {
    width: 90%;
    max-width: 1400px;
    padding: 0 25px;
}

#seminars-history h2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 2.5rem;
    padding: 0 1em;
    font-size: clamp(24px, 2.2vw, 48px);
    line-height: 2;
    color: #1D2242;
    background-color: #fff;
}

ul.seminars__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 40px;
    width: 100%;
}

li.seminars__item figure {
    width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

li.seminars__item figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

li.seminars__item figcaption {
    text-align: center;
    font-size: clamp(8px, 0.9vw, 16px);
    line-height: 1.4;
}

li.seminars__item figcaption p.name {
    font-size: clamp(12px, 1.1vw, 20px);
    font-weight: 500;
    line-height: 1.8;
}

li.seminars__item figcaption p.name span {
    font-size: 67.5%;
}

li.long figcaption p.company {
    text-align: left;
}

@media (max-width: 896px) {
    #seminars-history .lp__inner {
        width: 100%;
    }    
    ul.seminars__list {
        grid-template-columns: repeat(3, 1fr);
        grid-column-gap: 24px;
        grid-row-gap: 16px;
    }
    li.seminars__item figure {
        margin-bottom: 0.25rem;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 480px) {
    #seminars-history h2 {
        margin: 0 auto 1.5rem;
        font-size: clamp(20px, 2.2vw, 48px);
    }
    ul.seminars__list {
        grid-column-gap: 12px;
        grid-row-gap: 12px;
    }
    li.seminars__item figcaption {
        text-align: left;
    }
    li.seminars__item figcaption p.company,
    li.seminars__item figcaption p.title {
        display: inline;
    }
    li.seminars__item figcaption p.name {
        line-height: 1.4;
        text-align: center;
    }
}


/*------------------------------------------------
   #merit
--------------------------------------------------*/
#merit {
    padding: 10rem 0 5rem;
}

#merit h2 {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 5rem;
    padding: 0 2.6em;
    text-align: center;
    line-height: 4.5em;
    font-size: clamp(24px, 2.2vw, 48px);
    text-wrap: nowrap;
    white-space: nowrap;
}
#merit h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/lp/merit-h2-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.1;
    z-index: -1;
}

#merit h2 br {
    display: none;
}

.meritintro__text,
.meritintro__list {
    width: 86%;
    margin: 0 auto;
    font-size: clamp(18px, 1.4vw, 24px);
    line-height: 2;
}

.meritintro__list {
    display: flex;
    justify-content: space-between;
    margin: 5rem auto;
    font-size: clamp(18px, 1.66vw, 32px);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.meritintro__list span {
    font-size: 200%;
    font-weight: 400;
}

.merit__item {
    position: relative;
    width: 100%;
}

.merit__item .lp__inner {
    padding: 6.25rem 0;
}

.merit__item .item__title {
    display: flex;
    align-items: center;
}

.merit__item .item__title p.number {
    width: 5rem;
    margin-right: 1rem;
    text-align: center;
    line-height: 2.5em;
}
.merit__item .item__title p.number span {
    font-size: 200%;
}

.merit__item .item__title div.item__title-text {
    width: auto;
    padding-left: 1rem;
    border-left: #fff 1px solid;
}

div.item__title-text h3 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0.5em;
    padding: 0 0.5em;
    color: #1d2242;
    background-color: #fff;
    font-size: clamp(28px, 2.77vw, 48px);
    line-height: 1.4em;
}
div.item__title-text h3 br {
    display: none;
}

div.item__title-text p {
    font-size: clamp(20px, 2.2vw, 40px);
    line-height: 1.4em;
}


.item__text {
    width: 86%;
    max-width: 850px;
    margin: 3.75rem auto 3.75rem 7rem;
    font-size: clamp(14px, 1.25vw, 20px);
    line-height: 2.2em;
}

/*メリット1*/
.merit__item-1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/lp/merit-1-bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    opacity: 0.5;
}

/*メリット2*/
.merit__item-2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/lp/merit-2-bg.svg);
    background-repeat: no-repeat;
    background-size: 26% auto;
    background-position: top 6.25rem right 5%;
    opacity: 0.5;
}

.merit__item-2 .item__text {
    max-width: 650px;
}

.programs {
    margin: 11rem 0 0;
    padding: 3.125rem 4rem;
    color: #1D2242;
    background-color: #ECE9F2;
}

.programs h4 {
    margin-bottom: 3.125rem;
    font-size: clamp(18px, 1.66vw, 32px);
    text-align: center;
}

.programs__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
}

.programs__list li figcaption {
    margin-top: 0.8em;
}

.programs__list li figcaption h5 {
    font-size: clamp(16px, 1.4vw, 24px);
    line-height: 1.4em;
}

/*メリット3*/
.merit__item-3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/lp/merit-3-bg.svg);
    background-repeat: no-repeat;
    background-size: 26% auto;
    background-position: top 6.25rem right 5%;
    opacity: 0.5;
}

.merit3__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8.75rem;
    padding-left: 6rem;
}

.merit3__info {
    width: 60%;
    max-width: 630px;
}

.merit3__info h4 {
    text-align: center;
    font-size: clamp(18px, 1.66vw, 32px);
    font-weight: 500;
    line-height: 2;
}

.merit3__info .info__list {
    padding: 4rem 1rem;
    text-align: center;
    border: #fff 1px solid;
}

.merit3__info .info__list li {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 3rem;
    padding-left: 2.3em;
    font-size: clamp(20px, 2.2vw, 32px);
    line-height: 1.2;
    text-wrap: nowrap;
}
.merit3__info .info__list li:last-of-type {
    margin-bottom: 0;
}
.merit3__info .info__list li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: auto;
    aspect-ratio: 1 / 1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    opacity: 0.5;
}
.merit3__info .info__list li:first-of-type::before {
    background-image: url(../img/lp/info-icon-1.png);
}
.merit3__info .info__list li:nth-of-type(2)::before {
    background-image: url(../img/lp/info-icon-2.png);
}
.merit3__info .info__list li:last-of-type::before {
    background-image: url(../img/lp/info-icon-3.png);
}

.merit3__info .info__list li br {
    display: none;
}

.merit3__info .info__list li span.large {
    font-size: 225%;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(#C0AC3A, #F8F2D2, #9F8909);
    -webkit-background-clip: text;
            background-clip: text;
}
.merit3__info .info__list li span.gold {
    font-weight: 700;
    color: transparent;
    background: linear-gradient(#C0AC3A, #F8F2D2, #9F8909);
    -webkit-background-clip: text;
            background-clip: text;
}

.merit3__inner .item__text {
    margin: 0 0 0 2.5rem;
}

@media (min-width: 1920px) {
    .meritintro__text,
    .meritintro__list {
        width: 100%;
    }
    .item__text,.merit__item-2 .item__text {
        max-width: none;
    }
    .merit__item-2::before, .merit__item-3::before {
        background-size: 20% auto;
        background-position: top 6.25rem right 15%;
    }
}
@media (max-width: 1024px) {
    .programs__list {
        grid-column-gap: 2.25rem;
        grid-row-gap: 2rem;
    }
}
@media (max-width: 896px) {
    .merit__item .lp__inner {
        padding: 6.25rem 25px 2.5rem;
    }
    .item__text {
        width: 100%;
        margin: 3.75rem auto 3.75rem 0;
    }
    .merit__item-1::before {
        width: 100%;
        height: 80%;
    }
    .merit__item-2::before {
        background-position: top 10rem right 5%;
    }
    .merit__item-3::before {
        background-size: 30% auto;
        background-position: top 10.5rem right 5%;
    }
    .merit__item-2 .item__text {
        max-width: none;
    }
    .programs {
        margin: 5rem 0 0;
        padding: 3.125rem 2rem;
    }
    .programs h4 {
        margin-bottom: 2rem;
    }
    .programs__list li figcaption {
        margin-top: 0.5em;
    }
    div.item__title-text p {
        font-size: 22px;
    }
    .merit3__inner {
        padding-left: 0;
    }
    .merit3__info .info__list {
        padding: 2rem 1rem;
    }
    .merit3__info .info__list li::before {
        width: 60px;
    }
}
@media (max-width: 700px) {
    .meritintro__text,
    .meritintro__list {
        width: 100%;
        font-size: clamp(14px, 1.25vw, 20px);
    }
    .meritintro__list {
        margin: 2rem auto 5rem;
    }
    .programs__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .merit__item .item__title p.number {
        font-size: 70%;
    }
    div.item__title-text p br {
        display: none;
    }
    .merit__item-3::before {
        background-position: top 12.5rem right 5%;
    }
    .merit3__inner {
        display: block;
        margin-top: 7.5rem;
    }
    .merit3__info {
        width: 100%;
        max-width: 630px;
    }
    .merit3__inner .item__text {
        margin: 2rem auto 0;
    }
}

@media (max-width: 600px) {
    .merit__item .item__title {
        display: block;
    }
    .merit__item .item__title p.number {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        padding-bottom: 0.5rem;
        font-size: 80%;
        line-height: 2em;
        border-bottom: #fff 1px solid;
    }
    .merit__item .item__title div.item__title-text {
        padding-top: 2rem;
        padding-left: 0;
        border-left: none;
    }
    .merit__item-2::before {
        background-size: 35% auto;
        background-position: top 18rem right 5%;
    }
    .merit__item-3::before {
        background-position: top 18.5rem right 5%;
    }
}


@media (max-width: 480px) {
    #merit h2 {
        margin: 0 auto 2.5rem;
        padding: 0.5em 2.5em;
        line-height: 1.4em;
        font-size: 22px;
    }
    #merit h2 br {
        display: block;
    }
    .meritintro__list {
        display: block;
        font-size: clamp(18px, 1.66vw, 32px);
    }
    .merit__item .lp__inner {
        padding: 2.5rem 25px;
    }
    .merit__item .lp__inner:last-of-type {
        padding: 2.5rem 25px 0;
    }
    .item__text {
        margin: 2.5rem auto 0;
    }
    .merit__item .item__title div.item__title-text {
        padding-top: 1rem;
    }
    div.item__title-text h3 {
        width: 100%;
        text-align: center;
        padding: 0.2em 0.5em;
        font-size: 24px;
        line-height: 1.2em;
    }
    div.item__title-text h3 br {
        display: block;
    }
    div.item__title-text p {
        font-size: 18px;
        line-height: 1.6em;
    }
    .merit__item-1::before {
        width: 75%;
        height: 100%;
        left: auto;
        right: 0;
    }
    .merit__item-2::before {
        background-size: 40% auto;
        background-position: top 16rem right 5%;
    }
    .merit__item-3::before {
        background-position: top 13rem right 5%;
    }
    .programs {
        margin: 3rem 0 0;
        padding: 2.5rem 1rem;
    }
    .programs__list {
        grid-column-gap: 1.3rem;
        grid-row-gap: 1.8rem;
    }
    .merit3__inner {
        margin-top: 3rem;
    }
    .merit3__info h4 {
        font-size: 13px;
    }
    .merit3__info .info__list li {
        transform: translateX(-0.5rem);
        margin: 0 auto 2rem;
        padding-left: 2.3em;
    }
    .merit3__info .info__list li br {
        display: block;
    }
}


@media (max-width: 365px) {
    .merit__item-3::before {
        background-size: 45% auto;
        background-position: top 14rem right 5%;
    }
}

/*------------------------------------------------
   #cta
--------------------------------------------------*/
#cta {
    position: relative;
    width: 100%;
    height: auto;
    padding: 5rem 0;
    background-image: url(../img/lp/cta-bg.jpg);
    background-repeat: no-repeat;
    background-position: top right 20%;
    background-size: cover;
    z-index: auto;
}
#cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0E0D35, #524B8F, #548EC0);
    opacity: 0.9;
}

#cta .lp__inner {
    width: 100%;
    text-align: center;
    font-weight: 700;
    z-index: 1;
}

#cta .lp__inner h2, .cta__subtext {
    font-size: clamp(20px, 2.2vw, 40px);
}

.cta__subtext {
    margin: 1em auto 2em;
}

.guidance__offer {
    display: inline-block;
    position: relative;
    font-size: clamp(28px, 2.77vw, 48px);
    line-height: 1.4em;
    -webkit-filter: drop-shadow(#ffffff80 0 4px 10px);
            filter: drop-shadow(#ffffff80 0 4px 10px);
}
.guidance__offer::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.4em;
    background-color: #1d2242;
    z-index: -1;
}

.guidance__offer span {
    font-size: 150%;
}

.guidance__offer br {
    display: none;
}

.cta__button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 2.5rem auto 0;
    color: #fff;
    background-color: #F72A57;
    border-radius: 50rem;
    transition: 0.3s;
}
.cta__button a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2.5rem 5rem;
    border-radius: 50rem;
}

.cta__button a p {
    position: relative;
    padding-right: 1.5em;
    color: #fff;
    font-size: clamp(28px, 2.77vw, 48px);
}
.cta__button a p::before {
    content: "▶";
    position: absolute;
    top: 10%;
    right: 0;
    font-size: 80%;
}

.cta__button a p br {
    display: none;
}

.cta__button:hover,
.cta__button:active,
.cta__button:focus {
    opacity: 0.7;
    transform: scale(0.98);
    transform-origin: center;
    transition: 0.5s;
}

@media (max-width: 896px) {
    .guidance__offer, .cta__button a p {
        font-size: 4.1vw; /*20px*/
    }
    .cta__button a {
        padding: 2rem 3rem;
    }
}

@media (max-width: 480px) {
    .guidance__offer {
        font-size: 22px;
    } 
    .guidance__offer br {
        display: block;
    }    
    .cta__button a {
        padding: 1.2em 1.2em 1.2em 2em;
    }
    .cta__button a p {
        font-size: 20px;
        padding-right: 1.5em;
    }
    .cta__button a p::before {
        top: 50%;
        transform: translateY(-50%);
    }
    .cta__button a p br {
        display: block;
    }
    .cta__button a p span {
        font-size: 26px;
    }
}

@media (max-width: 352px) {
    .guidance__offer {
        font-size: 20px;
    } 
    .cta__button a p {
        font-size: 17px;
    }
}

/*------------------------------------------------
   #lp__aboutAccelerator
--------------------------------------------------*/
#lp__aboutAccelerator {
    width: 100%;
    height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
}

#lp__aboutAccelerator h2 {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: inherit;
}

#lp__aboutAccelerator h2 span {
    font-size: 125%;
    border-bottom: #fff 1px solid;
}

.accelerator__linkWrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 2.5rem;
    background-color: #ECE9F2;
    transition: 0.3s;
}

.accelerator__linkWrap:hover,
.accelerator__linkWrap:active,
.accelerator__linkWrap:focus {
    opacity: 0.7;
    transform: scale(0.98);
    transform-origin: center;
    transition: 0.5s;
}

.accelerator__linkWrap a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 1rem 4rem;
}
.accelerator__linkWrap a::before {
    content: "▶";
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    color: #F72A57;
    font-size: 150%;
}

.accelerator__linkWrap p, 
.accelerator__linkWrap h3 {
    color: #F72A57;
    font-size: clamp(18px, 1.4vw, 24px);
    font-weight: 700;
}

.accelerator__linkWrap p.title br {
    display: none;
}

.accelerator__linkWrap h3 {
    margin: 0.5rem 0;
    font-size: clamp(28px, 2.77vw, 48px);
}

#lp__aboutAccelerator p:last-child {
    font-size: clamp(14px, 1.4vw, 24px);
}

#lp__aboutAccelerator p:last-child br {
    display: none;
}

@media (max-width: 520px) {
    .accelerator__linkWrap a {
        padding: 1rem 2rem;
    }
    .accelerator__linkWrap a::before {
        font-size: 100%;
    }
}

@media (max-width: 480px) {
    .accelerator__linkWrap {
        width: 100%;
    }
    .accelerator__linkWrap a {
        padding: 1rem 0.5rem;
    }
    .accelerator__linkWrap a::before {
        top: auto;
        bottom: 1rem;
        right: 0.5rem;
        transform: none;
    }
    .accelerator__linkWrap p.title {
        font-size: 16px;
    }
    .accelerator__linkWrap p.title br {
        display: block;
    }
    .accelerator__linkWrap h3 {
        margin: 1.5rem 0;
        font-size: 22px;
    }
    #lp__aboutAccelerator p:last-child br {
        display: block;
    }
}

/*------------------------------------------------
   #lp__footer
--------------------------------------------------*/
#lp__footer {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: -5rem;
    background: linear-gradient(to right, #0E0D3580, #524B8F80, #548EC080);
}
#lp__footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    background-image: url(../img/lp/footer-bg.svg);
    background-repeat: no-repeat;
    background-position: left 10% center;
    background-size: auto 80%;
}

#lp__footer .footer__content {
    position: relative;
    max-width: 1440px;
    margin: 5rem auto;
    padding-top: 5rem;
}

#lp__footer .footer__content p {
    text-align: center;
}

#lp__footer .footer__content p img {
    width: 90%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
}

#lp__footer .copy {
    width: 100%;
    height: 50px;
    text-align: center;
    align-content: center;
    background-color: #363636;
}

@media (max-width: 480px) {
    #lp__footer::before {
        height: calc(100% - 25px);
        background-size: 80% auto;
        background-position: center;
    }
    #lp__footer .footer__content p img {
        width: 100%;
    }
    #lp__footer .copy {
        height: 25px;
        font-size: 80%;
    }
}


/*------------------------------------------------
   #sticky__ctaBanner 追従CTA
--------------------------------------------------*/
#sticky__ctaBanner {
    position: fixed;
    bottom: 10rem;
    right: 0;
    width: auto;
    height: auto;
    color: #fff;
    background-color: #F72A57;
    text-align: center;
    border-radius: 5px 0 0 5px;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    z-index: 10000;

    transform: translateX(100%); 
    transition: transform 0.3s ease-out;
}

#sticky__ctaBanner:hover {
    opacity: 0.7;
}

#sticky__ctaBanner a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
}

#sticky__ctaBanner a p span {
    display: none;
}

#sticky__ctaBanner.is-scrolled {
    transform: translateX(0);
}

@media (max-width: 480px) {
    #sticky__ctaBanner {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        -webkit-writing-mode: horizontal-tb;
                writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        border-radius: 0;
        
        transform: translateY(100%); 
        transition: transform 0.3s ease-out; 
    }
    #sticky__ctaBanner a {
        padding: 3px 0;
    }

    #sticky__ctaBanner.is-scrolled {
        transform: translateY(0);
    }
    
    #sticky__ctaBanner a p span {
        display: block;
        font-size: 85%;
    }
}