@charset "utf-8";
/*共通設定*/

    /*<div class="cta-btn-wrap">*/
.cta-btn-wrap {
    position: relative;
    margin-top: 24px;
}

.cta-txt-wrap {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color: #fff;
    font-size: 14px;
    text-align: center;
    width: max-content;
    border: solid 1px #595858;
    padding: 2px 16px;
    font-weight: 600;
    z-index: 2;
}

.cta-btn {
    position: relative;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #77D13F;
    border: solid 2px #6D6D6D;
    border-radius: 4px;
    box-shadow: 0 4px 0 #595858;
    padding: 16px;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    border-radius: 50vh;
    overflow: hidden;
}

.cta-btn::after {
    animation: 2s 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: '';
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skewX(-15deg);
    width: 100%;
}

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

    100% {
        left: 100%;
    }
}

    /*<div class="h2-wrap">*/
.h2-wrap {
    margin-bottom: 48px;
}

.h2-en {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
}

.h2-en span {
    position: relative;
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.h2-en span::before {
    position: absolute;
    top: 50%;
    content: '';
    width: 100vw;
    height: 1px;
    background-color: #aaa;
    z-index: 1;
}

.h2-en span::before {
    left: 108%;
}

.h2-wrap h2 {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    background-color: #DDFB13;
    width: max-content;
    padding: 0 8px;
}

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

.visible::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* 必要なら微調整する */
    height: 100%;
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 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);
}
/*終わり*/  


/*<section class="bg">*/
.bg {
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
}

.bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);
    z-index: 1;
}

.bg::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);
    z-index: 1;
}

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

.bg-in::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    background-color: #ddd;
    z-index: -1;
}

.bg-in::after {
    content: "";
    position: absolute;
    bottom: 80px;
    left: 0;
    margin: 0 -40px;
    width: 100vw;
    height: 1px;
    background-color: #ddd;
    z-index: -1;
}

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

.bg-h1 {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
    padding-left: 32px;
}

.bg-h1 span {
    position: relative;
}

.bg-h1 span::before {
    position: absolute;
    top: 25%;
    content: '';
    width: 50vw;
    height: 1px;
    background-color: #999;
    z-index: 1;
}

.bg-h1 span::before {
    right: 105%;
}

.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::before {
    content: "";
    border-bottom: solid 1px #BDBDBD;
    width: 20px;
    height: 1px;
}

.bg-cta-btn-wrap {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.bg .cta-txt-wrap {
    top: -16px;
}

.bg .cta-txt {
    font-size: 10px;
}

.bg-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #77D13F;
    border-radius: 4px;
    padding: 12px;
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50vh;
}

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

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

.bg-rotate-txt {
    max-width: 500px;
    width: 100%;
    position: absolute;
    bottom: -160px;
    right: -160px;
    animation: rotate 24s infinite linear;
    z-index: 2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/*終わり*/


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

.lp-wrap-in {
    position: relative;
    z-index: 3;
}
/*終わり*/


/*<div class="fv">*/
.fv {
    position: relative;
    padding: 0 40px;
}

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

.fv-txt-wrap {
    display: flex;
    justify-content: center;
    gap: 2%;
    flex-wrap: wrap;
    width: calc(100% - 40px);
    margin: 0 auto;
    z-index: 201;
}

.fv-txt {
    text-align: center;
    width: 32%;
    background-color: #fff;
    font-weight: 600;
    transform: skewX(160deg);
    box-shadow: 2px 2px 0 #595858;
    border: solid 1px #595858;
    margin-top: 2%;
    padding: 4px;
    font-size: 20px;
}

.fv-txt.visible::before {
    background: #fff;
}

.fv-txt span {
    display: block;
    transform: skewX(-160deg);
}

.fv .cta-btn-wrap {
    margin-top: 40px;
}
/*終わり*/


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

.about-title-wrap {
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-title-txt {
    margin: 0 auto;
    width: max-content;
    padding: 8px 24px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    transform: skewX(160deg);
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);
    line-height: 1;
}

.about-title-txt span {
    display: block;
    transform: skewX(-160deg);
}

.about-txt-wrap {
    text-align: center;
    padding: 24px 0;
}

.about-txt {
    font-size: 20px;
    font-weight: 600;
}

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

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

.challenge-wrap {
    margin: 40px -40px 0 -40px;
    padding: 64px 24px 40px 24px;
    background-color: #F6F6F6;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

.challenge-txt-wrap {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.challenge-txt-02 {
    text-align: left;
    margin-left: -24px;
}

.challenge-txt-03 {
    text-align: right;
    margin-right: -24px;
}

.challenge-txt-02 span,
.challenge-txt-03 span {
    width: max-content;
    padding: 8px 40px;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);
}

.challenge-txt-04 span {
    color: #33BCE0;
}

.about-circle-line-01 {
    position: absolute;
    top: 80px;
    right: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50vh;
    border: solid 1px #ddd;
    z-index: -1;
}

.about-circle-line-02 {
    position: absolute;
    bottom: 45%;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50vh;
    border: solid 1px #ddd;
    z-index: -1;
}
/*終わり*/


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

.talent-h2 {
    display: flex;
    flex-direction: column;  
    gap: 8px;
}

.talent-h2 span {
    background-color: #A0D7E5;
    color: #fff;
    padding: 0 24px;
    font-size: 32px;
    font-weight: 700;
    width: max-content;
}

.talent-h2 span.visible::before {
    background: #A0D7E5;
}

.talent-h2-span-02 {
    margin-left: 24px;
}

.talent-swiper {
    margin-top: 40px;
    background-color: #F6F6F6;
    padding: 24px;
}

.swiper-slide {
    height: auto;
}

.talent-swiper-box {
    background-color: #fff;
    padding: 24px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.talent-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    box-shadow: 6px 6px 0 #BDBDBD;
}

.talent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.talent-name {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #BDBDBD;
    color: #fff;
    font-size: 20px;
    padding: 4px 24px;
    font-weight: 600;
}

.talent-media-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.talent-media-title {
    background-color: #A0D7E5;
    padding: 0 16px;
    border-radius: 50vh;
    color: #fff;
    display: inline-block;
}

.talent-swiper-ul {
    font-size: 14px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 0.8;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-prev {
    background-image: url("../img/prev_btn.svg");
}

.swiper-button-next {
    background-image: url("../img/next_btn.svg");
}

.talent-txt-wrap {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.talent-txt span {
    width: max-content;
    padding: 8px 16px;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);
}

.talent-txt-02 {
    text-align: right;
}

.achieve-img-flex {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 32px -40px 0 -40px;
}

.achieve-img-wrap-01 {
    width: 58%;
}

.achieve-img-wrap-02 {
    width: 40%;
}

.achieve-img-wrap-01.visible::before,
.achieve-img-wrap-02.visible::before {
    background: #fff;
}

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

.talent-circle-line-01 {
    position: absolute;
    top: 80px;
    right: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50vh;
    border: solid 1px #ddd;
    z-index: -1;
}

.talent-circle-line-02 {
    position: absolute;
    bottom: 0%;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50vh;
    border: solid 1px #ddd;
    z-index: -1;
}
/*終わり*/


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

.support-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.support-con {
    width: 48%;
    position: relative;
    padding: 48px 24px 24px 24px;
    background-color: #fff;
    border: solid 1px #A7A7A7;
    box-shadow: 4px 4px 0 #595858;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.support-num {
    position: absolute;
    top: -8px;
    left: -4px;
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);
    padding: 4px 16px;
    font-weight: 800;
}

.support-icon {
    max-width: 120px;
    width: 100%;
    margin: 0 auto;
}

.support-txt-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-h3 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-txt {
    font-size: 16px;
}
/*終わり*/


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

.voice-in {
    position: relative;
    padding: 80px 40px;
    margin: 0 -40px;
}

.voice-talent-wrap {
    position: relative;
    margin: 0 -40px;
    background: linear-gradient(-175deg, #B4E1ED 62%, #F6F6F6 62%);
}

.voice-talent {
    position: relative;
    padding: 40px;
    z-index: 2;
}

.voice-flex {
    position: relative;
}

.voice-img-wrap-02 {
    text-align: right;
}

.voice-img {
    width: 50%;
}

.voice-txt-wrap-01 {
    position: absolute;
    top: 40%;
    left: 40%;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.voice-txt-wrap-02 {
    position: absolute;
    top: 40%;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.voice-txt-01 {
    background-color: #FFF;
    padding: 0 16px;
    font-size: 32px;
    font-weight: 700;
    width: max-content;
}

.voice-txt-01.visible::before,
.voice-txt-03.visible::before {
    background: #fff;
}

.voice-txt-02 {
    width: 100%;
    display: block;
    text-align: right;
    color: #FFF;
    font-size: 20px;
}

.voice-txt-03 {
    background-color: #FFF;
    padding: 0 16px;
    font-size: 32px;
    font-weight: 700;
    width: max-content;
}

.voice-txt-04 {
    width: 100%;
    display: block;
    font-size: 20px;
}

.voice-faq-wrap {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.voice-faq-con {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.voice-q-txt {
    font-weight: 700;
    transform: skewX(160deg);
    background-color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 20px;
}

.voice-q-txt span {
    display: block;
    transform: skewX(-160deg);
}

.voice-rotate-txt-01 {
    position: absolute;
    top: -40px;
    right: -40px;
    max-width: 160px;
    width: 100%;
    animation: rotate 24s infinite linear;
    z-index: 1;
}

.voice-rotate-txt-02 {
    position: absolute;
    top: 58%;
    right: -40px;
    max-width: 160px;
    width: 100%;
    animation: rotate 24s infinite linear;
    z-index: 1;
}
/*終わり*/


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

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

.flow-con {
    background-color: #fff;
    border: solid 1px #BDBDBD;
    box-shadow: 4px 4px 0 #595858;
    display: flex;
    gap: 8px;
}

.flow-num-wrap {
    padding: 8px 16px;
    background-color: #DDFB13;
    flex-shrink: 0;
}

.flow-num {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
}

.flow-num span {
    font-size: 32px;
    font-weight: 600;
}

.flow-icon-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
}

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

.flow-txt {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 1;
}

.triangle-icon {
    max-width: 24px;
    width: 100%;
    margin: 0 auto;
}

.city-wrap {
    margin-top: 64px;
}

.city-h3 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.city-h3::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);;
    width: 80px;
    height: 4px;
}

.city-flex {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.city-img-wrap,
.online-img-wrap {
    width: 47%;
}

.city-img-wrap.visible::before,
.online-img-wrap.visible::before {
    background: #fff;
}

.city-txt-wrap,
.online-txt-wrap {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.city-name,
.online-name {
    font-size: 24px;
    border-bottom: solid 1px #595858;
}

.online-con {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.flow-circle-line-01 {
    position: absolute;
    top: 40px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50vh;
    border: solid 1px #ddd;
    z-index: -1;
}

.flow-circle-line-02 {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50vh;
    border: solid 1px #ddd;
    z-index: -1;
}

.flow-circle-line-03 {
    position: absolute;
    bottom: 40px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50vh;
    border: solid 1px #ddd;
    z-index: -1;
}
/*終わり*/


/*<section class="req">*/
.req {
    position: relative;
    padding-bottom: 0;
    background-color: #F6F6F6;
}

.req-in {
    position: relative;
    z-index: 2;
}

.req-ul {
    background-color: #fff;
    border: solid 1px #595858;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.move-wrap {
    position: relative;
    margin: 0 -40px;
    padding: 0px 24px 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.move-title-wrap {
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.move-title-txt {
    margin: 0 auto;
    width: max-content;
    padding: 8px 24px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    transform: skewX(160deg);
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);
    line-height: 1;
}

.move-title-txt .back-color {
    display: block;
    transform: skewX(-160deg);
    font-style: italic;
}

.move-title-txt .shadow-txt {
    text-shadow: 0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff,
        0 0 10px #fff;
}

.move-video-wrap {
    position: relative;
    width: 100%;
    z-index: 2;
}

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

.move-txt-wrap {
    position: relative;
    text-align: center;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    gap: 8px;
    z-index: 2;
}

.move-txt-01 span {
    color: #73BCFC;
}

.move-txt-03 {
    text-align: left;
    margin: 16px 0;
}

.move-txt-04 {
    text-align: right;
}

.move-txt-03 span,
.move-txt-04 span {
    width: max-content;
    padding: 8px 40px;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(45deg, #DDFB13 4%, #B9E6EE 80%);
}

.req-circle-line {
    position: absolute;
    top: 35%;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50vh;
    border: solid 1px #BDBDBD;
    z-index: 1;
}
/*終わり*/


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

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

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

.nav-open {
    position: relative;
    background-color: #595858;
    padding: 16px;
    border-radius: 4px;
}

.nav-open.active {
    border-radius: 4px 4px 0 0;
}

.q-txt {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-right: 40px;
    color: #fafafa;
}

.plus-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #DDFB13;
    border-radius: 50%;
}

.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: #595858;
}

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

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

.faq-txt {
    display: none;
    padding: 16px;
    background-color: #F6F6F6;
    border-radius: 0 0 4px 4px;
}

.a-txt small {
    font-size: 12px;
}

.nav-open.active .plus-icon::after {
    display: none;
}

/*終わり*/


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

.notice-ul {
    background-color: #fff;
    border: solid 1px #595858;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notice-ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}
/*終わり*/


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


/*<div class="sp-cta-btn-wrap">*/
.sp-cta-btn-wrap {
    display: none;
}
/*終わり*/


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


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

    /*<div class="cta-btn-wrap">*/
    .cta-txt-wrap {
        top: -16px;
        font-size: clamp(12px, 14vw / 5.99, 14px);
    }

    .cta-btn {
        max-width: none;
        width: 100%;
        font-size: clamp(18px, 20vw / 5.99, 20px);
    }

    /*<div class="h2-wrap">*/
    .h2-en {
        font-size: clamp(48px, 56vw / 5.99, 56px);
    }

/*終わり*/


/*<div class="fv">*/
    .fv {
        padding: 0 3vw 24px 3vw;
    }

    .fv-img-wrap {
        position: relative;
        margin: 0 -3vw;
    }

    .fv-txt-wrap {
        width: calc(100% - 3vw);
    }

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


/*<div class="about">*/
    .about-title-wrap {
        gap: clamp(8px, 16vw / 5.99, 16px);
    }

    .about-title-txt {
        font-size: clamp(24px, 40vw / 5.99, 40px);
    }

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

    .slider-swiper {
        margin: 40px -3vw;
    }

    .challenge-wrap {
        margin: 40px -3vw 0 -3vw;
        padding: 64px clamp(16px, 24vw / 5.99, 24px) 40px clamp(16px, 24vw / 5.99, 24px);
    }

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

    .challenge-txt-02 {
        margin-left: clamp(-16px, -24vw / 5.99, -24px);
    }

    .challenge-txt-03 {
        margin-right: clamp(-16px, -24vw / 5.99, -24px);
    }

    .challenge-txt-02 span,
    .challenge-txt-03 span {
        font-size: clamp(20px, 32vw / 5.99, 32px);
    }

    .about-circle-line-01 {
        right: clamp(-100px, -150vw / 5.99, -150px);
        width: clamp(200px, 300vw / 5.99, 300px);
        height: clamp(200px, 300vw / 5.99, 300px);
    }

    .about-circle-line-02 {
        left: clamp(-100px, -150vw / 5.99, -150px);
        width: clamp(200px, 300vw / 5.99, 300px);
        height: clamp(200px, 300vw / 5.99, 300px);
    }
/*終わり*/


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

    .talent-swiper {
        padding: 24px clamp(16px, 24vw / 5.99, 24px);
    }

    .talent-swiper-box {
        padding: 24px clamp(16px, 32vw / 5.99, 32px);
    }

    .talent-name {
        font-size: clamp(16px, 20vw / 5.99, 20px);
        padding: 4px clamp(16px, 24vw / 5.99, 24px);
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: clamp(40px, 48vw / 5.99, 48px);
        height: clamp(40px, 48vw / 5.99, 48px);
        top: 40%;
    }

    .talent-txt span {
        padding: 8px clamp(8px, 16vw / 5.99, 16px);
        font-size: clamp(16px, 24vw / 5.99, 24px);
    }

    .achieve-img-flex {
        margin: 32px -3vw 0 -3vw;
    }

    .talent-circle-line-01 {
        right: clamp(-100px, -150vw / 5.99, -150px);
        width: clamp(200px, 300vw / 5.99, 300px);
        height: clamp(200px, 300vw / 5.99, 300px);
    }

    .talent-circle-line-02 {
        left: clamp(-100px, -150vw / 5.99, -150px);
        width: clamp(200px, 300vw / 5.99, 300px);
        height: clamp(200px, 300vw / 5.99, 300px);
    }
/*終わり*/


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

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

    .support-h3 {
        font-size: clamp(14px, 20vw / 5.99, 20px);
        min-height: clamp(56px, 64vw / 5.99, 64px);
    }

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


/*<section class="voice">*/
   .voice-in {
       padding: clamp(56px, 64vw / 5.99, 64px) 3vw;
       margin: 0 -3vw;
   }

    .voice-talent-wrap {
        margin: 0 -3vw;
    }

    .voice-talent {
        padding: 40px 3vw;
    }

    .voice-txt-01 {
        padding: 0 16px;
        font-size: clamp(18px, 32vw / 5.99, 32px);
    }

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

    .voice-txt-03 {
        padding: 0 16px;
        font-size: clamp(18px, 32vw / 5.99, 32px);
    }

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

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


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

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

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

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

    .city-img-wrap,
    .online-img-wrap {
        width: 40%;
    }

    .city-txt-wrap,
    .online-txt-wrap {
        width: 56%;
    }

    .city-name,
    .online-name {
        font-size: clamp(20px, 24vw / 5.99, 24px);
    }

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

    .flow-circle-line-01 {
        right: clamp(-100px, -150vw / 5.99, -150px);
        width: clamp(200px, 300vw / 5.99, 300px);
        height: clamp(200px, 300vw / 5.99, 300px);
    }

    .flow-circle-line-02 {
        left: clamp(-100px, -150vw / 5.99, -150px);
        width: clamp(200px, 300vw / 5.99, 300px);
        height: clamp(200px, 300vw / 5.99, 300px);
    }

    .flow-circle-line-03 {
        right: clamp(-50px, -100vw / 5.99, -100px);
        width: clamp(100px, 200vw / 5.99, 200px);
        height: clamp(100px, 200vw / 5.99, 200px);
    }
/*終わり*/


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

    .move-wrap {
        margin: 0 -3vw;
        padding: 0px clamp(16px, 24vw / 5.99, 24px) 40px clamp(16px, 24vw / 5.99, 24px);
    }

    .move-title-wrap {
        gap: clamp(8px, 16vw / 5.99, 16px);
    }

    .move-title-txt {
        font-size: clamp(24px, 40vw / 5.99, 40px);
    }

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

    .move-txt-03 span,
    .move-txt-04 span {
        font-size: clamp(20px, 32vw / 5.99, 32px);
    }

    .req-circle-line {
        right: clamp(-100px, -150vw / 5.99, -150px);
        width: clamp(200px, 300vw / 5.99, 300px);
        height: clamp(200px, 300vw / 5.99, 300px);
    }
/*終わり*/


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


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


/*<section class="privacy">*/
    .privacy .h2-en {
        font-size: clamp(40px, 48vw / 5.99, 48px);
    }
/*終わり*/


/*<div class="sp-cta-btn-wrap">*/
    .sp-cta-btn-wrap {
        position: fixed;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        z-index: 100;
    }

    .sp-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: #77D13F;
        height: 56px;
        font-size: 18px;
        color: #fff;
        font-weight: 600;
    }

    .sp-cta-btn .line-icon {
        max-width: 20px;
        width: 100%;
    }
/*終わり*/
}
