@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Noto+Serif+JP:wght@500;600;700&display=swap');

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size:inherit;
	font:100%;
}

img {
	border: 0;
	vertical-align:bottom;
}

nav ul { list-style:none;}
ul li { list-style: none;}

blockquote, q {	quotes:none;}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
}
html{
	font-size: 10px;
	font-family: YakuHanJP, 'Noto Serif JP', serif;
	color: #000000;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	line-height: 165%;
	font-weight: normal;
	letter-spacing: 10px;
	word-break: break-all;
}
input,button,textarea,select{
	font-family: YakuHanJP, 'Noto Serif JP', serif;
	font-size: 10px;
}
body{
	letter-spacing: 0.15rem;
}
.cinzel{
	font-family: 'Cinzel', serif;    letter-spacing: 0.3091rem;
}

a {
	outline: none;
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	text-decoration: none;
	color: #000000;
	text-decoration: none;
}
input, select {
	vertical-align:middle;
}
input,textarea {
  -webkit-appearance: none;
}
button{
	cursor: pointer;
	transition: all .3s;
}
button:hover{
	opacity: 0.7;
}

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

#splash {
/*fixedで全面に固定*/
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background:#F0F1F2;
	top: 0px;
}

/* Loadingバー中央配置　*/
#splash_text {
	position: absolute;
	top: 0%;
	left: 50%;
	z-index: 999;
	width: 100%;
	transform: translate(-50%, -50%);
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
	height: 4px;
}
@media screen and (max-width:519px) {
	#splash{
		background-size: 160px auto;
	}
}

/* hide */
.js-hide{
    opacity: 0;
    transition: all .3s ease;
}
.hide_frombottom{
    transform: translate(0, 100px);
}
.hide_fromtop{
    transform: translate(0, -100px);
}
.hide_fromright{
    transform: translate(100px, 0);
}
.hide_fromrightbottom{
    transform: translate(100px, 100px);
}
.hide_fromleft{
    transform: translate(-100px, 0);
}
.js-fade{
    opacity: 1;
    transform: translate(0, 0px);
}