@charset "utf-8";
/*resetcss
----------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
	-webkit-text-size-adjust: 100%;
}
body {
	line-height: 1;
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-family: Georgia, '游ゴシック', 'Yu Gothic', 'Hiragino Mincho ProN', Meiryo, serif;
	color: #4a5057;
}
ol, ul {
	list-style: none;
}
a{
	text-decoration: none;
	color: #4a5057;
	transition: 0.3s;
}
a:hover{
	color: #9ea1a4;
	opacity: 0.6;
}
img{
	border: 0;
	max-width: 100%;
	height: auto;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*all and smart phone
------------------------------------------------------------------*/
.container{
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2.5%;
}



/*共通
------------------------------------------------------------------*/
/*ヘッダー*/
#header{
	height: 4em;
	background-color: #fff;
	padding-top: 40px;
	padding-bottom: 40px;
	
}
#header .ttl{
	display: flex;
	align-items: center;
}
.sns ul{
	margin: 10px 15px;
	display: flex;
}
.sns ul li{
	padding: 0 5px;
	font-size: 1.2em;
}

.ttl h1{
	padding-left: 10px;
	font-size: 1em;
}

.ttl h1 span{
	font-size: 2.5em;
	line-height: 1.3;
}
#header nav{
	display: inline;
	float: right;
	font-size: 1.6em;
}

#header ul{
	margin-right: 5px;
	display: flex;
}
#header ul li{
	margin: 0 8px;
	font-size: 0.95em;
}
#header .sns{
	font-size: 1.5em;
	margin-left: 10px;
	display: flex;
}
#header #nav{
	align-items: center;

}
#header #nav li a{
	font-size: 0.7em;
}


/*--------メディアクエリ---------*/
@media screen and (max-width: 768px) {
	#header .ttl h1{
		font-size: 0.8em;
	}
	#header .ttl img{
		width: 60px;
		height: 60px;
	}
	#header .sns{
		font-size: 1.3em;
	}
}

@media screen and (max-width: 640px) {
	#header .ttl h1{
		font-size: 0.7em;
	}
	#header .ttl img{
		width: 60px;
		height: 60px;
	}
	
	#header .sns ul li{
		font-size: 0.9em;
		margin: 3px;
		
	}

/* bager menu */
	#header #nav {
		transition: all 0.6s;
		overflow-y: auto;
		padding-top: 40px;
		width: 200px;
		height: 100vh;
		z-index: 200;
		top: 0;
		right: -320px;
		background-color: #ffff9d;
		position: fixed;
		flex-direction: column;
		align-items: baseline;
	}
	#header #nav li {
		padding: 10px;
	}
	#header .nav_btn {
		width: 44px;
		height: 44px;
		z-index: 300;
		top: 7px;
		right: 7px;
		cursor: pointer;
		position: absolute;
	}
	.hamburger_line {
		transition: all 0.6s;
		width: 34px;
		height: 2px;
		left: 5px;
		background-color: #000;
		position: absolute;
	}
	.hamburger_line1 {
		top: 10px;
	}
	.hamburger_line2 {
		top: 21px;
	}
	.hamburger_line3 {
		top: 32px;
	}
	.nav_bg {
		opacity: 0;
		transition: all 0.6s;
		width: 100vw;
		height: 100vh;
		z-index: 100;
		top: 0;
		left: 0;
		visibility: hidden;
		background-color: #fff;
		cursor: pointer;
		position: fixed;
	}
/* 表示された時用のCSS */
	.nav_open #header #nav {
		right: 0;
	}
	.nav_open .nav_bg {
		opacity: 0.6;
		visibility: visible;
	}
	.nav_open .hamburger_line1 {
		transform: rotate(45deg);
		top: 20px;
	}
	.nav_open .hamburger_line2 {
		width: 0;
		left: 50%;
	}
	.nav_open .hamburger_line3 {
		transform: rotate(-45deg);
		top: 20px;
	}
}


/*フッター*/
footer p{
	text-align: center;
	padding-bottom: 15px;
	letter-spacing: 1.8px;
	font-size: 0.6em;
}

#page_top{
	display: flex;
	justify-content: flex-end;
	padding: 10px 10px;
	position: fixed;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,157,0.65);
	border-radius: 50px;
}
#page_top p a{
	width: 75px;
	line-height: 60px;
	display: block;
	background-image: url("../img/top.png");
	background-size: cover;
	text-align: center;
}

/*--------メディアクエリ---------*/
@media screen and (min-width: 640px){
	footer p{
		font-size: 1em;
	}
}

/*index
------------------------------------------------------------------*/
/*top*/
.icatch{
	height: 500px;
	padding-top: 4em;
	margin-bottom: 20px;
	background-image: url("../img/icatch-bg.png");
	background-repeat: repeat-x;
	position: relative;
	clear: both;
}
.icatch-text{
	font-size: 1.4em;
	line-height: 2;
	text-align: center;
	display: inline-block;
	width: 50%;
	padding: 85px 75px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	animation-name: fadein;
	animation-duration: 2s;
}
@keyframes fadein {
	from {
		opacity: 0;
}
to {
	opacity: 1;
	}
}

.lineup-link{
	display: flex;
	justify-content: flex-end;
	margin-top: 5px;
	margin-right: 13px;
}
.lineup-link a{
	display: block;
	width: 165px;
	height: 27px;
	background-image: url("../img/lineup-btn.png");
	background-size: cover;
	text-align: center;
	padding-top: 5px;
}
.slider{
	width: 90%;
	margin: 0 auto;
}

/*--------メディアクエリ---------*/
@media screen and (max-width: 335px) {
	.icatch-text{
		font-size: 1em;
	}
	.icatch{
		height: 350px;
	}

}


/*店舗情報*/
#shop-info{
	margin: 130px 0;
}
.map-shop-ttl{
	margin: 30px auto;
	width: 120px;
}
.map-shop-ttl h2{
	color: #4a5057;
	letter-spacing: 3px;
	font-size: 1.3em;
	background: linear-gradient(transparent 60%, #8ae29d 30%);
}
.border img{
	width: 150px;
	height: 38px;
	display: block;
	margin: 50px auto;
}
#shop-info .container{
	text-align: center;
	letter-spacing: 2px;
	line-height: 1.3;
}

.shop-img{
	margin: 35px 0;
}

.space{
	margin-bottom: 15px;
}

.underline{
	text-decoration: underline dotted;
}
#shop-info .adress h3{
	padding: 20px 0;
}
.adress a{
	text-decoration: underline;
	display: block;
	margin-bottom: 15px;
}


/*--------メディアクエリ---------*/
@media screen and (min-width: 640px){
	#shop-info .map,
	.shop1,
	.shop2{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0 30px;
	}
	#shop-info .map-item,
	.shop1-item,
	.shop2-item{
		box-sizing: border-box;
	}
	#shop-info .shop-img,
	#shop-info .shop1 .writting,
	#shop-info .shop2 .shop-img{
		margin-right: 10px;
	}
	#shop-info .shop2 .writting{
		order: 1;
	}
	#shop-info p{
		font-size: 90%;
	}
}

/*--------メディアクエリ---------*/
@media screen and (max-width: 335px){
	#shop-info .map,
	.shop1,
	.shop2{
		font-size: 13px;
	}
}

/*animation
------------------------------------------------------------------*/
.js-animation {
	opacity: 0;
	visibility: hidden;
	transform: translateY(40px);
	transition: all 1s;
}
.js-animation.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}


/*lineup.html
------------------------------------------------------------------*/
/*top*/
.gnav ul{
	margin: 20px 20px;
}
.gnav ul li{
	font-size: 80%;
	display: inline;
	margin-right: 20px;
}
.gnav ul li.here{
	padding-left: 35px;
	background: url("../img/nav-icon.png") left center no-repeat;
}
.gnav ul li a{
	text-decoration: underline;
}
.lineup-top .lineup-nav ul li a:hover{
	text-decoration: underline;

}

/*--------メディアクエリ---------*/
@media screen and (min-width: 640px){
	.gnav ul li{
		font-size: 100%;
	}
}


/*lineup*/
.lineup{
	margin-bottom: 50px;
}
.lineup-top h1{
	margin: 30px 0;
	text-align: center;
	font-size: 2em;
}
.lineup-nav ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	height: 30px;
	margin: 20px 0;
	text-align: center;
}
.lineup-nav ul li{
	margin: 0 15px;
}

.items-ttl{
	text-align: center;
}
.items-ttl h2{
	display: inline-block;
	padding: 0 15px;
	margin: 20px 0 10px 0;
	color: #4a5057;
	font-size: 1.1em;
	letter-spacing: 2px;
	background: linear-gradient(transparent 70%, #ffafaf 30%);
}

.items{
	display: flex;
	flex-wrap: wrap;
}
.item{
	box-sizing: border-box;
	width: 40%;
	margin: 15px 5%;
}
.item h3{
	margin-top: 13px;
	color: #000;
}
.item p{
	margin-top: 8px;
	font-size: 80%;
}


/*--------メディアクエリ---------*/
@media screen and (min-width: 640px){
	.items{
		justify-content: flex-start;
	}
	.item{
		box-sizing: border-box;
		width: 20%;
		margin: 15px 2%;
	}
}