@charset "utf-8";


#content_header {
    width: 100%;
    background-image: url(../image/index_background.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #004da0;
}

.content_inner{
    background: url(../image/index_background_2.png) fixed 0 0;
    width: 100%;
    background-size: cover;
    z-index: -999;
}

.content_inner > .container{
    display:flex;
    align-items: center;
    justify-content: space-around;
}

.ie11 > .content_inner{
    background: none!important;
}

/*       info         */

#main_info {
    margin: 0 auto;
    padding-top: 75px;
    padding-bottom: 200px;
    width: 960px;
    position: relative;
}

#main_info > h1 {
    width: 100%;
}

#info {
    margin: 0 0 0 auto;
    padding: 0;
    line-height: 1.8;
    overflow-y: scroll;
    width: 600px;
    height: 150px;
    padding-top: 20px;
}

#info li {
    display: flex;
    margin-bottom: 23px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
    align-items: center;
    justify-content: space-between;
}

#info .info_date{
    font-weight: 600;
    width: 15.5em;
    padding: 0 0 0 10px;
    font-size: 1.2em;
    letter-spacing: 0.02em;
}

#info .info_icon{
    font-weight: 600;
    padding: 3px 5px 2px;
    border: 1px solid #0cb59b;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    line-height: 1.0;
    color: #0cb59b;
}

#info .info_title{
    width: 15.5em;
    font-size: 1.2em;
}

#scroll_btn {
    position: absolute;
    bottom: -10px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-decoration: none;
}

#scroll_btn_parent{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

#scroll_btn{
    padding-top: 60px;
    color: #555555;
    transition: .1s all;
}
#scroll_btn > span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 46px;
    height: 46px;
    margin-left: -23px;
    border: 1px solid #555555;
    border-radius: 100%;
    box-sizing: border-box;
    transition: .1s all;
}
#scroll_btn > span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 16px;
    height: 16px;
    margin: -12px 0 0 -8px;
    border-left: 1px solid #555555;
    border-bottom: 1px solid #555555;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
}

#scroll_btn:hover{
    color: #004da0;
}

#scroll_btn > span:hover{
    background-color: #004da0;
    border-color: rgba(0,0,0,0);
}

#scroll_btn > span:hover::after{
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

/*       スクロールバー        */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
    background-color: #CCCCCC;
    border-radius: 10px;
    box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}

/*       about       */

#about {
    padding-bottom: 100px;
    padding-top: 50px;
    background-color: rgba(238, 238, 238, 0.5);
    width: 100%;
}

#about_inner{
    width: 960px;
    margin: 0 auto;
}

#about_inner .section_title{
    opacity: 0;
}

.css-slidein {
    animation-timing-function: ease-out;
    animation-name: slidein;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes slidein {
    from {
        opacity: 0;
        transform: translatex(-100px);
    }

    to {
        opacity: 1;
        transform: translatex(0);
    }

}



.linkbox{
    display: block;
    width: 960px;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    transform: scale(1.1.1.1);
    margin-bottom: 20px;
}


.banner_business {
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 960px;
}
.banner_business:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background: url(../image/business_bg.jpg) no-repeat center center;
    background-size: cover;
    transition: all .3s ease-out;
}
.banner_business:hover:after {
    transform: scale(1.1);
}
.banner_business .inner {
    z-index: 1;
    position: relative;
    min-height: 250px;
}

.banner_company {
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 960px;
}
.banner_company:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background: url(../image/company_link_bg.jpg) no-repeat center center;
    background-size: cover;
    transition: all .3s ease-out;
}
.banner_company:hover:after {
    transform: scale(1.1);
}
.banner_company .inner {
    z-index: 1;
    position: relative;
    min-height: 250px;
}

.banner_access {
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 960px;
}
.banner_access:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    background: url(../image/access_link_bg.jpg) no-repeat center center;
    background-size: cover;
    transition: all .3s ease-out;
}
.banner_access:hover:after {
    transform: scale(1.1);
}
.banner_access .inner {
    z-index: 1;
    position: relative;
    min-height: 250px;
}

.linkbox > img{
    height: auto;
    display: block;
    transition-duration: 0.3s;
}
