@charset "utf-8";
/* CSS Document */

html {
	font-size: 62.5%;
	height: 100%;
	overflow-y: scroll;
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}

body{
	color: #442c16;
	font-family: "ryo-gothic-plusn","Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;
    font-size: 1.6rem;
	letter-spacing: 0.01em;
	line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*overscroll-behavior: none;*/
	min-height: 100%;
    width: 100%;
    min-width: 1280px;
    margin: 0 auto;
    position: relative;
    text-size-adjust: 100%;
    word-wrap: break-word;
}

selection{
	display: block;
	margin-bottom: 150px;
	padding-top: 1px;
}
@media screen and (max-width:1280px) {
	selection{
		margin-bottom: 75px;
	}
}

.inner{
	
}

img {
    height: auto
}
a{
	transition: opacity 400ms ease;
	cursor: pointer;
}
a:hover{
	opacity: 0.6;
}

.pc{
	display: block;
}
.sp{
	display: none;
}

@media screen and (max-width:1280px) {
	body{
		min-width: 100%;
	}
	body.fix{
		overflow: hidden;
		height: 100%;
	}
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	img.pc{
		display: block;
	}
	img.sp{
		display: none;
	}
}
@media screen and (max-width:480px) {
	img.pc{
		display: none;
	}
	img.sp{
		display: block;
	}
}

ruby > rt{
	font-size: 32%;
	margin-bottom: .4rem;
}

/*wrap***************************************/
.mainWrap{
	position: relative;
	overflow: hidden;
}


/*lead***************************************/
.lead{
	font-size: 1.7rem;
	line-height: 2;
}
#index .lead{
	text-align: center;
}
.lead.sml{
	font-size: 1.5rem;
	line-height: 1.6;
}
.lead.sml + .sml{
	margin-top: 20px;
}
.lead a{
	text-decoration: underline;
}
.red{
	color: #e60012;
	line-height: 1.6;
}
.gray{
	color: #666;
	line-height: 1.6;
}

@media screen and (max-width:1280px) {
	.lead{
		font-size: 1.4rem;
		margin-left: 20px;
		margin-right: 20px;
	}
	.lead.sml{
		font-size: 1.2rem;
	}
}
@media screen and (max-width:480px) {
	.lead{
		text-align: left;
	}
	#index .lead{
		text-align: left;
	}
}


/*btn***************************************/
.btn_w a{
	color: #442c16;
	font-size: 1.7rem;
	text-align: center;
	background-color: #fff;
	border-radius: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 60px;
	margin: 50px auto 0;
	position: relative;
}
.btn_w a::before{
	content: "▶";
	font-size: 1.2rem;
	background-color: #f2efe6;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 	26px;
	height: 26px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
}
.btn_b a{
	color: #442c16;
	font-size: 1.7rem;
	text-align: center;
	background-color: #f2efe6;
	border-radius: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 60px;
	margin: 50px auto 0;
	position: relative;
}
.btn_b a::before{
	content: "▶";
	font-size: 1.2rem;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 	26px;
	height: 26px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
}
.sizeL a{
	width: 450px;
}
@media screen and (max-width:1280px) {
	.btn_w a,
	.btn_b a{
		font-size: 1.5rem;
		width: 200px;
		height: 45px;
		margin: 40px auto 0;
	}
	.btn_w a::before,
	.btn_b a::before{
		font-size: 1.0rem;
		width: 	20px;
		height: 20px;
		right: 10px;
	}
	.sizeL a{
		width: 280px;
	}
}


/*header***************************************/
.header{
	width: 100%;
	padding: 20px 40px 30px;
	background-color: rgb(255 255 255 / 0.85);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 100;
}
#index .header{
	background: none;
}
.header a:hover{
	opacity: 1;
}
.header_inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	position: relative;
}
.header_navi{
	margin-top: 5px;
}
.header_navi ul{
	display: flex;
	align-items: center;
}
.header_navi li{
	font-size: 1.5rem;
	margin-right: 25px;
}
.header_navi li:last-of-type{
	margin-right: 0;
}
.header_navi li a{
	color: #442c16;
	display: flex;
	position: relative;
	text-decoration: none;
}
#index .header_navi li a{
	color: #fff;
}
.header_navi li a::after{
	background-color: #f9b900;
	bottom: -6px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
	width: 100%;
}
.header_navi li a:hover::after {
	transform: scale(1, 1);
}
.header h1 span{
	font-size: 0;
	background: url("../images/common/loogo.png")center center / 340px 100px no-repeat;
	width: 360px;
	height: 106px;
	display: block;
}
#index .header h1 span{
	background: url("../images/common/loogo_w.png")center center / 340px 100px no-repeat;
}
.header .shopping span{
	display: flex;
	align-items: center;
}
.header .shopping span::after{
	content: "";
	background: url("../images/common/icon_shop_f.png")center center / 26px 26px no-repeat;
	width: 26px;
	height: 26px;
	display: block;
	margin-left: 5px;
}
#index .header .shopping span::after{
	background: url("../images/common/icon_shop.png")center center / 26px 26px no-repeat;
}
/**/
.header .instagram span{
	display: flex;
	align-items: center;
	font-size: 0;
}
.header .instagram span::after{
	content: "";
	background: url("../images/common/icon_instagram_f.png")center center / 26px 26px no-repeat;
	width: 26px;
	height: 26px;
	display: block;
	margin: 0 5px;
}
#index .header .instagram span::after{
	background: url("../images/common/icon_instagram.png")center center / 26px 26px no-repeat;
}
/**/
.header .facebook span{
	display: flex;
	align-items: center;
	font-size: 0;
}
.header .facebook span::after{
	content: "";
	background: url("../images/common/icon_facebook_f.png")center center / 26px 26px no-repeat;
	width: 26px;
	height: 26px;
	display: block;
	margin: 0 5px;
}
#index .header .facebook span::after{
	background: url("../images/common/icon_facebook.png")center center / 26px 26px no-repeat;
}

@media screen and (max-width:1280px) {
	.header{
		padding: 5px 20px 10px 15px;
	}
	#index .header{
		background-color: rgb(255 255 255 / 0.85);
	}
	.header_inner{
		justify-content: flex-start;
	}
	.header h1 span{
		background: url("../images/common/loogo.png")center center / 155px 45.5px no-repeat;
		width: 155px;
		height: 45.5px;
	}
	#index .header h1 span{
		background: url("../images/common/loogo.png")center center / 155px 45.5px no-repeat;
	}
	.header .instagram span,
	.header .facebook span{
		font-size: 1.6rem;
	}
	.header .shopping span::after,
	.header .instagram span::after,
	.header .facebook span::after{
		content: "";
		width: 22px;
		height: 22px;
		display: block;
	}
	.header .shopping span::after,
	#index .header .shopping span::after{
		background: url("../images/common/icon_shop_f.png")center center / 22px 22px no-repeat;
	}
	.header .instagram span::after,
	#index .header .instagram span::after{
		background: url("../images/common/icon_instagram_f.png")center center / 22px 22px no-repeat;
	}
	.header .facebook span::after,
	#index .header .facebook span::after{
		background: url("../images/common/icon_facebook_f.png")center center / 22px 22px no-repeat;
	}
	
	/*sp menu*/
	.menu-icon {
		width: 40px;
		height: 50px;
		position: fixed;
		top: 6px;
		right: 15px;
		cursor: pointer;
		z-index: 1001;
		display: inline-block;
		pointer-events: auto;
	}
	.menu-toggle{
		display: none;
	}
	.menu-icon span {
		display: block;
		height: 1px;
		margin: 9px 0;
		background: #442c16;
		border-radius: 2px;
		transition: 0.4s;
	}
	.menu-icon span:last-of-type{
		background: none;
		margin-top: -0px;
	}
	.menu-icon span:last-of-type::after{
		content: "MENU";
		color: #442c16;
		font-size: 11px;
		letter-spacing: 0.1em;
		display: flex;
        justify-content: center;
	}
	.menu-icon.active span:nth-child(1) {
		transform: translateY(5px) rotate(15deg);
	}
	.menu-icon.active span:nth-child(2) {
		transform: translateY(-5px) rotate(-15deg);
	}
	.menu-icon.active span:nth-child(3)::after {
		content: "CLOSE";
	}
	.overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.7);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease-in-out;
		z-index: 999;
	}
	.overlay.active{
		opacity: 1;
		visibility: visible;
	}
	.header_navi {
		position: fixed;
		top: 0;
		right: -280px;
		width: 280px;
		height: 100%;
		background: #fff;
		padding: 40px 20px;
		margin-top: 0;
		box-shadow: 2px 0 8px rgba(0,0,0,0.2);
		transition: right 0.4s ease;
		z-index: 1000;
		-webkit-overflow-scrolling: touch;
		overflow-y: auto;
		overflow-x: hidden;
	}
	.header_navi.active{
		right: 0;
	}
	.header_navi ul{
		display: block;
	}
	.header_navi li {
		border-bottom: 1px solid #ededed;
		margin: 0;
	}
	.header_navi li a {
		text-decoration: none;
		color: #442c16;
		font-size: 1.6rem;
		transition: color 0.3s;
		padding: 20px 0;
	}
	#index .header_navi li a{
		color: #442c16
	}
	.header_navi li a::after{
		background: none;
	}
}


/*footer***************************************/
.footer{
	padding: 160px 0 50px;
	background-color: #f9b900;
	width: 100%;
}
.footer h2{
	text-align: center;
	margin: 0 auto 130px;
}
.footer h2 a:hover{
	opacity: 1;
}
.footer h2 img{
	width: 240px;
}
.footer .footer_navi{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 80px;
}
.footer .footer_navi li{
	color: #442c16;
	font-size: 1.8rem;
	border-right: 1px solid #fff;
	padding-right: 30px;
	margin-right: 30px;
}
.footer .footer_navi li:last-of-type{
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}
.footer .footer_links{
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 110px;
}
.footer .footer_links li{
	color: #442c16;
	font-size: 1.8rem;
	display: flex;
	justify-content: center;
	margin: 0 25px;
}
.footer .footer_links li span{
	display: flex;
	align-items: center;
}
.footer .footer_links li span::after{
	content: "";
	width: 26px;
	height: 26px;
	display: block;
	margin-left: 12px;
}
.footer .footer_links .shopping{
	width: 100%;
	margin-bottom: 60px;
	position: relative;
}
.footer .footer_links .shopping::after{
	content: "";
	border-bottom: 1px solid #442c16;
	width: 126px;
	position: absolute;
	bottom: -30px;
	left: 0;
	right: 0;
	margin: auto;
}
.footer .footer_links .shopping span::after{
	background: url("../images/common/icon_shop_f.png")center center / 26px 26px no-repeat;
}
.footer .footer_links .instagram span::after{
	background: url("../images/common/icon_instagram_f.png")center center / 26px 26px no-repeat;
}
.footer .footer_links .facebook span::after{
	background: url("../images/common/icon_facebook_f.png")center center / 26px 26px no-repeat;
}
.footer .banner{
	text-align: center;
	margin-bottom: 40px;
}
.footer .copy{
	color: #442c16;
	text-align: center;
}

@media screen and (max-width:1280px) {
	.footer{
		padding: 80px 25px 35px;
	}
	.footer h2{
		margin: 0 auto 40px;
	}
	.footer h2 img{
		width: 150px;
	}
	.footer .footer_navi{
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 0;
	}
	.footer .footer_navi li,
	.footer .footer_links li{
		text-align: left;
		border-right: none;
		border-bottom: 1px solid #fff;
		padding-right: 0;
		margin-right: 0;
		width: 100%;
	}
	.footer .footer_navi li:first-of-type{
		border-top: 1px solid #fff;
	}
	.footer .footer_navi li a,
	.footer .footer_links li a{
		font-size: 1.6rem;
		display: block;
		padding: 15px 0 15px 10px;
	}
	.footer .footer_links{
		text-align: left;
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 40px;
	}
	.footer .footer_links li{
		display: block;
		margin: 0;
	}
	.footer .footer_links li span{
		display: flex;
		align-items: center;
	}
	.footer .footer_links li span::after{
		content: "";
		width: 26px;
		height: 26px;
		display: block;
		margin-left: 12px;
	}
	.footer .footer_links .shopping{
		width: 100%;
		margin-bottom: 0;
	}
	.footer .footer_links .shopping::after{
		content: none;
	}
	.footer .footer_links .shopping span::after{
		background: url("../images/common/icon_shop_f.png")center center / 26px 26px no-repeat;
	}
	.footer .footer_links .instagram span::after{
		background: url("../images/common/icon_instagram_f.png")center center / 26px 26px no-repeat;
	}
	.footer .footer_links .facebook span::after{
		background: url("../images/common/icon_facebook_f.png")center center / 26px 26px no-repeat;
	}
	.footer .banner{
		margin: 0 auto 25px;
	}
	.footer .banner img{
		width: 150px;
	}
	.footer .copy{
		font-size: 1.2rem;
	}
}


/*mv***************************************/
.mv{
	text-align: center;
	position: relative;
	height: 630px;
}
.mv .inner{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.mv h2{
	color: #fff;
	font-size: 4.2rem;
	font-family: "ryo-text-plusn", serif;
	letter-spacing: .03em;
	text-align: center;
	margin-top: 110px;
}
#index .mv h2{
	font-size: 0;
}
#index .mv{
	height: 100vh;
	min-height: 630px;
	background: url("../images/index/mv.jpg")center center /cover no-repeat;
}
#l_about .mv{
	height: 630px;
	background: url("../images/about/mv.jpg")center center /cover no-repeat;
}
#l_menu .mv{
	height: 630px;
	background: url("../images/menu/mv.jpg")center center /cover no-repeat;
}
#l_access .mv{
	height: 630px;
	background: url("../images/access/mv.jpg")center center /cover no-repeat;
}


@media screen and (max-width:1280px) {
	.mv{
		width: 100%;
	}
	.mv h2{
		font-size: 2.3rem;
		margin-top: 60px;
	}
	#index .mv{
		height: 700px;
		min-height: inherit;
	}
	#l_about .mv,
	#l_menu .mv,
	#l_access .mv{
		height: 300px;
		min-height: inherit;
	}
}
@media screen and (max-width:480px) {
	#index .mv{
		background: url("../images/index/mv_sp.jpg")center center /cover no-repeat;
		height: 540px;
	}
	#l_about .mv{
		background: url("../images/about/mv_sp.jpg")center center /cover no-repeat;
		height: 250px;
	}
	#l_menu .mv{
		background: url("../images/menu/mv_sp.jpg")center center /cover no-repeat;
		height: 250px;
	}
	#l_access .mv{
		background: url("../images/access/mv_sp.jpg")center center /cover no-repeat;
		height: 250px;
	}
}


/*title***************************************/
.title{
	margin-top: 150px;
	margin-bottom: 80px;
}
.title h3{
	color: #442c16;
	font-size: 3.8rem;
	font-family: "ryo-text-plusn", serif;
    letter-spacing: .03em;
	text-align: center;	
}
@media screen and (max-width:1280px) {
	.title{
		margin: 75px 20px 30px;
	}
	.title h3{
		font-size: 2.5rem;
	}
}


/*h***************************************/
h4{
	color: #442c16;
	font-size: 2.8rem;
	font-family: "ryo-text-plusn", serif;
	margin-bottom: 35px;
}
#index h4{
	text-align: center;
}
@media screen and (max-width:1280px) {
	h4{
		font-size: 1.9rem;
		line-height: 1.6;
		margin: 0 20px 20px;
	}
	
}


/*new_inner***************************************/
.new_inner{
	display: flex;
	justify-content: center;
}
.new_inner .new_box{
	margin: 0 20px;
}
@media screen and (max-width:1280px) {
	.new_inner{
		display: block;
	}
	.new_inner .new_box{
		text-align: center;
		margin: 0 20px;
	}
	.new_inner .new_box + .new_box{
		margin-top: 20px;
	}
}


/*fboxWrap***************************************/
.fboxWrap{
	display: flex;
	justify-content: center;
	align-items: center;
}
.fbox{
	width: 50%;
}
.fbox .photo img{
	width: 100%;
}
.fbox .title{
	margin-top: 0;
}
@media screen and (max-width:1280px) {
	.fboxWrap{
		flex-direction: column;
	}
	.fbox{
		width: 100%;
	}
	.fbox:first-of-type{
		order: 2;
		margin-top: 50px;
	}
}


/*index***************************************/
#index .mainWrap selection:last-of-type{
	margin-bottom: 0;
}
#index #about{
	background-color: #f2efe6;
	margin-bottom: 0;
}
#index #menu{
	margin-bottom: 0;
}
#index #menu .photo{
	margin-top: 110px;
}
#index #map{
	background-color: #f2efe6;
	padding: 1px 0 150px;
}
.footer_info_map{
	text-align: center;
}
.footer_info_map_inner{
	text-align: center;
	width: 800px;
	margin: 50px auto 0;
}
@media screen and (max-width:1280px) {
	#index #about{
		padding-top: 75px;
	}
	#index #menu .photo{
		margin-top: 50px;
	}
	#index #menu .photo img{
		width: 100%;
	}
	#index #map{
		padding-bottom: 75px;
	}
	.footer_info_map_inner{
		width: 90%;
		margin: 30px auto 0;
	}
	.footer_info_map_inner{
		width: 480px;
		margin: 30px auto 0;
	}
}
@media screen and (max-width:480px) {
	.footer_info_map_inner{
		width: 90%;
	}
}


/*l_about***************************************/
#about .inner{
	width: 1280px;
	margin: 0 auto
}
#l_about .fboxWrap.right .fbox:first-of-type{
	order: 2;
}
#l_about .fboxWrap.right .fbox:last-of-type{
	order: 1;
	margin: 0 50px 0 0;
}
#l_about .fbox:last-of-type{
	margin-left: 50px;
}
#l_about .fbox .photo{
	width: 640px;
}
#l_about .fbox h4{
	position: relative;
	display: flex;
	align-items: center;
}
#l_about .fbox h4::before{
	content: "";
	border-left: 2px solid #f9b900;
	display: inline-block;
	height: 32px;
	margin-right: 17px;
}
@media screen and (max-width:1280px) {
	#about .inner{
		width: 100%;
		margin: 0 auto;
	}
	#l_about .fboxWrap.right .fbox:last-of-type{
		margin: 0 auto;
	}
	#l_about .fbox:first-of-type{
		margin-top: 30px;
	}
	#l_about .fbox:last-of-type{
		margin-left: 0;
	}
	#l_about .fbox .photo{
		width: calc(100% - 40px);
		margin: 0 auto;
	}
	#l_about .fbox h4{
		position: relative;
		display: flex;
		align-items: center;
	}
	#l_about .fbox h4::before{
		content: "";
		border-left: 2px solid #f9b900;
		display: inline-block;
		height: 32px;
		margin-right: 17px;
	}
	#l_about .fboxWrap + .fboxWrap{
		margin-top: 40px;
	}
}


/*l_access***************************************/
#l_access .access_map_image{
	width: 1100px;
	height: 720px;
	margin: 0 auto 20px;
}
.access_information{
	background-color: #f9f9f9;
	width: 1100px;
	margin: 0 auto;
}
.access_information .fboxWrap{
	align-items: stretch;
}
.access_information .fbox{
	border-bottom: 1px solid #fff;
	padding: 35px;
}
.access_information .fboxWrap .fbox:first-of-type{
	flex-grow: 1;
	border-right: 1px solid #fff;
	width: 20%;
}
.access_information .fboxWrap .fbox:last-of-type{
	width: 80%;
}
.access_information .fbox h5{
	font-size: 1.6rem;
	font-weight: bold;
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.access_information .fbox p{
	font-size: 1.6rem;
	line-height: 1.6;
}
.access_information .fbox p strong{
	display: block;
}
.access_information .fbox p small{
	font-size: 1.4rem;
	display: block;
}
.access_information .fbox p a{
	text-decoration: underline;
}
@media screen and (max-width:1280px) {
	#l_access .access_map_image{
		width: calc(100% - 40px);
		height: 400px;
	}
	.access_information{
		width: calc(100% - 40px);
	}
	.access_information .fboxWrap{
		align-items: center;
		flex-direction: column;
	}
	.access_information .fbox{
		border-bottom: 1px solid #fff;
		padding: 12px 20px;
	}
	.access_information .fboxWrap .fbox:first-of-type{
		order: 1;
		border-right: none;
		margin-top: 0;
		width: 100%;
	}
	.access_information .fboxWrap .fbox:last-of-type{
		order: 2;
		width: 100%;
	}
	.access_information .fboxWrap + .fboxWrap{
		border-top: 5px solid #fff;
	}
	.access_information .fbox h5{
		font-size: 1.5rem;
		justify-content: flex-start;
	}
	.access_information .fbox p{
		font-size: 1.4rem;
	}
	.access_information .fbox p small{
		font-size: 1.3rem;
	}
}

/*l_menu***************************************/
#l_menu .content {
    display: none;
}
#l_menu .content.show {
    display: block;
	margin: 0 auto;
}
#l_menu .tab_container{
	text-align: center;
	border-bottom: 1px solid #442c16;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 100px 0 70px;
	position: relative;
}
#l_menu .content .txt_area{
	text-align: center;
	margin-bottom: 75px;
}
.txt_area p{
	line-height: 1.6;
}
#l_menu .content .fboxWrap{
	border-bottom: 1px solid #eee;
	padding-bottom: 70px;
	margin: 0 auto 70px;
	max-width: 1280px;
}
#l_menu .content .fbox:first-of-type{
	background-color: #eee;
	width: 500px;
	height: 500px;
	margin-right: 56px;
	position: relative;
}
#l_menu .content .fbox:first-of-type .photo{
	width: 500px;
}
#l_menu .content .fbox:last-of-type{
	width: 780px;
}
#l_menu h5{
	color: #f9b900;
	font-size: 1.7rem;
	font-weight: bold;
	margin: 30px 0 12px;
}
#l_menu #preloader{
	font-size: 1.4rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
}
@media screen and (max-width:1280px) {
	#l_menu .content.show {
		max-width: auto;
	}
	#l_menu .tab_container{
		margin: 50px 0 30px;
	}
	#l_menu .content .txt_area{
		font-size: 1.4rem;
		margin: 0 20px 35px;
	}
	#l_menu .content .fboxWrap{
		padding-bottom: 50px;
		margin-bottom: 50px;
	}
	#l_menu .content .fbox:first-of-type{
		background-color: #fff;
		width: 70%;
		height: auto;
		margin: 0 auto 20px;
	}
	#l_menu .content .fbox:first-of-type .photo{
		width: 100%;
		margin-bottom: 0;
	}
	#l_menu .content .fbox:last-of-type{
		width: 100%;
	}
	#l_menu .fbox:first-of-type {
		order: 1;
	}
	#l_menu .fbox:last-of-type {
		order: 2;
	}
	#l_menu h4{
		font-size: 2.2rem;
		text-align: center;
		margin-bottom: 15px;
	}
	#l_menu h5{
		font-size: 1.5rem;
		margin: 20px 20px 10px;
	}
}

/*tab*/
#l_menu .tab{
	color: #442c16;
	font-size: 2.8rem;
	font-family: "ryo-text-plusn", serif;
    letter-spacing: .03em;
	background-color: #f2efe6;
	border-radius: 5px 5px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 360px;
	height: 90px;
	margin: 0 20px;
	border: none;
	cursor: pointer;
	position: relative;
}
#l_menu .tab.active{
	background-color: #fff;
	border: 1px solid #442c16;
	border-bottom: 1px solid #fff;
	cursor: default;
	z-index: 1;
	margin-bottom: -2px;
}
@media screen and (max-width:1280px) {
	#l_menu .tab{
		font-size: 1.6rem;
		width: 170px;
		height: 50px;
		margin: 0 5px;
	}
	#l_menu .tab.active{
	}
}

/*table*/
.slide_table{
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
	margin: 36px 0 30px;
}
.slide_table.scroll{
	overflow-x: scroll;
}
.slide_table table{
	background-color: #eee;
}
.slide_table td{
	color: #442c16;
	font-size: 1.6rem;
	text-align: center;
	border: 1px solid #fff;
	padding: 10px 30px;
	min-width: 200px;
}
.slide_table td small{
	font-size: 1.3rem;
}
.list_table{
	margin: 25px 0 0;
}
.list_table table{
	width: 100%;
}
.list_table tbody{
	display: flex;
	width: 100%;
}
.list_table tr{
	display: flex;
	flex-direction: column;
}
.list_table tr:first-of-type{
	width: 35%;
}
.list_table tr:last-of-type{
	width: 65%;
}
.list_table td{
	border-bottom: 1px solid #eee;
	padding: 15px 0 15px;
}
.list_table td:first-of-type{
	padding-top: 0;
}
.list_table small{
	font-size: 1.4rem;
}
.list_table a{
	text-decoration: underline;
}
@media screen and (max-width:1280px) {
	.slide_table{
		overflow-x: scroll;
		margin: 20px 0 20px 20px;
	}
	.slide_table td{
		font-size: 1.3rem;
		padding: 8px 10px;
		min-width: 150px;
	}
	.slide_table td small{
		font-size: 1.1rem;
	}
	.list_table{
		margin: 25px 20px 0;
	}
	.list_table table{
		width: 100%;
	}
	.list_table tbody{
		display: flex;
		align-items: stretch;
		width: 100%;
	}
	.list_table tr{
		display: flex;
		flex-direction: column;
	}
	.list_table tr:first-of-type{
		width: 60%;
		/*flex-grow: 1;*/
	}
	.list_table tr:last-of-type{
		width: 40%;
	}
	.list_table td{
		font-size: 1.4rem;
		line-height: 1.6;
		padding: 15px 0 15px;
	}
	.list_table td:first-of-type{
		padding-top: 15px;
	}
	.list_table td.l2{
		height: 76px;
	}
	.list_table tr:first-of-type td{
		display: flex;
		justify-content: flex-start;
		/*flex-grow: 1;*/
	}
	.list_table tr:last-of-type td{
		text-align: right;
	}
	.list_table small{
		font-size: 1.1rem;
	}
}

/*icon*/
.icon{
	display: flex;
	margin: 25px 0 0;
}
.icon p{
	color: #fff;
	font-size: 1.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 100px;
	padding: 6px 16px;
	margin: 0 1px;
}
.icon .shipping{
	background-color: #71a9d4;
}
.icon .trademarkR{
	background-color: #f9b900;
}
.icon .reservable{
	background-color: #ee7fa1;
}
@media screen and (max-width:1280px) {
	.icon{
		margin: 15px 20px 0;
	}
	.icon p{
		font-size: 1.1rem;
		min-width: 80px;
		padding: 6px 15px;
	}
}

/*slick*/
.slick-arrow{
	display: flex;
    justify-content: center;
    align-items: center;
}
.slick-prev{
	left: 6px;
	z-index: 5;
}
.slick-next{
	right: 6px;
}
.slick-prev:before{
	content: "◀";
	font-size: 1.3rem;
}
.slick-next:before{
	content: "▶";
	font-size: 1.3rem;
}
@media screen and (max-width:480px) {
	.slick-prev{
		left: 2px;
	}
	.slick-next{
		right: 2px;
	}
	.slick-prev:before{
		font-size: 1.2rem;
	}
	.slick-next:before{
		font-size: 1.2rem;
	}
}

/*gift*/
#l_menu .gift{
	background-color: #f2efe6;
	padding: 1px 0 150px;
	margin-top: 150px;
}
#l_menu .gift .lead,
#l_menu .yoyaku .lead{
	text-align: center;
}
#l_menu .gift .ex_giftWrap{
	border-radius: 5px;
	background-color: #fff;
	width: 990px;
	padding: 45px 50px 60px;
	margin: 70px auto 0;
}
#l_menu .gift h5{
	color: #442c16;
	font-size: 2.0rem;
	text-align: center;
	margin: 0 auto 35px;
}
#l_menu .gift .fWrapC{
	display: flex;
	justify-content: space-between;
}
#l_menu .gift .fwrap{
	display: flex;
	flex-direction: column;
	width: 270px;
}
#l_menu .gift .photo{
	margin-bottom: 12px;
}
#l_menu .gift .txtWrap{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
#l_menu .gift p.txt{
	flex-grow: 1;
	line-height: 1.6;
	margin-bottom: 20px;
}
#l_menu .gift p.price{
	border-top: 1px solid #eee;
	text-align: right;
	padding: 15px 0 0 0;
	margin: auto 0;
}
@media screen and (max-width:1280px) {
	#l_menu .gift{
		padding: 1px 0 75px;
		margin-top: 75px;
	}
	#l_menu .gift .lead,
	#l_menu .yoyaku .lead{
		text-align: left;
	}
	#l_menu .gift .ex_giftWrap{
		width: calc(100% - 40px);
		padding: 30px 15px 30px;
		margin: 40px auto 0;
	}
	#l_menu .gift h5{
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
	#l_menu .gift .fWrapC{
		flex-direction: column;
		justify-content: flex-start;
	}
	#l_menu .gift .fwrap{
		flex-direction: row;
		width: 100%;
	}
	#l_menu .gift .fwrap + .fwrap{
		border-top: 2px solid #f2efe6;
		margin-top: 15px;
		padding-top: 15px;
	}
	#l_menu .gift .photo{
		width: 45%;
		margin-bottom: 0;
		margin-right: 10px;
	}
	#l_menu .gift .photo img{
		width: 100%;
	}
	#l_menu .gift .txtWrap{
		width: 55%;
		flex-grow: initial;
	}
	#l_menu .gift p.txt{
		font-size: 1.4rem;
		flex-grow: initial;
		margin-bottom: 10px;
	}
	#l_menu .gift p.price{
		font-size: 1.4rem;
		padding: 10px 0 0 0;
		margin: 0;
	}
}


