body{
    font-family: 'Zen Old Mincho', serif;
    background-color: #0B0B0B;
    color: #FFF;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
}
body.top_page {
  animation: scrollseal 0s 0s both;
  }
  @keyframes scrollseal {
    from { overflow: hidden }
    to { overflow: visible }
    }

img{
  border: none;
}
h1 {
  text-align: center;
}

/**表示設定**/
.pc{
  display:none ;

}
@media screen and (min-width:768px) {
.pc{
  display: block;
}
.sp{
  display: none;
}

}

/*fade設定*/
.fadein {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 2s; /* 動きを滑らかに */

}
.fadeIn{
  opacity: 1;
}
/*fade設定2*/
.fadeup {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 1s; /* 動きを滑らかに */
  transform: translateY(30px);

}
.fadeUp{
  opacity: 1;
  transform: translateY(0);
}
/*スタート画像*/
.start {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  margin:0 auto;
}
.start img {
  width: 25%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/**スマホ下のメニュー**/
.menu_nav{
  position: sticky;
  bottom: 0;
  width: 100%;
}
.menu_box{
  height: 18vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  background-color: #0B0B0B;
  border-top: 1px solid #FFF;
  overflow: hidden;
  
}
.menu_list{
  width: 33.3%;
  text-align: center;
  font-size: 21px;
  font-weight: bold;
}
.web_r{
  background-color: #be0e33;
  padding: 18vw 0;
}
.center{
  border-left: 1px solid #FFF;
  /*border-right: 1px solid #FFF;*/
}
/**header設定**/
header{
  width: auto;
  padding-bottom: 100px;
  /*margin-bottom: 100px;*/
}
header.page {
  height: auto;
}

a{
  color: #FFF;
  text-decoration: none;
}

.top_img{
  width: 100%;
  height: 90vh;
  object-fit: cover;

}
.top_logo{
  position: absolute;
  top: 16px;
  right: 70px;
  height: 48px;
}
.top_logo2{
  height: auto;
  text-align: center;
  padding-top: 20vw;
}
.top_logo2 img{
  width: 50vw;
}
@media screen and (min-width:768px) {
  .top_logo2{
    height: auto;
    text-align: center;
    padding-top: 100px;
  }
  .top_logo2 img{
    width: 280px;
  }
  
  }

.top_under{
  display: flex;
  height: 10vh;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.top_contact{
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
  color: #FFF;
  border: 1px solid #FFF;
  text-align: center;
  font-size: 16px;
}
/**PC設定**/
@media screen and (min-width:768px) {
  .top_under{
    height: 7.5vh;
  }
  .top_contact{
    width: 60%;
    background:#0B0B0B;
    position: fixed;
    bottom: 2px;
    z-index: 98;

  }
  li {
    text-align: center;

  }
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    vertical-align: middle;
    border: 0;
    background: transparent;
    outline: 0;
    border-radius: 0;
    text-align: inherit;
  }
  
  button:hover {
    cursor: pointer;
  }
  
  /**************** 以下、ハンバーガーボタンのスタイリング ****************/
  .btn {
    /* ボタンの配置位置  */
    position: fixed;
    top: 32px;
    right: 22px;
    /* ボタンの大きさ  */
    width: 30px;
    height: 22px;
    /* バーガーの線をボタン範囲の中心に配置 */
    display: flex;
    justify-content: center;
    align-items: center;
    /* 最前面に */
    z-index: 100;
  }
  
  /***** 真ん中のバーガー線 *****/
  .btn-line {
    /* 線の長さと高さ */
    width: 100%;
    height: 4px;
    /* バーガー線の色 */
    background-color: #FFF;
    /* バーガー線の位置基準として設定 */
    position: relative;
    transition: .2s;
  }
  
  /***** 上下のバーガー線 *****/
  .btn-line::before,
  .btn-line::after {
    content: "";
    /* 基準線と同じ大きさと色 */
    position: absolute;
    width: 80%;
    height: 100%;
    background-color: #FFF;
    transition: .2s;
    right:0;
  }
  
  
  .btn-line::before {
    /* 上の線の位置 */
    transform: translateY(-12px);
  }
  
  
  .btn-line::after {
    /* 下の線の位置 */
    transform: translateY(12px);
  }
  
  /***** メニューオープン時 *****/
  .btn-line.open {
    /* 真ん中の線を透明に */
    background-color: transparent;
  }
  
  .btn-line.open::before,
  .btn-line.open::after {
    content: "";
    transition: .2s;
  }
  
  .btn-line.open::before {
    /* 上の線を傾ける */
    transform: rotate(45deg);
  }
  
  .btn-line.open::after {
    /* 上の線を傾ける */
    transform: rotate(-45deg);
  }
  
  /**************** ここまで、ハンバーガーボタンのスタイリング ****************/
  
  /**************** 以下、メニューのスタイリング ****************/
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  /*  メニューを非表示に  */
    visibility: hidden;
    opacity: 0;
    /* メニューを縦に */
    display: flex;
    flex-direction: column;
    color: #efefef;
    background-color: #1A1A1A;
    transition: opacity .3s;
    z-index: 99;
  }
  
  .menu-list {
    width: 100%;
    /*height: 50%;*/
    /* メニューテキスト位置をリスト内中心に */
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 2.5;
    font-size: 24px;
    font-weight: bold;

  }
  .menu_logo{
    padding-top: 5vw;
    width: 42vw;
    margin: 0 auto;
    position: absolute;
    bottom: 20vw;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .menu-logo img{
    width: 42vw;
  }

  .menu-list:hover {
    color: #333;
    background-color: rgba(255, 255, 255, 0.5);
    transition: .3s;
    cursor: pointer;
  }
  
  .menu.open {
  /*   transition: visibility 1s ease-in; */
    visibility: visible;
    opacity: 1;
    transition: opacity .5s;
    padding-top: 17vw;
  }

  /**PC設定**/
@media screen and (min-width:768px) {
  .menu.open{
    padding-top: 7vw;
  }
 
  .menu_logo{
    margin: 0 auto;
    width: 300px;
    position: static;
    transform: none;
    -webkit-transform:none;
  }
  
}
/*********秘伝のタレとメニューのトップ画像共通設定*********/
.top_box{
  width: 100%;
  height: 75px;
  position: relative;
  top:100px;
  background: #938f8e;
  margin-bottom: 100px;
}
.top_box img{
  width: 100%;
  height: 75px;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}
.top_box h2{
  /*color: #000;*/
}

.top_tittle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#tare {
  padding-top: 200px;
}

/*********商品箇所*********/
.item_img{
  width: 100%;
}
.item_img img{
  width: 100%;
}

/*秘伝のタレ*/
.top_tare{
  background: linear-gradient(to right, #1E1A1A 0%, #1E1A1A 50%, #101010 50%, #101010 100%);
}

.tare{
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto;
  padding: 30px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 10px;
}
/*説明共通*/
.inner_txt{
  line-height: 50px;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 400;
  text-align: center;
}

.tare_sec{
  padding-bottom: 30px;
  line-height: 50px;
}
/*縦書き対応*/
.ver-w{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 10px;
  margin-left: auto;
  margin-right: auto;
}
/***PC対応**/
@media screen and (min-width: 768px){
  .bl_box{
    display: flex;
  margin-left: auto;
  margin-right: auto;
  }
  
  .tare_section{
    position: relative;
    display: flex;
    height: 50vw;
    max-height: 700px;
    min-height: 570px;
  }
  .item_img{
    width: 50%;
    object-fit: cover;
  }
  .item_img img{
    height: 100%;
    object-fit: cover;
  }
  .top_tare{
    width: 50%;
    position: relative;
    
  }
  .slidedown{
    opacity: 0;
  }
  .slideDown{
    animation: itembg 4s forwards;
    background: linear-gradient(to right, #1E1A1A 0%, #1E1A1A 50%, #0B0B0B 50%, #0B0B0B 100%);
    content: "";
    transform-origin: top center;
  
  }
  .slideDown::before {
    animation: itembg 4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    transform-origin: top center;
  }

  @keyframes itembg {
    0% {
      opacity: 0;
      transform: scaleY(0) translateY(-5%);
    }
    30% {
      transform: scaleY(1) translateY(0);
    }
    100% {
      transform: scaleY(1) translateY(0);
    }
    30%, 100% {
      opacity: 1;
    }
  }
  .fadein{
    transition: all 2s 1s;
  }
  .tare{
    position: relative;
    left: 21%;
    margin: 0;
    padding: 7vw 0 0 0;
  }
  .tare_sec{
    position: relative;
    display: inline-block;
    left: 13%;
    margin-top: 1vw;
    text-align: left;
  
  }



}

  
/*********コース料理*********/
.top_course{
  position: relative;
  margin: 23vw 0;
}
.course_bg img{
  position: absolute;
  left: 0;
  right: 0;
  top: 50vw;
  height: calc(87vw + 70px);
  width: 100%;
  /*height: 100%;*/
  object-fit: cover;
}
.course_inner{
  position: relative;
}
.course_ttl h2{
  text-align: center;
  margin: 0 auto;
}

.course_img{
  position: relative;
  display: flex;
  webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6vw;
  padding-left: 7vw;
}
.course_img img{
  width: 100%;
}

.course_left{
  width: 46vw;
  margin: 14vw 8vw 0 0;
}
.course_right{
  width: 22vw;
}

.course_sec{
  margin: 20vw 0 7vw;
}

.inner_contact{
  text-align: center;
  display: flex;
  margin: 0 auto;
  margin-top: 4vw;
  margin-bottom: 20vw;
  justify-content: center;
}

.inner_contact a{
  font-size: 20px;
  border: 1px solid #FFF;
  padding: 3vw 7vw;  
}

/**PC設定**/
@media screen and (min-width:768px) {
  .top_course{
    margin: 11.5vw 0;
  }
  .course_bg{
    
  }
  .course_bg img{
    top: 6vw;
    height: 50vw;
    max-height: 700px;
    min-height: 570px;
    object-fit: cover;
    object-position: bottom;
  }
  .course_img{
    position: absolute;
    top:-1vw;
    right: 2vw;
    width: 50%;
  }
  .course_left{
    position: relative;
    margin-right: 2vw;
    margin-top: 2vw;
    text-align: right;
  }
  .course_left img{
    width:90%;

  }
  p.course_left::after {
    position: absolute;
    content: '';
    right: 10%;
    top: 0;
    width: 90%;
    height: 100%;
    background-color: rgba(255,255,255,.3);
    }
    .course_right{
      position: relative;
    }
    p.course_right::after {
      position: absolute;
      content: '';
      right: 0;
      top: 0;
      width: 100%;
      height: 97%;
      background-color: rgba(255,255,255,.3);
      }
  .course_ttl h2{
    font-size: 30px;
    position: relative;
    top: 6vw;
    left: 49%;
    margin: 0;
  }
  .course_sec{
    position: relative;
    margin-top: 0;
  }

  .course_sec p{
    position: relative;
    top: 2vw;
    left: -52.5%;
    margin: 0;
    text-align: right;
  }


  .top_contact{
    width: 60%;
    background:#0B0B0B;
    position: fixed;
    bottom: 2;
    z-index: 98;

  }
  .inner_contact{
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 20vw;
  }
  
  .inner_contact a{
    font-size: 20px;
    border: 1px solid #FFF;
    padding: 2vw 7vw;  
  }
}

/********メニュー*********/

/**コース設定**/
.course_box{
  margin-bottom: 100px;
}
.c_menu_tittle{
  font-size: 20px;
  margin-bottom: 10px;
}
.c_menu_left{
  padding: 5px 20px 0 0;
}
.c_menu_right{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c_menu_inner{
  display: flex;
  padding: 0 20px;
}
.c_menu_price{
  display: flex;
}
.price_box{
  width: 50%;
}

.price_box p{
  font-size: 14px;
}

.c_reserved{
  width: 50%;
  position: relative;
}
.c_reserved a{
  width: 28vw;
  max-width: 300px;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(#be0e33, #9f0c2b);
  display: block;
  margin-left: auto;
  font-family: '游ゴシック Medium', sans-serif;
  font-weight: bold;
}

.c_reserved a:hover {
  background: #d72c51
}


.c_menu_ul li{
  display: inline-block;
  padding-right: 20px;
}
.c_menu_sec2 dd{
  font-size: 14px;
}

.sec4_top,.sec4_under{
  display: flex;
}
.sec4_top dt{
  width: 15%;
}

.sec4_under dt{
  width: 15%;
}
.sec4_under dd{
  width: 35%;
}
/**スマホ設定**/
@media screen and (max-width: 767px){
  .course_box{
    width: 95%;
    margin: 0 auto;
    margin-bottom: 100px;
  }
  .c_menu_tittle{
    font-size: 16px;
  }
  .c_menu_inner{
    flex-wrap: wrap;
  }
  .c_menu_left {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .price_box{
    width: 100%;
  }
  .c_reserved{
    width: 100%;
  }
  .c_reserved a{
    text-align:center;
    width: 80%;
    font-size: 14px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .c_menu_price{
    margin-bottom: 20px;
  }
  .c_menu_sec{
    margin-bottom: 20px;
  }
  .c_menu_sec2{
    margin-bottom: 20px;
  }

}

.menu_list_right{
  margin-bottom: 200px;
}
.shop_menu_area > .menu_list_right h3 {
  display: block;
  width: 100%;
  padding: 0.8em 0;
  padding-left: 0.5em;
  border-left: 5px solid #ddddc1;
  font-size: 1vw;
  font-weight: 400;
  color: #333;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  box-shadow: 0 3px 3px -3px #eee;
  line-height: 1.3em;
}
.menu_list_right .menu_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px dashed #ddddc1;
  padding-bottom: 0.5em;
  margin-bottom: 0.6em;
}
.menu_list_right .menu_list > .menu_info {
  width: 75%;
}
.menu_list_right .menu_list > .menu_info dt {
  font-size: 0.95vw;
  font-weight: 400;
  color: #FFF;
  text-align: justify;
  line-height: 1.4em;
  padding-bottom: 0.25em;
}
.menu_list_right .menu_list > .menu_info dd {
  font-size: 0.85vw;
  font-weight: 400;
  color: #CCC;
  text-align: justify;
  line-height: 1.4em;
  letter-spacing: 0.01em;
}
.menu_list_right .menu_list > .price {
  width: 25%;
  font-size: 0.98vw;
  font-weight: 400;
  color: #FFF;
  text-align: right;
  line-height: 1.4em;
}
@media only screen and (max-width: 767px){

.menu_list_right{
  width: 95%;
  margin: 0 auto;
}
.menu_list_right .menu_list > .menu_info dt {
    font-size: 3.5vw;
}
.menu_list_right .menu_list > .price {
  font-size: 3.51vw;
}
}

/**footer**/
footer{
  text-align: center;
}
.shop_img img{
  width: 100%;
  /**
  object-fit: cover;
  object-position: top;
  height: 20vw;
  min-height: 80px;
  max-height: 230px;
  **/
}

.shop_logo{
  text-align: center;
}
.shop_logo img{
  width: 40vw;
}

.footer_txt{
  text-align: left;
  width: 90%;
  margin: 0 auto;
  margin-top: 5vw;
  padding-bottom: 8vw;
  border-left: 1px solid #FFF;
  border-right: 1px solid #FFF;
}
.footer_txt dl{
  margin: 4vw 2vw; 
}

.map iframe{
  width: 100%;
}
.copy{
  margin: 2vw 0;
}
/**PC設定**/
@media screen and (min-width:768px) {
  .shop_logo img {
    width: 300px;
}
  .shop_info{
    display: flex;
    width: 100%;
  }
  .footer_txt dl{
    width: 50%;
  }
  .map{
    width: 50%;
    margin: 4vw 2vw;
  }
  .map iframe{
    width: 100%;
    height: 100%;
  }
  .copy{
    margin-bottom: 80px;
  }
  
}

/*他ページ共通設定*/
.page{
  position: relative;
  margin-top: 20vw;
}
.page_index{
  position: relative;
  margin-top: 20vw;
}

.circle-animation {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: dash 2.5s ease-in-out forwards;
  transform: rotate(90deg);
  transform-origin: 48.5% 48.5%;
}

@keyframes dash{
  to{
    stroke-dashoffset:0;
  }
}


.page_top{
  font-size: 24px;
  font-weight: 300;
  line-height: 2.5;
  letter-spacing: 5px;
}
.page_img{
  text-align: center;
  margin-top: 7vw;
}
.page_img img{
  width: 85%;
}
.page_circle{
  position: absolute;
  width: 74VW;
  height: 74VW;
  z-index: -1;
  border-radius: 50%;
  /*border: 1px solid #FFF;*/
  background: rgba(255,255,255,0);
  margin: 0 auto;
  top: 215px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);  
}

.page_ttl{
  background: linear-gradient(to right, #101010 0%, #101010 25%, #363636 25%, #363636 75%, #101010 75%, #101010 100%);
  padding-bottom: 81px;
  position: relative;
}

.page_header{
  padding: 20vw 0;
}

.page_txt{
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .page{
    margin-top: 0;

  }
  .page_index{
    margin-top: 330px;

  }
  .page_circle2{
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: -1;
    border-radius: 50%;
    /*border: 1px solid #FFF;*/
    background: rgba(255,255,255,0);
    margin: 0 auto;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);  
  }
  .circle-animation {
    transform-origin: 50% 50%;
  }
  .page_top{
    position: relative;
    top: -200px;
    font-size: 24px;
    background-color: #0B0B0B;

  }
  .page_ttl{
    position: relative;
    top: -180px;
    background: #0B0B0B;
  }
  .page_ttl h2{
    font-size: 30px;
    position: absolute;
    top:70px;
    right:70px;
    padding: 0;
  }
  .page_img {
    margin-top: 0;
}
  .page_img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}
.page_txt{
  position: relative;
  width: 100%;
  height: 400px;
  font-size: min(1.4vw, 16px);
  line-height: min(4.5vw, 40px);
  margin: 0 auto;
  top:20px;
  left: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: justify;
  text-justify: inter-ideograph;
  /*background: rgb(0,0,0,.5);*/
  /*padding: 10px;*/

}
.circle{
  position: absolute;
  top: 290px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid #FFF;
  background: none;
  z-index: -1;
}
.fadeUp{
  transition: all 1s;
}

}


.page_course{
  position: relative;
  
}

.course_contact{
  text-align: center;
  display: flex;
  margin: 0 auto;
  margin-top: 4vw;
  margin-bottom: 4vw;
  justify-content: center;
}

.course_contact a{
  font-size: 20px;
  border: 1px solid #FFF;
  padding: 3vw 9.3vw;  
}

.course_coupon{
  text-align: center;
  display: flex;
  margin: 0 auto;
  margin-top: 4vw;
  margin-bottom: 20vw;
  justify-content: center;
}

.course_coupon a{
  font-size: 20px;
  border: 1px solid #FFF;
  padding: 3vw 7vw;  
}

/*スライダー設定*/
.xslider_wrap {
	display: flex;
	overflow: hidden;
	width: 100%;
}

.xslider1 , .xslider2 {
	display: inline-flex;
	flex: none;
	animation: xslider 60s 2s linear infinite;
}
.xslider1 img, .xslider2 img{
  width: 300px;
  height: 200px;
}

.xslider_wrap:hover div {
	animation-play-state: paused!important;
}

.xslider1 div , .xslider2 div {
	flex: none;
	padding: 10px;
}

.xslider1 div:hover , .xslider2 div:hover {
	transform: translateY(-5px);
}

@keyframes xslider {
	0% {
	transform: translateX(0);
	}
	100% {
	transform: translateX(-100%);
	}
}