@charset "utf-8";
/************************************************************************************************************************************
	全ページ共通パーツ的レイアウトのクラスによる適用
************************************************************************************************************************************/
.inner_box {
	-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;
	width: 100%;
	max-width: 961px;
	margin-left: auto;
	margin-right: auto;
}

.box_inner {
	-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;
	padding: 0 36px 0 32px;
}


@media screen and (max-width: 767px) {
	.inner_box {
		width: 100%;
		width: calc(100% - 15px);
		max-width: auto;
		max-width: inherit;
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.box_inner {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
}




/** common_ttl *****************************************************************/
.common_ttl {
	background-image: -moz-linear-gradient( 90deg, rgb(160,95,2) 0%, rgb(211,143,3) 99%);
  background-image: -webkit-linear-gradient( 90deg, rgb(160,95,2) 0%, rgb(211,143,3) 99%);
  background-image: -ms-linear-gradient( 90deg, rgb(160,95,2) 0%, rgb(211,143,3) 99%);
  box-shadow: 0px 0px 3px 0px rgba(253, 243, 161, 0.004);
	margin-bottom: 25px !important;
}
.common_ttl .inner {
	-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;
	width: 100%;
	max-width: 981px;
	margin-left: auto;
	margin-right: auto;
	background-image: -moz-linear-gradient( 90deg, rgb(160,95,2) 0%, rgb(211,143,3) 99%);
  background-image: -webkit-linear-gradient( 90deg, rgb(160,95,2) 0%, rgb(211,143,3) 99%);
  background-image: -ms-linear-gradient( 90deg, rgb(160,95,2) 0%, rgb(211,143,3) 99%);
  box-shadow: 0px 0px 3px 0px rgba(253, 243, 161, 0.004);
}


@media screen and (max-width: 767px) {
	.common_ttl .inner {
		width: calc(100% - 15px);
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
}




/** common_ttl02 *****************************************************************/
.common_ttl02 {
	color: #6b3314;
	font-size: 24px;
	font-weight: 400;
	vertical-align: middle;
	padding-left: 5px;
	margin: 9px 0 10px;
	margin-top: 40px;
	border-bottom: solid 4px #e7d8bb;
}


@media screen and (max-width: 767px) {
	.common_ttl02 {
		font-size: 17px;
	}
}




/** common_ttl03 *****************************************************************/
.common_ttl03 {
	color: #8c592c;
	font-size: 26px;
	font-weight: 600;
}


@media screen and (max-width: 767px) {
	.common_ttl03 {
		font-size: 17px;
	}
}




/** Googleマップ埋め込みタグをレスポンシブ対応にする *****************************************************************/
#googlemap {
	position: relative;
	padding-bottom: 280px;
	max-width: 100%;
	height: 0;
	margin: 0 auto;
}
#googlemap iframe {
	position: absolute;
	left: 0;
	width: 100%;
	height: 280px;
}


@media screen and (max-width: 767px) {
	#googlemap {
		width: 90%;
		padding-bottom: 380px;
	}
	#googlemap iframe {
		position: static;
		height: 380px;
	}
}
@media print, screen and (max-width: 330px) {
	#googlemap {
		padding-bottom: 360px;
		margin: 0 auto;
	}
	#googlemap iframe {
		height: 360px;
	}
}
@media print, screen and (max-width: 800px) and (orientation:landscape) {
	#googlemap {
		padding-bottom: 200px;
	}
	#googlemap iframe {
		height: 200px;
	}
}




/* Youtube埋め込みタグをレスポンシブル対応にする */
.youtube-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}
.youtube-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 767px) {

}




/************************************************************************************************************************************
	ディスプレイ系
************************************************************************************************************************************/
/** flex *****************************************************************/
.flex {
	display:-webkit-box;
	display:-webkit-flex;
	display: flex;
	/* 以下初期値 **************************************/
	/* 行制御　自動改行 */
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	/* 表示方向　昇順 */
	-webkit-flex-direction: row;
	flex-direction: row;
}
/* 行制御　flex-wrap
 **************************************/
/* 改行なし */
.wrap-nowrap {
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
/* 自動改行 */
.wrap-wrap {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
/* 自動改行＋行方向の逆方向へ折り返し */
.wrap-reverse {
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
}
/* 表示方向　flex-direction
 **************************************/
/* 昇順 */
.direction-row {
	-webkit-flex-direction: row;
	flex-direction: row;
}
/* 降順 */
.direction-row-reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
/* 文字方向準 */
.direction-column {
	-webkit-flex-direction: column;
	flex-direction: column;
}
/* 文字方弱向準 */
.direction-column-reverse {
	-webkit-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
/* 横位置　justify-content
 **************************************/
/* 左寄せ */
.justify-fstart {
	-webkit-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}
/* 右寄せ */
.justify-fend {
	-webkit-box-pack: flex-end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
/* 中央寄せ */
.justify-center {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
/* 両端均等配置 */
.justify-between {
	-webkit-box-pack: space-between;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
/* 中央均等配置 */
.justify-around {
	-webkit-box-pack: space-around;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
/* 縦位置　align-items
 **************************************/
/* 上揃え */
.align-fstart {
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
/* 下揃え */
.align-fend {
	-webkit-box-align: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
/* 中央寄せ */
.align-center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}
/* 最初のflexアイテムのbaseline揃え */
.align-baseline {
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	align-items: baseline;
}
/* コンテナの高さにflexアイテムが揃う */
.align-stretch {
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	align-items: stretch;
}


@media print, screen and (min-width: 768px) {
	.pc-flex {
		display:-webkit-box;
		display:-webkit-flex;
		display: flex;
		/* 以下初期値 **************************************/
		/* 行制御　自動改行 */
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/* 表示方向　昇順 */
		-webkit-flex-direction: row;
		flex-direction: row;
	}
	/* 行制御　flex-wrap
	 **************************************/
	/* 改行なし */
	.pc-wrap-nowrap {
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	/* 自動改行 */
	.pc-wrap-wrap {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	/* 自動改行＋行方向の逆方向へ折り返し */
	.pc-wrap-reverse {
		-webkit-flex-wrap: wrap-reverse;
		flex-wrap: wrap-reverse;
	}
	/* 表示方向　flex-direction
	 **************************************/
	/* 昇順 */
	.pc-direction-row {
		-webkit-flex-direction: row;
		flex-direction: row;
	}
	/* 降順 */
	.pc-direction-row-reverse {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	/* 文字方向準 */
	.pc-direction-column {
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	/* 文字方弱向準 */
	.pc-direction-column-reverse {
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	/* 横位置　justify-content
	 **************************************/
	/* 左寄せ */
	.pc-justify-fstart {
		-webkit-box-pack: flex-start;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
	}
	/* 右寄せ */
	.pc-justify-fend {
		-webkit-box-pack: flex-end;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	/* 中央寄せ */
	.pc-justify-center {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
	}
	/* 両端均等配置 */
	.pc-justify-between {
		-webkit-box-pack: space-between;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	/* 中央均等配置 */
	.pc-justify-around {
		-webkit-box-pack: space-around;
		-webkit-justify-content: space-around;
		justify-content: space-around;
	}
	/* 縦位置　align-items
	 **************************************/
	/* 上揃え */
	.pc-align-fstart {
		-webkit-box-align: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
	}
	/* 下揃え */
	.pc-align-fend {
		-webkit-box-align: flex-end;
		-webkit-align-items: flex-end;
		align-items: flex-end;
	}
	/* 中央寄せ */
	.pc-align-center {
		-webkit-box-align: center;
		-webkit-align-items: center;
		align-items: center;
	}
	/* 最初のflexアイテムのbaseline揃え */
	.pc-align-baseline {
		-webkit-box-align: baseline;
		-webkit-align-items: baseline;
		align-items: baseline;
	}
	/* コンテナの高さにflexアイテムが揃う */
	.pc-align-stretch {
		-webkit-box-align: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
	}
}


@media screen and (max-width: 767px) {
	.sp-flex {
		display:-webkit-box;
		display:-webkit-flex;
		display: flex;
		/* 以下初期値 **************************************/
		/* 行制御　自動改行 */
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		/* 表示方向　昇順 */
		-webkit-flex-direction: row;
		flex-direction: row;
	}
	/* 行制御　flex-wrap
	 **************************************/
	/* 改行なし */
	.sp-wrap-nowrap {
		-webkit-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	/* 自動改行 */
	.sp-wrap-wrap {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	/* 自動改行＋行方向の逆方向へ折り返し */
	.sp-wrap-reverse {
		-webkit-flex-wrap: wrap-reverse;
		flex-wrap: wrap-reverse;
	}
	/* 表示方向　flex-direction
	 **************************************/
	/* 昇順 */
	.sp-direction-row {
		-webkit-flex-direction: row;
		flex-direction: row;
	}
	/* 降順 */
	.sp-direction-row-reverse {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	/* 文字方向準 */
	.sp-direction-column {
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	/* 文字方弱向準 */
	.sp-direction-column-reverse {
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	/* 横位置　justify-content
	 **************************************/
	/* 左寄せ */
	.sp-justify-fstart {
		-webkit-box-pack: flex-start;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
	}
	/* 右寄せ */
	.sp-justify-fend {
		-webkit-box-pack: flex-end;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	/* 中央寄せ */
	.sp-justify-center {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
	}
	/* 両端均等配置 */
	.sp-justify-between {
		-webkit-box-pack: space-between;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	/* 中央均等配置 */
	.sp-justify-around {
		-webkit-box-pack: space-around;
		-webkit-justify-content: space-around;
		justify-content: space-around;
	}
	/* 縦位置　align-items
	 **************************************/
	/* 上揃え */
	.sp-align-fstart {
		-webkit-box-align: flex-start;
		-webkit-align-items: flex-start;
		align-items: flex-start;
	}
	/* 下揃え */
	.sp-align-fend {
		-webkit-box-align: flex-end;
		-webkit-align-items: flex-end;
		align-items: flex-end;
	}
	/* 中央寄せ */
	.sp-align-center {
		-webkit-box-align: center;
		-webkit-align-items: center;
		align-items: center;
	}
	/* 最初のflexアイテムのbaseline揃え */
	.sp-align-baseline {
		-webkit-box-align: baseline;
		-webkit-align-items: baseline;
		align-items: baseline;
	}
	/* コンテナの高さにflexアイテムが揃う */
	.sp-align-stretch {
		-webkit-box-align: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
	}
}




/** displayの強制指定 *****************************************************************/
.tb-show {
	display: none !important;
}
br.tb-show {
	display: none !important;
}
span.tb-show {
	display: none !important;
}
.sp-show {
	display: none !important;
}
br.sp-show {
	display: none !important;
}
span.sp-show {
	display: none !important;
}
.sp_min-show {
	display: none !important;
}
br.sp_min-show {
	display: none !important;
}
span.sp_min-show {
	display: none !important;
}

@media print, screen and (max-width: 1024px) {
	.tb-hide {
		display: none !important;
	}
	.tb-show {
		display: block !important;
	}
	br.tb-show {
		display: inline !important;
	}
	span.tb-show {
		display: inline !important;
	}
}

@media screen and (max-width: 767px) {
	.sp-hide,
	br.sp-hide {
		display: none !important;
	}
	.sp-show {
		display: block !important;
	}
	br.sp-show {
		display: inline !important;
	}
	span.sp-show {
		display: inline !important;
	}
}

@media print, screen and (max-width: 360px) {
	.sp_min-hide,
	br.sp_min-hide {
		display: none !important;
	}
	.sp_min-show {
		display: block !important;
	}
	br.sp_min-show {
		display: inline !important;
	}
	span.sp_min-show {
		display: inline !important;
	}
}






/** margin-bottomの強制指定 5px単位/最大60pxまで *****************************************************************/
.mg-b-05 { margin-bottom:  5px !important; }
.mg-b-10 { margin-bottom: 10px !important; }
.mg-b-15 { margin-bottom: 15px !important; }
.mg-b-20 { margin-bottom: 20px !important; }
.mg-b-25 { margin-bottom: 25px !important; }
.mg-b-30 { margin-bottom: 30px !important; }
.mg-b-35 { margin-bottom: 35px !important; }
.mg-b-40 { margin-bottom: 40px !important; }
.mg-b-45 { margin-bottom: 45px !important; }
.mg-b-50 { margin-bottom: 50px !important; }
.mg-b-55 { margin-bottom: 55px !important; }
.mg-b-60 { margin-bottom: 60px !important; }
@media print, screen and (min-width: 768px) {
	.mg-b-05-pc { margin-bottom:  5px !important; }
	.mg-b-10-pc { margin-bottom: 10px !important; }
	.mg-b-15-pc { margin-bottom: 15px !important; }
	.mg-b-20-pc { margin-bottom: 20px !important; }
	.mg-b-25-pc { margin-bottom: 25px !important; }
	.mg-b-30-pc { margin-bottom: 30px !important; }
	.mg-b-35-pc { margin-bottom: 35px !important; }
	.mg-b-40-pc { margin-bottom: 40px !important; }
	.mg-b-45-pc { margin-bottom: 45px !important; }
	.mg-b-50-pc { margin-bottom: 50px !important; }
	.mg-b-55-pc { margin-bottom: 55px !important; }
	.mg-b-60-pc { margin-bottom: 60px !important; }
}
@media screen and (max-width: 767px) {
	.mg-b-05-sp { margin-bottom:  5px !important; }
	.mg-b-10-sp { margin-bottom: 10px !important; }
	.mg-b-15-sp { margin-bottom: 15px !important; }
	.mg-b-20-sp { margin-bottom: 20px !important; }
	.mg-b-25-sp { margin-bottom: 25px !important; }
	.mg-b-30-sp { margin-bottom: 30px !important; }
	.mg-b-35-sp { margin-bottom: 35px !important; }
	.mg-b-40-sp { margin-bottom: 40px !important; }
	.mg-b-45-sp { margin-bottom: 45px !important; }
	.mg-b-50-sp { margin-bottom: 50px !important; }
	.mg-b-55-sp { margin-bottom: 55px !important; }
	.mg-b-60-sp { margin-bottom: 60px !important; }
}
/** padding-bottomの強制指定 5px単位/最大60pxまで *****************************************************************/
.pd-b-05 { padding-bottom:  5px !important; }
.pd-b-10 { padding-bottom: 10px !important; }
.pd-b-15 { padding-bottom: 15px !important; }
.pd-b-20 { padding-bottom: 20px !important; }
.pd-b-25 { padding-bottom: 25px !important; }
.pd-b-30 { padding-bottom: 30px !important; }
.pd-b-35 { padding-bottom: 35px !important; }
.pd-b-40 { padding-bottom: 40px !important; }
.pd-b-45 { padding-bottom: 45px !important; }
.pd-b-50 { padding-bottom: 50px !important; }
.pd-b-55 { padding-bottom: 55px !important; }
.pd-b-60 { padding-bottom: 60px !important; }
@media print, screen and (min-width: 768px) {
	.pd-b-05-pc { padding-bottom:  5px !important; }
	.pd-b-10-pc { padding-bottom: 10px !important; }
	.pd-b-15-pc { padding-bottom: 15px !important; }
	.pd-b-20-pc { padding-bottom: 20px !important; }
	.pd-b-25-pc { padding-bottom: 25px !important; }
	.pd-b-30-pc { padding-bottom: 30px !important; }
	.pd-b-35-pc { padding-bottom: 35px !important; }
	.pd-b-40-pc { padding-bottom: 40px !important; }
	.pd-b-45-pc { padding-bottom: 45px !important; }
	.pd-b-50-pc { padding-bottom: 50px !important; }
	.pd-b-55-pc { padding-bottom: 55px !important; }
	.pd-b-60-pc { padding-bottom: 60px !important; }
}
@media screen and (max-width: 767px) {
	.pd-b-05-sp { padding-bottom:  5px !important; }
	.pd-b-10-sp { padding-bottom: 10px !important; }
	.pd-b-15-sp { padding-bottom: 15px !important; }
	.pd-b-20-sp { padding-bottom: 20px !important; }
	.pd-b-25-sp { padding-bottom: 25px !important; }
	.pd-b-30-sp { padding-bottom: 30px !important; }
	.pd-b-35-sp { padding-bottom: 35px !important; }
	.pd-b-40-sp { padding-bottom: 40px !important; }
	.pd-b-45-sp { padding-bottom: 45px !important; }
	.pd-b-50-sp { padding-bottom: 50px !important; }
	.pd-b-55-sp { padding-bottom: 55px !important; }
	.pd-b-60-sp { padding-bottom: 60px !important; }
}
