html,body{
    height:100%;
}
body{
    color: #333;
    font-size: 62.5%;
    font-family: "Avenir Next", Helvetica, Arial, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, sans-serif;
}
@font-face{
    font-family: BenchNine;
    src: url(/corporate/fonts/BenchNine-Bold.ttf) format("truetype");
}

/*************************
h1, h2, h3, h4, h5, ul, dl, img
*************************/
h2{
    font-size: 3em;
    font-weight: normal;
    color: #1b7fbe;
}
h3{
    font-size: 2.5em;
    font-weight: normal;
}
h4{
    font-size: 2em;
    font-weight: normal;
    line-height: 1.4em;
}
h5{
    font-size: 1.6em;
    font-weight: bold;
}
p, li, dt, dd{
    font-size: 1.6em;
    line-height: 1.8em;
    padding-bottom: 1em;
}
@media screen and (max-width: 767px){
    p{
        font-size: 1.4em;
    }
}
ol{
    list-style-type: decimal;
    padding: 1em 0 1em 2.6em;
}
img{
    display: block;
}

/*************************
header
*************************/

.header{
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 71px;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    z-index: 10;
    transition: 0.2s ease-in-out;
}
.header-index{
    border: none;
    background: none;
}
.header-fixed{
    position: fixed;
    background: #fff;
    border: none;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
}
.header_logoWrapper{
    padding: 22px 0 0 40px;
}
.header_logo{
    display: block;
    float: left;
    width: 130px;
    height: 0;
    margin: 3px 0 0 ;
    padding: 23px 0 0;
    overflow: hidden;
    line-height: 2;
    background: url(/corporate/images/logo.svg?01) no-repeat;
}
.header-index:not(.header-fixed) .header_logo{
    background-image: url(/corporate/images/logo_white.svg?01);
}
.navigationOpen{
    display: none;
}
.navigation{
    margin: 0 20px 0 0;
}
.navigation_listServiceWrapper{
    display: inline-block;
    background: #0c7bc9;
    height: 71px;
    padding: 0 15px;
}
.navigation_listServiceTitle{
    display: inline-block;
    font-size: 1.1em;
    font-weight: bold;
    color: #0c7bc9;
    background: #fff;
    border-radius: 15px;
    padding: 0 8px;
    letter-spacing: -0.07em;
}
.navigation_list{
    padding: 20px 0 0;
    display: inline-block;
}
.navigation_item{
    display: inline-block;
    padding: 5px 0 0 6px;
    font-size: 1.3em;
}
.navigation_item-en{
    font-size: 1.6em;
}
.navigation_link{
    position: relative;
    display: inline-block;
    padding: 0 8px;
    color: #555;
    font-weight: bold;
    text-decoration: none;
}
.navigation_link-service{
    position: relative;
    display: inline-block;
    padding: 0 8px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}
.navigation_link-service-subtext{
    display: none;
}
.navigation_link-language{
    font-weight: normal;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 0 10px;
    margin: -5px 0 0;
}
.navigation_link-language:hover{
    background: rgba(255,255,255,.2);
}
.wrapper-padding .navigation_link-language,
.header-fixed .navigation_link-language{
    border: 1px solid #555;
}
.wrapper-padding .navigation_link-language:hover,
.header-fixed .navigation_link-language:hover{
    border: 1px solid #1b7fbe;
}
@media screen and (min-width: 1191px){
    .navigation_listServiceWrapper{
        padding: 0 20px;
    }
    .navigation_listServiceTitle{
        font-size: 1.2em;
    }
    .navigation_item{
        padding: 4px 0 0 12px;
        font-size: 1.4em;
    }
    .navigation_item-en{
        font-size: 1.6em;
    }
}
@media screen and (min-width: 1081px){
    .header-index:not(.header-fixed) .navigation_link{
        color: #fff;
        text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    }
    .header-index:not(.header-fixed) .navigation_link:hover{
        text-shadow: none;
    }
    .navigation_link-current,
    .navigation_link:hover{
        color: #1b7fbe;
    }
    .navigation_link-current:before{
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        left: 8px;
        right: 8px;
        height: 1px;
        background: #1b7fbe;
    }
    .navigation_link-service:hover{
        opacity: .85;
    }
    .navigation_link-service-current:before{
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        left: 8px;
        right: 8px;
        height: 1px;
        background: #fff;
    }
    .navigation_button-language{
        display: none;
    }
}
@media screen and (max-width: 1080px){
    .header{
        display: block;
        height: 42px;
        padding: 0 12px 0 15px;
    }
    .header_logoWrapper{
        padding: 0;
    }
    .header_logo{
        width: 75px;
        padding: 41px 0 0;
        background-position: 0 13px;
    }
    .navigationOpen{
        display: block;
        float: right;
        width: 29px;
        height: 41px;
        background: url(/corporate/images/menu_open.svg) center 11px no-repeat;
        background-size: 29px 20px;
    }
    .header-index:not(.header-fixed) .navigationOpen{
        background: url(/corporate/images/menu_open_white.svg) center 11px no-repeat;
        background-size: 29px 20px;
    }
    .navigationClose{
        background: url(/corporate/images/menu_close.svg) center 11px no-repeat;
        background-size: 20px 20px;
    }
    .header-index:not(.header-fixed) .navigationClose{
        background: url(/corporate/images/menu_close_white.svg) center 11px no-repeat;
        background-size: 20px 20px;
    }
    .navigation{
        display: none;
        position: absolute;
        width: 100%;
        left: 0;
        top: 42px;
        background: #fff;
        box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
        z-index: 11;
    }
    .navigation_listServiceWrapper{
        display: block;
        background: none;
        height: auto;
        padding: 0;
    }
    .navigation_listServiceTitle{
        display: none;
    }
    .navigation_list{
        padding: 0;
        display: block;
    }
    .navigation_item{
        display: block;
        float: none;
        padding: 0;
        font-size: 1.5em;
    }
    .navigation_link,
    .navigation_link-service{
        display: block;
        color: #333;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        font-weight: normal;
        text-align: center;
    }
    .navigation_link-service-subtext{
        display: inline;
    }
    .header-fixed{
        border-bottom: 1px solid #eee;
    }
    .navigation_item-language{
        display: none;
    }
    .navigation_button-language{
        display: block;
        float: right;
        margin: 8px 20px 0 0;
        padding: 5px 10px;
        font-size: 13px;
        border-radius: 4px;
        text-decoration: none;
        line-height: 1
    }
    .header-index .navigation_button-language{
        color: #fff;
        border: 1px solid #fff;
    }
    .wrapper-padding .header .navigation_button-language,
    .header-index.header-fixed .navigation_button-language{
        color: #777;
        border: 1px solid #777;
    }
}
/*************************
common
*************************/
.wrapper{
    position: relative;
    min-height: 100%;
    box-sizing: border-box;
}
.wrapper-padding{
    padding: 71px 0 0;
}
.mainImage{
    display: table;
    height: 360px;
    width: 100%;
    box-sizing: border-box;
}
.pageTitle{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 4.2em;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
}
.mainImage-pageTitle-left{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pageTitle-left_box{
    width: 1040px;
}
.pageTitle-left_boxInner{
    display: inline-block;
    padding: 20px 50px 20px 20px;
    background-color: rgba(255, 255, 255, .8);
    background: linear-gradient(90deg, rgba(255,255,255,.8) 95%, rgba(255,255,255,0) 100%);
}
.pageTitle-left_title{
    margin: 0 0 15px;
    font-size: 2.4em;
    font-weight: bold;
    color: #00385b;
}
.pageTitle-left_text{
    max-width: 450px;
    padding: 0;
    color: #00385b;
}
.contents{
    padding: 0 0 150px;
}
.sectionBox{
    padding: 0 50px 80px;
}
.halfBox{
    overflow: hidden;
}
.halfBox_left{
    width: 50%;
    float: left;
}
.halfBox_right{
    width: 50%;
    float: right;
}
.contentsBox{
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.sectionTitle{
    color: #222;
    font-size: 2em;
    font-weight: bold;
    margin: 0 0 40px;
}
.sectionTitle-gray{
    margin: 0 0 20px;
    color: #777;
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
}
.sectionTitle-navy{
    margin: 0 0 40px;
    color: #136faf;
    font-size: 2.2em;
    font-weight: normal;
}
.button-blue{
    display: inline-block;
    border: 1px solid #1b7fbe;
    background: #1b7fbe;
    padding: 0 25px;
    font-size: 1.6em;
    color: #fff;
    line-height: 42px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
}
.button-white{
    display: inline-block;
    border: 1px solid #1b7fbe;
    padding: 0 25px;
    font-size: 1.6em;
    color: #1b7fbe;
    line-height: 42px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}
.button-blue:hover,
.button-white:hover{
    opacity: 0.7;
}
.text{
    padding: 0 0 30px;
}
.text-link{
    margin: -20px 0 0;
}
.text-right{
    text-align: right;
    padding: 0 0 30px;
}
.link{
    color: #1b7fbe;
    text-decoration: none;
}
.link:hover{
    color: #86b1d5;
}
@media screen and (min-width: 1050px){
    .sectionImageBox_Wrapper{
        margin: 0 -40px 0 0;
    }
}
.sectionImageBox{
    display: inline-block;
    padding: 0 40px 0 0;
    vertical-align: top;
    max-width: 485px;
    width: 49%;
    box-sizing: border-box;
}
.sectionImageBox-large{
    display: inline-block;
    margin: 0 0 0 50px;
}
.sectionImageBox_inner{
    border: 1px solid #ddd;
    border-radius: 20px;
}
.sectionImage{
    display: inline-block;
    width: 100%;
    border-radius: 20px;
}
.sectionImage-large{
    display: inline-block;
    max-width: 450px;
    width: 100%;
    border-radius: 20px;
}
.tag{
    display: inline-block;
    margin: 0 20px 20px 0;
    padding: 2px 10px;
    border: 1px solid #2e8b57;
    border-radius: 4px;
}
@media screen and (max-width: 899px){
    .sectionImageBox_Wrapper{
        margin: 0;
    }
    .sectionImageBox{
        width: 100%;
        padding: 0 0 20px;
    }
}
@media screen and (max-width: 767px){
    .wrapper-padding{
        padding: 42px 0 0;
    }
    .mainImage{
        height: 200px;
    }
    .pageTitle{
        font-size: 2.5em;
    }
    .contents{
        padding: 0 0 160px;
    }
    .halfBox_left,
    .halfBox_right{
        width: 100%;
        float: none;
    }
    .sectionTitle-gray{
        margin: 0 0 10px;
        font-size: 1.7em;
        font-weight: normal;
    }
    .sectionTitle-navy{
        margin: 0 0 15px !important;
        font-size: 1.5em;
    }
    .button-white,
    .button-blue{
        font-size: 1.4em;
        line-height: 28px;
        border-width: 1px;
        padding: 0;
        width: 200px;
    }
    .text,
    .text-right{
        font-size: 1.4em;
        padding: 0 0 20px;
    }
}
@media screen and (max-width: 499px){
    .mainImage-pageTitle-left{
        align-items: flex-end;
    }
    .pageTitle-left_boxInner{
        padding: 20px;
        background: rgba(255, 255, 255, .8);
    }
    .pageTitle-left_title{
        font-size: 2em;
    }
    .alternativeData_pointBox_item{
        font-size: 1,4em;
        padding: 0 10px;
    }
}
/*************************
index
*************************/
.contentsBox-main{
    max-width: 1250px;
}
.mainImage-index{
    width: 100%;
    height: 650px;
    padding: 210px 0 0;
    background: url(/corporate/images/bg_index.jpg?01) center no-repeat;
    background-size: cover;
    box-sizing: border-box;
}
.mainImage-index_catch{
    font-size: 4.8em;
    color: #fff;
    text-shadow: 0px 2px 6px rgba(0, 86, 150, 0.2);
    line-height: 1.8;
}
.mainImage-index_hatarakigai-wrapper{
    display: inline-block;
    position: relative;
    padding: 0 12px;
    margin: 0 15px 0 0;
    line-height: 80px;
}
.mainImage-index_hatarakigai-wrapper:before,
.mainImage-index_hatarakigai-wrapper:after,
.mainImage-index_hatarakigai-inner:before,
.mainImage-index_hatarakigai-inner:after{
    content: "";
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
}
.mainImage-index_hatarakigai-wrapper:before{
    top: 0;
    left: 0;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
.mainImage-index_hatarakigai-wrapper:after{
    top: 0;
    right: 0;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.mainImage-index_hatarakigai-inner:before{
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
}
.mainImage-index_hatarakigai-inner:after{
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
}
.mainImage-index_button{
    display: block;
    width: 352px;
    margin: 50px 0 0;
    font-size: 2.2em;
    font-weight: bold;
    line-height: 58px;
    color: #fff;
    border: 1px solid #fff;
    background: rgba(0, 86, 150, 0.7);
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    box-sizing: border-box;
}
.mainImage-index_button:after{
    content: ">>";
    margin: 0 0 0 10px;
    font-weight: normal;
}
.mainImage-index_button:hover{
    opacity: 0.7;
}
.indexServiceBox{
    overflow: hidden;
}
.indexServiceText{
    max-width: 580px;
    margin: 0 auto;
    padding: 70px 20px 0;
    text-align: center;
    box-sizing: border-box;
}
.indexServiceImage{
    height: 500px;
    background: url(/corporate/images/index_about_vorkers.jpg?01) center no-repeat;
    background-size: cover;
}
.indexServiceBox_logo{
    display: block;
    width: 100px;
    height: 0;
    margin:  0 auto 15px;
    padding: 19px 0 0;
    background: url(/corporate/images/logo.svg?01) no-repeat;
    background-size: 100px 23px;
    overflow: hidden;
}
.indexGrayBox{
    background: #f5f5f5;
    padding: 50px 0;
}
.indexRecruitText{
    max-width: 540px;
    margin: 0 auto;
    padding: 110px 20px 0;
    text-align: center;
    box-sizing: border-box;
}
.indexRecruitImage{
    height: 450px;
    background: url(/corporate/images/index_vorkers_office.jpg?04) center no-repeat;
    background-size: cover;
}
.button-white-aside{
    text-align: center;
    font-size: 13px;
    margin: 5px 0 0;
    color: #777;
}
@media screen and (max-width: 1200px){
    .indexServiceText{
        max-width: 560px;
    }
}
@media screen and (max-width: 1023px){
    .indexServiceText{
        padding: 30px 20px 0;
    }
    .indexServiceImage{
        height: 400px;
    }
    .indexRecruitText{
        padding: 70px 20px 0;
    }
    .indexRecruitImage{
        height: 370px;
    }
    .sectionTitle-navy{
        margin: 0 0 30px;
    }
}
@media screen and (max-width: 767px){
    .mainImage-index{
        height: 230px;
        padding: 64px 0 0;
    }
    .mainImage-index_catch{
        font-size: 2em;
    }
    .mainImage-index_hatarakigai-wrapper{
        padding: 0 6px;
        margin: 0 7px 0 0;
        line-height: 37px;
    }
    .mainImage-index_hatarakigai-wrapper:before,
    .mainImage-index_hatarakigai-wrapper:after,
    .mainImage-index_hatarakigai-inner:before,
    .mainImage-index_hatarakigai-inner:after{
        width: 12px;
        height: 12px;
    }
    .mainImage-index_button{
        width: 205px;
        margin: 30px 0 0;
        font-size: 1.3em;
        line-height: 30px;
    }
    .mainImage-index_button:after{
        margin: 0 0 0 5px;
    }
    .indexServiceText{
        padding: 30px 20px 25px;
    }
    .indexServiceImage{
        height: 185px;
    }
    .indexServiceBox_logo{
        width: 71px;
        padding: 17px 0 0;
        background-size: 71px 17px;
    }
    .indexGrayBox{
        padding: 35px 0 5px;
    }
    .indexRecruitText{
        padding: 30px 20px 25px;
    }
    .indexRecruitImage{
        height: 185px;
    }
}
/*************************
classic
*************************/
.btn_vorkers,
.btn_entry{
    margin-top: 22px;
    padding: .5em 0;
    display: block;
    width: 13em;
    text-align: center;
    font-size: 2em;
    color: #fff;
    text-decoration: none;
    border-radius: .2em;
    border: 1px solid #d9e4ef;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #5891b9), color-stop(0.00, #74a7ca));
    background: -webkit-linear-gradient(top, #74a7ca 0%, #5891b9 88%);
    background: -moz-linear-gradient(top, #74a7ca 0%, #5891b9 88%);
    background: -o-linear-gradient(top, #74a7ca 0%, #5891b9 88%);
    background: -ms-linear-gradient(top, #74a7ca 0%, #5891b9 88%);
    background: linear-gradient(to bottom, #74a7ca 0%, #5891b9 88%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#74a7ca', endColorstr='#5891b9',GradientType=0 ); /* IE6-9 */
}
.btn_vorkers:hover,
.btn_entry:hover{
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #74adcf), color-stop(0.00, #97c4df));
    background: -webkit-linear-gradient(top, #97c4df 0%, #74adcf 88%);
    background: -moz-linear-gradient(top, #97c4df 0%, #74adcf 88%);
    background: -o-linear-gradient(top, #97c4df 0%, #74adcf 88%);
    background: -ms-linear-gradient(top, #97c4df 0%, #74adcf 88%);
    background: linear-gradient(to bottom, #97c4df 0%, #74adcf 88%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#97c4df', endColorstr='#74adcf',GradientType=0 ); /* IE6-9 */
}
.btn_vorkers i{
    padding-right: .5em;
}
#press_area{
    padding-top: 9em;
}
#press_area h2>a{
    text-decoration: none;
    color: #1b7fbe;
}
.news{
    margin-bottom: 5em;
    border-top: none;
}
.news dt,
.news dd{
    padding-top: 1.5em;
    padding-bottom: .2em;
}
.news dd a{
    font-size: 1em;
    padding-bottom: .2em;
    color: #1b7fbe;
    text-decoration: none;
}
.news dd a:hover{
    color: #86b1d5;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-ransition: all 0.2s ease;
    -o-ransition: all 0.2s ease;

}
.news dt{
    clear: left;
    float: left;
    width: 25%;
}
.news dd{
    border-bottom: 1px solid #ddd;
    }
.news dd a{
    display: table-cell;
}
.news:first-child,
.news dt:first-child,
.news dt:first-child+dd{
    border-top: none;
}


@media screen and (max-width: 1049px){
    .btn_vorkers{
        margin-top: 0;
    }
}
@media screen and (max-width: 959px){
    .btn_vorkers{
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px){
    .news dt{
        width: 30%;
    }
    .news dt,
    .news dd{
        font-size: 1.4em;
    }
}
/*************************
about
*************************/
.mainImage-about{
    background: url(/corporate/images/bg_value.jpg) center no-repeat;
    background-size: cover;
}
.pageTitle-about{
    display: inline-block;
    font-size: 0.619em;
    padding: 18px 38px;
    color: #00385b;
    background: rgba(255, 255, 255, 0.85);
    text-shadow: none;
    font-weight: normal;
    border-radius: 4px;
}
.pageTitle-about-en{
    display: block;
    margin: 10px 0 0;
}
.aboutCatchBox{
    background: #f5f5f5;
    padding: 35px 0 20px;
}
.aboutCatchBox_text{
    text-align: center;
    font-size: 2.0em;
}
.aboutBox{
    padding: 70px 20px 50px;
}
.aboutTitle-gray{
    font-size: 2.2em;
    color: #777;
    font-weight: bold;
    text-align: center;
    margin: 0 0 40px;
}
.aboutMissionBox{
    padding: 85px 0 60px;
    color: #fff;
    background: url(/corporate/images/bg_mission.jpg) center no-repeat;
    background-size: cover;
}
.aboutMissionBox_title{
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
    margin: 0 0 45px;
}
.list-disc{
    list-style: disc inside;
    padding: 0 0 0 22px;
    text-indent: -22px;
}
.list-disc_item{
    padding: 0 0 25px;
}
.mapBox{
    width: 100%;
    height: 300px;
    padding: 20px 20px 0 0;
    box-sizing: border-box;
}
.aboutOfficerTitle{
    font-size: 1.8em;
    color: #1b7fbe;
    text-align: center;
    padding: 40px 0 20px;
}
.aboutOfficerBox{
    padding: 30px 40px 25px;
    background: #e9e9e9;
    border-radius: 8px;
    margin: 0 0 20px;
    box-sizing: border-box;
}
.aboutOfficerBox_title{
    margin: 0 0 10px;
    font-size: 1.6em;
    color: #777;
    font-weight: bold;
}
.aboutOfficerBox_title_small{
    font-size: .8em;
    font-weight: normal;
}
@media only screen and (max-width: 360px){
    .aboutOfficerBox_title_small{
        display: block;
    }
    .pageTitle-about-en{
        display: block;
        margin: 5px 0 0;
    }
}
.aboutOfficerBox_text{
    font-size: 1.4em;
    padding: 0;
}
@media screen and (max-width: 1023px){
    .mapBox{
        padding: 20px 0 0;
    }
}
@media screen and (max-width: 767px){
    .pageTitle-about{
        font-size: 0.68em;
        line-height: 1.3;
        width: 243px;
        padding: 12px 0;
    }
    .aboutCatchBox{
        padding: 15px 0 0;
    }
    .aboutCatchBox_text{
        font-size: 1.4em;
    }
    .aboutBox{
        padding: 25px 20px 15px;
    }
    .aboutTitle-gray{
    font-size: 1.7em;
        margin: 0 0 20px;
    }
    .aboutMissionBox{
        padding: 35px 0 20px;
    }
    .aboutMissionBox_title{
        font-size: 1.7em;
        margin: 0 0 20px;
    }
    .list-disc{
        padding: 0 0 0 20px;
        text-indent: -20px;
    }
    .list-disc_item{
        font-size: 1.4em;
        padding: 0 0 15px;
    }
    .aboutOfficerTitle{
        padding: 20px 0;
    }
    .aboutOfficerBox{
        padding: 15px 20px 20px;
    }
}
.officeName{
    font-weight: bold;
    display: block;
}
/*************************
service OpenWork
*************************/
.mainImage-service{
    background: url(/corporate/images/bg_service.jpg) center no-repeat;
    background-size: cover;
}
.mainImage-esgdata{
    background: url(/corporate/images/bg_esg_data.jpg) center no-repeat;
    background-size: cover;
}
.mainImage-organizationDevelopment{
    background: url(/corporate/images/bg_organization_development.jpg) center no-repeat;
    background-size: cover;
}
.mainImage{
    background-color: #efefef;
}
.introduction{
    width: 100%;
}
.introduction_wrapper{
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    padding: 50px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (min-width: 959px){
    .introduction_wrapper{
        padding: 60px 0;
    }
    .introduction_wrapper:before{
        content: '';
        position: absolute;
        display: inline-block;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        width: 340px;
        height: 397px;
        background: no-repeat bottom right 20px/320px 397px url(/corporate/images/img_platform.png?01);
    }
    .introduction_wrapper-en:before{
        content: '';
        height: 435px;
        background: no-repeat bottom right 20px/320px 435px url(/corporate/images/img_platform_en.png);
    }
}

.introduction_head{
    margin: 0 20px;
}
@media screen and (max-width: 767px){
    .introduction_head{
        margin: 0;
        padding: 0 20px;
    }
}
.introduction_title{
    margin: 0 0 30px 0;
    font-size: 2.4em;
    line-height: 1.4;
}
@media screen and (max-width: 959px){
    .introduction_title{
        margin: 0 0 15px 0;
        text-align: center;
    }
}
@media screen and (max-width: 767px){
    .introduction_title{
        margin: 0 0 24px 0;
        font-size: 1.8em;
        text-align: center;
    }
}
.introduction_text{
    margin: 0 0 16px 0;
    padding: 0 350px 0 0;
    font-size: 1.6em;
}

@media screen and (max-width: 959px){
    .introduction_text{
        padding: 0;
    }
}

@media screen and (max-width: 767px){
    .introduction_text{
        padding: 0x;
        font-size: 1.4em;
    }
}

.introduction_text:last-child{
    margin: 0px;
}

.introduction_foot{
    margin: 0 0 0 20px;
    position: relative;
}

@media screen and (max-width: 959px){
    .introduction_foot{
        padding: 430px 0 0 0;
    }
    .introduction_foot:after{
        content: '';
        position: absolute;
        display: inline-block;
        top: 40px;
        left: 0;
        right: 0;
        margin: auto;
        width: 320px;
        height: 398px;
        background: no-repeat bottom center/320px 398px url(/corporate/images/img_platform.png);
    }
    .introduction_foot-en{
        padding: 470px 0 0;
    }
    .introduction_foot-en:after{
        content: '';
        background: no-repeat bottom center/320px 435px url(/corporate/images/img_platform_en.png);
        height: 435px;
    }
}

@media screen and (max-width: 767px){
    .introduction_foot{
        margin: 0px;
        padding: 480px 0 0 0;
    }
    .introduction_foot:after{
        content: '';
        position: absolute;
        display: inline-block;
        top: 40px;
        left: 0;
        right: 0;
        margin: auto;
        width: 300px;
        height: 372px;
        background: no-repeat bottom right/300px 372px url(/corporate/images/img_platform.png);
    }
    .introduction_foot-en{
        padding: 520px 0 0;
    }
    .introduction_foot-en:after{
        content: '';
        background: no-repeat bottom center/300px 408px url(/corporate/images/img_platform_en.png);
        height: 408px;
    }
}

.introduction_data{
    margin: 60px 0 0 0;
}

@media screen and (max-width: 767px){
    .introduction_data{
        margin: 0 auto;
    }
}

.introduction_dataTitle{
    zoom: 1;
    display: block;
    margin: 0 0 16px 0;
    font-size: 1.6em;
    font-weight: normal;
}

.introduction_dataTitle:before, .introduction_dataTitle:after{
    content: "";
    display: table;
}

.introduction_dataTitle:after{
    clear: both;
}

@media screen and (max-width: 959px){
    .introduction_dataTitle{
        text-align: center;
    }
}

.introduction_dataItems{
    max-width: 650px;
}

.introduction_dataItems:before, .introduction_dataItems:after{
    content: "";
    clear: both;
    display: block;
}

@media screen and (max-width: 959px){
    .introduction_dataItems{
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px){
    .introduction_dataItems{
        margin: 0 auto;
        width: 300px;
    }
}

.introduction_dataItem{
    float: left;
    width: 115px;
    margin: 0 10px 10px 0;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    background: #efefef;
    font-size: 1.3em;
    line-height: 1;
}
.introduction_dataItem-en{
    width: 130px;
    min-height: 55px;
    text-align: left;
    line-height: 1.5;
}

@media screen and (max-width: 767px){
    .introduction_dataItem{
        margin: 0 10px 10px 0;
        width: 145px;
    }
    .introduction_dataItem:nth-child(2n){
        margin: 0 0 10px 0;
    }
}

.service_wrapper{
    max-width: 1040px;
    margin: 0 auto;
}
.service_title{
    padding: 60px 0;
    font-size: 3em;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: #0c7bc9;
}
@media screen and (max-width: 767px){
    .service_title{
        padding: 40px 0;
        margin: 0;
        font-size: 2.1em;
    }
}
.service_field{
    max-width: 1040px;
    margin: 0 auto;
    padding: 0px 15px;
    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
}
.service_field:last-child{
    padding: 0 15px 50px 15px;
}
.service_fieldTitle{
    padding: 50px 0 30px 0;
    font-size: 2.4em;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 767px){
    .service_fieldTitle{
        font-size: 1.8em;
    }
}
.service_items{
    margin: 0 auto;
    font-size: 62.5%;
}
.service_item{
    display: block;
    margin: 0 0 20px 0;
    padding: 60px 50px;
    max-width: 1010px;
    background: #fff no-repeat right 50px center/280px auto;
}
.service_item:last-child{
    margin: 0px;
}
.service_item-openwork{
    background: #fff url(/corporate/images/service_openwork.png) no-repeat right 40px bottom/280px auto;
}
.service_item-openwork .service_name{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    height: 24px;
    background: url(/corporate/images/logo_openwork.svg) no-repeat left center/139px 24px;
}
.service_item-recruiting{
    background: #fff url(/corporate/images/service_recruiting.png) no-repeat right 40px center/280px auto;
}
.service_item-recruiting .service_name{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    height: 24px;
    background: url(/corporate/images/logo_recruiting.svg) no-repeat left center/287px 24px;
}
.service_item-recruiting .service_name-en{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    height: 27px;
    background: url(/corporate/images/logo_recruiting-en.svg) no-repeat left center/244px 27px;
}
.service_item-hatarakigai{
    background: #fff url(/corporate/images/service_hatarakigai.png) no-repeat right 40px center/280px auto;
}
.service_item-finance{
    background: #fff url(/corporate/images/service_finance.png) no-repeat right 40px center/280px auto;
}
.service_item-management{
    background: #fff url(/corporate/images/service_management.png) no-repeat right 40px center/280px auto;
}
@media screen and (max-width: 959px){
    .service_item-openwork{
        background: #fff url(/corporate/images/service_openwork.png) no-repeat right 40px center/280px auto;
    }
}
@media screen and (max-width: 767px){
    .service_item{
        padding: 40px 0;
        text-align: center;
    }
    .service_item-openwork{
        background: #fff url(/corporate/images/service_openwork.png) no-repeat top 80px center/280px auto;
    }
    .service_item-openwork .service_name{
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        height: 20px;
        background: url(/corporate/images/logo_openwork.svg) no-repeat top center/auto 20px;
    }
    .service_item-openwork .service_text{
        margin: 360px 0 0 0;
    }
    .service_item-recruiting{
        background: #fff url(/corporate/images/service_recruiting.png) no-repeat top 80px center/250px auto;
    }
    .service_item-recruiting .service_name{
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        height: 20px;
        background: url(/corporate/images/logo_recruiting.svg) no-repeat top center/auto 20px;
    }
    .service_item-recruiting .service_name-en{
        text-indent: 100%;
        white-space: nowrap;
        overflow: hidden;
        height: 20px;
        background: url(/corporate/images/logo_recruiting-en.svg) no-repeat top center/auto 20px;
    }
    .service_item-recruiting .service_text{
        margin: 190px 0 0 0;
    }
    .service_item-hatarakigai{
        background: #fff url(/corporate/images/service_hatarakigai.png) no-repeat top 80px center/250px auto;
    }
}
@media screen and (max-width: 767px) and (max-width: 767px){
    .service_item-hatarakigai .service_text{
        margin: 286px 0 0 0;
    }
}
@media screen and (max-width: 767px){
    .service_item-finance{
        background: #fff url(/corporate/images/service_finance.png) no-repeat top 40px center/280px auto;
    }
    .service_item-management{
        background: #fff url(/corporate/images/service_management.png) no-repeat top 40px center/280px auto;
    }
}
.service_name{
    margin: 0 0 30px 0;
    font-size: 2.2em;
    color: #0C7BC9;
}
@media screen and (max-width: 767px){
    .service_name{
        margin: 0 0 20px 0;
        font-size: 1.8em;
    }
}
.service_text{
    margin: 0 300px 0 0;
    padding: 0;
    text-align: left;
}
@media screen and (max-width: 767px){
    .service_text{
        margin: 200px 0 0 0;
        padding: 0 30px;
    }
}
@media screen and (max-width: 767px){
    .service_explain{
        margin: 0 0 16px 0;
        font-size: 1.4em;
    }
    .service_explain:last-child{
        margin: 0;
    }
}
.service_link{
    color: #1b7fbe;
    text-decoration: none;
}
.service_link:hover{
    color: #86b1d5;
}

/*************************
Service ESGデータ提供、組織開発
*************************/
.service_pointBoxTitle{
    font-size: 2.4em;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
    text-align: center;
    padding: 60px 0 0;
}
.service_pointBox{
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}
.service_pointBox_item{
    padding: 0 20px;
    width: 33.3333%;
    text-align: center;
    font-size: 1.6em;
    line-height: 1.5;
}
.service_pointBox_item_icon{
    display: block;
    width: 40px;
    margin: 0 auto 10px;
}
.button-service_pointBox{
    font-size: 1.8em;
    width: 240px;
    margin: 0 0 60px;
    padding: 3px 0;
}
.serviceBox{
    padding: 60px 20px;
}
.serviceBox_inner{
    padding: 50px 0 0;
}
.serviceBox_heading{
    font-size: 2.2em;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
    margin: 0 0 30px;
}
.serviceBox_heading-blue{
    color: #0c7bc9;
    text-align: center;
}
.serviceBox_explain{
    text-align: center;
}
.serviceBox_content2column{
    display: flex;
}
.serviceBox_contentImageWrapper{
    margin: 50px 0 0 40px;
}
.serviceBox_contentImageWrapper-165{
    padding: 30px 80px;
    border-radius: 20px;
    border: 1px solid #ddd;
}
.serviceBox_contentImage{
    width: 100%;
}
.serviceBox_contentImage-165{
    max-width: 165px;
}
.serviceBox_contentImage-440{
    max-width: 440px;
}
.serviceBox_contentImage-480{
    max-width: 480px;
}
.serviceBox_contentImage-650{
    max-width: 650px;
}
.serviceBox_contentImage-sp{
    display: none;
}
.serviceBox_image2column{
    text-align: center;
}
.serviceBox_image2columnInner{
    padding: 30px 20px;
    border-radius: 20px;
    background: #fff;
}
.serviceBox_image2columnItem{
    display: inline-block;
    width: 50%;
    vertical-align: top;
    padding: 0 10px;
    box-sizing: border-box;
}
.serviceBox_image1column{
    text-align: center;
}
.serviceBox_image1columnInner{
    padding: 30px 20px;
    border-radius: 20px;
    background: #fff;
}
.serviceBox_image1columnItem{
    display: inline-block;
}
@media screen and (max-width: 899px){
    .serviceBox_content2column{
        flex-direction: column;
    }
    .serviceBox_contentImageWrapper{
        margin: 20px auto 0;
    }
    .serviceBox_contentImage-440{
        width: 100%;
    }
    .serviceBox_contentImage-480{
        width: 100%;
    }
    .serviceBox_contentImage-650{
        width: 100%;
    }
    .serviceBox_image2columnInner{
        padding: 0 20px;
        display: inline-block;
    }
    .serviceBox_image2columnItem{
        display: block;
        width: 100%;
        max-width: 460px;
        padding: 20px 0;
    }
}
@media screen and (max-width: 767px){
    .service_pointBoxTitle{
        font-size: 1.8em;
    }
    .serviceBox_heading{
        font-size: 1.8em;
        margin: 0 0 20px;
    }
    .serviceBox_heading-blue{
        text-align: left;
    }
    .serviceBox_explain{
        text-align: left;
    }
}
@media screen and (max-width: 599px){
    .service_pointBoxTitle{
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
        padding: 40px 0 0;
    }
    .service_pointBox{
        display: block;
        padding: 40px 0 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    .service_pointBox_item{
        width: 100%;
        text-align: left;
        padding: 0 0 20px;
        display: flex;
        align-items: center;
    }
    .service_pointBox_item_icon{
        width: 30px;
        height: 30px;
        margin: 0 10px 0 0;
    }
    .service_pointBox_item_text{
        display: inline-block;
    }
    .button-service_pointBox{
        font-size: 1.6em;
        width: 230px;
        margin: 0 0 40px;
    }
    .serviceBox{
        padding: 40px 20px;
    }
    .serviceBox_inner{
        padding: 20px 0 0;
    }
}
@media screen and (max-width: 499px){
    .service_pointBox_item{
        font-size: 1.4em;
    }
    .serviceBox_contentImage-pc{
        display: none;
    }
    .serviceBox_contentImage-sp{
        display: block;
    }
    .serviceBox_contentImage-480{
        max-width: 280px;
    }
    .serviceBox_contentImage-440{
        max-width: 280px;
    }
    .serviceBox_contentImage-650{
        max-width: 260px;
    }
    .serviceBox_image2columnItem{
        max-width: 240px;
    }
    .serviceBox_contentImageWrapper-165{
        padding: 20px 50px;
    }
}

/*************************
press
*************************/
.mainImage-press{
    background: url(/corporate/images/bg_press.jpg) center no-repeat;
    background-size: cover;
}
.contentsBox-press{
    margin: 60px auto 25px;
}
#pressImage img{
    max-width: 100%;
}
@media screen and (max-width: 960px){
    .newspage dt{
        width: 29%;
    }
}
@media screen and (max-width: 767px){
    .contentsBox-press{
        margin: 20px auto;
    }
}

/*************************
press_single
*************************/
.contentsBox-press p a{
    color: #1b7fbe;
    text-decoration: none;
    border-bottom: 1px dashed;
}
.news_time{
    text-align: right;
    display: block;
    font-size: 1.6em;
    padding-right: .5em;
    padding-bottom: 2em;
}
.news_title{
    margin-bottom: 1.5em;
    padding-bottom: .2em;
    line-height: 1.4em;
    border-bottom: 1px solid #ddd;
}
.contact-info{
    margin: 3em 0 5em;
    padding-top: 3em;
    border-top: 1px solid #ddd;
}
.contact-info p{
    padding-bottom: 0;
}
#back_press_list{
    text-align: right;
    font-size: 1.6em;
}
#back_press_list a{
    text-decoration: none;
    color: #5891b9;
}
#back_press_list a:hover{
    color: #86b1d5;
}
.pressButton{
    width: 230px;
    display: block;
    margin: 20px 0 0;
    padding: 0 25px;
    border: 1px solid #d9e4ef !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #5891b9), color-stop(0.00, #74a7ca));
    background: -webkit-linear-gradient(top, #74a7ca 0%, #5891b9 88%);
    background: -moz-linear-gradient(top, #74a7ca 0%, #5891b9 88%);
    background: -o-linear-gradient(top, #74a7ca 0%, #5891b9 88%);
    background: -ms-linear-gradient(top, #74a7ca 0%, #5891b9 88%);
    background: linear-gradient(to bottom, #74a7ca 0%, #5891b9 88%);
    color: #fff !important;
    line-height: 40px;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}
.pressButton:hover{
    opacity: .7;
}
@media screen and (max-width: 767px){
    .news_title{
        font-size: 2em;
    }
}
/*************************
alternative_data
*************************/
.mainImage-alternative_data{
    background: url(/corporate/images/bg_alternativeData.jpg) center no-repeat;
    background-size: cover;
}
.alternativeData_pointBox{
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}
.alternativeData_pointBox_item{
    padding: 0 20px;
    width: 33.3333%;
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1.5;
}
.alternativeData_pointBox_item_icon{
    display: block;
    width: 40px;
    margin: 0 auto 10px;
}
.button-alternativeData{
    display: block;
    font-size: 2em;
    width: 240px;
    margin: 0 30px;
    padding: 3px 0;
}
.alternativeData_sectionWrapper{
    margin: 0 auto 80px;
    padding: 60px 0 0;
}
@media screen and (max-width: 1070px){
    .alternativeData_sectionWrapper{
        margin: 0 15px 80px;
    }
}
@media screen and (max-width: 767px){
    .alternativeData_sectionWrapper{
        margin: 0 15px 60px;
    }
}
.ctaBox{
    display: flex;
    justify-content: center;
    padding: 0 0 60px;
}
.ctaBox-footer{
    padding: 0 0 80px;
}
@media screen and (max-width: 499px){
    .ctaBox-footer{
        padding: 20px 0 40px;
    }
}
@media screen and (max-width: 449px){
    .ctaBox{
        flex-direction: column;
        align-items: center;
        padding: 0 0 40px;
    }
    .ctaBox-footer{
        padding: 20px 0 40px;
    }
}
.alternativeData_citation{
    padding: 20px 20px 0;
    font-size: 1.1em;
    color: #555;
    text-decoration: none;
    line-height: 1.6em;
    max-width: 450px;
}
.alternativeData_content2column{
    display: flex;
    justify-content: space-between;
}
.alternativeData_content2column_imageBox{
    padding: 0 40px 0 0;
    max-width: 440px;
    border: none;
}
.alternativeData_content2column_textBox{
    max-width: 420px;
    padding: 0 20px 0 0;
}
@media screen and (max-width: 899px){
    .alternativeData_content2column{
        display: block;
    }
    .alternativeData_content2column_textBox{
        max-width: initial;
    }
}
.alternativeData_diagram{
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 30px 20px 20px;
    display: inline-block;
}
.alternativeData_diagram_inner{
    display: flex;
}
.alternativeData_diagram_item{
    width: 50%;
    max-width: 360px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin: 20px;
    padding: 40px;
}
.alternativeData_diagram_item-blue{
    border: 1px solid #1b7fbe;
    color: #1b7fbe;
}
.alternativeData_diagram_label{
    padding: 0 0 10px;
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1,5em;
}
.alternativeData_diagram_label-top{
    text-align: center;
}
.alternativeData_diagram_icon{
    display: block;
    width: 30px;
    margin: 0 0 10px;
}
.alternativeData_diagram_text{
    padding: 0 0 5px;
    line-height: 1.5;
}
.alternativeData_diagram_list_item{
    margin: 0 0 0 1.5em;
    line-height: 1.5;
    list-style-type: disc;
    padding: 0 0 10px;
}
.alternativeData_flowChart{
    margin: 20px 0 0;
}
.alternativeData_flowChart_item{
    max-width: 300px;
    text-align: center;
    margin: 0 0 40px;
    padding: 5px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: relative;
}
.alternativeData_flowChart_item:before{
    content: "";
    top: 48px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 2px;
    height: 20px;
    background: #aaa;
    position: absolute;
}
.alternativeData_flowChart_item:after{
    content: "";
    top: 56px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 10px;
    height: 10px;
    position: absolute;
    border-top: 2px solid #aaa;
    border-right: 2px solid #aaa;
    -webkit-transform: rotate(45deg);
    transform: rotate(135deg);
}
.alternativeData_flowChart_item-last{
    margin: 0;
}
.alternativeData_flowChart_item-last:before,
.alternativeData_flowChart_item-last:after{
    content: none;
}
@media screen and (max-width: 1023px){
    .alternativeData_content2column{
        display: block;
    }
    .alternativeData_citation{
        padding: 20px;
    }
    .alternativeData_content2column_textBox{
        max-width: none;
    }
}
@media screen and (max-width: 899px){
    .alternativeData_diagram{
        padding: 20px 10px 10px;
    }
    .alternativeData_diagram_item{
        margin: 10px;
        padding: 30px;
    }
}
@media screen and (max-width: 767px){
    .mainImage-alternative_data{
        height: 300px;
    }
    .alternativeData_pointBox_item{
        font-size: 1.6em;
    }
    .button-alternativeData{
        font-size: 1.6em;
        width: 190px;
        margin: 0 30px;
        padding: 3px 0;
    }
    .alternativeData_diagram{
        padding: 20px 20px 0;
    }
    .alternativeData_diagram_inner{
        display: block;
    }
    .alternativeData_diagram_label-top{
        text-align: left;
    }
    .alternativeData_diagram_item{
        width: 100%;
        max-width: 580px;
        margin: 0 0 20px;
    }
    .alternativeData_diagram_list_item{
        padding: 0 0 10px;
        font-size: 1.4em;
        line-height: 1.3;
    }
    .tag{
        font-size: 1.4em;
        margin: 0 10px 15px 0;
    }
    .alternativeData_flowChart_item{
        font-size: 1.4em;
    }
}
@media screen and (max-width: 599px){
    .alternativeData_pointBox{
        display: block;
        padding: 40px 0 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    .alternativeData_pointBox_item{
        width: 100%;
        text-align: left;
        padding: 0 0 20px;
        display: flex;
        align-items: center;
    }
    .alternativeData_pointBox_item_icon{
        width: 30px;
        height: 30px;
        margin: 0 10px 0 0;
    }
    .alternativeData_pointBox_item_text{
        display: inline-block;
    }
    .alternativeData_content2column_imageBox{
        padding: 0;
    }
    .alternativeData_flowChart_item{
        max-width: none;
    }
}
@media screen and (max-width: 499px){
    .mainImage-alternative_data{
        height: 350px;
        background-position-y: -90px;
    }
    .pageTitle-left_title{
        margin: 0 0 10px;
        font-size: 1.8em;
    }
    .button-alternativeData{
        margin: 0 10px 10px;
    }
    .alternativeData_sectionWrapper{
        margin: 0 0 40px;
        padding: 40px 0 0;
    }
    .sectionBox{
        padding: 0 20px 40px;
    }
    .sectionTitle{
        margin: 0 0 20px;
    }
    .alternativeData_diagram{
        border-radius: 15px;
        padding: 15px 15px 0;
    }
    .alternativeData_diagram_item{
        border-radius: 15px;
        padding: 15px;
    }
}


/*************************
contact
*************************/
.contentsBox-contact{
    margin: 0 auto 100px;
}
.contentsBox-contact-en{
    font-size: 15px;
}
.pageTitle-contact{
    text-align: center;
    font-size: 3.2em;
    color: #777;
    margin: 100px 0 85px;
}
#entry_form dt{
    padding-top: 10px;
    padding-bottom: 4px;
}
#entry_form select{
    width: 50%;
    font-size: 1em;
}
#entry_form .necessary,
#entry_form .option{
    margin-left: 1em;
    padding: .1em .3em;
    font-size: .7em;
    display: inline;
    color: #fff;
    line-height: 1.3em;
}
#entry_form .necessary{
    background-color: #ff9702;
}
#entry_form .option{
    background-color: #00a2ed;
}
#entry_form input,
#entry_form textarea{
    width: 70%;
    font-size: 1em;
}
#entry_form select{
    height: 50px;
    padding: 2px 0 2px 12px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #fdfdfd;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#entry_form .input{
    height: 40px;
    border:0;
    padding: 2px 12px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color: #fdfdfd;
    }
#entry_form .input-short,
#entry_form .input-english{
    width: 35%;
    max-width: 240px;
}
.input-englishBox{
    display: inline;
    margin: 0 0 0 15px;
 }
#entry_form dl .small{
    font-size: 1.3em;
    padding-bottom: 0;
    color: #777;
}
#entry_form dl dd textarea.input{
    height: 100px;
    font-family: sans-serif;
}
#entry_form h3{
    margin-top: 2em;
    margin-bottom: 1em;
    border-left: .2em solid #1b7fbe;
    padding-left: .4em;
    font-size: 1.6em;
    line-height: 1.4em;
}
#scroll_wrap{
    overflow-y: scroll;
    width: 90%;
    height: 160px;
    padding: 0 14px 19px;
    border: 1px solid #d9d9d9;
    margin-bottom: 30px;
}
#scroll h4{
    margin-top: 1em;
    margin-bottom: 1em;
    border-left: .2em solid #ccc;
    padding-left: .4em;
    font-size: 1.6em;
    line-height: 1.4em;
}
#scroll h5{
    font-size: 1.4em;
    margin-top: .5em;
    margin-bottom: .5em;
}
#scroll h5.jp{
    font-weight: normal;
    line-height: 1.6;
}
#scroll p{
    font-size: 1.4em;
}
#agreement{
    text-align: center;
}
.agreement_label{
    font-size: 1.6em;
    text-align: center;
    font-weight: bold;
}
.agreement_checkbox{
    width: auto !important;
    margin: 0 5px 0 0;
    vertical-align: baseline;
}

.flash-notice{
    font-size: 1.6em;
    padding-bottom: 2em;
    color: #cb2027;
}
.to_c_form{
    color: #1b7fbe;
    text-decoration: none;
}
.to_c_form:hover{
    color: #86b1d5;
}
#cellstyle{
    margin: 1em 0 2em;
    border-bottom: 1px solid #ddd;
}
#cellstyle h4{
    font-size: 2.2em;
    margin-bottom: 1em;
    color: #1b7fbe;
}
#cellstyle dl dd ul li{
    list-style: none;
    padding-bottom: 0;
}
#cellstyle dl dd p{
    font-size: 1em;
}
#cellstyle dd ul li{
    font-size: 1em;
}
.btn_send{
    margin: 2em auto;
}
.contactButton{
    width: 330px;
    display: block;
    margin: 40px auto 0;
    padding: 0 25px;
    background: #1b7fbe;
    border: none;
    color: #fff !important;
    font-size: 1.8em;
    line-height: 50px;
    border-radius: 27px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}
.contactButton:hover{
    opacity: .7;
}
.contactButton-disabled,
.contactButton-disabled:hover{
    opacity: .3;
}
#scroll.privacyPolicyScroll dd,
#scroll.privacyPolicyScroll dd p,
#scroll.privacyPolicyScroll dd li{
    font-size: 13px;
}
.privacyPolicyBox dt{
    font-size: 15px;
    font-weight: bold;
}
.privacyPolicyList-roman{
    list-style-type: lower-roman;
    padding: 0 0 0 20px;
}
.privacyPolicyList-disc{
    list-style-type: disc;
    padding: 0 0 0 20px;
}
.privacyPolicyList-roman li,
.privacyPolicyList-disc li,
.privacyPolicyList-plain li{
    padding: 0;
}

@media screen and (max-width: 960px){
    #entry_form select{
        width: 100%;
        height: 40px;
        line-height: .9em;
    }
    #entry_form input,
    #entry_form textarea,
    #scroll_wrap{
        width: 90%;
    }
    #entry_form .input{
        height: 30px;
    }
    #agreement p{
        font-size: 1.4em;
        line-height: 1.5em;
    }
    #agreement input{
        width: 14px;
    }
}
@media screen and (max-width: 767px){
    .contentsBox-contact{
        margin: 0 auto 50px;
    }
    .pageTitle-contact{
        font-size: 2.4em;
        margin: 50px 0 49px;
    }
    #cellstyle{
        border-bottom: none;
    }
    #cellstyle dl dt{
        padding-top: 2em;
        padding-bottom: .1em;
        font-weight: bold;
    }
    #cellstyle dl dt:first-child{
        padding-top: 1em;
    }
    #cellstyle dl dd{
        border-left: 1px solid #B7D0E7;
        margin-left: 2%;
        padding-left: 2%;
        padding-bottom: 0;
    }
    .contactButton{
        width: 260px;
        font-size: 1.4em;
        line-height: 40px;
    }
    #entry_form .input-englishBox{
        display: block;
        margin: 10px 0 0;
    }
    #entry_form .input-english{
        width: 60%;
        max-width: 200px;
    }
    #agreement{
        text-align: left;
    }
    .agreement_label{
        text-align: left;
        display: table;
        line-height: 1.3
    }
    .agreement_checkboxArea,
    .agreement_text{
        display: table-cell;
    }
}
@media screen and (max-width: 500px){
    #entry_form .input-short{
        width: 35%;
        max-width: 105px;
    }
    #entry_form .input-english{
        width: 60%;
        max-width: 200px;
    }
    .contactLabel-english{
        margin: 0 0 5px 0;
        width: 85px;
        display: inline-block;
    }
}
@media screen and (max-width: 400px){
    #entry_form .input-short{
        width: 35%;
        max-width: 85px;
    }
    #entry_form .input-english{
        width: 60%;
        max-width: 140px;
    }
}
@media screen and (min-width: 768px){
    #cellstyle dl{
        background-color: #f5f5f5;
    }
    #cellstyle dl dd{
        background-color: #fff;
        min-height: 1.8em;
    }
    #cellstyle dl dd ul li{
        padding-bottom: 0;
        font-size: 1em;
        line-height: 1.8em;
    }
    #cellstyle{
        margin-bottom: 3em;
        border-bottom: 1px solid #ddd;
        border-top: none;
    }
    #cellstyle dt,
    #cellstyle dd{
        padding-top: 1.5em;
        padding-bottom: 1.5em;
    }
    #cellstyle dt{
        border-top: 1px solid #ddd;
        clear: left;
        float: left;
        width: 27%;
        padding-left: 1em;
    }
    #cellstyle dd{
        background: #fff;
        border-top: 1px solid #ddd;
        margin-left: 27%;
        padding-left: 2%;
    }
}
@media screen and (max-width: 1049px){
    #cellstyle dt,
    #cellstyle dd,
    .chart_cap p{
        font-size: 1.5em;
    }
}

/*************************
footer
*************************/

.footer{
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 150px;
    background: #0c7bc9;
    padding: 0 30px;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_copyright{
    color: #fff;
    font-size: 1.3em;
    line-height: 2;
}
.fotter_links{
    display: flex;
    align-items: center;
}
.footer_logo{
    width: 100px;
    height: 0;
    padding: 18px 0 0;
    overflow: hidden;
    background: url(/corporate/images/logo_white.svg?01) no-repeat;
}
.footer_sns{
    width: 25px;
    display: inline-block;
    margin: 0 0 0 40px;
}
@media screen and (max-width: 767px){
    .footer{
        height: 160px;
        padding: 34px 0 0;
        text-align: center;
        flex-direction: column;
    }
    .fotter_links{
        flex-direction: column;
    }
    .footer_sns{
        margin: 20px 0;
    }
    .footer_copyright{
        font-size: 1.2em;
        padding: 0 0 10px;
    }
}
/*************************
logo_area
*************************/
#logo_area h2 i.mdl{
    vertical-align:middle;
}
#logo_area{
    padding-top:3em;}
#front-info{
    max-width: 670px;
    margin: 0 auto;
    padding-top: 20px;
    clear: both;
    overflow: hidden;
}
#front-info ul{
    padding-top: 20px;
}
#front-info .logo_box{
    margin-bottom: 0;
}
#front-info ul li{
    list-style: none;
    float: left;
    width: 50%;
    margin-left: 0;
    padding-bottom: 20px;
}
#front-info ul li img{
    width: 100%;
}

@media only screen and (min-width: 768px){
    #front-info{
        max-width: 1000px;
        padding-top: 30px;
        margin:0;
    }
    #front-info h2{
    width: 280px;
    }
    #front-info ul{
        display: table;
        margin: 0 auto;
    }
    #front-info ul li{
        float: none;
        width: auto;
        display: table-cell;
        padding: 0 20px;
    }
    #front-info ul li img{
        width: 150px;
    margin-left: -30px;
    }
}

@media only screen and (min-width: 985px){
    #front-info ul li img{
        width: 100%;
        margin-left: -20px;
    }
}
@media screen and (min-width: 680px) and (max-width: 768px){
    #front-info ul li img{
        width: 240px;
        margin-left: -30px;
    }
}

@media only screen
    and (min-device-width:768px)
    and (max-device-width:1024px)
    and (orientation:landscape){
    #front-info ul li img{
        width: 165px;
        margin-left: -30px;
    }
}

@media only screen and (min-device-width: 414px)
 and (max-device-width: 736px)
 and (orientation : landscape){
     #front-info ul li img{
        width: 150px;
        margin-left: -30px;
    }
    #front-info ul li{
        width: 25%;
    }
}

/*************************
General
*************************/

.d-b{
    display: block;
}
.d-ib{
    display: inline-block;
}
.o-h{
    overflow: hidden;
}
.mt-10{
    margin-top: 10px !important;
}
.mt-15{
    margin-top: 15px !important;
}
.mt-30{
    margin-top: 30px !important;
}
.mt-40{
    margin-top: 40px !important;
}
.mb-10{
    margin-bottom: 10px !important;
}
.mb-20{
    margin-bottom: 20px !important;
}
.ml-15{
    margin-left: 15px !important;
}
.ml-20{
    margin-left: 20px !important;
}
.mr-5{
    margin-right: 5px;
}
.mr-15{
    margin-right: 15px;
}
.t-c{
    text-align: center;
}
.t-r{
    text-align: right;
}
.pb-0{
    padding-bottom: 0 !important;
}
.f-r{
    float: right;
}
.fw-b{
    font-weight: bold;
}
.fs-13{
    font-size: 13px;
}
.fs-14{
    font-size: 14px;
}
.fs-1em{
    font-size: 1em;
}
.gray{
    color: #777;
}
.backgroundGray{
    background: #F5F5F5;
}
.backgroundWhite{
    background: #fff;
}
.backgroundLightBlue{
    background: #f8f9fa;
}
.noBorder{
    border: none;
}
@media only screen and (max-width: 767px){
    .onlyPc{
        display: none;
    }
}
