/**
 * reset.css
 * version: 20230227
**/

/**
 * 0. font-family
**/



/**
 * 1. size
**/

html {
	font-size: 10px;
}
/*
@media (max-width: 1210px) {
	html {
		font-size: 0.826446280991736vw;/* 10 / 1210 * 100 
	}
}
@media (max-width: 1105px) {
	html {
		font-size: 0.884297520661157vw;/* 10.7 / 1210 * 100 
	}
}
@media (max-width: 1000px) {
	html {
		font-size: 0.9421487603305785vw;/* 11.4 / 1210 * 100 
	}
}
@media (max-width: 900px) {
	html {
		font-size: 1vw;/* 12.1 / 1210 * 100 
	}
}
@media (max-width: 800px) {
	html {
		font-size: 1.057851239669421vw;/* 12.8 / 1210 * 100 
	}
}
@media (max-width: 666px) {
	html {
		font-size: 2.666666666666667vw;/* 10 / 375 * 100 
	}
}
*/


/**
 * 2. reset
**/

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
	font-family: 'Noto Sans JP', sans-serif;
}

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	background: #fff;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.5;
	color: #262626;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

em, strong {
	font-weight: 600;
	font-style: normal;
}

small {
	font-size: 0.8em;
}

a {color: #004795; text-decoration: underline;}
a:link    {color: #004795; text-decoration: underline;}
a:visited {color: #004795; text-decoration: underline;}
a:active  {color: #00b7f1; text-decoration: underline;}
a:hover   {color: #00b7f1; text-decoration: none;}

input, textarea, select {
	-webkit-appearance: none;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

label {
	cursor: pointer;
}
label.disabled {
	cursor: default;
}

input[type="checkbox"], 
input[type="radio"] {
	width: 1.6rem;
	height: 1.6rem;
	border: solid 2px #d9d9d9;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
}
input[type="checkbox"].toggle, 
input[type="radio"].toggle {
	border-radius: 100%;
}
input[type="checkbox"]:checked, 
input[type="radio"]:checked {
	border: solid 2px #383838;
	background: #383838 url("../images/icon_checked.png") no-repeat center center;
	background-size: 0.8rem 0.6rem;
}
input[type="checkbox"].toggle:checked, 
input[type="radio"].toggle:checked {
	border: solid 2px #383838;
	background: #fff;
}
input[type="checkbox"].toggle:checked::after, 
input[type="radio"].toggle:checked::after {
	content: "";
	display: block;
	width: 0.8rem;
	height: 0.8rem;
	margin: 0.2rem auto;
	border-radius: 100%;
	background: #383838;
}
input[type="checkbox"]:disabled, 
input[type="radio"]:disabled {
	border-color: #EAEAEA;
	background-color: #EAEAEA;
	color: #CECECE;
	cursor: default;
}
input[type="checkbox"] + label, 
input[type="radio"] + label {
	margin-left: 0.5rem;
}
input[type="checkbox"]:disabled + label, 
input[type="radio"]:disabled + label {
	color: #CECECE;
	cursor: default;
}

input[type="text"], 
input[type="password"] {
	
}
input[type="text"]:disabled {
	
}

select {
	padding: 0.5rem 3rem 0.5rem 1rem;
	border: solid 0.2rem #d9d9d9;
	/*background: #fff url("../images/arrow_select.png") no-repeat center right 1rem;*/
	color: #3c3c3c;
	font-size: 1.4rem;
	cursor: pointer;
}


