@charset "utf-8";

/*--------------------------------------------------
	common
--------------------------------------------------*/
:root {
	--color_black: #000;
	--color_gray: #ccc;
	--color_white: #fff;
}
a:hover { opacity: 0.6; transition: 0.3s; }
.bold {	font-weight: bold; }

.sp { display: none !important; }
@media screen and (max-width: 767px) {
	.pc { display: none !important; }
	.sp { display: inherit !important; }
}

/*--------------------------------------------------
	base
--------------------------------------------------*/
html {
	font-size: 62.5%;
}
body {
	min-width: 1080px;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.0rem;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	color: var(--color_white);
	background: var(--color_black);
}
img {
	max-width: 100%;
	height: auto;
}
.wrap {
	text-align: left;
	font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
	body {
		min-width: initial;
	}
	.wrap {
		font-size: 1.4rem;
	}
}

/*--------------------------------------------------
	fancybox
--------------------------------------------------*/
.fancybox-slide>* {
	background: transparent;
	padding: 0;
	max-width: 750px;
	margin: 91px 0 44px;
}
.fancybox-close-small {
	display: none;
}
.fancybox-slide--iframe .fancybox-content {
	width: 960px !important;
	height: 540px !important;
	max-width: 80% !important;
	max-height: 80% !important;
	margin: 0;
}
@media screen and (max-width: 767px) {
	.fancybox-slide>* {
		padding: 0 4%;
		max-width: 100%;
		margin: 44px 0;
	}
	.fancybox-slide--iframe .fancybox-content {
		width: 100% !important;
		height: 25% !important;
		max-width: 90% !important;
		max-height: 100% !important;
	}
}

/*--------------------------------------------------
	.main
--------------------------------------------------*/
.main {
	background: url(../images/main_bg.jpg) no-repeat left top;
	background-size: 100%;
}
.main_inner {
	display: flex;
	justify-content: center;
	padding: 80px 0 160px;
}
.main_block {
	text-align: center;
}
.main_block.edf5 {
	transform: translateX(20px);
}
.main_block.edf6 {
	transform: translateX(-20px);
}
.main_release {
	width: 64.22%;
	margin: -40px auto 0;
}
@media screen and (max-width: 767px) {
	.main {
		background: url(../images/main_bg_sp.jpg) no-repeat left top;
		background-size: 100%;
	}
	.main_inner {
		flex-direction: column;
		padding: 20px 0 80px;
	}
	.main_block.edf5,
	.main_block.edf6 {
		transform: none;
	}
	.main_logo {
		width: 87.2%;
		margin: 0 auto;
	}
	.main_release {
		width: 56%;
		margin: -20px auto 0;
	}
}

/*--------------------------------------------------
	footer
--------------------------------------------------*/
footer {
	text-align: center;
	padding: 40px 0 20px;
}
.footer_top {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.footer_links {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 40px;
}
.footer_links li {
	height: 60px;
}
.footer_links li img,
.footer_sns dt img,
.footer_sns dd img {
	width: auto;
	height: 100%;
}
.footer_sns {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 40px;
	gap: 20px;
}
.footer_sns dt {
	height: 46px;
}
.footer_sns dd {
	height: 36px;
}
.footer_copy {
	font-size: 1rem;
	color: #555;
	margin-top: 40px;
}
.footer_copy p + p {
	margin-top: 1em;
}
@media screen and (max-width: 767px) {
	.footer_top {
		flex-direction: column;
		align-items: stretch;
	}
	.footer_links {
		gap: 20px;
	}	
	.footer_links li {
		height: 41px;
	}
	.footer_sns {
		margin: 20px 0 0 0;
	}
	.footer_sns dt {
		height: 30px;
	}
	.footer_sns dd {
		height: 22.5px;
	}
	.footer_copy {
		margin-top: 20px;
	}
	.footer_copy p + p {
		margin-top: 0.5em;
	}
}
