<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";



/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #f08200;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash-logo p.logotype {
	text-indent: -9999px;
	overflow: hidden;
	background-image: url(../images/logotype_w.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	image-rendering: -webkit-optimize-contrast; /*Chromeのボケ防止*/
	display: block;
	width: 70px;
	height: 64px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
}
/* 横幅600px以上の場合 */
@media print, screen and (min-width:600px) {
#splash-logo p.logotype {
	width: 100px;
	height: 92px;
	margin-bottom: 15px;
}
}

#splash-logo p.text {
	color: #FFF;
	font-family: "URWDIN-Regular";
	font-size: 0.7em;
	line-height: 1em;
	letter-spacing: 5px;
	padding-left: 5px;
}
/* 横幅600px以上の場合 */
@media print, screen and (min-width:600px) {
#splash-logo p.text {
	font-size: 0.9em;
}
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/

body{
    background:#f08200;/*遷移アニメーションと同じ色を指定*/
}

body.appear{
    background:#FFF;/*画面を開いた後の背景色を指定*/
}

.splashbg{
	position: fixed;
	top: 0;
	right:0;
	bottom:0;
	left: 0;
	border-width: 0px;/*開始はボーダーの太さは0*/
	border-style:solid;
    border-color: #f08200;/*拡大する四角の色*/
	animation-duration:.5s;
	animation-fill-mode:forwards;
}

@keyframes backBoxAnime{
	99.9% {/*アニメーション終了ぎりぎりまで*/
        z-index: 2;/*最前面に*/
		border-width: 0px;/*開始はボーダーの太さは0*/
	}
    100%{
       z-index: -1; /*最背面に*/
        border-width: 0px;/*終了はボーダーの太さは0*/
    }
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
    position: relative;
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay:0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}</pre></body></html>