@charset "UTF-8";

/* 共通設定 ------------------------------- */
.section-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}
.section-title span{
    display: block;
    font-weight: 400;
}
.section-title .en{
    font-family: "League Spartan", sans-serif;
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.2em;
}
.section-title .ja{
    font-size: 14px;
    line-height: 1.2em;
}

/* mv ------------------------------------ */
#mv-area{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
#mv-area .mvimage-list{
    width: 100%;
    height: 100vh;
    position: relative;
}
#mv-area .mvimage-list li{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: fade 15s infinite;
}
#mv-area .mvimage-list li:nth-child(1){
    animation-delay: 0s;
}
#mv-area .mvimage-list li:nth-child(2){
    animation-delay: 5s;
}
#mv-area .mvimage-list li:nth-child(3){
    animation-delay: 10s;
}

@keyframes fade{
    0%{
        opacity: 0;
    }
    15%{
        opacity: 1;
    }
    30%{
        opacity: 1;
    }
    45%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}

#mv-area .mvimage-list li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* catchphrase --------------------------- */
#catchphrase{
    width: 100%;
    height: calc(100vh - 80px);
    padding: 0 5%;
}
#catchphrase p{
    width: 435px;
    color: #fff;
    margin: 0 0 0 auto;
}
#catchphrase .main{
    font-family: "Shippori Mincho B1", serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.4em;
    padding-top: 160px;
}
#catchphrase .sub{
    font-size: 16px;
    line-height: 1.6em;
}


/* introduction -------------------------- */
#introduction{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    padding: 0;
    margin: 135px 0;
}

#introduction .text-area{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin-right: 10%;
    margin-left: 70px;
}
#introduction .text-area .title{
    writing-mode: vertical-rl;
    font-family: "Shippori Mincho B1", serif;
    font-size: 32px;
    line-height: 1.4em;
    margin-left: 70px;
}
#introduction .text-area .text{
    writing-mode: vertical-rl;
    height: 240px;
}

#introduction .img-area{
    width: 422px;
}


/* strength ------------------------------ */
#strength{
    width: 100%;
    padding: 0;
}

#strength .text-area{
    width: 80%;
    background-color: #f5f5f5;
    display: flex;
    padding: 90px 5%;
}
#strength .text-area .strength-title{
    writing-mode: vertical-rl;
    font-family: "Shippori Mincho B1", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4em;
    margin-right: 40px;
}
#strength .text-area .strength-list{
    padding-right: 90px;
}
#strength .text-area .strength-list li{
    padding-left: 50px;
    margin-bottom: 75px;
    position: relative;
}
#strength .text-area .strength-list li::before{
    content: "";
    width: 50px;
    height: 35px;
    background-size: contain;
    position: absolute;
    top: 8px;
    left: -5px;
    z-index: 1;
}
#strength .text-area .strength-list li:nth-child(1):before{
    background-image: url(../img/strength01.svg);
}
#strength .text-area .strength-list li:nth-child(2):before{
    background-image: url(../img/strength02.svg);
}
#strength .text-area .strength-list li:nth-child(3):before{
    background-image: url(../img/strength03.svg);
}
#strength .text-area .strength-list li:last-child{
    margin-bottom: 0;
}
#strength .text-area .strength-list li .main{
    font-family: "Shippori Mincho B1", serif;
    font-size: 24px;
    line-height: 1.4em;
    margin-bottom: 10px;
}
#strength .text-area .strength-list li .sub{
    margin-left: 20px;
    position: relative;
}
#strength .text-area .strength-list li .sub::before{
    content: "";
    width: 15px;
    height: 1px;
    background-color: #222;
    position: absolute;
    top: 16px;
    left: -20px;
}

#strength .img-area{
    width: 30%;
    margin: -480px 0 0 auto;
}


/* service ------------------------------- */
#top-service{
    width: 100%;
    padding: 150px 5%;
    margin: 0;
}

#top-service .service-list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 60px;
}
#top-service .service-list li{
    width: 100%;
    background-color: #f5f5f5;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}
#top-service .service-list li .title{
    margin-bottom: 80px;
}
#top-service .service-list li .title span{
    display: block;
}
#top-service .service-list li .title .ja{
    font-family: "Shippori Mincho B1", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em;
}
#top-service .service-list li .title .en{
    font-family: "League Spartan", sans-serif;
    font-size: 14px;
    line-height: 1.4em;
    color: #868686;
}
#top-service .service-list li p{
    font-size: 16px;
    margin-top: auto;
    margin-bottom: 40px;
}
#top-service .service-list li .btn-wrap{
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* flow ---------------------------------- */
#flow{
    width: 100%;
    background-image: url(../img/flow-backimage.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0 0 150px;
    margin: 0 auto;
}
#flow .section-title{
    color: #fff;
    padding: 80px 0;
    margin: 0;
}

#flow .flow-list{
    width: 90%;
    background-color: #fff;
    border: 1px solid #FF5F09;
    display: flex;
    margin: 0 auto;
}
#flow .flow-list li{
    width: calc(100% / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 5%;
    position: relative;
}
#flow .flow-list li::before{
    content: "";
    width: 1px;
    height: 52%;
    background-color: #FF5F09;
    transform: rotate(-15deg);
    position: absolute;
    top: -3px;
    right: 0;
    z-index: 1;
}
#flow .flow-list li::after{
    content: "";
    width: 1px;
    height: 52%;
    background-color: #FF5F09;
    transform: rotate(15deg);
    position: absolute;
    bottom: -3px;
    right: 0;
    z-index: 1;
}
#flow .flow-list li:last-child::before{
    content: none;
}
#flow .flow-list li:last-child::after{
    content: none;
}
#flow .flow-list li .img-wrap{
    width: 125px;
    height: 110px;
    margin-bottom: 20px;
}
#flow .flow-list li .text-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#flow .flow-list li .text-wrap .title{
    font-size: 20px;
    margin-bottom: 20px;
}
#flow .flow-list li .text-wrap .description{
    font-size: 16px;
}

/* access -------------------------------- */
#access{
    width: 100%;
    padding: 100px 0 150px;
    position: relative;
}
#access::before{
    content: "";
    width: 30%;
    aspect-ratio: 1 / 1;
    background-color: #f5f5f5;
    position: absolute;
    top: 150px;
    left: 0;
    z-index: -1;
}

#access .main-wrap{
    width: 90%;
    display: flex;
    margin: 0 0 0 auto;
}

#access .main-wrap .map-wrap{
    width: 40%;
    min-width: 447px;
    flex-shrink: 0;
}

#access .main-wrap .map-wrap .map-container{
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

#access .main-wrap .map-wrap .map-container .wp-block-super-simple-map-embeds-map{
    position: absolute;
    inset: 0;
}

/* super-simple-mapに長方形に変更されている部分を正方形にする */
#access .main-wrap .map-wrap .map-container 
.wp-block-super-simple-map-embeds-map > div > div{
    padding-bottom: 100% !important;
}

.wp-block-super-simple-map-embeds-map{
    width: 100%;
    height: 100%;
}
#access .main-wrap .map-wrap .map-container iframe{
    width: 100%;
    height: 100%;
}


#access .main-wrap .info-wrap{
    width: 60%;
    margin-top: 150px;
    position: relative;
}
#access .main-wrap .info-wrap::after{
    content: "";
    width: 110%;
    height: 447px;
    background-color: #f5f5f5;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
#access .main-wrap .info-wrap .company-data-list{
    margin: 100px 5%;
}
#access .main-wrap .info-wrap .company-data-list .data-item-wrap{
    display: flex;
    margin-bottom: 20px;
}
#access .main-wrap .info-wrap .company-data-list .data-item-wrap dt{
    width: 72px;
    font-size: 18px;
    color: #868686;
    text-align: right;
    margin-right: 20px;
}
#access .main-wrap .info-wrap .company-data-list .data-item-wrap dd .small{
    font-size: 15px;
}


/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 960px) {

    /* mv ------------------------------------ */
    #mv-area{
        height: 600px;
    }
    #mv-area .mvimage-list{
        height: 600px;
    }
    #mv-area .mvimage-list li{
        height: 600px;
    }

    /* catchphrase --------------------------- */
    #catchphrase{
        height: calc(600px - 50px);
    }
    #catchphrase p{
        width: 365px;
    }
    #catchphrase .main{
        font-size: 40px;
    }

    /* introduction -------------------------- */
    #introduction{
        flex-direction: column;
    }

    /* strength ------------------------------ */
    #strength .img-area{
        margin: -300px 0 0 auto;
    }

    /* service ------------------------------- */
    #top-service .service-list{
        grid-template-columns: repeat(1, 1fr);
    }

    /* flow ---------------------------------- */
    #flow .section-title{
        padding: 60px 0;
    }
    
    #flow .flow-list{
        width: 80%;
        flex-direction: column;
    }
    #flow .flow-list li{
        width: 100%;
        flex-direction: row;
    }
    #flow .flow-list li::before{
        width: 50.5%;
        height: 1px;
        transform: rotate(8deg);
        top: auto;
        bottom: 0;
        left: -1px;
    }
    #flow .flow-list li::after{
        width: 50.5%;
        height: 1px;
        transform: rotate(-8deg);
        bottom: 0;
        right: -1px;
    }
    #flow .flow-list li .img-wrap{
        margin-bottom: 0;
    }
    #flow .flow-list li .img-wrap img{
        width: 100%;
    }
    #flow .flow-list li .text-wrap{
        width: calc(100% - 125px);
        align-items: flex-start;
        padding: 0 5%;
    }

    /* access -------------------------------- */
    #access{
        padding: 60px 0 150px;
    }
    #access::before{
        width: 40%;
    }

    #access .main-wrap{
        flex-direction: column;
    }

    #access .main-wrap .map-wrap{
        width: 447px;
        min-width: 447px;
        flex-shrink: 0;
        height: 447px;
    }

    #access .main-wrap .info-wrap{
        width: 100%;
        margin-top: 0;
    }
    #access .main-wrap .info-wrap::after{
        width: 80%;
        height: 500px;
        top: -100px;
        bottom: auto;
    }
    #access .main-wrap .info-wrap .company-data-list{
        width: 450px;
        margin: 40px 5% 100px auto;
    }

}

/*-------------------------------------------
スマホ
-------------------------------------------*/
@media screen and (max-width: 767px) {

    /* mv ------------------------------------ */
    #mv-area{
        height: 100vh;
    }
    #mv-area .mvimage-list{
        height: 100vh;
    }
    #mv-area .mvimage-list li{
        height: 100vh;
    }
    /* #mv-area .mvimage-list li img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    } */
    
    
    /* catchphrase --------------------------- */
    #catchphrase{
        height: calc(100vh - 50px);
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-start;
    }
    #catchphrase p{
        width: auto;
        writing-mode: vertical-rl;
        margin: 0;
    }
    #catchphrase .main{
        font-size: 32px;
        padding-top: 65px;
    }
    #catchphrase .sub{
        padding-top: 65px;
    }

    /* introduction -------------------------- */
    #introduction{
        margin: 100px 0;
    }

    #introduction .text-area{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 5% 60px 5%;
    }
    #introduction .text-area .title{
        writing-mode: horizontal-tb;
        margin-left: 0;
        margin-bottom: 60px;
    }

    #introduction .img-area{
        width: 90%;
    }

    /* strength ------------------------------ */
    #strength .text-area{
        width: 100%;
        flex-direction: column;
        padding: 60px 5% 150px;
    }
    #strength .text-area .strength-title{
        writing-mode: horizontal-tb;
        margin-right: 0;
        margin-bottom: 60px;
    }
    #strength .text-area .strength-list{
        padding-right: 0;
    }
    #strength .text-area .strength-list li{
        margin-bottom: 60px;
    }

    #strength .img-area{
        width: 80%;
        margin: -80px 0 0 auto;
    }

    /* service ------------------------------- */
    #top-service .service-list{
        gap: 40px;
    }
    #top-service .service-list li{
        padding: 40px 5%;
    }

    /* flow ---------------------------------- */
    #flow{
        background-size: 200%;
        background-position: top center;
        padding: 0 0 100px;
    }
    
    #flow .flow-list{
        width: 90%;
    }
    #flow .flow-list li{
        flex-direction: column;
        padding: 40px 10%;
    }
    #flow .flow-list li::before{
        width: 51%;
        transform: rotate(10deg);
    }
    #flow .flow-list li::after{
        width: 51%;
        transform: rotate(-10deg);
        right: -2px;
    }

    #flow .flow-list li .img-wrap{
        width: 125px;
        margin-bottom: 20px;
    }
    #flow .flow-list li .img-wrap img{
        width: 100%;
    }
    #flow .flow-list li .text-wrap{
        width: 100%;
        align-items: center;
        padding: 0;
    }

    /* access -------------------------------- */
    #access{
        padding: 60px 0 150px;
    }
    #access::before{
        content: none;
    }

    #access .main-wrap{
        width: 100%;
    }

    #access .main-wrap .map-wrap{
        width: 100%;
        min-width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;
        padding: 0 5%;
    }
    #access .main-wrap .map-wrap iframe{
        height: 100%;
    }

    #access .main-wrap .info-wrap .company-data-list{
        width: 90%;
        margin: 40px 5%;
    }

}