@charset "UTF-8";
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&display=swap');

/* CSS Document */

* {
	margin: 0;
	padding: 0;
	font-size: 16px;
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
}
img {
	width: 100%;
	display: block;
}
body {
	-webkit-text-size-adjust: 100%;
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: 200;
	line-height: 1.75em;
	margin: 0 auto;
	position: relative;
}

/*====================================

	loading

====================================*/

#loading {
	width: 100vw;
	height: 100vh;
	background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
#loading img {
	width: 60px;
	animation:5s linear infinite rotation1;
}
@keyframes rotation1{
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
}

/*====================================

	header

====================================*/

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2;
	padding: 30px;
}
header ul {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    top: 20px;
    right: 20px;
}
header ul li {
	margin-left: 20px;
}
header ul li a,
header ul li p {
	font-family: 'Cinzel Decorative', cursive;
	line-height: 1em;
	text-decoration: none;
	color: #000;
	display: block;
}
header ul li p span {
	font-size: 80%;
	padding: 0 0 0 .4em;
}

/*====================================

    logo

====================================*/

.logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    z-index: 10;
    background: #fff;
    border-bottom-right-radius: 40px;
    -webkit-border-bottom-right-radius: 40px;
    -moz-border-bottom-right-radius: 40px;
    padding: 30px;
}

/*====================================

	mail

====================================*/

.mail {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	z-index: 10;
}

/*====================================

	icons

====================================*/

.icons {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10;
}
.icons ul {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 220px;
}
.icons ul li {
	width: 20%;
}
.icons ul li a {
	display: block;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
.icons ul li a:hover {
	filter: alpha(opacity=80);
 	-moz-opacity:0.8;
 	opacity:0.8;
	-ms-filter: "alpha(opacity=80)";
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	zoom:1;
}

/*====================================

    starshine

====================================*/

#starshine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}    
#starshine .shine {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background-image: url(/common/images/star.png);
    background-repeat: no-repeat;
    background-position:center;
    background-size: 100% 100%;
    overflow: hidden;
    z-index: 2;
    color: tansparent;
    -moz-opacity: 0.0;
    opacity: 0.0;
    animation: glitter 6s linear 6s infinite normal;
}
#starshine .shine.small {
    width: 40px;
    height: 40px;
}
#starshine .shine.medium {
    width: 60px;
    height: 60px;
}
#starshine .shine.large {
    width: 100px;
    height: 100px;
}
@-webkit-keyframes glitter {
    0% {
        -webkit-transform: scale(0.3);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.3);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(0.3);
        opacity: 0;
    }
}

/*====================================

	jojo-ni

====================================*/

/*{
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}*/

/*====================================

	opacity

====================================*/	

/*.opacity a:hover {
	filter: alpha(opacity=80);
 	-moz-opacity:0.8;
 	opacity:0.8;
	-ms-filter: "alpha(opacity=80)";
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	zoom:1;
}*/

/*====================================

	footer

====================================*/ 

.footer {
	width: 100%;
	padding-bottom: 30px;
}
.footer .logo_ob {
}
.footer .logo_ob a {
	display: block;
	width: 200px;
	margin: 0 auto;
}
.footer .logo_ob p {
	width: 100%;
	text-align: center;
	font-size: 80%;
}

/* =======================================

	cf

======================================= */
.cf:before,
.cf:after {
	content:"";
	display:table;
}
 
.cf:after {
	clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
	zoom:1;
}