/* フォント
----------------------------------------------- */
h1,h2,h3,h4,h5 {
	font-size: 100%;
	line-height: 150%;
	}
	.en{
	text-transform: uppercase;
	}

/* header
----------------------------------------------- */

header {
	position: fixed;
	width: 100%;
	height: 100px;
	background: rgb(208,1,7,0.9);
	z-index: 10;
	}
	header .logo {
	padding: 0 12px;
	width: 120px;
	}
	header .logo img{
		width: 96px;
		height: 100px;
	}
	header .box{
	position: relative;
	max-width: 1640px;
	margin: 0 auto;
	}
	body header .header{
	display: flex;
	position: absolute;
	top: 0;
	right: 95px;
	width: 300px;
	text-align:  center;
	color: #FFFFFF;
	font-family: EB Garamond;
	font-size: 20px;
	line-height: 1.35em;
	letter-spacing: 1px;
	}
	header .link_text{
	position: relative;
	height: 100px;
	box-sizing: border-box;
	cursor: pointer;
	padding: 36px 40px 0;
	font-size: 20px;
    line-height: 1.35em;
	font-weight: 500;
	}
	header .link_text:hover,header .link:hover{
	background: #C4212E;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
	}
	header .link{
	height: 0;
	transition: all .5s;
	background: rgb(208,1,7,0.9);
	font-size: 18px;
	line-height: 1.35em;
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	text-align: center;
	pointer-events: none;
	opacity: 0;
	font-family: 'Noto Serif JP';
    font-weight: 500;
	}
	header a{
	box-sizing: border-box;
	color: #FFFFFF;
	text-decoration: none;
	}
	header .link.js-open{
		border-top: 1px solid #eb5863;
		height: 72px;
		padding-top:  24px;
		pointer-events: auto;
		opacity: 1;
	}
	@media screen and (max-width: 800px) {
	header {
	height: 50px;
	}
	header .logo {
	width: 50px;
	padding: 0 5%;
	}
	header .logo img{
		height: 50px;
		width: 50px;
	}
	body header .header{
	right: 5%;
	width: auto;
	font-size: 12px;
	line-height: 1.35em;
	}
	header .link_text{
	height: 50px;
	padding: 0 5vw;
    padding-top: 2em;
	font-size: 10px;
	line-height: 1.35em;
	}
	header .link{
	top: 50px;
	font-size: 10px;
	line-height: 1.35em;
	}
	header .link.js-open{
		height: 40px;
		padding-top: 12px;
	}
	}