@charset("utf-8") html {
	font-family: '游ゴシック', 'Yu Gothic', 'メイリオ',
		'Meiryo', sans-serif;
}

html h1,
	{
	font-size: 1.5rem;
}

html h2 {
	font-size: 2.5rem;
}

body {
	background-image: url(../image/texture.png);
	background-blend-mode: soft-light;
}

/*header*/
.header {
	background-image: url(../image/texture.png);
	top: 0;
	padding-left: 4vw;
	display: flex;
	flex-flow: column;
	width: 100%;
	height: 16vh;
	z-index: 2;
}

.logo {
	position: relative;
	padding: 1vh 0
}

.logo img {
	height: 12vh;
}


#gloval-navi {
	position: fixed;
	top: 50px;
	right: -250px;
	width: 250px;
	height: 80%;
	padding-top: 80px;
	background: rgba(229, 99, 34);
	font-size: 1.5rem;
	z-index: 5;
	opacity: 0.9;
}

nav ul li {
	text-align: end;
	padding: 20px;
	padding-right: 40px;
}

nav ul li a {
	text-decoration: none;
	color: #e2dbdb
}

.btn-gnavi {
	position: fixed;
	top: 55px;
	right: 40px;
	width: 36px;
	height: 30px;
	z-index: 9;
	box-sizing: border-box;
	cursor: pointer;
	transition: all 400ms;

}

.btn-gnavi span {
	position: absolute;
	width: 36px;
	height: 6px;
	transition: all 400ms
}

.btn-gnavi span:nth-child(1) {
	top: 0;
	height: 12px;
	border-radius: 20px 20px 1px 1px;
	background-color: #f4b147
}

.btn-gnavi span:nth-child(2) {
	top: 16px;
	width: 36px;
	height: 6px;
	border-radius: 10px;
	background-color: #993300;
}

.btn-gnavi span:nth-child(3) {
	top: 26px;
	height: 6px;
	border-radius: 1px 1px 5px 5px;
	background-color: #f4b147
}



.btn-gnavi.open span {
	background: #fff;
	width: 36px;
	height: 6px;
	background: #666;
	border-radius: 10px;
	transition: all 400ms
}

.btn-gnavi.open span:nth-child(1) {
	width: 30px;
	transform: translate(10px, 25px) rotate(135deg)
}

.btn-gnavi.open span:nth-child(3) {
	width: 30px;
	transform: translate(10px, -19px) rotate(-135deg)
}

.btn-gnavi p {
	position: absolute;
	display: block;
	top: -40px;
	color: rgba(229, 99, 34);
}

/*main--------*/

.item {
	position: relative;
	height: 100vh;
}

.item h2 {
	position: absolute;
	top: 8rem;
	left: 8rem;
}

.item p {
	font-size: 1.25rem;
	line-height: 2.3;
	position: absolute;
	top: 14rem;
	left: 8rem;
}
.item span {
	color:#993300;
}

.item img {
	opacity: 0.4;
	height: 100%;
	width: 100%;
}

#chef {
	position: fixed;
	height: 100%;
	right: 0px;
	bottom: 0;
	z-index: 2;
	opacity: 0;
	transform: translateX(-100px)
}

.first {
	width: 100%;
	height: 80vh;
}

/*footer-----*/
footer {
	height: 3vh;
	width: 100%;
	bottom: 0;
	text-align: right;
	position: relative;
}

footer p {
	position: absolute;
	bottom: 0;
	left: 1vw;
}

/*Scroll-----*/

.scroll span {
	position: absolute;
	top: 40px;
	left: 50%;
	width: 24px;
	height: 24px;
	margin-left: -12px;
	border-left: 1px solid black;
	border-bottom: 1px solid black;
	transform: rotate(-45deg);
	animation: sdb 1.5s infinite;
	box-sizing: border-box;
}

.anime {
	opacity: 0;
	transform: translateY(50px);
}

@keyframes sdb {
	0% {
		transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}

.fadein {
	animation-name: fdin;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

@keyframes fdin {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
		transform: translate(0);
	}
}

.chefanime {
	animation-name: chef;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

@keyframes chef {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 0.85;
		transform: translate(0);
	}
}

/*max-width900px-----------*/
@media(max-width:900px) {
	html h1 {
		font-size: 1.15rem;
	}

	html h2 {
		font-size: 1.5rem;
	}

	.header {
		top: 0;
		padding-left: 4vw;
		display: flex;
		justify-content: flex-start;
		width: 100%;
		height: 20vh;
		background-color: white;
		z-index: 2;
	}

	.logo {
		height: auto;
	}

	.btn-gnavi {
		position: fixed;
		top: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
		z-index: 9;
		box-sizing: border-box;
		cursor: pointer;
		transition: all 400ms;
	}

	.btn-gnavi p {
		position: absolute;
		display: block;
		top: 15px;
		color: rgba(229, 99, 34);
		font-size: 10px
	}

	.first {
		height: 80vh;
	}

	#chef {
		width: 60%;
		height: auto;
		position: absolute;
		bottom: 15vh;
		right: 0px;
		opacity: 0;
		z-index: 1;
		transform: translateX(-100px)
	}


	.item {
		display: flex;
		justify-content: center;
	}



	.item h2 {
		position: absolute;
		top: 8rem;
		left: 1rem;
	}

	.item p {
		font-size: 1rem;
		line-height: 1.6;
		position: absolute;
		top: 14rem;
		left: 1rem;
	}
}
