@charset "utf-8";

/*		Contents
---------------------------------------------------------------------------

	Reset Styles

------------------------------------------------------------------------ */


/* ========================================================================
	Reset Styles
======================================================================== */

/* font-face */
@font-face{
	font-family:"NotoSansJP";
	font-display:swap;
	font-style:normal;
    font-weight:400;
	src:local('Noto Sans JP Regular'), url('../font/NotoSansJP-Regular.woff') format('woff'), url('../font/NotoSansJP-Regular.otf') format('opentype');
}
@font-face{
	font-family:"NotoSansJP";
	font-display:swap;
	font-style:normal;
	font-weight:500;
	src:local('Noto Sans JP Medium'), url('../font/NotoSansJP-Medium.woff') format('woff'), url('../font/NotoSansJP-Medium.otf') format('opentype');
}
@font-face{
	font-family:"NotoSansJP";
	font-display:swap;
    font-style:normal;
    font-weight:700;
	src:local('Noto Sans JP Bold'), url('../font/NotoSansJP-Bold.woff') format('woff'), url('../font/NotoSansJP-Bold.otf') format('opentype');
}


/* 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:"NotoSansJP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size:1.4rem; /* 14px */
	color:#171717;
	line-height:2;
	letter-spacing:0.1em;
	-webkit-text-size-adjust:100%;
}

select,input,button,textarea{
	font-family:inherit;
	font-size:100%;
	color:#171717;
}

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;
	font-size:inherit;
}

label{
	display:inline-block;
	margin:0 40px 0 0;
	line-height:40px;
	cursor:pointer;
}
label:last-of-type{ margin:0; }

@media screen and (max-width:767px){
label{
	margin-right:30px;
	line-height:30px;
}
}

input,
textarea{
	padding:0;
	vertical-align:middle;
}

input::placeholder{
	text-align:right;
	font-size:1.3rem;
	color:#c4c4c4;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea{
	width:100%;
	height:40px;
	margin:0;
	padding:0 15px;
	border:2px solid #fdce52;
	border-radius:0;
	-webkit-appearance:none;
}

textarea{
	height:auto;
	padding:10px 15px;
}

input[type="radio"],
input[type="checkbox"]{
	margin:0 10px 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 10px;
	font-style:normal;
	cursor:pointer;
	outline:none;
}

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:#171717; text-decoration:underline;
}
a:link{
	color:#171717; text-decoration:underline;
}
a:visited{
	color:#171717; text-decoration:underline;
}
a:hover{
	color:#171717; text-decoration:none;
}
a:focus{
	color:#171717; text-decoration:underline;
}
a:active{
	color:#171717; text-decoration:underline;
}


/* Common Styles */
img{
	max-width:100%;
	height:auto;
}

ul,
ol{
	overflow:hidden;
	position:relative;
}

.clearfix::after{
	content:"";
	display:block;
	clear:both;
}