@charset "UTF-8";

/*-----------------------------------

	lower

-----------------------------------*/
#headline {
    background: url(../img/common/headline_bg.jpg) no-repeat center;
    background-size: cover;
    text-align: center;
    padding: 50px 0;
}
#headline h1{
    color: #011c43;
    font-size: 36px;
	line-height: 100%;
}
#headline h1 span{
    font-size: 20px;
    display: block;
    margin-top: 10px;
}
#breadcrumb{
    padding: 10px 0;
}
#breadcrumb ul li{
    float: left;
    color: #011c43;
}
#breadcrumb ul li a{
    color: #011c43;
    font-size: 11px;
}
#breadcrumb ul li::after{
    content: ">";
    margin: 0 10px;
}
#breadcrumb ul li:last-child::after{
    content: "";
    margin: 0;
}
@media screen and (max-width: 640px) {
    #headline {
        padding: 30px 0;
    }
    #headline h1{
        font-size: 14px;
    }
    #headline h1 span{
        font-size: 16px;
        margin-top: 15px;
    }
}
/*-----------------------------------

	bottom_block

-----------------------------------*/
#bottom_block #company_area{
    float: left;
    background: url(../img/common/company_bg.jpg) no-repeat center;
    background-size: cover;
}
#bottom_block #contact_area{
    float: right;
    background: url(../img/common/contact_bg.jpg) no-repeat center;
    background-size: cover;
}
#bottom_block section{
    width: 50%;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
#bottom_block section h2{
    font-size: 48px;
    margin-bottom: 60px;
}
#bottom_block section h2 span{
    font-size: 18px;
    display: block;
    margin-top: 40px;
}
#bottom_block section a{
    display: block;
    width: 350px;
    padding: 20px 0;
    font-size: 18px;
    color: #fff;
    border: 1px solid #fff;
    margin: 0 auto;
    position: relative;
    transition: all 0.5s;
}
#bottom_block section a::after{
    position: absolute;
    content: '';
    width: 27px;
    height: 27px;
    background: url(../img/common/bottom_icon.png) no-repeat;
    background-size: contain;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    display: block;
}
#bottom_block section a:hover{
    background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 840px) {
    #bottom_block section a{
        width: 90%;
        font-size: 16px;
    }
}
@media screen and (max-width: 640px) {
    #bottom_block #company_area{
        float: none;
    }
    #bottom_block #contact_area{
        float: none;
    }
    #bottom_block section{
        width: 100%;
        padding: 50px 0;
    }
    #bottom_block section h2{
        font-size: 36px;
        margin-bottom: 40px;
    }
    #bottom_block section h2 span{
        font-size: 16px;
        margin-top: 30px;
    }
}
