@charset "UTF-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap);
html{
	font-size: 62.5%;
}
body{
	font-size: 1em;
}
/* --------------

ヘッダー 

-----------------*/

.header__new{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	background: #fefefe;
	border-bottom: 1px solid #efefef;
	padding-bottom: 47px;
	font-family: 'M PLUS 1p', sans-serif!important;
	line-height:1;
}
.header__space{
	display: block;
	height: 114px;
}
.header__logo{
	position: relative;
	width: 1200px;
	margin: 0 auto;
}
.header__logo--inner{
	width: 212px;
	padding-top: 45px;
}
.header__nav{
	position: absolute;
	top: 0;
	right: 0;
}
.header__nav--ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	font-size: 1.4rem;
	font-weight: 600;
}
.header__nav--ul a{
	text-decoration: none!important;
	color: #090909;
}
.header__nav--li1{
	/* padding: 50px 25px; */
	padding: 50px 11px;
	position: relative;
	transform: rotate(0.05deg);
}
.header__nav--li1-last{
	/* padding: 50px 25px; */
	padding: 50px 22px;
	position: relative;
	transform: rotate(0.05deg);
}
.header__nav--li1::before{
	content: '';
	display: block;
	position: absolute;
	border-left: 1px dotted #E3E3E3;
	width: 1px;
	height: 1.8rem;
	top: 48px;
	right: 0px;
}
.header__nav--li2{
	background: #FFD43F;
	/* padding: 50px 36px; */
	padding: 50px 22px;
	transform: rotate(0.05deg);
}
.header__nav--li3{
	background: #F8C000;
	/* padding: 50px 54px; */
	padding: 50px 22px;
	transform: rotate(0.05deg);
}
.header__nav--li4{
	background: #DFAD00;
	/* padding: 50px 54px; */
	padding: 50px 22px;
	transform: rotate(0.05deg);
}

/* -------------------

 ヘッダーメニュー切り替え

 ---------------------*/
#header__nav--pc{}
#nav__switchbtn{display: none;}
#header__nav--sp{display: none;}

@media(max-width: 1200px){
	.header__new{
		border-bottom: 1px solid #efefef;
		padding-bottom: 0;
	}
	.header__space{
		display: block;
		height: 65px;
	}
	#header__nav--pc{display: none;}
	#nav__switchbtn{
		display: block;
		background: #F8C000;
		height: 65px;
		width: 65px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 10001;
	}
	#nav__switchbtn--block{
		display: block;
		height: 40px;
		width: 40px;
		margin: 22px auto;
	}
	#nav__switchbtn span{
		display: block;
		width: 24px;
		height: 1px;
		background: #fcfcfc;
		margin: 8px auto;
		position: relative;
		transition: all .2s;
	}
	.header__nav--ul{
		height: 100vh;
		list-style: none;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}
	.header__nav--ul li{
		background-color: transparent;
		font-size: 1.8rem;
		padding: 12px 0;
	}
	.header__nav--li1::before{
		content: '';
		display: none;
	}
	#nav__switchbtn span:nth-child(1).active{
		transition: all .2s;
		transform: rotate(45deg);
		top: 9px;
	}
	#nav__switchbtn span:nth-child(2).active{
		display: none;
	}
	#nav__switchbtn span:nth-child(3).active{
		transition: all .2s;
		transform: rotate(-45deg);
		top: 0px;
	}
	#header__nav--sp.active{
		display: block;
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		background: #F8C000;
	}
	.header__logo--inner{
		width: 212px;
		padding-top: 23px;
		padding-left: 30px;
		padding-bottom: 22px;
	}
}
@media(max-width: 320px){
	.header__logo--inner{
		width: 176px;
		padding-top: 26px;
		padding-left: 18px;
	}
}