@charset "utf-8";
/* ---------------------------------- **
		Modal Window
** ---------------------------------- */
#layer_board_area {
	display: none;
	position: fixed;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 3vw;
    overflow-y: auto;
    box-sizing: border-box; /*スクロールバーを非表示*/
    -ms-overflow-style: none; /*スクロールバーを非表示*/
    scrollbar-width: none; /*スクロールバーを非表示*/
    z-index: 1000;
}
#layer_board_area::-webkit-scrollbar {
	display:none; /*スクロールバーを非表示*/
}
.layer_board_bg {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	cursor: pointer;
	background: #000;
	z-index: 1000;
}
/* --modalWindow ポップアップ部分-- */
.layer_board {
	display: none;
	position: relative;
	width: 65%;
	z-index: 1000;
	border-radius: 100%;
}
.layer_board.shortLayer {
	margin: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

/* --modalWindow バツ(閉じる)ボタン-- */
.layer_board .mdl_btn_close.circle_btn {
	position: absolute;
	top: 10px;
	right: 15px;
	width: 30px;
	height: 30px;
	background-color: white;
	background-image: url("btn_close.png");
	background-repeat: no-repeat;
	background-size: 18px;
	background-position: 50%;
	border-radius: 50%;
	border: 1px solid #ccc;
	transition: .15s;
}
.layer_board .mdl_btn_close.circle_btn:hover {
	background-color: #FDB53F;
	border: 1px solid #FDB53F;
}

/* --↑必須なのはここまで↑-- */

/* --modalWindow タイトル部分-- */
.layer_board_title {
	font-size: 200%;
	font-weight: 200;
	color: #ED344E;
}
/* --modalWindow コンテンツ部分-- */
.layer_board_content {
	margin: 1em auto 1.5em;
	display: flex;
	justify-content: center;
	width: 100%;
	z-index: 1000;
}
.layer_board_content img {
	width: 100%;
	height: auto;
	z-index: 1000;
}
/* --modalWindow 四角ボタン-- */
.layer_board .square_btn {
	display: block;
    position: relative;
    width:160px;
    margin: 0 auto;
    padding: 10px;
    border:2px solid white;
	background: white;
    border-radius: 2px;
    font-size: 1.2em;
    font-weight: 300;
    color: #F08300;
    text-align: center;
    letter-spacing: 1px;
    text-decoration: none;
    transition: .15s;
	z-index: 1000;
}
.layer_board .square_btn:hover {
	background: #F08300;
	color: #fff;
}

@media screen and (max-width:1030px) {
	.layer_board {
		width: 90%;
		margin: 3em auto;
		/* padding: 1.5em; */
	}
	.layer_board .mdl_btn_close.circle_btn {
		width: 26px;
		height: 26px;
		background-size: 14px;
	}
	.layer_board_content {
		width: 90%;
	}
	#christmas-resonance-link {
		width: 200px;
		height: 200px;
	}
}


#christmas-resonance-link {
	width: 200px;
	height: 200px;
	background-color: #97ceae;
	position: fixed;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid black;
}
	#christmas-resonance-link a {
		width: 100%;
		height: 100%;
	}
	#christmas-resonance-link a img {
		width: 100%;
		height: auto;
	}
	#christmas-resonance-button {
		width: 155px;
		height: 35px;
		color: white;
		border-radius: 10px;
		border: 1px solid #303030;
		background-color: #c6a05f;
		margin: 0 auto;
		margin-bottom: 5px;
	}
	#christmas-resonance-button:hover {
		background-color: #303030;
		border: 1px solid #c6a05f;
	}
	#christmas-resonance-button a, #christmas-resonance-button a:visited, #christmas-resonance-button a:active {
		text-decoration: none;
		color: white;
		font-size: 15px;
		text-align: center;
		display: block;
		width: 100%;
		height: 100%;
		padding-top: 5px;
	}



/* ===== 雪を表示するコンテナのスタイル ===== */
/* .snow-container {
	position: relative;
	height: 100vh;
	width: 100vw;
	background-color: #ffffff;
} */

/* ===== 桜を表示するコンテナのスタイル ===== */
.cherry-blossom-container {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	z-index: 10;
}

/* ===== 雪のスタイル ===== */
/* .snow {
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	animation: animate-snow 10s linear;
} */

/* ===== 桜のスタイル ===== */
.petal {
	position: absolute;
	background-color: #ffc0cb;
	border-radius: 150% 0 150% 0;
	animation: animate-petal 10s linear;
	z-index: 10;
}
.petal::after {
	content: "";
	position: absolute;
	top: -14%;
	left: -10%;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #ffc0cb;
	border-radius: 150% 0 150% 0;
	transform: rotate(15deg);
}

/* ===== 雪のアニメーション ===== */
/* @keyframes animate-snow {
	0% {
		opacity: 0;
		top: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		top: 100vh;
	}
} */

/* ===== 桜のアニメーション ===== */
@keyframes animate-petal {
	0% {
	  top: 0;
	  opacity: 0;
	  transform: rotate(0deg);
	}
	10% {
	  opacity: 1;
	}
	90% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	  top: 100vh;
	  transform: rotate(3000deg);
	}
}