@charset "utf-8";
/* ===================================================================
CSS
 file name  :  common.css
=================================================================== */
/* web font */
body, button, input, select, textarea {
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Avenir','Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','メイリオ',Meiryo,sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 2;
    color: #646262;
}
.font_english{
	font-family: 'Arial','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic','メイリオ',Meiryo,sans-serif;
}
.font_serif{
    font-family: "Noto Serif JP",'Times New Roman',YuMincho,"Yu Mincho","Hiragino Mincho ProN","serif";
}
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: #455974;
}
a:hover{
	color: #455974;
    text-decoration: underline;
}
/* ボタン共通 */
a.btn{
	position: relative;
	display: block;
    border-radius: 5px;
	padding: 1.5em 1em;
	background: #C4B79C;
	color: #FFF;
	text-decoration: none;
	text-align: center;
    font-size: 2.0rem;
	transition: all .3s;
}
@media print, screen and (min-width: 769px) {
    a.btn:hover{
        background: #BFA265;
    }
}
a.btn span{
	position: relative;
    padding-right: 2em;
}
a.btn span::before{
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 19px;
    height: 19px;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    transform: rotate(45deg);
	transition: all .3s;
}
a.btn span::after{
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 1px;
    background: #FFFFFF;
	transition: all .3s;
}
@media screen and (max-width: 768px) {
    a.btn{
        font-size: 1.4rem;
    }
    a.btn span{
        padding-right: 1.5em;
    }
    a.btn span::before{
        width: 9px;
        height: 9px;
    }
    a.btn span::after{
        width: 12px;
    }
}
.bg_gray{
	background: #EFEFEF;
}
@media print, screen and (min-width: 769px) {
/* PC用のスタイル記述 */
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	.pc_none{
		display:none;
	}
}
@media screen and (max-width: 768px) {
	.sp_none{
		display:none;
	}
}
/* =====================================
ヘッダー
======================================== */
.header{
    width: 100%;
    z-index: 10000;
    background: #646262;
}
.header_wrap{
    width:100%;
    height: 80px;
    margin:0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_wrap .h_logo a{
    display: block;
    width: 252px;
    height: 40px;
    background: url("../images/common/h_logo.png") no-repeat;
    background-size: contain;
    text-indent: -9999px;
}
.header_wrap .h_tel a{
    color: #FFF;
    font-size: 2.8rem;
}
.header_wrap .h_tel a::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url("../images/common/icon_tel.png") no-repeat;
    background-size: contain;
    width: 1em;
    height: 1em;
    margin: -3px 0.3em 0 0;
}
@media screen and (max-width: 768px) {
	.header{
		position: relative;
	}
    .header_wrap{
        height: 60px;
        padding: 0 20px;
    }
    .header_wrap .h_logo a{
        width: 160px;
        height: 26px;
    }
    .header_wrap .h_tel a span{
        display: none;
    }
    .header_wrap .h_tel a::before{
        width: 22px;
        height: 22px;
        margin: -8px 0 0 0;
    }
}
/* =====================================
パンくず
======================================== */
.breadcrumb{
	max-width: 1180px;
	margin: auto;
	padding: 10px 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: 150px 50px;
}
h2.sub_title{
    color: #455974;
}
h2.sub_title span{
    font-size: 4.2rem;
    color: #646262;
    margin-right: 30px;
}
@media screen and (max-width: 768px) {
	.wrap_wide_nomal{
		padding: 70px 20px;
	}
    h2.sub_title span{
        font-size: 2.2rem;
        margin-right: 15px;
    }
}
/* =====================================
お問い合わせ
======================================== */
.contact_box{
    width:100%;
    max-width: 1180px;
    margin: 100px auto auto;
    padding: 60px 14%;
    background: #455974;
    color: #FFFFFF;
}
.contact_box .contact_title span{
    font-size: 4.2rem;
    margin-right: 20px;
}
.contact_box .btn_contact{
    margin-top: 30px;
	font-weight: 400;
}
@media screen and (max-width: 768px) {
    .contact_box{
        margin: 50px auto auto;
        padding: 30px 30px;
    }
    .contact_box .contact_title span{
        font-size: 2.2rem;
        margin-right: 10px;
    }
    .contact_box .btn_contact{
        margin-top: 20px;
    }
}
/* =====================================
ページトップ
======================================== */
#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: #EAEAEA;
}
.footer .footer_wrap{
    width:100%;
    max-width: 1180px;
    margin:0 auto;
    padding: 70px 50px;
    text-align: center;
}
.footer .footer_wrap a{
    color: #333;
    text-decoration: none;
    margin: auto 2em;
}
@media print, screen and (min-width: 769px) {
    .footer .footer_wrap a:hover{
        color: #455974;
        text-decoration: underline;
    }
}
.footer .copy{
    width: 100%;
    background: #333333;
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    padding: 15px 50px;
}
@media screen and (max-width: 768px) {
    .footer .footer_wrap{
        padding: 40px 20px;
    }
    .footer .copy{
        font-size: 1.0rem;
    }
}