@charset "UTF-8";
/* CSS Document */

/*ヘッダー*/
/*PC*/
@media only screen and (min-width: 1025px) {
	header {
		z-index: 100;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 90px;
		background: #f3f2ee;
		border-bottom: solid 1px #BCBCBC;
		box-sizing: border-box;
	}
	
	header a.logo {
		position: absolute;
		top: 50%;
		left: 80px;
		transform: translateY(-50%) translateX(0);
		width: 200px;
		height: auto;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	header {
		z-index: 100;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		background: #f3f2ee;
		border-bottom: solid 1px #BCBCBC;
		box-sizing: border-box;
	}
	
	header a.logo {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		width: 110px;
		height: auto;
	}
	
}

/*フッター*/
/*PC*/
@media only screen and (min-width: 1025px) {
	footer {
		position: relative;
		width: 100%;
		height: auto;
		margin: 60px auto 0 auto;
	}
	
	footer p.credit {
		padding: 8px 0 8px 0;
		font-size: 14px;
		font-weight: 400;
		letter-spacing: 1px;
		line-height: 14px;
		text-align: center;
		background: #f3f2ee;
	}
	
	#ft_nav {
		display: none;
	}
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	footer {
		position: relative;
		width: 100%;
		height: auto;
		margin: 40px auto 0 auto;
	}
	
	footer p.credit {
		padding: 6px 0 6px 0;
		font-size: 11px;
		font-weight: 400;
		letter-spacing: 0.5px;
		line-height: 11px;
		text-align: center;
		background: #f3f2ee;
	}
	
	#ft_nav {
		display: none;
	}
}

/*トップページ*/
/*PC*/
@media only screen and (min-width: 1025px) {
	/*メインビジュアル*/
	#top_mv {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 40px auto;
	}
	
	#top_mv img {
		display: block;
		position: relative;
		width: 100%;
		height: auto;
		object-fit: cover;
		object-position: center;
	}
	
	/*各種案内・ナビ*/
	#top_nav {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		position: relative;
		width: 920px;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	#top_nav a {
		display: block;
		position: relative;
		width: 300px;
		height: 100px;
		border: solid 1px #BCBCBC;
		border-radius: 3px;
		box-sizing: border-box;
	}
	
	#top_nav a:nth-of-type(2) {
		margin: 0 10px 0 10px;
	}
	
	#top_nav a font {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%) translateX(0);
		width: 70%;
		font-size: 18px;
		font-weight: 800;
		letter-spacing: 1px;
		line-height: 24px;
		text-align: center;
		color: #C9B254;
	}
	
	#top_nav a img {
		display: block;
		position: absolute;
		top: 50%;
		left: 15%;
		transform: translateY(-50%) translateX(0);
	}
	
	#top_nav a.icon_musee img {
		left: 7%;
		width: 85px;
		height: auto;
	}
	
	#top_nav a.icon_openstore img {
		width: 55px;
		height: auto;
	}
	
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	/*メインビジュアル*/
	#top_mv {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 40px auto;
	}
	
	#top_mv img {
		display: block;
		position: relative;
		width: 100%;
		height: auto;
		object-fit: cover;
		object-position: center;
	}
	
	/*各種案内・ナビ*/
	#top_nav {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
		width: 96%;
		height: auto;
		margin: 0 auto 0 auto;
	}
	
	#top_nav a {
		display: block;
		position: relative;
		width: 49.6%;
		height: 80px;
		border: solid 1px #BCBCBC;
		border-radius: 3px;
		box-sizing: border-box;
	}
	
	#top_nav a font {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%) translateX(0);
		width: 70%;
		font-size: 16px;
		font-weight: 800;
		letter-spacing: 1px;
		line-height: 20px;
		text-align: center;
		color: #C9B254;
	}
	
	#top_nav a img {
		display: block;
		position: absolute;
		top: 50%;
		left: 15%;
		transform: translateY(-50%) translateX(0);
	}
	
	#top_nav a.icon_musee img {
		left: 7%;
		width: 55px;
		height: auto;
	}
	
	#top_nav a.icon_openstore img {
		width: 35px;
		height: auto;
	}
	
	
}