@media (min-width: 800px) {
    .global-nav .no-link a::after {
        position: absolute;
        bottom: 8px;
        left: 50%;
        content: '';
        width: 100%;
        height: 1px;
        background-color: black;
    }

}

/*##############################*/
/*top*/
/*##############################*/

.top {
    height: 280px;
    background-position: center center;
    background-size: cover;
    }
.title{
    font-size: 6rem;
    line-height: 1.4;
    border-bottom: 3px solid white;
}
.subtitle{
    font-size: 2.5rem;
    margin-top: 10px;
}

.top h2{
    font-size: 4rem;
}

/*##############################*/
/*contents*/
/*##############################*/


.contents-wrapper{
    display: -webkit-flex;
    display: flex;
    width: 100%;

    border-bottom: 1px solid gray;
    margin: 0;

    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
    align-items: center; /* 縦方向中央揃え */
    flex-direction: column;
}

.contents-box{
    width: 100%;
    margin-top: 80px;

    font-size: 1.6rem;
    border-bottom: 1px solid #eeeeee;

    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
    align-items: center; /* 縦方向中央揃え */
    -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
    justify-content: center; /* 横方向中央揃え */
    flex-direction: column;
}


.contents-img{
    width: 250px;
}

.border{
    border-radius: 50%;
    box-shadow: 0 0 3px 0 #4262a0;
}

.contents-box h3{
    margin-top: 60px;
}

.contents-text{
    width: 60%;
    margin-bottom: 80px;
}


.CP-contents-wrapper{
    display: -webkit-flex;
    display: flex;
    width: 100%;
    background-color: #fafafa;

    padding: 80px 40px;

    -webkit-flex-direction: row; /* Safari */
    flex-direction:         row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.CP-content{
    width: 32%;
    margin: 10px 0;
}
.CP-img{
    width: 100%;
    background-color: #4262a0;
}
.CP-text{
    font-size: 1.2rem;
    text-align: left;
    margin: 0 0 10px 0;
}

@media (max-width: 660px) {
    .contents-box{
        margin-top: 40px;
        margin-bottom: 0;
    }
    .contents-text{
        width: 80%;
        margin-bottom: 40px;
    }
    .CP-contents-wrapper{
        padding: 40px 20px;
    }

    .CP-content{
        width: 49%;
    }
}
