@charset "utf-8";
/* ===================================================================
CSS
 file name  :  common.css
=================================================================== */
body, button, input, select, textarea {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-feature-settings: "palt";
	font-weight: 300;
	line-height: 2;
}
html{
    font-size: 62.5%;/* 10px*/
}
body{
    font-size:1.6rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	body{
		font-size:1.2rem;
	}
}
img{
	max-width: 100%;
	height: auto;
	width: auto;
}
a{
	color: #226BBE;
}
a:hover{
    text-decoration: underline;
}
/* ボタン共通 */
a.btn{
	position: relative;
	display: block;
    border-radius: 5px;
	padding: 1.2em 1em;
	background: #BE2D1B;
    border-bottom: 5px solid #882215;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	transition: all .3s;
}
@media print, screen and (min-width: 769px) {
    a.btn:hover{
        background: #951000;
        border-bottom: 5px solid #670B00;
    }
}
@media screen and (max-width: 768px) {
    a.btn{
        font-size: 1.4rem;
    }
}
@media print, screen and (min-width: 769px) {
	.pc_none{
		display:none;
	}
}
@media screen and (min-width: 481px) {
	.tb_none{
		display:none;
	}
}
@media screen and (max-width: 768px) {
	.sp_none{
		display:none;
	}
}
/* =====================================
ヘッダー
======================================== */
.header{
    width: 100%;
    z-index: 10000;
    background: #000000;
}
.header_wrap{
    width:100%;
    height: 100px;
    margin:0 auto;
    padding: 15px 50px;
}
.header_wrap .h_logo a{
    display: block;
    width: 245px;
    height: 70px;
    background: url("../images/common/h_logo_ora.png") no-repeat;
    background-size: contain;
    text-indent: -9999px;
    margin: auto;
}
@media screen and (max-width: 768px) {
	.header{
		position: relative;
	}
    .header_wrap{
        height: 60px;
        padding: 10px 20px;
    }
    .header_wrap .h_logo a{
        width: 192px;
        height: 40px;
    }
}
/* =====================================
パンくず
======================================== */
.breadcrumb{
	max-width: 1180px;
	margin: auto;
	padding: 20px 50px 0 50px;
	font-size:1.2rem;
	display:flex;
	flex-wrap:wrap;
}
.breadcrumb li{
	display: inline-block;
}
.breadcrumb li a{
	position: relative;
	color: #646262;
	text-decoration:none;
	padding-right: 2em;
}
.breadcrumb li a:hover{
	text-decoration:underline
}
.breadcrumb li a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 1em;
	width: 6px;
	height: 6px;
	border-top: 1px solid #202466;
	border-right: 1px solid #202466;
	transform: rotate(45deg);
	margin-top: -3px;
}
@media screen and (max-width: 768px) {
	.breadcrumb{
		padding: 10px 20px 0 20px;
		font-size: 0.8rem;
	}
}
/* =====================================
コンテンツ共通
======================================== */
.wrap_wide_nomal{
	max-width: 1180px;
	margin: auto;
	padding: 120px 50px 0 50px;
}
.wrap_wide_second{
	max-width: 1180px;
	margin: auto;
	padding: 70px 50px 0 50px;
}
span.underline{
	background: linear-gradient(transparent 60%, #FFF577 60%);
	padding-bottom: 0.1em;
}
.t_red{
    color: #BE2D1B;
}
h2.sub_title{
    font-size: 3.0rem;
    text-align: center;
    font-weight: bold;
    line-height: 1.8;
}
h2.sub_title span.large{
    font-size: 3.8rem;
}
h2.sub_title span.small{
    font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
    .wrap_wide_nomal{
        margin: auto;
        padding: 50px 20px 0 20px;
    }
    .wrap_wide_second{
        margin: auto;
        padding: 40px 20px 0 20px;
    }
    h2.sub_title{
        font-size: 1.8rem;
    }
    h2.sub_title span.large{
        font-size: 2.4rem;
    }
    h2.sub_title span.small{
        font-size: 1.6rem;
    }
}
/* =====================================
お問い合わせバナー
======================================== */
.contact_comment{
    width:100%;
    max-width: 1180px;
    margin: 70px auto auto;
    padding: 0 50px;
}
.contact_comment p{
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
}
.contact_wrap{
    width:100%;
    max-width: 1180px;
    margin: 70px auto auto;
    padding: 0 50px;
}
.contact_wrap .btn_contact{
    margin: 45px auto auto;
    max-width: 640px;
}
@media print, screen and (min-width: 769px) {
    .contact_wrap .btn_contact:hover img{
        transform: translateY(-3px);
        box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.4);
        transition:0.3s;
    }
}
@media screen and (max-width: 768px) {
    .contact_comment{
        margin: 40px auto auto;
        padding: 0 20px;
    }
    .contact_comment p{
        font-size: 1.8rem;
    }
    .contact_wrap{
        margin: 40px auto auto;
        padding: 0 0;
    }
    .contact_wrap .banner_contact{
        background: #F4EFEA;
        text-align: center;
    }
    .contact_wrap .banner_contact img{
        width: 100%;
        max-width: 480px;
    }
    .contact_wrap .btn_contact{
        margin: 25px auto auto;
        max-width: 335px;
    }
}
@media screen and (max-width: 480px) {
    .contact_wrap{
        margin: 30px auto auto;
    }
    .contact_wrap .btn_contact{
        margin: 20px auto auto;
    }
}
/* =====================================
フロートバナー
======================================== */
.float_btn{
    position: fixed;
    z-index: 10000;
}
.float_btn a{
    display: block;
    background: #BE2D1B;
    border-bottom: 5px solid #882215;
    text-align: center;
}
@media print, screen and (min-width: 769px) {
    .float_btn{
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 100px;
    }
    .float_btn a{
        width: 100px;
        height: 420px;
        padding-top: 35px;
    }
    .float_btn a img{
        width: 84px;
    }
    .float_btn a:hover{
        transform: translateY(-3px);
        box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.4);
        transition:0.3s;
    }
}
@media screen and (max-width: 768px) {
    .float_btn{
        bottom: 0;
        left: 0;
        width: 100%;
    }
    .float_btn a{
        width: 100%;
        height: 75px;
        padding-top: 7px;
    }
    .float_btn a img{
        width: 330px;
    }
}
/* =====================================
ページトップ
======================================== */
#page-top{
	position: fixed;
	right: 20px;
	width: 60px;
	z-index: 100;
}
@media screen and (max-width: 1080px) {
	#page-top{
		width: 50px;
	}
}
@media screen and (max-width: 768px) {
	#page-top{
		width: 40px;
	}
}
/* =====================================
フッター
======================================== */
.footer{
	position: relative;
    background: url("../images/common/bg_footer.jpg") no-repeat center center;
    background-size: cover;
}
.footer .footer_wrap{
    width:100%;
    max-width: 1180px;
    margin:150px auto auto;
    padding: 100px 50px;
    text-align: center;
    color: #FFF;
    font-size: 1.4rem;
}
.footer .footer_wrap .f_logo{
    width: 260px;
    margin: auto;
}
.footer .footer_wrap p.pby{
    text-align: center;
    margin-top: 1em;
}
.footer .footer_wrap p.f_address{
    margin: 60px auto auto;
}
@media print, screen and (min-width: 769px) {
    .footer .footer_wrap ul.f_link{
        margin: 60px auto auto;
        display: flex;
        justify-content: center;
    }
    .footer .footer_wrap ul.f_link li{
        padding: 0 30px;
    }
}
.footer .footer_wrap ul.f_link li a{
    color: #FFF;
    text-decoration: none;
    padding-bottom: 0.3em;
}
@media print, screen and (min-width: 769px) {
    .footer .footer_wrap ul.f_link li a:hover{
        border-bottom: 1px solid #FFF;
    }
}
.footer .footer_wrap .copy{
    margin: 60px auto auto;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .footer .footer_wrap{
        margin: 70px auto auto;
        padding: 70px 20px 130px 20px;
        font-size: 1.2rem;
    }
    .footer .footer_wrap .f_logo{
        width: 200px;
    }
    .footer .footer_wrap p.f_address{
        margin: 40px auto auto;
    }
    .footer .footer_wrap ul.f_link{
        margin: 40px auto auto;
    }
    .footer .footer_wrap ul.f_link li{
        margin-top: 10px;
    }
    .footer .footer_wrap .copy{
        margin: 40px auto auto;
    }
}