@charset "utf-8";

/*		Contents
---------------------------------------------------------------------------

	Reset Styles

------------------------------------------------------------------------ */


/* ========================================================================
	Reset Styles
======================================================================== */

/* font */
.font_roboto{
	font-family:"Roboto", serif;
	font-weight:700;
	font-style:normal;
}

.font_roboto-medium{
	font-family:"Roboto", serif;
	font-weight:500;
	font-style:normal;
}

.font_roboto-black{
	font-family:"Roboto", serif;
	font-weight:900;
	font-style:normal;
}


/* 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, 'Noto Sans JP', '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
	font-size:1.8rem; /* 18px */
	color:#333333;
	line-height:1.5;
	letter-spacing:normal;
	-webkit-text-size-adjust:100%;
}

select,input,button,textarea{
	font-family:inherit;
	font-size:100%;
	color:#333333;
}

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{
	display:inline-block;
	margin:0 2.0em 0 0;
	cursor:pointer;
	line-height:4.8rem;
}
label:last-of-type{ margin:0; }

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:48px;
	padding:0 10px;
	vertical-align:baseline;
	/* -webkit-appearance:none; */
}

textarea{
	width:100%;
	height:auto;
	padding:10px;
}

input[type="file"]{
	width:90%; /* iPhone・iPad */
}

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;
	background:none;
	border:none;
	cursor:pointer;
	-webkit-appearance:none; /* iPhone・iPad グラデーション解除 */
}

select,
select option,
select optgroup{
	padding:0 10px;
	font-style:normal;
	cursor:pointer;
	outline:none;
}

select{
	height:48px;
}

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:#333333; text-decoration:underline; transition-duration:0.2s;
}
a:link{
	color:#333333; text-decoration:underline;
}
a:visited{
	color:#333333; text-decoration:underline;
}
a:hover{
	color:#333333; text-decoration:none;
}
a:focus{
	color:#333333; text-decoration:underline;
}
a:active{
	color:#333333; text-decoration:underline;
}


/* Common Styles */
img{
	max-width:100%;
	height:auto;
}

.clearfix::after{
	content:"";
	display:block;
	clear:both;
}

.center{
	text-align:center;
}

.flex{
	display:flex;
}