@charset "UTF-8";


/***********************************
Padding
************************************/
.a10Wrap {
padding: 10px;
}

.h7Wrap{
padding:7px 0;
}
.s10Wrap {
padding: 0 10px;
}

.s5Wrap {
padding: 0 5px;
}
.p5Wrap{
	padding: 5px;
}

.y1{
padding-top:1px;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.y2{
padding-top:2px;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.y3{
padding-top:3px;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.y5{
padding-top:5px;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.y7{
padding-top:7px;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.y10{
padding-top:10px;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.y13{
padding-top:13px;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.y15{
padding-top:15px;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.y20{
padding-top:20px;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.y30{
padding-top:30px;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.y60{
padding-top:60px;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.border{
border-top:1px solid #fff;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.border-bold{
border-top:2px solid #ccc;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.border-dot{
border-top:1px dotted #ccc;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}

.notBorder-top{
border-top: none !important;
}

.notBorder-height{
border-top: none !important;
border-bottom: none !important;
}

/***********************************
float
************************************/
.float-left{
float:left;	
}
.float-right{
float:right;	
}
/***********************************
flex
************************************/
.flex{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -o-flex;
	display: flex;
    flex-wrap: wrap;
}
	
.flex-center{
	-webkit-align-items:  center;
	-ms-align-items: center;
	align-items: center;
}
.flex-space{
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
}
.flex-AllSpace{
	-webkit-justify-content: space-evenly;
	-ms-justify-content: space-evenly;
	justify-content: space-evenly;
}

.flex-alignC{
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}
.flex-alignR{
	-webkit-justify-content: flex-end;
	-ms-justify-content: flex-end;
	justify-content: flex-end;
}
.flex-margin{
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.flex-vertical{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.flex-i-res{
	-webkit-box-flex:1;
	-ms-flex:1;
	flex:1;
}
/***********************************
table
************************************/
.table{
	display: table;
	width: 100%;
}
	
.table-cell{
	display: table-cell;
	vertical-align: middle;
	height:100%;
}

/***********************************
Text
************************************/
.align-left{
text-align:left;
}
.align-right{
text-align:right;
}
.align-center{
text-align:center;
}
.bold{
font-weight:bold;
}
.normal{
font-weight:normal;

}
a.underline{
text-decoration:underline;
}
.red{
	color: #FF0004;
}
.text-combine{
	text-combine-upright: all;
	-webkit-text-combine: horizontal;
	-ms-text-combine-horizontal: all;
	letter-spacing: 0;
}
/***********************************
etc...
************************************/
.clear-box{
clear:both;
}
.clear{
clear:both;
font-size:0;
line-height:0;
letter-spacing:0;
word-spacing:0;
}
.textarea{
resize:none;
}
.relative {
position: relative;
}
.overflow-h{
overflow:hidden;
}
.middle{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-moz-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	width: 100%;
}
.disp-block{
display:block;
}

.pointer{
	cursor:pointer;
}

.none{
	display:none;
}

.block{
	display:block;
}
.inline-block{
	display: inline-block;
}
img.gapless{
	vertical-align: bottom;
}

strong{
	font-weight: bold;
}
.border-box{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

.not-radius{
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
