@charset "UTF-8";


body {
	-webkit-text-size-adjust: none;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	background-color: #fef8ef;
	max-width: 100%;
	color: #7a531b;
}
a{
	color: #7a531b;
	-webkit-tap-highlight-color: rgba(230, 195, 155, 0.5);
}
/* 色情報を見直す際にはdelete.cssの色調整用cssを書き換えること */

/* コンテンツを中央フッタ最下配置 */
/*
html, body, #wrap{
	height:100%;
	width: 100%;
}
#contents, #inner{
	min-height:100%;
	width: 100%;
	overflow: hidden;
}
#wrap{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-o-box-orient: vertical;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
}
#contents{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-o-box-orient: vertical;
	-webkit-box-pack:center;
	-moz-box-pack:center;
	-o-box-pack:center;
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-o-box-flex: 1;
}
*/

/* txt */
.txt{
	font-size: 14px;
	margin: 1em 0.75em;
	line-height: 1.2em;
	word-break: break-all;
}
.txt.indent{
	text-indent: 1em;
}
.txt_center{
	text-align: center;
}
.txt_left{
	text-align: left;
}
.txt_right{
	text-align: right;
}
.txt_bottom{
	line-height: 1em;
	vertical-align: bottom;
}
.txt_top{
	line-height: 1em;
	vertical-align: top;
}
.txt_middle{
	line-height: 1em;
	vertical-align: middle;
}
.txt_size_min{
	font-size: 12px;
	line-height: 1.2em;
}
.txt_size{
	font-size: 14px;
}
.txt_size_large{
	font-size: 18px;
	line-height: 1em;
}

/* txt内リンク */
.text_link{
	padding: 0.25em;
	line-height: 2em;
}
.text_link.indent{
	padding-left: 0;
}

/* clearfix */
.clearfix {
	zoom:1;
}
.clearfix:after{
	content: "";
	display: block;
	clear: both;
}

/* １行丸め込み */
/* ブロック要素に使うこと */
.rdstr{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* float */
.box_left{
	float:left;
}
.box_right{
	float:right;
}

/* tab */
.tab4{
}
.tab4 > *{
	width: 25%
}

/* ボックスレイアウト */
.box_list{
	display: -webkit-box;
	display: -moz-box;
	display: -o-box;
	-webkit-box-align: center;
	-moz-box-align: center;
	-o-box-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	width: 100%;

	/* IE対応 */
	display:-ms-flexbox;
	-ms-flex-pack:center;
	-ms-flex-align:center;
	-ms-box-sizing: border-box;

}
.align_start{
	-webkit-box-align: start;
	-moz-box-align: start;
	-o-box-align: start;
}
.align_end{
	-webkit-box-align: end;
	-moz-box-align: end;
	-o-box-align: end;
}
.box_list_main{
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-o-box-flex: 1;
	/* IE対応 */
	-ms-flex:1;
}

.box_horizon {
	display: -webkit-box;
	display: -moz-box;
	display: box;
	width: 100%;
	/* IE対応 */
	display:-ms-flexbox;
}
.box_horizon > * {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	box-flex: 1;
	/* IE対応 */
	-ms-flex:1;
}

/* border-radius */
.all_radius{
	border-radius: 5px;
}
.top_radius{
	border-radius: 5px 5px 0 0;
}
.bottom_radius{
	border-radius: 0 0 5px 5px;
}

/* スペーサー */
.half_space{
	height: 0.5em;
	display: block;
}
.space{
	height: 1em;
	display: block;
}
.double_space{
	height: 2em;
	display: block;
}

/* 非表示 */
.hide{
	display: none;
}
.block{
	display: block;
}
.hidden{
	opacity: 0;
}

/* arrowとか */
.arrow{
	display: block;
	height: 7px;
	width: 7px;
	border-top: solid 2px;
	border-right: solid 2px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform : rotate(45deg);
	/* IE対応 */
	-ms-transform: rotate(45deg);
	color:#e4bb88;
}
.arrow.left{
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform : rotate(-135deg);
}
.accordion_btn .arrow {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform : rotate(135deg);
}
.triangle{
	display: block;
	height: 0px;
	width: 0px;
	border-bottom: solid 5px;
	border-left: solid 4px rgba(255,255,255,0);
	border-right: solid 4px rgba(255,255,255,0);
	overflow: hidden;
	text-indent: 100%;
}
.triangle.bottom{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform : rotate(180deg);
}
.badge{
	display: block;
	padding: 0.12em 0.34em;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.8)), color-stop(0.50, rgba(255,255,255,0)), to(rgba(255,255,255,0)));
	background: -moz-linear-gradient(top,rgba(255,255,255,0.8), rgba(255,255,255,0) 50%, rgba(255,255,255,0));
	background: -o-linear-gradient(top,rgba(255,255,255,0.8), rgba(255,255,255,0) 50%, rgba(255,255,255,0));
	background-color: #F11E26;
	border-radius: 1em;
	border: 2px solid #FFFFFF;
	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
	-o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
	line-height: 1em;
	font-weight: bold;
	color: #FFFFFF;
}
.balloon{
	position: relative;
}
.balloon:before, .balloon:after{
	position: absolute;
	content: "";
	width: 0;
	height: 0;
}
.balloon:before{
	border-bottom: 6px solid #E4DFD6;
	border-left: 6px solid rgba(255, 255, 255, 0);
	border-right: 6px solid rgba(255, 255, 255, 0);
}
.balloon:after{
	border-bottom: 5px solid #ffffff;
	border-left: 5px solid rgba(255, 255, 255, 0);
	border-right: 5px solid rgba(255, 255, 255, 0);
	margin-left: 1px;
	margin-top: 1px;
}
.mail{
	background-color: #505050;
	box-shadow: 0 1px 1px rgba(255, 255, 255, 0.6) inset;
	display: block;
	height: 19px;
	width: 25px;
	overflow: hidden;
	position: relative;
}
.mail:after{
	border: 4px solid #505050;
	border-radius: 4px 4px 4px 4px;
	content: "";
	display: block;
	height: 15px;
	left: -2px;
	position: absolute;
	top: -2px;
	width: 21px;
}
.mail_inner{
	background-color: #F3F3F3;
	border-radius: 2px 2px 2px 2px;
	border-top: 1px solid #FCFCFC;
	display: block;
	height: 15px;
	margin: 2px;
	width: 21px;
	position: relative;
}
.mail_inner:before, .mail_inner:after{
	border: 2px solid #505050;
	content: "";
	display: block;
	height: 25px;
	position: absolute;
	width: 25px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform : rotate(45deg);
	left: -4px;
}
.mail_inner:after{
	background-color: #F3F3F3;
	top: -23px;
	border-radius: 2px 2px 2px 2px;
}
.mail_inner:before{
	bottom: -23px;
}
