@charset "UTF-8";

/*-- リセットCSS --*/
* {
    padding: 0;
    margin: 0;
}

html, body {
    min-height: 100%;
}
/*-- VARIABLES --*/
:root {
    --light-green: #d5edeb;
    --green: #63dbd0;
    --brown: #403632;
    --light-grey: #eee;
    --white: #fff;
    --oswald-font: 'Oswald', sans-serif;
}
/*-- LOADING --*/
#loading {
    background-color: var(--light-grey);
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
}
#loading-screen {
    background-color: var(--light-green);
    position: fixed;
    inset: 0;
    z-index: 9998;
    translate: 0 100vh;
}

#loading span {
    font-size: 2rem;
    font-family: var(--oswald-font);
    text-align: center;
}
span.loading {
    display: inline-block;
    white-space: nowrap;
}

span.loading span {
    display: inline-block;
    vertical-align: middle;
}

span.loading span:nth-of-type(1) {
    -webkit-animation: animation 2s ease 0s infinite;
    animation: animation 2s ease 0s infinite;
}

span.loading span:nth-of-type(2) {
    -webkit-animation: animation 2s ease 0.1s infinite;
    animation: animation 2s ease 0.1s infinite;
}

span.loading span:nth-of-type(3) {
    -webkit-animation: animation 2s ease 0.2s infinite;
    animation: animation 2s ease 0.2s infinite;
}

span.loading span:nth-of-type(4) {
    -webkit-animation: animation 2s ease 0.3s infinite;
    animation: animation 2s ease 0.3s infinite;
}

span.loading span:nth-of-type(5) {
    -webkit-animation: animation 2s ease 0.4s infinite;
    animation: animation 2s ease 0.4s infinite;
}

span.loading span:nth-of-type(6) {
    -webkit-animation: animation 2s ease 0.5s infinite;
    animation: animation 2s ease 0.5s infinite;
}

span.loading span:nth-of-type(7) {
    -webkit-animation: animation 2s ease 0.6s infinite;
    animation: animation 2s ease 0.6s infinite;
}

span.loading span:nth-of-type(8) {
    -webkit-animation: animation 2s ease 0.7s infinite;
    animation: animation 2s ease 0.7s infinite;
}

@-webkit-keyframes animation {
    0% {
        -webkit-transform: rotate(-45deg);
    }

    5% {
        -webkit-transform: rotate(45deg);
    }

    10% {
        -webkit-transform: rotate(-23deg);
    }

    13% {
        -webkit-transform: rotate(23deg);
    }

    16% {
        -webkit-transform: rotate(-12deg);
    }

    18% {
        -webkit-transform: rotate(12deg);
    }

    20% {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes animation {
    0% {
        transform: rotate(-45deg);
    }

    5% {
        transform: rotate(45deg);
    }

    10% {
        transform: rotate(-23deg);
    }

    13% {
        transform: rotate(23deg);
    }

    16% {
        transform: rotate(-12deg);
    }

    18% {
        transform: rotate(12deg);
    }

    20% {
        transform: rotate(0deg);
    }
}
/*-- SLIDE MENU --*/
/* 開閉ボタン */
.btn-menu {
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 4;
    padding: .5rem 1rem;
    border: 3px solid #0f0;
    border-radius: 50%;
    height: 4rem;
    width: 4rem;
    transition: .1 .5s;
}
.btn-menu svg {
    fill: #0f0;
    margin-top: .25rem;
    height: 2rem;
    width: 2rem;
}
.btn-menu::after,
.btn-menu::before {
    content: 'Menu';
    color: #fff;
    font-weight: bold;
    font-style: italic;
    font-size: 20px;
    /*絶対配置で波形の位置を決める*/
    position: absolute;
    left: -25%;
    top: -25%;
    /*波形の形状*/
    border: 1px solid rgb(103, 247, 146);
    width: 150%;
    height: 150%;
    border-radius: 50%;
    /*はじめは不透明*/
    opacity: 1;
    /*ループするアニメーションの設定*/
    animation: 1s circleanime linear infinite;
}

/*波形の2つ目は0.5秒遅らせてアニメーション*/
#page_top::before {
    animation-delay: .5s;
}

/*波形のアニメーション*/
@keyframes circleanime {
    0% {
        transform: scale(0.68);
    }

    100% {
        transform: scale(1.0);
        opacity: 0;
    }
}

/* 閉じるボタン */
#menu-close {
    border: 3px solid #0f0;
}
#menu-close svg {
    fill: #0f0;
}

/* スライドメニューパネル */
#menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 4;
    padding: 4rem 2rem 2rem;
    width: max(32vw, 20rem);
    height: 100vh;
    background-color: var(--brown);
    box-shadow: 0 0 2rem var(--brown);
    font-family: var(--oswald-font);
    translate: 100vw;
}
.menu-list {
    list-style: none;
}
.menu-list li {
    margin: 5px 0;
    opacity: 0;
}
.menu-list a {
    color: var(--light-green);
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    display: inline-block;
}
.menu-list a:hover {
    color: orangered;
    transition: all 0.4s;
}
.menu-list a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: orangered;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;
    /*変形の時間*/
}

.menu-list a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
    transform-origin: left top;
    /*左から右に向かう*/
}
ul li p {
    color: #0f0;
    font-size: 45px;
    font-weight: bold;
}

/*-- COMMON --*/
p {
    line-height: 1.7;
}
img {
    max-width: 100%;
}
.title {
    font-family: var(--oswald-font);
    font-size: min(10vw, 4rem);
    margin-bottom: 2rem;
}
.btn {
    color: var(--white);
    background: var(--brown);
    border: 1px solid var(--brown);
    text-decoration: none;
    padding: 1rem;
    display: inline-block;
    margin: 2rem 0;
    transition: .4s;
}
.fadein{
    opacity: 0;
}


/*-- body --*/
body {
    background: #311401 no-repeat right bottom / cover fixed;
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
}

/*--  header  --*/
header {
    /*border: solid 1px #ffffff;*/
    height: 135px;
    text-align: center;
    background-image: url("../images/head.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 0;
    margin: 0 auto;
}

/*-- video --*/
div.vd_contents {
    height: 135px;
}
.vd_main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-align: center;
}

/*-- #header_title --*/
main #header_title {
    text-align: center;
}
main #header_title img {
    width: 250px;
    height: 80px;
}
#top #header_title {
    text-align: center;
}
#top #header_title img {
    width: 260px;
    height: 100px;
    margin: 25px auto 0 auto;
}
hr {
    color: #fff;
    font-size: 30px;
}
/*-- container --*/
#container {
    background-size: cover;
    border-top: solid 5px#037e03;
    overflow: hidden;
    padding: 0 10px;
    margin: 0 auto;
}
/*--  main  --*/
#content {
    overflow: hidden;
}
#path {
    list-style-type: none;
    color: #fff;
    text-align: left;
    font-size: 13px;
}
#path a {
    color: #fff;
    transition: all 0.5s;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: inline-block;
}
#path a:hover {
    color: orangered;
}
#path a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: orangered;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: center top;
    /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;
    /*変形の時間*/
}
#path a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
}

/*-- main --*/
main {
    background-color: rgb(0,0,0,0.4);
    text-align: center;
    margin: 0 auto;
}
main img {
    width: 250px;
    height: 80px;
}
#menu {
    text-align: center;
}
main #tel {
    font-size: 25px;
    font-family: fantasy;
    letter-spacing: 0.5em;
}
main #tel a {
    color: orangered;
    padding-left: 10px;
    text-decoration: none;
}
main #tel a:hover {
    color: #0f0;
    transition: all 0.5s;
}
main h1 {
    color: orangered;
    text-shadow: white 5px 5px 5px, rgb(1, 10, 4) 0 0 50px;
    font:  100px HGSGyoshotai;
    font-style: oblique;
}
main h2 {
    font-size: 20pt;
    color: #fff;
    margin: 5px 20px 5px 0;
}
main p {
    color: #fff;
    font-size: 15px;
}
main br, main p br, main #tel br {
    display: none;
}
p.bg_color1 {
    background-color: rgb(247, 247, 110);
    color: #f00;
    border-radius: 25px;
    font-size: 15px;
    padding: 5px 5px;
    text-align: center;
    margin-bottom: 10px;
}
.bg_color2 {
    font-size: 20px;
    border: 3px dotted #fff;
    border-radius: 25px;
    margin: 0 0 20px 0;
}
.bg_color2 br {
    display: none;
}

span.haitatu {
    font-size: 25px;
    padding: 0;
    margin: 0;
    text-decoration: underline orange double;
}

span.tiku {
    color: yellow;
    border-radius: 25px;
}

.tiku p {
    color: #fff;
}
#tyuouku, #hakataku, #minamiku {
    border: 2px solid rgb(243, 93, 93);
    border-radius: 25px;
    margin: 0 25px;
    margin: 5px 5px;
}
p.bg_color3 {
    background-color: rgba(0, 255, 0, 0.5);
    border-radius: 10px;
    font-size: 15px;
    padding: 5px 5px;
    text-align: center;
}
/*-- map --*/
#map iframe {
    text-align: center;
    margin: 0 auto;
}
/*--  #sub  バナー --*/
#sub {
    /*background-color: #ffff99;*/
    background-color: rgb(0,0,0,0.4);
    text-align: center;
    margin: 0 auto;
}
#sub h2 {
    color: #fff;
    text-decoration: underline orange double;
    font-weight: bold;
}
#sub p#p{
    color: yellow;
}
#sub h1 {
    color: yellow;
    text-decoration: underline red wavy;
    background-color: red;
}
#qrs {
    display: flex;
    margin-top: 10px;
}
#qr1 {
    padding: auto;
    width: 90%;
    height: 90%;
    float: left;
    margin-left: 5px;
    border-radius: 10px;
}
#qr2 {
    padding: auto;
    width: 90%;
    height: 90%;
    float: right;
    margin-right: 5px;
    border-radius: 10px;
}

#sub p {
    color: #fff;
    text-align: center;
    font-size: 20px;
    padding-top: 0;
}
#sub p#kakaku {
    font-size: 15px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.326);
}
span.red {
    color: red;
    font-weight: bold;
    font-size: 20px;
}

.updown {
    animation-name: UpDown;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: alternate;
}
@keyframes UpDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(10px);
    }
}
#icon1 {
    width: 120px;
    height: 120px;
    transition: all 0.7s;
    border-radius: 15px;
}
#icon1:hover {
    transform: scale(1.2);
}
#icon2 {
    width: 80px;
    height: 80px;
    margin: 5px 5px;
}
#icon2 {
    transition: all 1.5s;
    cursor: pointer;
}
#icon2:hover {
    transform: rotateX(360deg);
}
#sub img.icon2 {
    display: flex;
}
#sub_pay {
    border-radius: 25px;
    margin-bottom: 15px;
    border: 5px solid yellow;
    clear: both;
}

/*--  footer  --*/
footer {
    clear: both;
    text-align: center;
    border-top: solid 5px #037e03;
    font-size: 10pt;
    font-weight: bold;
    padding: 10px 0;
    color: #fff;
    margin: 0 auto;
}
/*-- scroll topに戻る --*/
#page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: -50px;
    bottom: 50px;
    background: rgb(255, 103, 9);
    border-radius: 50%;
    /*波紋の形状*/
    display:inline-block;
    border-radius: 50%;
    outline: none;
    /*アニメーションの設定*/
    transition: all .3s;
}
#page_top:hover{
    background-color: orange;
    transition: .3s;
}
#page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}
#page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    margin-bottom: 20px;
    text-align: center;
}
#page_top::after,
#page_top::before {
    content: '';
    /*絶対配置で波形の位置を決める*/
    position: absolute;
    left: -25%;
    top: -25%;
    /*波形の形状*/
    border: 1px solid rgb(247, 244, 103);
    width: 150%;
    height: 150%;
    border-radius: 50%;
    /*はじめは不透明*/
    opacity: 1;
    /*ループするアニメーションの設定*/
    animation:1s circleanime linear infinite;
}
/*波形の2つ目は0.5秒遅らせてアニメーション*/
#page_top::before {
    animation-delay:.5s;
}
/*波形のアニメーション*/
@keyframes circleanime{
    0%{
    transform: scale(0.68);
    }
    100%{
        transform: scale(1.2);
        opacity: 0;
    }
}

footer address {
	padding-top: 8px;
	font-style: normal;
	text-align: center;
}

/*------ menu ------*/
#main {
    background-color: rgb(0, 0, 0, 0.5);
    width: 355px;
    clear: both;
    color: #fff;
    margin: 0 auto;

}
#main h2 {
    color: greenyellow;
    background-color: rgba(247, 245, 245, 0.3);
    font-size: 30px;
    border-radius: 20px;
    text-align: center;
}
/*-- gallery --*/
.gallery {
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 90px;
    overflow: hidden;
    margin: auto;
    margin-top: 10px;
}

/* カード本体 */
.card {
    width: 100px;
    height: 90px;
    cursor: pointer;
    position: relative;
    margin: auto;
}

.front {
    transform: rotateY(0deg);
    background-position: center / cover;
    background-repeat: no-repeat center;
    margin: auto;
}

.card:hover>.front {
    transform: rotateY(180deg);
}

.back {
    background: #333;
    transform: rotateY(180deg);
    margin: auto;
    text-align: center;
}

.card:hover>.back {
    transform: rotateY(0deg);
}

.front,
.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #0f0;
    backface-visibility: hidden;
    transition: transform 0.4s;
    font-style: italic;
    font-size: 12px;
    border-radius: 10px;
    font-weight: bold;
}
#main #info {
    font-size: 20px;
    font-style: sans-serif;
    background-color: rgba(254, 254, 253, 0.388);
    border-radius: 30px;
}
#main .option {
    margin-top: 10px;
}
#main h4#info {
    text-align: center;
    color: orange;
    margin: 10px 0;
}
#main .sub p {
    font-size: 10px;
}
#main img {
    width:150px;
    height: 90px;
    display: inline-block;
    margin: auto;
    border-radius: 10px;
}
.topping {
    text-align: center;
    margin: 15px 0;
    clear: both;
}
.topping br {
    display: none;
}
section p {
    text-align: left;
    margin-top: 10px;
}
article h3 {
    text-align: center;
    font-size: 40px;
}
article .menu h3 {
    text-align: center;
    font-size: 40px;
}
article p {
    text-decoration: underline 1px orange;
    text-align: center;
    padding: 10px 0;
}
article h4 {
    text-align: center;
    font-size: 20pt;
    color: orange;
    padding-top: 10px;
}
#genzai {
    text-align: right;
    padding: 5px 5px 5px 0;
    text-decoration: none;
    clear: both;
}
ul.kategori-menu {
    font-size: 16px;
    margin: 0 auto;
}

.kategori-menu .item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

/* 点線 */
.kategori-menu .item::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    z-index: -1;
    width: 90%;
    border-bottom: dotted 2px rgba(248, 230, 230, 0.443);
}

.kategori-menu .item .name,
.kategori-menu .item .price {
    background-color: rgb(0, 0, 0, 0.5);
    border-bottom: 1px solid orange;
    font-style: italic;
}
h3.menu {
    text-align: center;
    color: #fff;
    text-shadow: rgb(166, 166, 166) 2px 2px 2px, rgb(0, 0, 0) 0 0 20px;
}
#karamiso {
    border: dashed 2px #f00;
    text-decoration: dashed;
    margin: 10px 5px 0 5px;
    display: flex;
}
#karamiso img {
    width: 10%;
    height: 10%;
    float: left;
}
p.kara {
    font-size: 13px;
    color: yellow;
    text-shadow: rgb(252, 6, 6) 2px 2px 3px, rgb(12, 12, 12) 0 0 20px;
    text-decoration: dashed;
}

/*-- fadeIn -*/
.fadeIn{
    animation-name: fadeInAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
}

@keyframes fadeInAnime{
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
    /* スクロールをしたら出現する要素にはじめに透過0を指定 */
li.item {
    opacity: 0;
}
/*--- タイピング動作 ---*/
.type span {
    display: none;
}
/*文字列後ろの線の設定*/
.type::after {
    animation: typinganime .8s ease infinite;
}
@keyframes typinganime{
    from {
        opacity:0
    }
    to {
        opacity:1
    }
}

/*ふわっと表示*/
.blur{
    animation-name:blurAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
}
@keyframes blurAnime{
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
        }
    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}
.blurTrigger{
    opacity: 0;
}

/*-- 流れるテキスト --*/
/*全共通*/
.slide-in {
    overflow: hidden;
    display: inline-block;
}
.slide-in_inner {
    display: inline-block;
}
/*左右のアニメーション*/
.rightAnime {
    opacity: 0;
    /*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
    animation-name: slideTextX100;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes slideTextX100 {
    from {
        transform: translateX(-100%);
        /*要素を左の枠外に移動*/
        opacity: 0;
    }
    to {
        transform: translateX(0);
        /*要素を元の位置に移動*/
        opacity: 1;
    }
}
.slideAnimeRightLeft {
    animation-name: slideTextX-100;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes slideTextX-100 {
    from {
        transform: translateX(100%);
        /*要素を右の枠外に移動*/
        opacity: 0;
    }
    to {
        transform: translateX(0);
        /*要素を元の位置に移動*/
        opacity: 1;
    }
}
.center {
    text-align: center;
}