@charset "utf-8";
/* CSS Document */

/*****************
reset
*****************/
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}
ol, ul{
	list-style:none;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
	
.clearfix {
	min-height: 1px;
}
	
* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

body{
	background:#fff;
	font-family: 'Roboto', sans-serif;
}

#main{
	margin: auto;
	position: relative;
}

.header{
	height:54px;
}
.header_logo{
	margin-top:17px;
	margin-left:15px;
	width:125px;
}
.btn_back{
	display:none;
	position:absolute;
	top:10px;
	right:10px;
	width:91px;
	height: 34px;
	background-repeat: no-repeat;
	background-size:contain;
	background-image:url(../img/btn_back.png);
	cursor: pointer;
}
@media (max-width:768px){
	.btn_back{
		display:block;
	}
}
.btn_back:hover,
.btn_back:active{
	background-image:url(../img/btn_back_over.png);
}

.page{
	position: relative;
	width:100%;
	height:calc(100vh - 54px);
	overflow: hidden;
}
@media (max-width:768px) and (min-aspect-ratio:768/1023) and (orientation : portrait){
	.page{
		height:calc(100vh - 80px);
	}
}

.page_contents{
	width:100%;
	height: calc(100% - 70px);
	background-position:center;
	background-repeat: no-repeat;
	background-size: cover;
	color:#08107b;
}
@media (max-width:768px){
	.page_contents{
		height:calc(100% - 80px);
	}
}

@media (max-width:375px){
	.page_contents{
		height:calc(100% - 60px);
	}
}

.footer{
	position: absolute;
	background:#fff;
	bottom:0;
	width:100%;
	height:70px;
	z-index:1;
}
@media (max-width:768px){
	.footer{
		height:80px;
	}
}
@media (max-width:375px){
	.footer{
		height:60px;
	}
}

.category_list{
	margin:auto;
	width:100%;
	height: 100%;
	max-width: 900px;
}
.category_list li{
	float:left;
	cursor: pointer;
	text-align: center;
	width:20%;
	height:100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.category_list li.on{
	background:#e1e1e1;
}
.category_list li img{
	padding:5px 0;
}
.category_list li .title{
	font-size:14px;
	margin-top: -10px;
}
@media (max-width:375px){
	.category_list li .title{
		font-size:11px;
	}
}

.modal{
	position: absolute;
	top:50%;
	left:50%;
	z-index:10;
}

.btn_next{
	position:relative;
	cursor: pointer;
}
.btn_next .bg_btn_next{
	position:relative;
	float:right;
	right:15px;
	top:7px;
}

