@charset "utf-8";


/* font
-------------------------------------------------------------- */
.tbudrgothic{
	font-family: tbudrgothic-std, sans-serif;
	font-weight: 400;
	font-style: normal;
}

/* header
-------------------------------------------------------------- */
header {
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	background: rgba(255,255,255,1);
	z-index: 2000;
}
header .container{
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	position: relative;
}
header h1{
	width: 330px;
	margin: 10px;
}
header h1 a{
	display: block;
}
header h1 a img{
	height: 55px;
}
.menu-content ul {
	display: flex;
	margin: 10px;
}
.menu-content ul li {
	list-style: none;
}
.menu-content ul li a {
	display: block;
	font-size: 20px;
	box-sizing: border-box;
	color:#333;
	text-decoration: none;
	padding: 20px 15px;
	color: #298ac8;
	font-family: tbudrgothic-std, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.menu-content ul li a:hover {
	color: #fc4783;
}
.menu-btn {
	display: none;
}
#menu-btn-check{
	display: none;
}
@media (max-width: 992px) {
	.menu-btn {
		position: absolute;
		top: 22px;
		right: 12px;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		cursor: pointer;
	}
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 2px;
		width: 25px;
		border-radius: 3px;
		background-color: #333;
		position: absolute;
		transition: all 0.5s;
	}
	.menu-btn span:before {
		bottom: 8px;
	}
	.menu-btn span:after {
		top: 8px;
	}
	#menu-btn-check:checked ~ .menu-btn span {
		background-color: rgba(255, 255, 255, 0);
	}
	#menu-btn-check:checked ~ .menu-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#menu-btn-check:checked ~ .menu-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 100px;
		left:-100%;
		opacity: 0;
		z-index: 80;
		background:rgba(255,255,255,1);
		transition: all 0.5s;
	}
	#menu-btn-check:checked ~ .menu-content {
			opacity: 1;
			left: 0;
			display: block;
	}
	.menu-content ul {
		padding: 0 20px;
		flex-wrap: wrap;
	}
	.menu-content ul li {
		border-bottom: solid 1px #333;
		width: 100%;
	}
	.menu-content ul li a {
		display: block;
		width: 100%;
		font-size: 15px;
		box-sizing: border-box;
		color:#333;
		text-decoration: none;
		padding: 18px 15px 20px 0;
		position: relative;
	}
	.menu-content ul li a::before {
		content: "";
		width: 7px;
		height: 7px;
		border-top: solid 1px #333;
		border-right: solid 1px #333;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 28px;
	}
}
@media (max-width: 768px) {
	header {
		height: 80px;
	}
	header h1{
		width: 270px;
	}
	header h1 a img{
		height: 45px;
	}
	.menu-btn {
		top: 20px;
	}
	.menu-content {
		top: 80px;
	}
}

/* anchor
-------------------------------------------------------------- */
.anchor {
	margin-top: -100px;
	padding-top: 100px;
	display: block;
}
@media (max-width: 768px) {
	.anchor {
		margin-top: -80px;
		padding-top: 80px;
		display: block;
	}
}

/* main
-------------------------------------------------------------- */
main{
	margin-top: 100px;
}
@media (max-width: 768px) {
	main {
		margin-top:80px;
	}
}

/* pickup
-------------------------------------------------------------- */
.pickup a{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	min-height: 120px;
}
.pickup .enka audio{
	height: 30px;
	margin: 5px 0;
}

/* youtube
-------------------------------------------------------------- */
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/* footer
-------------------------------------------------------------- */
footer{
	background: #eee;
	padding: 50px 10px;
}
