﻿

/*		Contents
---------------------------------------------------------------------------

	Reset Styles

------------------------------------------------------------------------ */


/* ========================================================================
	Reset Styles
======================================================================== */

/* HTML5 */
article, aside, figure, figcaption, video, footer, header,
main, nav, section, summary{
	display:block;
	margin:0;
}


/* Base Styles */
*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}

html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address, small,
ul, ol, li, dl, dt, dd,
table, th, td,
form, fieldset{
	margin:0;
	padding:0;
	font-weight:normal;
}

html{
	font-size:62.5%; /* 10px */
}

body{
	font-family:-apple-system, 'M PLUS Rounded 1c', sans-serif;
	font-size:1.7rem; /* 17px */
	color:#222222;
	line-height:2;
	letter-spacing:0.05em;
	-webkit-text-size-adjust:100%;
}

select,input,button,textarea{
	font-family:inherit;
	font-size:100%;
	color:#222222;
}

pre,code,kbd,samp{
	font-family:inherit;
}

img,
iframe{
	border:none;
	vertical-align:bottom;
}

table{
	width:100%;
	border:none;
	border-collapse:collapse;
	border-spacing:0;
}

label{
	cursor:pointer;
}

input{
	padding:0;
	vertical-align:middle;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea{
	width:100%;
	height:40px;
	margin:5px 0;
	padding:0 15px;
}

textarea{
	height:auto;
	padding:15px;
}

input[type="file"]{
	width:90%;
	margin:5px 0;
}

input[type="radio"],
input[type="checkbox"]{
	margin:0 0.5em 0 0;
	vertical-align:baseline;
	cursor:pointer;
}

button,
input[type="image"],
input[type="submit"],
input[type="button"]{
	margin:0; /* iPhone・iPad */
	padding:0;
	cursor:pointer;
	border-radius:0; /* iPhone・iPad 角丸解除 */
	-webkit-appearance:none; /* iPhone・iPad グラデーション解除 */
}

select,
select option,
select optgroup{
	padding:0 15px;
	font-style:normal;
	cursor:pointer;
	outline:none;
}

select{
	height:40px;
	margin:5px 0;
}

ol,ul{
	list-style:none;
}

h1,h2,h3,h4,h5,h6,small{
	font-size:100%;
}

address{
	font-style:normal;
} 

a,
input{
	outline:none;
}


/* Basic Text Link */
a{
	color:#6CDEDB; text-decoration:underline;
}
a:link{
	color:#6CDEDB; text-decoration:underline;
}
a:visited{
	color:#6CDEDB; text-decoration:underline;
}
a:hover{
	color:#6CDEDB; text-decoration:none;
}
a:focus{
	color:#6CDEDB; text-decoration:underline;
}
a:active{
	color:#6CDEDB; text-decoration:underline;
}


/* Common Styles */
img{
	max-width:100%;
	height:auto;
}

.clearfix::after{
	content:"";
	display:block;
	clear:both;
}