@charset "utf-8";



.one_line {
	line-height: 1em;
}

:before, :after {
	line-height: 1em;
}

/*---------------------------------------------------------------------- general --*/

.frame, .frame_2, .frame_3, .frame_4, .clear, .clear_f, .wrap {
	margin: 0 auto;
}

.clear:after, .left:after, .right:after, .clear_f:after, .wrap:after {
	display: block;
	content: "";
	clear: both;
}

/*----------------------------------------> 汎用 --*/

.centering {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}




/*---------------------------------------------------------------------- display --*/

.none {
   display: none!important;
}

.flex {
	display: flex;
}

.flex_wrap {
	display: flex;
	flex-wrap: wrap;
}

/*---------------------------------------------------------------------- float --*/

.f_left {
	float: left;
}

.f_right {
	float: right;
}

/*---------------------------------------------------------------------- text-align --*/

.t_left {
	text-align: left!important;
}

.t_center {
	text-align: center!important;
}

.t_right {
	text-align: right!important;
}

/*---------------------------------------------------------------------- position --*/

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}

/*---------------------------------------------------------------------- margin --*/

.mt_50 {
	margin-top: 50px;
}

.mb_50 {
	margin-bottom: 50px;
}

/*---------------------------------------------------------------------- padding --*/




.t_shadow_0 {
   text-shadow: 0 0 3px #000;
}

.t_shadow_3 {
   text-shadow: 0 0 3px #333;
}

.t_shadow_6 {
   text-shadow: 0 0 3px #666;
}


.bg_f0 {
	background: #f0f0f0 !important;
}

.bg_f3 {
	background: #f3f3f3 !important;
}

.bg_f6 {
	background: #f6f6f6 !important;
}

.bg_f9 {
	background: #f9f9f9 !important;
}

.bg_fa {
	background: #fafafa !important;
}

.bg_fc {
	background: #fcfcfc !important;
}

.bg_fff {
	background: #ffffff !important;
}

/*---------------------------------------------------------------------- background_clear --*/

.clear_000_10 {
	background: rgba(0, 0, 0, 0.1);
}

.clear_000_15 {
	background: rgba(0, 0, 0, 0.15);
}

.clear_000_20 {
	background: rgba(0, 0, 0, 0.2);
}

.clear_000_25 {
	background: rgba(0, 0, 0, 0.25);
}

.clear_000_30 {
	background: rgba(0, 0, 0, 0.3);
}

.clear_fff_10 {
	background: rgba(255, 255, 255, 0.1);
}

.clear_fff_15 {
	background: rgba(255, 255, 255, 0.15);
}

.clear_fff_20 {
	background: rgba(255, 255, 255, 0.2);
}

.clear_fff_25 {
	background: rgba(255, 255, 255, 0.25);
}

.clear_fff_30 {
	background: rgba(255, 255, 255, 0.3);
}

.ellipsis {
   width: inherit;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

/*---------------------------------------------------------------------- .blur --*/

.blur {
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.blur:before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	background: inherit;
	filter: blur(5px);
	z-index: -1;
}