/* ------------- */

/* 共通 */

/* ------------- */

body {
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	font-size: 18px;
	color: #000;
	/* max-width: 440px; */
	margin: 0 auto;
}

/* スマホで見たときは"SP"のclassがついた画像が表示される */
.sp {
	display: block !important;
}

.pc {
	display: none !important;
}

html {
	scroll-padding-top: 200px;
}

li {
	list-style: none;
}

li a {
	text-decoration: none;
}

h1 {
	font-size: 25px;
	font-weight: lighter;
}

h2 {
	font-size: 20px;
	font-weight: lighter;
}

h3 {
	font-size: 18px;
	font-weight: lighter;
}

.heading {
	color: #000;
	font-size: 1rem;
	letter-spacing: .04em;
	text-align: center;
	padding-bottom: 2em;
	font-weight: lighter;
}

.heading::before {
	display: block;
	font-weight: 100;
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: .02em;
	content: attr(data-label);
}

p {
	font-size: 16px;
}

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

section {
	padding: 80px 0;
}

img {
	width: 100%;
}

.white_txt {
	color: #fff;
}

.inner_main_txt {
	width: 95%;
	margin: 0 auto;
}

/*---------------------

ヘッダー

-----------------------*/
.header_sp {
	display: flex;
}

.h-top {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	text-align: center;
}

.h-top a {
	display: inline-flex;
	justify-content: center;
}

img.h-logo_img {
	width: 40%;
	padding-left: 20%;
}

/* ハンバーガーメニュー */
.nav_menu {
	visibility: hidden;
	opacity: 0;
	width: 100%;
	height: 100vh;
	background-color: #000000;
	position: fixed;
	top: 0;
	right: -120%;
	transition: all .5s;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-left: 0;
	margin-top: 0;
	align-items: initial;
	padding-top: 0.5em;
}

ul.nav {
	padding-left: 0;
}

.nav_menu.active {
	visibility: visible;
	right: 0;
	opacity: 1;
	width: 90%;
	padding-top: 20%;
	z-index: 9999;
	background-color: #151F24;
}

.nav li {
	font-size: 1.2em;
	font-weight: bold;
	padding: 8px 0 8px 15px;
	width: 75%;
	margin: 0 auto;
}

.nav a li {
	color: #fff;
	font-size: 1.2em;
	font-weight: lighter;
	margin: 0;
	padding-left: 1.5em;
}

li.navlist span {
	display: block;
	font-size: .7em;
}

.nav_btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	height: 65px;
	width: 70px;
	justify-content: center;
	padding-top: 0;
	z-index: 999999999999;
}

.nav_btn span:first-child {
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	border-radius: 2px;
	margin-bottom: 10px;
	background: #151F24;
}

.nav_btn span:nth-child(2) {
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	border-radius: 2px;
	margin-bottom: 10px;
	background: #151F24;
}

.nav_btn span:last-child {
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	border-radius: 2px;
	margin-bottom: 0px;
	background: #151F24;
}

.nav_btn.active span:first-child {
	background: #fff;
	transform: translate(3%, 15px) rotate(45deg);
	transition: transform .5s;
	width: 36px;
}

.nav_btn.active span:nth-child(2) {
	background: #fff;
	opacity: 0;
	transition: opacity .5s;
}

.nav_btn.active span:last-child {
	background: #fff;
	transform: translate(2%, -7px) rotate(-45deg);
	transition: .5s;
	width: 36px;
}

/*---------------------

メインビジュアル

-----------------------*/
.intro_mv {
	width: 100%;
	height: 640px;
	background: linear-gradient(to bottom, transparent 0%, transparent 79%, #ccc 102%), url(./img/mv_sp.jpg);
	background-repeat: no-repeat;
	background-position: 0px 72%;
	background-size: cover;
}

/* .intro_mv {
	width: 100%;
	height: 690px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(186, 186, 181, 0.4)), url(./img/mv_sp.jpg) no-repeat 0 30%;
	background-size: 100%;
	margin: 0 auto;
	background-position: center;
} */

/* 下からふわっと現れる */
/* jQueryで追加、削除 */
.fadeUp {
	-webkit-animation-name: fadeUpAnime;
	animation-name: fadeUpAnime;
	/*アニメーションの名前*/
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	/*アニメーションの実行時間*/
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	/*アニメーション後、要素が表示されたままにする*/
}

@-webkit-keyframes fadeUpAnime {
	0% {
		opacity: 0;
		/*非表示*/
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
		/*縦方向に100pxずらす*/
	}

	100% {
		opacity: 1;
		/*表示*/
		-webkit-transform: translateY(0);
		transform: translateY(0);
		/*元の位置*/
	}
}

@keyframes fadeUpAnime {
	0% {
		opacity: 0;
		/*非表示*/
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
		/*縦方向に100pxずらす*/
	}

	100% {
		opacity: 1;
		/*表示*/
		-webkit-transform: translateY(0);
		transform: translateY(0);
		/*元の位置*/
	}
}

.fadeUpTrigger {
	opacity: 0;
	/*非表示*/
}

.intro_mv_img {
	width: 52%;
}

.intro_mv_img.img-1 {
	position: absolute;
	top: 103%;
}

.intro_mv_img.img-2 {
	position: absolute;
	top: 117%;
	right: 0;
	width: 33%;
}

.intro_lead {
	position: absolute;
	top: 28%;
	left: 3%;
}

.intro_lead_main {
	font-size: 1.5em;
	padding-bottom: 7%;
}

.intro_lead_sub {
	font-size: .7em;
	letter-spacing: 1.2px;
	line-height: 2;
}

.intro_bg {
	background: linear-gradient(180deg, rgba(255, 255, 255, .7) -30%, rgba(63, 71, 75, 3) 86%, rgba(44, 53, 57, 9) 96%);
	height: 240px;
}

/*------------------

コンセプト 

--------------------*/
section#CONCEPT {
	background: linear-gradient(180deg, rgba(41, 50, 55, .9) -44%, rgba(21, 31, 36, 1) 45%);
	color: #fff;
	padding-top: 4em;
}

.concept_txt {
	width: 96%;
	margin: 0 auto;
	letter-spacing: 2px;
}

.intro_concept {
	width: 95%;
	margin: 0 auto;
}

.concept_txt h3 {
	padding-bottom: 5em;
	position: relative;
	font-weight: lighter;
}

.concept_txt h3::before {
	content: "";
	display: block;
	width: 80px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 6em;
	left: 0;
}

.concept_img_area {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-left: 0;
	margin-top: 4em;
}

.concept_img_area span {
	font-size: .7em;
	color: #D2D2D2;
}

.con-img_box {
	width: 33%;
	margin: 0;
	color: #fff;
	box-sizing: border-box;
	text-align: center;
}

/* スタート時の透過 */
.con-img_box {
	opacity: 0;
}

/* フェードアップ */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*------------------

メッセージ 

--------------------*/
section#MESSAGE {
	padding-bottom: 0;
}

.message_txt,
.message_img,
h3.message_main_txt {
	max-width: 400px;
}

.mes_bg {
	background-image: url(./img/river.png);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: 38rem 10rem;
	padding-bottom: 5rem;
}

.inner_main_txt.massage_txt {
	max-width: 500px;
}

.inner_main_txt {
	width: 71%;
	margin: 0 auto;
	text-align: justify;
	line-height: 1.7;
	letter-spacing: 2px;
}

.message_img {
	width: 52%;
	display: flex;
	margin: 15% auto;
	max-width: 330px;
}

h3.message_main_txt {
	text-align: center;
	position: relative;
	margin: 0 auto;
}

h3.message_main_txt:before {
	position: absolute;
	content: '“';
	top: -10px;
	left: 6%;
	font-size: 1.7em;
}

h3.message_main_txt::after {
	position: absolute;
	content: '”';
	top: -10px;
	right: 6%;
	font-size: 1.7em;
}

.chef_name {
	text-align: center;
	padding-top: 2em;
}

/*------------------

こだわり 

--------------------*/
section#KODAWARI {
	background-color: #151F24;
	color: #fff;
	padding-bottom: 0;
}

.kodawari_intro_area {
	padding-bottom: 2em;
}

.kodawari_intro_area h2 {
	text-align: center;
	font-size: 1.4em;
	margin-top: 0;
	padding-bottom: 1em;
}

.kodawari_main_area {
	background-size: cover;
	background-attachment: scroll;
	display: flex;
	height: 100%;
	padding: 100%;
	justify-content: center;
	align-items: center;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	padding: 0 2em;
}

@media screen and (max-width: 736px) {
	.kodawari_main_area {
		background-size: cover;
		background-attachment: scroll;
	}
}

.kodawari_hitsuji_area {
	background-image: url(./img/hitsuji.jpg);
	background-repeat: no-repeat;
	background-position: 64% 0;
	background-size: inherit;
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.kodawari_sakana_area {
	background-image: url(./img/sakana.jpg);
	background-repeat: no-repeat;
	background-position: 19% 0;
	background-size: inherit;
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.kodawari_yasai_area {
	background-image: url(./img//yasai.jpg);
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-size: inherit;
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.kodawari_hitsuji_area::before,
.kodawari_sakana_area::before,
.kodawari_yasai_area::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
}

.kodawari_body_ttl {
	position: absolute;
	font-size: 2.8em;
	left: 5%;
	top: 13%;
}

.kodawari_body_ttl_right {
	position: absolute;
	font-size: 2.8em;
	right: 80%;
	top: 13%;
}

.kodawari_body_txt {
	position: absolute;
	width: 90%;
	top: 27%;
	left: 50%;
	-webkit-transform: translatex(-50%);
	transform: translatex(-50%);
}

.kodawari_body_txt_right {
	position: absolute;
	width: 90%;
	top: 27%;
	left: 50%;
	-webkit-transform: translatex(-50%);
	transform: translatex(-50%);
}

.kodawari_body_txt p,
.kodawari_body_txt_right p {
	font-size: .8em;
	line-height: 2;
}

/*------------------

メニュー 

--------------------*/
.menu_images {
	position: relative;
	height: 205px;
	overflow: hidden;
	width: 86%;
	margin: 2em auto;
}

.menu_images .mySwiper {
	height: 100%;
	background: #fff;
}

.swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	-ms-touch-action: auto;
	touch-action: auto;
}

.swiper-slide.slide1,
.swiper-slide.slide3,
.swiper-slide.slide5 {
	background: #fff;
}

.menu_main_txt {
	width: 85%;
	margin: -10px auto 0px;
	line-height: 1.6;
}

.menu_lineup {
	width: 85%;
	margin: 0 auto;
	font-size: .9em;
	line-height: 1.8;
}

.menu_lineup span {
	font-size: .8em;
}

.menu_lunch,
.menu_dinner {
	margin-bottom: 2em;
}

span.swiper-pagination-bullet {
	background-color: aliceblue;
}

/*------------------

案内 

--------------------*/
section#INFORMATION {
	background-color: #151F24;
	color: #fff;
}

.information_images {
	width: 80%;
	margin: 0 auto;
}

.information_body_inner {
	width: 90%;
	margin: 4em auto;
	font-size: .8em;
	letter-spacing: 2px;
}

.information_body_txt {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 0.1px solid;
	padding: .8em 0;
	height: 4.5em;
}

.information_body_txt:nth-child(2),
.information_body_txt:nth-child(4),
.information_body_txt:nth-child(7) {
	align-items: baseline;
}

.information_body_txt span {
	width: 30%;
}

.information_body_txt p {
	width: 70%;
	font-size: 1em;
}

/* マップ */
.access_amp {
	text-align: center;
	margin: 0 auto;
}

.map_btn {
	width: 30%;
	border-bottom: 1px solid;
	font-size: .6em;
	padding-bottom: 3px;
	margin-top: 1em;
	margin-left: 62%;
}

.map_btn a {
	color: #fff;
}

.access p {
	text-align: center;
	padding-top: 2em;
	margin-bottom: 0;
}

.information_body_txt a {
	color: #fff;
	border-bottom: 1px solid;
}

.information_body_txt a:hover {
	opacity: .7;
}

/* コピーライト */
p.copy_area {
	background-color: #151F24;
	color: #fff;
	margin: 0;
	padding: 3em;
	text-align: center;
	font-size: .5em;
	border-top: 1px solid;
}

/* ------------- */

/* PC */

/* ------------- */
@media screen and (min-width: 751px) {

	/* パソコンで見たときは"pc"のclassがついた画像が表示される */
	.pc {
		display: block !important;
	}

	.sp {
		display: none !important;
	}

	.nav a li {
		color: #000;
	}

	ul.nav {
		padding-left: 0;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.header_pc {
		display: flex;
		width: 100%;
		align-items: center;
	}

	img.h-logo_img {
		width: 45%;
		padding-left: 0;
	}

	.h-top {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 25%;
		text-align: center;
	}

	.nav a li {
		color: #000;
		font-size: .9em;
		font-weight: lighter;
		margin: 0;
		padding-left: 2.5em;
		width: 100%;
	}

	.nav_menu_pc {
		display: flex;
		width: 85%;
		justify-content: flex-end;
		padding-right: 5%;
	}

	/* mv */
	.intro_mv_img {
		width: 36%;
	}

	.intro_mv_img.img-1 {
		top: 125%;
	}

	.intro_mv_img.img-2 {
		position: absolute;
		top: 150%;
		right: 0;
		width: 22%;
	}

	.intro_mv {
		width: 100%;
		height: 960px;
		background: linear-gradient(to bottom, transparent 0, transparent 78%, rgba(204, 204, 204, .9) 100%), url(./img/mv_pc.jpg);
		background-repeat: no-repeat;
		background-position: 0px 4%;
		background-size: cover;
	}

	.intro_bg {
		background: linear-gradient(180deg, rgba(255, 255, 255, 9) -40%, rgba(63, 71, 75, .6) 51%, rgba(44, 53, 57, .8) 100%);
		height: 500px;
	}

	.intro_lead {
		left: 5%;
		top: 41%;
	}

	.intro_lead_main {
		font-size: 2.3em;
		padding-bottom: 10%;
	}

	/* コンセプト */
	section#CONCEPT {
		background: linear-gradient(180deg, rgba(34, 43, 48, 0.7) -91px, rgba(21, 31, 36, 1) 65%);
		color: #fff;
		padding-top: 3em;
	}

	.concept_txt h3::before {
		top: 80%;
		left: 0;
		-webkit-transform: translatey(-50%);
		transform: translatey(-50%);
	}

	.concept_body_area.body_flex {
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
	}

	.concept_img_area {
		width: 50%;
	}

	.concept_txt {
		width: 30%;
		margin: 0 auto;
		padding: 0 5em;
	}

	.concept_txt h3 {
		padding-top: 1em;
	}

	/* メッセージ */
	.message_img {
		margin: 9% auto;
		max-width: 330px;
	}

	h3.message_main_txt:before {
		left: 0;
	}

	h3.message_main_txt::after {
		right: 0;
	}

	.mes_bg {
		background-size: 95rem 30rem;
		padding-bottom: 6rem;
	}

	/* こだわり */
	.kodawari_intro_area {
		padding-bottom: 4em;
	}

	.kodawari_main_area {
		height: 90vh;
	}

	.kodawari_body_txt {
		position: absolute;
		width: 55%;
		top: 40%;
		left: 35%;
	}

	.kodawari_body_ttl {
		left: 8%;
		top: 25%;
	}

	.kodawari_body_txt_right {
		position: absolute;
		width: 55%;
		top: 40%;
		left: 65%;
	}

	.kodawari_body_ttl_right {
		position: absolute;
		font-size: 2.8em;
		right: 57%;
		top: 25%;
	}

	.kodawari_hitsuji_area,
	.kodawari_sakana_area,
	.kodawari_yasai_area {
		height: 100vh;
	}

	/* メニュー */
	.menu_main_txt {
		width: 70%;
		margin: 0 auto;
	}

	.menu_body_area.body_flex {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: row-reverse;
		width: 80%;
		margin: 5em auto;
		max-width: 950px;
	}

	.menu_images {
		position: relative;
		height: 290px;
		overflow: hidden;
		width: 64%;
		margin: 2em auto;
	}

	.menu_lunch,
	.menu_dinner {
		margin-bottom: 1em;
	}

	.menu_lunch p,
	.menu_dinner p {
		margin: 0;
		margin-bottom: .3em;
	}

	.menu_lineup {
		width: 67%;
		font-size: .8em;
	}

	.menu_dinner {
		margin-bottom: 1em;
	}


	/* 案内 */
	.information_body_area.body_flex {
		display: flex;
		justify-content: space-between;
		width: 80%;
		margin: 0 auto;
		max-width: 950px;
	}

	.information_images {
		width: 90%;
		margin: 0 auto;
	}

	.information_body_inner {
		width: 80%;
		margin: 0em auto;
		font-size: .8em;
		letter-spacing: 2px;
		padding-left: 5em;
	}

	h2.heading.white_txt.pc {
		text-align: left;
		font-size: .8em;
	}

	.access.pc {
		margin-top: 3em;
	}

}