@charset "utf-8";

/*Settings*/
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: none;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	background:#ｆfff;
	line-height: 1;
	-webkit-text-size-adjust : none;
	scroll-behavior: smooth;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	border: none;
	vertical-align:bottom;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display : block;
}

/*Bace Design*/
* html body
, *:first-child+html body {
	font-family: 游ゴシック体,'Yu Gothic',YuGothic,'メイリオ', Meiryo,'Verdana', sans-serif;
}
body {
	font-family: 游ゴシック体,'Yu Gothic',YuGothic,'メイリオ','ＭＳ Ｐゴシック','ＭＳ ゴシック','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','Meiryo','Verdana',Osaka,Osaka-等幅,sans-serif;
	font-size: 16px;
}
strong {
	font-weight:800;
}
form label {
	font-weight:800;
}
hr {
	border-color:#000;
	border-style: solid;
	border-width: 1px 0 0 0;
	height: 1px;
	margin: 0 0 20px 0;
}
h1, h2, h3, h4, h5, h6{
	line-height:1.6;
}
p {
	line-height:1.8;
}
h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li{
	text-align : justify;
	text-justify : inter-ideograph;
	-ms-text-justify: inter-ideograph;
}

/* link */
a {
	outline:0;
	-webkit-tap-highlight-color:#FFF619;
}
a:link {
	color:#d20000;
	text-decoration:underline;
}
a:visited {
	color:#d20000;
	text-decoration:underline;
}
a:hover {
	color:#500000;
	text-decoration:none;
}

h1 a:link, h2 a:link, h3 a:link, h4 a:link, h5 a:link, h6 a:link ,ul li a:link{
	color:#281e14;
	text-decoration:none;
}
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 :visited, h6 a:visited ,ul li a:visited{
	color:#281e14;
	text-decoration:none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover ,ul li a:hover{
	color:#281e14;
	text-decoration:underline;
}
blockquote{
	border:#281e14 solid 1px;
	padding:20px 20px 0;
	margin:0 0 20px;
}

/*clearfix*/
.clearfix:after {
	content: ".";  /* 新しい要素を作る */
	display: block;  /* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
	overflow:hidden;
	font-size:0.1em;
	line-height:0;
}
* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/*table*/
table {
    width: 100%;
    border: 1px #000 solid;
    border-collapse: collapse;
    border-spacing: 0;
}
table th {
    padding: 5px 10px;
    border: #000 solid;
    border-width: 0 0 1px 1px;
    background: #FFF;
    font-weight: bold;
    text-align: left;
}
table td {
    padding: 5px 10px;
    border: 1px #000 solid;
    border-width: 0 0 1px 1px;
    text-align: left;
}

/*fade*/
body {
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}