@charset "UTF-8";
/* フォント読み込み
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css); */
/* 色指定 */
/* オレンジ */
/* 薄いオレンジ */
/* グレイ */
/* 黒色 */
/* フォント */
/* フォントノーマル */
/* リセット */
/*---------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

section, article, aside, hgroup, header, footer, nav, figure, figcaption, summary {
  display: block; }

/* タグ初期値 */
/*---------------------------------------------*/
body {
  color: #333333;
  background-color: #fd3652;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 100%;
  font-weight: 500;
  font-style: normal;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  animation: fadeIn 0.5s ease 0s 1 normal; }

@keyframes fadeIn {
  /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
  0% {
    opacity: 0; }
  /* 始め */
  100% {
    opacity: 1; }
  /* 終わり */ }
@media screen and (max-width: 800px) {
  body {
    animation: fadeIn 0 ease 0s 0 normal; } }
/* sp END */
a {
  text-decoration: none; }

a:link {
  text-decoration: none;
  color: #333333; }

a:visited {
  text-decoration: none;
  color: #333333; }

a:hover {
  text-decoration: underline; }

nav ul li a:link {
  color: #ffffff;
  text-decoration: none; }

nav ul li a:visited {
  color: #ffffff;
  text-decoration: none; }

nav ul li a:hover {
  color: #ffffff;
  text-decoration: none; }

h1, h2, h3 {
  color: #ffffff;
  font-size: 100%;
  font-weight: normal; }

.typesquare_tags {
  margin: 0;
  padding: 0;
  line-height: 100%;
  font-weight: normal; }

p {
  color: #ffffff;
  margin-bottom: 1.5em;
  font-size: 90%; }

ul li {
  list-style: none; }

strong {
  color: #fd3652; }

em {
  font-style: normal; }

img {
  transform: rotate(0deg);
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: bottom; }
  img a {
    border: 0; }

/* sp END */
/*---------------------------------------------*/
/* ヘッダー */
/*---------------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  top: 0;
  padding: 0;
  margin: 0;
  z-index: 100;
  overflow: visible;
  background: #fd3652;
  border-bottom: 3px solid #fff;
  opacity: 0.90; }

/* 中央のアーチ部分 */
#header::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  /* ヘッダーの下端から配置 */
  transform: translateX(-50%);
  width: 360px;
  /* アーチの横幅 */
  height: 60px;
  /* アーチの高さ（大きめの円の下半分イメージ） */
  background: #fd3652;
  border-radius: 0px 0px 210px 210px / 0px 0px 80px 80px;
  border: 3px solid #fff;
  /* 白い縁取り */
  border-top: none;
  /* 上だけ消しておく */
  box-sizing: border-box;
  z-index: 1; }

/* スマホ用 */
@media screen and (max-width: 800px) {
  #header {
    position: fixed;
    width: 100%;
    background-image: url("assets/images/bg.png");
    background-repeat: repeat-x;
    background-position: top center;
    height: 80px;
    display: flex;
    justify-content: space-between;
    top: 0;
    padding: 0;
    margin: 0;
    z-index: 100;
    overflow: hidden;
    padding-top: 20px;
    border-bottom: 1px solid #fff; }
    #header p {
      width: 50%;
      margin: 0;
      z-index: 100;
      text-align: center; }
      #header p img {
        width: 150px;
        margin-top: 0px;
        margin-left: 10px; }
    #header nav {
      width: 100%; }

  .menu-trigger,
  .menu-trigger span {
    z-index: 100;
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box; }

  .menu-trigger {
    margin-right: 15px;
    position: relative;
    width: 27px;
    height: 27px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    border: 0px solid #ffffff; }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    color: #ffffff; }

  .menu-trigger span:nth-of-type(1) {
    top: 0px; }

  .menu-trigger span:nth-of-type(2) {
    top: 12px; }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0px; }

  .menu-trigger.active span:nth-of-type(1) {
    top: -5px;
    transform: translateY(20px) rotate(-45deg); }

  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0; }

  .menu-trigger.active span:nth-of-type(3) {
    bottom: -11px;
    transform: translateY(-20px) rotate(45deg); } }
/* sp END */
/* スライド */
/* https://gorigoricode.com/css-slideshow/ */
.slide {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden; }

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 25s linear infinite; }

.slide-image:nth-child(1) {
  background-image: url(assets/images/fv_01.jpg);
  background-position: bottom center;
  animation-delay: 0s; }

.slide-image:nth-child(2) {
  background-image: url(assets/images/fv_02.jpg);
  background-position: bottom center;
  animation-delay: 5s; }

.slide-image:nth-child(3) {
  background-image: url(assets/images/fv_03.jpg);
  background-position: bottom center;
  animation-delay: 10s; }

.slide-image:nth-child(4) {
  background-image: url(assets/images/fv_04.jpg);
  background-position: bottom center;
  animation-delay: 15s; }

.slide-image:nth-child(5) {
  background-image: url(assets/images/fv_05.jpg);
  background-position: bottom center;
  animation-delay: 20s; }

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1.1); }
  4% {
    opacity: 1; }
  28% {
    opacity: 1; }
  36% {
    opacity: 0;
    transform: scale(1); }
  100% {
    opacity: 0; } }
@media screen and (max-width: 800px) {
  .slide {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden; } }
/* sp END */
/*---------------------------------------------*/
/* グローバルナビゲーション */
/*---------------------------------------------*/
nav ul {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  position: relative; }

nav ul li a {
  font-size: 22px;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
  transition: all 0.3s;
  letter-spacing: 0.1em;
  color: #ffffff; }

nav ul li.logo {
  width: 280px;
  z-index: 1000;
  margin: 0 30px; }

nav ul li.logo img {
  position: absolute;
  width: 270px;
  height: 75px; }

@media screen and (max-width: 800px) {
  nav ul li.logo {
    display: none; } }
.bg-active nav ul li a {
  font-size: 22px;
  display: block;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
  transition: all 0.3s;
  color: #000000; }

.bg-active nav ul li.link:last-child {
  border: solid 1px #000000; }

nav ul li a:link {
  padding: 5px 20px;
  line-height: 100%; }

nav ul li a:hover,
nav ul li a.here {
  position: relative;
  padding-bottom: 3px; }

nav ul li a:hover::after,
nav ul li a.here::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), white, rgba(0, 0, 0, 0));
  opacity: 0.8; }

nav ul li.reserve-btn {
  color: #333333;
  background-color: #faedea;
  background-image: url("assets/images/reserve.png");
  background-repeat: no-repeat;
  background-position: 10px center;
  margin-left: 10px; }

nav ul li.reserve-btn a {
  font-size: 21px;
  color: #333333;
  font-weight: bold;
  line-height: 100%;
  padding: 5px 18px 5px 36px;
  display: block; }

nav ul li.logo a:hover::after,
nav ul li.logo a.here::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: none;
  opacity: 0.8; }

@media screen and (max-width: 800px) {
  nav ul li.reserve-btn {
    margin-left: 0px; } }
/* Webフォント対策用 */
.typesquare_tags {
  line-height: auto; }

@media screen and (max-width: 800px) {
  nav {
    width: 100%;
    position: fixed;
    top: 0;
    padding: 0px 0 0 0;
    margin: 0;
    transform: translateX(150vh);
    transition: all .3s linear;
    z-index: 5; }

  nav ul {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    margin-top: 0px;
    background-color: #333333;
    opacity: 0.9;
    padding-top: 40px; }

  nav ul li {
    line-height: 180%;
    margin: 0; }

  nav ul li a {
    font-size: 20px;
    text-decoration: none;
    display: block;
    margin: 0px;
    transition: all 0.3s;
    border-bottom: 1px solid #ffffff; }

  nav ul li a:link {
    padding: 12px 15px 12px 35px;
    line-height: 180%; }

  nav ul li a:hover,
  nav ul li a.here {
    position: relative;
    padding-bottom: 12px; }

  nav ul li a:hover::after,
  nav ul li a.here::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: none;
    opacity: 0.8; }

  nav ul li.current a,
  nav ul li a:hover {
    border-bottom: 1px solid transparent;
    /* border-bottomを透明に */ }

  nav ul li:last-child {
    text-align: center;
    color: #333333;
    background-color: #faedea;
    background-image: none; }

  nav ul li:last-child a {
    font-size: 24px;
    color: #000000;
    line-height: 100%;
    padding: 18px 23px 20px 36px; }

  .is-active {
    transform: translateY(0);
    z-index: 100; } }
/* sp END */
/* お問い合わせ */
nav li span {
  border-radius: 50px;
  border: none 0px #444444;
  padding: 0px; }

/*---------------------------------------------*/
/* フッター */
/*---------------------------------------------*/
.copyright {
  font-size: 12px;
  text-align: center;
  padding: 3em 0 3em 0; }

@media screen and (max-width: 800px) {
  footer .copyright {
    font-size: 10px;
    text-align: center;
    padding: 2em 0 6em 0; } }
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* ベース */
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media screen and (min-width: 801px) {
  .sp_only {
    display: none; } }
/* PCで消える */
@media screen and (max-width: 800px) {
  .pc_only {
    display: none; } }
/* スマホで消える */
/* コンテンツ幅 */
.contents {
  width: 1080px;
  margin: 0 auto; }
  .contents h2 {
    font-size: 1.8em;
    text-align: center;
    padding-left: 5px;
    padding-bottom: 5px;
    margin-top: 1em;
    margin-bottom: 1em; }
  .contents h3 {
    font-size: 1.3em; }
  .contents p {
    font-size: 1em;
    margin-top: 0px;
    margin-bottom: 2em; }
    .contents p.catch {
      font-size: 2em;
      text-align: center;
      margin-bottom: 0.5em; }

@media screen and (max-width: 800px) {
  .contents {
    width: 100%;
    margin: 0;
    max-width: auto; }
    .contents section {
      margin-bottom: 40px; }
    .contents h2 {
      font-size: 1.5em;
      text-align: center;
      padding-left: 5px;
      padding-bottom: 5px;
      margin-top: 0.8em;
      margin-bottom: 1em; }
    .contents p {
      font-size: 0.9em;
      margin-top: 0px;
      margin-bottom: 2em; }
      .contents p.catch {
        font-size: 1.6em;
        line-height: 1.5em;
        text-align: center;
        margin-bottom: 0.5em; } }
/* sp END */
/*---------------------------------------------*/
/* 共通パーツ */
/*---------------------------------------------*/
/* ラインマーカー */
span.pink {
  background: linear-gradient(transparent 70%, #f6c 70%);
  font-weight: 700; }

span.yellow {
  background: linear-gradient(transparent 70%, #ff6 70%);
  font-weight: 700; }

/* クリア */
.clear {
  clear: both; }

/* Flexbox */
.flex {
  display: flex;
  /* 左右揃え */
  justify-content: space-between; }

.jump {
  background-image: url(assets/images/jump.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 30px; }

/* テーブル */
.table {
  width: 90%;
  font-size: 0.9em;
  border-spacing: 0px;
  border-top: 2px solid #e9e9e9;
  margin: 0 5% 20px 5%; }
  .table strong {
    color: #b22e11; }
  .table th {
    width: 15%;
    font-weight: normal;
    border-bottom: 1px solid #e9e9e9;
    padding: 1.1em;
    text-align: left; }
  .table td {
    border-bottom: 1px solid #e9e9e9;
    padding: 1.1em;
    text-align: left; }
  .table tr:last-child th {
    border-bottom: 0px; }
  .table tr:last-child td {
    border-bottom: 0px; }

@media screen and (max-width: 800px) {
  .table {
    width: 96%;
    font-size: 0.8em;
    border-spacing: 0px;
    border-top: 2px solid #e9e9e9;
    margin: 0 2% 20px 2%; }
    .table th {
      width: 20%;
      font-weight: normal;
      border-bottom: 1px solid #e9e9e9;
      padding: 0.8em;
      text-align: left; }
    .table td {
      padding: 0.8em;
      text-align: left;
      line-height: 1.9em; } }
/* sp END */
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* 装飾 */
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*---------------------------------------------*/
/* h1タイトル */
/*---------------------------------------------*/
.main-visual {
  height: 800px;
  position: relative; }
  .main-visual #desc {
    position: absolute;
    left: 7%;
    bottom: 12%; }
  .main-visual h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    z-index: 100; }
  .main-visual p {
    color: #ffffff;
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 0px; }

@media screen and (max-width: 800px) {
  .main-visual {
    height: 500px; }
    .main-visual #desc {
      position: absolute;
      left: 5%;
      top: 150px; }
    .main-visual h1 {
      font-size: 1.8em;
      margin-bottom: 20px; }
    .main-visual p {
      font-size: 0.9em;
      line-height: 28px;
      margin-right: 20px; } }
/* sp END */
#menu-list-bg {
  background-image: url("assets/images/menu/fv.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover; }

#wine-list-bg {
  background-image: url("assets/images/wine/fv.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover; }

#concept-bg {
  background-image: url("assets/images/concept/fv.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover; }

#space-bg {
  background-image: url("assets/images/space/fv.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover; }

#news-bg {
  background-color: #666666;
  height: 250px;
  margin-bottom: 80px; }
  #news-bg #desc {
    left: 19%; }
  #news-bg h1 {
    font-size: 28px; }

#menu-list-bg h1,
#menu-list-bg p,
#concept-bg h1,
#concept-bg p,
#space-bg h1,
#space-bg p {
  text-shadow: #000 1px 0 10px; }

@media screen and (max-width: 800px) {
  #menu-list-bg {
    background-image: url("assets/images/menu/fv.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken; }

  #concept-bg {
    background-image: url("assets/images/concept/fv.jpg");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken; }

  #space-bg {
    background-image: url("assets/images/space/fv.jpg");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken; }

  #news-bg {
    background-image: url("assets/images/space/news_fv.jpg");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px; } }
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* 個別ページ */
/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#top-mv {
  position: relative;
  margin-bottom: 120px;
  overflow: hidden; }
  #top-mv h1 {
    position: absolute;
    top: 70%;
    color: #ffffff;
    font-size: 60px;
    line-height: 75px;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
    z-index: 100;
    padding-left: 5%;
    letter-spacing: 2px;
    text-shadow: #000 1px 0 10px; }

/* 中央固定画像 */
.fixed-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20; /* スライドより上 */
    width: 300px; /* 好みのサイズに変更 */
    pointer-events: none; /* 下の要素をクリック可能のままに */
}




@media screen and (max-width: 800px) {
  #top-mv {
    position: relative;
    margin-bottom: 20px; }
    #top-mv h1 {
      position: absolute;
      top: 70%;
      right: 0%;
      color: #ffffff;
      font-size: 25px;
      font-family: "Zen Maru Gothic", sans-serif;
      line-height: 40px;
      text-align: right;
      padding-right: 6%;
      z-index: 100; }

.fixed-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20; /* スライドより上 */
    width: 130px; /* 好みのサイズに変更 */
    pointer-events: none; /* 下の要素をクリック可能のままに */
}    

}/* sp END */
p.reserve_btn {
  width: 100%;
  margin: 0 0 60px; }

p.reserve_btn a {
  color: #ffffff;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  display: block;
  background-color: #6e1d21;
  border-radius: 5px;
  padding: 20px;
  background-image: url("assets/images/btn_ico.png");
  background-repeat: no-repeat;
  background-position: 50px center;
  padding-left: 50px;
  border: 1px solid #6e1d21;
  letter-spacing: 0.2em; }
  p.reserve_btn a:hover {
    color: #6e1d21;
    background-color: #ffffff;
    background-image: url("assets/images/btn_ico_h.png");
    background-repeat: no-repeat;
    background-position: 50px center;
    border: 1px solid #6e1d21;
    text-decoration: none;
    letter-spacing: 0.2em; }

@media screen and (max-width: 800px) {
  p.reserve_btn {
    width: 100%;
    margin: 0 0 30px; }

  p.reserve_btn a {
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    display: block;
    background-color: #6e1d21;
    border-radius: 5px;
    padding: 10px;
    background-image: url("assets/images/btn_ico.png");
    background-repeat: no-repeat;
    background-position: 50px center;
    padding-left: 50px;
    border: 1px solid #6e1d21;
    letter-spacing: 0.2em; }
    p.reserve_btn a:hover {
      color: #6e1d21;
      background-color: #ffffff;
      background-image: url("assets/images/btn_ico_h.png");
      background-repeat: no-repeat;
      background-position: 50px center;
      border: 1px solid #6e1d21;
      text-decoration: none;
      letter-spacing: 0.2em; } }
#index {
  overflow: hidden; }
  #index .eng {
    font-size: 32px; }
  #index h2 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 20px; }
  #index p {
    font-size: 15px; }
  #index .link {
    width: 100%;
    font-size: 20px;
    text-align: center;
    background-color: #1b1b1b;
    margin: 0 auto;
    padding: 0;
    line-height: 150%;
    transition: ease .2s; }
    #index .link a {
      color: #ffffff;
      display: block;
      padding: 7px 25px 7px 25px;
      border: 1px solid #1b1b1b; }
      #index .link a:link {
        color: #ffffff;
        text-decoration: none; }
      #index .link a:hover {
        color: #333333;
        background-color: #ffffff;
        text-decoration: none;
        border: 1px solid #1b1b1b; }

@media screen and (max-width: 800px) {
  #index {
    overflow: hidden; }
    #index .eng {
      font-size: 32px; }
    #index h2 {
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 20px; }
    #index p {
      font-size: 15px; } }
/* sp END */
/* TOPメイン */
#t_main {
  text-align: center; }
  #t_main .wrap {
    width: 60%;
    margin: 0 20%;
    padding: 70px 0 160px;
    background-color: #ffffff; }
    #t_main .wrap p {
      color: #3d1302;
      font-size: 20px;
      line-height: 38px; }
  #t_main ul {
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-top: -100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-around; }
    #t_main ul li {
      width: 30%; }
      #t_main ul li img {
        width: 100%; }

@media screen and (max-width: 800px) {
  #t_main {
    text-align: center; }
    #t_main .wrap {
      width: 100%;
      margin: 0%;
      padding: 40px 15px 120px;
      background-color: #ffffff; }
      #t_main .wrap p {
        color: #3d1302;
        font-size: 14px;
        line-height: 28px;
        text-align: left; }
    #t_main ul {
      width: 95%;
      margin-left: 2.5%;
      margin-right: 2.5%;
      margin-top: -100px;
      margin-bottom: 20px;
      display: flex;
      justify-content: space-around; }
      #t_main ul li {
        width: 30%; }
        #t_main ul li img {
          width: 100%; } }
/* TOPメニュー */
#t_menu {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 100px; }
  #t_menu .wrap {
    background-image: url("assets/images/top/t_menu_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    height: 800px; }
    #t_menu .wrap .white {
      padding-top: 30px;
      margin: 0px 20% 0;
      background-color: rgba(255, 255, 255, 0.55); }
    #t_menu .wrap h2 {
      font-size: 28px;
      text-align: left;
      color: #3d1302;
      font-weight: 700;
      padding-left: 50px; }
    #t_menu .wrap p {
      text-align: left;
      color: #3d1302;
      font-size: 20px;
      line-height: 38px;
      font-weight: 700;
      padding-bottom: 20px;
      padding-left: 50px; }
  #t_menu .wrap2 {
    background-image: url("assets/images/top/white_bg.png");
    background-repeat: repeat-y;
    background-position: top center;
    background-size: auto;
    position: relative;
    padding: 0px 10% 20px; }
    #t_menu .wrap2 p.link {
      width: 300px;
      margin: 0 auto 60px; }
  #t_menu ul {
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-top: 0px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-around; }
    #t_menu ul li {
      width: 30%; }
      #t_menu ul li img {
        width: 100%;
        margin-top: -70px; }
  #t_menu p.reserve_btn {
    width: 380px;
    margin: 0 auto 60px; }
  #t_menu p.reserve_btn a {
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    display: block;
    background-color: #6e1d21;
    border-radius: 5px;
    padding: 20px;
    background-image: url("assets/images/btn_ico.png");
    background-repeat: no-repeat;
    background-position: 50px center;
    padding-left: 50px;
    border: 1px solid #6e1d21;
    letter-spacing: 0.2em; }
    #t_menu p.reserve_btn a:hover {
      color: #6e1d21;
      background-color: #ffffff;
      background-image: url("assets/images/btn_ico_h.png");
      background-repeat: no-repeat;
      background-position: 50px center;
      border: 1px solid #6e1d21;
      text-decoration: none;
      letter-spacing: 0.2em; }

@media screen and (max-width: 800px) {
  #t_menu {
    text-align: center;
    padding-top: 40px;
    margin-bottom: 20px; }
    #t_menu .wrap {
      background-image: url("assets/images/top/t_menu_bg.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      padding-top: 50px;
      padding-bottom: 50px;
      height: auto; }
      #t_menu .wrap .white {
        padding-top: 30px;
        margin: 0px 5% 0;
        background-color: rgba(255, 255, 255, 0.55); }
      #t_menu .wrap h2 {
        font-size: 24px;
        line-height: 32px;
        text-align: left;
        color: #3d1302;
        font-weight: 700;
        padding-left: 20px; }
      #t_menu .wrap p {
        text-align: left;
        color: #3d1302;
        font-size: 14px;
        line-height: 22px;
        font-weight: 700;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px; }
    #t_menu .wrap2 {
      background-image: url("assets/images/top/white_bg.png");
      background-repeat: repeat-y;
      background-position: top center;
      background-size: auto;
      position: relative;
      padding: 0px 0% 10px; }
      #t_menu .wrap2 p.link {
        width: 300px;
        margin: 0 auto 40px; }
    #t_menu ul {
      width: 95%;
      margin-left: 2.5%;
      margin-right: 2.5%;
      margin-top: -80px;
      margin-bottom: 60px;
      display: flex;
      justify-content: space-around; }
      #t_menu ul li {
        width: 30%; }
        #t_menu ul li img {
          width: 100%;
          margin-top: 0px; } }
/* sp END */
/* ワイン */
#t_wine {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 100px; }
  #t_wine .wrap {
    background-image: url("assets/images/top/t_wine_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    height: 700px; }
    #t_wine .wrap .white {
      padding-top: 30px;
      padding-bottom: 5px;
      margin: 0px 30% 0;
      background-color: rgba(255, 255, 255, 0.55); }
    #t_wine .wrap h2 {
      font-size: 28px;
      text-align: left;
      color: #3d1302;
      font-weight: 700;
      padding-left: 50px; }
    #t_wine .wrap p {
      text-align: left;
      color: #3d1302;
      font-size: 20px;
      line-height: 38px;
      font-weight: 700;
      padding-bottom: 20px;
      padding-left: 50px; }
  #t_wine .wrap2 {
    background-image: url("assets/images/top/white_bg.png");
    background-repeat: repeat-y;
    background-position: top center;
    background-size: auto;
    position: relative;
    padding: 0px 10% 20px; }
    #t_wine .wrap2 p.link {
      width: 300px;
      margin: 0 auto 60px; }
  #t_wine ul {
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-top: 0px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-around; }
    #t_wine ul li {
      width: 22%; }
      #t_wine ul li img {
        width: 100%;
        margin-top: -70px; }

@media screen and (max-width: 800px) {
  #t_wine {
    text-align: center;
    padding-top: 40px;
    margin-bottom: 40px; }
    #t_wine .wrap {
      background-image: url("assets/images/top/t_wine_bg.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      padding-top: 50px;
      height: 520px; }
      #t_wine .wrap .white {
        padding-top: 30px;
        padding-bottom: 5px;
        margin: 0px 5% 0;
        background-color: rgba(255, 255, 255, 0.55); }
      #t_wine .wrap h2 {
        font-size: 24px;
        line-height: 32px;
        text-align: left;
        color: #3d1302;
        font-weight: 700;
        padding-left: 20px; }
      #t_wine .wrap p {
        text-align: left;
        color: #3d1302;
        font-size: 14px;
        line-height: 22px;
        font-weight: 700;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px; }
    #t_wine .wrap2 {
      background-image: url("assets/images/top/white_bg.png");
      background-repeat: repeat-y;
      background-position: top center;
      background-size: auto;
      position: relative;
      padding: 0px 0% 20px; }
      #t_wine .wrap2 p.link {
        width: 300px;
        margin: 0 auto 40px; }
    #t_wine ul {
      width: 95%;
      margin-left: 2.5%;
      margin-right: 2.5%;
      margin-top: 0px;
      margin-bottom: 60px;
      display: flex;
      justify-content: space-around; }
      #t_wine ul li {
        width: 23%; }
        #t_wine ul li img {
          width: 100%;
          margin-top: -70px; } }
/* sp END */
#t_space {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 100px; }
  #t_space .wrap {
    background-image: url("assets/images/top/t_space_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    height: 600px; }
    #t_space .wrap .white {
      padding-top: 30px;
      padding-bottom: 5px;
      margin: 0px 20% 0;
      background-color: rgba(255, 255, 255, 0.55); }
    #t_space .wrap h2 {
      font-size: 28px;
      text-align: center;
      color: #3d1302;
      font-weight: 700;
      padding-left: 50px; }
    #t_space .wrap p {
      text-align: left;
      color: #3d1302;
      font-size: 20px;
      line-height: 38px;
      font-weight: 700;
      padding-bottom: 20px;
      padding-left: 50px;
      padding-right: 50px; }
  #t_space .wrap2 {
    background-image: url("assets/images/top/white_bg.png");
    background-repeat: repeat-y;
    background-position: top center;
    background-size: auto;
    position: relative;
    padding: 0px 10% 20px; }
    #t_space .wrap2 p.link {
      width: 300px;
      margin: 0 auto 60px; }
  #t_space ul {
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    margin-top: 0px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-around; }
    #t_space ul li {
      width: 40%; }
      #t_space ul li img {
        width: 100%;
        margin-top: -70px; }

@media screen and (max-width: 800px) {
  #t_space {
    text-align: center;
    padding-top: 40px;
    margin-bottom: 40px; }
    #t_space .wrap {
      background-image: url("assets/images/top/t_space_bg.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      padding-top: 50px;
      height: 520px; }
      #t_space .wrap .white {
        padding-top: 30px;
        padding-bottom: 5px;
        margin: 0px 5% 0;
        background-color: rgba(255, 255, 255, 0.55); }
      #t_space .wrap h2 {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        color: #3d1302;
        font-weight: 700;
        padding-left: 20px; }
      #t_space .wrap p {
        text-align: left;
        color: #3d1302;
        font-size: 14px;
        line-height: 22px;
        font-weight: 700;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px; }
    #t_space .wrap2 {
      background-image: url("assets/images/top/white_bg.png");
      background-repeat: repeat-y;
      background-position: top center;
      background-size: auto;
      position: relative;
      padding: 0px 0% 20px; }
      #t_space .wrap2 p.link {
        width: 300px;
        margin: 0 auto 40px; }
    #t_space ul {
      width: 95%;
      margin-left: 2.5%;
      margin-right: 2.5%;
      margin-top: 0px;
      margin-bottom: 60px;
      display: flex;
      justify-content: space-around; }
      #t_space ul li {
        width: 46%; }
        #t_space ul li img {
          width: 100%;
          margin-top: -70px; } }
/* sp END */
#t_news {
  width: 800px;
  margin: 0 auto 120px auto;
  padding: 40px 0;
  text-align: center;
  background-color: #fff; }
  #t_news h2 {
    font-size: 34px;
    margin-bottom: 0;
    color: #1b1b1b !important; }
  #t_news p {
    color: #1b1b1b !important; }
  #t_news p.link {
    width: 400px; }
    #t_news p.link a {
      color: #ffffff; }
  #t_news span {
    color: #ffffff;
    font-size: 0.8em;
    background-color: #666666;
    padding: 6px 16px 6px 16px;
    border-radius: 4px; }
    #t_news span.n-topic {
      background-color: #1b1b1b; }
    #t_news span.n-kando {
      background-color: #94C62A; }

.news-table {
  width: 84%;
  border-spacing: 0px;
  margin: 0 auto 30px auto;
  border-top: 1px solid #000; }
  .news-table th {
    font-size: 16px;
    width: 14%;
    font-weight: normal;
    padding: 1.5em 0 1.5em 0.1em;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #000; }
  .news-table td {
    font-size: 16px;
    padding: 1.5em 0.6em;
    text-align: left;
    border-bottom: 1px solid #000; }
  .news-table p {
    margin-top: 10px; }
  .news-table a {
    text-decoration: underline; }
    .news-table a:hover {
      text-decoration: none; }

#index .news-table p {
  font-size: 16px;
  line-height: 180%;
  margin: 12px 0 0 0; }

@media screen and (max-width: 800px) {
  #t_news {
    width: 92%;
    margin: 0 4% 40px 4%;
    text-align: center; }
    #t_news h2 {
      font-size: 28px; }
    #t_news p.link {
      width: 80%;
      margin: 0 10%; }
    #t_news span {
      color: #ffffff;
      font-size: 0.8em;
      background-color: #666666;
      padding: 6px 16px 6px 16px;
      border-radius: 4px; }

  .news-table {
    width: 100%;
    border-spacing: 0px;
    margin: 0 auto 30px auto;
    border-top: 1px solid #1b1b1b; }
    .news-table th {
      display: block;
      font-size: 14px;
      width: 100%;
      font-weight: normal;
      padding: 0.8em 0.5em 0.5em 0.5em;
      text-align: left;
      vertical-align: top;
      border-bottom: none; }
    .news-table td {
      display: block;
      word-break: break-all;
      font-size: 14px;
      padding: 0.5em 0.6em 1.5em 0.6em;
      text-align: left;
      border-bottom: 1px solid #1b1b1b; }
    .news-table a {
      text-decoration: underline; }

  #index .news-table p {
    font-size: 15px;
    line-height: 160%;
    margin: 8px 0 0 0; } }
/* sp END */
#t_instagram {
  width: 1080px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 120px; }
  #t_instagram p.eng {
    margin-bottom: 20px; }

#sb_instagram .sb_instagram_header,
.sb_instagram_header {
  display: none; }

.insta {
  background-color: #ffffff;
  padding: 30px; }

@media screen and (max-width: 800px) {
  #t_instagram {
    width: 96%;
    margin: 0 2%;
    text-align: center;
    margin-bottom: 80px; }
    #t_instagram p.eng {
      font-size: 28px;
      margin-bottom: 5px; }

  .insta {
    padding: 15px; } }
/* sp END */
#t_access {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px; }
  #t_access h2 {
    font-size: 34px; }
  #t_access a {
    color: #ffffff; }
  #t_access .wrap {
    width: 100%;
    display: flex; }
    #t_access .wrap .item {
      width: 50%; }
      #t_access .wrap .item p {
        margin-bottom: 0; }
      #t_access .wrap .item img {
        width: 100%; }
  #t_access iframe {
    width: 100%;
    height: 100%; }
  #t_access .wrap2 {
    background-image: url("assets/images/top/white_bg.png");
    background-repeat: repeat-y;
    background-position: top center;
    background-size: auto;
    position: relative;
    padding: 50px 10% 50px; }
    #t_access .wrap2 p {
      color: #1b1b1b; }
  #t_access p.shop {
    font-size: 26px;
    font-weight: bold;
    padding-top: 0px;
    margin-bottom: 10px; }
  #t_access p.access {
    font-size: 20px;
    font-weight: bold;
    line-height: 34px;
    margin-bottom: 25px; }
  #t_access p.zip {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 25px; }

@media screen and (max-width: 800px) {
  #t_access {
    width: 100%;
    margin: 0 auto;
    text-align: left; }
    #t_access h2 {
      font-size: 28px;
      text-align: center;
      margin-bottom: 10px; }
    #t_access a {
      color: #ffffff; }
    #t_access .wrap {
      width: 100%;
      display: flex;
      flex-direction: column; }
      #t_access .wrap .item {
        width: 100%; }
        #t_access .wrap .item p {
          margin-bottom: 0; }
        #t_access .wrap .item img {
          width: 100%; }
    #t_access iframe {
      width: 100%;
      height: 300px; }
    #t_access .wrap2 {
      background-image: url("assets/images/top/white_bg.png");
      background-repeat: repeat-y;
      background-position: top center;
      background-size: auto;
      position: relative;
      padding: 30px 10% 10px; }
      #t_access .wrap2 p {
        color: #1b1b1b; }
    #t_access p.shop {
      font-size: 20px;
      padding-top: 0px;
      margin-bottom: 10px; }
    #t_access p.access {
      font-size: 18px;
      line-height: 34px;
      margin-bottom: 25px; }
    #t_access p.zip {
      font-size: 14px;
      margin-bottom: 25px; } }
/* sp END */
#t_reserve {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 100px; }
  #t_reserve h2 {
    font-size: 34px;
    margin-bottom: 20px; }
  #t_reserve .wrap {
    padding-top: 0px; }
    #t_reserve .wrap img {
      object-fit: cover;
      width: 100%;
      height: 450px; }
  #t_reserve .wrap2 {
    background-image: url("assets/images/top/white_bg.png");
    background-repeat: repeat-y;
    background-position: top center;
    background-size: auto;
    width: 800px;
    margin: 0 auto;
    padding: 40px 0 20px; }
    #t_reserve .wrap2 p {
      padding: 0 25%;
      text-align: left;
      color: #1b1b1b;
      font-weight: 700; }
      #t_reserve .wrap2 p.reserve {
        font-size: 24px;
        margin-bottom: 30px; }
      #t_reserve .wrap2 p.tel {
        font-weight: bold;
        font-size: 48px;
        margin-bottom: 30px; }
        #t_reserve .wrap2 p.tel span {
          font-size: 20px;
          vertical-align: middle;
          padding-right: 10px; }
      #t_reserve .wrap2 p.seat {
        font-size: 20px;
        line-height: 34px; }

@media screen and (max-width: 800px) {
  #t_reserve {
    text-align: center;
    padding-top: 40px;
    margin-bottom: 30px; }
    #t_reserve h2 {
      font-size: 28px;
      margin-bottom: 10px; }
    #t_reserve .wrap {
      padding-top: 0px;
      margin-bottom: 0px; }
      #t_reserve .wrap img {
        object-fit: cover;
        width: 100%;
        height: 150px; }
    #t_reserve .wrap2 {
      background-image: url("assets/images/top/white_bg.png");
      background-repeat: repeat-y;
      background-position: top center;
      background-size: auto;
      width: 100%;
      margin: 0 auto;
      padding: 20px 0 20px; }
      #t_reserve .wrap2 p {
        padding: 0 15px;
        text-align: left;
        color: #1b1b1b;
        font-weight: 700; }
        #t_reserve .wrap2 p.reserve {
          font-size: 20px;
          margin-bottom: 5px; }
        #t_reserve .wrap2 p.tel {
          font-weight: bold;
          font-size: 40px;
          margin-bottom: 5px; }
          #t_reserve .wrap2 p.tel span {
            font-size: 16px;
            vertical-align: middle;
            padding-right: 10px; }
        #t_reserve .wrap2 p.seat {
          font-size: 16px;
          line-height: 24px; } }
/* sp END */
#t_bn {
  text-align: center; }
  #t_bn .flex {
    width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around; }
  #t_bn .cf {
    width: 740px;
    margin: 100px auto 100px; }
    #t_bn .cf h2 {
      font-size: 24px;
      border-bottom: 1px solid #333333;
      padding-bottom: 15px; }
    #t_bn .cf p {
      font-size: 17px;
      line-height: 34px; }
  #t_bn p {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 30px; }
  #t_bn ul {
    width: 980px;
    margin: 80px auto 60px auto;
    display: flex;
    justify-content: center; }
    #t_bn ul li {
      width: 220px;
      margin: 0 30px; }
      #t_bn ul li a {
        padding: 5px 20px;
        background-color: #1b1b1b;
        display: block; }
        #t_bn ul li a:link, #t_bn ul li a:visited, #t_bn ul li a:hover {
          color: #ffffff; }

@media screen and (max-width: 800px) {
  #t_bn {
    text-align: center; }
    #t_bn .flex {
      width: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      flex-direction: column; }
      #t_bn .flex .item {
        margin-bottom: 20px; }
      #t_bn .flex img {
        width: 65%; }
    #t_bn p {
      font-size: 15px;
      line-height: 24px;
      margin-bottom: 10px; }
    #t_bn ul {
      width: 100%;
      margin: 20px auto 0px auto;
      display: flex;
      justify-content: center;
      flex-direction: column; }
      #t_bn ul li {
        width: 80%;
        margin: 0 10% 10px; }
        #t_bn ul li a {
          padding: 5px 20px;
          background-color: #1b1b1b;
          display: block; }
          #t_bn ul li a:link, #t_bn ul li a:visited, #t_bn ul li a:hover {
            color: #ffffff; } }
/* sp END */
@media screen and (max-width: 800px) {
  .cta {
    width: 100%;
    background-color: #751357;
    position: fixed;
    bottom: 0px;
    left: 0px;
    display: flex;
    align-items: center;
    padding: 10px; }
    .cta p:nth-child(1) {
      color: #ffffff;
      width: 40%;
      padding-left: 10px;
      margin-bottom: 0px; }
      .cta p:nth-child(1) a {
        color: #ffffff; }
    .cta p.reserve_btn:nth-child(2) {
      width: 60%;
      margin-bottom: 0px; }
      .cta p.reserve_btn:nth-child(2) a {
        color: #333333;
        font-size: 20px;
        letter-spacing: 0.2em;
        font-weight: bold;
        text-align: center;
        border: 1px solid #ffffff;
        background-color: #ffffff;
        border-radius: 3px;
        display: block;
        padding: 5px 20px;
        background-image: none; } }
/* sp END */
/* 固定バナー */
#fix-bn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: none;
  /* 初期状態で非表示 */
  opacity: 0;
  transform: translateY(150px);
  /* シュッと上がってくるエフェクトの初期位置 */
  transition: opacity 0.3s ease-out, transform 0.3s ease-out; }

@media screen and (max-width: 800px) {
  #fix-bn {
    display: none; } }
.sns-fixed {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 10px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999; }

.sns-close {
  text-align: right;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 5px; }

.sns-icon {
  display: block;
  padding: 10px 15px;
  margin: 5px 0;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold; }

/*----------------------------
https://www.tipswork.net/css/853/
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0; }

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0; }

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0; }

.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0); }

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0; }

.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0); }

.timing02 {
  transition-delay: .1s; }

.timing03 {
  transition-delay: .2s; }

.timing04 {
  transition-delay: .3s; }

.timing05 {
  transition-delay: .4s; }

.timing06 {
  transition-delay: .5s; }

.timing07 {
  transition-delay: .6s; }

.timing08 {
  transition-delay: .7s; }

#page-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  transform: translateY(100px); }

#page-top i {
  font-size: 3em;
  padding-bottom: 5px; }

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333333;
  border-radius: 45px;
  width: 45px;
  height: 45px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  opacity: 0.8; }

#page-top a:hover {
  background: #777; }

#page-top.UpMove {
  animation: UpAnime 0.5s forwards; }

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
#page-top.DownMove {
  animation: DownAnime 0.5s forwards; }

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 1;
    transform: translateY(100px); } }
@media screen and (max-width: 800px) {
  #page-top {
    position: fixed;
    right: 15px;
    bottom: 55px;
    z-index: 2;
    transform: translateY(100px); }

  #page-top i {
    font-size: 3em;
    padding-bottom: 5px; }

  #page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333333;
    border-radius: 35px;
    width: 35px;
    height: 35px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
    opacity: 0.8; }

  #page-top a:hover {
    background: #777; }

  #page-top.UpMove {
    animation: UpAnime 0.5s forwards; }

  @keyframes UpAnime {
    from {
      opacity: 0;
      transform: translateY(150px); }
    to {
      opacity: 1;
      transform: translateY(0); } }
  #page-top.DownMove {
    animation: DownAnime 0.5s forwards; }

  @keyframes DownAnime {
    from {
      opacity: 1;
      transform: translateY(0); }
    to {
      opacity: 1;
      transform: translateY(150px); } } }
/* メニュー */
.menu-list {
  width: 100%;
  margin: 0 auto; }

.tab {
  width: 970px;
  display: flex;
  justify-content: space-between;
  margin: 100px auto 80px auto;
  padding: 0; }
  .tab li {
    width: 23%;
    padding: 0;
    margin: 0;
    text-align: center;
    background-color: #af233f; }

.tab li a {
  display: block;
  font-size: 20px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  padding: 5px; }
  .tab li a:hover {
    color: #ffffff;
    background-color: #1b1b1b;
    border: 1px solid #1b1b1b;
    text-decoration: none; }

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  color: #ffffff;
  background-color: #1b1b1b;
  border: 1px solid #1b1b1b; }

@media screen and (max-width: 800px) {
  .menu-list {
    width: 100%;
    margin: 0px; }

  .tab {
    width: 96%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px auto 40px auto;
    padding: 0; }
    .tab li {
      width: 48%;
      padding: 0;
      margin: 3px 1% 3px 1%;
      text-align: center;
      background-color: #1b1b1b; }

  .tab li a {
    display: block;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 5px; }
    .tab li a:hover {
      color: #ffffff;
      background-color: #1b1b1b;
      text-decoration: none; }

  /*liにactiveクラスがついた時の形状*/
  .tab li.active a {
    color: #ffffff;
    background-color: #1b1b1b;
    border: 1px solid #1b1b1b; } }
/*------------------------------------*/
/* ワイン */
/*------------------------------------*/
#wine-list .wine-txt p {
  font-size: 20px;
  text-align: center;
  margin: 0 5% 60px 5%; }

@media screen and (max-width: 800px) {
  #wine-list .wine-txt p {
    font-size: 16px;
    text-align: left;
    margin: 0 5% 60px 5%; } }
/*エリアの表示非表示と形状*/
.area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  /* 予約ボタン */
  /* ドリンク */
  /* 料理 */
  /* ワインメニュー */
  /* コースメニュー */ }
  .area h2 {
    width: 970px;
    font-size: 34px;
    text-align: center;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 15px;
    margin: 0 auto 60px auto;
    font-weight: 700; }
  .area h3 {
    font-size: 24px;
    width: 840px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin: 50px auto 20px auto; }
  .area p {
    padding-left: 0px; }
    .area p.m_name {
      font-size: 20px;
      color: #FFF8E1;
      line-height: 130%;
      margin-bottom: 6px; }
    .area p.m_price {
      font-size: 20px;
      line-height: 130%;
      margin-bottom: 25px; }
    .area p.m_comment {
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 0px; }
    .area p.m_menu {
      font-size: 16px;
      line-height: 30px;
      margin-bottom: 0px;
      padding-right: 10px; }
    .area p.small {
      font-size: 14px; }
  .area p.reserve_btn {
    width: 80%;
    margin: 0 20% 30px 0; }
  .area p.reserve_btn a {
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    display: block;
    background-color: #1b1b1b;
    border-radius: 5px;
    padding: 20px;
    background-image: url("assets/images/btn_ico.png");
    background-repeat: no-repeat;
    background-position: 50px center;
    padding-left: 50px;
    border: 1px solid #b6204a;
    letter-spacing: 0.2em; }
    .area p.reserve_btn a:hover {
      color: #b6204a;
      background-color: #ffffff;
      background-image: url("assets/images/btn_ico_h.png");
      background-repeat: no-repeat;
      background-position: 50px center;
      border: 1px solid #b6204a;
      text-decoration: none;
      letter-spacing: 0.2em; }
  .area .drink-box .item {
    display: flex;
    width: 840px;
    flex-wrap: wrap;
    margin: 0 auto; }
  .area .drink-box .drink-wrap {
    width: 410px;
    margin-bottom: 10px; }
    .area .drink-box .drink-wrap p {
      padding-left: 5px; }
  .area .drink-box #tax-in {
    text-align: center;
    width: 100%;
    color: #a5a3a3;
    letter-spacing: 0.1em;
    font-size: 0.9em;
    margin-top: 30px;
    margin-bottom: 0px; }
  .area .food-box {
    margin: 0; }
    .area .food-box ul {
      width: 930px;
      margin: 0 auto;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
      .area .food-box ul li {
        width: 450px;
        margin: 0;
        padding: 0; }
    .area .food-box .m_img img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      object-position: 100% 0%; }
    .area .food-box .m_name {
      font-size: 24px;
      line-height: 35px; }
    .area .food-box .m_price {
      font-size: 24px;
      padding: 0 0 15px 0; }
    .area .food-box .m_comment {
      font-size: 16px;
      padding: 0 0 60px 0;
      line-height: 32px; }
  .area .wine-box {
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between; }
    .area .wine-box .item {
      width: 100%;
      /* 必要に応じて調整 */
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 100px; }
    .area .wine-box .item.odd {
      flex-direction: row-reverse; }
      .area .wine-box .item.odd .txt-cont {
        margin-left: 5%;
        margin-right: 2%; }
    .area .wine-box .item.even {
      flex-direction: row; }
      .area .wine-box .item.even .txt-cont {
        margin-left: 2%;
        margin-right: 5%; }
    .area .wine-box .img-cont {
      width: 50%; }
    .area .wine-box .txt-cont {
      width: 40%; }
    .area .wine-box .m_img {
      margin-bottom: 5px; }
    .area .wine-box .m_img img {
      width: 100%;
      height: auto; }
    .area .wine-box .m_name {
      font-size: 36px;
      line-height: 50px;
      padding: 0 10% 0 0;
      margin-bottom: 0px; }
    .area .wine-box .m_price {
      font-size: 36px;
      padding: 0 10% 20px 0;
      margin-top: 0px; }
    .area .wine-box .m_comment {
      font-size: 20px;
      padding: 0 10% 0px 0;
      line-height: 40px; }
  .area .banquet-box {
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .area .banquet-box .item {
      width: 100%;
      /* 必要に応じて調整 */
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-bottom: 100px; }
    .area .banquet-box .item.odd {
      flex-direction: row-reverse; }
      .area .banquet-box .item.odd .txt-cont {
        margin-left: 5%;
        margin-right: 2%; }
    .area .banquet-box .item.even {
      flex-direction: row; }
      .area .banquet-box .item.even .txt-cont {
        margin-left: 2%;
        margin-right: 5%; }
    .area .banquet-box .img-cont {
      width: 50%; }
    .area .banquet-box .txt-cont {
      width: 40%; }
    .area .banquet-box .m_img {
      margin-bottom: 5px; }
    .area .banquet-box .m_img img {
      width: 100%;
      height: auto; }
    .area .banquet-box .m_name {
      font-size: 24px;
      line-height: 35px;
      padding: 0 10% 5px 0;
      margin-bottom: 0px; }
    .area .banquet-box .m_price {
      font-size: 24px;
      line-height: 35px;
      padding: 0 10% 30px 0;
      margin-top: 0px;
      margin-bottom: 0px; }
    .area .banquet-box .m_comment {
      font-size: 16px;
      line-height: 32px;
      padding: 0 10% 35px 0; }
    .area .banquet-box .m_notes {
      font-size: 14px;
      line-height: 27px; }

@media screen and (max-width: 800px) {
  .area {
    display: none;
    /*はじめは非表示*/
    opacity: 0;
    /*透過0*/
    /* 予約ボタン */
    /* ワインメニュー */
    /* コースメニュー */ }
    .area h2 {
      color: #ffffff;
      width: 100%;
      font-size: 30px;
      text-align: center;
      border-bottom: 2px solid #ffffff;
      margin-bottom: 30px;
      padding: 0 0.5em 15px 0.5em; }
    .area h3 {
      font-size: 24px;
      text-align: center;
      border-bottom: 2px solid #ffffff;
      padding-bottom: 10px;
      margin-bottom: 20px;
      margin-top: 30px; }
    .area p {
      padding-left: 0px; }
      .area p.m_name {
        font-size: 20px;
        color: #ffc777;
        line-height: 130%;
        margin-bottom: 6px; }
      .area p.m_price {
        font-size: 20px;
        line-height: 130%;
        margin-bottom: 25px; }
      .area p.m_comment {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 0px; }
      .area p.m_menu {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 0px;
        padding-right: 10px; }
      .area p.small {
        font-size: 14px; }
    .area p.reserve_btn {
      width: 96%;
      margin: 0 auto 30px auto; }
    .area p.reserve_btn a {
      color: #ffffff;
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      display: block;
      background-color: #1b1b1b;
      border-radius: 5px;
      padding: 15px;
      background-image: url("assets/images/btn_ico.png");
      background-repeat: no-repeat;
      background-position: 50px center;
      background-size: 30px;
      padding-left: 40px;
      border: 1px solid #b6204a;
      letter-spacing: 0.2em; }
      .area p.reserve_btn a:hover {
        color: #b6204a;
        background-color: #ffffff;
        background-image: url("assets/images/btn_ico_h.png");
        background-repeat: no-repeat;
        background-position: 50px center;
        border: 1px solid #b6204a;
        text-decoration: none;
        letter-spacing: 0.2em; }
    .area .drink-box {
      display: flex;
      padding: 15px 5% 20px 5%;
      justify-content: space-around;
      flex-wrap: wrap; }
      .area .drink-box .item {
        width: 100%; }
        .area .drink-box .item li {
          margin-bottom: 30px; }
      .area .drink-box #tax-in {
        text-align: center;
        width: 100%;
        color: #a5a3a3;
        letter-spacing: 0.1em;
        font-size: 0.9em;
        margin-top: 30px;
        margin-bottom: 0px; }
    .area .food-box {
      margin: 0; }
      .area .food-box ul {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: space-between; }
        .area .food-box ul li {
          width: 100%;
          margin: 0;
          padding: 0; }
      .area .food-box .m_img img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: 100% 0%; }
      .area .food-box .m_name {
        font-size: 24px;
        padding: 0 8%; }
      .area .food-box .m_price {
        font-size: 24px;
        padding: 0 8% 15px 8%;
        margin-bottom: 0px; }
      .area .food-box .m_comment {
        font-size: 16px;
        padding: 0 8% 60px 8%;
        line-height: 28px;
        margin-top: 0px; }
    .area .wine-box {
      width: 100%;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      flex-direction: column;
      justify-content: space-between; }
      .area .wine-box .item {
        width: 100%;
        flex-direction: column-reverse;
        display: block;
        margin-bottom: 50px; }
      .area .wine-box .item.even .txt-cont {
        margin-left: 0px;
        margin-right: 0%; }
      .area .wine-box .item.odd {
        flex-direction: row-reverse; }
        .area .wine-box .item.odd .txt-cont {
          margin-left: 0%;
          margin-right: 0%; }
      .area .wine-box .img-cont {
        width: 100%; }
      .area .wine-box .txt-cont {
        width: 95%;
        margin: 0;
        padding-left: 5%; }
      .area .wine-box .m_img {
        margin-bottom: 25px; }
      .area .wine-box .m_img img {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
        object-position: 100% 50%; }
      .area .wine-box .m_name {
        font-size: 25px;
        line-height: 150%;
        padding: 0;
        margin-bottom: 0px; }
      .area .wine-box .m_price {
        font-size: 24px;
        padding: 0;
        margin-top: 0px;
        margin-bottom: 0px; }
      .area .wine-box .m_comment {
        font-size: 16px;
        padding: 20px 0 0 0;
        line-height: 26px; }
    .area .banquet-box {
      width: 100%;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      justify-content: space-between; }
      .area .banquet-box .item {
        flex-direction: column-reverse;
        display: block;
        margin-bottom: 50px; }
      .area .banquet-box .item.even .txt-cont {
        margin-right: 0%; }
      .area .banquet-box .item.odd .txt-cont {
        margin-left: 0%;
        margin-right: 0%; }
      .area .banquet-box .img-cont {
        width: 100%; }
      .area .banquet-box .txt-cont {
        width: 96%;
        margin: 0 auto; }
      .area .banquet-box .m_img {
        margin-bottom: 5px; }
      .area .banquet-box .m_img img {
        width: 100%;
        max-height: 350px;
        object-fit: cover;
        object-position: 100% 50%; }
      .area .banquet-box .m_name {
        color: #ffc777;
        font-size: 20px;
        line-height: 30px;
        padding: 30px 5% 5px 20px;
        margin-bottom: 0px; }
      .area .banquet-box .m_price {
        font-size: 20px;
        line-height: 30px;
        padding: 0 5% 30px 20px;
        margin-top: 0px;
        margin-bottom: 0px; }
      .area .banquet-box .m_comment {
        font-size: 14px;
        line-height: 32px;
        padding: 0 5% 35px 20px; }
      .area .banquet-box .m_notes {
        font-size: 13px;
        line-height: 160%;
        padding: 0 20px 0px 20px; } }
/*-- SP END */
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards; }

@keyframes displayAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/*------------------------------------*/
/* CONCEPT */
/*------------------------------------*/
#concept {
  margin-top: 50px;
  overflow: hidden; }
  #concept h2 {
    text-align: left;
    font-size: 34px;
    margin-bottom: 30px;
    margin-top: 130px;
    font-weight: 700; }
  #concept p {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 20px;
    letter-spacing: 0.1em; }
  #concept .h-concept h2 {
    margin-left: 6%; }
  #concept .h-concept img {
    width: 100%;
    height: auto; }
  #concept .h-concept p {
    text-align: left;
    margin-top: 40px;
    margin-left: 50%;
    margin-bottom: 170px;
    padding-right: 30px; }
  #concept .staff {
    width: 650px;
    margin: 180px auto 0 auto; }
    #concept .staff p {
      margin-left: 0em;
      margin-top: 1.5em;
      padding: 0px; }
      #concept .staff p em {
        font-size: 24px; }
      #concept .staff p.name {
        text-align: right; }
  #concept .flex {
    display: flex;
    justify-content: space-around;
    margin-bottom: 120px; }
    #concept .flex .item:nth-child(1) {
      width: 50%; }
      #concept .flex .item:nth-child(1) img {
        width: 100%; }
    #concept .flex .item:nth-child(2) {
      width: 32%;
      margin: 0 9% 0 9%;
      /*   display: flex;*/
      flex-wrap: wrap;
      /*  flex-direction: row;
        justify-content: space-between;
        align-content: space-between;*/ }
  #concept .even {
    flex-direction: row-reverse; }

@media screen and (max-width: 800px) {
  #concept h2 {
    text-align: left;
    font-size: 23px;
    line-height: 140%;
    margin: 0 1em 30px 1em;
    margin-top: 0px; }
  #concept p {
    font-size: 15px;
    line-height: 28px;
    margin: 0 1.2em 0px 1.2em;
    letter-spacing: 0em; }
  #concept .h-concept img {
    width: 100%;
    height: auto; }
  #concept .h-concept p {
    text-align: left;
    margin-top: 40px;
    margin-left: 1.2em;
    margin-bottom: 60px;
    padding-right: 0; }
  #concept .staff {
    width: 100%;
    margin: 60px auto 0 auto; }
    #concept .staff img {
      width: 100%; }
    #concept .staff p {
      font-size: 14px;
      margin-left: 1.2em;
      margin-right: 1.2em;
      margin-top: 1.5em;
      padding: 0px; }
      #concept .staff p em {
        font-size: 24px; }
      #concept .staff p.name {
        text-align: right; }
  #concept .flex {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    margin-bottom: 50px; }
    #concept .flex .item:nth-child(1) {
      width: 94%;
      margin: 0 3%; }
      #concept .flex .item:nth-child(1) img {
        width: 100%;
        margin-bottom: 30px; }
    #concept .flex .item:nth-child(2) {
      width: 94%;
      margin: 0 3%;
      /*   display: flex;*/
      flex-wrap: wrap;
      /*  flex-direction: row;
        justify-content: space-between;
        align-content: space-between;*/ } }
/*-- SP END */
/*------------------------------------*/
/* SPACE */
/*------------------------------------*/
#space {
  width: 100%;
  margin: 120px auto 0;
  overflow: hidden; }
  #space h2 {
    color: #faedea;
    font-size: 32px;
    line-height: 55px;
    padding-bottom: 15px;
    font-weight: 700; }
  #space p {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 0px; }
  #space .flex {
    display: flex;
    justify-content: space-around;
    margin-bottom: 120px; }
    #space .flex .item:nth-child(1) {
      width: 50%; }
      #space .flex .item:nth-child(1) img {
        width: 100%; }
    #space .flex .item:nth-child(2) {
      width: 32%;
      margin: 0 9% 0 9%;
      flex-wrap: wrap;
      /*  justify-content: space-between;
        align-content: space-between;*/ }
      #space .flex .item:nth-child(2) h2 {
        margin-bottom: 30px; }
  #space .even {
    flex-direction: row-reverse; }
  #space .rental {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #ffffff;
    padding: 25px; }
    #space .rental h3 {
      font-weight: bold;
      font-size: 28px;
      margin-bottom: 20px; }
    #space .rental p {
      margin-bottom: 10px; }

@media screen and (max-width: 800px) {
  #space {
    width: 100%;
    margin: 80px auto 0; }
    #space h2 {
      font-size: 23px;
      line-height: 140%;
      text-align: left;
      border-bottom: 2px solid #ffffff;
      padding-bottom: 10px;
      margin-bottom: 20px; }
    #space h3 {
      font-size: 17px;
      line-height: 30px;
      text-align: left;
      margin-bottom: 30px;
      padding: 0 20px 0 20px; }
    #space p {
      font-size: 16px;
      line-height: 32px;
      margin-bottom: 0px; }
    #space .flex {
      display: flex;
      justify-content: space-around;
      margin-bottom: 60px;
      flex-direction: column; }
      #space .flex .item:nth-child(1) {
        width: 100%; }
        #space .flex .item:nth-child(1) img {
          width: 100%;
          margin-bottom: 30px; }
      #space .flex .item:nth-child(2) {
        width: 90%;
        margin: 0 5% 0 5%;
        flex-wrap: wrap;
        /*  justify-content: space-between;
          align-content: space-between;*/ }
        #space .flex .item:nth-child(2) h2 {
          margin-bottom: 30px; }
    #space .rental {
      width: 94%;
      margin: 0 3%;
      text-align: center;
      border: 1px solid #ffffff;
      padding: 25px; }
      #space .rental h3 {
        font-weight: bold;
        font-size: 24px;
        margin-bottom: 20px; }
      #space .rental p {
        font-size: 14px;
        line-height: 180%;
        margin-bottom: 10px; } }
