@charset "utf-8";

/**************************************************************/
/* base
/**************************************************************/
*, *:before, *:after {
	-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 {
	font-size: 62.5%;
}
body {
	background-color: #fff;
	color: #000;
	font-family: 'Noto Sans JP', "游明朝", YuMincho, "游明朝体", Yu Mincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 10px;
	font-size: 1.0rem;
	font-weight: normal;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
}
	@media screen and (max-width: 768px) {
		body {
			width: 100%;
		}
	}

main {
	overflow: hidden;;
	position: relative;
}
main::selection{
	background: rgba(1, 51, 157, .4);
	color: #fff;
}
main::-moz-selection{
	background: rgba(1, 51, 157, .4);
	color: #fff;
}

.pc {
	display: block;
}
	@media screen and (max-width: 768px) {
		.pc {
			display: none;
		}
	}

.sp {
	display: none;
}
	@media screen and (max-width: 768px) {
		.sp {
			display: block;
		}
	}

/**************************************************************/
/* a link
/**************************************************************/
a {
	color: #69768c;
	text-decoration: none;
	transition: all 0.3s;
}
	@media screen and (max-width: 768px) {
		a {
			transition: none;
		}
	}
a:hover {
	opacity: 0.7;
	text-decoration: none;
}
	@media screen and (max-width: 768px) {
		a:hover {
			opacity: 1;
		}
	}

/**************************************************************/
/* common
/**************************************************************/
.browse {
	background: #c00;
	color: #fff;
	font-size: 1.4rem;
	margin: 0;
	padding: 5px 0;
	position: fixed;
	top: 0;
	left: 0;
	text-align: center;
	width: 100%;
}

.fixed {
	position: fixed;
	width: 100%;
	z-index: 1000;
}

.note {
	padding-left: 1em;
	text-indent: -1em;
}


ul.list_decimal {
	margin-bottom: 20px;
	li{
		list-style: decimal;
		margin: 0 0 5px 20px;
	}
}
ul.list_disc {
	margin-bottom: 20px;
}
ul.list_disc li {
	list-style: disc;
	margin: 0 0 5px 20px;
}
ul.list_circle {
	margin-bottom: 20px;
}
ul.list_circle li {
	list-style: circle;
	margin: 0 0 5px 20px;
}
ul.list_brackets {
	margin-bottom: 20px;
}
ul.list_brackets li {
	list-style: none;
	margin: 0 0 5px -10px;
	padding-left: 2.5em;
	text-indent: -2.5em;
}

ul.list_circle_number {
	margin-bottom: 20px;
}
ul.list_circle_number li {
	list-style: none;
	margin: 0 0 5px 0;
	padding-left: 1em;
	text-indent: -1em;
}
