@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: white;
     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 {
    visibility: visible;
}

 /* Responsive
 * --------------------------------------- */

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

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

 /* sns
 * --------------------------------------- */
  /* sns固定表示 */
.sns {
	position: fixed;
    padding: 40px;
    right: 0px;
    display: flex;
    z-index: 90;
    transition: all 0.5s ease;
}
 /* sns間の間隔 */
.sns li {
    padding: 10px;
}
 /* snsの色 */
.sns a {
    color: white;
}
 /* sns下線 */
.botton {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}
 /* sns下線 ホバー */
.botton::after {
    position: absolute;
    bottom: 5px;
    left: 10;
    content: '';
    width: 80%;
    height: 1px;
    background:white;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
 /* sns下線　ホバー */
.botton:hover::after {
    transform: scale(1, 1);
}

/*header
* --------------------------------------- */

@media screen and (min-width:1000px) {
    /* ハンバーガーメニュー　非表示 */
    .menu-trigger {
        display: none; 
        -webkit-appearance: none; 
        appearance: none; 
        border: none;
        background: transparent; 
        position: absolute;
    }
    /* メニュー内容　非表示 */
    .global-nav {
        display: none; 
        -webkit-appearance: none; 
        appearance: none; 
        border: none;
        background: transparent; 
        position: absolute;
        transition: all .4s;
        box-sizing: border-box;
    }
}

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

@media screen and (max-width:999px) {
    /* 周りの色を消す */
    .menu-trigger {
        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: 1px;
        background-color: white;
        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-nav {
        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-menu {
        max-width: 100%;
        max-height: 100%;
        position: fixed;
        padding: 10vw;
        padding-top: 30vw;
    }
    /* メニュー内容　表示場所 */
    .global-nav.active {
        display: block;
        z-index: 100;
    }
    /* メニュー内容　色　大きさ */
    .global-nav li a, .global-nav li .header-copy {
        font-size: 4vw;
        color: black;
        width: 100%;
        background: none;
        line-height: 10vw;
    }
    /* メニュー内容　色　大きさ */
    .global-nav p {
        font-size: 10px;
        color: black;
        width: 100%;
        background: none;
        line-height: 5vw;
    }
    /* メニュー内容　色　大きさ */
    .global-nav .logo {
        width: 40px;
        right: 0px;
        bottom: 0px;
        padding: 10vw;
        position: fixed;
        bottom: 0px;
        transition: all 0.3s ease;
    }
    /* メニュー内容　色　大きさ */
    .global-nav .logo img {
        width: 100%;
    }
    .header-info {
        font-size: 30px;
        background-color: aqua;
    }
}



/* slide
 * --------------------------------------- */
  /* スライドショー画像 */
.slide ,.slide02 {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: black;
}
  /* スライドショー画像 */
.slide li ,.slide02 li {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    -webkit-animation: anime 30s linear 0s infinite ;
    animation: anime 30s linear 0s infinite ;
}
  /* PCスライドショー画像① */
.slide li:nth-child(1) { 
    background-image: url(../img/img01.JPG)
}
  /* PCスライドショー画像② */
.slide li:nth-child(2) {
    background-image: url(../img/img02.JPG);
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
}
  /* PCスライドショー画像③ */
.slide li:nth-child(3) {
    background-image: url(../img/img03.JPG);
    -webkit-animation-delay: 20s;
    animation-delay: 20s;
}
/* MOBILEスライドショー画像① */
.slide02 li:nth-child(1) { 
    background-image: url(../img/img04.JPG)
}
/* MOBILEスライドショー画像② */
.slide02 li:nth-child(2) {
    background-image: url(../img/img05.JPG);
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
}
/* MOBILEスライドショー画像③ */
.slide02 li:nth-child(3) {
    background-image: url(../img/img06.JPG);
    -webkit-animation-delay: 20s;
    animation-delay: 20s;
}
  /* スライドショーアニメーション */
@-webkit-keyframes anime { 
    0% {
        -webkit-animation-timing-function: ease-in;
        opacity: 0;
    }
    10% {
        -webkit-transform: scale(0.0.3);
        opacity: 1;
    }
    40% {
        -webkit-transform: scale(1.1);
            -webkit-animation-timing-function: ease-out;
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.1);
        opacity: 0;
    }
    100% { opacity: 0 }
}
@keyframes anime { 
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
    }
    10% {
        transform: scale(0.0.3);
        opacity: 1;
    }
    40% {
        transform: scale(1.1);
            animation-timing-function: ease-out;
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% { opacity: 0 }
}

/* menu
 * --------------------------------------- */
 /* 真ん中 */
.set {
    width: 100%;
    max-height: 100%;
    text-align: center;
    position: fixed;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 90;
}
 /* 真ん中メニュー場所 */
.center {
    display: flex;
    width: 50%;
    margin: auto;
    height: 60px;
    justify-content: center;
    z-index: 90;
    padding: 10px;
}
/* コピーライター */
.set .copy {
    color: white;
    margin: auto;
    font-size: 12px;
}

@media screen and (min-width:1000px) {
    /* Ashi */
    .tittle {
        color: white;
        margin-right: 30px;
        font-size: 35px;
        border-bottom:solid;
        border-color:white;
        border-width:1px;/*5ピクセルの太さにする*/
        position: relative;
        display: inline-block;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    /* Ashi ホバーアクション  */
    h1::after {
        position: absolute;
        bottom: 48px;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background:white;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .3s;
    }
    /* Ashi ホバーアクション */
    h1:hover::after {
        transform: scale(1, 1);
    }
    /* お弁当 */
    .center h2 {
        color: white;
        margin-left: 30px;
        font-size: 35px;
        border-bottom:solid;
        border-color:white;
        border-width:1px;/*5ピクセルの太さにする*/
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
        text-decoration: none;
    }
    /* お弁当 ホバーアクション */
    .center h2::after {
        position: absolute;
        bottom: 48px;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background:white;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .3s;
    }
    /* お弁当 ホバーアクション */
    .center h2:hover::after {
        transform: scale(1, 1);
    }

}

@media screen and (max-width:1000px) {

     /* 真ん中メニュー場所 */
    .center {
        padding: 0px;
    }
    /* お弁当 */
    .center .tittle {
        font-size: 20px;
        border: solid 1px white;
        transition: .4s;
        width: 80px;
        margin-right: 20px;
        text-align: center;
        padding: 5px 15px 5px 15px;
    }
    /* Ashi ホバーアクション  */
    .center .tittle::after {
        display: none;
    }
    /* お弁当 */
    .center h2 {
        font-size: 20px;
        border: solid 1px white;
        transition: .4s;
        width: 80px;
        margin-left: 20px;
        text-align: center;
        padding: 5px 15px 5px 15px;
    }

}

/* footer
 * --------------------------------------- */

/* 下部インフォメーション */
.info {
    position: fixed;
    padding: 20px;
    bottom: 0px;
    color: white;
    font-size: 12px;
    line-height: 1.4em;
    transition: all 0.3s ease;
}