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

/*
************************************************************************
 mv
************************************************************************
*/
.mv{
	height: calc(90vh - 55px);
	max-height: 600px;
	overflow: hidden;
}
.mv img {
	height: 100%;
	object-fit: cover;
}

.zoomInImage{
	animation-name:zoomInImage;
	animation-duration:0.75s;
	animation-fill-mode:forwards;
	animation-delay: 0.5s;
	/*opacity:0;*/
}
@keyframes zoomInImage{
	0% {
		transform: scale(1.3);
		opacity:0;
	}
	
	99% {
		transform: scale(1);
		opacity:1;
	}
	
	100% {
		transform: scale(1);
		opacity:1;
	}
}

@media screen and (min-width: 481px){
	.mv {
		max-height: 600px;
	}
}

/*
************************************************************************
 section 共通
************************************************************************
*/


/*以下 w100画像のロールインアニメーション*/
.img_w100 {
	overflow: hidden;
}
.img_w100::before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	transition: .5s;
}
.img_w100.show::before{
	transform: translateX(100%);
}
.img_w100 img{
	opacity: 0;
	transition: .5s;
}
.img_w100.show img{
	opacity: 1;
}

@media screen and (min-width: 481px){
	
}
/*
************************************************************************
 nav
************************************************************************
*/
nav {
	width:100%;
	height: 9.8vh;
	position: fixed;
	bottom:0;
	left:0;
	z-index: 1;
}
nav .contact,
nav .reservation{
	display:block;
	width:50%;
}
nav a{
	display: block;
	width:100%;
	height:100%;
}
nav a span{
	color:#fff;
	font-size: 2.5em;
	line-height: 4em;
	white-space: nowrap;
	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
nav .contact span:before,
nav .reservation span:before{
	content:"";
	background-repeat: no-repeat;
	margin-right:-0.2em;
}

nav .contact span:before{
	padding-left: 30px;
	padding-top: 1px;
	padding-bottom: 1px;
}
nav .reservation span:before{
	padding-left: 30px;
	padding-top: 1px;
	padding-bottom: 1px;
}

@media screen and (min-width: 768px){
	nav.fl-wrap{
		flex-direction: column;
		justify-content: space-between;
		width: 200px;
		/* height: 300px; */
		bottom: 30px;
		left: calc(100% - 220px);
	}
	nav .contact,
	nav .reservation{
		width: 100%;
		height: calc(92% / 2);
		border-radius: 8px;
		transition: .2s;
	}
	nav .contact:hover,
	nav .reservation:hover{
		transform: scale(.95);
		opacity:0.7;
		transition: .2s;
	}
	nav a span{
		font-size: 1.25em;
		font-weight: bold;
	}
	nav .reservation span:before{
		background-size: 55%;
		margin-left: -12px;
		padding-top: 2px;
	}
}
/*
************************************************************************
 poster（キャンペーンなど 内容概要）
************************************************************************
*/
.poster p {
    font-size: 3em;
	line-height: 1.6;
}
.poster-img {
    padding-top: 25px;
    padding-bottom: 35px;
}
.poster p.note {
	color:#777;
    text-align: left;
    font-size: 2.15em;
    line-height: 1.9;
}

.poster small{
	font-size: 80%;
	opacity: 0.6;
	line-height: 1;
	margin-top: -1em;
}
@media screen and (min-width: 481px){
	.poster p {
		font-size: 1.7em;
		line-height: 1.7;
	}
	.poster p.note {
		font-size: 1.2em;
	}
}

/*
************************************************************************
 explain（文章で特徴の説明）
************************************************************************
*/
.explain_title h3 {
    font-size: 3.9em;
    letter-spacing: -0.7px;
    line-height: 1.3;
    margin-left: 0.1em;
}
.explain_text {
    font-size: 2.7em;
    line-height: 1.65;
}
@media screen and (min-width: 481px){
	.explain_title h3{
		font-size: 2.2em;
		line-height: 1.4;
	}
	.explain_text {
		font-size: 1.5em;
		line-height: 1.75;
	}
}
/*
************************************************************************
 ギャラリー
************************************************************************
*/
.gallery_list {
    margin: 0 auto;
    width: 95%;
}
.gallery_list .gallery_item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.readmore{
}
.gallery_list{
    position: relative;
    overflow: hidden;
    /*高さの初期値*/
    height:3000px;
}
.gallery_list.short{
/*画像少なめの時　高さの初期値減らす*/
    height: 1900px;
}
.gallery_list::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100px;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
    background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
	z-index:1;
}

/* VIEW MOREボタン */
.readmore-label{
    display: inline-block;
    margin: 25px auto 30px;
}
.readmore-label:before{
    content: 'VIEW MORE';
    background-size: 12%;
    background-repeat: no-repeat;
    background-position: right top 50%;
    padding-right: 24px;
}
.readmore-check{
    display: none;
}
/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label{
    /*position: static;
    transform: translateX(0);
    -webkit-transform: translateX(0);*/
	display: none;
}
.readmore-check:checked ~ .readmore-label:before{
    content: 'CLOSE';
	background-image: url(_img/icon/close.svg);
    background-size: 12%;
    background-repeat: no-repeat;
    background-position: right top 50%;
    padding-right: 24px;
}
.readmore-check:checked ~ .gallery_list{
    height: auto;
}
.readmore-check:checked ~ .gallery_list::before {
    display: none;
}

.fadeIn{
	animation-name:fadeInAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeInTrigger{
	opacity: 0;
}

@media screen and (min-width: 481px){
	.gallery_list{
		/*高さの初期値*/
		height: 3400px;
	}
	.gallery_list.short{
	/*画像少なめの時　高さの初期値減らす*/
		height:2300px;
	}
}

/*
************************************************************************
 location
************************************************************************
*/
.location_text {
	font-size: 2.7em;
	line-height: 1.65;
	letter-spacing: -0.7px;
	margin-left: 0.1em;
}
.location_list{
	width: 95%;
	margin: 35px auto;
}
.location_block{
	margin-bottom:16px;
}
.location_block a{
	display:block;
	width:100%;
	height:100%;
}
.location_block .image a img{
	border-radius: 8px;
}
.location_block .name{
	display: block;
	position: absolute;
	top: 12px;
	left: 12px;
	background: #fff;
	padding: 0.4em 0;
	writing-mode: vertical-rl;
	font-size: 2.7em;
	line-height: 1.5;
	letter-spacing:1px;
}
.location_block .name_sub {
	color: #725951;
	font-size: 1.75em;
	text-align: left;
	margin-top: -7px;
	margin-bottom: 27px;
}
.location_block .image a .location_link {
	color: #fff;
	font-size: 2em;
	letter-spacing: 1px;
	
	display: block;
	padding: 3px 5px 2px 9px;
	border-radius: 0 0 8px 0;
	position: absolute;
	bottom: 0;
	right: 0;
}
.location_block .image a .location_link:after{
	content: "";
	background-image: url(../_img/location_link.svg);
	background-repeat: no-repeat;
	background-size: 10px;
	float: right;
	width: 10px;
	height: 10px;
	margin: 3px;
}
@media screen and (min-width: 481px){
	.location_text {
		font-size: 1.5em;
		line-height: 1.75;
	}
	.location_block {
		margin-bottom: 19.2px;
	}
	.location_block .image:hover{
		opacity:0.7;
	}
	.location_block .name{
		font-size: 1.48em;
	}
	.location_block .name_sub{
		font-size:1em;
	}
	.location_block .image a .location_link {
		font-size: 1.2em;
		letter-spacing: 0;
		padding: 3px 3px 2px 9px;
	}
	.location_block .image a .location_link:after{
		width: 10px;
		height: 10px;
		margin: 3px;
	}

}

/*
************************************************************************
 shop info
************************************************************************
*/
.shopImage {
    border-radius: 8px;
    overflow: hidden;
}
#shopinfo .shopLogo {
    width: 50%;
    margin: 20px auto 10px;
}
#shopinfo .name {
    font-size: 2.6em;
    letter-spacing: 0.4px;
    margin-left: -0.5em;
    margin-bottom: 25px;
}
#shopinfo .address,
#shopinfo .access,
#shopinfo .tell,
#shopinfo .url{
    text-align: left;
    font-size: 2.7em;
    line-height: 1.5;
}
@media screen and (min-width: 481px){
	#shopinfo .name {
		font-size: 1.5em;
		letter-spacing: 0;
	}
	#shopinfo .address,
	#shopinfo .access,
	#shopinfo .tell,
	#shopinfo .url{
		font-size: 1.5em;
	}
}

#shopinfo .url a {
	text-decoration: underline;
}
#shopinfo .url a:hover {
	text-decoration: none;
}

/*
************************************************************************
 shop list
************************************************************************
*/
/*#shoplist {
    margin-top: -30px;
}*/
#shoplist .desc {
    font-size: 2.7em;
    line-height: 1.5;
}
.shop_list {
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 40px auto 35px;
}
.shop_list .shop_block{
	width: calc(93% / 2);
	text-align: left;
	margin-bottom: 8px;
}
.shop_list .shop_block:before{
	content: "";
	display: block;
	width: 17px;
	height: 17px;
	
	position: absolute;
	bottom: 5px;
	right: -1px
}
.shop_list .shop_block a{
	display: block;
	width:100%;
	height:100%;
}
.shop_list .shop_block .s-name{
	font-size: 2.65em;
	margin-top: 12px;
	margin-bottom: 8px
}
.shop_list .shop_block .s-addr{
	font-size: 2.14em;
	line-height: 1.3;
	margin-bottom: 25px;
}
.shop_list .shop_block .s-desc{
	color:#777;
	font-size: 1.75em;
	margin-top: -25px;
	margin-bottom: 30px;
}

@media screen and (min-width: 481px){
	#shoplist .desc {
		font-size: 1.5em;
		line-height: 1.6;
		margin-top: -10px;
	}
	.shop_list {
		margin: 50px auto 35px;
	}
	.shop_list .shop_block a:hover{
		text-decoration: none;
		opacity:0.7;
	}
	.shop_list .shop_block .s-name{
		font-size: 1.48em;
	}
	.shop_list .shop_block .s-addr{
		font-size: 1.22em;
	}
	.shop_list .shop_block .s-desc{
		font-size: 0.8em;
	}
}