@charset 'utf-8';

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* common */
.check {
	display: none;
}

.menu-btn,
.close-menu {
	display: none;
}

.drawer-menu li {
	text-align: left;
}

.drawer-menu .Back_Home {
	margin-left: 30px;
	outline: none;
}

.drawer-menu li a {
	display: block;
	height: 30px;
	line-height: 2em;
	font-size: 12px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	color: #222;
	transition: all .4s;
	letter-spacing: 0.02em;
	outline: none;
}

.drawer-menu li p {
	font-size: 12px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	color: #222;
	display: block;
	height: 50px;
	line-height: 50px;
	letter-spacing: 0.02em;
}

.accordion li p:hover {
	text-decoration: none;
	transition: all .3s ease;
}

.accordion li .child {
	display: none;
	position: relative;
}

.accordion li .child li {
	display: block;
}

.accordion li .child li a {
	font-size: 12px;
	font-weight: lighter;
	display: block;
	margin: 0 auto;
	color: #222;
}

/* PC: keep left fixed navigation */
@media screen and (min-width: 961px) {
	.drawer-menu {
		box-sizing: border-box;
		position: fixed;
		top: 0;
		left: 0;
		width: 250px;
		height: 100vh;
		padding: 160px 0 0 60px;
		background-color: transparent;
		opacity: 1;
		transform: none;
		z-index: 1;
	}

	.drawer-menu li a {
		height: auto;
		line-height: 1.5;
		padding: 4px 0;
	}

	.Header__logo {
		position: fixed;
		top: 56px;
		left: 60px;
		transform: none;
		margin: 0;
		z-index: 2;
	}

	.Header__logo a {
		width: 124px;
		height: 54px;
		display: block;
		background-size: contain;
		background-position: left center;
		background-repeat: no-repeat;
	}

	.drawer-menu .accordion-container {
		width: 100%;
		margin: 0;
	}
}

/* SP/Tablet: top bar + right drawer */
@media screen and (max-width: 960px) {
	:root {
		--drawer-w: min(320px, 86vw);
	}

	.Header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 78px;
		padding: 0 14px;
		z-index: 50;
	}

	.Header__logo {
		position: fixed;
		top: 18px;
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		margin: 0;
		z-index: 61;
	}

	.Header__logo a {
		width: 114px;
		height: 48px;
		display: block;
		background-size: contain;
		background-position: center center;
		background-repeat: no-repeat;
	}

	.Header__season {
		display: none;
	}

	.menu-btn {
		position: fixed;
		top: 26px;
		right: 14px;
		left: auto;
		display: block;
		width: 24px;
		height: 24px;
		cursor: pointer;
		z-index: 63;
	}

	.bar {
		position: absolute;
		left: 50%;
		width: 20px;
		height: 1px;
		background: #111;
		transform: translateX(-50%);
		transform-origin: 50% 50%;
		transition: transform .3s ease, opacity .3s ease, top .3s ease;
	}

	.bar.top {
		top: 4px;
	}

	.bar.middle {
		top: 11px;
	}

	.bar.bottom {
		top: 18px;
	}

	.drawer-menu {
		box-sizing: border-box;
		position: fixed;
		top: 0;
		right: 0;
		left: auto;
		width: var(--drawer-w);
		height: 100vh;
		padding: 92px 18px 20px;
		background: rgba(255, 255, 255, 0.96);
		box-shadow: -4px 0 18px rgba(0, 0, 0, 0.14);
		transform: translateX(110%);
		opacity: 1;
		transition: transform .3s ease;
		z-index: 58;
	}

	.check:checked~.drawer-menu {
		transform: translateX(0);
	}

	.close-menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.28);
		cursor: pointer;
		visibility: hidden;
		opacity: 0;
		transition: opacity .2s ease;
		z-index: 57;
	}

	.check:checked~.close-menu {
		display: block;
		visibility: visible;
		opacity: 1;
	}

	.check:checked+.menu-btn .top {
		top: 11px;
		transform: translateX(-50%) rotate(45deg);
	}

	.check:checked+.menu-btn .middle {
		opacity: 0;
	}

	.check:checked+.menu-btn .bottom {
		top: 11px;
		transform: translateX(-50%) rotate(-45deg);
	}

	.drawer-menu .accordion-container {
		width: 100%;
		margin: 0;
	}
}

@media only screen and (max-width: 640px) {
	.accordion li .child li a {
		font-size: 12px;
	}
}
