@charset "utf-8";

.sp {
	display: none !important;
}


#menu-button {
	position: fixed;
	width: 100px;
	height: 60px;
	left: calc(50% - 650px + 30px);
	top: 22px;
	z-index: 1000;
}
#menu-button a {
	position: absolute;
	display: block;
	height: 60px;
	cursor: pointer;
}
#menu-button a i {
	position: absolute;
	display: block;
	width: 80px;
	height: 4px;
	left: 10px;
	background: #211815;
}
#menu-button a i:nth-child(1) {
	top: calc(50% - 8px);
}
#menu-button a i:nth-child(2) {
	top: calc(50% + 4px);
}



#menu-button a i {
	transition: all 400ms ease-out;
}
body.opened-menu #menu-button a i:nth-child(1) {
	transform: translateY(6px) rotate(15deg);
}
body.opened-menu #menu-button a i:nth-child(2) {
	transform: translateY(-6px) rotate(-15deg);
}





#menu {
	position: fixed;
	left: calc(50% - 650px + 30px + 10px);
	top: 100px;
	z-index: 5000;
}
#menu .inner {
	padding: 30px;
	border: 1px solid #211815;
	background: rgba(255,255,255,0.75);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}
#menu .main li:nth-child(1) img {
	width: 150px;
}
#menu .main li:nth-child(2) img {
	width: 236px;
}
#menu .main li:nth-child(3) img {
	width: 314px;
}
#menu .main li a {
	font-size: 21px;
	font-weight: 500;
}
#menu .main li + li {
	margin-top: 30px;
}

#menu .sub {
	display: none;
}


#menu .main li a {
	transition: all 400ms ease-out;
}
#menu .main li a:hover {
	opacity: 0.5;
}


#menu {
	visibility: hidden;
	opacity: 0;
	filter: blur(20px);
	transition: all 600ms ease-out;
}

body.opened-menu #menu {
	visibility: visible;
	opacity: 1;
	filter: blur(0px);
}






#wrap > header {
	position: fixed;
	width: 290px;
	height: 36px;
	right: calc(50% - 650px + 30px);
	top: 28px;
	z-index: 1000;
}
#wrap > header ul {
	display: flex;
	justify-content: space-between;
}
#wrap > header li {
	width: 140px;
}
#wrap > header li a {
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 36px;
	font-size: 12px;
	transition: all 400ms ease-out;
}
#wrap > header li.locator a {
	color: #fff;
	background: #211815;
}
#wrap > header li.forsalon a {
	border: 1px solid #211815;
}
#wrap > header li.locator a:hover {
	background-color: #555;
}
#wrap > header li.forsalon a:hover {
	background-color: rgba(255,255,255,0.3);
}

body.entry #wrap > header {
	display: none;
}



#wrap > footer {
	margin: 200px 0 30px;
	text-align: center;
}
#wrap > footer .copyright {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
}



@media screen and (max-width:1299px) {
	#menu-button {
		left: 30px;
	}
	#wrap > header {
		right: 30px;
	}
}








#top-intro {
	padding: 150px 0 0;
}
#top-intro h1 {
	display: flex;
	justify-content: flex-end;
	width: calc(900px);
	margin: 0 auto;
}
#top-intro h1 span {
	display: block;
	width: 700px;
}
#top-intro h1 img {
	width: 100%;
	height: auto;
}
#top-intro .lead {
	margin: 80px 0 0;
	padding: 15px 40px;
	font-size: 21px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	background: #efefef;
}


#top-entry-list {
	box-sizing: border-box;
	width: 100%;
	max-width: calc(1200px + 80px);
	margin: 80px auto 0;
	padding: 0 40px;
}
#top-entry-list ul {
	display: flex;
	flex-wrap: wrap;
}
#top-entry-list li {
	width: calc((100% - 200px) / 3);
	margin-left: 100px;
	text-align: center;
}
#top-entry-list li:nth-child(3n + 1) {
	margin-left: 0;
}
#top-entry-list li:nth-child(n + 4) {
	margin-top: 80px;
}
#top-entry-list li img {
	width: 100%;
	height: auto;
	transition: all 300ms ease-out;
}

#top-entry-list li .vol {
	margin: 20px 0 0;
	font-size: 14px;
}
#top-entry-list .vol img {
	width: auto;
	height: 14px;
}
#top-entry-list .vol .label {
	margin-right: 3px;
}
#top-entry-list .vol .num + .num {
	margin-left: 2px;
}

#top-entry-list li .title {
	position: relative;
	display: inline-block;
	margin: 10px 0 0;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	font-feature-settings: "palt";
	letter-spacing: 4px;
}
#top-entry-list li .title::after {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	left: 0;
	bottom: -6px;
	background: #000;
	transform: scaleX(0);
	transition: all 300ms ease-out;
}

#top-entry-list li a:hover img {
	opacity: 0.8;
}
#top-entry-list li a:hover .title::after {
	transform: scaleX(1);
}







#mini-logo {
	width: 200px;
	margin: 100px auto 0;
}
#mini-logo a {
	display: block;
}
#mini-logo img {
	width: 100%;
	height: auto;
}



#entry {
	width: 750px;
	margin: 50px auto 0;
}
#entry .visual img {
	width: 100%;
	height: auto;
}

.entry-header {
	margin: 100px 0 0;
	text-align: center;
}
.entry-header .vol {
	padding: 0 0 9px;
	font-size: 21px;
	border-bottom: 5px solid #000;
}
.entry-header .vol img {
	width: auto;
	height: 19px;
}
.entry-header .vol .bhn {
	margin-right: 16px;
}
.entry-header .vol .label {
	margin-right: 3px;
}
.entry-header .vol .num + .num {
	margin-left: 2px;
}


.entry-header h1 {
	margin: 20px 0 0;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.10em;
	white-space: nowrap;
}
.entry-header .lead {
	margin: 30px 0 0;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.9;
	letter-spacing: 0.05em;
}

#entry .content {
	margin: 200px 0 0;
}
#entry .content .column + .column {
	margin-top: 140px;
}

#entry .content h2 {
	margin: 0 0 30px;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.12em;
	text-align: center;
}
#entry .content h2.nocolor {
	color: #000 !important;
}
#entry .content .box,
#entry .content .box p {
	font-size: 20px;
	line-height: 2;
}


#entry .content .box * + p,
#entry .content .box * + dl
{
	margin-top: 1.25em;
}
#entry .content .box p img {
	max-width: 100%;
	height: auto;
}

#entry .content .note {
	margin: 40px 0 0;
}
#entry .content .note,
#entry .content .note p {
	font-size: 14px;
	line-height: 1.8;
}
#entry .content .note a:hover {
	text-decoration: underline;
}


#entry .content .box h3 {
	margin: 0 0 20px;
	padding: 4px 4px 5px;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	text-align: center;
}

#entry .content .box dl.multi {
	display: flex;
	justify-content: space-between;
}
#entry .content .box dl.multi + dl.multi {
	margin-top: 50px;
}
#entry .content .box dl.multi dt {
	width: 330px;
}
#entry .content .box dl.multi dt img {
	width: 100%;
	height: auto;
}
#entry .content .box dl.multi dd {
	width: calc(100% - 330px - 30px);
}

#entry .content .box dl.multi ol {
	margin: 12px 0 0;
	padding: 0;
	font-weight: 600;
}
#entry .content .box dl.multi ol li {
	padding-left: 1.3em;
	text-indent: -1.3em;
	line-height: 1.7;
	list-style: none;
}
#entry .content .box dl.multi ol li + li {
	margin-top: 8px;
}
#entry .content .box dl.multi ol li::before {
	display: inline-block;
	width: 1.3em;
	text-indent: 0;
}

#entry .content .box > h3 + p {
	margin-top: 0.20em;
}
#entry .content .box > p + h3 {
	margin-top: 1.5em;
}












#entry .content-foot {
	margin: 200px 0 0;
}
#entry .content-foot img {
	width: 100%;
	height: auto;
	transition: all 300ms ease-out;
}
#entry .content-foot h2 {
	margin: 0 0 30px;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
}
#entry .content-foot .text {
	margin: 30px 0 0;
}
#entry .content-foot .text,
#entry .content-foot .text p {
	font-size: 19px;
	line-height: 2;
	text-align: center;
}
#entry .content-foot .text p em {
	font-size: 12px;
	font-style: normal;
	vertical-align: super;
}

#entry .content-foot .note {
	margin: 80px 0 0;
}
#entry .content-foot .note,
#entry .content-foot .note p {
	font-size: 14px;
	line-height: 1.8;
}


#entry .content-foot a:hover img {
	opacity: 0.8;
}




















