@charset "UTF-8";

.fadeIn {
	will-change: transform;
	-webkit-transform: translateY(-100px);
	transform: translateY(-100px);
	opacity: 0;
	-webkit-transition: opacity .6s, -webkit-transform .6s;
	transition: opacity .6s, -webkit-transform .6s;
	transition: transform .6s, opacity .6s;
	transition: transform .6s, opacity .6s, -webkit-transform .6s;
}

.-animated.fadeIn,
.-animated .fadeIn {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	opacity: 1;
}

.op {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #dfdfdf;
	display: -webkit-box;
	display: flex;
	z-index: 1000;
}

.op_logo {
	margin: auto;
  	width: 64px;
  	height: 64px;
	background: url(../img/cmn/loading.png);
  	position: relative;
}

.hero {
	position: relative;
	background: #ccc
}

.slide {
	position: absolute !important;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.slide_item {
	height: 100vh !important;
	-webkit-transform: scale(1);
	transform: scale(1);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.slide_item.-moving {
	-webkit-animation: zoom_animation 13s linear infinite;
	animation: zoom_animation 13s linear infinite
}

.navi {
	position: absolute;
	right: 80px;
	top: 20%;
	z-index: 200;
}

.navi_list {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
	font-size: 16px;
}

.navi_list > li {
	-webkit-transition: all .6s;
	transition: all .6s;
	opacity: 0;
	-webkit-transform: translateY(-20px);
	transform: translateY(-20px);
}

body.-load .navi_list > li {
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

.navi_list > li a {
	position: relative;
	display: inline-block;
	padding: 15px;
}

.navi_list > li a:before {
	content: "";
	display: block;
	height: 1px;
	width: 16px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -8px;
}

.navi_list > li a span {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	display: inline-block;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition: -webkit-transform .6s;
	transition: -webkit-transform .6s;
	transition: transform .6s;
	transition: transform .6s, -webkit-transform .6s;
}

.navi_list > li a:hover span {
	-webkit-transform: translateY(15px);
	transform: translateY(15px);
	-webkit-transition: -webkit-transform .2s;
	transition: -webkit-transform .2s;
	transition: transform .2s;
	transition: transform .2s, -webkit-transform .2s;
}

.hero_scroll {
	bottom: 70px;
}

.news {
	background: #FFF;
	color: #141414;
	position: absolute;
	left: 0;
	bottom: 0;
	font-size: 12px;
	line-height: 1;
	z-index: 80;
	height: 70px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: end;
	align-items: flex-end;
	padding-left: 120px;
	width: 50%;
	padding-right: 50px;
}

.news_row {
	overflow: hidden;
}

.news_row > dt,
.news_row > dd {
}

.news_row > dt {
	float: left;
	white-space: nowrap;
	padding: 0.5em 0;
}

.news_row > dt:after {
	content: " ";
	margin-left: 10px;
}

.news_row > dd {
	margin-left: 6em;
	margin-top: 0.5em;
	height: 2em;
	overflow: hidden;
}

.news_list {
	-webkit-transition: margin .5s;
	transition: margin .5s;
}

.news_list > li {
	display: -webkit-box;
	display: flex;
}

.news_list > li a {
	display: block;
	padding: 0.5em 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
}

.news_list > li a:after {
	content: "";
	display: block;
	height: 1px;
	width: 100%;
	position: absolute;
	bottom: 0.3em;
	left: 5.8em;
	background: #333;
	-webkit-transform-origin: left;
	transform-origin: left;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	-webkit-transition: -webkit-transform .6s;
	transition: -webkit-transform .6s;
	transition: transform .6s;
	transition: transform .6s, -webkit-transform .6s;
}

.news_list > li a:hover:after {
	-webkit-transform-origin: right;
	transform-origin: right;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: -webkit-transform .4s;
	transition: -webkit-transform .4s;
	transition: transform .4s;
	transition: transform .4s, -webkit-transform .4s;
}

.news_list > li a time {
	margin-right: 10px;
}

.news_list > li a em {
}

.intro {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-bottom: 160px;
}

.intro:before {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background: #C7B389;
	z-index: 0;
}

.intro_wrap {
	position: relative;
	z-index: 10;
	width: 50%;
	display: -webkit-box;
	display: flex;
	padding: 10px 40px 460px;
}

.intro_cnt {
	display: inline-block;
	text-align: left;
	margin: auto;
}

.intro_ttl {
	font-size: 22px;
	font-weight: bold;
}

.intro_jp {
	margin-top: 40px;
}

.intro_en {
	margin-top: 40px;
}

.intro_img {
	position: relative;
	z-index: 10;
	width: 50%;
	padding-top: 220px;
	padding-left: 7%;
	padding-bottom: 9%;
}

.intro_btm {
	position: absolute;
	z-index: 5;
	left: 0;
	bottom: -160px;
	width: 63%;
	background-image: url('../img/home/img-intro02.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 500px;
}

.intro_btm img {
	display: none;
}

.intro_img_main {
	position: relative;
	z-index: 10;
	text-align: right;
	background-image: url('../img/home/img-intro01.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 790px;
}

.intro_img_main img {
	display: none;
}

.intro_img_logo {
	z-index: 0;
	position: absolute;
	right: 0px;
	top: 80px;
}



.intro_img_logo  img {
	opacity: 0.5;
}

.intro_img_sub {
	position: absolute;
	z-index: 20;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
	top: 67%;
	display: -webkit-box;
	display: flex;
	left: 0;
	width: 100%;
	padding-left: 14%;
	-webkit-box-pack: center;
	justify-content: center;
}

.intro_img_sub img {
}

.intro_img_sub_item1 {
	margin-left: 60px;
}

.intro_img_sub_item2 {
	margin-top: 70px;
}

.movie {
}

.movie_hd {
	text-align: center;
}

.movie_hd_ttl {
	display: inline-block;
}

.movie_hd_ttl em {
	display: inline-block;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	line-height: 1;
	white-space: nowrap;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.3em;
	margin: 0 auto;
}

.movie_hd_ttl small {
	display: block;
	font-size: 10px;
	margin-top: 10px;
	letter-spacing: 0.1em;
}

.movie_body {
	margin-top: 40px;
	text-align: center;
}

.movie_wrap {
	display: inline-block;
	position: relative;
	width: 100%;
	max-width: 1100px;
	overflow: hidden;
}

.movie_wrap:before {
	content: "";
	display: block;
	padding-top: 56.25%;
	background-image: url(../img/home/img-movie-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transform: scale(1);
	transition: transform 1s;
}

.movie_wrap:hover:before {
	transform: scale(1.1);
}

.movie_play {
	position: absolute;
	text-align: center;
	left: 0;
	top: 50%;
	width: 100%;
	text-align: center;
	transform: translateY(-50%);
}

.product {
	margin-top: 80px;
	padding-left: 80px;
}

.product_hd {
	position: relative;
}

.product_hd_ttl {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	line-height: 1;
	white-space: nowrap;
	position: absolute;
	top: 1.05em;
	left: 100px;
}

.product_hd_ttl em {
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.3em;
}

.product_hd_ttl small {
	font-size: 10px;
	margin-top: 20px;
	letter-spacing: 0.1em;
}

.product_hd_lead {
	padding: 20px  0 20px 220px;
}

.product_wrap {
	background: #C7B389;
}

.product_cnt {
	position: relative;
	padding: 100px 0 60px 180px;
	margin-right: -60px;
}

.product_link {
	position: absolute;
	line-height: 1;
	width: 200px;
	left: 0;
	bottom: 180px;
	text-align: center;
}

.product_link a {
	display: inline-block;
	font-size: 16px;
	padding: 10px;
	opacity: 0.5;
	transition: opacity .6s;
}

.product_link a:hover {
	opacity: 1;
}

.product_btn {
	position: absolute;
	z-index: 10;
	width: 200px;
	text-align: center;
	left: 0;
	bottom: 100px;
}

.product_btn button {
	-webkit-appearance: none;
	border: none;
	background: none;
	padding: 10px 20px;
	font-size: 36px;
	opacity: 0.3;
	cursor: pointer;
	-webkit-transition: opacity .6s;
	transition: opacity .6s;
}

.product_btn button:hover {
	opacity: 1;
}

.product_btn button.-prev {
}

.product_btn button.-next {
}

.product_slide {
	position: relative;
	z-index: 1;
}

.product_slide .slick-list {
	padding-top: 20px;
}

.product_slide_list {
}

.product_slide_item {
	margin: 0 20px;
	outline-style: none;
	text-align: center;
}

.product_slide_item_fig {
}

.product_slide_item_img {
	display: inline-block;
	box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
	-webkit-transition: box-shadow .6s, -webkit-transform .6s;
	transition: box-shadow .6s, -webkit-transform .6s;
	transition: transform .6s, box-shadow .6s;
	transition: transform .6s, box-shadow .6s, -webkit-transform .6s
}

.product_slide_item:hover .product_slide_item_img {
	box-shadow: 5px 16px 18px rgba(0, 0, 0, 0.2);
	-webkit-transform: translate(-10px, -10px);
	transform: translate(-10px, -10px);
	-webkit-transition: box-shadow .3s, -webkit-transform .3s;
	transition: box-shadow .3s, -webkit-transform .3s;
	transition: transform .3s, box-shadow .3s;
	transition: transform .3s, box-shadow .3s, -webkit-transform .3s
}

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

.product_slide_item_cap {
	margin-top: 30px;
}

.product_slide_item_ttl {
	font-weight: bold;
	font-size: 16px;
	line-height: 1.6;
}

.product_slide_item_price {
	line-height: 1;
	margin-top: 10px;
}

.product_slide_item_price em {
}

.product_slide_item_price small {
}


.type {
	padding: 80px 0 40px;
}

.type_hd {
	text-align: center;
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
	padding-left: 15%;
	margin-bottom: 100px;
}

.type_hd_ttl {
	display: inline-block;
}

.type_hd_ttl em {
	display: inline-block;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	line-height: 1;
	white-space: nowrap;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.3em;
	margin: 0 auto;
}

.type_hd_ttl small {
	display: block;
	font-size: 10px;
	margin-top: 10px;
	letter-spacing: 0.1em;
}

.type_hd:before {
	position: absolute;
	content: "";
	display: block;
	left: 0;
	z-index: 0;
	height: 100%;
	bottom: -100px;
	width: 95%;
	background: #C7B389;
}

.type_hd_ttl {
	position: absolute;
	z-index: 10;
	font-size: 22px;
	font-weight: bold;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	letter-spacing: 0.3em;
	right: 10%;
	line-height: 1;
	bottom: -6.55em;
	white-space: nowrap;
}

.type_hd_ttl span.-wh {
	color: #FFF;
}

.type_hd_img {
	position: relative;
	width: 100%;
	background-repeat: no-repeat;
	background-image: url('../img/home/img-intro.jpg');
	background-position: center;
	background-size: cover;
	z-index: 1;
}

.type_hd_img:before {
	content: "";
	display: block;
	padding-top: 400px;
}

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


.type_intro {
}

.type_intro_cnt {
	position: relative;
	padding: 100px 0 0px;
	max-width: 800px;
	line-height: 1.8;
}

.type_intro_cnt:before {
	content: "";
	display: block;
	width: 1px;
	height: 80px;
	background: #707070;
	position: absolute;
	left: 0px;
	top: 0;
}

.type_intro_ttl {
	font-size: 22px;
	font-weight: bold;
}

.type_intro_jp {
	margin-top: 30px;
}

.type_intro_en {
	margin-top: 20px;
}

.type_wrap {
	margin-top: 80px;
}

.type_list {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	flex-wrap: wrap;
}

.type_item {
	width: 31.54%;
	margin-top: 40px;
	margin-left: 2.69%;
	display: inline-block;
	will-change: transform;
	-webkit-transform: translateY(-100px);
	transform: translateY(-100px);
	opacity: 0;
	-webkit-transition: opacity .6s, -webkit-transform .6s;
	transition: opacity .6s, -webkit-transform .6s;
	transition: transform .6s, opacity .6s;
	transition: transform .6s, opacity .6s, -webkit-transform .6s;
}

.type_item:nth-child(2) {
	-webkit-transition-delay: .2s;
	transition-delay: .2s;
}

.type_item:nth-child(3) {
	-webkit-transition-delay: .4s;
	transition-delay: .4s;
}

.type_item:nth-child(4) {
	-webkit-transition-delay: .6s;
	transition-delay: .6s;
}

.type_item:nth-child(5) {
	-webkit-transition-delay: .8s;
	transition-delay: .8s;
}

.-animated .type_item {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	opacity: 1;
}

.type_item_img {
	-webkit-transition: opacity .6s;
	transition: opacity .6s;
}

.type_item:hover .type_item_img {
	opacity: 0.7;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}

.type_item_cap {
	text-align: left;
	padding: 20px 0;
}

.type_item_jp {
}

.type_item_en {
}

.menu {
	position: relative;
	padding-top: 50px;
	margin-bottom: 100px;
}

.menu:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 88%;
	height: 100%;
	background: #C7B389;
	z-index: 1;
}

.menu_list {
	position: relative;
	z-index: 10;
	padding-left: 12%;
	top: 100px;
}

.menu_item {
	background-repeat: no-repeat;
	background-position: right;
	background-color: #000;
	background-size: auto 100%;
	margin-top: 40px;
	color: #FFF;
}


.menu_item a {
	height: 420px;
	display: -webkit-box;
	display: flex;
	position: relative;
	-webkit-box-align: center;
	align-items: center;
}

.menu_item a:before {
	opacity: 0;
	background: #000;
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: opacity .6s;
	transition: opacity .6s;
}

.menu_item a:hover:before {
	opacity: .5;
}

.menu_item_img {
	display: none;
	position: relative;
	z-index: 1;
}

.menu_item_cnt {
	margin: auto 0;
	padding-left: 120px;
	position: relative;
	z-index: 1;
}

.menu_item_cnt:before {
	width: 90px;
	height: 1px;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0.7em;

	opacity: 0.7;
}

.menu_item_ttl {
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
}

.menu_item_jp {
	margin-top: 50px;
	line-height: 1.8;
	text-shadow: 0 0 5px rgba(0, 0, 0);
}

.menu_item_en {
	margin-top: 20px;
	line-height: 1.8;
}

.menu_img {
	position: absolute;
	z-index: 20;
	pointer-events: none;
	left: -220px;
	top: 46%;
	text-align: center;
	will-change: transform;
	-webkit-transform: translateY(-100px);
	transform: translateY(-100px);
	opacity: 0;
	-webkit-transition: opacity .6s, -webkit-transform .6s;
	transition: opacity .6s, -webkit-transform .6s;
	transition: transform .6s, opacity .6s;
	transition: transform .6s, opacity .6s, -webkit-transform .6s;
}

.menu_img.-animated {
	opacity: 0.5;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

.access {
	padding-top: 80px;
}

.access_hd {
	padding-left: 12%;
}

.access_hd_ttl {
	display: inline-block;
	vertical-align: bottom;
	margin-right: 30px;
}

.access_hd_ttl em {
	font-size: 22px;
	font-weight: bold;
	margin-right: 15px;
}

.access_hd_ttl small {
	font-size: 10px;
}

.access_hd_addr {
	display: inline-block;
	vertical-align: bottom;
}

.access_map {
	margin-top: 30px;
/*	padding-right: 0px;*/
	text-align: center;
	width: 100%;
	overflow: hidden;
}

.access_map iframe {
	height: 500px;
	width: 60%;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.sns {
	padding: 80px 0;
	text-align: center;
}

.sns_ttl {
	font-size: 22px;
	letter-spacing: 0.05em;
	line-height: 1;
}

.sns_ttl em {
	font-style: italic;
}

.sns_btn {
	margin-top: 20px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
}

.sns_btn > a {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
	width: 28px;
	height: 28px;
	color: #FFF;
	background: #000;
	border: 1px solid #fff;
	font-size: 12px;
	transition: background-color .3s, color .3s, border 0.3s;

}

.sns_btn > a:first-child {
	margin-left: 0;
}

.sns_btn > a:hover {
	color: #000;
	background: #fff;
	border: 1px solid #000;
}

@media screen and (min-width:641px) {
	.type_item:nth-child(-n+3) {
		margin-top: 0;
	}

	.type_item:nth-child(3n+1) {
		margin-left: 0;
	}

}

@media screen and (max-width:640px) {
	.hero_ttl img {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
	}

	.hero {
	}

	.slide {
	}

	.slide_item {
	}

	.slide_item.-moving {
	}

	.navi {
		display: none;
	}

	.navi_list {
	}

	.navi_list > li {
	}

	body.-load .navi_list > li {
	}

	.navi_list > li a {
	}

	.navi_list > li a:before {
	}

	.navi_list > li a span {
	}

	.navi_list > li a:hover span {
	}

	.hero_scroll {
	}

	.news {
		width: 90%;
		padding-left: 40px;
		padding-right: 20px;
	}

	.news_row {
	}

	.news_row > dt,
	.news_row > dd {
	}

	.news_row > dt {
		float: none;
		padding: 0;
	}

	.news_row > dt:after {
	}

	.news_row > dd {
		margin-left: 0;
		margin-top: 6px;
	}

	.news_list {
	}

	.news_list > li {
	}

	.news_list > li a {
	}

	.news_list > li a:after {
	}

	.news_list > li a:hover:after {
	}

	.news_list > li a time {
	}

	.news_list > li a em {
	}

	.intro {
		background: #C7B389;
		display: block;
		margin-bottom: 1px;
	}

	.intro:before {
		width: 10%;
		display: none;
	}

	.intro_wrap {
		width: 90%;
		padding: 40px 20px 190px;
		background: #fff;
	}

	.intro_cnt {
	}

	.intro_ttl {
		font-size: 18px;
	}

	.intro_jp {
		margin-top: 20px;
		font-size: 12px;
	}

	.intro_en {
		margin-top: 20px;
	}

	.intro_img {
		width: 100%;
		padding-top: 0;
		padding-left: 20%;
		margin-top: -80px;
		padding-bottom: 0;
	}

	.intro_btm {
		width: 100%;
		bottom: 0;
		position: static;
		margin-top: -130px;
		height: 270px;
	}

	.intro_btm img {
	}

	.intro_img_main {
		height: auto;
		background: none;
	}

	.intro_img_main img {
		display: block;
	}

	.intro_img_logo {
		width: 83%;
		top: -80px;
	}

	.intro_img_logo img {
		max-width: 100%;
		height: auto;
	}

	.intro_img_sub {
		padding-left: 20%;
	}

	.intro_img_sub img {
		width: 80px;
	}

	.intro_img_sub_item1 {
		margin-left: 20px;
	}

	.intro_img_sub_item2 {
	}

	.movie {
	}

	.movie_hd {
	}

	.movie_hd_ttl {
	}

	.movie_hd_ttl em {
		font-size: 18px;
	}

	.movie_hd_ttl small {
	}

	.movie_body {
		margin-top: 30px;
	}

	.movie_wrap {
	}

	.movie_wrap:before {
	}

	.movie_play {
	}

	.product {
		margin-top: 40px;
		padding-left: 40px;
	}

	.product_hd {
		padding: 40px 0 20px;
	}

	.product_hd_ttl {
		-webkit-writing-mode: initial;
		-ms-writing-mode: initial;
		writing-mode: initial;
		position: static;
	}

	.product_hd_ttl em {
		font-size: 18px;
		letter-spacing: 0.15em;
		margin-right: 15px;
	}

	.product_hd_ttl small {
	}

	.product_hd_lead {
		padding: 0;
		margin-top: 12px;
		font-size: 12px;
		padding-right: 20px;
	}

	.product_wrap {
	}

	.product_cnt {
		padding: 40px 0 60px;
	}

	.product_link {
		left: 0px;
		top: 40px;
		bottom: auto;
		width: auto;
	}

	.product_link a {
		font-size: 14px;
		padding: 20px;
	}

	.product_btn {
		position: static;
		width: 100%;
		text-align: right;
		padding-right: 60px;
	}

	.product_btn button {
		font-size: 28px;
	}

	.product_btn button:hover {
	}

	.product_btn button.-prev {
	}

	.product_btn button.-next {
	}

	.product_slide {
	}

	.product_slide .slick-list {
	}

	.product_slide_list {
	}

	.product_slide_item {
	}

	.product_slide_item_fig {
	}

	.product_slide_item_img {
	}

	.product_slide_item:hover .product_slide_item_img {
	}

	.product_slide_item_img img {
	}

	.product_slide_item_cap {
		margin-top: 15px;
	}

	.product_slide_item_ttl {
		font-size: 14px;
	}

	.product_slide_item_price {
		line-height: 1.6;
		font-size: 12px;
	}

	.product_slide_item_price em {
	}

	.product_slide_item_price small {
	}

	.type {
		padding: 60px 0 30px;
	}

	.type_hd {
	}

	.type_hd_ttl {
	}

	.type_hd_ttl em {
		font-size: 18px;
	}

	.type_hd_ttl small {
	}

	.type_wrap {
		margin-top: 50px;
	}

	.type_list {
		display: block;
	}

	.type_item {
		width: 100%;
		margin-left: 0;
		margin-top: 20px;
	}

	.type_item:first-child {
		margin-top: 0;
	}

	.type_item_img {
	}

	.type_item_cap {
	}

	.type_item_jp {
	}

	.type_item_en {
	}

	.menu {
		margin-bottom: 0;
		padding-top: 40px;
		padding-right: 40px;
		padding-bottom: 40px;
	}

	.menu:before {
		width: 100%;
		right: 40px;
		left: auto;
	}

	.menu_list {
		top: 0;
		padding-left: 0;
	}

	.menu_item {
		background-image: none !important;
		background: none;
		color: #141414;
	}

	.menu_item.-item01 {
	}

	.menu_item.-item02 {
	}

	.menu_item a {
		height: auto;
		display: block;
	}

	.menu_item_img {
		display: block;
		padding-left: 40px;
		margin-bottom: 30px;
		margin-right: -40px;
	}

	.menu_item_img:before {
		content: "";
		display: block;
		padding-top: 75%;
		background-repeat: no-repeat;
		background-position: right;
		background-size: cover;
	}


	.menu_item_img img {
		display: none;
	}

	.menu_item_cnt {
		padding-left: 40px;
		padding-right: 20px;
	}

	.menu_item_cnt:before {
		width: 30px;
		background: #000;
	}

	.menu_item_ttl {
		font-size: 18px;
	}

	.menu_item_jp {
		text-shadow: none;
		margin-top: 15px;
		font-size: 12px;
	}

	.menu_item_en {
		margin-top: 15px;
	}

	.menu_img {
		display: none;
	}

	.access {
		padding-top: 40px;
	}

	.access_hd {
		padding-left: 40px;
	}

	.access_hd_ttl {
		display: block;
		margin-right: 0;
	}

	.access_hd_ttl em {
		font-size: 18px;
	}

	.access_hd_ttl small {
	}

	.access_hd_addr {
		font-size: 13px;
		display: block;
	}

	.access_map {
		width:100%;
	}

	.access_map iframe {
		width:100%;
		height: 300px;
	}

	.sns {
		padding: 60px 0;
	}

	.sns_ttl {
		font-size: 18px;
	}

	.sns_ttl em {
	}

	.sns_btn {
	}

	.sns_btn > a {
	}

	.sns_btn > a:first-child {
	}
	
}

@-webkit-keyframes zoom_animation {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	100% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2)
	}

}

@keyframes zoom_animation {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	100% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2)
	}

}
.use {
	padding-bottom: 1px;
}

.use_hdimg {
	margin-top: 100px;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.use_hdimg:before {
	width: 90%;
	height: 100%;
	position: absolute;
	top: -100px;
	right: 0;
	content: "";
	display: block;
	background: #C7B389;
}

.use_hdimg:after {
	content: "";
	display: block;
	position: relative;
	width: 100%;
	height: 480px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('./img/home/img-intro.jpg');
}

.use_hdimg img {
	display: none;
}

.use_intro {
}

.use_intro_cnt {
	position: relative;
	padding: 100px 0px;
	max-width: 800px;
	line-height: 1.8;
}

.use_intro_cnt:before {
	content: "";
	display: block;
	width: 1px;
	height: 80px;
	background: #707070;
	position: absolute;
	left: 0px;
	top: 0;
}

.use_intro_ttl {
	font-size: 22px;
	font-weight: bold;
}

.use_intro_jp {
	margin-top: 30px;
}

.use_intro_en {
	margin-top: 20px;
}

.use_list {
}

.use_item {
	margin-top: 20px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.use_item:first-child {
	margin-top: 0;
}

.use_item_img {
	flex-shrink: 0;
}

.use_item_cnt {
	-webkit-box-flex: 1;
	flex: 1;
	background: #C7B389;
	padding: 60px 80px;
}

.use_item_ttl {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.6;
}

.use_item_text {
	margin-top: 20px;
	max-width: 560px;
}
.btmbtn {
		padding: 0 20px;
	}

	.btmbtn.-mt {
		margin-top: 40px;
	}

	.btmbtn a {
		font-size: 16px;
	}