@charset "utf-8";


/* wrapper
----------------------------------------------- */
#wrapper {
	overflow: hidden;
}
.inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

html { scroll-behavior: smooth;}

/* main
----------------------------------------------- */
.main {
	background: url(../img/bg_main.jpg) center center no-repeat;
	background-size: cover;
	height: 100vh;
	padding: 20px 20px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}
.main .mainitem {
	position: relative;
	z-index: 2;
}
.main .maincont {
	font-size: 24px;
	letter-spacing: 2px;
	color: #fff;
	font-weight: 600;
	margin-top: 70px;
	position: relative;
	z-index: 2;
}
.logo {
	position: absolute;
	left: 60px;
	top: 40px;
	z-index: 2;
}
.mainbtn {
	position: absolute;
	right: 30px;
	bottom: 50px;
	z-index: 2;
}
.mainbtn a {
	display: block;
}
.mainbtn2 {
	position: absolute;
	right: 220px;
	bottom: 50px;
	z-index: 2;
}
.mainbtn2 a {
	display: block;
}
.mainleft {
	position: absolute;
	left: 0;
	bottom: 20px;
	z-index: 1;
}
.mainright {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

@media (max-width: 1024px) {
.mainleft {
	width: 300px;
}
.mainright {
	width: 400px;
}
.mainbtn {
	right: 20px;
	bottom: 20px;
}
.mainbtn2 {
	right: 220px;
	bottom: 20px;
}
}
@media (max-width: 767px) {
.main .mainitem {
	width: 150px;
	top: -160px;
}
.main .maincont {
	font-size: 18px;
	margin-top: -130px;
}
.logo {
	left: 20px;
	top: 20px;
	width: 120px;
}
.mainbtn {
	width: 150px;
	right: 10px;
	bottom: 20px;
}
.mainbtn a {
	display: block;
}
.mainbtn2 {
	width: 150px;
	right: 10px;
	bottom: 180px;
}
.mainbtn2 a {
	display: block;
}
.mainleft {
	bottom: 0;
	width: 200px;
}
.mainright {
	width: 250px;
}
}


/* future
----------------------------------------------- */
.future {
	background: #fff;
	padding: 60px 0 80px;
	position: relative;
}
.future:before {
	position: absolute;
	content: "";
	background: url(../img/bg_future.jpg) center center repeat;
	height: 330px;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 0;
}
.future .futurebam {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
.future .inner {
	position: relative;
	z-index: 2;
}
.future .futurebox {
	margin: 0 0 0 -50px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	height: 430px;
	flex-direction: row-reverse;
}
.future .futureimg {
	flex-shrink: 0;
	margin-right: 20px;
}
.future .futurein {
	display: flex;
	align-items: flex-start;
}
.future .futuretxt {
	line-height: 1.8;
	font-weight: 500;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
}
.future .futuretit {
	flex-shrink: 0;
	margin-left: 60px;
}

@media (max-width: 1024px) {
.future .futurebox {
	margin: 0;
	align-items: center;
	height: auto;
	flex-direction: column;
}
.future .futureimg {
	margin: 30px 0 0;
	text-align: center;
}
.future .futurein {
	height: 400px;
}
}
@media (max-width: 767px) {
.future {
	padding: 30px 0 40px;
}
.future .futurein {
	height: 500px;
}
.future .futuretxt {
	line-height: 1.5;
}
.future .futuretit {
	width: 70px;
	margin-left: 20px;
}
}



/* product
----------------------------------------------- */
.product {
	background: url(../img/bg_product.jpg) center center no-repeat;
	background-size: cover;
	padding: 60px 0;
}
.product .productlist {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: -15px 0;
}
.product .productlist li {
	width: calc((100% - 73px)/3);
	margin: 15px 36px 15px 0;
	position: relative;
}
.product .productlist li:nth-child(3n) {
	margin-right: 0;
}
.product .productlist li a {
	display: block;
	color: #fff;
}
.product .productimg img {
	width: 100%;
}
.product .productmess {
	background: url(../img/mess_product.jpg) center center repeat;
	padding: 20px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.product .producttit {
	font-size: 18px;
	line-height: 1;
	font-weight: 600;
	margin-right: 5px;
}
.product .productarrow {
	color: #e7ebef;
	font-size: 11px;
	line-height: 1.1;
	padding-right: 32px;
	flex-shrink: 0;
	position: relative;
}
.product .productarrow:before {
	position: absolute;
	content: "";
	background: url(../img/arrow_product.png) center center no-repeat;
	width: 28px;
	height: 8px;
	right: 0;
	top: 1px;
	transition: all 0.2s !important;
	-moz-transition: all 0.2s !important; /* Firefox */
	-webkit-transition: all 0.2s !important; /* Chrome&Safari */
	z-index: 1;
}
.product .productlist li a:hover .productarrow:before {
	right: -10px;
	transition: all 0.2s !important;
	-moz-transition: all 0.2s !important; /* Firefox */
	-webkit-transition: all 0.2s !important; /* Chrome&Safari */
}
.product .producthd {
	transform: translateY(-3px);
}
.product .producthd img {
	width: 100%;
}

@media (max-width: 1024px) {
.product .productlist li {
	width: calc((100% - 36px)/2);
}
.product .productlist li:nth-child(3n) {
	margin-right: 36px;
}
.product .productlist li:nth-child(2n) {
	margin-right: 0;
}
}
@media (max-width: 767px) {
.product {
	padding: 40px 0;
}
.product .productlist {
	display: block;
	max-width: 356px;
	margin: 0 auto;
}
.product .productlist li {
	width: auto;
	margin: 0;
}
.product .productlist li+li {
	margin-top: 30px;
}
.product .productlist li:nth-child(3n) {
	margin-right: 0;
}
.product .producttit {
	font-size: 16px;
}
.product .producthd {
	transform: translateY(0);
}
}



/* food
----------------------------------------------- */
.food {
	padding: 60px 0 70px;
}
.food .foodhd {
	overflow: hidden;
	margin-bottom: 25px;
}
.food .foodhd .foodhdin {
	font-size: 24px;
	color: #5a2e24;
	font-weight: 700;
	padding-right: 35px;
	position: relative;
}
.food .foodhd .foodhdin:before {
	position: absolute;
	content: "";
	width: 2000px;
	height: 1px;
	background: #ac9691;
	left: 100%;
	top: 8px;
	z-index: 1;
}
.food .foodbox+.foodbox {
	margin-top: 60px;
}
.food .foodtit {
	padding: 15px 155px 15px 20px;
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	background: url(../img/bg_food.jpg) 0 0 repeat;
	position: relative;
	margin-bottom: 25px;
}
.food .foodtit:before {
	position: absolute;
	content: "";
	background: url(../img/bam_food.png) 0 0 no-repeat;
	width: 156px;
	height: 120px;
	right: -4px;
	top: -28px;
	z-index: 1;
}
.food .foodlist {
	display: flex;
	flex-wrap: wrap;
	margin: -15px 0;
}
.food .foodlist li {
	width: calc((100% - 109px)/4);
	margin: 15px 36px 15px 0;
}
.food .foodlist li:nth-child(4n) {
	margin-right: 0;
}
.food .foodlist li a {
	display: block;
}
.food .foodlist .foodimg img {
	width: 100%;
}
.food .foodlist .foodname {
	margin-top: 10px;
	font-weight: 600;
	letter-spacing: -0.1px;
}
.food .foodlist .foodprice {
	font-size: 14px;
	color: #730d0c;
	font-weight: 600;
	margin-top: 2px;
}

@media (max-width: 1024px) {
.food .foodlist li {
	width: calc((100% - 72px)/3);
}
.food .foodlist li:nth-child(4n) {
	margin-right: 36px;
}
.food .foodlist li:nth-child(3n) {
	margin-right: 0;
}
}
@media (max-width: 767px) {
.food {
	padding: 40px 0;
}
.food .foodhd .foodhdin {
	font-size: 18px;
	padding-right: 20px;
}
.food .foodbox+.foodbox {
	margin-top: 30px;
}
.food .foodtit {
	padding: 10px 80px 10px 15px;
	font-size: 16px;
}
.food .foodtit:before {
	background: url(../img/bam_food.png) 0 0 no-repeat;
	background-size: 78px 60px;
	width: 78px;
	height: 60px;
	right: -4px;
	top: -10px;
}
.food .foodlist {
	justify-content: space-between;
	margin: -10px 0;
}
.food .foodlist li {
	width: 48%;
	margin: 10px 0;
}
.food .foodlist li:nth-child(4n) {
	margin-right: 0;
}
.food .foodlist .foodprice {
	font-size: 14px;
}
}



/* banner
----------------------------------------------- */
.banner {
	text-align: center;
}
.banner a {
	display: inline-block;
}

@media (max-width: 767px) {
.banner {
	max-width: 320px;
	margin: 0 auto;
}
}



/* footer
----------------------------------------------- */
#footer {
	padding: 50px 20px;
}
#footer .copyright {
	font-size: 10px;
	color: #5a2e24;
	font-weight: 700;
	text-align: center;
}

@media (max-width: 767px) {
#footer {
	padding: 30px 20px;
}
}



