@charset "utf-8";


/* 
about 
*/
.p-section.about{
    margin: 200px 0;
    text-align: center;
}
.p-section__about-logo{
    max-width: 100%;
    width: 500px;
    height: auto;
}
.p-section__about-caption{
    padding: 20px 0;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}
.p-section__about-caption>span{
    display: inline-block;
    white-space: nowrap;
}

.p-sentence{
    width: 100%;
}


.p-sentence>span{
    /* display: inline-block; */
    /* white-space: nowrap; */
}




@media screen and (max-width:768px){
    
    .p-section__about-caption{
        font-size: 17px;
        line-height: 2.5;
    }
}



/* 
lineup
 */
.p-lineup__grid{
    display: flex;
    flex-wrap: wrap;
    padding: 0 50px;
    margin: 0 0 50px;
    justify-content: center;
    align-items: stretch;
}



@media screen and (max-width:768px){
.p-lineup__grid{
    padding: 0;
}

/* .item:nth-child(2n){
margin-right:0;
}

.item:nth-child(3n){
margin-right:20px;
}

.item:nth-child(6){
margin-right:0;
} */

}



/* 
explain
 */

.p-img__right{
    /* margin-right: calc(50% - 50vw); */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-img__right-frame{
    max-width: 50%;
    width: 400px;
}






.p-img__left{
    margin-left: calc(50% - 50vw);
    display: flex;
    justify-content: space-between;
}

.p-img__left-frame{
    position: relative;
    background-color: #333;
    min-width: 50vw;
    max-width: 50vw;
    overflow: hidden;
}

.p-img__left-frame>img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.p-img__explain{
    padding: 20px 0px 20px 100px;
    max-width: 50%;
 }
 
.p-img__explain>h2{
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    line-height: 2.5;
 }
 
.p-img__explain>p{
    font-size: 15px;
    font-weight: normal;
    line-height: 2.5;
}




@media screen and (max-width:768px){
    .p-img__right{
        display: block;
    }
    .p-img__right-frame{
        max-width: 100%;
        min-width: 100%;
        padding: 30px;
    }

    .p-img__right-frame>img{
        width: 100%;
        height: auto;
    }



    .p-img__left{
        margin-left: 0;
        display: block;
    }

    .p-img__left-frame{
        min-width: auto;
        max-width: 100%;

        height: 400px;

    }


    .p-img__explain{
        max-width: 100%;
        margin: 0;
        padding: 0 40px;
    }

    /* .p-img__explain p,.p-img__explain h2{
        text-align: center;
    } */


}


