@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

html{
//	overflow: auto;
}

body{
//	overflow: hidden;
//	min-width: 1250px;
	background: #111111;
}

body,
table,
input,textarea,select,option{
	font-family: "Shippori Mincho B1", serif;
	color: #ffffff;
}

.yuji{
	font-family: "Yuji Syuku", serif;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clear{
	clear: both;
}

.clearfix:after{
	content: "";
	clear: both;
	display: block;
}

.f-left{
	float: left;
}

.f-right{
	float: right;
}

a{
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

p{
}

ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.rel{
	position: relative;
}

.v-center {
	display: table;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex.flexstart{
	align-items: flex-start;
}

.flex.flexcenter{
	align-items: center;
}

.flex.flexend{
	align-items: flex-end;
}

.flex.jc-start{
	justify-content: flex-start;
}

.flex.jc-center{
	justify-content: center;
}

.flex.jc-end{
	justify-content: flex-end;
}

.flex.reverse{
	flex-direction: row-reverse;
}

.table-box{
    border-collapse: collapse;
	display: table;
	width: 100%;
}

.table-box .row{
	display: table-row;
}

.table-box .row > div{
	display: table-cell;
}

.trance{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.shadow{
//	-moz-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-ms-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-o-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	-webkit-filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
//	filter: drop-shadow(10px 10px 6px rgba(0,0,0,0.1));
	box-shadow: 3px 3px 6px rgba(0,0,0,0.1);
}

.mt10{margin-top: 10px;}
.mt15{margin-top: 15px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}
.mt70{margin-top: 70px;}
.mt80{margin-top: 80px;}
.mt90{margin-top: 90px;}
.mt100{margin-top: 100px;}

.txt-center{
	text-align: center;
}

.blo-center{
	display: table;
	margin-left: auto;
	margin-right: auto;
}

.pc{display:block;}
.sp{display:none;}

.outer{
	margin: 0 auto;
	max-width: 1366px;
}

.inner{
	margin: 0 auto;
	max-width: 1000px;
	width: 90%;
}

/*------------------------------------------------------------
	レスポンシブ
------------------------------------------------------------*/
@media all and (min-width: 0) and (max-width: 767px){
	.pc{display:none;}
	.sp{display:block;}

	body{
		min-width: auto;
	}
	
	.sp-mt10{margin-top: 10px;}
	.sp-mt15{margin-top: 15px;}
	.sp-mt20{margin-top: 20px;}
	.sp-mt30{margin-top: 30px;}
	.sp-mt40{margin-top: 40px;}
	.sp-mt50{margin-top: 50px;}
	.sp-mt60{margin-top: 60px;}
	.sp-mt70{margin-top: 70px;}
	.sp-mt80{margin-top: 80px;}
	.sp-mt90{margin-top: 90px;}
	.sp-mt100{margin-top: 100px;}

	
}