body {
	font-family: 'Shippori Mincho', serif;
	background: #1A1A1A;
}

/*===== アニメーション =====*/

.iv { opacity: 0; }

.eachTextAnime span { opacity: 0; font-weight: bold;}
.eachTextAnime.appeartext span { animation:text_anime_on 2s ease-out forwards; }
@keyframes text_anime_on {
	
	0% {opacity:0;}
	100% {opacity:1;}
	
}

/*===== //アニメーション =====*/

/*========== ヘッダー ==========*/

header {
	position: fixed;
	width: 100%;
	border-bottom: 1px solid #5b5b5b;
	background: #fff;
	transition: all .3s ease;
	z-index: 9999;
}

#top header {
	border-bottom: none;
	background: rgba(26,26,26,0.2);
}

#top header.hd_scroll {
	background: rgba(26,26,26,0.88);
}

header .hd_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 35px 0;
	transition: all .3s ease;
}

header.hd_scroll .hd_inner {
	padding: 10px 0;
}

header .hd_inner h1 {
	margin-right: 2.5%;
}

header .hd_inner h1 a {
	display: block;
}

header .hd_inner h1 img {
	max-width: 100%;
}

header .hd_inner .contact p {
	font-size: 16px;
	margin-bottom: 5px;
}

#top header .hd_inner .contact p {
	color: #fff;
}

header .hd_inner .contact p span {
	display: inline-block;
	font-size: 12px;
	vertical-align: baseline;
}

header .hd_inner .contact .tel {
	display: flex;
	align-items: center;
}

header .hd_inner .contact .tel span {
	display: block;
	font-size: 14px;
	font-weight: bold;
	padding: 5px 10px;
	margin-right: 20px;
	background: rgba(26,26,26,0.1);
}

#top header .hd_inner .contact .tel span {
	color: #fff;
	background: rgba(255,255,255,0.26);
}

header .hd_inner .contact .tel a {
	display: block;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: 2px;
	pointer-events: none;
}

#top header .hd_inner .contact .tel a {
	color: #fff;
}

header #g_nav {
	padding: 17px 0;
	background: rgba(26,26,26,1);
}

#top header #g_nav {
	background: none;
}

header.hd_scroll #g_nav {
	padding: 10px 0;
	transition: all .3s ease;
}

header #g_nav ul {
	display: flex;
	justify-content: center;
}

header #g_nav ul li {
	position: relative;
	margin-right: 50px;
}

header #g_nav ul li:last-child {
	margin-right: 0;
}

header #g_nav ul li::after {
	position: absolute;
	content: "/";
	right: -25px;
	color: #fff;
}

header #g_nav ul li:last-child::after {
	content: none;
}

header #g_nav ul li a {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
}

header #g_nav .contact {
	display: none;
}

/*========== //ヘッダー ==========*/

/*========== コンテンツ ==========*/

#sub_content {
	padding-top: 181px;
}

#sub_content section .title {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	margin: 85px 0 0;
}

/*===== トップページ =====*/

#first_view .main_visual {
	position: relative;
	width: 100%;
	height: 100%;
}

#first_view .main_visual img {
	position: relative;
	width: 100%;
	height: auto;
}

#first_view .main_visual::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(26,26,26,0.1);
	z-index: 1;
}

#first_view h1 {
	position: absolute;
	top: calc(25vw + 90px);
    left: 50vw;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index: 2;
}

#first_view h1 img {
	width: 100%;
}

#first_view span {
	position: absolute;
	top: calc(16.5vw + 90px);
    left: 50vw;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index: 2;
}

#first_view span img {
	width: 100%;
}

#container {
	width: 100%;
	background-image: url("../images/bg_item01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

#container #about {
	position: relative;
	width: 90%;
	max-width: 1488px;
	margin: 0 auto;
	padding: 100px 0 150px;
	z-index: 1;
}

#container #about .kamon {
	position: absolute;
	top: -2.5%;
	right: 7.5%;
	z-index: -1;
}

#container #about .kamon img {
	max-width: 100%;
}

#container #about .inner {
	max-width: 1000px;
	margin: 0 auto;
}

#container #about .inner .attention {
	display: inline-block;
	padding: 10px 40px;
	margin-bottom: 80px;
	border: 2px solid #8A0F0F;
}

#container #about .inner .attention h2 {
	font-size: 30px;
	font-weight: bold;
	color: #8A0F0F;
	line-height: 1.4;
	-webkit-animation:blink 1s ease-in-out infinite alternate;
    -moz-animation:blink 1s ease-in-out infinite alternate;
    animation:blink 1s ease-in-out infinite alternate;
}

@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

#container #about .inner .attention .sp_only {
	display: none;
}

#container #about .inner .about_text {
	font-size: 20px;
	font-weight: 800;
	line-height: 2.18;
	margin-bottom: 30px;
}

#container #about .inner .about_text a {
	text-decoration: underline;
}

#container #about .inner .img_box {
	display: inline-block;
	margin-top: 30px;
}

#container #about .inner .img_box img {
	width: 100%;
	height: auto;
}

#container #about .inner .img_box .caption {
	font-size: 16px;
	line-height: 1.68;
	margin-top: 10px;
}

#container #top_gallery {
	width: 100%;
	max-width: 1488px;
	margin: 0 auto;
	padding-bottom: 150px;
}

#container #top_gallery ul li img {
	width: 100%;
}

#container #top_gallery .btn {
	text-align: center;
	margin-top: 30px;
}

#container #top_gallery .btn a {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	padding: 18px 55px;
	background: #1A1A1A;
}

/*===== //トップページ =====*/

/*===== こだわり =====*/

#commitment {
	padding: 85px 0 100px;
	background-image: url("../images/bg_item02.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

#commitment .inner {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}

#commitment .inner h2.title {
	margin: 0 0 50px;
	color: #1A1A1A;
}

#commitment .inner strong {
	font-size: 20px;
	font-weight: bold;
	line-height: 2.18;
}

#commitment ul {
	margin-top: 50px;
}

#commitment ul li {
	margin-bottom: 35px;
}

#commitment ul li p {
	position: relative;
	font-size: 20px;
	font-weight: bold;
	line-height: 2.18;
	letter-spacing: .75px;
	padding-left: 30px;
}

#commitment ul li p::before {
	position: absolute;
	content: "◎";
	font-weight: bold;
	left: 0;
}

/*===== //こだわり =====*/

/*===== メニュー =====*/

#menu {
	width: 90%;
	max-width: 1000px;
	margin: -117px auto 0;
    padding-top: 117px;
}

#menu small {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 1.68;
	margin: 30px 0 10px;
	text-align: center;
}

#menu .menu_list li {
	padding: 40px 0;
	border-bottom: 1px solid #5b5b5b;
}

#menu .menu_list li:first-child {
	border-top: 1px solid #5b5b5b;
}

#menu .menu_list li .comment {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 1.68;
	margin-left: 25%;
	margin-bottom: 40px;
}

#menu .menu_list li .category {
	display: flex;
	font-size: 20px;
	color: #fff;
	margin: 0 0 30px 25%;
}

#menu .menu_list li .category:last-child {
	margin-bottom: 0;
}

#menu .menu_list li .category .menu_name { width: 130px; }
#menu .menu_list li .category .menu_rank { width: 75px; text-align: center; }
#menu .menu_list li .category .menu_price { width: 75px; text-align: right;}
#menu .menu_list li .category .menu_d { width: 280px; }

#menu .menu_list_b {
	margin-top: 30px;
}

#menu .menu_list_b li {
	padding: 40px 0;
	border-bottom: 1px solid #5b5b5b;
}

#menu .menu_list_b li:first-child {
	border-top: 1px solid #5b5b5b;
}

#menu .menu_list_b li .comment {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 1.68;
	margin-left: 25%;
	margin-bottom: 40px;
}

#menu .menu_list_b li .category {
	display: flex;
	font-size: 20px;
	color: #fff;
	margin: 0 0 30px 25%;
}

#menu .menu_list_b li .category:last-child {
	margin-bottom: 0;
}

#menu .menu_list_b li .category .menu_name { width: 300px; }
#menu .menu_list_b li .category .menu_price { width: 75px; text-align: right;}

#menu .container {
	max-width: 640px;
	margin: 0 auto 130px;
}

#menu .container .menu_img_list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

#menu .container .menu_img_list li {
	width: calc(100% / 2 - 40px);
	margin-top: 100px;
	margin-right: 80px;
}

#menu .container .menu_img_list li.ml0 {
	margin-right: 0;
} 

#menu .container .menu_img_list li.comment {
	width: 100%;
	margin: 10px 0 0 0;
}

#menu .container .menu_img_list li.comment p {
	font-size: 16px;
	line-height: 1.68;
}

#menu .container .menu_img_list li h3 {
	font-size: 20px;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 10px;
}

#menu .container .menu_img_list li .img_box img {
	width: 100%;
	height: auto;
}

#menu .container p {
	font-size: 14px;
	color: #fff;
	line-height: 1.68;
}

#information {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto 200px;
	border-top: 1px solid #5b5b5b;
}

#information h2.title {
	font-size: 20px;
	margin: 40px 0;
}

#information ul li {
	margin-bottom: 10px;
}

#information ul li p {
	position: relative;
	font-size: 16px;
	color: #fff;
	line-height: 1.68;
	padding-left: 20px;
}

#information ul li p::before {
	position: absolute;
	content: "・";
	left: 0;
}

#information .asterisk_list {
	margin-top: 40px;
}

#information .asterisk_list li {
	margin-bottom: 10px;
}

#information .asterisk_list li p {
	position: relative;
	font-size: 16px;
	color: #fff;
	line-height: 1.68;
	padding-left: 20px;
}

#information .asterisk_list li p::before {
	position: absolute;
	content: "※";
	left: 0;
}

#information .comment {
	font-size: 14px;
	color: #fff;
	line-height: 1.68;
	padding: 8px 16px;
	margin-top: 40px;
	border-top: 1px solid #5b5b5b;
	border-bottom: 1px solid #5b5b5b;
}

/*===== //メニュー =====*/

/*===== 店内の様子 =====*/

#gallery {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}

#gallery .gallery_list {
	display: flex;
	flex-wrap: wrap;
	margin: 50px auto;
}

#gallery .gallery_list li {
	width: calc(100% / 2 - 20px);
	margin-right: 40px;
	margin-bottom: 40px;
}

#gallery .gallery_list li:nth-child(2n) {
	margin-right: 0;
}

#gallery .img_box img {
	max-width: 100%;
}

/*===== //店内の様子 =====*/

/*===== アクセス =====*/

#access {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}

#access .map {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 70%;
	margin-top: 85px;
}

#access .map iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

#access .img_map {
	margin-top: 20px;
}

#access .img_map a {
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	padding: 4px 20px;
	background: rgba(255,255,255,0.8);
}

#access table {
	width: 100%;
	margin: 65px 0;
}

#access table tr th,
#access table tr td {
	font-size: 16px;
	color: #fff;
	text-align: left;
	line-height: 2.18;
}

#access table tr th {
	width: 95px;
	vertical-align: top;
}

/*===== //アクセス =====*/

/*===== ネット予約 =====*/

#yoyaku {
	width: 90%;
	max-width: 1000px;
	height: 600px;
	margin: 0 auto;
}

#yoyaku .comingsoon {
	display: inline-block;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	padding: 8px 24px;
	margin-top: 40px;
	border: 2px solid #5b5b5b;
}

/*===== //ネット予約 =====*/

/*========== //コンテンツ ==========*/

/*==========　フッター ==========*/

footer {
	border-top: 1px solid #5b5b5b;
	border-bottom: 50px solid #fff;
}

footer .ft_inner {
	position: relative;
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 50px 0;
}

footer .ft_inner h1,
footer .ft_inner p,
footer .ft_inner a {
	font-size: 16px;
	color: #fff;
}

footer .ft_inner .ft_nav {
	display: flex;
	justify-content: center;
}

footer .ft_inner .ft_nav li {
	position: relative;
	margin-right: 50px;
}

footer .ft_inner .ft_nav li:last-child {
	margin-right: 0;
}

footer .ft_inner .ft_nav li::after {
	position: absolute;
	content: "/";
	right: -25px;
	color: #fff;
}

footer .ft_inner .ft_nav li:last-child::after {
	content: none;
}

footer .ft_inner .column {
	display: flex;
	align-items: center;
	margin: 75px 0;
}

footer .ft_inner .column .shop_information h1,
footer .ft_inner .column .shop_information ul li {
	line-height: 2.18;
}

footer .ft_inner .column .shop_information .link.a {
	display: inline-block;
	line-height: 1.68;
	padding: 2px 10px;
	margin-top: 30px;
	background: #8A0F0F;
}

footer .ft_inner .column .img_box {
	margin-left: 100px;
}

footer .ft_inner .column .img_box img {
	max-width: 100%;
}

footer .ft_inner .copy {
	font-size: 14px;
	text-align: center;
}

footer .ft_inner .kamon {
	position: absolute;
	left: -40%;
	bottom: -2.5%;
	z-index: -1;
}

footer .ft_inner .kamon img {
	max-width: 100%;
}

/*==========　//フッター ==========*/

/*========== responsive max-width: 980px ==========*/

@media screen and (max-width: 980px) {
	
	/*========== ヘッダー ==========*/

	header .hd_inner {
		padding: 20px 0;
	}

	header .hd_inner h1 {
		margin-right: 2.5%;
	}

	header .hd_inner h1 img {
		max-width: 80%;
	}

	header .hd_inner .contact p {
		font-size: 12px;
		margin-bottom: 2px;
	}

	header .hd_inner .contact p span {
		font-size: 10px;
	}

	header .hd_inner .contact .tel span {
		font-size: 12px;
	}

	header .hd_inner .contact .tel a {
		font-size: 24px;
		letter-spacing: normal;
	}

	header #g_nav {
		padding: 12px 0;
	}

	header #g_nav ul li a {
		font-size: 14px;
	}

	/*========== //ヘッダー ==========*/

	/*========== コンテンツ ==========*/

	#sub_content {
		padding-top: 127px;
	}

	/*===== トップページ =====*/

	#container #about {
		padding: 100px 0;
	}

	#container #about .inner .about_text {
		font-size: 18px;
	}

	#container #about .inner .img_box {
		display: block;
		width: 90%;
		margin: 60px auto 0;
	}

	/*===== //トップページ =====*/

	/*===== こだわり =====*/
	/*===== //こだわり =====*/

	/*===== メニュー =====*/

	#menu {
		margin: -117px auto 0;
		padding-top: 117px;
	}

	/*===== //メニュー =====*/

	/*===== 店内の様子 =====*/
	/*===== //店内の様子 =====*/

	/*===== アクセス =====*/
	/*===== //アクセス =====*/

	/*========== //コンテンツ ==========*/

	/*==========　フッター ==========*/
	/*==========　//フッター ==========*/
	
}

/*========== //responsive max-width: 980px ==========*/

/*========== responsive max-width: 780px ==========*/

@media screen and (max-width: 780px) {
	
	/*===== header =====*/
	
	.sp_button {
		display: block;
		position: fixed;
		width: 40px;
		height: 30px;
		top: 30px;
		right: 20px;
		cursor: pointer;
		z-index: 9999;
	}

	.humburger {
		display: block;
		width: 40px;
		height: 30px;
		z-index: 3;
	}
	
	#top .humburger span {
		background: #fff;
	}

	.humburger span {
		display: block;
		position: absolute;
		width: 40px;
		height: 1px;
		background: #1A1A1A;
		-webkit-transition: .3s ease-in-out;
		-moz-transition: .3s ease-in-out;
		transition: all .3s ease-in-out;
	}

	.humburger span:nth-child(2) {
		transform: translateY(10px);
	}

	.humburger span:nth-child(3) {
		transform: translateY(20px);
	}

	.humburger.active span:nth-child(1) {
		-webkit-transform: translateY(10px) rotate(30deg);
		-moz-transform: translateY(10px) rotate(30deg);
		transform: translateY(10px) rotate(30deg);
	}

	.humburger.active span:nth-child(2) {
		opacity: 0;
	}

	.humburger.active span:nth-child(3) {
		-webkit-transform: translateY(10px) rotate(-30deg);
		-moz-transform: translateY(10px) rotate(-30deg);
		transform: translateY(10px) rotate(-30deg);
	}

	header {
		height: 80px;
		line-height: 80px;
	}
	
	header::before {
		position: fixed;
		content: "";
		width: 100%;
		height: calc(100vh - 80px);
		top: 80px;
		left: 0;
		background: rgba(26,26,26,0.7);
		transition: all .3s ease;
		opacity: 0;
		pointer-events: none;
		z-index: -1;
	}
	
	header.active::before {
		opacity: 1;
		pointer-events: auto;
		z-index: 0;
	}
	
	#top header {
		position: fixed;
		background: rgba(26,26,26,1);
	}
	
	#top header.hd_scroll {
		background: rgba(26,26,26,.95);
	}
	
	#top header .hd_inner,
	#top header.hd_scroll .hd_inner {
		background: none;
	}
	
	header .hd_inner,
	header.hd_scroll .hd_inner {
		width: 60%;
		padding: 0;
		margin: 0;
		padding-left: 2.5%;
	}
	
	header .hd_inner h1 img {
		max-width: 100%;
	}
	
	header .hd_inner .contact.pc {
		display: none;
	}
	
	header #g_nav {
		position: fixed;
		width: 250px;
		height: calc(100vh - 80px);
		top: 80px;
		right: 0;
		line-height: 1;
		padding-top: 40px !important;
		background: rgba(26,26,26,1) !important;
		transition: all .5s ease;
		transform: translate(100%);
		z-index: 9999;
	}
	
	header #g_nav.active {
		transform: translate(0);
	}
	
	header #g_nav ul {
		display: block;
		padding: 0 20px;
	}
	
	header #g_nav ul li::after {
		content: none;
	}
	
	header #g_nav ul li {
		margin: 0 0 40px 0;
	}
	
	header #g_nav ul li a {
		font-size: 16px;
	}
	
	header #g_nav .contact.sp {
		position: absolute;
		display: block;
		bottom: 30%;
		left: 20px;
	}
	
	header #g_nav .contact p,
	header #g_nav .contact span,
	header #g_nav .contact a {
		display: block;
		color: #fff;
	}
	
	header #g_nav .contact p,
	header #g_nav .contact span {
		font-size: 12px;
	}
	
	header #g_nav .contact p {
		line-height: 1.68;
		margin-bottom: 15px;
	}
	
	header #g_nav .contact .tel span {
		margin-bottom: 8px;
	}
	
	header #g_nav .contact a {
		font-size: 30px;
	}
	
	/*===== //header =====*/
	
	/*========== コンテンツ ==========*/

	#main_content,
	#sub_content {
		padding-top: 80px;
	}
	
	#sub_content section .title {
		margin: 80px 0 0;
	}
	
	/*===== トップページ =====*/

	#first_view h1 {
		width: 80%;
		top: calc(28.5vw + 80px);
	}
	
	#first_view span {
		top: calc(16.5vw + 80px);
	}
	
	#container #about {
		padding: 80px 0;
	}
	
	#container #about .kamon {
		width: 50%;
		right: 2.5%;
	}
	
	#container #about .inner .attention {
		padding: 10px 20px;
		margin-bottom: 60px;
	}
	
	#container #about .inner .attention h2 {
		font-size: 28px;
	}
	
	#container #about .inner .attention .sp_only {
		display: block;
	}
	
	#container #about .inner .about_text {
		line-height: 2;
		margin-bottom: 25px;
	}
	
	/*===== //トップページ =====*/

	/*===== こだわり =====*/
	
	#commitment {
		padding: 80px 0;
	}
	
	#commitment .inner strong {
		font-size: 18px;
	}
	
	#commitment ul li {
		margin-bottom: 25px;
	}
	
	#commitment ul li p {
		font-size: 18px;
		line-height: 2;
	}
	
	/*===== //こだわり =====*/

	/*===== メニュー =====*/
	
	#menu {
		margin: -80px auto 0;
		padding-top: 80px;
	}
	
	#menu .container {
		margin-bottom: 80px;
	}
	
	#menu .menu_list li .comment,
	#menu .menu_list_b li .comment {
		margin-left: 7.5%;
	}
	
	#menu .menu_list li .category,
	#menu .menu_list_b li .category {
		line-height: 1.68;
		margin: 0 auto 30px 7.5%;
	}
	
	#menu .container .menu_img_list li {
		width: calc(100% / 2 - 20px);
		margin-top: 40px;
		margin-right: 40px;
	}
	
	#information {
		margin-bottom: 80px;
	}
	
	#information h2.title {
		margin: 40px 0;
	}
	
	/*===== //メニュー =====*/

	/*===== 店内の様子 =====*/
	
	#gallery .comingsoon {
		font-size: 20px;
	}
	
	/*===== //店内の様子 =====*/

	/*===== アクセス =====*/
	
	#access .map {
		margin-top: 80px;
	}
	
	#access table {
		margin: 80px 0;
	}
	
	#access table tr th,
	#access table tr td {
		display: block;
		line-height: 1.68;
	}
	
	#access table tr th {
		display: inline-block;
		width: auto;
		font-weight: bold;
		margin-bottom: 2px;
		border-bottom: 1px solid #5b5b5b;
	}
	
	#access table tr th .pc_only {
		display: none;
	}
	
	#access table tr td {
		margin-bottom: 25px;
	}
	
	/*===== //アクセス =====*/

	/*========== //コンテンツ ==========*/

	/*==========　フッター ==========*/
	
	footer .ft_inner .ft_nav {
		display: none;
	}
	
	footer .ft_inner h1,
	footer .ft_inner p,
	footer .ft_inner a {
		font-size: 14px;
	}
	
	footer .ft_inner .column {
		margin: 30px 0;
	}
	
	footer .ft_inner .column .img_box {
		margin-left: 20px;
	}
	
	footer .ft_inner .kamon {
		width: 75%;
		left: -10%;
	}
	
	/*==========　//フッター ==========*/
	
	/*========== //コンテンツ ==========*/
	
}

/*========== //responsive max-width: 780px ==========*/

/*========== responsive max-width: 480px ==========*/

@media screen and (max-width: 480px) {
	
	/*========== ヘッダー ==========*/
	/*========== //ヘッダー ==========*/

	/*========== コンテンツ ==========*/

	/*===== トップページ =====*/
	
	#container #about .kamon {
		width: 70%;
	}
	
	#container #about .inner .attention {
		padding: 10px;
		margin-bottom: 40px;
	}
	
	#container #about .inner .attention h2{
		font-size: 20px;
	}
	
	#container #about .inner .about_text {
		font-size: 16px;
	}
	
	#container #about .inner .about_text br {
		display: none;
	}
	
	#container #about .inner .img_box .caption {
		font-size: 14px;
	}
	
	#container #top_gallery .btn a {
		width: 70%;
		padding: 15px 0;
	}
	
	/*===== //トップページ =====*/

	/*===== こだわり =====*/
	/*===== //こだわり =====*/

	/*===== メニュー =====*/
	
	#menu small {
		text-align: left;
	}
	
	#menu .container .menu_img_list li {
		width: calc(100% / 2 - 10px);
		margin-top: 20px;
		margin-right: 20px;
	}
	
	#menu .menu_list li .comment,
	#menu .menu_list_b li .comment {
		margin-left: 2.5%;
	}
	
	#menu .menu_list li .category,
	#menu .menu_list_b li .category {
		flex-wrap: wrap;
		font-size: 16px;
		margin: 0 auto 40px 2.5%;
	}
	
	#menu .menu_list li .category:last-child,
	#menu .menu_list_b li .category:last-child {
		margin-bottom: 0;
	}
	
	#menu .menu_list li .category .menu_name {
		width: 100px;
	}
	
	#menu .menu_list_b li .category .menu_name {
		width: 160px;
	}
	
	#menu .menu_list li .category .menu_rank,
	#menu .menu_list li .category .menu_price,
	#menu .menu_list_b li .category .menu_price {
		width: 60px;
	}
	
	#menu .menu_list li .category h5 {
		display: block;
		width: 100%;
		margin-top: 5px;
	}
	
	#menu .container .menu_img_list li h3 {
		font-size: 14px;
	}
	
	#menu .container .menu_img_list li.comment p {
		font-size: 14px;
	}
	
	/*===== //メニュー =====*/

	/*===== 店内の様子 =====*/
	
	#gallery .gallery_list {
		display: block;
	}
	
	#gallery .gallery_list li {
		width: 100%;
		margin-right: 0;
	}
	
	/*===== //店内の様子 =====*/

	/*===== アクセス =====*/
	/*===== //アクセス =====*/

	/*========== //コンテンツ ==========*/

	/*==========　フッター ==========*/
	
	footer .ft_inner .column {
		flex-direction: column;
	}
	
	footer .ft_inner .column .shop_information {
		margin-bottom: 40px;
	}
	
	footer .ft_inner .column .img_box {
		width: 90%;
		margin: 0 auto;
		text-align: center;
	}
	
	footer .ft_inner .kamon {
		width: 90%;
		top: 0;
		bottom: auto;
	}
	
	/*==========　//フッター ==========*/
	
}

/*========== //responsive max-width: 480px ==========*/

/*========== responsive max-width: 320px ==========*/

@media screen and (max-width: 320px) {
	
	#menu .container .menu_img_list {
		display: block;
	}
	
	#menu .container .menu_img_list li {
		width: 100%;
		margin-top: 40px;
		margin-right: 0;
	}
	
}

/*========== //responsive max-width: 320px ==========*/