@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

/*ハンバーガーメニュー*/
/*ナビメニューのスタイルを指定*/
nav.NavMenu {
	position: fixed; /*表示位置を固定*/
	z-index: 2; /*重ね順を変更*/
	top: 0; /*表示位置を指定*/
	left: 0; /*表示位置を指定*/
	width: 100%; /*全幅表示*/
	transform: translateY(-100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
	transition: all 0.6s; /*アニメーションの時間を指定*/
}

nav.NavMenu ul {
	list-style-type: none;
	background: rgba(255,255,255,0.9);
}

nav.NavMenu ul li {
	border-bottom: 1px dotted #333;
}

nav.NavMenu ul li:last-child {
	border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

nav.NavMenu ul li a {
	display: block; /*クリックできる領域を広げる*/
	text-align: center; /*テキストを中央揃え*/
	text-decoration: none;
	line-height: 3;
	color: #000;
	font-size: 1.1em;
}


/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active{
	transform: translateY(0%);
}


/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 2vw;
	top: 2vw;
	width: 42px;
	height: 40px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 3;/*ボタンを一番上にしている(押せなくなるから)*/
}

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

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

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

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

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

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


/*フォント*/
@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 {
    padding-bottom: 3%;
    box-shadow: 0vw 0vw 0vw 0vw;
    background-color: rgba(1,1,1,0.7);
}

.hide address {
    display: flex;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
}

.hide address .header-catch-left {
    width: fit-content;
}

.hide address .header-catch-left a {
    font-size: 3.2vw;
}

.hide address .header-catch-left a span img {
    width: 2.4vw;
}

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

.hide address .header-catch-right {
    width: fit-content;
    margin-top: 0.4vw;
    margin-left: auto;
    margin-right: 12%;
}

.hide address .header-catch-right p {
    width: fit-content;
    margin-left: auto;
    font-size: 2vw;
}

.hide h1 {
    position: absolute;
    top: 5%;
    left: 38%;
    width: 24%;
}

.hide h1 img {
    width: 100%;
}

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

/*スムーススクロール*/
#page-top {
    position: fixed;
    right: 2.8vw;
    bottom: 1vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6vw;
    height: 6vw;
    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: 2.4vw;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    width: 96%;
    padding: 3% 2% 1%;
    background-color: #101010;
    box-shadow: 0vw 0vw 2vw 2vw #101010;
}

address {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: 14%;
    font-style: normal;
    color: #fff;
}

address .header-catch-left {
}

address .header-catch-left a {
    display: block;
    width: fit-content;
    margin-top: -0.1em;
    margin-left: auto;
    line-height: 1.5;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 4.2vw;
    font-family: 'Zen_Old_Mincho';
}

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

address .header-catch-left a span img {
    width: 2.6vw;
}

address .header-catch-left p {
    text-align: right;
    font-size: 2.4vw;
}

address .header-catch-right {
}

address .header-catch-right p {
    width: fit-content;
    margin-top: 0.2em;
    margin-left: auto;
    font-size: 3vw;
    line-height: 1.2;
    border-bottom: 1px solid red;
}

h1 {
    position: absolute;
    top: 12%;
    left: 2%;
    width: 36%;
}

h1 img {
    width: 100%;
}

/*header-imagebox*/
.header-imagebox {
    width: 100%;
    height: fit-content;
    margin-top: 22%;
}

/*img-frame1*/
.header-imagebox .img-frame1 {
    position: relative;
    height: 58vw;
    overflow: hidden;
}

.header-imagebox .img-frame1 img {
    position: absolute;
    top: 0%;
    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: 20%;
    margin-top: -20%;
}

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

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

/*お知らせ部分css▼////////////////////////////////////////////*/
main #contents-maker-news {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
    line-height: 1.2;
    font-size: 3.2vw;
    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: 3.2vw;
}

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

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


div#contents-maker-news dl dt {
    font-weight: 800;
}

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

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

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

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

main section section:nth-of-type(2) {
    margin-bottom: 6%;
}

main section section:nth-of-type(3) {
    margin-bottom: 6%;
}


.course-title {
    display: block;
}

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

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

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


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

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

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

main section section .text-box ul {
    margin-left: 18%;
    margin-bottom: 4%;
    font-size: 4vw;
    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%;
    text-align: center;
    color: red;
    font-size: 3vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px #fff;
}

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

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

main section section .section-flexbox .section-imgbox {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/*コースジンギスカン画像上詰め*/
main section section:nth-of-type(1) .section-flexbox .section-imgbox {
    margin-top: -8%;
}

/*コースジンシャブ画像上余白*/
main section section:nth-of-type(2) .section-flexbox .section-imgbox {
    margin-top: 3%;
}

/*コース餃子画像上余白*/
main section section:nth-of-type(3) .section-flexbox .section-imgbox {
    margin-top: 3%;
}

main section section .section-flexbox .section-imgbox img {
    width: 100%;
}

/*餃子コース行間*/
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 {
    margin-bottom: 1%;
    padding-bottom: 1%;
    border-bottom: 2px solid #101010;
    text-align: center;
    font-size: 4.8vw;
    font-weight: 1000;
    text-shadow: 0px 0px 6px #fff;
    font-family: 'Sawarabi_Gothic';
}

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

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

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

main section section:nth-of-type(4) .text-box p:nth-of-type(1) {
    color: red;
    font-size: 3vw;
    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: 9vw;
    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: 4vw;
    margin-right: 2%;
}

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

/*お品書き*/
.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: 6vw;
}

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

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

.menu-flexbox {
    display: block;
}

.jin {
    
}

.jin p {
    white-space: pre-wrap;
    text-align: center;
    color: red;
    font-size: 2.9vw;
    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%;
    border-bottom: 2px solid #101010;
    color: #101010;
    font-size: 4.8vw;
    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: 4vw;
    font-weight: 700;
}

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

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

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

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

.shabu {
}

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

.shabu p span::after {
    content: "\A";
    white-space: pre;
}

.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: 4.8vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px yellow;
    font-family: 'Sawarabi_Gothic';
}

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

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

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

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

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

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

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

.menu-flexbox + p:nth-of-type(1) {
    white-space: pre-wrap;
    margin-top: 2%;
    margin-bottom: 10%;
    padding: 0% 2%;
    text-align: center;
    line-height: 1.6;
    color: #fff;
    font-size: 3.8vw;
    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 {
    margin-bottom: 10%;
}

.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: 4.8vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px yellow;
    font-family: 'Sawarabi_Gothic';
}

.manpuku ul li {
    text-align: center;
    line-height: 1.4;
    color: #101010;
    font-size: 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: 2.9vw;
    font-family: 'Zen_Old_Mincho';
    text-shadow: 0px 0px 4px #fff;
}

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

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

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

/*塩餃子*/
.sio {
}

.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: 4.8vw;
    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: 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: 4vw;
    font-weight: 700;
    text-shadow: 0px 0px 4px #fff;
}

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

.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: 8%;
    padding: 1%;
    text-align: center;
    line-height: 1.8;
    color: #fff;
    font-size: 2.7vw;
    background-image: url(../images/mokume-tya.jpg);
    background-size: cover;
}

.gyoza-menu + p span::after {
    content: "\A";
    white-space: pre;
}



/*刺身以下*/
.menu section section {
    margin-bottom: 7%;
}

.menu section section h3 {
    margin-bottom: 1%;
    text-align: center;
    color: #010101;
    text-shadow: 0px 0px 4px yellow;
    font-size: 4.8vw;
    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: 4vw;
}
.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: 2.6vw;
    background-color: #fff;
}

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


.sasimi-section {
    display: block;
    margin-bottom: 4%;
}

.sasimi-left {
    
}

.sasimi-right {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

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

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

.osinagaki-leftbox {
}

.osinagaki-rightbox {
}

/*メニューリストアンダーライン*/
.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;
}


.drink-size {

}

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

.drink-flexbox {
    display: block;
}

.beer-h3 {
    position: relative;
}

.beer-h3 span {
    position: absolute;
    top: -0.2em;
    left: 3.2em;
    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: 2.9vw;
}

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

/*店舗情報*/
.tenpo {
    padding-top: 6%;
    padding-bottom: 5%;
    color: #fff;
    font-size: 2.9vw;
    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: 6vw;
    text-align: center;
}

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

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

/*フッター*/
.tenpo-flexbox {
    display: block;
    margin-bottom: 6%;
}

.tenpo-leftbox {
    margin-bottom: 4%;
}

.tenpo-rightbox {
}

.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 {
    width: 92%;
    margin-bottom: 8%;
    padding: 4%;
    border: 3px solid #fff;
    line-height: 1.6;
}

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

.tenpo-cancel p {
    white-space: pre-wrap;
    font-size: 2.9vw;
}

.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: 2.4vw;
}