﻿@charset "UTF-8";
/*
* 2017 BOSO-Computer
* Global Reset CSS
*/

*,*:BEFORE,*:AFTER{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 16px;
	color: #333333;
}
html,body{
	height: 100%;
	width: 100%;
	display: block;
}
html {line-height: 1.5;}
body{
	min-height: 100%;
	min-width: 100%;
}
div,p,dl,dt,dd,ol,ul,li,h1,h2,h3,h4,h5,h6,main,article,aside,header,footer,section,nav{
	display: block;
	word-break :break-all;
}
a {text-decoration: none;}
ul,ol {list-style: none;}
img{
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}
/***** 画面サイズ768px以上の指定 *****/
@media screen and (min-width:768px){
	html{
		font-size: 17px;
	}
}
/***** 画面サイズ960px以上の指定 *****/
@media screen and (min-width:960px){
	html{
		font-size: 18px;
	}
}