@charset "UTF-8";
/* CSS Document */
/*////////// reset //////////*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
	box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea,{
	margin: 0;
	padding: 0;
}

ul{
    list-style:none;
}
ol {
	list-style-type: decimal;
	margin-left: 4em;
	line-height: 2.4em;
}
ol li.annotation {
	list-style-type: none;
	margin-left: 1em;
	text-indent: -2em;
}
ol li.annotation:before {
	content: "※4 ";
}

ol.asterisk {
  counter-reset: number;
  list-style: none;
  margin-left: 5em;
}
ol.asterisk li:before {
  counter-increment: number;
  content: "※"counter(number)" ";
  margin-left: -2em;
}

span {
	display: block;
}

table{
    border-collapse: collapse; 
    border-spacing:0;
}

caption, th{
    text-align: left;
}

a:focus {
	outline:none;
}

.clearfix:after {
	content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}


/*////////// basic //////////*/

html {
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 62.5%;  /*1em=10px*/
}

body {
	font: 100% "メイリオ", Meiryo, Noto Sans JP, sans-serif, -apple-system, BlinkMacSystemFont ;
	background: ;
	margin: 0;
	padding: 0;
	height: 100%;
	color: #;
	position: relative;
	-webkit-text-size-adjust: 100%;
	font-size: 1.6em;
	font-feature-settings: "palt" 1;
	line-height: 2em;
	word-break: break-all;
}

section, article {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 0 10px 0;
}
a {
	text-decoration: none;
	color: #0082C8;
}
hr {
	border: 0;
	border-bottom: solid 1px #1E2678;
	padding-top: 1em;
}

hr.hr-yellow {
	border-top: 0;
	border-left: 0;
	border-right: 0;
	border-bottom: 4px dotted #FAD214;
	border-radius: 1px; 
	box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.10);
	padding: 1em 0 .5em 0;
}

h2, h3, h4, h5 {
	padding: 1em 0;
	line-height: 1em;
}

h2 {
	font-size: 1.8em;
	font-weight: bold;
	padding-top: 1.5em;
	color: #1E2678;
}

h3 {
	font-size: 1.8em;
	color: #1E2678;
}

h4 {
	font-size: 1.2em;
	font-weight: bold;
	color: #1E2678;
	line-height: 1.4em;
}
h5 {
	font-size: 1.4em;
	font-weight: bold;
}
h6 {
	font-size: 1.2em;
	font-weight: bold;
}


header {
	margin-top: 30px;
}

time {
	margin-right: 1.4em;
}

dl {
	border: solid 1px;
}
dt {
	float: left;
	padding: .5em 1em;
}
dd {
	padding: .5em;
	margin-left: 8em;
}

table {
	width: 100%;
	line-height: 2.4em;
}
thead {
	background: #9FA0A0;
	color: #FFF;
	border-top: solid 1px #C9CACA;
	text-align: center;
}
tbody {
	background: #FFF;
}
tr {
	border-bottom: solid 1px #C9CACA;
	border-top: solid 1px #C9CACA;
}
th {
	text-align: center;
}
td {
	border-left: solid 1px #C9CACA;
	text-align: center;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}


footer {
	color: #FFF;
	position: relative;
	height: auto;
}
