@charset "utf-8";
/*
 * ページ共通のCSSを記述
 * ある程度まとまった領域のCSSです
 */

/*
 * header ヘッダ 
 */
#c_header{
	overflow: hidden;
	display: table;
	width: 100%;
}
.c_header-logo{
	display: table-cell;
	padding-left: 40px;
	width: 320px;
	vertical-align: middle;
}
.c_header-con{
	display: table-cell;
	text-align: right;
	vertical-align: middle;
}

.c_header-inn{
	display: table;
	margin-left: auto;
}
.c_header-text{
	display: table-cell;
	padding-right: 25px;
	vertical-align: middle;
}
.c_header-mail{
	display: table-cell;
	vertical-align: middle;
}
.c_header-mail a{
	display: block;
	background-color: #60341f;
	padding: 30px 0;
	width: 90px;
	font-size: 30px;
	color: white;
	text-align: center;
	line-height: 1;
}

.c_header-text01{/* テキスト・電話 */
	display: table;
	padding-bottom: 10px;
	margin-left: auto;
}
.c_header-text01 .text01_inn01{
	position: relative;
	top: 5px;
	display: table-cell;
	padding-right: 40px;
	color: #60341f;
	vertical-align: top;
}
.c_header-text01 .text01_inn02{
	display: table-cell;
	font-size: 22px;
	font-weight: 700;
	color: #60341f;
	vertical-align: top;
}
.c_header-text01 .text01_inn02 .inn02_ic{
	position: relative;
	top: -2px;
	display: inline-block;
	padding-right: 10px;
}
.c_header-text01 .text01_inn02 .inn02_mini{
	font-size: 16px;
}

.c_header-nav{/* サイト内リンク */
	overflow: hidden;
	font-size: 0px;
}
.c_header-nav li{
	display: inline-block;
	padding-right: 30px;
	font-size: 16px;
	vertical-align: top;
}
.c_header-nav li:last-child{
	padding-right: 0px;
}
.c_header-nav li a{
	padding: 5px 10px;
	color: #60341f;
}

.c_header-nav li .menu_li{/* hover */
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.c_header-nav li .menu_li::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #4f884b;/* ボーダーカラー */
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .1s;
}
.c_header-nav li .menu_li:hover::after {
	transform: scale(1, 1);
}

.c_header-nav li .active::after{/* アクティブ時の設定 */
	position: absolute;
	bottom: 0px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #4f884b;/* ボーダーカラー */
	transform: scale(1, 1);
	transform-origin: left top;
	transition: transform .1s;
}
.c_header-nav li .active:hover::after{
	transform: scale(1, 1);
}
@media screen and (min-width: 1140px) and (max-width: 1495px) {
	.c_header-logo{
		padding-left: 10px;
		width: 230px;
	}
	.c_header-logo img{
		width: 220px;
	}
	
	.c_header-text{
		padding-right: 20px;
	}
	
	.c_header-text01 .text01_inn01{
		padding-right: 0px;
		font-size: 15px;
		width: 240px;
		line-height: 1.7;
		text-align: left;
	}
	.c_header-text01 .text01_inn01 .bl_invisi-tab{
		display: none;
	}
	.c_header-text01 .text01_inn01 .bl_tab{
		display: block;
	}
	.c_header-text01 .text01_inn02{
		font-size: 17px;
		line-height: 1.4;
		text-align: left;
	}
	.c_header-text01 .text01_inn02 .inn02_ic{
		padding-right: 5px;
	}
	.c_header-text01 .text01_inn02 .inn02_ic img{
		width: 22px;
	}
	.c_header-text01 .text01_inn02 .inn02_mini{
		font-size: 13px;
	}
	.c_header-text01 .text01_inn02 .bl_invisi-tab{
		display: none;
	}
	.c_header-text01 .text01_inn02 .bl_tab{
		display: block;
	}
	
	.c_header-nav li{
		padding-right: 15px;
		font-size: 13px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_header-logo{
		padding-left: 10px;
		width: 200px;
	}
	.c_header-logo img{
		width: 170px;
	}
	
	.c_header-text{
		padding-right: 20px;
	}
	.c_header-mail a{
		padding: 30px 0;
		width: 60px;
		font-size: 24px;
	}
	
	.c_header-text01 .text01_inn01{
		padding-right: 0px;
		font-size: 12px;
		width: 180px;
		line-height: 1.7;
		text-align: left;
	}
	.bl_invisi-tab{
		display: none;
	}
	.c_header-text01 .text01_inn01 .bl_tab{
		display: block;
	}
	.c_header-text01 .text01_inn02{
		font-size: 15px;
		line-height: 1.4;
		text-align: left;
	}
	.c_header-text01 .text01_inn02 .inn02_ic{
		padding-right: 5px;
	}
	.c_header-text01 .text01_inn02 .inn02_ic img{
		width: 22px;
	}
	.c_header-text01 .text01_inn02 .inn02_mini{
		font-size: 13px;
	}
	.c_header-text01 .text01_inn02 .bl_invisi-tab{
		display: none;
	}
	.c_header-text01 .text01_inn02 .bl_tab{
		display: block;
	}
	
	.c_header-nav li{
		padding-right: 15px;
		font-size: 13px;
	}
}
@media print{
	.c_header-logo{
		padding-left: 10px;
		width: 200px;
	}
	.c_header-logo img{
		width: 170px;
	}
	
	.c_header-text{
		padding-right: 20px;
	}
	.c_header-mail a{
		padding: 30px 0;
		width: 60px;
		font-size: 24px;
	}
	
	.c_header-text01 .text01_inn01{
		padding-right: 0px;
		font-size: 12px;
		width: 180px;
		line-height: 1.7;
		text-align: left;
	}
	.bl_invisi-tab{
		display: none;
	}
	.c_header-text01 .text01_inn01 .bl_tab{
		display: block;
	}
	.c_header-text01 .text01_inn02{
		font-size: 15px;
		line-height: 1.4;
		text-align: left;
	}
	.c_header-text01 .text01_inn02 .inn02_ic{
		padding-right: 5px;
	}
	.c_header-text01 .text01_inn02 .inn02_ic img{
		width: 22px;
	}
	.c_header-text01 .text01_inn02 .inn02_mini{
		font-size: 13px;
	}
	.c_header-text01 .text01_inn02 .bl_invisi-tab{
		display: none;
	}
	.c_header-text01 .text01_inn02 .bl_tab{
		display: block;
	}
	
	.c_header-nav li{
		padding-right: 15px;
		font-size: 13px;
	}
}
@media screen and (max-width: 767px) {
	#c_header{
		display: none;
	}
}


/*
 * promo 下層ページ見出し
 */
.c_promo{
	position: relative;
	overflow: hidden;
	width: 100%;
	min-width: 1140px;
}
.c_promo-tit{
	position: absolute;
	bottom: 0px;
	left: 0px;
	background-color: rgba(185,89,76,0.8);
	width: 100%;
	height: 120px;
	z-index: 3;
	text-align: center;
}
.c_promo-tit .tit_h2{
	position: relative;
	display: inline-block;
	font-family: 'Lato', 'Noto Sans JP', 'メイリオ', Meiryo, '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 36px;
	color: white;
	line-height: 120px;
}
.c_promo-tit .tit_h2 .tit_ic{
	position: absolute;
	top: -46px;
	left: -160px;
	z-index: 6;
}

.c_promo-bg{
	position: relative;
	left: 50%;
	margin-left: -1000px;
}
@media screen and (min-width: 2001px) {
	.c_promo-bg{
		left: 0;
		margin-left: 0;
	}
	.c_promo-bg img{
		width: 100%;
	}
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_promo{
		min-width: 768px;
	}
	.c_promo-tit{
		height: 100px;
	}
	.c_promo-tit .tit_h2{
		font-size: 30px;
		line-height: 100px;
	}
	.c_promo-tit .tit_h2 .tit_ic{
		top: -30px;
		left: -120px;
	}
	.c_promo-tit .tit_h2 .tit_ic img{
		width: 90px;
	}
	
	.c_promo-bg{
		margin-left: -700px;
	}
	.c_promo-bg img{
		width: 1400px;
	}
}
@media print{
	.c_promo{
		min-width: 768px;
	}
	.c_promo-tit{
		height: 100px;
	}
	.c_promo-tit .tit_h2{
		font-size: 30px;
		line-height: 100px;
	}
	.c_promo-tit .tit_h2 .tit_ic{
		top: -30px;
		left: -120px;
	}
	.c_promo-tit .tit_h2 .tit_ic img{
		width: 90px;
	}
	
	.c_promo-bg{
		margin-left: -700px;
	}
	.c_promo-bg img{
		width: 1400px;
	}
}
@media screen and (max-width: 767px) {
	.c_promo{
		padding-top: 50px;
		min-width: 100%;
	}
	.c_promo-tit{
		height: 50px;
	}
	.c_promo-tit .tit_h2{
		font-size: 17px;
		line-height: 50px;
	}
	.c_promo-tit .tit_h2 .tit_ic{
		top: -16px;
		left: -50px;
	}
	.c_promo-tit .tit_h2 .tit_ic img{
		width: 40px;
	}
	
	.c_promo-bg{
		margin-left: -450px;
	}
	.c_promo-bg img{
		width: 900px;
	}
}


/*
 * smtel スマートフォン用ヘッダ電話番号 
 */
.c_promo-smtel{
	display: none;
}
@media screen and (max-width: 767px) {
	.c_promo-smtel{
		display: block;
		background-color: #fffee6;
		padding: 10px 4%;
		text-align: center;
		line-height: 1.2;
	}
	.c_promo-smtel .smtel_free{
		display: block;
		padding: 5px 0 15px 0;
		font-size: 20px;
	}
	.c_promo-smtel .smtel_free .free_ic{
		display: inline-block;
		padding-right: 10px;
	}
	.c_promo-smtel .smtel_free .free_ic img{
		position: relative;
		top: -2px;
		width: 22px;
	}
	
	.c_promo-smtel .smtel_contact{
		display: table;
		width: 100%;
		font-size: 14px;
	}
	.c_promo-smtel .smtel_contact .contact_tel{
		display: table-cell;
		width: 50%;
		vertical-align: middle;
	}
	.c_promo-smtel .smtel_contact .contact_fax{
		display: table-cell;
		width: 50%;
		vertical-align: middle;
	}
	.c_promo-smtel .smtel_contact .contact_tel .tel_mini,
	.c_promo-smtel .smtel_contact .contact_fax .fax_mini{
		display: inline-block;
		padding-right: 5px;
		font-size: 12px;
	}
}


/*
 * footer フッタ
 */
.c_footer01{
	display: table;
}
.c_footer01 .footer_left{
	display: table-cell;
	width: 390px;
	vertical-align: middle;
}
.c_footer01 .footer_right{
	display: table-cell;
	vertical-align: middle;
}

.c_footer01-txt01{
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.04em;
}
.c_footer01-txt01 span{
	font-size: 18px;
}

.c_footer01-link01{
	color: #60341f;
	text-decoration: underline;
}

.c_footer01-con01{
	display: table;
	width: 100%;
}
.c_footer01-con01 .con01_text{
	display: table-cell;
	background-color: #fffff7;
	padding: 10px 15px;
	width: 550px;
	font-size: 12px;
	vertical-align: middle;
}
.c_footer01-con01 .con01_bt{
	display: table-cell;
	padding-left: 30px;
	vertical-align: middle;
}

.c_footer01-txt02{
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
}
.c_footer01-txt02 img{
	position: relative;
	top: -2px;
	margin-right: 10px;
	width: 26px;
}

.c_footer01-bt{
	overflow: hidden;
	font-size: 0px;
}
.c_footer01-bt li{
	padding-bottom: 8px;
	margin: 0;
	font-size: 14px;
}
.c_footer01-bt li:last-child{
	padding-bottom: 0px;
}
.c_footer01-bt01{
	font-size: 14px;
}
.c_footer01-bt01 i{
	position: relative;
	top: 2px;
	left: -12px;
	font-size: 18px;
}

.c_footer01-bt02{
	display: block;
	background-color: #d16447;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	padding: 8px 5px;
	text-align: center;
	color: white;
}
.c_footer01-bt02 i{
	position: relative;
	top: 2px;
	left: -12px;
	font-size: 18px;
}


/* footer02 */
.c_footer01-link02{
	overflow: hidden;
	font-size: 0px;
	text-align: center;
}
.c_footer01-link02 li{
	display: inline-block;
	font-size: 13px;
	vertical-align: top;
}
.c_footer01-link02 li a{
	color: #60341f;
}
@media screen and (min-width: 768px) and (max-width: 1139px) {
	.c_footer01 .footer_left{
		width: 25%;
	}
	
	.c_footer01-txt01{
		font-size: 19px;
	}
	.c_footer01-txt01 span{
		font-size: 15px;
	}
	.c_footer01-con01 .con01_text{
		padding: 10px;
		width: 73%;
		font-size: 10px;
	}
	.c_footer01-con01 .con01_bt{
		padding-left: 20px;
	}
	
	.c_footer01-txt02{
		font-size: 13px;
	}
	.c_footer01-txt02 img{
		top: -1px;
		margin-right: 5px;
		width: 20px;
	}
	
	.c_footer01-bt li{
		font-size: 12px;
	}
	.c_footer01-bt01{
		font-size: 12px;
	}
	.c_footer01-bt01 i{
		font-size: 15px;
	}
	.c_footer01-bt02{
		font-size: 12px;
	}
	.c_footer01-bt02 i{
		font-size: 15px;
	}
	
	/* footer02 */
	.c_footer01-link02 li{
		font-size: 10px;
	}
}
@media print{
	.c_footer01 .footer_left{
		width: 25%;
	}
	
	.c_footer01-txt01{
		font-size: 19px;
	}
	.c_footer01-txt01 span{
		font-size: 15px;
	}
	.c_footer01-con01 .con01_text{
		padding: 10px;
		width: 73%;
		font-size: 10px;
	}
	.c_footer01-con01 .con01_bt{
		padding-left: 20px;
	}
	
	.c_footer01-txt02{
		font-size: 13px;
	}
	.c_footer01-txt02 img{
		top: -1px;
		margin-right: 5px;
		width: 20px;
	}
	
	.c_footer01-bt li{
		font-size: 12px;
	}
	.c_footer01-bt01{
		font-size: 12px;
	}
	.c_footer01-bt01 i{
		font-size: 15px;
	}
	.c_footer01-bt02{
		font-size: 12px;
	}
	.c_footer01-bt02 i{
		font-size: 15px;
	}
	
	/* footer02 */
	.c_footer01-link02 li{
		font-size: 10px;
	}
}
@media screen and (max-width: 767px) {
	.c_footer01{
		display: block;
	}
	.c_footer01 .footer_left{
		display: block;
		padding-bottom: 20px;
		width: auto;
	}
	.c_footer01 .footer_right{
		display: block;
	}
	
	.c_footer01-txt01{
		font-size: 18px;
	}
	.c_footer01-txt01 span{
		font-size: 14px;
	}
	
	.c_footer01-con01{
		display: block;
		width: auto;
	}
	.c_footer01-con01 .con01_text{
		display: block;
		padding: 10px;
		margin-bottom: 10px;
		width: auto;
		font-size: 14px;
	}
	.c_footer01-con01 .con01_bt{
		display: block;
		padding-left: 0px;
	}
	
	.c_footer01-txt02{
		font-size: 15px;
	}
	
	.c_footer01-txt02 img{
		width: 20px;
	}
	
	/* footer02 */
	.c_footer01-link02{
		border-top: #999999 solid 1px;
		padding-bottom: 120px;
	}
	.c_footer01-link02 li{
		display: inline-block;
		width: 50%;
	}
	.c_footer01-link02 li a{
		display: block;
		border-bottom: #999999 solid 1px;
		padding: 8px 0;
		font-size: 10px;
	}
	.c_footer01-link02 li:nth-child(2n) a{
		border-left: #999999 solid 1px;
	}
}
















