@charset "UTF-8";

main{
    padding-bottom: 18rem;
}

.sec01-first{
    margin-bottom: 11rem;
}
.sec01-first__title{
    font-size: 5rem;
    margin-bottom: 6rem;
    letter-spacing: .08em;
    font-weight: 400;
    text-align: center;
}
.sec01-first__text{
    text-align: center;
}

.sec01-second{
    margin-bottom: 15rem;
}
.sec01-second-block{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.sec01-second-block:not(:last-child){
    margin-bottom: 12rem;
}
.sec01-second-block__image{
    width: 50%;
}
.sec01-second-block__image-inner{
    width: 100%;
    display: block;
}
.sec01-second-block__image-item{
    width: 100%;
    display: block;
}
.sec01-second-block__image img{
    /* max-width: calc(100% + 6rem);
    width: calc(100% + 6rem); */
    width: 100%;
    border-radius: 3rem;
    overflow: hidden;
}
.sec01-second-block__body{
    width: calc(50% - 9rem);
    padding-top: 4.5rem;
}
.sec01-second-block__title{
    font-size: 4.2rem;
    margin-bottom: 6.5rem;
    letter-spacing: .08em;
    font-weight: 400;
    color: #6386ae;
}
.sec01-second-block:nth-of-type(2n){
    flex-direction: row-reverse;
}
.sec01-second-block:nth-of-type(2n) .sec01-second-block__image{
    transform: translateX(6rem);
}
.sec01-second-block:nth-of-type(2n+1) .sec01-second-block__image{
    transform: translateX(-6rem);
}

.sec01-third{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 6rem;
}
.sec01-third-block{
    /* width: calc((100% - (6rem * 2)) / 3); */
    width: 100%;
}
.sec01-third-block__image{
    width: 100%;
    margin-bottom: 4rem;
}
.sec01-third-block__image img{
    width: 100%;
}
.sec01-third-block__body{
    padding-left: 2rem;
    padding-right: 2rem;
}
.sec01-third-block__title{
    font-size: 3.2rem;
    margin-bottom: 2.8rem;
    line-height: 1;
    font-weight: 400;
    color: #6386ae;
    text-align: center;
}



/* ++++++++++++++++++++++リキッドレイアウトのための調整+++++++++++++++++++++ */
@media screen and (max-width: 1340px){

    .sec01-second-block__body{
        width: calc(50% - 5rem);
    }

    .sec01-second-block:nth-of-type(2n) .sec01-second-block__image{
        transform: translateX(4rem);
    }
    .sec01-second-block:nth-of-type(2n+1) .sec01-second-block__image{
        transform: translateX(-4rem);
    }

    .sec01-third-block{
        width: calc((100% - (4rem * 2)) / 3);
    }

}



/* ++++++++++++++++++++++モバイルレイアウト+++++++++++++++++++++ */
@media screen and (max-width:768px){

    #sec01 .inner{
        padding-left: 7.5rem;
        padding-right: 7.5rem;
    }
    .sec01-first__title{
        font-size: 5rem;
        margin-bottom: 6rem;
        letter-spacing: .08em;
    }
    .sec01-first__text{
        text-align: left;
    }

    .sec01-second{
        margin-bottom: 10rem;
    }
    .sec01-second-block{
        flex-direction: column;
    }
    .sec01-second-block:not(:last-child){
        margin-bottom: 10rem;
    }
    .sec01-second-block__image{
        width: calc(100% + 15rem);
        margin-left: -7.5rem;
    }
    .sec01-second-block__image img{
        width: 100%;
        border-radius: 0rem;
    }
    .sec01-second-block__body{
        width: 100%;
        padding-top: 5rem;
    }
    .sec01-second-block__title{
        font-size: 4.6rem;
        margin-bottom: 4rem;
    }
    .sec01-second-block:nth-of-type(2n){
        flex-direction: column;
    }
    .sec01-second-block:nth-of-type(2n) .sec01-second-block__image{
        transform: translateX(0);
    }
    .sec01-second-block:nth-of-type(2n+1) .sec01-second-block__image{
        transform: translateX(0);
    }

    .sec01-third{
        flex-direction: column;
    }
    .sec01-third-block{
        width: 100%;
    }
    .sec01-third-block:not(:last-child){
        margin-bottom: 10rem;
    }
    .sec01-third-block__image{
        margin-bottom: 5rem;
    }
    .sec01-third-block__body{
        padding-left: 0;
        padding-right: 0;
    }
    .sec01-third-block__title{
        font-size: 4.6rem;
        margin-bottom: 4rem;
    }

}