@charset "utf-8";
/*共通設定*/
    /*<a class="line-btn">*/
.line-btn-wrap {
    margin-top: 40px;
}

.line-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg,
                #1FCB98 0%,
                #35E03D 100%);
    border-radius: 4px;
    padding: 12px 8px;
    border-radius: 8px;
    border: solid 1px #fff;
    box-shadow: 0 2px 5px rgba(102, 78, 163, 0.25);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

    /*<div class="h2-wrap">*/
.h2-wrap {
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.en-title {
    width: 50%;
}

.h2-wrap h2 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
}

.h2-wrap h2::before {
    content: "";
    position: absolute;
    top: calc(50% + 2px);
    left: -12px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);

    background: linear-gradient(90deg,
                #1FCB98 0%,
                #35E03D 100%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.h2-wrap h2::after {
    content: "";
    position: absolute;
    top: calc(50% + 2px);
    right: -12px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: linear-gradient(90deg,
            #1FCB98 0%,
            #35E03D 100%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

    /*scroll-line*/
.scroll-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    writing-mode: vertical-rl;
    z-index: 2;
}

.scroll-line::before {
    animation: scroll 2s infinite;
    background-color: #103c2c;
    bottom: -100px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}

@keyframes scroll {
    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%;
    }
}

    /* ぼかしアニメーション*/
.inview-blur {
    opacity: 0;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    /* blur が付いたらぼかし解除*/
.blur {
    -webkit-animation-name: imageBlur;
    animation-name: imageBlur;
    opacity: 1;
    transition: 0.8s;
}

    /* ぼかし keyframes*/
@-webkit-keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

@keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

    /*方向フェードイン */
.inview-anim {
    opacity: 0;
    filter: blur(15px);
    transition: 0.8s ease;
}

    /* 下から */
.fade-up {
    transform: translateY(30px);
}

.fade-up.blur {
    transform: translateY(0);
}

    /* 上から */
.fade-down {
    transform: translateY(-30px);
}

.fade-down.blur {
    transform: translateY(0);
}

    /* 左から */
.fade-left {
    transform: translateX(-30px);
}

.fade-left.blur {
    transform: translateX(0);
}

    /* 右から */
.fade-right {
    transform: translateX(30px);
}

.fade-right.blur {
    transform: translateX(0);
}

    /*カーテンを開くようなアニメーション*/
.visible {
    position: relative;
    overflow: hidden;
}

.visible::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* 必要なら微調整する */
    height: 100%;
    background: linear-gradient(90deg, #FDDB92 4%, #E2F9D4 80%);
    transform-origin: right top;
    /* アニメーションの軸となる座標 */
    transition: 1s;
    /* 1秒かけてアニメーションする */
    z-index: 200;
}

.visible.effect::before {
    transform: scale(0, 1);
}

    /*下からふわっとアニメーション*/
.scr-target {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 1s ease, transform 1s ease;
}

.scr-target.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

    /*スクロールフェードイン*/
.js-fadeLeft {
    opacity: 0; /* 最初は非表示 */
    transform: translateX(-16px); /* 下に100pxの位置から */
    transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.5秒 */
}

.js-fadeLeft.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateX(0); /* 100px上に移動する */
    transition-delay: 0.2s; /* フェード開始を0.2秒遅らせる */
}

.js-fadeRight {
    opacity: 0; /* 最初は非表示 */
    transform: translateX(16px); /* 下に100pxの位置から */
    transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.5秒 */
}

.js-fadeRight.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateX(0); /* 100px上に移動する */
    transition-delay: 0.2s; /* フェード開始を0.2秒遅らせる */
}
/*終わり*/  


/*<section class="bg">*/
.bg {
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-in {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bg-l {
    width: calc(50% - 300px);
    height: 100%;
    padding-right: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.bg-txt-img {
    max-width: 400px;
    width: 100%;
}

.bg-ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
}

.bg-ul li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bg-ul li a {
    position: relative;
    padding-left: 16px;
}

.bg-ul li a::before {
    content: "";
    position: absolute;
    top: calc(50% + 2px);
    left: 0px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: linear-gradient(90deg,
                #1FCB98 0%,
                #35E03D 100%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bg-line-btn {
    max-width: 320px;
}

.bg-r {
    position: relative;
    width: calc(50% - 300px);
    height: 100%;
    padding-left: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.bg-logo {
    max-width: 360px;
    width: 100%;
}
/*終わり*/


/*<div class="lp-wrap">*/
.lp-wrap {
    position: relative;
    background-color: #F7F7F7;
    overflow: hidden;
    z-index: 2;
}
/*終わり*/


/*<div class="fix-area">*/
.fix-area {
    background-color: #fff;
    max-width: 600px;
    width: 100%;
    height: 60px;
    padding: 8px 24px;
    position: fixed;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 999;
}

.fix-area-in {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fix-logo-img {
    display: inline-block;
    max-width: 120px;
}

.fix-line-btn {
    max-width: none;
    width: max-content;
    padding: 8px;
    font-size: 16px;
}
/*終わり*/


/*<section class="fv">*/
.fv-in {
    width: 100%;
    height: 100%;
    position: relative;
}

.fv-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.fv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

.fv-logo {
    position: absolute;
    top: 72px;
    left: 16px;
    max-width: 320px;
    width: 100%;
}

.fv-txt-wrap {
    padding: 0 40px;
    width: 100%;
    position: absolute;
    bottom: 24px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fv-h1 {
    margin: 0 -40px;
}

.fv-txt-img {
    width: calc(100% - 40px);
}

.fv-txt-flex-01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.fv-txt-01 {
    position: relative;
    font-weight: 600;
    width: 33%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50vh;
    border-image-slice: 1;
    font-size: 16px;
    font-weight: 600;
    padding: 8px;
}

.fv-txt-01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50vh;
    border: 3px solid transparent;
    transition: transform .3s linear, border-width .3s linear, border-radius .3s linear, filter .6s linear;

    background-image: linear-gradient(180deg, #FDC651, #BEFD97);
    background-origin: border-box;
    background-clip: border-box;

    -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    -webkit-mask-clip: padding-box, border-box;
    -webkit-mask-composite: destination-out;

    mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    mask-clip: padding-box, border-box;
    mask-composite: exclude;
}

.fv-txt-flex-02 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-weight: 700;
}

.fv-txt-02 {
    position: relative;
}

.fv-txt-02::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50vh;
    background: linear-gradient(90deg,
                #1FCB98 0%,
                #35E03D 100%);
}

.fv-txt-02:last-child::before {
    display: none;
}

.fv .line-btn-wrap {
    position: relative;
    margin-top: 24px;
}

.fv .line-btn-txt {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border: solid 2px #25D082;
    background-color: #fff;
    border-radius: 50vh;
    font-weight: 700;
    color: #29D475;
    max-width: 200px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.fv .line-btn {
    padding: 20px 8px 12px 8px;
}
/*終わり*/


/*<div class="bg-wrap">*/
.bg-wrap {
    position: relative;
    background-image: url(../img/about_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-wrap::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 520px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.6;
    z-index: 3;
}

.bg-wrap .wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
/*終わり*/


/*<section class="about">*/
.about {
    position: relative;
}

.about-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-logo {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
}

.about-txt-wrap {
    text-align: center;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-txt-wrap p {
    font-weight: 700;
}

.about-talent-flex {
    position: relative;
}

.about-talent-flex-01 {
    text-align: left;
}

.about-talent-flex-02 {
    text-align: right;
}

.about-talent-img {
    width: 50%;
}

.about-talent-txt-area-01 {
    position: absolute;
    bottom: 0;
    left: 40%;
    z-index: 2;
}

.about-talent-txt-area-02 {
    position: absolute;
    bottom: 0;
    right: 40%;
    text-align: left;
    z-index: 2;
}

.about-talent-h3 {
    position: absolute;
    top: -30px;
    left: 4px;
    background-color: #222;
    padding: 0 16px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    transform: skewX(170deg);
    font-size: 24px;
    z-index: 3;
}

.about-talent-h3 span {
    display: block;
    transform: skewX(-170deg);
}

.about-talent-txt-wrap {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px 16px 8px 16px;
    font-weight: 700;
}

.about-talent-txt-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    border: 3px solid transparent;
    transition: transform .3s linear, border-width .3s linear, border-radius .3s linear, filter .6s linear;

    background-image: linear-gradient(
        45deg,
        #A545D8 0%,
        #7577A9 28%,
        #02F13F 72%,
        #E5F512 100%
    );
    background-origin: border-box;
    background-clip: border-box;

    -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    -webkit-mask-clip: padding-box, border-box;
    -webkit-mask-composite: destination-out;

    mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    mask-clip: padding-box, border-box;
    mask-composite: exclude;
}

.about-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: -1;
}
/*終わり*/


/*<section class="benefit">*/
.benefit .h2-wrap {
    position: relative;
}

.benefit-title-bg {
    position: absolute;
    top: 24px;
    right: -40px;
    z-index: -1;
}

.benefit-flex {
    display: flex;
    flex-direction: column;
    gap: 240px;
    margin-top: 200px;
}

.benefit-wrap {
    position: relative;
}

.benefit-txt-area {
    position: absolute;
    top: -60%;
    left: 0;
    width: 100%;
    z-index: 3;
}

.support-num {
    font-weight: 800;
    font-style: italic;
    font-size: 24px;
    color: #1FCB98;
    line-height: 1;
}

.support-num-r {
    text-align: right;
}

.support-num span {
    font-size: 40px;
    padding-left: 8px;
    color: #333;
}

.support-txt-wrap {
    position: relative;
    border-radius: 8px;
    background-color: #fff;
    padding: 16px;
    box-shadow: 0 4px 4px rgba(102, 78, 163, 0.25);
}

.support-txt-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    border: 3px solid transparent;
    transition: transform .3s linear, border-width .3s linear, border-radius .3s linear, filter .6s linear;

    background-image: linear-gradient(
       -45deg,
        #A545D8 0%,
        #7577A9 28%,
        #02F13F 72%,
        #E5F512 100%
    );
    background-origin: border-box;
    background-clip: border-box;

    -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    -webkit-mask-clip: padding-box, border-box;
    -webkit-mask-composite: destination-out;

    mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    mask-clip: padding-box, border-box;
    mask-composite: exclude;
}

.support-h3 {
    font-size: 24px;
    font-weight: 700;
    border-bottom: solid 2px #35E03D;
    padding-bottom: 4px;
}

.support-txt {
    padding-top: 4px;
}

.benefit-img-wrap {
    margin: 0 -40px;
}

.benefit-img-wrap-01,
.benefit-img-wrap-03 {
    text-align: right;
}

.benefit-img {
    width: calc(100% - 80px);
}

.benefit-bg {
    position: absolute;
    z-index: -1;
}

.benefit-bg-01,
.benefit-bg-03 {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    height: 150%;
}

.benefit-bg-02,
.benefit-bg-04 {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    height: 150%;
}
/*終わり*/


/*<div class="chance">*/
.chance {
    position: relative;
}

.chance .scroll-line::before {
    bottom: 0px;
    height: 80px;
}

.chance-txt-01 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
}

.chance-txt-02 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.chance-txt-img {
    width: 100%;
}

.chance-img-area {
    margin: 120px -40px 0 -40px;
}

.chance-img-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.chance-img-wrap {
    width: calc(100% / 3);
    height: 100%;
    overflow: hidden;
    clip-path: polygon(
        10% 0,
        100% 0,
        90% 100%,
        0 100%
    );
    display: flex;
    align-items: stretch;
}

.chance-img-wrap-02 {
    margin-top: 48px;
}

.chance-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chance-txt-03 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
}

.chance-logo {
    max-width: 280px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: -1;
}

.chance-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: -2;
}
/*終わり*/


/*<section class="flow">*/
.flow {
    background-image: url(../img/flow_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.flow .en-title {
    width: 40%;
}

.flow-area {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 80px;
}

.flow-wrap {
    position: relative;
    border-radius: 8px;
    background-color: #fff;
    padding: 16px;
    box-shadow: 0 4px 4px rgba(102, 78, 163, 0.25);
}

.flow-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: transform .3s linear, border-width .3s linear, border-radius .3s linear, filter .6s linear;

    background-image: linear-gradient(-45deg,
            #A545D8 0%,
            #7577A9 28%,
            #02F13F 72%,
            #E5F512 100%);
    background-origin: border-box;
    background-clip: border-box;

    -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    -webkit-mask-clip: padding-box, border-box;
    -webkit-mask-composite: destination-out;

    mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    mask-clip: padding-box, border-box;
    mask-composite: exclude;
}

.flow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow-h3 {
    border-bottom: solid 1px #35E03D;
    font-weight: 700;
    font-size: 24px;
    padding: 4px 0;
}

.flow-txt {
    padding-top: 4px;
}

.flow-num-wrap {
    position: absolute;
    top: -40px;
    left: 0;
}

.flow-icon {
    position: relative;
    max-width: 80px;
    width: 100%;
    z-index: 2;
}

.flow-num {
    position: absolute;
    top: 50%;
    left: 48px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-color: #222;
    padding: 4px 24px 4px 48px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
    clip-path: polygon(
        0 0,      /* 左上：まっすぐ */
        100% 0,   /* 右上：そのまま */
        95% 100%, /* 右下：左に寄せて斜め */
        0 100%    /* 左下：まっすぐ */
    );
    font-size: 32px;
    font-style: italic;
    z-index: 1;
}

.flow-arrow {
    max-width: 40px;
    width: 100%;
    margin: 0 auto;
}
/*終わり*/


/*<section class="req">*/
.req {
    position: relative;
}

.req .en-title {
    width: 85%;
}

.req-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.req-con {
    padding: 16px;
    width: 49%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
    margin-bottom: 2%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.req-icon-wrap {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.req-icon {
    width: 48px;
}

.req-txt {
    text-align: center;
    font-size: 16px;
}

.req-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
/*終わり*/


/*<section class="cta">*/
.cta {
    padding-top: 160px;
    margin-top: 40px;
    background-image: url(../img/cta_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-in {
    position: relative;
}

.cta-h2 {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 100%;
    z-index: 2;
}

.cta-txt-img {
    width: 100%;
}

.cta-img-area {
    margin: 0 -40px;
}

.cta-img-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.cta-img-wrap {
    width: calc(100% / 3);
    overflow: hidden;
    clip-path: polygon(
        10% 0,
        100% 0,
        90% 100%,
        0 100%
    );
    display: flex;
    align-items: stretch;
}

.cta-img-wrap-02 {
    margin-top: 48px;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta .scroll-line::before {
    bottom: -50px;
    height: 50px;
}
/*終わり*/


/*<section class="faq">*/
.faq .en-title {
    width: 30%;
}

.faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-con {
    background-color: #FFF;
    border-radius: 8px;
    padding: 0 16px;
}

.faq-con:hover {
    cursor: pointer;
}

.nav-open {
    position: relative;
    padding: 16px 0;
}

.q-txt {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-right: 40px;
    font-weight: 600;
}

.q-txt span {
    font-style: italic;
    background: linear-gradient(90deg,
            #1FCB98 0%,
            #35E03D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    padding-top: 4px;
    font-weight: 700;
    line-height: 1;
}

.plus-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: solid 1px #02F13F;
    /* 青色 */
    border-radius: 50%;
    box-shadow: 0 0 0 1px #02F13F inset;
    /* 外周リング風 */
}

.plus-icon::before,
.plus-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: #02F13F;
}

.plus-icon::before {
    width: 40%;
    height: 2px;
}

.plus-icon::after {
    width: 2px;
    height: 40%;
}

.faq-txt {
    display: none;
    padding: 16px 0;
    border-top: dotted 2px #78A5C1;
}

.a-txt {
    font-size: 16px;
}

.nav-open.active .plus-icon::after {
    display: none;
}
/*終わり*/


/*<section class="notice">*/
.notice-ul {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notice-li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-check-icon {
    max-width: 12px;
    width: 100%;
}
/*終わり*/


/*<section class="privacy">*/
.privacy .en-title {
    width: 85%;
}
/*終わり*/


/*1300px ~ 1025px*/
@media (max-width: 1350px) {
/*<section class="bg">*/
    .bg-l,
    .bg-r {
        display: none;
    }
/*終わり*/
}


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
/*終わり*/


/*<div class="fix-area">*/
    .fix-area {
        padding: 8px 3vw;
    }

    .fix-logo-img {
        max-width: clamp(100px, 120vw / 5.99, 120px);
    }

    .fix-line-btn {
        font-size: clamp(12px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<section class="fv">*/
    .fv-logo {
        top: clamp(60px, 72vw / 5.99, 72px);
        left: 18px;
        max-width: clamp(160px, 240vw / 5.99, 240px);
    }

    .fv-txt-wrap {
        padding: 0 3vw;
        gap: clamp(0px, 8vw / 5.99, 8px);
    }

    .fv-h1 {
        margin: 0 -3vw;
    }

    .fv-txt-img {
        width: calc(100% - 56px);
    }

    .fv-txt-01 {
        font-size: clamp(10px, 16vw / 5.99, 16px);
        padding: clamp(4px, 8vw / 5.99, 8px) 0;
    }

    .fv-txt-02 {
        font-size: clamp(14px, 16vw / 5.99, 16px);
        text-shadow: 0 0 8px #fff;
    }
/*終わり*/


/*<section class="about">*/
    .about-logo {
        max-width: clamp(240px, 320vw / 5.99, 320px);
    }

    .about-txt-wrap {
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }

    .about-talent-h3 {
        top: clamp(-24px, -30vw / 5.99, -30px);
        font-size: clamp(20px, 24vw / 5.99, 24px);
    }

    .about-talent-txt-wrap {
        font-size: clamp(14px, 16vw / 5.99, 16px);
        padding: 16px clamp(8px, 16vw / 5.99, 16px) 8px clamp(8px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<section class="benefit">*/
    .benefit-title-bg {
        right: -3vw;
    }

    .benefit-flex {
        gap: clamp(200px, 240vw / 5.99, 240px);
    }

    .benefit-txt-area {
        top: -85%;
    }

    .support-h3 {
        font-size: clamp(16px, 24vw / 5.99, 24px);
    }

    .support-txt {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }

    .benefit-img-wrap {
        margin: 0 -3vw;
    }

    .benefit-img {
        width: calc(100% - 6vw);
    }
/*終わり*/


/*<div class="chance">*/
    .chance-txt-01 {
        font-size: clamp(32px, 48vw / 5.99, 48px);
    }

    .chance-img-area {
        margin: clamp(80px, 120vw / 5.99, 120px) -3vw 0 -3vw;
    }

    .chance-txt-03 {
        font-size: clamp(18px, 20vw / 5.99, 20px);
    }

    .chance-logo {
        max-width: clamp(200px, 280vw / 5.99, 280px);
    }
/*終わり*/


/*<section class="flow">*/
    .flow-h3 {
        font-size: clamp(20px, 24vw / 5.99, 24px);
    }

    .flow-icon {
        max-width: clamp(64px, 80vw / 5.99, 80px);
    }

    .flow-num {
        font-size: clamp(24px, 32vw / 5.99, 32px);
        padding-left: clamp(32px, 48vw / 5.99, 48px);
    }

    .flow-arrow {
        max-width: clamp(24px, 40vw / 5.99, 40px);
    }
/*終わり*/


/*<section class="req">*/
    .req-con {
        padding: 16px clamp(4px, 8vw / 5.99, 8px);
        gap: clamp(8px, 16vw / 5.99, 16px);
    }

    .req-icon {
        width: clamp(40px, 48vw / 5.99, 48px);
    }

    .req-txt {
        font-size: clamp(12px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<section class="cta">*/
    .cta {
        padding-top: clamp(48px, 64vw / 5.99, 64px);
    }

    .cta-h2 {
        position: static;
        top: initial;
        left: initial;
        transform: none;
        z-index: auto;
    }

    .cta-img-area {
        margin: 0 -3vw;
    }

    .cta .line-btn {
        font-size: clamp(14px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<section class="faq">*/
/*終わり*/


/*<section class="notice">*/
    .notice-ul {
        padding: clamp(16px, 24vw / 5.99, 24px);
    }
/*終わり*/


/*<section class="privacy">*/
/*終わり*/

}
