@charset "UTF-8";
/* CSS Document */

.pc-menu-left {
	width: calc((100% - 58.8rem) / 2);
	height: calc(100vh - 4rem);
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	margin: 2rem 0 2rem 2rem;
	border:0.2rem solid #000;
	border-right: 0;
	background: url(../img/bg.png) repeat 0 0 / 20rem;
	z-index: 100;
	overflow: hidden;
}
.pc-menu-left-inner {
	width: 46.4rem;
	position: absolute;
	top: 6%;
	left: 6%;
}
.pc-menu-left-inner .pc-menu-wrap {
	transform-origin:left top;
	transform: scale(0.6);
	transition: opacity 0.5s ease;
}
.pc-menu-left-inner .pc-menu-wrap img {
	margin-bottom: 12rem;
}

@media screen and (max-width: 1200px) {
	.pc-menu-wrap {
		opacity: 0;
	}
	.pc-menu-wrap a {
		pointer-events: none;
		cursor: default;
	}
}
@media screen and (min-width: 1201px) {
	#mokuji {
		display: none;
	}
}

.pc-menu-right {
	width: calc((100% - 58.8rem) / 2);
	height: calc(100vh - 4rem);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	margin: 2rem 2rem 2rem 0;
	border:0.2rem solid #000;
	border-left: 0;
	background: url(../img/bg.png) repeat 0 0 / 20rem;
	z-index: 100;
	overflow: hidden;
}
.pc-sns-wrap {
	width: 20rem;
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	transition: opacity 0.5s ease;
}
.pc-sns-title {
	font-size: 1.8rem;
	display: block;
	border:0.1rem solid #000;
	padding: 0;
	text-align: center;
	line-height: 1.4;
	letter-spacing: -0.1em;
	margin-bottom: 2rem;
}
.pc-sns-title > a,
.pc-sns-title > a:visited {
	display: block;
	color: #000;
	text-decoration: none;
}
.pc-sns-wrap ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	gap: 1.5rem;
}
.pc-sns-wrap li {
	list-style-type: none;
}
.pc-sns-wrap li a img {
	transition: opacity 0.3s ease;
} 
.pc-sns-wrap li a:hover img {
	opacity: 0.5;
}
@media screen and (max-width: 1000px) {
	.pc-sns-wrap {
		opacity: 0;
	}
	.pc-sns-wrap a {
		pointer-events: none;
		cursor: default;
	}
}


