@charset "utf-8";


/*
########################################################
	Basic Style
########################################################
*/
html {
	overflow-y: scroll;
}
@media all and (-ms-high-contrast: none){
	html{
		overflow-x: hidden;
	}
}
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}
article, aside, header, nav, section, main, footer {
	display: block;
}
* {
	box-sizing: border-box;
}
*:before, *:after {
	box-sizing: inherit;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
object, embed {
	vertical-align: top;
}
h1, h2, h3, h4, h5 {
	font-size: 100%;
	font-weight: normal;
}
img, abbr, acronym, fieldset {
	border: 0;
}
img,figure {
	width: 100%;
	margin: 0;
	padding: 0;
	vertical-align: top;
}
ol, ul {
	list-style: none;
}



/*
########################################################
	Font Style
########################################################
*/
html {
    font-size: 62.5%;
}
* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
body, html {
	font-size: 16px;
	color: #000000;
	position: relative;
	z-index: 0;
	letter-spacing: 0.05em;
	overflow-x: clip;
	font-family: "a-otf-ud-shin-maru-go-pr6n", sans-serif;
	font-weight: 300;
	font-style: normal;
	padding: 0;
	margin: 0;
}
p {
	line-height: 1.8;
}



/*
########################################################
	A Style
########################################################
*/
a, a:visited {
	color: inherit;
}
a:link {
	text-decoration: none;
	color: #313131;
}
a:visited {
	text-decoration: none;
	color: #313131;
}
a:hover {
	opacity: 1;
	-webkit-animation: flash 1s;
	animation: flash 1s;
}
@-webkit-keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes flash {
	0% {
		opacity: .4;
	}
	100% {
		opacity: 1;
	}
}
a:active {
	text-decoration: none;
	color: #348fca;
}