@charset "utf-8";

/********** 【仮】 サイトの定義 **********

使用する文字サイズ：
14px（基本）

空白の使用サイズ：
10px
20px（基本）
40px
60px
80px
120px

*******************************/




/********** ローディング画面 **********/

/* ←ここを修正 */
html.loaded #loading-screen {
    display: none;
}

/* ローディング画面 */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100vh;

	background: #600060;
	background-image: linear-gradient(180deg, #d1098e, #600060);

    top: 0;
    left: 0;
    z-index: 99999;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    overflow: hidden;
}

#loading-screen::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 300%;
    background:
        radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
}

.loading-logo {
    width: 474px;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    animation: logoFadeIn 1.5s ease forwards;
}

.loading-line {
    width: 0;
    height: 2px;
    background: #fff;
    margin-top: 30px;
    z-index: 2;
    animation: lineExpand 2s ease forwards;
    animation-delay: 0.8s;
}

.loading-text {
    color: #fff;
    margin-top: 30px;
    letter-spacing: 2px;
    font-size: 16px;
	text-align: center;
	line-height: 1.8;
    z-index: 2;
    opacity: 0;
    animation: textFade 1.5s ease forwards;
    animation-delay: 1.2s;
}

.loading-text span {
    font-size: 36px;
	font-weight: 900;
}

.loading-text2 {
    margin-top: 90px;
    letter-spacing: 2px;
    font-size: 10px;
	text-align: center;
	line-height: 1.8;
    z-index: 2;
    opacity: 0;
    animation: textFade 1.5s ease forwards;
    animation-delay: 1.8s;
}

.loading-text2 .group-logo {
    width: 240px;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    animation: logoFadeIn 1.5s ease forwards;
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineExpand {
    to {
        width: 320px;
    }
}

@keyframes textFade {
    to {
        opacity: 1;
    }
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease;
}




/********** メイン画像 **********/

#main_Image {
	width: 100%;
	height: 640px;

	background-repeat: no-repeat;
	background-position: center center;
}


#main_Image .button {
	position: relative;
	bottom: 0;

	width: 550px;
	height: 640px;
	margin: 0 auto;
}

#main_Image .button .enter {
	position: absolute;
	left: 0;
	bottom: 40px;
}

#main_Image .button .enter img {
	width: 300px;
}

#main_Image .button .exit {
	position: absolute;
	right: 0;
	bottom: 55px;
}

#main_Image .button .exit img {
	width: 210px;
}




main .page {
	padding: 40px 0 120px 0;
}




/********** 年齢認証ページ：リンク設置スペース1（上部） **********/

#link1 {
	width: 1200px;
	margin: 0 auto;
	padding: 40px 0 0 0;
	text-align: center;
}

#link1 .top {
	display: inline-block;
}

#link1 .top p {
	display: inline-block;
}

#link1 .top p img {
	max-width: 100%;
}



/********** 年齢認証ページ：フリースペース1 ～ フリースペース10 **********/

.freeSpace {
	margin-bottom: 40px;
}
.freeSpace:last-child {
	margin-bottom: 120px;
}

.freeSpace h2 {
	margin: 0 0 20px 0;
	text-align: center;
}

.freeSpace .item {

}




/********** 入退場ボタン（下部） **********/

.page .button {
	width: 450px;
	margin: 0 auto;

	font-size: 0;
}

.page .button .enter {
	display: inline-block;
	vertical-align: middle;
	margin-right: 40px;
}

.page .button .enter img {
	width: 450px;
}




/********** 年齢認証ページ：リンク設置スペース2（下部） **********/

#link2 {
	width: 1200px;
	margin: 0 auto;
	padding: 40px 0 0 0;
	text-align: center;
}

#link2 .bottom {
	display: inline-grid;
}

#link2 .bottom p {
	display: inline-block;
}

#link2 .bottom p img {
	max-width: 100%;
}


#link2 .bottom ul.b88x31 {

}

#link2 .bottom ul.b88x31 li {
	display: inline-block;
	margin-right: 7px;
}
#link2 .bottom ul.b88x31 li:last-child {
	margin-right: 0;
}



/********** フッター領域全体 **********/

footer .f_top .f_logo {
	float: right;
}

footer .f_top .f_logo img {
	height: 79px;
}

footer .f_top .f_logo a img:hover { opacity:unset; transition:unset; }