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


/******************************************/
/* 00. Reset                              */
/******************************************/
html, body{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

div {
    margin: 0;
    padding: 0;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/******************************************/
/* 10. Style                             */
/******************************************/
/* 全体のボックス */
#loader {
    background: #292929;
    font-size: 0;
    font-size: 0.1px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 10000;
}

#loader.complete {
    -webkit-animation: hide 0.4s ease 0.4s;
    animation: hide 0.4s ease 0.4s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes hide {
	0% {
        opacity: 1.0;
    }
	99.9% {
        opacity: 0.0;
        -webkit-transform: scale(1.0, 1.0);
    }
	100% {
        opacity: 0.0;
        -webkit-transform: scale(0, 0);
    }
}

@keyframes hide {
	0% {
        opacity: 1.0;
    }
	99.9% {
        opacity: 0.0;
        transform: scale(1.0, 1.0);
    }
	100% {
        opacity: 0.0;
        transform: scale(0, 0);
    }
}

/* アイドリングアニメ、バーを含むボックス */
#loader #loader-animation {
    margin: auto;
    width: 414px;
    height: 180px;

    position: absolute;
    top: 0;
    bottom: 5%;
    left: -100%;
    right: -100%;
    margin: auto;
    
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
}

/* タブレット用 */
@media all and (min-width: 960px) {
    #loader #loader-animation {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }
}

/* PC用 */
@media all and (min-width: 1280px) {
    #loader #loader-animation {
        -webkit-transform: scale(1.0);
        -ms-transform: scale(1.0);
        transform: scale(1.0);
    }
}


/* アイドリングアニメ（くるくる回っているやつ）のボックス */
#loader #loader-animation #idling,
#loader #loader-animation #idling #idling-loading,
#loader #loader-animation #idling #idling-complete
{
    width: 104px;
    height: 104px;
}

#loader #loader-animation #idling #idling-loading,
#loader #loader-animation #idling #idling-complete
{
    position: absolute;
    top: 0;
    left: 0;
}

#loader #loader-animation #idling {
    margin: 0 auto 30px auto;
    position: relative;
}

#loader #loader-animation #idling #idling-loading {
    background: url("images/loading_circle.png") no-repeat;
    width: 104px;
    height: 104px;

    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;

    -webkit-animation: idling-rotate 1.25s cubic-bezier(0.50, 0.15, 0.50, 0.85) infinite;
    animation: idling-rotate 1.25s cubic-bezier(0.50, 0.15, 0.50, 0.85) infinite;
}

#loader.complete #loader-animation #idling #idling-loading {
    opacity: 0.0;
}

#loader #loader-animation #idling #idling-complete {
    background: url("images/loading_complete.png") no-repeat;

    -webkit-transform: scale(0.0, 0.0);
    -ms-transform: scale(0.0, 0.0);
    transform: scale(0.0, 0.0);

    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: -o-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#loader.complete #loader-animation #idling #idling-complete {
    -webkit-transform: scale(1.0, 1.0);
    -ms-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
}

@-webkit-keyframes idling-rotate {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}

@keyframes idling-rotate {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}


/* プログレスバー */
#progress {
    position: relative;
    width: 414px;
    height: 44px;
}

#progress-border,
#progress-bg,
#progress-bar 
{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

#progress-bg,
#progress-bar 
{
    left: 7px;
    margin: auto 0;
}

#progress-border {
    background: url("images/progress_border.png") no-repeat;
    width: 414px;
    height: 44px;
}

#progress-bg {
    background: url("images/progress_bg.png") no-repeat;
    width: 400px;
    height: 30px;
}

#progress-bar {
    background: url("images/progress_bar.png") no-repeat;
    width: 0px;
    max-width: 400px;
    height: 30px;

    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;

    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}</pre></body></html>