﻿
/* ============================================================== base */
.isplsh {
	font-size: 4vw;
	font-family: 'Noto Serif JP', "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Times New Roman", Times, serif;
	z-index: 99991;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
}
.isplsh_bg {
	z-index: 2;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.8);
}
.isplsh_wrp {
	z-index: 5;
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 1em;
}
.isplsh_frame {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 450px;
	max-height: 600px;
	margin: 0 auto;
	padding: 2em 0;
	display: flex;
	align-items: center;
	box-shadow: 0 0 4px rgba(0,0,0,0.2);
	overflow: hidden;
	background-color: rgba(255,255,255,0.9);
	background-image: url("../img/newyear/2022/ny_bg_01.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 100%;
}
@media all and (-ms-high-contrast: none) {
	.isplsh_frame {
		display: block;
	}
}
.isplsh_content {
	width: 100%;
	position: relative;
	z-index: 3;
	text-align: center;
	padding-bottom: 2em;
}
.isplsh_fig {
	width: 65%;
	margin: 0 auto 2em;
}
.isplsh_fig span {
	display: block;
}
.isplsh_txt {
	line-height: 1.8;
	margin: 0 0 2em;
}
.isplsh_year {
	margin: 0 auto 2em;
}
.isplsh_logo {
	width: 70%;
	margin: 0 auto;
}
.isplsh_close {
	position: absolute;
	top: 0.2em;
	right: 0.2em;
	width: 3em;
	height: 3em;
	line-height: 3em;
	background: #ddd;
	color: #fff;
	cursor: pointer;
	transition: 0.5s;
}
.isplsh_close:before,
.isplsh_close:after {
	background: #fff;
	position: absolute;
	content: "";
	display: block;
	width: 2.4em;
	height: 2px;
	top: 1.4em;
	left: 0.3em;
}
.isplsh_close:before {
	transform: rotate(45deg);
}
.isplsh_close:after {
	transform: rotate(-45deg);
}
.isplsh_close:hover {
	background: #5dd;
}

/* ============================================================== media query */
@media screen and (min-width: 480px){
	.isplsh {
		font-size: 18px;
	}
	.isplsh_frame {
		padding: 2em 1em;
	}
	.isplsh_txt {
		margin: 0 0 1em;
	}
	.isplsh_year {
		margin: 0 auto 1em;
	}
}
