/* ------------共通------------ */

/* ------------共通------------ */

/* ------------kv------------ */
.kv {
    color: #fff;
    background-image: url(../images/pc/kv-min.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 90svh;
    width: 100%;
}

.kv_inner {
    position: absolute;
    top: 48%;
    left: 13%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.kv_main .kv_catchphrase {
    font-size: 60px;
    font-size: max(60px, 4.16vw);
    font-weight: 600;
    letter-spacing: 0.07rem;
    line-height: 1.5;
}

.kv_sub .kv_catchphrase {
    font-size: 16px;
    font-size: max(16px, 1.11vw);
    letter-spacing: 0.04rem;
    line-height: 1.1;
}

.kv_flow_text {
    color: #fff;
    font-size: 136px;
    letter-spacing: 0.04rem;
    line-height: 1.1;
    mix-blend-mode: difference;
    margin-top: -128px;
    bottom: 0;      
    overflow: hidden;
    display: flex;
    width: 100%;
    margin-inline: calc(50% - 50vw);
}

.kv_flow_text_item {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 136px;
    letter-spacing: 0.04rem;
    line-height: 1.16;
}

.kv_flow_text_item:nth-child(odd) {
    animation: MoveLeft 50s -25s infinite linear;
}
.kv_flow_text_item:nth-child(even) {
    animation: MoveLeft2 50s infinite linear;
}

@keyframes MoveLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes MoveLeft2 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

@media screen and (max-width: 1024px) {
    .kv_inner {
        left: 8%;
    }
}

@media screen and (max-width: 767px) {
    .kv {
        background-image: url(../images/sp/kv-sp-min.jpg);
        height: 93svh;
    }
    .kv_inner {
        left: 20px;
        gap: 16px;
        margin-top: 20px;
    }
    .kv_main .kv_catchphrase {
        font-size: 32px;
        font-size: max(32px, 8.25vw);
    }
    .kv_sub .kv_catchphrase {
        font-size: 10px;
    }
    .kv_flow_text {
        margin-top: -48px;
    }
    .kv_flow_text_item {
        font-size: 80px;
    }
}
/* ------------kv------------ */

/* ------------about------------ */
.under_about_img {
    background-image: url(../images/pc/top_service-min.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 464px;
    height: max(464px, 32.22vw);
    width: 100%;
}
.about_img_sp {
    display: none;
}
.about_margin {
    padding-top: 80px;
}
.about_inner {
    justify-content: space-between;
    gap: 111px;
}
.about_text {
    width: 478px;
    width: min(478px, 50%);
}
.about_img {
    width: 50%;
    width: max(681px, 50%);
    width: max(681px, 47.29vw);
    margin-top: 10px;
    margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 1024px) {
    .about_inner {
        margin-left: min(40px, 19.4vw);
        gap: 40px;
    }
    .about_text {
        width: 80%;
    }
    .about_img {
        margin-right: -5vw;
    }
}

@media screen and (max-width: 767px) {
    .about_img {
        display: none;
    }
    .about_img_sp {
        display: block;
        margin-top: 46px;
        margin-left: 20px;
        margin-right: -20px;
        margin-left: 5%;
        margin-right: -5vw;
    }
    .about_margin {
        padding-top: 58px;
        padding-bottom: 100px;
    }
    .about_inner {
        margin-right: 0px;
        margin-left: 0px;
    }
    .about_text {
        width: 100%;
    }
    .under_about_img {
        background-image: url(../images/sp/top_service-sp-min.jpg);
        height: max(260px, 66.6vw);
    }
}
/* ------------about------------ */

/* ------------service------------ */
.service_inner {
    gap: 40px;
}
.service_list {
    width: min(700px, 70%);
    display: flex;
    flex-wrap: wrap;
    gap: 60px 50px;
}
.service_item{
    width: calc((100% - 50px) / 2);
}
.service_item h3{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #078BD2;
    margin: 15px 0;
}
.service_item p{
    font-size: 14px;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
    .service_inner {
        flex-flow: column;
        gap: 50px;
    }
    .service_list{
        width: 100%;
        gap: 40px;
    }
    .service_item{
        width: calc((100% - 40px) / 2);
    }
}
@media screen and (max-width: 767px) {
    .service_inner {
        flex-direction: column;
    }
    .service_list{
        flex-flow: column;
    }
    .service_item{
        width: 100%;
    }
}
/* ------------service------------ */

/* ------------anime------------ */
@media screen and (min-width: 768px) {
    .js_fadedown_anime {
        opacity: 0;
        transform: translate(0, -10%);
        transition: all cubic-bezier(.17,.67,.57,.96) 0.8s;
        transition-delay: 2.6s;
    }
    .js_fadedown_anime.active {
        opacity: 1;
        transform: translate(0, 0);
    }
}
/* ------------anime------------ */