@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

/*フォント*/
@font-face {
    font-family: 'Zen_Old_Mincho';
    src: url(../font/Zen_Old_Mincho/ZenOldMincho-Regular.woff);
}

@font-face {
    font-family: 'Sawarabi_Gothic';
    src: url(../font/Sawarabi_Gothic/SawarabiGothic-Regular.woff);
}

body {
    color: #101010;
    font-family: 'Zen_Old_Mincho';
}

/*オープニングアニメーション*/
.loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}

.loading.is-active {
    opacity: 0;
    visibility: hidden;
  }

.loading-animation {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    background-color: #101010;
}

.loading-animation img {
    width: 40%;
    animation: 1.2s rotate;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
    }
}

.loading-animation.is-active {
    opacity: 1;
    visibility: visible;
}

/*ヘッダースクロールイベント*/
.hide {
    margin-top: -1%;
    padding-bottom: 1%;
    box-shadow: 0vw 0vw 0vw 0vw;
    background-color: rgba(1,1,1,0.7);
}

.hide address a {
    font-size: 1.8vw;
}

.hide address a span img {
    width: 1.3vw;
}

.hide address .header-catch-left p {
    font-size: 1vw;
}

.hide address p {
    font-size: 1.3vw;
}

.hide h1 {
    position: absolute;
    top: 16%;
    left: 44%;
    width: 12%;
}

.hide h1 img {
    width: 100%;
}

#scrollArea {
    position: fixed; /* 固定して表示されるようにする */
    top: 0; /* 表示場所を一番上に */
    transition: .5s; /* スクロール時に一瞬で消えると物足りないので.hideの処理を0.5秒で行う */
    z-index: 100; /* 前面に表示されるようにする */
}

/*スムーススクロール*/
#page-top {
    position: fixed;
    bottom: 1vw;
    right: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    background-color: #101010;
    box-shadow: 0vw 0vw 1vw 1vw #101010;
    z-index: 10;
}

#page-top a {
    display: block;
    width: fit-content;
    height: fit-content;
    font-size: 1.4vw;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    width: 95%;
    padding: 1% 3% 0% 2%;
    background-color: #101010;
    box-shadow: 0vw 0vw 2vw 2vw #101010;
}

address {
    display: flex;
    margin-top: 0.3%;
    font-style: normal;
}

address a {
    display: block;
    width: fit-content;
    margin: 0.4vw 1vw;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 2vw;
    font-family: 'Zen_Old_Mincho';
}

address a span {
    margin-left: 1vw;
}

address a span img {
    width: 1.3vw;
}

address p {
    margin-left: 1em;
    color: #fff;
    font-size: 1.1vw;
}

.header-catch-right p {
    width: fit-content;
    margin-top: 4%;
    border-bottom: 1px solid red;
    font-size: 1.3vw;
}

h1 {
    position: absolute;
    top: 8%;
    left: 42%;
    width: 16%;
}

h1 img {
    width: 100%;
}

/* ナビゲーション */
nav {
    width: fit-content;
    margin-top: 1.2%;
    margin-left: auto;
}

nav ul {
    display: flex;
    list-style-type: none;
}


nav ul li a {
    display: block;
    padding: 0.6vw 1vw;
    text-decoration: none;
    color: #fff;
    font-size: 2vw;
    font-family: 'Zen_Old_Mincho';
}

/*header-imagebox*/
.header-imagebox {
    display: flex;
    width: 100%;
    margin-top: 3%;
}

/*img-frame1*/
.header-imagebox .img-frame1 {
    position: relative;
    width: calc( 100% / 3 );
    height: 28vw;
    overflow: hidden;
}

.header-imagebox .img-frame1 img {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    object-fit: cover;
    vertical-align: bottom;
    z-index: -1;
}

.header-imagebox .img-frame1 .img1 {
    animation: 12s zoom linear infinite;
}

@keyframes zoom {
    0% {
        opacity: 1;
        transform: scale(1,1);
    }
    32% {
        opacity: 1;
    }
    33% {
        opacity: 0;
        transform: scale(1.05,1.05);
    }
    100% {
        opacity: 0;
    }
}

.header-imagebox .img-frame1 .img2 {
    animation: 12s zoom2 linear infinite;
}

@keyframes zoom2 {
    0% {
        opacity: 0;
    }
    32% {
        opacity: 0;
    }
    33% {
        opacity: 1;
        transform: scale(1,1);
    }
    66% {
        opacity: 1;
        transform: scale(1.05,1.05);
    }
    67% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.header-imagebox .img-frame1 .img3 {
    animation: 12s zoom3 linear infinite;
}

@keyframes zoom3 {
    0% {
        opacity: 0;
    }
    65% {
        opacity: 0;
    }
    66% {
        opacity: 1;
        transform: scale(1,1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05,1.05);
    }
}


/*ページ内リンク位置調整*/
#course {
    padding-top: 3vw;
    margin-top: -3vw;
}


.black-box {
    position: relative;
    height: 1.6vw;
    background-color: #101010;
    box-shadow: 0vw 0vw 1vw 2vw #101010;
    z-index: 1;
}

/*セクション*/
main {
    position: relative;
    padding-top: 5%;
    background-image: url(../images/mokume.jpg);
    background-size: 100% 100%;
    z-index: 6;
}

/*お知らせ部分css▼////////////////////////////////////////////*/
main #contents-maker-news {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
    line-height: 1.2;
    font-size: 1.8vw;
    background-image: url(../images/osirase.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Sawarabi_Gothic';
}

main #contents-maker-news h2 {
    border-bottom: 1px solid #101010;
    text-align: center;
    font-size: 2.2vw;
}

div#contents-maker-news div.cm-box {
}

div#contents-maker-news dl {
    display: flex;
    padding: 0.3em 0.5em;
}


div#contents-maker-news dl dt {
    padding-right: 1em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #333333;
    font-weight: 800;
}

div#contents-maker-news dl dd {
    padding-bottom: 0.3em;
    border-bottom: 1px solid #333333;
    font-weight: 600;
}
/*お知らせ部分css▲////////////////////////////////////////////*/

main section h2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.8vw;
    text-align: center;
}

main section h2 .sub-title {
    font-size: 1.4vw;
    margin-bottom: 2%;
}

/*各コースセクション*/
main section section {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3%;
    padding-bottom: 3%;
}

.course-title {
    display: flex;
}

main section section .course-title h3 {
    width: 50%;
    margin-bottom: 1%;
    padding-bottom: 1%;
    border-bottom: 2px solid #101010;
    text-align: center;
    font-size: 2.2vw;
    font-weight: 1000;
    text-shadow: 0px 0px 6px #fff;
    font-family: 'Sawarabi_Gothic';
}

.course-catch {
    width: 48%;
    height: fit-content;
    margin-top: 0.5em;
    margin-left: 2%;
    white-space: pre-wrap;
    text-align: center;
    color: red;
    font-size: 1.6vw;
    font-weight: 900;
    text-shadow: 0px 0px 4px #fff;
}

main section section .section-flexbox {
    display: flex;
}


main section section h3 .karasa {
    color: #fff;
    font-size: 1.8vw;
    background-image: url(../images/flame.png);
    background-size: 100% 100%;
}

main section section h3 .karasa-text {
    font-size: 1.8vw;
}

main section section .text-box ul {
    margin-left: 18%;
    margin-bottom: 4%;
    font-size: 1.8vw;
    font-weight: 700;
}

main section section .text-box ul li {
    line-height: 1.4;
}

main section section .text-box ul .sub-list {
    width: fit-content;
    margin-bottom: 0.3em;
    white-space: pre-wrap;
    line-height: 1.1;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-family: 'Sawarabi_Gothic';
}

main section section .text-box p:nth-of-type(1) {
    margin-top: 4%;
    color: red;
    font-size: 1.4vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px #fff;
}

main section section .text-box p:nth-of-type(2) {
    line-height: 1;
    font-size: 3.6vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px #fff;
}

main section section .text-box p:nth-of-type(2) span {
    font-size: 1.4vw;
    margin-right: 2%;
}

main section section .section-flexbox .text-box {
    width: 47%;
}

main section section .section-flexbox .section-imgbox {
    width: 50%;
    margin-left: 3%;
}


main section section .section-flexbox .section-imgbox img {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/*餃子コース行間*/
main section section:nth-of-type(3) .section-flexbox .text-box ul li {
    line-height: 1.2;
}

/*お気軽２次会セット*/
main section section:nth-of-type(4) h3 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1%;
    padding-bottom: 1%;
    border-bottom: 2px solid #101010;
    text-align: center;
    font-size: 2.2vw;
    font-weight: 1000;
    text-shadow: 0px 0px 6px #fff;
    font-family: 'Sawarabi_Gothic';
}

main section section:nth-of-type(4) .text-box {
    display: flex;
}

main section section:nth-of-type(4) .text-box ul {
    width: 40%;
}

main section section:nth-of-type(4) .text-box .nijikai-rightbox {
    width: 60%;
}

main section section:nth-of-type(4) .text-box p:nth-of-type(1) {
    color: red;
    font-size: 1.4vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px #fff;
}

main section section:nth-of-type(4) .text-box p:nth-of-type(2) {
    margin: 0;
    color: #101010;
    font-size: 3.6vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px #fff;
}

main section section:nth-of-type(4) .text-box p:nth-of-type(2) span {
    font-size: 1.4vw;
    margin-right: 2%;
}

/*ページ内リンク位置調整*/
#menu {
    padding-top: 3vw;
    margin-top: -3vw;
}

/*お品書き*/
.menu {
    position: relative;
    padding-top: 6%;
    padding-bottom: 6%;
    background-image: url(../images/wasi.jpg);
    background-size: 100% 100%;
    z-index: 6;
}

.menu .menu-parent-section {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.menu .menu-parent-section h2 {
    margin-bottom: 4%;
    padding-bottom: 2%;
    text-align: center;
    font-size: 2.8vw;
}

.menu .menu-parent-section h2 .osinagaki-title {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4vw;
}

.menu .menu-parent-section {
    margin-bottom: 4%;
}

.menu-flexbox {
    display: flex;
}

.jin {
    width: 44%;
    margin-right: 12%;
}

.jin p {
    white-space: pre-wrap;
    text-align: center;
    color: red;
    font-size: 1.4vw;
    font-weight: 900;
    text-shadow: 0px 0px 4px #fff;
}

.jin ul {
    margin-bottom: 3%;
    list-style-type: none;
}

.jin ul li:nth-of-type(1) {
    margin-bottom: 1%;
    padding-bottom: 2%;
    line-height: 2.38;
    border-bottom: 2px solid #101010;
    color: #101010;
    font-size: 2.6vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px yellow;
    font-family: 'Sawarabi_Gothic';
}

.jin ul li {
    text-align: center;
    line-height: 1.4;
    color: #101010;
    font-size: 1.4vw;
    font-weight: 700;
}

.jin ul li span {
    vertical-align: -8%;
    color: #101010;
    font-size: 2.6vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px #fff;
}

.jin ul li:nth-of-type(3) span {
    font-size: 2vw;
}

.jin .img-box {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.jin .img-box img {
    width: 100%;
}

.shabu {
    width: 44%;
}

.shabu p {
    white-space: pre-wrap;
    text-align: center;
    color: red;
    font-size: 1.4vw;
    font-weight: 900;
    text-shadow: 0px 0px 4px #fff;
}

.shabu ul {
    margin-bottom: 3%;
    list-style-type: none;
}

.shabu ul li:nth-of-type(1) {
    margin-bottom: 1%;
    padding-bottom: 2%;
    border-bottom: 2px solid #101010;
    color: #101010;
    font-size: 2.6vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px yellow;
    font-family: 'Sawarabi_Gothic';
}

.shabu .menu-list {
    font-size: 1.6vw;
}

.shabu ul li:nth-of-type(1) span {
    color: #fff;
    font-size: 1.8vw;
    background-image: url(../images/flame.png);
    background-size: 100% 100%;
}

.shabu ul li {
    text-align: center;
    line-height: 1.4;
    color: #101010;
    font-size: 1.4vw;
    font-weight: 700;
}

.shabu ul li span {
    vertical-align: -8%;
    color: #101010;
    font-size: 2.6vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px #fff;
}

.shabu ul li:nth-of-type(3) span {
    font-size: 2vw;
}

.shabu .img-box {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.shabu .img-box img {
    width: 100%;
}

.menu-flexbox + p:nth-of-type(1) {
    margin-top: 1%;
    margin-bottom: 7%;
    text-align: center;
    line-height: 2.4;
    color: #fff;
    font-size: 2vw;
    background-color: #ff0000;
}

.menu-flexbox .manpuku ul li:nth-of-type(1) {
    display: flex;
    line-height: normal;
}

.menu-flexbox .sio ul li:nth-of-type(1) {
    display: flex;
    line-height: normal;
}

/*まんぷく餃子*/
.manpuku {
    width: 44%;
    margin-right: 12%;
}

.manpuku ul {
    margin-bottom: 3%;
    list-style-type: none;
}

.manpuku ul li:nth-of-type(1) {
    margin-bottom: 1%;
    padding-bottom: 2%;
    border-bottom: 2px solid #101010;
    color: #101010;
    font-size: 2.6vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px yellow;
}

.manpuku ul li {
    text-align: center;
    line-height: 1.4;
    color: #101010;
    font-size: 1.4vw;
    font-weight: 700;
}

.manpuku ul li .list-left {
    width: 26%;
    height: fit-content;
    margin-left: 14%;
}

.manpuku ul li .list-left img {
    width: 100%;
    vertical-align: bottom;
}

.manpuku ul li .list-right {
    width: fit-content;
}

.list-catch {
    color: red;
    font-size: 1.4vw;
    font-family: 'Zen_Old_Mincho';
    text-shadow: 0px 0px 4px #fff;
}

.manpuku ul li span {
    vertical-align: -8%;
    color: #101010;
    font-size: 2.6vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px #fff;
}

.manpuku ul li:nth-of-type(3) span {
    font-size: 2vw;
}

.manpuku img {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/*塩餃子*/
.sio {
    width: 44%;
}

.sio ul {
    margin-bottom: 3%;
    list-style-type: none;
}

.sio ul li:nth-of-type(1) {
    margin-bottom: 1%;
    padding-bottom: 2%;
    border-bottom: 2px solid #101010;
    color: #101010;
    font-size: 2.6vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px yellow;
    font-family: 'Sawarabi_Gothic';
}

.sio ul li {
    text-align: center;
    line-height: 1.4;
    color: #101010;
    font-size: 1.4vw;
    font-weight: 700;
}

.sio ul li .list-left {
    width: 26%;
    margin-left: 14%;
}

.sio ul li .list-left img {
    width: 100%;
    vertical-align: bottom;
}

.sio ul li .list-right {
    width: fit-content;
}


.sio ul li span {
    vertical-align: -8%;
    color: #101010;
    font-size: 2.6vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px #fff;
}

.sio ul li:nth-of-type(3) span {
    font-size: 2vw;
}

.sio img {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/*問題点///////////////////////////////////////////////////*/
.meibutu {
    display: inline-block;
    width: 20%;
}

.meibutu img {
    width: 100%;
}

.gyoza-menu + p {
    white-space: pre-wrap;
    margin-top: 3%;
    margin-bottom: 7%;
    padding: 1%;
    text-align: center;
    line-height: 1.8;
    color: #fff;
    font-size: 1.4vw;
    background-image: url(../images/mokume-tya.jpg);
    background-size: cover;
}

/*刺身以下*/
.sasimi-section {
    display: flex;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
}

.sasimi-left {
    width: 52%;
    margin-right: 8%;
    padding-top: 5%;
}

.sasimi-right {
    width: 40%;
}

.sasimi-right img {
    width: 100%;
}

.osinagaki-flexbox {
    display: flex;
    padding-bottom: 7%;
}

.osinagaki-leftbox {
    width: 46%;
    margin-right: 8%;
}

.osinagaki-rightbox {
    width: 46%;
}

/*メニューリストアンダーライン*/
.bottom-line {
    position: relative;
}

.bottom-line::before {
    position: absolute;
    bottom: 0.2em;
    left: 0em;
    display: block;
    content: "";
    width: 100%;
    height: 0.4em;
    background-image: url(../images/redline.png);
    background-size: cover;
}

.menu section section {
    margin-bottom: 7%;
}

.menu section section h3 {
    margin-bottom: 3%;
    text-align: center;
    color: #010101;
    text-shadow: 0px 0px 4px yellow;
    font-size: 2.4vw;
    font-family: 'Sawarabi_Gothic';
}

.menu section section ul {
    list-style-type: none;
}

/*お品書きのリスト*/
.menu section section ul li {
    display: flex;
    width: 100%;
    line-height: 2;
    font-size: 1.8vw;
}
.menu section section ul li .nedan {
    width: fit-content;
    margin-left: auto;
}

.menu section section ul li span {
    color: #010101;
    font-weight: 600;
    font-size: 1.2vw;
}

.menu section section ul li span {
    display: inline-block;
    padding: 0 0.4em;
    vertical-align: text-bottom;
    color: #010101;
    font-weight: 600;
    font-size: 1.2vw;
    background-color: #fff;
}

.menu section section ul li span:nth-of-type(2) {
    margin-left: 1em;
}

.drink-size {

}

/*お飲みお飲み物*/
.drink-box section p {
    margin-bottom: -0.4em;
    color: #ff8c00;
    font-weight: 600;
    font-size: 1.4vw;
}

.drink-flexbox {
    display: flex;
}

.drink-leftbox {
    width: 46%;
    margin-right: 8%;
}

.drink-rightbox {
    width: 46%;
}

.beer-h3 {
    position: relative;
}

.beer-h3 span {
    position: absolute;
    left: 2.5em;
    display: inline-block;
    width: 22%;
}

.beer-h3 span img {
    width: 100%;
    vertical-align: bottom;
}

.beer-text {
    margin-bottom: -0.4em;
    font-weight: 600;
    font-size: 1vw;
}

/*ページ内リンク位置調整*/
#shop {
    padding-top: 3vw;
    margin-top: -3vw;
}

/*店舗情報*/
.tenpo {
    padding-top: 6%;
    padding-bottom: 5%;
    color: #fff;
    font-size: 1.3vw;
    background-image: url(../images/kuro-wasi.jpg);
}

.tenpo .tenpo-section {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
}

.tenpo section h2 {
    margin-bottom: 4%;
    padding-bottom: 2%;
    font-size: 2.8vw;
    text-align: center;
}

.tenpo-logo {
    width: 32%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6%;
}

.tenpo-logo img {
    width: 100%;
}

/*フッター*/
.tenpo-flexbox {
    display: flex;
}

.tenpo-leftbox {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 4%;
}

.tenpo-rightbox {
    width: 49%;
}

.tenpo-flexbox dl {
    display: flex;
    line-height: 1.8;
    margin-bottom: 5%;
}

.tenpo-flexbox dl dt {
    width: 7em;
}

.goyoyaku {
    white-space: pre-wrap;
}

.tenpo-flexbox dl dd {
}

.wrap {
    white-space: pre-wrap;
}

.tenpo-cancel {
    
}

.tenpo-cancel section {
    margin-bottom: 6%;
    padding: 2% 4%;
    border: 3px solid #fff;
    line-height: 1.6;
}

.tenpo-cancel h3 {
    padding-bottom: 2%;
    margin-bottom: 2%;
    border-bottom: 3px solid #fff;
    text-align: center;
    font-size: 1.8vw;
}

.tenpo-cancel p {
    font-size: 1.4vw;
}

/*キャンセル部分改行*/
.tenpo-cancel p span::after {
    content: "\A";
    white-space: pre;
}

.shop-photo {
    margin-bottom: 4%;
}

.shop-photo img {
    width: 100%;
    vertical-align: bottom;
}

.shop-photo2 {
}

.shop-photo2 img {
    width: 100%;
    vertical-align: bottom;
}

.map-box {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 36vw;
}


footer {
    padding: 4%;
    background-color: #101010;
    box-shadow: 0vw 0vw 2vw 2vw #101010;
}

footer p {
    text-align: center;
    color: #fff;
    font-size: 1.2vw;
}