@charset "UTF-8";
/*----------------------------------------------------
	再設定
----------------------------------------------------*/
html {
	font-size: 16px;
}
@media (max-width: 767px) {
	html {
		font-size: 4.375vw;
	}
}

body {
	color: #000; 
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
	letter-spacing: .05em;
	-webkit-text-size-adjust: 100%;
}
@media (min-width: 768px) {
	body {
		min-width: 1100px;
	}
}
@media (max-width: 767px) {
	body {
		padding-top: 50px;
	}
}

body.no-scroll {
	height: 100vh; 
	overflow: hidden;
}

a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all .3s;
	        transition: all .3s; 

	     -o-transition: all .3s;
}

svg,
img {
	max-width: 100%;
	vertical-align: middle;
}

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
header {
	background-color: rgba(255, 255, 255, .9);
}
@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	header a:hover {
		color: #94835d;
	}
}
@media (max-width: 767px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999; 
		width: 100%;
	}
	header .container {
		padding: 0;
	}
}

.header-content {
	-webkit-align-items: center;
	        align-items: center; 
	-ms-flex-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;

	-webkit-box-align: center;
}
@media (min-width: 768px) {
	.header-content {
		-ms-flex-pack: justify;
		-webkit-justify-content: space-between;
		        justify-content: space-between;
		height: 125px; 

		-webkit-box-pack: justify;
	}
}
@media (max-width: 767px) {
	.header-content {
		height: 50px;
	}
}

.header-logo {
	letter-spacing: .1em;
}
@media (min-width: 768px) {
	.header-logo {
		font-size: 40px;
	}
}
@media (max-width: 767px) {
	.header-logo {
		padding-left: 20px;
		font-size: 24px;
	}
}

@media (min-width: 768px) {
	.header-nav ul {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display:         flex;
	}
	.header-nav li {
		margin-left: 2em;
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.header-nav {
		position: absolute;
		top: 50px;
		left: 0;
		display: none;
		width: 100%;
		height: calc(100vh - 50px);
		padding: 40px 40px 80px;
		background-color: rgba(255, 255, 255, .9);
	}
	.header-nav.open {
		display: block;
		-webkit-animation: fadeIn .3s;
		        animation: fadeIn .3s;
	}
	.header-nav li:not(:last-child) {
		border-bottom: 1px solid #000;
	}
	.header-nav a {
		display: block;
		padding: 1.25em 0;
		font-size: 16px;
		text-align: center;
	}
}

/*----------------------------------------------------
	ヘッダー　スマホメニュー
----------------------------------------------------*/
@media (min-width: 768px) {
	.header-menu {
		display: none;
	}
}

@media (max-width: 767px) {
	.header-menu {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2;
		width: 50px;
		height: 50px;
		cursor: pointer;
	}
	.header-menu span {
		position: absolute;
		left: 13px;
		display: block;
		width: 24px;
		height: 2px;
		background: #000;
		-webkit-transition: .35s ease-in-out;
		        transition: .35s ease-in-out; 

		     -o-transition: .35s ease-in-out;
	}
	.header-menu p {
		position: absolute;
		bottom: 2px;
		left: 0;
		width: 100%;
		font-size: 10px; 
		letter-spacing: 0;
		text-align: center;
	}
	.header-menu span:nth-child(1) {
		top: 14px;
	}
	.header-menu span:nth-child(2) {
		top: 20px; 
		width: 18px;
	}
	.header-menu span:nth-child(3) {
		top: 26px;
	}
	.header-menu.open span:nth-child(1) {
		top: 20px;
		-webkit-transform: rotate(45deg);
		    -ms-transform: rotate(45deg);
		        transform: rotate(45deg);
	}
	.header-menu.open span:nth-child(2) {
		left: 50%; 
		width: 0;
	}
	.header-menu.open span:nth-child(3) {
		top: 20px;
		-webkit-transform: rotate(-45deg);
		    -ms-transform: rotate(-45deg);
		        transform: rotate(-45deg);
	}
}

/*----------------------------------------------------
	メイン
----------------------------------------------------*/
/*----------------------------------------------------
	フッター
----------------------------------------------------*/
footer {
	color: #fff;
	background-color: #94835d;
}
footer a {
	color: #fff;
}
@media (min-width: 768px) {
	footer {
		padding: 20px 0;
	}
}
@media (max-width: 767px) {
	footer {
		padding: 16px 0;
	}
}

.footer-nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
}
@media screen and (min-width: 769px), only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
	.footer-nav a:hover {
		color: #eee9e2;
	}
}
@media (min-width: 768px) {
	.footer-nav {
		-webkit-align-items: center;
		        align-items: center; 
		-ms-flex-align: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		        justify-content: center;

		-webkit-box-align: center;
		-webkit-box-pack: center;
	}
	.footer-nav li:not(:first-child) {
		margin-left: 2em;
	}
}
@media (max-width: 767px) {
	.footer-nav {
		-ms-flex-pack: justify;
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap; 
		-webkit-justify-content: space-between;
		        justify-content: space-between;

		-webkit-box-pack: justify;
	}
	.footer-nav li {
		width: 50%;
		text-align: center;
	}
}

.footer-copyright {
	padding-top: 1.5em;
	font-size: 12px; 
	text-align: center;
}
@media (max-width: 767px) {
	.footer-copyright {
		margin: 0 -1em;
		font-size: 10px;
	}
}