@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


:root {
    --base-color: #000;
    --wrap: 1178px;

    --pink: #F9518D;
    --blue: #0294EB;
    --yellow: #FFF100;

    --transition: .2s;
}

/* common-css */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

input::placeholder {
    color: #ccc;
}

input::-ms-input-placeholder {
    color: #ccc;
}

input:-ms-input-placeholder {
    color: #ccc;
}

body {
    min-width: 1200px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: #000;
    font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body.home .wrap,
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
}

a {
    transition: .2s;
    text-decoration: none;
}

a:hover {
    opacity: .6;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.ps-re {
    position: relative;
    z-index: 0;
}

.ps-ab {
    position: absolute;
}

br.s-up {
    display: none;
}



/* FADEIN */
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 600ms;
}

.fadeinr {
    opacity: 0;
    transform: translate(50px, 0);
    transition: all 600ms;
}

.fadeinb {
    opacity: 0;
    transform: translate(0, -50px);
    transition: all 600ms;
}

.fadeinl {
    opacity: 0;
    transform: translate(-50px, 0);
    transition: all 600ms;
}

.fadeino {
    opacity: 0;
    transition: all 600ms;
}

.ts1 {
    transition-delay: 150ms;
}

.ts2 {
    transition-delay: 300ms;
}

.ts3 {
    transition-delay: 450ms;
}

.ts4 {
    transition-delay: 600ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

.fadeino.scrollin {
    opacity: 1;
}


/* HEADER */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 13px 0;
    transition: .4s;
}

#header .header-inner {
    max-width: 1187px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#header .header-menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 30px;
}

#header .header-menu ul li a {
    color: #fff;
    font-weight: bold;
}

#header .header-btn {
    width: 100%;
    max-width: 398px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

#header .header-btn__item a {
    display: block;
    text-align: center;
    height: 47px;
    line-height: 44px;
    border-radius: 24px;
    font-weight: bold;
    letter-spacing: 0.01em;
    position: relative;
}

#header .header-btn__item.pink a {
    background-color: var(--pink);
    color: #fff;
    border: 1px solid var(--pink);
}

#header .header-btn__item.blue a {
    background-color: #fff;
    color: var(--blue);
    border: 1px solid #fff;
}

#header .header-btn__item a svg {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 12px;
    z-index: 1;
    display: block;
}

#header .header-btn__item a svg * {
    transition: var(--transition);
}

#header .header-btn__item.pink a span {
    transform: translateX(-12px);
    display: inline-block;
}

#header .header-btn__item.blue a span {
    transform: translateX(-7px);
    display: inline-block;
}

/* @media screen and (min-width: 992px) {
    #header .header-btn__item.pink a:hover{
        background-color: #fff;
        color: var(--pink);
        opacity: 1;
    }
    #header .header-btn__item.pink a:hover circle{
        fill: var(--pink);
    }
    #header .header-btn__item.pink a:hover path{
        fill: #fff;
    }
    #header .header-btn__item.blue a:hover{
        background-color: var(--blue);
        color: #fff;
        opacity: 1;
    }
    #header .header-btn__item.blue a:hover circle{
        fill: #fff;
    }
    #header .header-btn__item.blue a:hover path{
        fill: var(--blue);
    }
} */


#header.over {
    background-color: var(--blue);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, .2);
}

/* TOP */
.top-ttl {
    text-align: center;
}

.top-ttl__sub {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.top-ttl__text {
    font-size: 40px;
    line-height: 1.55;
    font-weight: bold;
}

.top-ttl__text--sub {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: var(--blue);
}

.top-ttl__bubble {
    position: relative;
    z-index: 0;
}

.top-ttl__bubble::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    background-color: var(--yellow);
    width: 41px;
    height: 41px;
    border-radius: 50%;
    transition: var(--transition);
    transition-delay: .3s;
}

.top-ttl__bubble.big::before {
    top: 30%;
    width: 60px;
    height: 60px;
}

.top-ttl.scrollin .top-ttl__bubble::before {
    transform: translate(-50%, -50%) scale(1);
}

.mv {
    background: url(../img/top/mv-bg.webp) no-repeat center center / cover;
}

.mv-inner {
    position: relative;
    width: 100%;
    max-width: 1187px;
    height: 515px;
    z-index: 0;
    margin: 0 auto;
    padding-top: 102px;
}

.mv-img {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: -40px;
}

.mv-achievement {
    width: 100%;
    max-width: 447px;
    padding-left: 57px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 15px;
}

.mv-btn {
    margin-top: 33px;
    width: 100%;
    max-width: 468px;
}

.mv-btn a,
.mv-btn button {
    display: block;
    text-align: center;
    height: 74px;
    line-height: 70px;
    border-radius: 53px;
    font-weight: bold;
    font-size: 26px;
    position: relative;
    color: #fff;
    background-color: var(--pink);
    border: 1px solid var(--pink);
}

.mv-btn a img,
.mv-btn button img {
    position: absolute;
    transform: translate(-50%, -100%);
    left: 50%;
    top: 18px;
    z-index: 1;
}

.mv-btn a svg,
.mv-btn button svg {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 23px;
    z-index: 1;
    display: block;
}

.mv-btn a svg *,
.mv-btn button svg * {
    transition: var(--transition);
}

.mv-btn a span,
.mv-btn button span {
    display: inline-block;
    transform: translateX(-14px);
}

@media screen and (min-width: 992px) {

    .mv-btn a:hover,
    .mv-btn button:hover {
        opacity: 1;
        background-color: #fff;
        color: var(--pink);
    }

    .mv-btn a:hover svg circle,
    .mv-btn button:hover svg circle {
        fill: var(--pink);
    }

    .mv-btn a:hover svg path,
    .mv-btn button:hover svg path {
        fill: #fff;
    }
}

.mv-att {
    margin-top: 10px;
}

.mv-att__text {
    font-size: 7px;
    color: #fff;
    line-height: auto;
}


/* MV FORMあり */
.form-mv {
    position: relative;
    z-index: 10;
}

.form-mv .mv-achievement {
    padding-left: 0;
    max-width: 390px;
}

.form-mv .mv-img {
    right: 345px;
}

.mv-form {
    position: absolute;
    top: 100px;
    right: -0;
    background-color: #fff;
    box-shadow: 4px 4px 4px rgb(0 0 0 / .25);
    padding: 24px 18px 0px;
    width: 100%;
    max-width: 411px;
    border-radius: 30px;
    z-index: 10;
}

.mv-form .mv-btn button {
    font-size: 20px;
    width: 100%;
    height: 59px;
    line-height: 56px;
    transition: var(--transition);
}

.mv-form .mv-btn button img {
    width: 133px;
    top: 15px;
}

.mv-form__item:not(:last-of-type) {
    margin-bottom: 5px;
}

.mv-form__item.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mv-form__item input[type="text"],
.mv-form__item input[type="email"],
.mv-form__item input[type="tel"] {
    width: 100%;
    height: 47px;
    border-radius: 24px;
    height: 40px;
    border-radius: 3px;
    box-shadow: inset 0 0 2px rgb(0 0 0 / .25);
    border: 1px solid #f9f9f9;
    -webkit-appearance: none;
    appearance: none;
    font-size: 12px;
    padding: 0 10px;
}

.mv-form__policy {
    margin: 10px 0 5px;
    text-align: center;
    font-size: 11px;
}

.mv-form__policy a {
    text-decoration: underline;
    color: var(--blue);
}

.mv-form__agree {
    text-align: center;
    font-size: 13px;
}

.mv-form__agree input[type="checkbox"] {
    appearance: auto;
    margin-right: 5px;
    position: relative;
    top: -1px;
}


/* INDEX */
.top-trouble {
    padding: 30px 0 180px;
    background: url(../img/top/trouble-bg.webp) no-repeat center center / cover;
}

.top-trouble__ttl {
    margin-bottom: 30px;
    position: relative;
}

.top-trouble__ttl-before,
.top-trouble__ttl-after {
    position: absolute;
    bottom: 10px;
    z-index: -1;
}

.top-trouble__ttl-before {
    left: -5px;
}

.top-trouble__ttl-after {
    right: -5px;
}

.top-trouble__ttl-text span {
    display: block;
    transform: translateX(24px);
}

.top-trouble__cont {
    width: 100%;
    max-width: 805px;
    margin: 0 auto;
}

.top-trouble__cont-flex {
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    margin-bottom: 73px;
}

.top-trouble__cont-flex:last-child {
    margin-bottom: 0;
}

.top-trouble__cont-flex__arrow {
    position: absolute;
    top: 102px;
    left: 240px;
    z-index: 1;
}

.top-trouble__cont-flex__before {
    width: 100%;
    max-width: 276px;
}

.top-trouble__cont-flex__before-text {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    padding: 14px 18px;
    position: relative;
    margin-bottom: 20px;
}

.top-trouble__cont-flex__before-text::before,
.top-trouble__cont-flex__before-text::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
}

.top-trouble__cont-flex__before-text::before {
    top: 0;
    left: 0;
    background: url(../img/top/trouble-parentheses-left.svg) no-repeat center center / contain;
}

.top-trouble__cont-flex__before-text::after {
    bottom: 0;
    right: 0;
    background: url(../img/top/trouble-parentheses-right.svg) no-repeat center center / contain;
}

.top-trouble__cont-flex__before-text span {
    color: var(--blue);
}

.top-trouble__cont-flex__after {
    width: 100%;
    max-width: 439px;
    position: relative;
}

.top-trouble__cont-flex__after-img {
    position: relative;
    z-index: 0;
}

.top-trouble__cont-flex__after-img::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 97.94%;
    height: 96.58%;
    background-color: var(--yellow);
    bottom: -24px;
    right: -24px;
}

.top-trouble__cont-flex__after-img img {
    filter: drop-shadow(4px 4px 4px rgb(0 0 0 / .25));
}

.top-trouble__cont-flex__after-item {
    position: absolute;
    bottom: -52px;
    right: -89px;
    z-index: 1;
}

.top-trouble__cont-flex__after-item__label {
    position: absolute;
    top: -27px;
    left: -21px;
    z-index: 1;
    filter: drop-shadow(1px 1px 4px rgb(0 0 0 / .25));
}

.top-trouble__cont-flex__after-item__text {
    background: #fff linear-gradient(to bottom right, rgb(0 148 235 / .5), #0094EB);
    filter: drop-shadow(4px 4px 6px rgb(0 0 0 / .25));
    color: #fff;
    padding: 35px 25px 35px 35px;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    max-width: 426px;
}

.top-trouble__cont-flex__after-item__text span {
    color: var(--yellow);
}

.top-cta {
    background: #fff linear-gradient(to bottom right, rgb(0 148 235 / .5), #0094EB);
    clip-path: polygon(0 7.8vw, 100% 0, 100% calc(100% - 7.8vw), 0 100%);
    padding: 7.8vw 0;
    margin-top: -6.5vw;
    position: relative;
    z-index: 1;
}

.top-cta__flex {
    max-width: 1042px;
    margin: 0 auto;
    width: 100%;
    align-items: flex-end;
}

.top-cta__flex-img {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(3px 3px 6px rgb(0 0 0 / .25));
}

.top-cta__flex-box {
    padding-left: 53px;
    width: 100%;
    max-width: calc(100% - 450px);
    color: #fff;
}

.top-cta__flex-box__lead {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.388;
    margin-bottom: 17px;
}

.top-cta__flex-box__detail-ttl {
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 12px;
}

.top-cta__flex-box__detail-ttl span::before {
    content: "";
    vertical-align: bottom;
    width: 48px;
    height: 36px;
    background: url(../img/top/cta-illust.svg) no-repeat center center / contain;
    display: inline-block;
    margin-right: 11px;
}

.top-cta__flex-box__detail ul {
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 15px 28px;
}

.top-cta__flex-box__detail ul li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;
    padding-left: 20px;
    position: relative;
}

.top-cta__flex-box__detail ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 0;
}

.top-cta__btn {
    margin: 40px auto 0;
    max-width: 703px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 35px;
}

.top-cta__btn-item a {
    display: block;
    text-align: center;
    font-weight: bold;
    height: 69px;
    line-height: 69px;
    border-radius: 60px;
    position: relative;
}

.top-cta__btn-item a::before {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 20px;
    width: 27px;
    height: 27px;
}

.top-cta__btn-item.pink a {
    background-color: var(--pink);
    color: #fff;
}

.top-cta__btn-item.pink a::before {
    background: url(../img/common/icon-arrow-down-pink.svg) no-repeat center center / contain;
}

.top-cta__btn-item.blue a {
    background-color: #fff;
    color: var(--blue);
}

.top-cta__btn-item.blue a::before {
    background: url(../img/common/icon-arrow-blue.svg) no-repeat center center / contain;
}

.top-cta__btn-item a span {
    display: inline-block;
    transform: translateX(-12px);
}

.top-about__intro {
    background: url(../img/top/about-intro-bg.svg) no-repeat center center / 617px;
    padding: 20px 0;
}

.top-about__ttl {
    margin-bottom: 30px;
}

.top-about__ttl-text span {
    color: var(--blue);
}

.top-about__text {
    text-align: center;
    font-size: 24px;
    line-height: 2;
    font-weight: 500;
}

.top-about__text span {
    color: var(--blue);
    font-weight: bold;
}

.top-about__text strong {
    font-size: 30px;
    font-weight: bold;
    line-height: 2.4;
    display: inline-block;
}

.top-about__text strong::before,
.top-about__text strong::after {
    content: "";
    width: 134px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -4px;
    transform: scale(0);
    transition: var(--transition);
    transition-delay: .3s;
}

.top-about__text strong.scrollin::before,
.top-about__text strong.scrollin::after {
    transform: scale(1);
}

.top-about__text strong::before {
    margin-right: 10px;
    background: url(../img/top/about-strong-left.svg) no-repeat center center / contain;
}

.top-about__text strong::after {
    margin-left: 10px;
    background: url(../img/top/about-strong-right.svg) no-repeat center center / contain;
}

.top-about__content {
    background: #E5F4FD url(../img/top/about-bg01.svg) no-repeat center center / 1920px;
    clip-path: polygon(0 7.8vw, 100% 0, 100% calc(100% - 7.8vw), 0 100%);
    padding: 11vw 0 3.5vw;
    position: relative;
    z-index: 1;
}

.top-about__content-bg {
    position: absolute;
    top: 9vw;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.top-about__content-bg img {
    position: relative;
    left: 50%;
    width: 2129px;
    max-width: 2129px;
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
    transition: 1s;
    transition-delay: .3s;
}

.top-about__content-bg.scrollin img {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.top-about__desc {
    position: relative;
    z-index: 0;
    margin-top: -100px;
}

.top-about__desc:first-child {
    margin-top: 0;
}

.top-about__desc-box {
    width: 100%;
    max-width: 568px;
    position: absolute;
    left: calc((100vw - var(--wrap))/2 + 55px);
    top: 145px;
    z-index: 1;
}

.top-about__desc-box__ttl {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.top-about__desc-box__ttl-num {
    position: relative;
    z-index: 0;
}

.top-about__desc-box__ttl-num::before {
    content: "";
    position: absolute;
    top: -35px;
    left: -29px;
    z-index: -1;
    background-color: var(--yellow);
    width: 69px;
    height: 69px;
    border-radius: 50%;
    transform: scale(0);
    transition: var(--transition);
    transition-delay: .3s;
}

.top-about__desc-box__ttl.scrollin .top-about__desc-box__ttl-num::before {
    transform: scale(1);
}

.top-about__desc-box__ttl-text {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.11;
}

.top-about__desc-box__ttl-text span {
    color: var(--blue);
}

.top-about__desc-box__text {
    font-size: 18px;
    line-height: 1.66;
}

.top-about__desc-img {
    overflow: hidden;
}

.top-about__desc-img img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 2226px;
    max-width: 2226px;
}

.top-about__desc:nth-of-type(2) .top-about__desc-box {
    top: 160px;
}

.top-contact__content {
    clip-path: polygon(0 7.8vw, 100% 0, 100% calc(100% - 7.8vw), 0 100%);
    padding: 11vw 0 3.5vw;
    background-color: #E5F4FD;
}

.top-result__content__slider {
    display: flex;
    gap: 1rem;
    border: 5px solid var(--blue);
    border-radius: 39px;
    overflow: hidden;
    width: calc(100% - 1rem);
    background-color: #fff;
}

.top-result__shadow {
    position: relative;
    margin-bottom: 3em;
}

.top-result__shadow::after {
    content: "";
    display: inline-block;
    width: calc(100% - 1rem);
    height: 100%;
    border-radius: 39px;
    background: #fff linear-gradient(to right, rgb(0 148 235 / .5), #0094EB);
    position: absolute;
    bottom: -1em;
    right: 0;
    z-index: -1;
}

.top-result__content__slider__img {
    flex-basis: 568px;
    display: flex;
    width: 100%;
}

.top-result__content__slider__img>img {
    object-fit: cover;
    object-position: center;
}

.top-result__content__slider__detail {
    flex: 1;
    padding: 1.25rem .5rem;
}

.top-result__ttl {
    margin-bottom: 30px;
}

.top-result__content__slider__detail__tag {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}

.top-result__content__slider__detail__tag>span {
    padding: .25em .5em;
    background: #fff linear-gradient(to left, rgb(0 148 235 / .5), #0094EB);
}

.top-result__content__slider__detail__company {
    font-weight: 700;
    font-size: 26px;
    padding: 1em 0;
    line-height: 1;
}

.top-result__content__slider__detail__info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.top-result__content__slider__detail__info>li:first-child {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: var(--blue);
    border: 2px solid currentColor;
    border-radius: 9999px;
    padding: .25em 1em;
}

.top-result__content__slider__detail__info>li:not(:first-child) {
    font-weight: 700;
    font-size: 16px;
    position: relative;
}

.top-result__content__slider__detail__info>li:not(:first-child)::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--blue);
    border-radius: 50%;
    margin-right: .5rem;
}

.top-result__content__slider__detail__info>li:not(:first-child)>span {
    font-weight: 700;
    font-size: 20px;
    margin-left: .5rem;
}

.top-result__content__slider__detail__opinion {
    background-color: rgba(0, 148, 235, .1);
    padding: .75em;
}

.top-result__content__slider__detail__opinion ul>li:first-child {
    font-weight: 700;
    font-size: 18px;
    color: var(--blue);
}

.top-result__content__slider__detail__opinion ul>li:not(:first-child) {
    font-weight: 700;
    font-size: 16px;
    position: relative;
    padding-left: 1em;
    line-height: 1.25;
    margin-bottom: .5em;
}

.top-result__content__slider__detail__opinion ul>li:not(:first-child)::before {
    position: absolute;
    left: 0;
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--base-color);
    border-radius: 50%;
    top: 6px;
}

.top-result__content__box__content {
    padding: 1em;
    border: 5px solid var(--blue);
    border-radius: 39px;
    overflow: hidden;
    width: calc(100% - 1rem);
    background-color: #fff;
    cursor: pointer;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}

.top-result__content__box__content__tag {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    text-align: center;
}

.top-result__content__box__content__tag>span {
    padding: .25em .5em;
    background: #fff linear-gradient(to right, rgb(0 148 235 / .5), #0094EB);
}

.top-result__content__box__content__company {
    font-weight: 700;
    font-size: 20px;
    padding: 1em 0;
    line-height: 1.2;
    height: 2em;
    box-sizing: content-box;
}

.top-result__content__box__content__info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5em 1em;
}

.top-result__content__box__content__info>li:first-child {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: var(--blue);
    border: 2px solid currentColor;
    border-radius: 9999px;
    padding: .25em 1em;
    margin-right: 30%;
}

.top-result__content__box__content__info>li:not(:first-child) {
    font-weight: 700;
    font-size: 16px;
    position: relative;
}

.top-result__content__box__content__info>li:not(:first-child)::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--blue);
    border-radius: 50%;
    margin-right: .5rem;
}

.top-result__content__box__content__info>li:not(:first-child)>span {
    font-weight: 700;
    font-size: 20px;
    margin-left: .5rem;
}

.top-result__content__box .slick-slide {
    padding: 0 .5em;
}

.top-result__content__box .slick-slide.slick-current {
    opacity: .5;
}

.top-example__content {
    clip-path: polygon(0 7.8vw, 100% 0, 100% calc(100% - 7.8vw), 0 100%);
    padding: 11vw 0 8vw;
    background-color: #E5F4FD;
}

.top-example__content__curriculum {
    margin-top: 2rem;
}

.top-example__content__curriculum>p {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}

.top-example__content__curriculum__list {
    display: flex;
    margin: 1em -1em;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.top-example__content__curriculum__list_card {
    flex: 1;
    padding: 1.5em 1em;
    background-color: #fff;
    box-shadow: -5px -5px 5px rgba(0, 0, 0, .2);
    margin: 0 2rem;
    color: #80C9F5;
}

.top-example__content__curriculum__list_card:nth-child(2) {
    color: #40AFF0;
}

.top-example__content__curriculum__list_card:nth-child(3) {
    color: #0094EB;
}

.top-example__content__curriculum__list_card_t {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    text-align: left;
    height: 2.4em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.top-example__content__curriculum__list_card_time {
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    margin: 2rem -3rem;
    background-color: #40AFF0;
    color: #fff;
    clip-path: polygon(0 0, calc(100% - 2rem) 0, 100% 50%, calc(100% - 2rem) 100%, 0 100%, calc(0% + 2rem) 50%);
}

.top-example__content__curriculum__list_card_time.start {
    background-color: #80C9F5;
    clip-path: polygon(0 0, calc(100% - 2rem) 0, 100% 50%, calc(100% - 2rem) 100%, 0 100%);
    margin-left: -1rem;
}

.top-example__content__curriculum__list_card_time.start>span {
    margin-left: -1rem;
}

.top-example__content__curriculum__list_card_time.end {
    background-color: #0094EB;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, calc(0% + 2rem) 50%);
    margin-right: -1rem;
}

.top-example__content__curriculum__list_card_time.end>span {
    margin-right: -1rem;
}

.top-example__content__curriculum__list_card_detail {
    margin: 1.5em 0;
    font-weight: 700;
    font-size: 18px;
}

.top-example__content__curriculum__list_card_detail .ul-wrap {
    margin: 1rem auto;
    width: fit-content;
}

.top-example__content__curriculum__list_card_detail ul {
    font-weight: 700;
    font-size: 15px;
}

.top-example__content__curriculum__list_card_detail ul>li {
    color: #000;
}

.top-example__content__curriculum__list_card_detail ul>li:first-child {
    font-size: 18px;
    color: currentColor;
}

.top-example__content__activity__content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.top-example__content__activity__content__img {
    flex-basis: 500px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.top-example__content__activity__content__ex {
    flex: 1;
    background-image: url(../img/example/activity_bg.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
}

.top-example__content__activity__content__ex>p {
    font-weight: 400;
    font-size: 18px;
}

.top-example__content__activity__content__ex>p>span {
    font-weight: 700;
    color: var(--blue);
}

.top-example__game .wrap {
    max-width: 998px;
}

.top-example__game__flow {
    background-color: #E5F4FD;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: end;
    box-sizing: border-box;
    padding: 2rem 0;
    margin-top: 2em;
}

.top-example__game__flow__goal {
    flex-basis: 53px;
    font-weight: 700;
    font-size: 27px;
    line-height: 1;
    color: var(--blue);
    background-color: #fff;
    border: 2px solid currentColor;
    text-align: center;
    padding: .5em 0;
}

.top-example__game__flow__turn {
    flex-basis: 242px;
}

.top-example__game__flow__turn>h4 {
    font-weight: 700;
    font-size: 18px;
    padding: .45em 0;
    line-height: 1;
    text-align: center;
    background-color: #40AFF0;
    color: #fff;
    border-radius: 9999px;
}

.top-example__game__flow__turn>p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    padding: 1em 0;
    line-height: 1;
    text-align: center;
}

.top-example__game__flow__turn>p::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: #40AFF0;
    border-radius: 50%;
    margin-right: 9px;
}

.top-example__game__flow__turn:first-of-type>h4 {
    background-color: #80C9F5;
}

.top-example__game__flow__turn:first-of-type>p::before {
    background-color: #80C9F5;
}

.top-example__game__flow__turn:last-of-type>h4 {
    background-color: #0094EB;
}

.top-example__game__flow__turn:last-of-type>p::before {
    background-color: #0094EB;
}

.top-example__game__t {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 2.4;
    margin: 1em 0;
}

.top-example__game__t::before,
.top-example__game__t::after {
    content: "";
    width: 30px;
    height: 30px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    transform: scale(0);
    transition: var(--transition);
    transition-delay: .3s;
}

.top-example__game__t::before {
    margin-right: 10px;
}

.top-example__game__t::after {
    margin-left: 10px;
}

.top-example__game__t.scrollin::before,
.top-example__game__t.scrollin::after {
    transform: scale(1);
}

.top-example__game__able {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 3em;
}

.top-example__game__able__card {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.top-example__game__able__card>img {
    z-index: 1;
}

.top-example__game__able__card__ex {
    flex-basis: 5.5em;
    position: relative;
    font-weight: 700;
    font-size: 16px;
    color: #FFF;
    text-align: center;
    margin-top: 1em;
}

.top-example__game__able__card__ex .bg {
    width: 192px;
    height: 192px;
    background-color: #0094EB;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    inset: 0;
    margin: auto;
    top: -25px;
    transform: scale(0);
    transition: var(--transition);
    transition-delay: .3s;
    opacity: .5;
    z-index: -1;
}

.top-example__game__able__card:nth-child(2) .bg {
 opacity: .65;
}

.top-example__game__able__card:nth-child(3) .bg {
 opacity: .8;
}

.top-example__game__able__card:nth-child(4) .bg {
 opacity: 1;
}

.top-example__game__able__card__ex .bg.scrollin {
    transform: scale(1);
}

.top-example__game__able__card__ex>span {
    color: var(--yellow);
}

.top-example__game__able__card__ex::after {
    content: "";
    width: 30px;
    height: calc(2 * 30px / tan(60deg));
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #0094EB;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    opacity: .3;
    inset: 0;
    margin: auto;
    right: -256px;
}

.top-example__game__able__card:last-of-type .top-example__game__able__card__ex::after {
    display: none;
}

.top-pdca__content {
    clip-path: polygon(0 7.8vw, 100% 0, 100% calc(100% - 7.8vw), 0 100%);
    padding: 11vw 0 8vw;
    background-color: #E5F4FD;
}

.top-pdca__content__area {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.top-pdca__content__area__img {
    flex-basis: 485px;
}

.top-pdca__content__area>p {
    flex: 1;
    font-size: 18px;
}

.top-other-program__content__area {
    display: flex;
    gap: .85rem;
    margin-top: 2rem;
}

.top-other-program__content__area__card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.top-other-program__content__area__card__ex {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    flex-basis: calc(144px + 1rem);
    justify-content: space-evenly;
}

.top-other-program__content__area__card__ex .bg {
    width: 144px;
    height: 144px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    inset: 0;
    margin: auto;
    transform: scale(0);
    transition: var(--transition);
    transition-delay: .3s;
    z-index: -1;
}

.top-other-program__content__area__card__ex .cross {
    position: relative;
    margin-bottom: -1em;
    padding: 1em 0px;
}

.top-other-program__content__area__card__ex .cross::before,
.top-other-program__content__area__card__ex .cross::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 2px;
    height: 45px;
    background: #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: var(--transition);
    transition-delay: .5s;
}

.top-other-program__content__area__card__ex .cross.scrollin::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.top-other-program__content__area__card__ex .cross.scrollin::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.top-other-program__content__area__card__ex .bg.scrollin {
    transform: scale(1);
}

.top-instructor__content {
    clip-path: polygon(0 7.8vw, 100% 0, 100% calc(100% - 7.8vw), 0 100%);
    padding: 11vw 0 8vw;
    background-color: #E5F4FD;
}

.top-instructor__content__area {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.top-instructor__content__area__card {
    flex: 1;
    position: relative;
    box-shadow: 4px 4px 6px rgb(0 0 0 / .25);
    background-color: #fff;
}

.top-instructor__content__area__card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url(../img/instructor/instructor_person01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 164px;
    height: 220px;
}

.top-instructor__content__area__card.right::after {
    background-image: url(../img/instructor/instructor_person02.png);
}

.top-instructor__content__area__card_info {
    display: flex;
    align-items: center;
    background-color: var(--blue);
    padding: .25em .5em;
}

.top-instructor__content__area__card_info::before {
    content: "";
    background-image: url(../img/instructor/instructor_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 47px;
}

.top-instructor__content__area__card_info>div {
    font-size: 15px;
    color: #fff;
    line-height: 1.2;
    margin-left: .5em;
}

.top-instructor__content__area__card_info>div>span {
    font-size: 24px;
    font-weight: 700;
    color: var(--yellow);
}

.top-instructor__content__area__card>p {
    font-size: 15px;
    line-height: 1.5;
    padding: 1em 2em;
    padding-right: calc(164px + .5em);
}

.top-flow__content {
    position: relative;
    padding-top: 3em;
    padding-bottom: 8em;
}

.top-flow__content-bg {
    position: absolute;
    top: -288px;
    left: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.top-flow__content-bg img {
    position: relative;
    left: 50%;
    width: 2129px;
    max-width: 2129px;
    opacity: 0;
    transform: translateX(-50%) scale(0.9);
    transition: 1s;
    transition-delay: .3s;
}

.top-flow {
    position: relative;
}

.top-flow__content-bg.scrollin img {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.top-flow__content__area {
    margin-top: 2rem;
}

.top-cost {
    background: #fff linear-gradient(to bottom right, rgb(0 148 235 / .5), #0094EB);
    clip-path: polygon(0 7.8vw, 100% 0, 100% calc(100% - 7.8vw), 0 100%);
    padding: 7.8vw 0;
    margin-top: -6.5vw;
    position: relative;
    z-index: 1;
}

.top-cost__content__detail>p {
    text-align: center;
    font-size: 20px;
    color: #fff;
    line-height: 1;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.top-cost__content__detail__announce {
    margin-top: 2rem;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.top-cost__content__detail__announce>span {
    font-size: 35px;
    color: #fff;
    padding-right: 2rem;
}

.top-cost__content__detail__announce>small {
    font-size: 40px;
    color: #fff;
}

.top-cost__content__detail__announce>strong {
    font-size: 65px;
    color: var(--yellow);
    padding: 0 1rem;
}

.top-cost__content__flex {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.top-cost__content__flex__card {
    flex: 1;
    background-color: #fff;
    box-shadow: -3px -3px 6px rgb(0 0 0 / .25);
    padding: 2rem 0;
}

.top-cost__content__flex__card .center {
    width: fit-content;
    margin: auto;
}

.top-cost__content__flex__card__t {
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
}

.top-cost__content__flex__card__t::before {
    content: "";
    background-image: url(../img/cost/cost_icon_include.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 49px;
    height: 46px;
    vertical-align: text-bottom;
}

.exclude .top-cost__content__flex__card__t::before {
    background-image: url(../img/cost/cost_icon_exclude.svg);
}

.top-cost__content__flex__card ul {
    margin-top: 1.5em;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.top-cost__content__flex__card ul>li {
    position: relative;
    margin-bottom: 1em;
}

.top-cost__content__flex__card ul>li.dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1em;
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    background-color: var(--yellow);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: var(--transition);
    transition-delay: .3s;
    z-index: 1;
}

.top-cost__content__flex__card.exclude ul>li.dot::before {
    background-color: var(--blue);
}

.top-cost__content__flex__card ul>li.dot.scrollin::before {
    transform: translate(-50%, -50%) scale(1);
}

.top-qa__content__area {
    display: flex;
    flex-wrap: wrap;
    margin: -1em;
    margin-top: 3rem;
}

.top-qa__content__area__card {
    position: relative;
    width: 270px;
    height: 270px;
    perspective: 1000px;
    transform-style: preserve-3d;
    margin: 1rem;
}

.top-qa__content__area__card .cardface::before {
    content: "";
    position: absolute;
    background-image: url(../img/qa/qa_icon-q.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: calc(-60px / 2 + 10px);
    left: calc(-60px / 2 + 10px);
    display: inline-block;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.top-qa__content__area__card.is-flipped .cardface::before {
    background-image: url(../img/qa/qa_icon-a.svg);
}

.top-qa__content__area__card .cardface {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    place-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 2px solid var(--blue);
    border-radius: 10px;
    transition: transform 1s;
    backface-visibility: hidden;
    padding: 2em;
    box-sizing: border-box;
    cursor: pointer;
}

.top-qa__content__area__card .cardface>button {
    position: absolute;
    bottom: .75em;
    right: 1em;
    display: flex;
    align-items: center;
    gap: 10px
}

.top-qa__content__area__card .cardface>button>span {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
}

.top-qa__content__area__card .question>button>span::after,
.top-qa__content__area__card .answer>button>span::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 50%;
    height: calc(2 * 50% / tan(60deg));
    background-color: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    inset: 0;
    margin: auto;
}

.top-qa__content__area__card.is-flipped .answer>button>span::after {
    background-color: var(--blue);
    transform: rotateY(180deg);
}

.top-qa__content__area__card .question>button>span::before,
.top-qa__content__area__card .answer>button>span::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    border-radius: 50%;
}

.top-qa__content__area__card.is-flipped .answer>button>span::before {
    background-color: #fff;
}

.top-qa__content__area__card .question {
    transform: none;
    font-size: 15px;
    font-weight: 700;
}

.top-qa__content__area__card.is-flipped .question {
    transform: rotateY(180deg);
}

.top-qa__content__area__card .answer {
    transform: rotateY(180deg);
    color: #fff;
    background: linear-gradient(90deg, var(--blue) 0%, rgba(2, 148, 235, 0.5) 100%);
}

.top-qa__content__area__card.is-flipped .answer {
    transform: rotateY(360deg);
}

/* logo-slider */
.logo-slider {
    padding: 0.6rem 0 1.2rem;
}

@keyframes infinity-scroll-left {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes infinity-scroll-left-back {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

@keyframes infinity-scroll-right {
    0% {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes infinity-scroll-right-back {
    0% {
        transform: translateX(-200%);
    }

    to {
        transform: translateX(0);
    }
}

.logo-slider .scroll-infinity__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    overflow: hidden;
}

.logo-slider .scroll-infinity__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    min-width: 100%;
}

.logo-slider .scroll-infinity__list--left {
    margin-bottom: 0.2rem;
}

.logo-slider .scroll-infinity__list--left:first-child {
    animation: infinity-scroll-left 80s -40s linear infinite;
}

.logo-slider .scroll-infinity__list--left:last-child {
    animation: infinity-scroll-left-back 80s linear infinite;
}

.logo-slider .scroll-infinity__list--right:first-child {
    animation: infinity-scroll-right 80s -40s linear infinite;
}

.logo-slider .scroll-infinity__list--right:last-child {
    animation: infinity-scroll-right-back 80s linear infinite;
}

.logo-slider .scroll-infinity__item {
    width: 19.2307692308vw;
}

.logo-slider .scroll-infinity__item>img {
    width: 100%;
}