@charset "UTF-8";



/*========================================

  Elements

========================================*/


body {
	font-family: sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	position: relative;
	min-width: 1200px;
	margin: 0;
	padding: 0;
	color: #333;
	background: #fff;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
}


html {
	overflow: auto;
}

html,
body {
	height: 100%;
}

/*
body.overflowhidden {
	overflow:hidden;
	height:100%;
}
*/

@media screen and (max-width: 767px) {
	body {
		width: 100vw;
		min-width: auto;
	}
}

p,
h1,
h2,
h3,
h4,
h5,
dt,
dd,
th,
td,
ul,
li {
	margin: 0;
	padding: 0;
}


p {
	line-height: 2em;
}

/* Link ---------------*/
a {
	overflow: hidden;
	text-decoration: none;
	color: #333;
}

a:visited {
	text-decoration: none;
	color: #333;
}

a:hover {
	text-decoration: underline;
	opacity: .7;
}

a:focus,
textarea:focus,
input:focus {
	border: none;
	outline: none;
}

img {
	vertical-align: bottom;
	border-style: none;
}

@media screen and (max-width: 767px) {
	img {
		max-width: 100%;
		height: auto;
	}
}

.spblock {
	display: none !important;
}

.pcblock {
	display: block !important;
}

@media screen and (max-width: 767px) {
	.spblock {
		display: block !important;
	}

	.pcblock {
		display: none !important;
	}
}



header {
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, .8);
	z-index: 40;
	width: 640px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	header {
		width: 100%;
	}
}

.wrap {
	position: relative;
	width: 640px;
	margin-left: 850px;
	z-index: 10;
	box-shadow: 0 0 20px rgba(0, 0, 0, .3);
	background-color: #fff;
}

@media screen and (max-width: 1500px) {
	.wrap {
		margin-left: calc(100vw - 700px);
	}
}

@media screen and (max-width: 1400px) {
	.wrap {
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 767px) {
	.wrap {
		width: 100%;
		margin-left: 0;
	}
}

.wrap img {
	width: 100%;
	height: auto;
}


/* ハンバーガーメニュー ボタン */

.panel-wrap {
	display: block;
	cursor: pointer;
	position: absolute;
	top: 55px;
	left: 550px;
	width: 50px;
	height: 50px;
	color: #b2833d;
	transition: .5s;
	z-index: 99999;
	padding: 0;
	border-radius: 50%;
}

#panel-btn {
	position: relative;
	width: 50px;
	height: 3px;
	margin: 0;
	padding: 0;
	list-style: none;
	cursor: pointer;
}

#panel-btn li {
	margin: 0;
	padding: 0;
}

#panel-btn-icon {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 3px;
	margin: 0;
	background: #b2833d;
	transition: .4s;
}

#panel-btn-icon:before,
#panel-btn-icon:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 50px;
	height: 3px;
	background: #b2833d;
	transition: .3s;
}

#panel-btn-icon:before {
	margin-top: -13px;
}

#panel-btn-icon:after {
	margin-top: 11px;
}

#panel-btn.closepanel #panel-btn-icon {
	background: transparent;
}

#panel-btn.closepanel #panel-btn-icon:before,
#panel-btn.closepanel #panel-btn-icon:after {
	margin-top: 0;
}

#panel-btn.closepanel #panel-btn-icon:before {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	background: #b2833d;
}

#panel-btn.closepanel #panel-btn-icon:after {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	background: #b2833d;
}

@media screen and (max-width: 767px) {
	.panel-wrap {
		top: 8vw;
		right: 5vw;
		left: auto;
		width: 30px;
		height: 30px;
	}

	#panel-btn {
		width: 30px;
		height: 2px;
	}


	#panel-btn-icon {
		width: 30px;
		height: 2px;
	}

	#panel-btn-icon:before,
	#panel-btn-icon:after {
		width: 30px;
		height: 2px;
	}

	#panel-btn-icon:before {
		margin-top: -8px;
	}

	#panel-btn-icon:after {
		margin-top: 6px;
	}
}




nav {
	position: absolute;
	z-index: 10;
	top: -101vh;
	right: 0;
	overflow-y: auto;
	width: 100%;
	margin: 0;
	padding: 0;
	transition: .5s;
	border: none;
	opacity: 0;
	background: #fff;
	height: 100vh;
}

@media screen and (max-width: 767px) {
	nav {
		width: 450px;
	}
}

nav.active {
	top: 0;
	opacity: 1;
}

nav ul {
	font-size: 20px;
	padding: 0;
	padding-top: 100px;
	list-style: none;
}

nav ul li {
	padding: .5em 0;
	letter-spacing: 1px;
	text-align: center;
	font-weight: bold;
}

nav ul li a,
nav ul li a:visited {
	color: #333;
	display: block;
}

nav ul li a:hover {
	color: #333;
	text-decoration: none;
	opacity: .7;
}

@media screen and (max-width: 767px) {
	nav {
		position: fixed;
		top: 0;
		right: -101vw;
		width: 102vw;
		padding-top: 20vw;
	}

	nav.active {
		right: 0;
	}

	nav ul {
		width: 70%;
		margin: 0 auto;
		padding-top: 0;
		font-size: 4vw;
	}

	nav ul li {
		position: relative;
		text-align: center;
		padding: .5em 0;
	}
}


.nav {
	position: absolute;
	bottom: 35px;
	right: calc(((100vw - 1490px) - 270px) / 2);
	border-radius: 20px;
	background-color: rgba(255, 255, 255, .7);
	padding: 30px;
	z-index: 5;
}

.nav ul {
	font-size: 13px;
	list-style: none;
}

.nav ul li {
	position: relative;
	padding: .5em 0;
	letter-spacing: 1px;
	font-weight: bold;
	text-align: center;
}

.nav ul li a:hover {
	text-decoration: none;
	opacity: .7;
	transition: .3s;
}

@media screen and (max-height: 1000px) {
	.nav ul li {
		padding: .3em 0;
	}
}

@media screen and (max-height: 950px) {
	.nav {
		padding: 20px 30px;
	}

	.nav ul li {
		padding: .1em 0;
	}
}

@media screen and (max-height: 900px) {
	.nav {
		display: none;
	}
}



@media screen and (max-width: 1790px) {
	.nav {
		display: none;
	}
}


.slider .hero {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.slider .hero span {
	display: block;
}

.slider .hero .txt_l {
	position: absolute;
	top: 100px;
	right: calc(100vw - 850px + 50px);
}

@media screen and (max-height: 1000px) {
	.slider .hero .txt_l {
		top: 50px;
	}
}

@media screen and (max-height: 930px) {
	.slider .hero .txt_l {
		top: 20px;
	}
}

@media screen and (max-height: 900px) {
	.slider .hero .txt_l img {
		width: auto;
		height: 140vh;
	}
}

@media screen and (max-height: 680px) {
	.slider .hero .txt_l {
		display: none;
	}
}




@media screen and (max-width: 1500px) {
	.slider .hero .txt_l {
		right: auto;
		left: -100px;
	}
}

@media screen and (max-width: 1600px) {
	.slider .hero .txt_l {
		left: -150px;
	}
}

@media screen and (max-width: 1400px) {
	.slider .hero .txt_l {
		display: none;
	}
}


.slider .hero .txt_r {
	position: absolute;
	top: 100px;
	right: calc(((100vw - 1490px) - 220px) / 2);
}


@media screen and (max-width: 1750px) {
	.slider .hero .txt_r {
		display: none;
	}
}


/*========================================

  main

========================================*/
.wrap {
	display: block;
	position: relative;
}

.slider {
	background-image: url(../img/slider/up.jpg), url(../img/slider/btm.jpg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center top, center bottom;
	position: fixed;
	width: 100vw;
	height: 100vh;
}


@media screen and (max-width: 767px) {
	.slider {
		display: none;
	}
}