﻿@charset "utf-8";

/*
		0.挨拶
		1.カレンダーコンテナ―
			-1.営業日詳細
			-2.フェイスブック
		2.鍋メニュー
		3.メディア
		4.席
*/

/*0.挨拶*/

section:first-child {
	padding-top: 0px;
}

.greeting {
	background-image: url(../img/index/maguroIkura_bg.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	padding-bottom: 3em;
}
.greeting p {
	margin: 2em 2em;
}
.greeting_lead {
	line-height: 1.8;

}

/*2.カレンダーコンテナ―*/
.bl_calendar {
	display: flex;
	margin-top: 50px;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
}
.bl_cgi-calendar {
	width: 70%;
	padding-right: 10px;
	box-sizing: border-box;
}
.bl_cgi-calendar__iframe {
	display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.bl_cgi-calendar iframe {
	width: 49%;
	height: 280px;
}

.calendar > .flexCenter {
	margin-top: 50px;
}

.calendarContainer {
	width: calc(100% - 350px);
}

.calendar-table {
	width: calc(90% / 2);
	min-width: 150px;
	background-color: rgba(230,230,230,0.5);
}

.calendar-title {
	margin: 0px;
	padding: .6em;
	background: #a99395;
	color: #fff;
}

.calendar-table .is-today {
	color: red;
}

.calendar-table .is-holiday {
	background: #e0a0a7;
}

.calendar-table td {
	width: 30px;
	height: 30px;
	line-height: 20px;
	text-align: center;
}

/*1-1.営業日詳細*/
.calendarEvent {
	box-sizing: border-box;
	width: 100%;
	padding: 1.6em 0.6em 0.6em;
	margin: 0;

}
.calendarEvent dt {
	font-weight: bold;
	padding: 0 0 0 .2em;
	width: 20%;
	float: left;
	clear:left;
}
.calendarEvent dd {
	width: 80%;
	margin-bottom: 0.5em;
	pointer-events: none;
	margin-left:23%;
}
.calendarEvent dd:nth-child(4) {
	margin-bottom: 0;
}

/*1-2.フェイスブック*/
.fb_wrap iframe {
	width: 100%;
	height: 500px;
	border: 0;
	background-color: transparent;
	overflow: hidden;
}
/* div iframe:last-child {
	display: none;
} */



/*2.鍋メニュー*/
.nabeMenu {
	position: relative;/*すっぽん鍋セットIMGの親*/
}
.nabeMenu .supponNabe_img {
	position: absolute;
	bottom: 50px;
}
.nabeMenu > div {
	margin: 50px 0 70px 0;
}
.nabeMenu div div {
	text-align: center;
	margin: 0 0.9em;
	padding: 0.9em 2em 2em;
	background-color: rgba(230,230,230,0.5);
}
.nabeMenu dt {
	border-bottom: 1px solid #f5d444;
	font-size: 20px;
}
.nabeMenu dd span {
	font-size: 14px
}
.nabeMenu dd {
	margin-left: 0;
}
.nabeMenu dd:nth-child(3) {
	border-bottom: 1px solid #ed7d00;
	font-size: 18px;
	line-height: 1.8em;
	padding: 0 0.5em;
}
.nabeMenu dd:nth-child(n + 3) {
	margin-top: 1em;
}
.nabeMenu > div > div:first-child {
	margin-left: 4em;
}
.nabeMenu > div > div:last-child {
	margin-right: 4em;
}




/*3.メディア*/

.media > div > div:first-child {
	width: 33%;
}
.media > div > div:nth-child(2) {
	width: 66%;
}
.media > p {
	text-align: right;
	font-size: 14px;
	margin: 0;
}

.media > p a::before,
.seatComment a::before {
	font-family: 'FontAwesome';
	content: "\f0da"
}

/*4.席*/
.seat {
	background-image: url(../img/index/secondFloor.jpg);
	background-repeat: no-repeat;
	background-size: 100% ;
	color: #fff;
	margin: 0;
	padding: 2em;
}

.seatComment {
	width: 80%;
	background-color: rgba(0,0,05,0.5);
	margin: 50px auto;
	padding: 3em;
	line-height: 2em;
}
.seatComment a {
	color: #fff;
}
.seatComment li::before{
	content: "　・";
}
.thumbnail figure {
	position: relative;
	overflow: hidden;
	width: calc(90% / 3);
	margin: 1em;
	color: #fff;
}
.thumbnail figcaption {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 97%;
	background: rgba(0,0,0,.6);
	-webkit-transition: .3s;
	transition: .3s;
	opacity: 0;
	text-align: center;
}
.thumbnail figure:hover figcaption {
	opacity: 1;
}
.thumbnail figcaption h3,
.thumbnail figcaption p{
	position: absolute;
	left: 0;
	right: 0;
}
.thumbnail figcaption h3 {
	top: 30%;
}
.thumbnail figcaption p {
	top: 45%;
}





@media screen and (max-width: 750px) {

	/*1.カレンダーコンテナ―*/
	.calendarContainer {
		width: 90%;
	}
	.bl_cgi-calendar {
		padding-right: 0;
	}


	/*1-1.営業日詳細*/
	.calendarEvent {
		width: 100%;
		margin: 1.5em auto;
		padding: 0;

	}
	.bl_calendar {
		display: block;
		margin-top: 1em;
	}
	.bl_cgi-calendar {
		width: 100%;
	}
	.bl_cgi-calendar__iframe {
		margin: 0 auto;
	}
	/*1-2.フェイスブック*/
	.fb_wrap {
		width: 300px;
		margin: 0 auto;
	}
	.fb_wrap iframe{
		width: 100%;
	}
	/* div iframe:first-child {
		display: none;
	} */
	/* div iframe:last-child {
		display: inline-table;
		width: 480px;
	} */

	/*2.鍋メニュー*/

	.nabeMenu > div {
		display: flex;
		flex-direction: column;
	}
	.nabeMenu > div > div {
		width: 70%;
		text-align: center;
		margin: 0 auto 1.5em ;
	}
	.nabeMenu > div > div:first-child {
	margin-left: auto;
	}
	.nabeMenu > div > div:last-child {
	margin-right: auto;
	}
	.nabeMenu .supponNabe_img {
		bottom: 70px;
	}
	/*3.メディア*/
	.media > .flexSB {
		display: flex;
		flex-direction:column;
		margin-left: 0.5em;
	}
	.media > .flexSB p {
		margin-top: 0;
	}

	/*4.席*/
	.seat {
		margin: 0;
		padding: 2em;
	}
	.seatComment {
		padding: 2em 2.5em;
		margin: 0 auto;
		line-height: 1.5em;
	}
	.seatComment p:first-child {
		margin-top: 0
	}
	.thumbnail figure {
		margin: 0.5em;
	}
	.thumbnail figcaption {
		height: 95%;
	}
	.thumbnail figcaption h3 {
		top: 20%;
		font-size: 1em;
	}


}





@media screen and (max-width: 500px) {
	/*0.挨拶*/

	.greeting {
			background-size: 200px;
	}
	.sliderWrap {

		padding-bottom: 5px;
	}
	.bl_cgi-calendar__iframe {
		display: block
	}
	.bl_cgi-calendar iframe {
		width: 100%;
		height: 280px;
	}
	/*1.カレンダー*/
	.calendarContainer {
		min-width: 250px;
		height: auto;
		background-image: none;
	}
	.calendar-table {
		width: 90%;
	}
	.calendarEvent {
		margin: 1em 0 0;
	}
	.calendar-table {
		margin-bottom: 5%;
	}
	/*1-1.営業日詳細*/
	.calendarEvent {
		padding: 0.6em;
		margin: 0;
		text-align: center;
	}
	.calendarEvent dt {
		padding: 0.5em 0 0 .2em;
		width: 100%;
	}
	.calendarEvent dd {
		width: 100%;
		margin: 0 0 0.5em;
		pointer-events: none;
	}
	/*1-2.フェイスブック*/
	.fb_wrap {
		width: 300px;
	}
	/* div iframe:first-child {
		display: inline-table;
		width: 300px;
	}
	div iframe:last-child {
		display: none;

	} */
/*2.鍋*/
	.nabeMenu .supponNabe_img {
		bottom: 70px;
	}
	/*3.メディア*/
	.media > .flexSB p {
		font-size: 14px;
	}

	/*4.席*/
	.seat {
		background-image: url();
		background-repeat: no-repeat;
		background-size: 100% ;
		color: #333;
		margin: 0.5em;
		padding: 0;
	}
	.seatComment {
		width: 95%;
		background-color: rgba(0,0,0,0);
		margin: 0 auto;
		padding: 0;
		line-height: 1.5em;
	}
	.seatComment a {
		color: #333;
	}
	.seatComment p:first-child {
		margin-top: 0
	}
	.thumbnail {
		display: flex;
		flex-direction: column;
	}
	.thumbnail figure {
		width: 85%;
		margin: 1em auto;

	}
	.thumbnail figcaption {
		height: 97%;
	}

	.thumbnail figcaption h3 {
		top: 30%;
	}


}

