/*---------------------------------

  共通

---------------------------------*/

.gray_box{
    padding: 56px;
}
.gray_box table{
    width: 100%;
}
.gray_box th{
    position: relative;
    width: 260px;
    padding: 30px 40px 30px 40px;
    background: #fff;
    border-bottom: 3px solid #F8F8F8;
    font-size: 16px;
    vertical-align: middle;
}
.gray_box td{
    position: relative;
    width: calc(100% - 260px);
    padding: 30px 40px;
    background: #fff;
    border-bottom: 3px solid #F8F8F8;
    vertical-align: middle;
    line-height: 1.8;
}

.green_box{
    padding: 56px;
}
.green_box table{
    width: 100%;
}
.green_box th{
    position: relative;
    width: 260px;
    
    padding: 30px 40px 30px 40px;
    background: #fff;
    border-bottom: 3px solid #EEFCF9;
    font-size: 16px;
    vertical-align: middle;
}
.green_box td{
    position: relative;
    width: calc(100% - 260px);
    padding: 30px 40px;
    background: #fff;
    border-bottom: 3px solid #EEFCF9;
    vertical-align: middle;
    line-height: 1.8;
}

@media screen and (max-width:1023px){

}
@media screen and (max-width:767px){

    .gray_box{
        padding: 6vw;
    }
    .gray_box th{
        display: block;
        width: 100%;
        padding: 30px 20px 30px 20px;
        border-bottom: 3px solid #F8F8F8;
        font-size: 16px;
    }
    .gray_box td{
        display: block;
        width: 100%;
        padding: 30px 20px;
        border-bottom: 3px solid #F8F8F8;
    }

    .green_box{
        padding: 6vw;
    }

    .green_box th{
        display: block;
        width: 100%;
        padding: 30px 20px 30px 20px;
        border-bottom: 3px solid #EEFCF9;
        font-size: 16px;
    }
    .green_box td{
        display: block;
        width: 100%;
        padding: 30px 20px;
        border-bottom: 3px solid #EEFCF9;
    }
    
}

/*---------------------------------

  bloc_overview

---------------------------------*/

.bloc_overview{
    padding: 144px 0 163px;
}

.bloc_overview .title_underline{
    margin: 0 0 48px;
}

.bloc_overview .business_list{
    counter-reset: number 0;
}
.bloc_overview .business_list li::before{
    counter-increment: number 1;    /* numberカウンタの増加数をセット*/
    content: counter(number)'.';    /* 表示形式を指定 */
    display: inline-block;
    margin: 0 5px 0 0;
}

.bloc_overview .link_list li + li{
    margin: 5px 0 0;
}
.bloc_overview .link_list a{
    transition: .3s;
}
.bloc_overview .link_list a:hover{
    color: var(--main);
}

.bloc_overview .partner_list li{
    width: 50%;
}

.bloc_overview .section{
    padding: 80px 0 0;
}
.bloc_overview .section .title_underline{
    font-size: 32px;
}

@media screen and (max-width:767px){

    .bloc_overview{
        padding: 80px 0 60px;
    }
    
    
    .bloc_overview .section .title_underline{
        margin: 0 0 40px;
        font-size: 24px;
    }
    
    .bloc_overview .partner_list li{
        width: 100%;
    }

}


/*---------------------------------

  bloc_history

---------------------------------*/

.bloc_history{
    padding: 120px 0;
    background: #E2F9F3;
}

.bloc_history .title_underline{
    margin: 0 0 48px;
}

@media screen and (max-width:767px){

    .bloc_history{
        padding: 60px 0;
    }
    
}

/*---------------------------------

  bloc_access

---------------------------------*/

.bloc_access{
    padding: 150px 0 160px;
    background: url(../img/about-jts/policy_bg.png) no-repeat;
    background-size: cover;
}

.bloc_access .title_underline{
    margin: 0 0 48px;
}

.bloc_access .white_box{
    padding: 56px;
}
.bloc_access .white_box .title_underline{
    margin: 0 0 32px;
    font-size: 32px;
}

.bloc_access .access_list{
    margin: 30px 0 0;
}
.bloc_access .access_list span{
    position: relative;
    display: inline-block;
    margin: 0 16px 0 0;
    padding: 0 0 0 16px;
    color: var(--main);
    font-size: 16px;
    line-height: 1.6;
}
.bloc_access .access_list span::before{
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    left: 0;
    display: block;
    width: 8px;
    height: 8px;
    background: var(--main);
    border-radius: 50%;
    
}

.bloc_access iframe{
    width: 100%;
    height: 400px;
    margin: 40px 0 0;
}

@media screen and (max-width:767px){

    .bloc_access{
        padding: 80px 0 80px;
    }
    
    .bloc_access .white_box{
        padding: 6vw;
    }
    .bloc_access .white_box .title_underline{
        font-size: 24px;
    }

    .bloc_access .access_list span{
        display: block;
    }

    .bloc_access iframe{
        height: 300px;
        margin: 30px 0 0;
    }
    
}
