/* index

	style.css

	- body
	- iOS
	- font
	
----------------------------------------------- */

@import url("reset.css");
@import url("html5reset-1.6.1.css");
@import url("font.css");
@import url("pc.css") screen and (min-width: 747px);
@import url("sp.css") screen and (max-width: 746px);
@import url("pc.css") print;


/* body
----------------------------------------------- */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-family: 'Open Sans','Noto Sans JP', sans-serif;
	color: #000;
	background: #00a2e0 url(../../assets/images/bg.webp) no-repeat center bottom;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	font-feature-settings: "palt";
	letter-spacing: 0.02em;
}

ul,
ol {
	list-style: none;	
}

img {
	border: 0;
	vertical-align: bottom;
}


::selection {
	color: #fff;
	background: #0fa63c;
}

::-moz-selection {
	color: #fff;
	background: #0fa63c;
}


/* iOS
----------------------------------------------- */
*:after {
	display: block;
	clear: both;
}

html {
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}


/* font
----------------------------------------------- */
h2 {
	font-size: 2em;
	line-height: 1.5;
	font-weight: bold;
}

h3 {
	font-size: 2.2em;
	line-height: 1.5;
	font-weight: bold;
}

h4,
h5 {
	font-size: 1.4em;
	line-height: 1.5;
	font-weight: bold;
}

h6 {
	font-size: 1.2em;
	line-height: 1.5;
	font-weight: bold;
}

p,
ul,
ol,
dl,
table,
address {
	font-size: 1em;
	line-height: 1.5;
	font-weight: normal;
}

big {
	font-size: 1.2em;
	line-height: 1.5;
	font-weight: normal;
}

small {
	font-size: 0.8em;
	line-height: 1.5;
	font-weight: normal;
}

strong {
	font-weight: bold;
	margin: 0;
	padding: 0;
}

em {
	font-weight: bold;
	font-style: normal;
	color: #dd0000;
}

a:link,
a:visited {
	color: #0fa63c;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover,
a:active {
	opacity: 0.6;
}
