* {
	box-sizing: border-box;
}

html,
body {
	padding: 0;
	margin: 0;
}

body {
	width: 100%;
	height: 100vh;
	background: #fff2cc;
	position: relative;
}

.full {
	width: 100%;
}

.btn_home {
	position: absolute;
	right: 95px;
	bottom: 95px;
}

.title {
	text-align: center;
	margin-top: 0;
	margin-bottom: 65px;
	padding-top: 65px;
}

.links {
	display: flex;
	justify-content: space-between;
	padding: 0 50px;
}

.side_nav {
	position: absolute;
	top: 83px;
	right: 0;
	width: 62px;
	height: 900px;
	padding-top: 10px;
}

.side_nav a {
	display: block;
	width: 62px;
	height: 148px;
	text-decoration: none;
}

.side_nav .a1 {
	top: 0px;
	right: 0;
}

.side_nav .a2 {
	top: 0px;
	right: 0;
}

.side_nav .a3 {
	top: 0px;
	right: 0;
}

.side_nav .a4 {
	top: 0px;
	right: 0;
}

.side_nav .a5 {
	top: 0px;
	right: 0;
}

.side_nav .a6 {
	top: 0px;
	right: 0;
}

.ly_IchijoSignage_blind {
	width: 100vw;
	height: 100vh;
	background-color: black;
	opacity: 0.4;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: none;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	/* 背景カラー */
	z-index: 9999;
	/* 一番手前に */
	pointer-events: none;
	/* 他の要素にアクセス可能にするためにポインターイベントは無効に */
	opacity: 0;
	/* 初期値 : 透過状態 */
	-webkit-transition: opacity 500ms ease;
	/* アニメーション時間は 0.8秒 */
	transition: opacity 2s ease;
}

body.fadeout::after {
	opacity: 1;
}