@charset "utf-8";
/******************************
header
*******************************/
header[id^="MnHD"]{
	width: 100%;
	text-align: center;
	padding: 0;
	margin: 0;
	z-index: 8888;
	top: 0;
	background: hsla(0, 0%, 100%, .7);
	position: fixed;
	transition: .5s all;
}
header[id^="MnHD"].scroll-nav{
	background: hsla(0, 0%, 100%, .7);
	backdrop-filter: blur(10px);
}
header[id^="MnHD"].active{
	background: hsla(0, 0%, 100%, 1);
}
.comdtl{
	position: relative;
}
dl.comenu{
	width: 100%;
	padding: 0;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
dl.comenu > dt{
	text-align: left;
	position: relative;
}
dl.comenu > dt img{
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0%);
}
dl.comenu > dd{
	text-align: center;
}
dl.comenu > dd > a{
	display: block;
	transition: .3s all;
}
@media screen and (max-width: 999px) {
	dl.comenu > dt{
		height: 55px;
	}
	dl.comenu > dt img{
		height: 30px;
		left: 1em;
	}
	dl.comenu > dd{
		padding: 0;
	}
}
@media screen and (min-width: 1000px) {
	dl.comenu{
		line-height: 135%;
	}
	dl.comenu > dt{
		width: 290px;
		height: 120px;
	}
	dl.comenu > dt img{
		width: 100%;
		left: 1em;
	}
	dl.comenu > dd{
		width: calc(100% - 290px);
		height: 120px;
		position: relative;
	}
}
@media screen and (min-width: 1200px) {
	dl.comenu{
		width: 1200px;
	}
	dl.comenu > dt img{
		left: 0;
	}
}

dl.comorder{
	color: hsl(0, 0%, 100%);
	white-space: nowrap;
	padding: 1em 1.5em;
	margin: 0 auto;
	background: hsl(193, 100%, 50%);
	border-radius: 1.5rem;
	display: inline-flex;
	flex-direction: row;
}
dl.comorder a{
	color: hsl(0, 0%, 100%);
	text-decoration: none;
}
dl.comorder dt{
	font-size: .85em;
	text-align: left;
	line-height: 135%;
}
dl.comorder dt span{
	font-size: .8em;
	display: block;
}
dl.comorder dd{
	font-family: "Oswald", sans-serif;
	font-size: 2.2em;
	line-height: 100%;
	padding-left: 1.5rem;
}
@media screen and (max-width: 999px) {
	dl.comorder{
		font-size: .8em;
		padding: .7em 1.5em;
	}
	#MnHD dl.comorder{
		border-radius: .7rem 0 0 .7rem;
		position: absolute;
		right: 0;
		top: 50px;
	}
	dl.comorder dt span{
		font-size: .9em;
	}
}
@media screen and (min-width: 1000px) {
	#MnHD dl.comorder{
		position: absolute;
		right: 0;
		top: 100px;
	}
}
@media screen and (min-width: 1200px) {
}


/******************************
Menu
*******************************/
header[id^="MnHD"] .drawer-menu{
	text-align: center;
}
ul#primary-menu{
	text-align: center;
	padding: 0;
	margin: auto;
	display: flex;
	box-sizing: border-box;
	list-style: none;
}
.drawer-menu{
	box-sizing: border-box;
}
/***メイン***/
ul#primary-menu > li{
	text-align: center;
	box-sizing: border-box;
	position: relative;
}
ul#primary-menu > li a{
	font-family: "M PLUS 1", sans-serif;
	font-weight: 500;
	color: hsl(0, 0%, 0%);
	text-decoration:none;
	display: block;
	transition: all .3s;
}

/* メニューOPEN時の背景 */
.close-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	visibility: hidden;
	z-index: 1;
}
.close-menu.active {
	background: hsla(0, 0%, 0%, .6);
	visibility: visible;
}

/* ------------------------------------------------ checkbox */
.check {
	display: none;
}
@media screen and (max-width: 999px) {
	/* ------------------------------------------------ drawer menu */
	.drawer-menu{
		width: 50%;
		padding: 2.5em 0 0;
		margin: 0;
		background: hsl(0, 0%, 100%);
		position: fixed;
		top: 55px;
		right: -50%;
		transition:all 0.2s ease-out;
		box-sizing:border-box;
		opacity: 0;
		visibility: hidden;
	}
	.check:checked ~ .drawer-menu{
		opacity: 1;
		visibility: visible;
		right: 0;
	}
	ul#primary-menu{
		padding: 0;
		margin: 0;
		flex-direction: column;
	}
	ul#primary-menu > li{
		text-align: center;
		padding:0;
		margin: 0;
		border-bottom: 1px solid hsl(0, 0%, 0%, .7);
		box-sizing: border-box;
		position: relative;
	}
	ul#primary-menu > li:last-child{
		border-bottom: none;
	}
	ul#primary-menu > li a{
		padding: 1em 0;
		display: block;
	}

	/* ------------------------------------------------ menu button */
	.menu-btn{
		font-size:1.0rem;
		text-align:center;
		width:50px;
		height:55px;
		padding:0;
		position:absolute;
		top: 0;
		right:0;
		cursor: pointer;
		display: block;
		z-index: 9999;
	}
	.bar{
		position: absolute;
		top: 15px;
		left: 12px;
		display: block;
		width: 25px;
		height: 4px;
		background: hsl(201, 100%, 50%);
		transition: all .3s;
		-webkit-transform-origin: left top;
		-ms-transform-origin: left top;
		transform-origin: left top;
	}
	.bar.middle{
		top: 24px;
		opacity: 1;
	}
	.bar.bottom{
		top: 33px;
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
	}
	.menu-btn:hover .bar{background: hsl(201, 100%, 50%);}

	/* ------------------------------------------------ checked */
	.check:checked ~ .menu-btn .bar.top{
		width: 29px;
		top: 14px;
		left: 15px;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.check:checked ~ .menu-btn .bar.middle{
		opacity: 0;
	}
	.check:checked ~ .menu-btn .bar.bottom{
		width: 29px;
		top: 34px;
		left: 15px;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}
@media screen and (min-width: 1000px) {
	ul#primary-menu{
		margin:auto;
		box-sizing:border-box;
		flex-direction:row;
		justify-content: right;
		position: absolute;
		top: 50%;
		right: 0%;
		transform: translateY(-50%);
	}
	ul#primary-menu > li{
		line-height: 120%;
		padding:0;
		margin:0;
	}
	ul#primary-menu > li > a{
		padding: 0 1.4em;
		border-right: 1px solid hsla(0, 0%, 0%, .7);
		display: block;
		transition:0.3s ease-in;
	}
	ul#primary-menu > li:last-child > a{
		border-right: none;
	}
	ul#primary-menu > li > a:hover{
		color: hsla(0, 0%, 0%, .7);
	}
	.menu-btn{display: none;}
}
@media screen and (min-width: 1200px) {
}


/******************************
primary-under
*******************************/
ul#primary-under{
	text-align: center;
	line-height: 120%;
	padding: 6em 0 7em;
	margin: auto;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	list-style: none;
}
ul#primary-under > li{
	text-align: center;
	padding:0;
	margin:0;
	position: relative;
}
ul#primary-under > li a{
	font-family: "M PLUS 1", sans-serif;
	font-weight: 500;
	color: hsl(0, 0%, 0%);
	text-decoration:none;
	display: block;
	transition: all .3s;
}
ul#primary-under > li > a{
	border-right: 1px solid hsla(0, 0%, 0%, .7);
	display: block;
	transition:0.3s ease-in;
}
ul#primary-under > li:last-child > a{
	border-right: none;
}
ul#primary-under > li > a:hover{
	color: hsla(0, 0%, 0%, .7);
}
@media screen and (max-width: 699px) {
	ul#primary-under{
		display: none;
	}
}
@media screen and (min-width: 700px) {
	ul#primary-under > li > a{
		padding: 0 1em;
	}
}
@media screen and (min-width: 1200px) {
	ul#primary-under > li > a{
		padding: 0 1.4em;
	}
}
