@charset "utf-8";
/*共通設定*/
    /*<div class="h2-wrap">*/
.h2-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin-bottom: 64px;
    line-height: 1;
}

.h2-small-txt {
    font-size: 14px;
}

h2 {
    font-size: 48px;
    font-weight: 500;
}

    /*LINEボタン*/
.cta-btn {
    background-color: #42CF7B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    font-weight: 500;
    padding: 16px;
    font-size: 18px;
}

    /*scroll-line*/
.scroll-line {
    position: absolute;
    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: -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%;
    }
}

    /*YUSOテキスト*/
.yuso-txt {
    vertical-align: -0.1em;
    height: 1em;
}

    /* ぼかしアニメーション*/
.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);
}
/*終わり*/


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

.bg-in {
    width: 100%;
    height: 100%;
}

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

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

.bg-ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
}

.bg-line-btn {
    max-width: 320px;
}
/*終わり*/


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


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

.fv-in {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fv-logo-wrap {
    text-align: center;
}

.fv-logo {
    width: calc(100% - 80px);
}

.fv-txt-01 {
    padding: 0 40px;
    text-align: center;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.5;
}

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

.fv-img {
    width: 100%;
}

.fv-txt-02 {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color: #A7E9A9;
    max-width: 240px;
    width: 100%;
    text-align: center;
    padding: 4px 16px;
}

.fv-txt-02 .yuso-txt {
    padding: 0 4px;
}

.fv-h1 {
    padding: 0 40px;
    text-align: center;
    font-weight: 800;
    font-size: 36px;
}

.fv-txt-03 {
    padding: 0 40px;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 18px;
}

.fv-txt-flex {
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.fv-txt-04 {
    display: inline-block;
    max-width: 200px;
    width: 100%;
    text-align: center;
    border: solid 1px #103c2c;
    font-size: 14px;
}

.fv-line-btn {
    width: calc(100% - 80px);
    margin: 16px auto 0 auto;
}
/*終わり*/  


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

.about-h2-wrap {
    padding: 0 40px;
}

.about-h2 small {
    font-weight: 400;
    font-size: 32px;
}

.about-txt-wrap-01 {
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-txt-01 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
}

.about-txt-wrap-02 {
    position: relative;
    margin-top: 40px;
}

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

.about-img {
    width: 100%;
}

.about-yuso-logo {
    position: absolute;
    bottom: -16px;
    left: 40px;
    max-width: 160px;
    width: 100%;
}

.about-txt-06 {
    padding: 40px 40px 0 40px;
    font-weight: 600;
}

.about-bg-02 {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: calc(100% - 40px);
    z-index: -1;
}

.about-swiper-area {
    position: relative;
    margin-top: 64px;
}

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

.about-model-01,
.about-model-02 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-txt-wrap-03 {
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.about-seju-logo {
    max-width: 140px;
    width: 100%;
}

.about-txt-07 {
    font-weight: 600;
}

.about-bg-03 {
    position: absolute;
    top: 20%;
    right: 0;
    width: 50%;
    z-index: -1;
}

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

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


/*<section class="wanted">*/
.wanted {
    padding: 80px 0;
    background-color: #F2F2F2;
}

.wanted-h2 {
    padding: 0 40px;
}

.wanted-lead-txt {
    padding: 0 40px 0 80px;
}

.wanted-flex-wrap {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 64px;
}

.wanted-flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.wanted-flex:nth-child(2n+1) {
    flex-direction: row-reverse;
}

.wanted-img-wrap {
    width: 70%;
}

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

.wanted-txt {
    position: relative;
    width: 30%;
    padding: 40px;
    writing-mode: vertical-rl;
    text-orientation: upright;  
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: nowrap;
}

.wanted-txt::before {
    background-color: #103c2c;
    bottom: -30%;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 0.5px;
}

.wanted-txt-last::before {
    display: none;
}

.wanted-txt span {
    padding-top: 40%;
}
/*終わり*/  


/*<section class="benefit">*/
.benefit-h2-wrap {
    align-items: flex-start;
}

.benefit-wrap {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 64px;
}

.benefit-con {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-img-wrap {
    width: 100%;
}

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

.benefit-num {
    display: inline-block;
    background-color: #A7E9A9;
    font-size: 14px;
    padding: 4px 8px;
    line-height: 1;
}

.benefit-num span {
    font-weight: 700;
    padding-left: 8px;
}

.benefit-h3 {
    font-size: 24px;
    font-weight: 600;
}

.benefit-txt {
    margin-top: 8px;
    padding-left: 8px;
    border-left: solid 1px #103c2c;
}
/*終わり*/  


/*<section class="flow">*/
.flow {
    position: relative;
    background-color: #F2F2F2;
}

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

.flow-h2-wrap {
    align-items: flex-start;
}

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

.flow-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 24px;
}

.flow-con-l {
    position: relative;
    width: max-content;
    flex-shrink: 0;
}

.flow-con-l::before {
    background-color: #103c2c;
    content: "";
    height: calc(100% - 40px);
    margin: auto;
    width: 1px;
    position: absolute;
    top: calc(50% + 40px);
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.flow-con-l-last::before {
    display: none;
}

.flow-num span {
    font-weight: 700;
    padding-left: 4px;
}

.flow-con-r {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.flow-h3 {
    font-weight: 600;
    font-size: 18px;
}

.flow-bg {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    height: 70%;
    z-index: 1;
}
/*終わり*/  


/*<section class="requirements">*/
.requirements {
    position: relative;
    background-color: #F2F2F2;
}

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

.req-wrap {
    background-color: #fff;
    padding: 40px;
}

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

.req-ul li {
    position: relative;
    padding-left: 32px;
}

.req-ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    height: 1px;
    width: 16px;
    background: #103c2c;
}

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


/*<section class="start">*/
.start {
    position: relative;
    padding: 80px 0;
}

.start-in {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.start-h2 {
    padding: 0 40px;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    line-height: 1.5;
}

.start-img-wrap {
    width: 100%;
}

.start-img {
    width: 100%;
}

.start-txt {
    padding: 0 40px;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    line-height: 1.5;    
}

.scroll-line-02 {
    bottom: 0px;
}

.scroll-line-02::before {
    bottom: 55px;
    height: 40px;
}

.start-line-btn {
    width: calc(100% - 80px);
    margin: 0 auto;
}

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

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


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

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

.q-txt {
    padding: 8px 0;
    border-bottom: solid 1px #103c2c;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
}

.q-txt span {
    background-color: #A7E9A9;
    padding: 0 8px;
}

.a-txt {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}


.a-txt span {
    background-color: #A7E9A9;
    padding: 0 8px;
    font-size: 18px;
    font-weight: 600;
}
/*終わり*/  


/*<section class="privacy">*/
.privacy-area {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

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

.privacy-h3-small {
    background-color: #A7E9A9;
    display: inline-block;
    font-size: 14px;
    padding: 0 8px;
}

.privacy-h3 {
    font-size: 18px;
    font-weight: 600;
}

.privacy-ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-ul li {
    position: relative;
    padding-left: 32px;
}

.privacy-ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    height: 1px;
    width: 16px;
    background: #103c2c;
}
/*終わり*/  


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

.form-dl dt {
    display: flex;
    align-items: center;
    gap: 8px;
}

.required {
    background-color: #A7E9A9;
    font-size: 12px;
    padding: 0 8px;
    font-weight: 600;
}

.optional {
    background-color: #103C2C;
    color: #fff;
    font-size: 12px;
    padding: 0 8px;
    font-weight: 600;
}

.form-dl dd {
    padding: 4px 0 24px 0;
}

select {
    width: 100%;
    padding: 8px;
    font-family: "Noto Sans JP", sans-serif;
    border: solid 1px #636B70;
}

.input-text {
    width: 100%;
    padding: 8px;
    font-family: "Noto Sans JP", sans-serif;
    border: solid 1px #636B70;
}

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

.name-con {
    width: 49%;
}

.message {
    font-family: "Noto Sans JP", sans-serif;
    width: 100% !important;
    height: 160px;
    padding: 8px;
}

.submit-button {
    position: relative;
    background-color: #103C2C;
    color: #fff;
    gap: 16px;
    width: 100%;
    font-weight: 400;
    padding: 16px;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    border: none;
    transition: 0.2s;
}

.submit-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("../img/arrow.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.submit-button:hover {
    cursor: pointer;
    opacity: 0.8;
}

    /*contact form7変更*/
.wpcf7-spinner {
    display: none !important;
}
/*終わり*/ 


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



/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
    .pc-br,
    .sp-br {
        display: none;
    }

    .tb-br {
        display: block;
    }
/*終わり*/  


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


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


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


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


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


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


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


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


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


/*<section class="form">*/
/*終わり*/  
}
  
  
/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .pc-br,
    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }

    /*<div class="h2-wrap">*/
    .h2-wrap {
        margin-bottom: clamp(48px, 64vw / 5.99, 64px);
    }

    h2 {
        font-size: clamp(40px, 48vw / 5.99, 48px);
    }
/*終わり*/  


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

    .fv-txt-02 {
        bottom: clamp(24px, 40vw / 5.99, 40px);
    }

    .fv-h1 {
        padding: 0 3vw;
        font-size: clamp(24px, 36vw / 5.99, 36px);
    }

    .fv-txt-flex {
        flex-direction: column;
        align-items: center;
    }

    .fv-line-btn {
        width: calc(100% - 6vw);
    }
/*終わり*/  


/*<section class="about">*/
    .about-h2-wrap {
        padding: 0 3vw;
    }

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

    .about-txt-wrap-01 {
        padding: 0 3vw;
    }

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

    .about-yuso-logo {
        left: 3vw;
        max-width: clamp(120px, 160vw / 5.99, 160px);
    }

    .about-txt-06 {
        padding: 40px 3vw 0 3vw;
        font-weight: 600;
    }

    .about-txt-wrap-03 {
        padding: 24px 3vw;
        gap: clamp(16px, 24vw / 5.99, 24px);
    }

    .about-seju-logo {
        max-width: clamp(100px, 140vw / 5.99, 140px);
    }

    .about-bg-03 {
        top: 30%;
    }

/*終わり*/  


/*<section class="wanted">*/
    .wanted-h2 {
        padding: 0 3vw;
    }

    .wanted-lead-txt {
        padding: 0 3vw 0 6vw;
    }

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

    .wanted-txt::before {
        bottom: -40%;
        height: clamp(80px, 100vw / 5.99, 100px);
    }
/*終わり*/  


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


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

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

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


/*<section class="requirements">*/
    .req-wrap {
        padding: clamp(24px, 40vw / 5.99, 40px);
    }
/*終わり*/  


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

    .start-txt {
        padding: 0 3vw;
        font-size: clamp(24px, 32vw / 5.99, 32px);
    }

    .start-line-btn {
        width: calc(100% - 6vw);
    }
/*終わり*/  


/*<section class="faq">*/
    .q-txt {
        font-size: clamp(16px, 18vw / 5.99, 18px);
    }
/*終わり*/  


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


/*<section class="form">*/
    .submit-button::before {
        display: none;
    }
/*終わり*/  

}
