@charset "UTF-8";

@font-face {font-family: "YuGothic M";src: local(Yu Gothic Medium)}
body {
	margin: 0 auto;
	padding: 0;
	color: #fff;
	font-family: "Helvetica Neue" , Helvetica , Arial , Verdana , Avenir , "游ゴシック Medium", "YuGothic M", "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
	font-weight:normal;
	background-color: #4d4d4d;
}

/*-----------------------------------------

 共通

-----------------------------------------*/

header {
	width: 100%;
	background-color: #1f2774;
	overflow: hidden;
	padding: 21px 0;
	position: relative;
	overflow: hidden;
}
header ul.menu {
	display: flex;
	justify-content: flex-end;
	list-style: none;
}

header ul.menu li {
	margin-left: 20px;
	font-family: "paganini",serif;
}

header ul.menu a {
	color: #fff;
	text-decoration: none;
}

header ul.menu a:hover {
	color: #b2b6d7;
	transition: 0.3s;
}

.container {
	width: 1130px;
	margin: 0 auto;
}

footer {
	overflow: hidden;
	padding: 40px 0 30px;
	background-color: #27416e;
}

footer .container {
	display: flex;
  justify-content: space-between;
}
footer .shopInfo {
	font-size: 12px;
	letter-spacing: 0.05em;
}
footer .shopInfo p {
	margin-bottom: 2em;
}
footer .shopInfo p:last-of-type {
	margin-bottom: 0;
}
footer .related {
}
footer .related .shop a {
	padding: 10px 25px 10px 10px;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	border: 1px solid #fff;
	position: relative;
}

footer .related .shop a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  right: 10%;
  top:40%;
}
footer .related .shop a:hover {
	background-color: rgba(255,255,255,0.1);
}

/* ハンバーガーメニュー
-----------------------------------------*/
.menuBtn {
	width: 1130px;
	margin: 0 auto;
}
.menuBtn .box {
	position: absolute;
  z-index: 100;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 40px;
  height: 23px;
	top: 20px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
}

.menu-trigger:hover {
	cursor: pointer;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
/* 変形設定 */
body.open .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
body.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
body.open .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}


/* モーダルメニュー
-----------------------------------------*/
.modal {
  position: fixed;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.8);
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}

.modal ul {
  display: table-cell;
  vertical-align: middle;
	list-style: none;
	font-family: "paganini",serif;
}

.modal li {
  width: 300px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto;
  text-align: center;
}

.modal li a {
  display: block;
  font-size: 26px;
  color: #fff;
	text-decoration: none;
}

.modal li a:hover {
	color: #999;
	transition: 0.3s;
}
/* 開閉用ボタンがクリックされた時のスタイル */
body.open .modal {
  transition: all .5s;
  visibility: visible;
  opacity: 1;
}

.footNav {
	display: none;
}


/*-----------------------------------------

 トップページ

-----------------------------------------*/

/* .movie Youtube
-----------------------------------------*/
.top .movie {
	text-align: center;
	margin-top: 70px;
	margin-bottom: 70px;
}

/* .brand ロゴ SNSリンク
-----------------------------------------*/
.top .brand {
	text-align: center;
	margin: 0 auto;
}
.top .brand .logo {
	margin-bottom: 60px;
}
.top .brand .logo img {
	width: 275px;
	height: auto;
}

.top .brand .link {
	margin-bottom: 35px;
}

.top .brand .link ul {
	list-style: none;
	text-decoration: none;
	display: flex;
	justify-content: center;
}
.top .brand .link li {
	font-size: 40px;
}
.top .brand .link li:not(:first-child) {
	margin-left: 120px;
}
.top .brand .link a {
	color: #fff;
	text-decoration: none;
}
.top .brand .link a:hover {
	opacity: 0.6;
	transition: 0.3s;
}

/* .info 営業時間 / 定休日情報
-----------------------------------------*/
.top .info {
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 60px;
}
.top .info .time {
	width: 600px;
	margin: 0 auto;
	padding: 25px 0;
	border-top: 3px solid #fff;
	border-bottom: 3px solid #646464;
}
.top .info .closed {
	width: 600px;
	margin: 0 auto;
	padding: 25px 0;
	border-bottom: 3px solid #fff;
}

/* .btn リンクボタン
-----------------------------------------*/

.top .btn {
	margin-bottom: 85px;
}
.top .btn a {
	display: block;
	position: relative;
	color: #fff;
	text-decoration: none;
}
.top .btn a:hover	{
}

.top .btn img {
	width: 100%;
	vertical-align: bottom;
}

.top .btn p {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 0 10px;
	font-size: 70px;
	letter-spacing: 0.05em;
	font-family: "paganini",serif;
	background-color: rgba(0,0,0,0.3);
}

.top .btn .extra p {
	background-color: rgba(0,0,0,0.4);
}

.top .btn p::after {
  position: absolute;
  content: "";
  width: 57px;
  height: 57px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  right: 10%;
  top:45%;
}

.top .btn p:hover	{
	background-color: rgba(0,0,0,0.4);
}

/* .about
-----------------------------------------*/
.top .about {
	text-align: center;
	margin-bottom: 80px;
}
.top .about h1 {
	font-family: "paganini",serif;
	font-size: 40px;
	letter-spacing: 0.05em;
	margin-bottom: 70px;
	margin-top: -25px;
}
.top .about h2 {
	font-family: "paganini",serif;
	font-size: 34px;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
}
.top .about p {
	line-height: 2;
	margin-bottom: 1.5em;
}
.top .about .textLink {
	text-align: center;
	position: relative;
	margin-top: 50px;
}
.top .about .textLink a {
	padding: 10px 35px 10px 20px;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	border: 1px solid #fff;
	position: relative;
}

.top .about .textLink a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  right: 15%;
  top:40%;
}
.top .about .textLink a:hover {
	background-color: rgba(255,255,255,0.1);
}


/* .map Google map
-----------------------------------------*/
.top .map {
	margin-bottom: 50px;

}


/* .access
-----------------------------------------*/
.top .access {
	text-align: center;
	margin-bottom: 50px;
}
.top .access h2 {
	font-family: "paganini",serif;
	font-size: 40px;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
}
.top .access p {
	line-height: 2;
	margin-bottom: 2em;
}



/*-----------------------------------------

 ABOUT

-----------------------------------------*/

.about .mainVisual {
	background-image: url(../img/about_main.jpg);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 635px;
	margin-bottom: 45px;
}
.about .foodVisual {
	background-image: url(../img/about_food.jpg);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 500px;
	margin-bottom: 50px;
}
.about .dishVisual {
	background-image: url(../img/about_dish.jpg);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 500px;
	margin-bottom: 50px;
}

/* .about
-----------------------------------------*/
.about .text {
	text-align: center;
	margin-bottom: 80px;
}
.about .text h1 {
	font-family: "paganini",serif;
	font-size: 40px;
	letter-spacing: 0.05em;
	margin-bottom: 80px;
}
.about .text h2 {
	font-family: "paganini",serif;
	font-size: 34px;
	letter-spacing: 0.05em;
	margin-bottom: 50px;
}
.about .text p {
	line-height: 2;
	margin-bottom: 1.5em;
}

/* .food
-----------------------------------------*/
.about .food {
	text-align: center;
	margin-bottom: 80px;
}
.about .food h2 {
	font-size: 26px;
	letter-spacing: 0.05em;
	margin-bottom: 50px;
	font-weight: normal;
}
.about .food p {
	margin: 0 auto;
	line-height: 2;
	margin-bottom: 1.5em;
}
.about .food p.extra {
	width: 820px;
	margin: 0 auto
}

/* .dish
-----------------------------------------*/
.about .dish {
	text-align: center;
	margin-bottom: 80px;
}
.about .dish h2 {
	font-size: 26px;
	letter-spacing: 0.05em;
	margin-bottom: 50px;
	font-weight: normal;
}
.about .dish p {
	line-height: 2;
	margin-bottom: 1.5em;
}

/* .brand SNSリンク
-----------------------------------------*/
.about .brand {
	text-align: center;
	margin: 0 auto;
}

.about .brand .link {
	margin-bottom: 45px;
}

.about .brand .link ul {
	list-style: none;
	text-decoration: none;
	display: flex;
	justify-content: center;
}
.about .brand .link li {
	font-size: 40px;
}
.about .brand .link li:not(:first-child) {
	margin-left: 120px;
}
.about .brand .link a {
	color: #fff;
	text-decoration: none;
}
.about .brand .link a:hover {
	opacity: 0.6;
	transition: 0.3s;
}


/*-----------------------------------------

 RESERVATIONS

-----------------------------------------*/
.reserve h1 {
	font-family: "paganini",serif;
	font-size: 40px;
	letter-spacing: 0.1em;
	text-align: center;
	margin-top: 80px;
	margin-bottom: 35px;
}


/* .info 定休日情報
-----------------------------------------*/
.reserve .info {
	text-align: center;
	letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 110px;
}
.reserve .info .closed {
	width: 600px;
	margin: 0 auto;
	padding: 25px 0;
	border-top: 3px solid #fff;
	border-bottom: 3px solid #fff;
}


/* .language 各言語リンク
-----------------------------------------*/
.reserve .language {
	margin-bottom: 110px;
}
.reserve .language .list {
	width: 600px;
	margin: 0 auto;
}
.reserve .language ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
}
.reserve .language li a {
	display: block;
	width: 160px;
	padding: 10px 25px 10px 10px;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	border: 1px solid #fff;
	position: relative;
	text-align: center;
}
/* 英文のみ高さ調整 */
.reserve .language li.english a {
	line-height: 1.6;
}
.reserve .language li a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  right: 10%;
  top:40%;
}
.reserve .language li a:hover {
	background-color: rgba(255,255,255,0.1);
}

/*-----------------------------------------

 WELCOME

-----------------------------------------*/
.sp-bottom-thumbnails {
	margin: 20px 0 !important;
}
.sp-arrow {
	width: 5px !important;
}
