@charset "utf-8";
/*共通設定*/
.red-txt {
    color: #f7265d;
}

.yellow-txt {
    color: #fff64a;
}

.blue-txt {
    color: #278be1;
}

    /*<div class="line-btn-wrap">*/
.line-btn-wrap {
    position: relative;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.line-btn-txt {
    position: relative;
    text-shadow: 0 0 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 8px;
}

.line-btn-txt .yellow-txt {
    letter-spacing: 0.1em;
}

.line-btn-txt .red-txt {
    letter-spacing: 0.1em;
}

.line-btn-txt .num {
    font-size: 48px;
}

.line-btn-txt::before {
    content: "";
    background-image: url(../img/fv_slash_l.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 32px;
    height: 32px;
}

.line-btn-txt::after {
    content: "";
    background-image: url(../img/fv_slash_r.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 32px;
    height: 32px;
}

.line-btn {
    position: relative;
    display: block;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #0FC61D;
    padding: 16px;
    border-radius: 50vh;
    box-shadow: 0 5px 0 #006937;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    overflow: hidden;
    z-index: 2;
}

.line-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background-image: url(../img/cta_btn_arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 32px;
    height: 32px;
}

.line-btn::after {
    animation: 3s 0s shine linear infinite;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, 0) 75%);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: -100%;
    top: 0;
    z-index: 2;
    transform: skewX(-15deg);
}

@keyframes shine {
    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.line-btn .yellow-txt {
    font-size: 32px;
}

    /* ぼかしアニメーション*/
.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-color: #0C0C0C;
    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); 
    transition: opacity 0.8s, transform 0.8s;
}

.js-fadeLeft.is-inview {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s; 
}

.js-fadeRight {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.8s, transform 0.8s;
}

.js-fadeRight.is-inview {
    opacity: 1;
    transform: translateX(0); 
    transition-delay: 0.2s; 
}

.js-fadeUp {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s, transform 0.8s;
}

.js-fadeUp.is-inview {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
/*終わり*/  


/*<section class="bg">*/
.bg {
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(90deg,
        rgba(248, 40, 94, 0.2) 0%,
        rgba(161, 74, 168, 0.2) 50%,
        rgba(40, 141, 228, 0.2) 100%
    );
}

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

.bg-line-btn-wrap .line-btn-txt {
    font-size: 24px;
    color: #333;
    text-shadow: none;
}

.bg-line-btn-wrap .line-btn-txt::before {
    background-image: url(../img/cta_slash_l.png);
    width: 24px;
    height: 24px;
}

.bg-line-btn-wrap .line-btn-txt::after {
    background-image: url(../img/cta_slash_r.png);
    width: 24px;
    height: 24px;
}

.bg-line-btn-wrap .line-btn-txt .num {
    font-size: 32px;
}

.bg-line-btn {
    font-size: 18px;
}

.bg-line-btn::before {
    width: 24px;
    height: 24px;
}

.bg-line-btn .yellow-txt {
    font-size: 24px;
}

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

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


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


/*<section class="fv">*/
.fv {
    padding: 40px 24px 100px 24px;
    background-image: url(../img/fv_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fv-in {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fv-staaca-logo-wrap {
    display: flex;
    align-items: center;
}

.fv-staaca-logo {
    max-width: 160px;
    width: 100%;
}

.fv-h1 {
    display: flex;
    align-items: center;
}

.fv-h1-img {
    width: 100%;
}

.fv-video-wrap {
    width: 100%;
}

.fv-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-txt-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.fv-txt {
    position: relative;
    background-color: rgba(225, 116, 222,0.8);
    color: #fff;
    border-radius: 50vh;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 8px;
    font-size: 20px;
}

.fv-txt::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 8px solid rgba(225, 116, 222, 0.8);
    border-bottom: 0;
}

.fv-h2 {
    color: #fff;
    font-weight: 800;
    font-size: 56px;
}

.logo-line-btn {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 320px;
    font-size: 16px;
    padding: 8px;
}

.logo-line-btn::before {
    width: 20px;
    height: 20px;
}

.logo-line-btn .yellow-txt {
    font-size: 20px;
}
/*終わり*/


/*<section class="skill">*/
    /*<div class="skill-bg-area">*/
.skill-bg-area {
    padding-top: 100px;
    position: relative;
    background: linear-gradient(180deg,
        rgba(248, 40, 94, 0.2) 0%,
        rgba(161, 74, 168, 0.2) 50%,
        rgba(40, 141, 228, 0.2) 100%
    );
}

.skill-bg-area-in {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;    
}

.skill-h2 {
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    font-weight: 800;
    font-size: 24px;
}

.skill-h2 .box-line {
    width: max-content;
    background-color: #fff;
    border: solid 1px #333;
    padding: 4px 16px;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.skill-txt-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.skill-h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.skill-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.skill-sup {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 64px;
}

.skill-sup-h3-wrap {
    position: relative;
    padding: 8px 40px;
    background: linear-gradient(90deg,
        #f7265d 0%,
        #a849a7 50%,
        #278be1 100%
    );
    box-shadow: 8px 8px 0 #fff;
    text-align: center;
    margin-bottom: 64px;
}

.skill-sup-h3 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
}

.support-en-txt-01 {
    position: absolute;
    bottom: -60px;
    right: 0;
    z-index: 2;
    max-width: 180px;
    width: 100%;
}

.skill-worry-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.skill-worry-h4 {
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 32px;
    width: calc(100% + 80px);
    margin: 0 -40px;
    transform: rotate(-4deg);
}

.skill-worry-h4 .gra-bg {
    background: linear-gradient(90deg,
        #a849a7 0%,
        #278be1 100%
    );
    padding: 4px 24px;
}

.skill-worry-h4 .gra-bg:first-child {
    align-self: flex-start;
}

.skill-worry-h4 .gra-bg:last-child {
    align-self: flex-end;
}

.skill-worry-h4-02 .gra-bg {
    padding: 4px 40px;
}

.skill-worry-h4 .yellow-txt {
    font-size: 40px;
}

.skill-worry-img {
    width: 100%;
}

.skill-bg-01 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}

    /*<div class="skill-and">*/
.skill-and {
    position: relative;
}

.skill-and-in {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.skill-arrow {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 24px;
    width: 100%;
}

.skill-and-h4-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.skill-leaf {
    max-width: 64px;
    width: 100%;
}

.skill-and-h4 {
    font-weight: 800;
    font-size: 20px;
    text-align: center;
}

.skill-and-h4 .gra-txt {
    background: linear-gradient(90deg,
        #f7265d 0%,
        #a849a7 50%,
        #278be1 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
}

.skill-and-txt-img {
    max-width: 100px;
    width: 100%;
}

.skill-staaca-logo {
    max-width: 400px;
    width: 100%;
}


.skill-bg-02 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}
/*終わり*/


/*<section class="what">*/
.what {
    background-image: url(../img/what_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100px;
}

.what-in {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.what-h2 {
    font-size: 64px;
    font-weight: 800;
}

.what-circle-wrap {
    background-color: #fff;
    border-radius: 50%;
    max-width: 440px;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    outline: solid 12px rgba(225, 255, 255, 0.5); 
    text-align: center;
}

.what-grove-logo {
    max-width: 200px;
    width: 100%;
}

.what-circle-txt {
    font-weight: 800;
}

.what-txt-01 {
    text-align: center;
    color: #fff;
}

.what-swiper-area {
    width: calc(100% + 80px);
    margin: 0 -40px;
}

.what-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.what-txt-02 {
    text-align: center;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
    line-height: 1.8;
}

.what-txt-02 .white-back {
    background-color: #fff;
    font-size: 48px;
    padding: 0 16px;
}

.what-txt-02 .gra-txt {
    background: linear-gradient(90deg,
        #f7265d 0%,
        #a849a7 50%,
        #278be1 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*終わり*/


/*<section class="support">*/
.support {
    position: relative;
    margin-top: -100px;
    padding-top: 180px;
    background: linear-gradient(90deg,
        rgba(248, 40, 94, 0.2) 0%,
        rgba(40, 141, 228, 0.2) 100%
    );
    z-index: -1;
}

.support-in {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.support-h2-wrap {
    position: relative;
}

.support-h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.support-h2-img {
    max-width: 320px;
    width: 100%;
}

.support-en-txt-02 {
    position: absolute;
    bottom: -40px;
    right: 0;
    z-index: 2;
    max-width: 180px;
    width: 100%;    
}

.support-area {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.support-wrap {
    position: relative;
    background-color: #fff;
    border-radius: 48px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg,
        rgba(248, 40, 94, 0.2) 0%,
        rgba(40, 141, 228, 0.2) 100%
    );
    transform: translate(8px, 10px);
    border-radius: 48px;
    z-index: -1;
}

.support-title-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.support-title-flex-r {
    flex-direction: row-reverse;
}

.support-h3 {
    text-align: center;
    line-height: 1.3;
    font-weight: 800;
    font-size: 32px;
    width: 50%;
}

.support-h3 .under-line {
    position: relative;
    z-index: 2;
}

.support-h3 .under-line::before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg,
        rgba(248, 40, 94, 0.2) 0%,
        rgba(40, 141, 228, 0.2) 100%
    );
    z-index: -1;
}

.support-img-wrap {
    width: 50%;
    text-align: center;
}

.support-img {
    max-width: 200px;
    width: 100%;
}

.support-txt {
    text-align: center;
}

.support-num {
    position: absolute;
    top: -50px;
    right: 0;
    background: linear-gradient(180deg,
        #f7265d 0%,
        #a849a7 50%,
        #278be1 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    font-weight: 800;
    line-height: 1;
    z-index: 3;
}

.support-num-r {
    left: 0;
}
/*終わり*/


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

.community-in {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.comm-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.comm-title-txt {
    background-color: #f7265d;
    color: #fff;
    padding: 4px 16px;
    border-radius: 50vh;
}

.comm-h2 {
    background: linear-gradient(90deg,
        #f7265d 0%,
        #a849a7 50%,
        #278be1 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 40px;
}

.comm-txt {
    text-align: center;
}

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

.comm-wrap {
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 0 16px rgba(0,0,0,0.2);
}

.comm-h3 {
    border-radius: 40px 40px 0 0;
    text-align: center;
    background: linear-gradient(90deg,
        #f7265d 0%,
        #a849a7 50%,
        #278be1 100%
    );
    padding: 8px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

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

.comm-wrap-txt {
    padding: 24px;
}

.community-bg-01 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

.community-bg-02 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}
/*終わり*/


/*<section class="career">*/
.career-in {
    padding: 40px;
    background-image: url(../img/what_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.career-h2-wrap {
    position: relative;
}

.career-h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.career-h2-img {
    max-width: 340px;
    width: 100%;
}

.career-en-txt {
    position: absolute;
    bottom: -40px;
    right: 0;
    z-index: 2;
    max-width: 180px;
    width: 100%;
}

.career-txt {
    text-align: center;
    color: #fff;
    margin-top: 24px;
    font-size: 20px;
}

.career-txt span {
    font-weight: 800;
    font-size: 28px;
}

.career-area {
    margin: 0 -40px;
}

.career-wrap {
    position: relative;
}

.career-img {
    width: 100%;
}

.career-h3 {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 24px;
    line-height: 1.4;
}

.career-h3-r {
    left: 72%;
}

.career-h3-l {
    left: 28%;
}
/*終わり*/


/*<section class="flow">*/
.flow {
    padding-bottom: 120px;
    background: linear-gradient(90deg,
        rgba(248, 40, 94, 0.2) 0%,
        rgba(40, 141, 228, 0.2) 100%
    );
}

.flow-in {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.flow-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.3;
}

.flow-title-txt {
    background: linear-gradient(90deg,
        #f7265d 0%,
        #a849a7 50%,
        #278be1 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 40px;
}

.flow-h2 {
    position: relative;
    font-weight: 800;
    font-size: 40px;
}

.flow-h2::before {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg,
        #f7265d 0%,
        #a849a7 50%,
        #278be1 100%
    );
}

.flow-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.flow-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    background-color: #fff;
    border-radius: 0 40px 0 0;
    box-shadow: 0 0 16px rgba(0,0,0,0.3);
    padding: 16px;
    z-index: 1;
}

.flow-img-wrap {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flow-img {
    max-width: 120px;
    width: 100%;
    margin: 0 auto;
}

.flow-h3 {
    width: 50%;
    text-align: center;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.3;
}

.flow-num {
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    background: linear-gradient(90deg,
        #f7265d 0%,
        #a849a7 50%,
        #278be1 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 64px;
    line-height: 1;
}

.flow-arrow {
    position: relative;
    max-width: 32px;
    width: 100%;
    margin: -24px auto 0 auto;
    z-index: 1;
}

.flow-txt-wrap {
    position: relative;
    background: linear-gradient(90deg,
            rgba(248, 40, 94, 0.2) 0%,
            rgba(40, 141, 228, 0.2) 100%);
    text-align: center;
    padding: 24px 16px;
    border-radius: 50vh;
}

.flow-txt-wrap::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    background: linear-gradient(90deg,
            rgba(248, 40, 94, 0.2) 0%,
            rgba(40, 141, 228, 0.2) 100%);
    z-index: -1;
}

.flow-txt {
    text-shadow: 
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff,
    0 0 8px #fff;
    font-size: 24px;
}

.start-en-txt {
    position: absolute;
    bottom: -48px;
    right: 0;
    z-index: 2;
    max-width: 240px;
    width: 100%;
}
/*終わり*/


/*<section class="benefit">*/
.benefit {
    padding-top: 0;
}

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

.benefit-title-area {
    position: relative;
    margin: 0 -40px;
}

.benefit-title-txt-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #fff;
    width: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.benefit-h2 {
    position: relative;
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
}

.benefit-h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -40px;
    background-image: url(../img/benefit_slash_l.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
}

.benefit-h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -40px;
    background-image: url(../img/benefit_slash_r.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
}

.benefit-h2 .yellow-txt {
    font-size: 32px;
}

.benefit-title-txt-01 {
    max-width: 320px;
    width: 100%;
}

.benefit-title-txt-02 {
    text-align: center;
    font-size: 20px;
}

.benefit-bg {
    width: 100%;
}

.benefit-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-wrap {
    position: relative;
    width: 100%;
}

.benefit-txt-wrap {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    color: #fff;
    width: 100%;
    padding: 16px 40px 16px 140px;
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-h3 {
    font-weight: 800;
    font-size: 24px;
    white-space: nowrap;
}

.benefit-line-btn-wrap .line-btn-txt {
    color: #333;
}

.benefit-line-btn-wrap .line-btn-txt::before {
    background-image: url(../img/cta_slash_l.png);
}

.benefit-line-btn-wrap .line-btn-txt::after {
    background-image: url(../img/cta_slash_r.png);
}
/*終わり*/


/*<section class="cta">*/
.cta {
    position: relative;
    padding-top: 0;
}

.cta-in {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 240px;
}

.cta-img-wrap {
    position: relative;
    margin: 0 -40px;
}

.cta-img {
    width: 100%;
}

.cta-h2 {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: calc(100% - 80px);
    font-size: 32px;
    font-weight: 800;
}

.cta-h2 .box-line {
    text-align: center;
    background-color: #fff;
    border: solid 1px #333;
    padding: 0 16px;
}

.scroll-line {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    writing-mode: vertical-rl;
}

.scroll-line::before {
    animation: scroll 2s infinite;
    background-color: #103c2c;
    bottom: 0;
    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%;
    }
}

.cta-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
/*終わり*/


/*追従ボタン*/
.fix-cta-btn {
    display: none;
}
/*終わり*/


/*1500px ~ 1025px*/
@media (max-width: 1500px) {
/*<section class="bg">*/
    .bg-l,
    .bg-r {
        display: none;
    }
/*終わり*/
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    /*<div class="line-btn-wrap">*/
    .line-btn-txt {
        font-size: clamp(20px, 32vw / 5.99, 32px);
    }

    .line-btn-txt .num {
        font-size: clamp(32px, 48vw / 5.99, 48px);
    }

    .line-btn-txt::before,
    .line-btn-txt::after {
        width: clamp(24px, 32vw / 5.99, 32px);
        height: clamp(24px, 32vw / 5.99, 32px);
    }

    .line-btn {
        padding: clamp(8px, 16vw / 5.99, 16px);
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .line-btn::before {
        width: clamp(24px, 32vw / 5.99, 32px);
        height: clamp(24px, 32vw / 5.99, 32px);
    }

    .line-btn .yellow-txt {
        font-size: clamp(24px, 32vw / 5.99, 32px);
    }
/*終わり*/


/*<section class="fv">*/
    .fv {
        padding: clamp(24px, 40vw / 5.99, 40px) 3vw clamp(90px, 100vw / 5.99, 100px) 3vw;
    }

    .fv-staaca-logo {
        max-width: clamp(120px, 160vw / 5.99, 160px);
    }

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

    .fv-h2 {
        font-size: clamp(32px, 56vw / 5.99, 56px);
    }

    .logo-line-btn {
        padding: clamp(4px, 8vw / 5.99, 8px) 8px;
        max-width: clamp(200px, 320vw / 5.99, 320px);
        font-size: clamp(10px, 16vw / 5.99, 16px);
        box-shadow: 0 clamp(3px, 5vw / 5.99, 5px) 0 #006937;
    }

    .logo-line-btn::before {
        width: clamp(12px, 20vw / 5.99, 20px);
        height: clamp(12px, 20vw / 5.99, 20px);
        right: 8px;
    }

    .logo-line-btn .yellow-txt {
        font-size: clamp(14px, 20vw / 5.99, 20px) !important;
    }
/*終わり*/


/*<section class="skill">*/
    /*<div class="skill-bg-area">*/
    .skill-bg-area {
        padding-top: clamp(80px, 100vw / 5.99, 100px);
    }

    .skill-h2 {
        top: clamp(-120px, -140vw / 5.99, -140px);
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .skill-txt-wrap {
        gap: clamp(24px, 40vw / 5.99, 40px);
    }

    .skill-sup-h3-wrap {
        margin-bottom: clamp(40px, 64vw / 5.99, 64px);
    }

    .skill-sup-h3 {
        font-size: clamp(24px, 40vw / 5.99, 40px);
    }

    .support-en-txt-01 {
        max-width: clamp(140px, 180vw / 5.99, 180px);
    }

    .skill-worry-h4 {
        font-size: clamp(20px, 32vw / 5.99, 32px);
        width: calc(100% + 6vw);
        margin: 0 -3vw;
    }

    .skill-worry-h4-02 .gra-bg {
        padding: 4px clamp(24px, 40vw / 5.99, 40px);
    }

    .skill-worry-h4 .yellow-txt {
        font-size: clamp(24px, 40vw / 5.99, 40px);
    }

    /*<div class="skill-and">*/
    .skill-and-in {
        gap: clamp(24px, 40vw / 5.99, 40px);
    }

    .skill-arrow {
        top: clamp(-72px, -90vw / 5.99, -90px);
        max-width: clamp(20px, 24vw / 5.99, 24px);
    }

    .skill-leaf {
        max-width: clamp(40px, 64vw / 5.99, 64px);
    }

    .skill-and-h4 {
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }

    .skill-and-h4 .gra-txt {
        font-size: clamp(20px, 32vw / 5.99, 32px);
    }

    .skill-and-txt-img {
        max-width: clamp(80px, 100vw / 5.99, 100px);
    }

    .skill-staaca-logo {
        max-width: clamp(300px, 400vw / 5.99, 400px);
    }
/*終わり*/


/*<section class="what">*/
    .what {
        border-radius: clamp(64px, 100vw / 5.99, 100px);
    }

    .what-h2 {
        font-size: clamp(40px, 64vw / 5.99, 64px);
    }

    .what-circle-wrap {
        max-width: none;
        width: calc(100% - 6vw);
    }

    .what-grove-logo {
        max-width: clamp(160px, 200vw / 5.99, 200px);
    }

    .what-swiper-area {
        width: calc(100% + 6vw);
        margin: 0 -3vw;
    }

    .what-txt-02 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .what-txt-02 .white-back {
        font-size: clamp(32px, 48vw / 5.99, 48px);
    }
/*終わり*/


/*<section class="support">*/
    .support-h2-img {
        max-width: clamp(280px, 320vw / 5.99, 320px);
    }

    .support-en-txt-02 {
        max-width: clamp(140px, 180vw / 5.99, 180px);
    }

    .support-area {
        gap: clamp(56px, 64vw / 5.99, 64px);
    }

    .support-wrap,
    .support-wrap::before {
        border-radius: clamp(32px, 48vw / 5.99, 48px);
    }

    .support-h3 {
        font-size: clamp(24px, 32vw / 5.99, 32px);
        width: 60%;
    }

    .support-img-wrap {
        width: 40%;
    }

    .support-txt {
        text-align: left;
    }

    .support-num {
        top: clamp(-30px, -50vw / 5.99, -50px);
        font-size: clamp(60px, 100vw / 5.99, 100px);
    }
/*終わり*/


/*<section class="community">*/
    .comm-h2 {
        font-size: clamp(32px, 40vw / 5.99, 40px);
    }

    .comm-wrap {
        border-radius: clamp(24px, 40vw / 5.99, 40px);
    }

    .comm-h3 {
        border-radius: clamp(24px, 40vw / 5.99, 40px) clamp(24px, 40vw / 5.99, 40px) 0 0;
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .comm-wrap-txt {
        padding: clamp(16px, 24vw / 5.99, 24px);
    }

/*終わり*/


/*<section class="career">*/
    .career-in {
        border-radius: clamp(56px, 100vw / 5.99, 100px);
        padding: 40px 3vw;
    }

    .career-h2-img {
        max-width: clamp(240px, 340vw / 5.99, 340px);
    }

    .career-en-txt {
        max-width: clamp(140px, 180vw / 5.99, 180px);
    }

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

    .career-txt span {
        font-size: clamp(20px, 28vw / 5.99, 28px);
    }

    .career-area {
        margin: 0 -3vw;
    }

    .career-h3 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }
/*終わり*/


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

    .flow-h2 {
        font-size: clamp(32px, 40vw / 5.99, 40px);
    }

    .flow-h2::before {
        width: clamp(64px, 80vw / 5.99, 80px);
        height: 3px;
    }

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

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

    .flow-num {
        left: clamp(-8px, -16vw / 5.99, -16px);
        font-size: clamp(48px, 64vw / 5.99, 64px);
    }

    .flow-arrow {
        max-width: clamp(24px, 32vw / 5.99, 32px);
        margin: clamp(-16px, -24vw / 5.99, -24px) auto 0 auto;
    }

    .flow-txt {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .start-en-txt {
        max-width: clamp(200px, 240vw / 5.99, 240px);
    }
/*終わり*/


/*<section class="benefit">*/
    .benefit-title-area {
        margin: 0 -3vw;
    }

    .benefit-title-txt-wrap {
        padding: 40px 3vw;
        gap: clamp(4px, 16vw / 5.99, 16px);
    }

    .benefit-h2 {
        font-size: clamp(18px, 24vw / 5.99, 24px);
    }

    .benefit-h2::before,
    .benefit-h2::after {
        width: clamp(32px, 40vw / 5.99, 40px);
        height: clamp(32px, 40vw / 5.99, 40px);
    }

    .benefit-h2 .yellow-txt {
        font-size: clamp(24px, 32vw / 5.99, 32px);
    }

    .benefit-title-txt-01 {
        max-width: clamp(200px, 320vw / 5.99, 320px);
    }

    .benefit-title-txt-02 {
        font-size: clamp(16px, 20vw / 5.99, 20px);
    }

    .benefit-area {
        gap: clamp(8px, 16vw / 5.99, 16px);
    }

    .benefit-txt-wrap {
        padding: 16px clamp(24px, 40vw / 5.99, 40px) 16px clamp(90px, 120vw / 5.99, 120px);
        gap: clamp(4px, 16vw / 5.99, 16px);
    }

    .benefit-txt {
        font-size: clamp(12px, 18vw / 5.99, 18px);
    }

    .benefit-h3 {
        font-size: clamp(16px, 24vw / 5.99, 24px);
    }
/*終わり*/


/*<section class="cta">*/
    .cta-in {
        gap: clamp(200px, 240vw / 5.99, 240px);
    }

    .cta-img-wrap {
        margin: 0 -3vw;
    }
    
    .cta-h2 {
        bottom: clamp(-48px, -80vw / 5.99, -80px);
        width: calc(100% - 6vw);
        font-size: clamp(20px, 32vw / 5.99, 32px);
    }

    .scroll-line {
        bottom: clamp(-160px, -200vw / 5.99, -200px);
    }

    .scroll-line::before {
        height: clamp(80px, 100vw / 5.99, 100px);
    }
/*終わり*/


/*追従ボタン*/
    .fix-cta-btn {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        z-index: 1000;
        max-width: 600px;
        width: 100%;
        display: inline-block;
    }

    .fix-cta-btn.is-hidden {
        opacity: 0;
        visibility: hidden;
    }

    .fix-cta-btn .line-btn {
        border-radius: 0;
        font-size: 18px;
    }

    .fix-cta-btn .line-btn::before {
        width: 24px;
        height: 24px;
    }

    .line-btn .yellow-txt {
        font-size: 24px;
    }
/*終わり*/
}