@charset "utf-8";

/* Reset CSS
* --------------------------------------- */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
    padding: 0;
    margin: 0;
}
a{
    color: #000;
    text-decoration:none;
}
table {
    border-spacing: 0;
}
ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
    font-size: 100%;
    margin:0;
    padding:0;
}
hr { 
    border: 0 none; 
    height: 1px; 
    background-color: black;
} 
body {
    font-family: source-han-serif-japanese, serif;
    font-weight: 300;
    font-style: normal;
}
html {
    visibility: hidden;
}
html.wf-active,
html.loading-delay {
    visibility: visible;
}
 /* Responsive
 * --------------------------------------- */

 @media screen and (min-width:764px) {
    .mobile {
        display: none;
    }
}

@media screen and (max-width:1300px) {
    .pc-header {
        display: none;
    }
}

@media screen and (max-width:764px) {
    .pc {
        display: none;
    }
      /* スマホ用　ボタン押した時の黒影なし */
    body {
        -webkit-tap-highlight-color:rgba(0,0,0,0);
    }
}

 /* header
 * --------------------------------------- */
 
/* PC メニュー表 */
.global-nav1 {
    position: fixed;
    bottom: 0px;
    padding-bottom: 45px;
    width: 20%;
}
 /* 左側のヘッダーメニュー間隔 */
.global-nav1 li {
    width: 80%;
    margin: auto;
    margin-left: 2vw;
}
 /* 左側のヘッダーメニュー間隔 */
.global-nav1 li a {
    font-size: 18px;
    line-height: 35px;
}
 /* 左側　営業時間　文字 */
.header-info {
    font-size: 10px;
    line-height: 20px;
}
 /* 左側　ロゴ場所 */
.header-logo {
    margin-top: 10.5px;
    width: 30px;
}
 /* 左側　ロゴ大きさ */
.header-logo img {
    width: 100%;
}
 /* 左側のヘッダーメニューサイズ　カラー */
.header-color {
    width: 20%;
    height: 100%;
    position: fixed;
    background-color: #e2ded9;
    opacity: 0;
    animation-name: header-color;
    animation-delay: 0s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    visibility: visible !important;
}
@keyframes header-color {
    0% {
        opacity: 0;
        transform:translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* header color animation
* --------------------------------------- */

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

     /* PC画面 リンク先 */
    .global-nav1 a {
        position: relative;
        display: inline-block;
        text-decoration: none;
    }
     /* リンク先　下線ホバー */
    .global-nav1 a::after {
        position: absolute;
        bottom: 2px;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background:black;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .4s;
    }
    /* リンク先　下線ホバー */
    .global-nav1 a:hover::after {
        transform: scale(1, 1);
    }
    /* ヘッダー　全項目 */
    nav ul li {
        transform: translateX(-250%);
        animation-name: header-fadein;
        animation-duration: 1.5s;
        animation-fill-mode: forwards;
        visibility: visible !important;
    }
    nav ul li:nth-child(1) {
        animation-delay: 0.8s;
    }
    nav ul li:nth-child(2) {
        animation-delay: 1s;
    }
    nav ul li:nth-child(3) {
        animation-delay: 1.2s;
    }
    nav ul li:nth-child(4) {
        animation-delay: 1.4s;
    }
    nav ul li:nth-child(5) {
        animation-delay: 1.6s;
    }
    nav ul li:nth-child(6) {
        animation-delay: 1.8s;
    }
    nav ul li:nth-child(7) {
        animation-delay: 4s;
    }
    nav ul li:nth-child(8) {
        animation-delay: 4s;
    }
    nav ul li:nth-child(9) {
        animation-delay: 4s;
    }
    nav ul li:nth-child(10) {
        animation-delay: 4s;
    }
    @keyframes header-fadein {
        0% {
            opacity: 0;
            transform: translateX(-50%);
        }
        100% {
            opacity: 1;
            transform: translateX(0%);
            filter: blur(0);
        }
    }
}

/* sns
 * --------------------------------------- */

/* sns固定表示 */
.sns {
	position: fixed;
    padding: 40px;
    right: 0px;
    display: flex;
    z-index: 90;
}
 /* sns間の間隔 */
.sns li {
    padding: 10px;
}
 /* snsのボタン */
.sns a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}
 /* snsのリンクホバー */
.sns a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background:black;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
 /* snsのボタン */
.sns a:hover::after {
    transform: scale(1, 1);
}
 /* sns　アニメーション */
.sns li {
    animation-name: sns;
    animation-duration: 0.8s;
    animation-delay: 1.5s;
}


/* humberger menu
 * --------------------------------------- */

@media screen and (min-width:1300px) {
    /* ハンバーガーメニュー　非表示 */
    .menu-trigger {
        display: none; 
        -webkit-appearance: none; 
        appearance: none; 
        border: none;
        background: transparent; 
        position: absolute;
    }
}

@media screen and (max-width:1300px) {
    /* ハンバーガーメニュー　非表示 */
    .header-color, .menu-trigger, .sns {
        display: none; 
        -webkit-appearance: none; 
        appearance: none; 
        border: none;
        background: transparent; 
        position: absolute;
    }
    /* 表示必要事項 */
    .menu-trigger,
    .menu-trigger span {
        display: inline-block; 
        transition: all .4s;
        box-sizing: border-box;
    }
    /* 大きさ */
    .menu-trigger {
        width: 50px;
        height: 52px;
        position: fixed;
        margin-top: 20px;
        margin-left: 20px;
        top: 0;
        left: 0;
        z-index: 101;
        outline: none;
    }
    /* 場所・色 */
    .menu-trigger span {
        position: absolute;
        left: 50%;
        width: 30px;
        height: 0.8px;
        background-color: black;
        transform: translate(-50%, -50%);
    }
    /* ①線 */
    .menu-trigger span:nth-of-type(1) {
        top: 16px;
    }
    /* ②線 */
    .menu-trigger span:nth-of-type(2) {
        top: 50%;
    }
    /* ③線 */
    .menu-trigger span:nth-of-type(3) {
        bottom: 14px;
    }
    /* ①線 */
    .menu-trigger.active span:nth-of-type(1) {
        top: 49%;
        background-color: #000;
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    /* ②線 */
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    /* ③線 */
    .menu-trigger.active span:nth-of-type(3) {
        bottom: 49%;
        background-color: #000;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    /* メニュー内容　表示内容 */
    .global-nav2 {
        display: none;
        width: 100vw;
        height: 100%;
        background: #e2ded9;
        opacity: 100%;
        margin: 0;
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    /* メニュー内容　表示内容 */
    .global-menu2 {
        position: fixed;
        top: 0px;
        padding: 100px;
        padding-top: 200px;
    }
    /* メニュー内容　表示場所 */
    .global-nav2.active {
        display: block;
        z-index: 100;
    }
    /* メニュー内容　色　大きさ */
    .global-nav2 li a, .global-nav2 li .header-copy {
        font-size: 16px;
        color: black;
        width: 100%;
        background: none;
        line-height: 45px;
    }
    /* メニュー内容　色　大きさ */
    .global-nav2 p {
        font-size: 10px;
        color: black;
        width: 100%;
        background: none;
        line-height: 25px;
    }
    /* メニュー内容　色　大きさ */
    .global-nav2 .logo {
        width: 40px;
        right: 0px;
        bottom: 0px;
        padding: 100px;
        position: fixed;
        bottom: 0px;
        transition: all 0.3s ease;
    }
    /* メニュー内容　色　大きさ */
    .global-nav2 .logo img {
        width: 100%;
    }
}


@media screen and (max-width:764px) {
    /* メニュー内容　表示内容 */
    .global-nav2 {
        display: none;
        width: 100vw;
        height: 100%;
        background: #e2ded9;
        opacity: 100%;
        margin: 0;
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    /* メニュー内容　表示内容 */
    .global-menu2 {
        position: fixed;
        top: 0px;
        padding: 10vw;
        padding-top: 30vw;
    }
    /* メニュー内容　表示場所 */
    .global-nav2.active {
        display: block;
        z-index: 100;
    }
    /* メニュー内容　色　大きさ */
    .global-nav2 li a, .global-nav2 li .header-copy {
        font-size: 4vw;
        color: black;
        width: 100%;
        background: none;
        line-height: 10vw;
    }
    /* メニュー内容　色　大きさ */
    .global-nav2 p {
        font-size: 10px;
        color: black;
        width: 100%;
        background: none;
        line-height: 5vw;
    }
    /* メニュー内容　色　大きさ */
    .global-nav2 .logo {
        width: 40px;
        right: 0px;
        bottom: 0px;
        padding: 10vw;
        position: fixed;
        bottom: 0px;
        transition: all 0.3s ease;
    }
    /* メニュー内容　色　大きさ */
    .global-nav2 .logo img {
        width: 100%;
    }
}

 /* top tittle
 * --------------------------------------- */

 /* News,About,Concept,Access,Bento,Reservation 文字 */
 .tittle-name {
    color: black;
    margin: auto;
    text-align: center;
    font-size: 35px;
}
/* News,About,Concept,Access,Bento,Reservation　下タイトル線 */
 .tittel-line {
    width: 120px;
}
 /* News,About,Concept,Access,Bento,Reservation　下日本語 */
.tittle-name-ja {
    color: black;
    margin: auto;
    text-align: center;
    font-size: 19px;
}
 /* News,About,Concept,Access,Bento,Reservation タイトル場所 */
.top-tittle {
    padding-top: 300px;
    margin-bottom: 150px;
}
 /* News,About,Concept,Access,Bento,Reservation タイトルアニメーション */
.top-tittle {
    animation-name: tittle;
    animation-duration: 0.8s;
    animation-delay: 0s;
}


@media screen and (min-width:764px) and (max-width:1300px)  {
    /* News,About,Concept,Access,Bento,Reservation 文字 */
    .tittle-name {
        font-size: 30px;
    }
    /* News,About,Concept,Access,Bento,Reservation　下タイトル線 */
    .tittel-line {
        width: 100px;
        height: 0.8px;
    }
    /* News,About,Concept,Access,Bento,Reservation　下日本語 */
    .tittle-name-ja {
        font-size: 16px;
    }
    /* News,About,Concept,Access,Bento,Reservation タイトル場所 */
    .top-tittle {
        padding-top: 200px;
    }
}

@media screen and (max-width:764px) {
    /* News,About,Concept,Access,Bento,Reservation 文字 */
    .tittle-name {
       font-size: 22px;
   }
    /* News,About,Concept,Access,Bento,Reservation　下タイトル線 */
   .tittle-name-ja {
       font-size: 12px;
   }
    /* News,About,Concept,Access,Bento,Reservation　下日本語 */
   .top-tittle {
       padding-top: 25vw;
       margin-bottom: 10vw;
   }
    /* News,About,Concept,Access,Bento,Reservation タイトル場所 */
    .tittel-line {
        width: 80px;
        height: 0.8px; 
    }
}


/* footer
* --------------------------------------- */
 /* コピーライターマーク場所 */
 footer {
    max-width: 80%;
    text-align: center;
    position: relative;
    margin: auto;
    left: 50%;
    transform: translate(-50%, -50%); 
    transition: all 0.3s ease;
    padding-bottom: 40px;
}
 /* コピーライターマークサイズ */
footer h4 {
    font-size: 16px;
}
@media screen and (min-width:764px) and (max-width:1300px)  {
     /* コピーライターマーク場所 */
    footer {
        max-width: 100%;
        margin: auto;
        padding-bottom: 30px;
    }
     /* コピーライターマークサイズ */
    footer h4 {
        font-size: 14px;
    }
 }
@media screen and (max-width:764px) {
     /* コピーライターマーク場所 */
    footer {
        max-width: 100%;
        margin: auto;
        padding-bottom: 20px;
    }
    /* コピーライターマークサイズ */
    footer h4 {
        font-size: 12px;
    }
 }




/* animation
* --------------------------------------- */

.top-tittle, .news-image img, .sns li, .icon img {
    animation-timing-function: ease-out;
    animation-direction: normal;
    animation-fill-mode: forwards;
    overflow: hidden;
    opacity: 0;
    visibility: visible !important;
    animation-iteration-count: 1;
  }
  @keyframes tittle {
    0% {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
  }
  @keyframes hero-image {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
  }
  @keyframes icon {
    0% {
      opacity: 0;
      transform: translateY(50px);
      filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
  }
  @keyframes sns {
    0% {
      opacity: 0;
      transform: translateY(30px);
      filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
  }
  