@charset "UTF-8";
body {
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    color: #222;
    margin: 0;
    font-size: 16px;
}
.wrapper {
    overflow-x: hidden;
}
#logo {
    display: block;
    margin-top: 8px;
    width: 400px;
}
#logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
}
#logo p {
    font-size: 12px;
    margin-bottom: 2px;
}

nav {
    width: 100%;
    height: 70px;
    position: relative;
    z-index: 100;
    background-color: #073f26;
    position: fixed;
    top: 0;

}

.drawer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    height: 70px;
    padding: 0 1em;
}

/*ナビゲーション部分*/

.menu ul li a {
    display: block;
    font-weight: bold;
    padding: 2em;
    border-bottom: 1px dotted #CCC;
    color: #fff;
    text-decoration: none;
}


.menu ul li a:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: orange;
}


.menu {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    transition: .5s ease;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    /*左に隠しておく*/
}


/*OPEN時の動き*/
.menu.open {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/

}



/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;
    /* bodyに対しての絶対位置指定 */
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
    right: 15px;
    margin-top: 14px;
}

.Toggle span {
    display: block;
    position: absolute;
    width: 35px;
    border-bottom: solid 4px #fff;
    -webkit-transition: .35s ease-in-out;
    /*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;
    /*変化の速度を指定*/
    transition: .35s ease-in-out;
    /*変化の速度を指定*/

}

.Toggle span:nth-child(1) {
    top: 5px;
}

.Toggle span:nth-child(2) {
    top: 18px;
}

.Toggle span:nth-child(3) {
    top: 32px;
}



.Toggle.active span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

#logo img {
    max-width: 100%;
}

/* スライド画像 */
.img-frame{
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 131px;
 }
 
 @media screen and (max-width: 768px){
 .img-frame{
    width: 100%;
    max-width: 100%;
    height: 100vh;
    margin-bottom: 55px;
 }
}
 .img-01, .img-02, .img-03{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
 }
 .img-01{
    background-image: url('../images/korokkeplate.jpg');
    animation: slide-animation-01 24s infinite;
 }
 .img-02{
    background-image: url('../images/top2.jpg');
    animation: slide-animation-02 24s infinite;
 }
 .img-03{
    background-image: url('../images/Firefly1842.jpg');
    animation: slide-animation-03 24s infinite;
 }

 @keyframes slide-animation-01 {
     0% {opacity: 1; transform: scale(1.0);}
   30% {opacity: 1;}
   40% {opacity: 0; transform: scale(1.15);}
   90% {opacity: 0}
 100% {opacity: 1; transform: scale(1.0);}
 }
 @keyframes slide-animation-02 {
     0% {opacity: 0;}
   30% {opacity: 0; transform: scale(1.1);}
   40% {opacity: 1;}
   60% {opacity: 1;}
   70% {opacity: 0; transform: scale(1.0);}
 100% {opacity: 0;}
 }
 @keyframes slide-animation-03 {
     0% {opacity: 0;}
   60% {opacity: 0;  transform: scale(1.0);}
   70% {opacity: 1;}
   90% {opacity: 1;}
 100% {opacity: 0; transform: scale(1.1);}
 }

@media screen and (min-width: 768px) {

    header::after {

        display: none;
    }

    nav {
        display: flex;

    }

    .Toggle {
        display: none;
    }

    .menu {
        width: 100%;
        background-color: transparent;
        margin-top: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .menu ul {
        height: 70px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        list-style-type: none;
    }

    .menu ul li a {
        padding: 0 1em;
        border-bottom: none;

    }

    .menu ul li a:hover {
        background-color: transparent;
    }
}
.since {
    position: absolute;
    top: 12%;
    right: 6%;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 19px;
    writing-mode: vertical-rl;
    margin-top: 20px;
}
.since {
    white-space:nowrap;
    overflow:hidden;
    animation:since 15s linear infinite;
    opacity: 0.9;
 }
    
    @keyframes since {
    
    from {
    
    width:0%;
    }
    to {
        width: 100%;
    }
    
    }
.concept {
    position: relative;
    padding: 10px;
    margin: 10px;
}
.free h2 {
    font-size: 30px;
    margin-right: 22px;
    margin-bottom: 0;
}
.free {
    display: flex;
    max-width: 650px;
    padding: 3px 30px 22px 43px;
    background-color: #073f26;
    color: #fff;
    margin-top: 20px;
    border-radius: 12px;
    margin-left: 100px;
    display: block;
    border: 3px solid #073f26;
    outline: 5px solid #073f26;
    outline-offset: 5px;
}
/* 下からフェードイン */
.fadeIn {
    transform: translate3d(-50px, 0, 0);
    transition: 1s;
    opacity: 0;
  }
  .fadeIn.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  p.title {
    position: absolute;
    font-size: 11vw;
    font-weight: bold;
    color: #eee;
    top: -19px;
    right: -74px;
    writing-mode: vertical-rl;
    z-index: -1;
}
.korokke {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 100px;
    display: flex;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
}
.fry {
    transform: translate3d(0, 50px, 0);
    transition: 1s;
    opacity: 0;
  }
  .fry.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    position: relative;
    z-index: 1;
  }
.korokke img {
    max-width: 100%;
}
.korokke dl {
    width: 55%;
}
.korokke dt {
    font-size: 35px;
    font-weight: bold;
    margin-left: 40px;
    padding-bottom: 30px;
}
.korokke dd {
    line-height: 2.2;
}
.maru {
    position: absolute;
    display: block;
    top: 83%;
    right: 5%;
    z-index: 2;
}
.maru img {
    animation: rotation 10s linear infinite;
}
/* 円文字アニメーション */
@keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
.dish {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.dish h2 {
    font-size: 9vw;
    margin-bottom: 0;
}
.dish h2::after {
    content: "";
    display: block;
    position: absolute;
    width: 925px;
    height: 500px;
    background-color: beige;
    z-index: -1;
    top: 13%;
    left: 16%;
}
.lunch {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}
.lunch p {
    max-width: 400px;
    margin-right: 20px;
    line-height: 2;
}
.lunch figcaption {
    font-size: 9px;
}
.plate {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.plate h3 {
    font-size: 9vw;
    margin-bottom: 0;
    text-align: right;
}
.plate h3::before {
    content: "";
    display: block;
    position: absolute;
    width: 925px;
    height: 514px;
    background-color: #daaf7a;
    z-index: -1;
    top: 7%;
    left: -2%;
}
.dinner {
    display: flex;
    justify-content: center;
}
.dinner figcaption {
    font-size: 9px;
}
.dinner p {
    max-width: 400px;
    margin-left: 20px;
    line-height: 2;
}
.reaf {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    align-items: center;
}
.reaf img {
    max-width: 100%;
        transform-origin: center bottom;
        animation: yurayura 2s linear infinite;
    }
    
    @keyframes yurayura {
      0% , 100%{
          transform: rotate(10deg);
      }
      50%{
          transform: rotate(-10deg);
      }
    }
.reaf a {
    font-size: 35px;
    color: #fff;
    text-decoration: none;
    border-radius: 0%;
    text-decoration: none;
    transition: all 0.6s ease 0s;
    display: block;
}
.reaf a:hover {
    cursor: pointer;
	transform: scale(1.1, 1.1);
}
.reaf p {
    padding: 5px 20px 20px 20px;
    background-color: #073f26;
    display: block;
    border: 3px solid #073f26;
    outline: 5px solid #073f26;
    outline-offset: 5px;
    height: 35px;
}
.reaf figure {
    filter: drop-shadow(2px 3px 6px #ccc);
}
.access {
    text-align: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
}
.access h4 {
    font-size: 6vw;
    font-weight: bold;
    margin-bottom: 45px;
    margin-top: 145px;
}
p.info {
    text-align: initial;
    position: absolute;
    display: block;
    top: -3%;
    right: -9%;
    font-size: 10vw;
    color: #EEE;
    writing-mode: vertical-rl;
    z-index: -1;
}
.shop {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 50px;
    justify-content: center;
}
.gaikan {
    width: 380px;
}
.gaikan img {
    max-width: 80%;
}
.mac dl {
    display: flex;
    text-align: left;
}
.mac dt {
    width: 25%;
}
.mac dd {
    width: 74%;
}
.map {
    padding-left: 10px;
    padding-right: 10px;
}
  /* Google Mapのiframe */
  .map iframe {
        width: 100%;
        height: 300px;
        aspect-ratio: 16/9;
      }
      /*フッター  */
.footer {
    background-color: #073f26;
    max-width: 100%;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    padding: 50px;
    color: #fff;
  }
  
  .footer .footer-left,
  .footer .footer-center,
  .footer .footer-right {
    display: inline-block;
    vertical-align: top;
    text-align: center;
  }
.footer-right.col-md-4.col-sm-6 img {
    max-width: 100%;
}
  /* footer left*/
  
  .footer .footer-left {
    width: 33%;
    padding-right: 50px;
  }
  
  .footer .about {
    line-height: 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
  }
  
  .footer .about span {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer .icons {
    margin-top: 25px;
  }
  
  .footer .icons a {
    display: inline-block;
    width: 70px;
    height: 70px;
    cursor: pointer;
    text-align: center;
    margin-right: 3px;
    margin-bottom: 5px;
  }
  
  
  /* footer center*/
  
  .footer .footer-center {
    width: 30%;
  }
  
  .footer .footer-center i {
    background-color: #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
  }
  
  .footer .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
  }
  
  .footer .footer-center p {
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin: 0;
  }
  
  .footer .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
  }
  
  .footer .footer-center p a {
    color: #0099ff;
    text-decoration: none;
  }
    
  
  .footer h5 a {
    color: #ffffff;
    font-size: 36px;
    font-weight: normal;
    margin: 0;
    text-decoration: none;
  }
  
  
.footer .botommenu {
    color: #ffffff;
    margin: 20px 0 12px;
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: center;
  }
.footer .botommenu li a {
    padding: 0 1em;
  }
  
.footer .botommenu a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
  }
  
 .footer .botommmenu a:hover {
    color: orange;
  }
  
.footer .name {
    color: orange;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    text-align: center;
  }
  /* トップへ戻る */
.back-to-top {
    display: none;
    position: fixed;
    right: 5%;
    bottom: 5%;
    color: #073f26;
    padding: 2rem;
    border-radius: 50%;
    display: inline-block;
    text-decoration: none;
    z-index: 50;
  }
.back-to-top::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 70px;
    height: 70px;
    background-color: #ccc;
    border-radius: 50%;
    z-index: -1;
  }
  
@media (max-width: 768px) {
    .footer {
      font-size: 14px;
    }
    .footer .footer-left,
    .footer .footer-center,
    .footer .footer-right {
      display: block;
      width: 100%;
      margin-bottom: 40px;
      text-align: center;
    }
    .footer .footer-center i {
      margin-left: 0;
    }
  }
  @media(min-width: 768px){
    a[href^="tel:"]{
      pointer-events: none;
    }
  }

  /* トップページレスポンシブ */
  @media screen and (max-width: 768px){
#logo a {
    font-size: 25px;
}
header {
    position: sticky;
    position: -webkit-sticky;/*Safari用ベンダープレフィックス*/
    top: 0;
    z-index: 200;
}
.menu ul li {
    list-style: none;
}
.menu ul li a {
    text-align: left;
    color: #073f26;
}
.menu ul { 
    padding-left: 0;
}
.since h1 {
    font-size: 27px;
    opacity: 0.8;
    margin-top: 45px;
}
.since {
    margin-top: initial;
}

.free {
    margin-left: 0px;
    background-color: transparent;
    color: #073f26;
}
p.title {
    top: 0%;
    right: -4%;
    font-size: 76px;
}
.img-02 {
    background-position-x: 50%;
}
 .img-03 {
    background-position-x: 30%;
}
.korokke {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
}
.korokke dl {
    width: initial;
}
.korokke dt {
    font-size: 25px;
}
.korokke dd {
    margin-left: 0;
}
.maru img {
    max-width: 60%;
}
.maru {
    top: 42%;
    left: 4%;
}
.lunch {
    display: block;
    padding: 10px;
}
.lunch img {
    max-width: 90%;
}
.lunch p {
    margin-right: initial;
}
.dish h2::after {
    width: 87%;
    height: 75%;
    left: 6%;
    top: 7%;
}
.dish h2 {
    padding-left: 10px;
}
.dinner {
    display: block;
    padding: 10px;
}
.dinner img {
    max-width: 90%;
}
.dinner p {
    margin-left: initial;
}
.plate h3 {
    margin-right: 10px;
}
.plate h3::before {
    width: 87%;
    height: 75%;
    left: 9%;
}
.reaf {
    display: block;
    margin-top: 30px;
    padding: 10px;
    margin-bottom: 100px;
}
.reaf p {
    margin: 20px;
    padding: initial;
    text-align: center;
}
.reaf a {
    font-size: 25px;
    text-align: center;
}
.shop {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
}
.access {
    margin-top: 125px;
}
.gaikan {
    width: initial;
}
.gaikan img {
    max-width: 100%;
}
p.info {
    top: 4%;
    right: -13%;
    font-size: 78px;
}
}

/* メニュページ */
/***上にかぶせる背景***/
.mask{
    position:fixed; /*固定表示*/
    top:0;
    left:0;
    width: 100vw; /*画面幅*/
    height: 100vh; /*画面の高さ*/
    background-color: #073f26; /*背景色*/
    z-index:999; /*最前面に*/
    animation: fadeOut 0.8s forwards; /*フェードアウト*/
    animation-delay: 1.5s; /*ロゴ画像のアニメーション後に*/
  }
  
  /*フェードアウトアニメーション*/
  @keyframes fadeOut{
    0%{
      opacity: 1;
    }
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  /***ロゴ画像***/
  .mask img{
    position: absolute;
    width: 250px;
    height: 250px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: bound 0.5s forwards; /*任意のアニメーション*/
    animation-delay: 0.6s; /*好みで遅延*/
  }
  
  /*鼓動する*アニメーション*/
  @keyframes bound{
    30%{
      transform: scale(1.1);
    }
    100% {
      transform: scale(0.9);
    }
  }

.section {
    text-align: center;
    margin-top: 120px;
    margin-left: 10px;
    margin-right: 10px;
}
.section h1 {
    position: relative;
    margin-bottom: 0.2rem;
    padding: 1rem 0;
    border-bottom: 5px solid;
    color: #073f26;
    font-size: 40px;
    font-weight: bold;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 0;
}

.section h1::after {
    position: absolute;
    bottom: -0.6rem;
    left: 0rem;
    right: 0rem;
    border-bottom: 1px solid;
    content: '';
}
.tableware {
    margin-bottom: 0;
}
.tableware {
    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(10deg);
  }
  50%{
      transform: rotate(-10deg);
  }
}
.grand {
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}
.grand h2 {
    margin-top: 50px;
    text-align: left;
    font-size: 25px;
}
.list {
    padding-left: initial;
    margin-top: 45px;
}
.list li {
    list-style: none;
}
.list .item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
  }
  
  /* 点線 */
  .list .item::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    z-index: -1;
    width: 100%;
    border-bottom: dotted 2px #aaa;
  }
  
  .list .item .name,
  .list .item .price {
    display: inline-block;
    /* 周りの背景色と同色にします */
    background-color: #fff; 
  }
  
  .list .item .name {
    padding-right: 5px;
  }
  
  .list .item .price {
    padding-left: 5px;
  }
  .grand h3 {
    text-align: left;
    margin-top: 70px;
    font-size: 25px;
  }
  .grand h4 {
    text-align: left;
    font-size: 25px;
    margin-top: 70px;
  }
  .reftcourse img {
    border-radius: 30px;
    max-width: 50%;
    margin-bottom: 20px;
  }
.party h5 {
    position: relative;
    margin-bottom: 0.2rem;
    padding: 1rem 0;
    border-bottom: 5px solid;
    color: #073f26;
    font-size: 45px;
    font-weight: bold;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.party h5::after {
    position: absolute;
    bottom: -0.6rem;
    left: 0rem;
    right: 0rem;
    border-bottom: 1px solid;
    content: '';
}
.reftcourse dl {
    margin-top: 95px;
    margin-bottom: 20px;
}
.reftcourse dd {
    margin-left: initial;
    margin: 0 auto;
}
.reftcourse {
    margin-bottom: 100px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}
.welcome img {
    max-width: 100%;
    border-radius: 30px;
}
p.welcome {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 100px;
}
.welcome {
    margin-bottom: 100px;
    margin: 10px;
    text-align: center;
}
p.drink {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: -30px;
    color: burlywood;
    margin-bottom: 20px;
    margin-top: 40px;
}
p.drink:after {
    display: block;
    border-bottom: 4px solid;
    content: "";
    color: burlywood;
}
/* メニューページレスポンシブ */
@media (max-width: 768px) {
.section h1 {
    font-size: 35px;
    margin-left: 10px;
    margin-right: 10px;
}
.reftcourse img {
        max-width: 100%;
    }
.party h5 {
        margin-left: 10px;
        margin-right: 10px;
      }
    
}
  /* お問い合わせ */
  /* YOU TUBE埋め込み */
.responsive {
    max-width: 100%;
 }
.news h5 {
    font-size: 6vw;
    font-weight: bold;
    margin-bottom: 10px;
    padding-top: 50px;
}
.news p {
    font-size: 20px;
    margin-top: -20px;
}
.news em {
    font-size: 4vw;
    font-weight: bold;
}
.news {
    text-align: center;
    background-image: url(../images/p0050_l.jpg);
    border-radius: 180px;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 100px;
    margin-bottom: 100px;
}
@media screen and (max-width: 768px){
    .responsive iframe {
        width: 95%;
    }
    .responsive {
        padding-bottom: 70px;
    }
}
/* お問い合わせ */
.contact {
    text-align: center;
    padding-top: 130px;
    background-color: #f0f0e9;
    padding-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
}
.contact table {
    max-width: 100%;
}
.contact h1 {
    font-size: 50px;
    font-weight: bold;
}
.contact table {
    text-align: left;
    margin: 0 auto;
}
.contact input[type="text"] {
    width: 350px;
    height: 35px;
    padding-left: 10px;
    margin-left: 20px;
    border: none;
    font-size: 15px;
    margin-bottom: 25px;
}
.contact textarea {
    width: 100%;
    height: 185px;
    padding-left: 10px;
    margin-left: 20px;
    border: none;
    font-size: 15px;
    padding-top: 10px;
}
.contact input[type="button"] {
    width: 200px;
    height: 50px;
    background-color: chocolate;
    border: chocolate;
    color: #fff;
    border-radius: 25px;
    margin-top: 55px;
}
.contact input[type="button"]:hover {
    background-color: #fff;
    border: solid 1px #073f26;
    color: #073f26;
    transition: 0.4s;
}
.contact span {
    color: chocolate;
    padding: 1px 3px;
    margin-left: 5px;
    font-weight: bold;
    font-size: 12px;
}
.contact p {
    margin-bottom: 40px;
}
.contact input[type="submit"] {
    width: 200px;
    height: 50px;
    background-color: chocolate;
    border: chocolate;
    color: #fff;
    border-radius: 25px;
    margin-top: 55px;
    margin-bottom: 50px;
}
.contact input[type="submit"]:hover {
    background-color: #fff;
    border: solid 1px #073f26;
    color: #073f26;
    transition: 0.4s;
}
.sp_br {
    display: none; 
  }
  
@media screen and (max-width: 768px){
    .contact td {
        display: block;
    }
    .contact input[type="text"] {
        margin-left: initial;
    }
    .table {
        max-width: 90%;
    }
    .sp_br {
        display: block; 
      }
    .contact textarea {
        margin-left: initial;
      }
    
    }
