@charset "utf-8";
/*共通設定*/
    /*<a class="line-btn">*/
.line-btn-wrap {
    position: relative;
    max-width: 360px;
    width: 100%;
    margin: 40px auto 0 auto;
}

.line-btn-txt {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color: #FFB89B;
    font-size: 14px;
    text-align: center;
    width: max-content;
    padding: 2px 16px;
    font-weight: 600;
    z-index: 3;
}

.line-btn-txt::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 6px solid #FFB89B;
    border-bottom: 0;
}

.line-btn {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #7ED847;
    padding: 12px 8px;
    border-radius: 50vh;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    z-index: 2;
}

    /*<div class="h2-title-wrap">*/
.h2-title-wrap {
    position: relative;
    margin-bottom: 56px;
}

.h2-en {
    color: #F5F5F5;
    font-weight: 800;
    font-size: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
}

.h2-title {
    position: relative;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    z-index: 2;
}

.h2-title .sharp-icon {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 2px;
    background-color: #333;
    color: #fff;
    margin-right: 8px;
}

    /* ぼかしアニメーション*/
.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); /* 下に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-color: #F5F5F5;
}

.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-h1 {
    text-align: center;
}

.bg-staaca-logo {
    max-width: 320px;
    width: 100%;
}

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

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

.bg .sharp-icon {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 2px;
    background-color: #333;
    color: #fff;
}

.bg-line-btn-wrap {
    margin: 40px auto 0 0;
}

.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: 240px;
    width: 100%;
}
/*終わり*/


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


/*<section class="fv">*/
.fv {
    position: relative;
    padding-bottom: 40px;
    background-color: #F5F5F5;
}

.fv-in {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fv-txt-wrap-01 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.fv-txt-01 {
    position: relative;
    padding: 0 40px 4px 40px;
    text-align: center;
    font-weight: 800;
    font-size: 32px;
}

.fv-txt-01::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 360px;
    width: 100%;
    height: 2px;
    border-bottom: solid 2px #0C0C0C;
}

.fv-txt-01::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    max-width: 240px;
    width: 100%;
    height: 2px;
    border-bottom: solid 2px #0C0C0C;
}

.fv-h2 {
    font-size: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.fv-h2 span {
    width: max-content;
    padding: 0 16px;
    background-color: rgba(12,12,12,0.9);
    color: #FFF;
}

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

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

.fv-txt-wrap-02 {
    padding: 0 40px;
    text-align: center;
}

.fv-txt-02 {
    width: 100%;
}

.fv-staaca-logo {
    max-width: 400px;
    width: 100%;
}
/*終わり*/


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

.worry-in {
    padding-top: 160px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.worry-txt-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.worry-txt-01 {
    background-color: #0C0C0C;
    padding: 0 8px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.worry-txt-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.worry-txt-l {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    gap: 16px;
}

.worry-txt-02 {
    width: max-content;
    margin: 0 auto;
    border: solid 1px #D9D9D9;
    background-color: #fff;
    border-radius: 50vh;
    padding: 4px 16px;
    text-align: center;
    font-size: 16px;
}

.worry-txt-r {
    width: 20%;
    text-align: center;
}

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


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

.place-h2 {
    text-align: center;
    font-weight: 800;
    font-size: 26px;
}

.place-h2 span {
    background-color: #0C0C0C;
    color: #fff;
    padding: 2px 8px;
}
/*終わり*/


/*<div class="pro-video-area">*/
.pro-video-area {
    padding: 0 40px;
}

.pro-video-pc-wrap {
    position: relative;
}

.pro-video-pc-wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 64px;
    margin: 0 -40px;
    background-color: #F5F5F5;
    z-index: -1;
}

.pro-video-pc {
    width: 100%;
}

.pro-video {
    position: absolute;
    top: calc(50% - 8px);
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    max-width: 328px;
    width: 100%;
    aspect-ratio: 8 / 5;
    object-fit: cover;
}
/*終わり*/


/*<div class="creative">*/
.creative-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.creative-wrap {
    background-color: #F5F5F5;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.creative-wrap-02 {
    flex-direction: row-reverse;
}

.creative-img-wrap {
    width: 30%;
}

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

.creative-txt-wrap {
    width: 65%;
}

.creative-h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
    padding-bottom: 8px;
    border-bottom: solid 1px #333;
}

.creative-txt {
    padding-top: 8px;
    font-size: 16px;
}


/*終わり*/


/*<div class="how-reason-bg">*/
.how-reason-bg {
    position: relative;
    background-color: #000;
    z-index: 1;
}

.how-reason-bg::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/noise_bg.gif) repeat left top;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0.2;
}
/*終わり*/


/*<section class="how">*/
.how {
    position: relative;
    z-index: 3;
}

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

.how-logo-wrap {
    width: 30%;
    text-align: center;
}

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

.how-h2 {
    width: 65%;
    display: flex;
    flex-direction: column;
    font-size: 32px;
    gap: 8px;
}

.how-h2-span-01 {
    width: max-content;
    background-color: #fff;
    padding: 0 8px;
}

.how-h2-span-02 {
    margin-left: 24px;
    width: max-content;
    background-color: #fff;
    padding: 0 8px;
}

.how-swiper {
    margin: 40px -40px;
}

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

.how-txt {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
/*終わり*/


/*<section class="reason">*/
.reason {
    position: relative;
    z-index: 3;
}

.reason .h2-en {
    color: #F5F5F5;
    opacity: 0.2;
}

.reason .h2-title {
    color: #fff;
}

.reason .h2-title .sharp-icon {
    background-color: #fff;
    color: #333;
}

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

.reason-img-wrap {
    position: relative;
}

.reason-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.reason-num {
    position: absolute;
    bottom: -16px;
    left: 0;
    letter-spacing: 0;
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.2);
}

.reason-num-01 {
    color: #6FB7F1;
}

.reason-num-02 {
    color: #60E69D;
}

.reason-num-03 {
    color: #FF90BF;
}

.reason-h3 {
    color: #f1f1f1;
    line-height: 1.3;
    font-size: 24px;
    font-weight: 800;
    padding: 24px 0 8px 0;
    border-bottom: solid 1px #f1f1f1;
}

.reason-txt {
    color: #fff;
    padding-top: 8px;
}
/*終わり*/


/*<section class="course">*/
.course {
    background-color: #f1f1f1;
}

.course .h2-en {
    color: #f9f9f9;
}

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

.course-wrap {
    background-color: #fff;
    border-radius: 8px;
}

.course-title {
    position: relative;
    padding: 16px;
    border-radius: 8px 8px 0 0;
}

.course-title-01 {
    background-color: #6FB7F1;
}

.course-title-02 {
    background-color: #60E69D;
}

.course-title-03 {
    background-color: #FF90BF;
}

.course-title-txt {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
}

.course-num {
    width: max-content;
    background-color: #f1f1f1;
    border-radius: 50vh;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 800;
}

.course-num-01 {
    color: #6FB7F1;
}

.course-num-02 {
    color: #60E69D;
}

.course-num-03 {
    color: #FF90BF;
}

.course-h3 {
    font-weight: 800;
    font-size: 24px;
}

.course-illust {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100px;
    z-index: 2;
}

.course-txt-wrap {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.course-video-wrap {
    width: 100%;
    height: 100%;
}

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

.course-ul {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.course-sp-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.course-sp-txt-01 {
    font-size: 32px;
    font-weight: 800;
    background-color: #0C0C0C;
    color: #f1f1f1;
    padding: 4px 8px;
}

.course-arrow {
    max-width: 32px;
    width: 100%;
}

.course-sp-wrap {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.course-sp-title {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 8px 8px 0 0;
    background-color: #0C0C0C;
    color: #f1f1f1;
}

.course-sp-h3 {
    font-weight: 800;
    font-size: 24px;
}

.course-sp-txt-wrap {
    padding: 16px 16px 40px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-sp-txt-02 {
    text-align: center;
    font-weight: 800;
    font-size: 20px;
}

.course-sp-illust {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 80px;
    width: 100%;
}
/*終わり*/


/*<section class="career">*/
.career-img-wrap {
    position: relative;
    margin: 0 -40px 88px -40px;
}

.career-img {
    width: 100%;
}

.career-txt {
    background-color: #0C0C0C;
    color: #f1f1f1;
    font-weight: 800;
    font-size: 32px;
    padding: 4px 16px;
    position: absolute;
    right: 0;
    bottom: -16px;
    z-index: 2;
}

.career-lead {
    text-align: center;
}

.support-area {
    margin-top: 40px;
    background-color: #f5f5f5;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.support-h3-txt {
    border: solid 1px #D9D9D9;
    background-color: #fff;
    border-radius: 50vh;
    padding: 0 16px;
}

.support-h3 {
    font-weight: 800;
    font-size: 20px;
}

.support-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 8px;
}

.support-con {
    width: calc(50% - 4px);
    border: solid 1px #D9D9D9;
    background-color: #fff;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.support-icon {
    height: 100px;
}

.support-txt {
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 4px;
}

.support-txt-01 {
    background-color: #6FB7F1;
}

.support-txt-02 {
    background-color: #FFB89B;
}

.support-txt-03 {
    background-color: #FF90BF;
}

.support-txt-04 {
    background-color: #60E69D;
}
/*終わり*/


/*<div class="consul">*/
.consul {
    position: relative;
    background-image: url(../img/consul_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.consul-txt {
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-size: 32px;
}

.consul-txt span {
    background-color: #fff;
    color: #333;
    padding: 0 8px;
}

.consul .line-btn-wrap {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin-top: 0;
}
/*終わり*/


/*<section class="flow">*/
.flow {
    padding: 120px 40px 64px 40px;
}

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

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

.flow .h2-title-wrap {
    margin-bottom: 72px;
}

.flow-wrap {
    position: relative;
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 32px 16px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.flow-num {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 24px;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-weight: 800;
}

.flow-num-01 {
    background-color: #6FB7F1;
}

.flow-num-02 {
    background-color: #60E69D;
}

.flow-num-03 {
    background-color: #FF90BF;
}

.flow-num-04 {
    background-color: #FFB89B;
}

.flow-icon {
    max-width: 100px;
    width: 100%;
}

.flow-txt-wrap {
    width: calc(100% - 130px);
}

.flow-h3 {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 800;
    font-size: 20px;
}

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

.flow-line {
    margin: 0 auto;
    width: 1px;
    height: 56px;
    background-color: #333;
}
/*終わり*/


/*<section class="cta">*/
.cta {
    padding-top: 260px;
    position: relative;
    background-color: #000;
    z-index: 1;
}

.cta::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/noise_bg.gif) repeat left top;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0.2;
}

.cta-in {
    position: relative;
    z-index: 3;
}

.cta-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    object-fit: cover;
    z-index: 3;
}

.cta-txt-wrap {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.cta-h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 32px;
    font-weight: 800;
}

.cta-h2 span {
    width: max-content;
    background-color: #f1f1f1;
    padding: 0 16px;
}

.cta-line {
    animation: scroll 2s infinite;
    margin: 0 auto;
    width: 1px;
    height: 48px;
    background-color: #f1f1f1;
}

@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 .line-btn-wrap {
    margin-top: 0;
}

.cta-line-btn-txt {
    font-weight: 800;
    font-size: 24px;
    color: #f1f1f1;
}
/*終わり*/


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


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    /*<div class="h2-title-wrap">*/
    .h2-title-wrap {
        margin-bottom: 56px;
    }

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

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


/*<section class="fv">*/
    .fv-txt-01 {
        padding: 0 3vw 6px 3vw;
        font-size: clamp(20px, 32vw / 5.99, 32px);
    }

    .fv-txt-01::before {
        max-width: clamp(240px, 360vw / 5.99, 360px);
    }

    .fv-txt-01::after {
        max-width: clamp(180px, 240vw / 5.99, 240px);
    }

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

    .fv-txt-wrap-02 {
        padding: 0 3vw;
    }

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


/*<div class="worry">*/
    .worry-in {
        padding-top: clamp(100px, 160vw / 5.99, 160px);
        gap: clamp(32px, 48vw / 5.99, 48px);
    }

    .worry-txt-01 {
        font-size: clamp(16px, 24vw / 5.99, 24px);
    }

    .worry-txt-l {
        gap: clamp(8px, 16vw / 5.99, 16px);
    }

    .worry-txt-02 {
        padding: 4px clamp(0px, 8vw / 5.99, 8px);
        font-size: clamp(12px, 16vw / 5.99, 16px);
    }
/*終わり*/


/*<section class="place">*/
    .place-h2 {
        font-size: clamp(20px, 26vw / 5.99, 26px);
    }
/*終わり*/


/*<div class="pro-video-area">*/
    .pro-video-area {
        padding: 0 3vw;
    }

    .pro-video-pc-wrap::before {
        margin: 0 -3vw;
    }

    .pro-video {
        position: absolute;
        top: calc(50% - 6px);
        max-width: clamp(232px, 328vw / 5.99, 328px);
    }
/*終わり*/


/*<div class="creative">*/
    .creative-img-wrap {
        width: 35%;
    }

    .creative-txt-wrap {
        width: 60%;
    }

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

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


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

    .how-h2 {
        width: 68%;
        font-size: clamp(24px, 32vw / 5.99, 32px);
    }

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


/*<section class="reason">*/
    .reason-num {
        font-size: clamp(56px, 80vw / 5.99, 80px);
    }

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


/*<section class="course">*/
    .course-num {
        font-size: clamp(12px, 16vw / 5.99, 16px);
    }

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

    .course-illust {
        height: clamp(72px, 100vw / 5.99, 100px);
    }

    .course-ul {
        padding: 16px clamp(8px, 16vw / 5.99, 16px);
    }

    .course-sp-txt-01 {
        font-size: clamp(24px, 32vw / 5.99, 32px);
    }

    .course-sp-title {
        padding: clamp(8px, 16vw / 5.99, 16px);
    }

    .course-sp-h3 {
        font-size: clamp(20px, 24vw / 5.99, 24px);
    }

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

    .course-sp-illust {
        max-width: clamp(56px, 80vw / 5.99, 80px);
    }
/*終わり*/


/*<section class="career">*/
    .career-img-wrap {
        margin: 0 -3vw clamp(72px, 88vw / 5.99, 88px) -3vw;
    }

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

    .support-area {
        padding: 24px clamp(8px, 16vw / 5.99, 16px);
        gap: clamp(24px, 40vw / 5.99, 40px);
    }

    .support-h3 {
        text-align: center;
        font-size: clamp(18px, 20vw / 5.99, 20px);
        line-height: 1.5;
    }

    .support-con {
        padding: 16px clamp(4px, 10vw / 5.99, 10px);
    }

    .support-icon {
        height: clamp(64px, 100vw / 5.99, 100px);
    }

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


/*<div class="consul">*/
    .consul-txt {
        font-size: clamp(20px, 32vw / 5.99, 32px);
    }
/*終わり*/


/*<section class="flow">*/
    .flow {
        padding: 120px 3vw 64px 3vw;
    }

    .flow-img-wrap {
        margin: 0 -3vw 64px -3vw;
    }

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

    .flow-txt-wrap {
        width: calc(100% - clamp(80px, 130vw / 5.99, 130px));
    }

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

    .flow-num {
        font-size: clamp(20px, 24vw / 5.99, 24px);
        top: clamp(-20px, -24vw / 5.99, -24px);
        width: clamp(40px, 48vw / 5.99, 48px);
        height: clamp(40px, 48vw / 5.99, 48px);
        line-height: clamp(40px, 48vw / 5.99, 48px);
    }

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


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

    .cta-img {
        height: clamp(200px, 300vw / 5.99, 300px);
    }

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

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