@charset "utf-8";

/* Reset CSS */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}

body {
    line-height: 1;
}

p {
    line-height: 1.4;
    font-size: 1.4rem;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    color: var(--white-color);
    text-decoration: none;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

li {
    list-style: none;
}

iframe {
    width: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
}


/* ここから */

/* 設定 */
:root {
    --accent-color: #ff791f;
    --sub-color: #e5b781;
    --base-color: #911d22;
    --hover-move: .1s ease-in all;
}

/* 設定 */

img {
    max-width: 100%;
    display: block;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    color: #1c1c1c;
    background-image: url(img/back.jpeg);
    scroll-behavior: smooth;
}

/* ローディング画面ここから */
#loadingCover {
    display: block;
    position: fixed;
    background-color: #ffffff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 910;
    transform: scaleX(1);
}

#loadingCover.active {
    animation-name: loadMotion;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes loadMotion {
    0% {
        transform-origin: left;
        transform: scaleX(1);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}

#loadingNow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 1;
    transition: 1s;
    z-index: 5000;
}

#loadingVideo {
    max-width: 420px;
    width: 75%;
}

.load-img {
    display: none;
    opacity: 0;
    transition: var(--hover-move);
    width: 60%;
    max-width: 200px;
}


/* ローディング画面ここまで */

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #c7c7c7;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    position: absolute;
    z-index: 999;
    top: 14%;
    padding: 20px 0;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
}

#g-nav .sns-block {
    position: absolute;
    bottom: 14%;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    border-bottom: 1px solid var(--base-color);
    padding: 5px 0;
}

#g-nav li a {
    color: var(--base-color);
    font-size: 1.8rem;
    text-decoration: none;
    padding: 14px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    display: flex;
    align-items: center;
}

#g-nav li a span {
    font-size: 1.2rem;
    margin-left: 10px;
}

#g-nav .sns-block {
    width: fit-content;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#g-nav .sns-block a {
    max-width: 40px;
    margin-right: 20px;
}

#g-nav .sns-block p {
    font-family: "Archivo Black", sans-serif;
    margin-right: 30px;
    color: var(--sub-color);
    text-shadow: 0px 1px 4px #23430C;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    bottom: 5px;
    right: 5px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

/*×に変化*/
.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--accent-color);
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top: 15px;
}

.openbtn1 span:nth-of-type(2) {
    top: 23px;
}

.openbtn1 span:nth-of-type(3) {
    top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

.inner {
    width: 95%;
    margin: auto;
}

/*header*/
header {
    height: 80px;
    background-image: url(img/back.jpeg);
    display: flex;
    align-items: center;
    position: relative;
    justify-content: right;
    overflow: hidden;
}

header h1 {
    text-align: right;
    margin-left: auto;
    font-size: 1.2rem;
    font-weight: normal;
    position: relative;
    z-index: 5;
}

.circle-bottom {
    width: 200px;
    height: 200px;
    background: #fefefe;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    position: fixed;
    top: -100px;
    left: -100px;
    z-index: 150;
}

.circle-bottom a {
    display: block;
    position: fixed;
    width: 110px;
    height: 100px;
    top: -14px;
    left: -14px;
}

.pc-header {
    display: none;
}

/*header*/

/*slider*/
.slide-items {
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 20px;
}

.slide-items img {
    width: 100%;
    object-fit: cover;
}

.main_slider {
    background-image: url(img/brick.jpg);
    background-repeat: no-repeat;
    background-size: auto 240px;
    background-position: 100% 75%;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/*slider*/
/*main*/
section {
    padding-top: 40px;
    padding-bottom: 30px;
}

h2 {
    /*font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;*/
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
}

/*お知らせ*/
.notice {
    background-color: rgba(255, 255, 255, 0.7);
    width: 95%;
    margin: auto;
    padding: 20px 0;
    position: relative;
    max-width: 740px;
}

.notice h2 {
    position: relative;
    margin-bottom: 30px;
}

.notice h2 span {
    display: block;
    width: 40px;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

/* モーダル */
.modal {
    margin: 0 auto;
    width: 90%;
    padding: 0;
}

.modal_inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 0;
}

/* モーダルを開くボタン */
.modal__trigger {
    cursor: pointer;
    text-align: center;
    padding: 10px 5px;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}

.modal__trigger span {
    display: block;
    text-align: right;
    margin-top: 5px;
}

.modal__trigger:hover {
    opacity: .6;
}

.modal__trigger img {
    display: block;
    width: 100%;
    height: 100%;
}

/* モーダル本体 */
.modal__wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15000;
    width: 100%;
    height: 100%;
}

.modal__layer {
    height: 100%;
    background: rgba(50, 50, 50, .85);
    cursor: pointer;
}

.modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(calc(100% - 40px), 60rem);
    height: auto;
    padding: 20px;
    background: #fff;
}

.modal__container.safety {
    height: 80vh;
}

.modal__inner {
    position: relative;
    height: 100%;
    padding: 0;
}

/* モーダルを閉じるボタン */
.modal__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(50, 50, 50, 1);
    cursor: pointer;
    transition: opacity .6s;
    z-index: 500;
}

.modal__close:hover {
    opacity: .8;
}

.modal__close:before,
.modal__close:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    content: '';
}

.modal__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル内のコンテンツ */
.modal__content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

p.modal__title {
    text-align: center;
    font-size: 2rem;
    padding: 0;
    margin-bottom: 1rem;
}

.modal__text {
    margin-top: 0;
    line-height: 2;
    height: 100%;
    overflow-y: scroll;
}

.modal__text a {
    display: inline;
    color: var(--main-color);
    text-decoration: underline;
}

.modal__text img {
    margin: 0.5rem auto;
    display: block;
    width: 100%;
    height: 100%;
}

.modal__text img.guarantee_img {
    width: 75%;
    height: auto;
}

/* モーダル */
/*お知らせ*/

/*about*/
.parallax {
    position: relative;
    background-image: url('/img/whiskey.jpg');
    height: 740px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 20px 0 80px 0;
    padding: 30px 0;
}

.parallax-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#about {
    background-color: rgba(31, 30, 29, 0.493);
    padding: 20px 20px;
}

#about h2 {
    color: #e5b781;
    text-shadow: 3px 2px 0px #911d22;
    font-weight: bold;
    font-size: 3.6rem;
    line-height: 1.4;
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 20px;
}

#about h2 span {
    display: block;
    font-size: 1.8rem;
}

.what_is_wb {
    color: #fefefe;
}

.what_is_wb p {
    font-size: 1.5rem;
    line-height: 2.8;
    text-shadow: 1px 1px 2px #0a0a0a;
}

.about_img1 {
    width: 80%;
    margin-right: auto;
}

/*day_night*/
#day_night {
    background-image: url(img/back_decoration.png), url(img/back_decoration.png);
    background-repeat: no-repeat;
    background-size: 150%, 180%;
    background-position: 20% 110%, 50% 3%;
    padding-top: 80px;
    margin-top: -80px;
}

.day_or_night {
    position: relative;
    margin-bottom: 40px;
}

.don_img.left,
.don_img.right {
    position: absolute;
    width: 50%;
}

.don_img.left {
    top: 0;
    left: 0;
}

.don_img.right {
    bottom: 0;
    right: 0;
}

.day_or_night img {
    display: inline-block;
}

/* 飾りサイド画像 */
.side01 {
    position: absolute;
    width: 40%;
    top: -120px;
    left: -28px;
    transform: rotate(6deg);
    max-width: 400px;
}

.side02 {
    position: absolute;
    width: 30%;
    top: -10px;
    right: -10px;
    max-width: 340px;
}

.caption {
    padding: 10px;
    font-size: 2rem;
    border: 2px solid #ff791f;
    /* background-color: #fefefe; */
    display: inline-block;
    position: absolute;
    width: auto;
    border-image: linear-gradient(90deg, rgba(255, 188, 0, 1) 0%, rgba(255, 102, 0, 1) 35%, rgba(255, 188, 0, 1) 100%);
    border-image-slice: 1;
    background-image: linear-gradient(90deg, rgba(235, 235, 235, 1), rgba(249, 249, 249, 1) 30%, rgba(237, 237, 237, 1) 77%, rgba(233, 233, 233, 1) 100%, rgba(250, 250, 250, 1));
}

.caption.left {
    left: 0;
    bottom: -10px;
    display: block;
    border-left: none;
}

.caption.right {
    right: 0;
    top: -55px;
    display: block;
    border-right: none;
}

.lunch,
.dinner {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px 15px;
    margin-bottom: 30px;
    max-width: 1400px;
    height: auto;
    margin: 0 auto;
}

.lunch p,
.dinner p {
    line-height: 1.8;
    font-size: 1.6rem;
    max-width: 700px;
    margin: 0 auto;
}

.lunch .don_t,
.dinner .don_t {
    text-align: center;
    font-size: 2.4rem;
    padding: 0 10px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px #aaa;
}

.slide-items_don {
    width: 80%;
    margin: 0 auto 20px auto;
}

.slide-items_don .slick-dots {
    bottom: -25px;
}

.slide-items_don.slick-dotted.slick-slider {
    margin-bottom: 35px;
}

.slide-items_don .slick-prev {
    left: 0;
    bottom: -45px;
}

.slide-items_don .slick-next {
    right: 0;
    bottom: -45px;
}

.to_menu_btn {
    background-color: #e5b781;
    transition: var(--hover-move);
    max-width: 650px;
    margin: 70px auto 0 auto;
    position: relative;
    z-index: 11;
    width: 90%;
}

.to_menu_btn a {
    margin: 20px auto 0 auto;
    padding: 5px;
    text-align: center;
    display: block;
    position: relative;
    font-weight: bold;
    font-size: 1.8rem;
    transition: var(--hover-move);
}

.to_menu_btn:hover {
    opacity: 0.6;
}

/* .to_menu_btn a:hover::before {
    top: 0;
    left: 0;
} */
.to_menu_btn a::before {
    position: absolute;
    top: -4px;
    left: -5px;
    width: 100%;
    height: 100%;
    content: '';
    border: 1px solid #000;
    transition: .1s ease-in all;
}

.to_menu_btn a::after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 14px;
    height: 25px;
    content: '▶';
    font-weight: bold;
    font-size: 14px;
}

/*day_night*/
/*charm*/
#charm {
    background-image: url(img/back_kira.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: inherit;
    position: relative;
    overflow: hidden;
}

/* #charm h2{
    color: #fefefe;
    padding: 20px 0;
} */
.neonText {
    color: #fff;
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #f00, 0 0 82px #f00, 0 0 92px #f00, 0 0 102px #f00, 0 0 151px #f00;
    margin-bottom: 30px;
}

a.move_btn {
    display: inline-block;
    background-color: #e5b781;
    font-size: 2rem;
    padding: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 20px 0;
}

a.move_btn span {
    font-size: 1.4rem;
    margin-left: 5px;
    vertical-align: middle;
}

.charm-wrap {
    position: relative;
    z-index: 10;
    margin: 220px 0 50px 0;
}

.charm-visual {
    filter: drop-shadow(0px 10px 10px rgba(56, 56, 56, 0.5));
    position: relative;
    z-index: 5;
    width: 90%;
    margin: auto;
}

.text-part3 {
    max-width: 640px;
}

.text-part1,
.text-part2 {
    max-width: 380px;
    font-size: 18px;
    text-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.text-part1,
.text-part2,
.text-part3 {
    position: absolute;
    z-index: 11;
    color: #fff;
}

.text-part1 {
    top: -220px;
    width: 80%;
    left: 3%;
}

p.text-part1 {
    top: -190px;
}

.text-part2 {
    top: -150px;
    right: 3%;
    width: 74%;
}

p.text-part2 {
    top: -150px;
    text-align: right;
}

.text-part3 {
    top: -100px;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
}

p.text-part3 {
    font-size: 22px;
    text-align: center;
    text-shadow: 0px 0px 10px rgb(255, 184, 103);
    font-weight: bold;
}

.sub-visuals {
    position: absolute;
    top: -10%;
    width: 50%;
}

.sub-visuals.subLeft {
    right: 55%;
}

.sub-visuals.subRight {
    left: 55%;
}

#charm .to_menu_btn {
    margin-top: 90px;
    max-width: 500px;
}

#charm .to_menu_btn a::before {
    border-color: #fff;
}

/*charm*/
/*guidance*/
#guidance .to_menu_btn {
    padding: 0;
}

#guidance .to_menu_btn a {
    margin-top: 0;
}

.location-visuals {
    position: relative;
    width: 100%;
}

.location-visuals img {
    position: absolute;
    width: 80%;
}

img.visuals01 {
    top: 110px;
    right: -10px;
    z-index: 2;
    width: 70%;
}

.visuals02 {
    left: -8px;
}

.location-inner {
    padding-top: 80%;
    position: relative;
}

.location-inner::after {
    display: block;
    position: absolute;
    content: url('img/sozai-1.png');
    /* top: 320px; */
    top: 70vw;
    scale: 1.4;
    z-index: -1;
}

.location-block1 p {
    font-size: 1.6rem;
    line-height: 2.2;
    margin-bottom: 10px;
    margin-top: 0;
}

.inside-image {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 20px;
}

.tabs {
    margin-top: 50px;
    background-color: #d9d9d9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 75%;
    margin: 0 auto;
}

.tab_item {
    width: calc(100% / 2);
    height: 50px;
    border-bottom: 3px solid #911d22;
    border-right: 3px solid #aaa;
    background-color: #d9d9d9;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    color: #565656;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
}

.tab_item:last-of-type {
    border-right: none;
}

.tab_item:hover {
    opacity: 0.75;
    cursor: pointer;
}

.tab_content {
    display: none;
    padding: 20px;
    clear: both;
    overflow: hidden;
    border: 3px solid #911d22;
    border-top: none;
}

.tabs input:checked+.tab_item {
    background-color: #911d22;
    color: #fff;
}

input[name='tab_item'] {
    display: none;
}

#all:checked~#all_content,
#programming:checked~#programming_content,
#design:checked~#design_content {
    display: block;
}

#guidance p.c-txtsp {
    line-height: 1.8;
    font-size: 1.4rem;
    margin: 0;
}

.c-txtsp img {
    display: block;
    width: 50%;
    height: 100%;
    margin: 0 auto 1rem auto;
}

img.shop_type {
    display: block;
    width: 30%;
    height: 100%;
    margin: 0 auto 1rem auto;
}

img.illustrations.large2 {
    display: block;
    margin: 1rem auto;
    width: 70rem;
    height: 35rem;
}

/* スクロールすると画像が表れる */
.effect_img1 {
    opacity: 0;
    transition: 3s;
}

.effect_img2 {
    opacity: 0;
    transition: 1s;
}

@media only screen and (max-width:480px) {
    .tabs {
        width: 100%;
    }

    .tab_item:hover {
        opacity: 1;
        cursor: pointer;
    }

    .c-txtsp img {
        width: 100%;
    }

    img.shop_type {
        width: 75%;
    }

    img.illustrations.large2 {
        width: 100%;
        height: 100%;
    }

    img.illustrations.large {
        width: 100%;
        height: 100%;
    }
}

/*guidance*/

/*main*/
main {
    overflow: hidden;
}

/*footer*/
#map {
    text-align: center;
}

footer {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.footer-info {
    background-color: #ffffff78;
}

footer img {
    width: 90%;
    margin: 0 auto 20px auto;
}

.footer-info img {
    max-width: 400px;
}

footer iframe {
    width: calc(100% - 20px);
    margin: auto;
}

.copyright {
    margin-bottom: 70px;
    font-size: 1.2rem;
    text-align: center;
    padding: 0.7rem 0;
    border-top: 1px solid #ccc;
    background-color: #ececec;
}

.basic_info {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 20px);
    margin: 0 auto 20px auto;
}

.basic_info dt {
    width: 20%;
}

.basic_info dd {
    width: 80%;
}

.basic_info dt,
.basic_info dd {
    padding: 5px;
    line-height: 1.6;
    border-bottom: 1px dotted #ccc;
}

.basic_info table {
    padding: 3px;
}

.basic_info table,
.basic_info tbody {
    width: 100%;
}

.basic_info tr {
    border-bottom: 1px solid #666;
}

.basic_info tr:last-child {
    border-bottom: none;
}

.basic_info th,
.basic_info td {
    border-right: 1px solid #666;
    vertical-align: middle;
    padding: 1px;
}

.basic_info th,
.basic_info td {
    border-right: 1px solid #666;
    vertical-align: middle;
    padding: 1px;
    text-align: center;
    font-size: 1.3rem;
    color: #414141;
}

.basic_info th:first-child {
    width: 30%;
}

.basic_info th:last-child,
.basic_info td:last-child {
    border-right: none;
}

.lower_fixed {
    position: fixed;
    z-index: 100;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-image: url(img/lower_fixed.jpg);
    background-size: cover;
    background-position: center;
    color: #fefefe;
    display: flex;
    justify-content: space-between;
    padding: 5px 55px 5px 10px;
    gap: 5px;
}

.lower_fixed p {
    font-size: 14px;
}

.lower_fixed::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    align-items: center;
}

.lower-btn {
    display: grid;
    place-items: center;
    flex: 1;
    border: solid 1px #fff;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* ダイアログ */
.s-dialog {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}

/* 画像無限スクロール */
@keyframes infinity_move {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

.scroll-infinity {
    overflow: hidden;
    position: relative;
    top: -40px;
    margin-bottom: -100px;
}

.scroll-wrapper {
    display: flex;
    width: 200%;
}

.scroll-list {
    display: flex;
    flex-basis: 50%;
}

.scroll_left {
    animation: infinity_move 35s infinite linear 0.5s both;
}

.scroll_item {
    width: calc(100vw / 3);
}

.scroll_item>img {
    width: 100%;
}

.scroll-wrapper:hover .scroll_left {
    animation-play-state: paused;
}

/* SNSバナー */
.sns-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.sns-block a {
    width: 50%;
    max-width: 270px;
}

.sns-block img {
    width: 100%;
}

/* フェードインコンテンツ */
.fadeIn1,
.fadeIn2 {
    overflow: hidden;
    transition: opacity 1s, transform 1s;
    opacity: 0;
}

.fadeIn1 {
    transform: translateX(600px);
}

.fadeIn2 {
    transform: translateX(-200px);
}

.fadeIn-afterR,
.fadeIn-afterL {
    opacity: 1;
    transform: translateX(0);
}

#popUp {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    height: 100%;
    height: 100%;
    background: rgba(50, 50, 50, .85);
    cursor: pointer;
}

.popup-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    padding: 20px;
    background: #fff;
    width: 90%;
}

#popup-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(50, 50, 50, 1);
    cursor: pointer;
    transition: opacity .6s;
    z-index: 500;
}

#popup-close::after,
#popup-close::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    content: '';
}

#popup-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#popup-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.day-title {
    font-weight: bold;
    text-align: center;
    font-size: 1.7rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.fadeUp1,
.fadeUp2 {
    opacity: 0;
    transition: all 1s;
}

.fadeUp1.active1 {
    animation: fadeupMotion1 1s forwards;
}

@keyframes fadeupMotion1 {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(20deg);
    }
}

.fadeUp2.active2 {
    animation: fadeupMotion2 1.2s forwards;
    animation-delay: 0.7s;
}

@keyframes fadeupMotion2 {
    0% {
        opacity: 0;
        transform: translateY(100px)
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* イベントテーブル */
.schedule p {
    text-align: center;
}

.schedule table {
    table-layout: fixed;
    margin: 30px auto 0 auto;
    max-width: 980px;
    width: 100%;
    background-image: url('img/white-background-image.jpg');
    background-position: center;
    background-size: cover;
}

.schedule table th {
    background-color: #fff;
    position: relative;
    padding: 10px 8px 5px 8px;
    vertical-align: bottom;
    border-right: solid 1px #ddd;
}

.schedule table th:last-child {
    border-right: none;
}

.schedule table th::after {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    border-radius: 50%;
    transform: translateX(-50%);
    font-size: 1.15rem;
    font-weight: bold;
    padding: 6px 8px 4px 8px;
}

.schedule table th:nth-child(1)::after {
    content: '月';
    background-color: #e9ffe7;
}

.schedule table th:nth-child(2)::after {
    content: '火';
    background-color: #ffd5d5;
}

.schedule table th:nth-child(3)::after {
    content: '水';
    background-color: #d5fdff;
}

.schedule table th:nth-child(4)::after {
    content: '木';
    background-color: #e1d5ff;
}

.schedule table th:nth-child(5)::after {
    content: '金';
    background-color: #fffad5;
}

.schedule table th:nth-child(6)::after {
    content: '土';
    background-color: #ffefdf;
}

.schedule table th:nth-child(7)::after {
    content: '日';
    background-color: #ffd5f2;
}

.schedule table th::before {
    position: absolute;
    content: '';
    border-style: solid;
    border-top: 6px solid #e9ffe7;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 0;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.schedule table th:nth-child(1)::before {
    border-top: 6px solid #e9ffe7;
}

.schedule table th:nth-child(2)::before {
    border-top: 6px solid #ffd5d5;
}

.schedule table th:nth-child(3)::before {
    border-top: 6px solid #d5fdff;
}

.schedule table th:nth-child(4)::before {
    border-top: 6px solid #e1d5ff;
}

.schedule table th:nth-child(5)::before {
    border-top: 6px solid #fffad5;
}

.schedule table th:nth-child(6)::before {
    border-top: 6px solid #ffefdf;
}

.schedule table th:nth-child(7)::before {
    border-top: 6px solid #ffd5f2;
}

.schedule table td {
    vertical-align: middle;
    text-align: center;
    padding: 8px 0;
}

.schedule table td img {
    width: 30px;
    margin: 0 auto 5px auto;
    height: 30px;
}

.schedule table td button {
    background-color: #696969;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    width: 90%;
    padding: 5px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    word-wrap: normal;
    height: 60px;
    font-size: 1.2rem;
    position: relative;
}

.btn-img {
    position: absolute;
    left: calc(28% - 30px);
    width: 30px;
    top: 50%;
    transform: translateY(-50%);
}


/* 装飾 */
.top-caption {
    position: absolute;
    top: 20%;
    left: 2%;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 2px 2px 10px #424242,
        -2px 2px 10px #424242,
        2px -2px 10px #424242,
        -2px -2px 10px #424242;
    line-height: 2;
}

.shape {
    position: absolute;
}

.shape-top {
    right: -20%;
    width: 400px;
    top: -20px;
}

.shape-slider {
    top: 74vw;
    left: -20%;
    transform: rotate(173deg);
    width: 200px;
}

/* 装飾ここまで */

/* 文字浮かび上がる */
.textMotion span {
    opacity: 0;
}

.textMotion.appeartext span {
    animation: textAnimation 1s ease-in-out forwards;
}

@keyframes textAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




/* メニューページ */
.catch {
    display: flex;
    align-items: center;
    /* 垂直中心 */
    justify-content: center;
    /* 水平中心 */
}

.catch:before,
.catch:after {
    border-top: 1px solid;
    content: "";
    width: 3em;
    /* 線の長さ */
}

.catch:before {
    margin-right: 7px;
    /* 文字の右隣 */
}

.catch:after {
    margin-left: 7px;
    /* 文字の左隣 */
}

ul.menu_list {
    padding: 10px;
    width: 95%;
    margin: 0 auto 10px auto;
    background-color: rgba(255, 255, 255, 0.3);
    max-width: 740px;
}

ul.menu_list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 1.6rem;
    border-bottom: 1px dotted #ccc;
    flex-wrap: wrap;
    line-height: 1.4;
    align-items: end;
}

ul.menu_list li:last-child {
    margin-bottom: 0;
    border: none;
}

ul.menu_list li.type {
    font-weight: 600;
    border-bottom: none;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 0;
}

ul.menu_list li.type span {
    font-size: 1.2rem;
    margin: 0 auto 0 5px;
}

ul.menu_list li p:nth-child(2n+1) {
    width: 80%;
    line-height: 1.2;
}

ul.menu_list li p:nth-child(2n) {
    width: 20%;
    text-align: right;
}

ul.menu_list li span {
    display: block;
    font-size: 1.1rem;
    margin-top: 2px;
}

ul.menu_list.all li p {
    width: 100%;
}

ul.menu_list.all li span {
    display: inline-block;
    margin-top: 0;
    margin-left: 6px;
}

ul.menu_list li p.exp {
    width: 100%;
    font-size: 1.3rem;
    padding: 0.5rem;
    border: 0.5px dotted var(--base-color);
    margin-top: 0.5rem;
    text-align: left;
}

/* メニューページ */



/* PCサイズここから */
@media screen and (min-width: 767px) {
    section h2 {
        font-size: 3rem;
    }

    /* ヘッダー */
    .main_slider {
        background-size: 100%;
        background-position: bottom 50% left 100px;
    }

    .top-caption {
        font-size: 4rem;
        top: 24%;
        left: 8%;
    }

    .pc-header {
        display: block;
        margin-right: 20px;
        position: relative;
        z-index: 5;
    }

    header h1 {
        padding-right: 20px;
        font-size: 1.3rem;
    }

    .pc-menu li .page {
        border-bottom: 2px dotted var(--accent-color);
    }

    .circle-bottom {
        width: 260px;
        height: 260px;
        top: -120px;
        left: -120px;
    }

    .circle-bottom a {
        width: 140px;
        height: 140px;
    }

    .pc-menu {
        display: flex;
        width: 100%;
    }

    .pc-menu li {
        margin-right: 30px;
        font-size: 2.2rem;
    }

    .box-tel dl {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .tel-number {
        font-family: "Archivo Black", sans-serif;
        font-weight: bold;
        display: inline;
        font-size: 2.6rem;
        color: var(--base-color);
        margin-right: 20px;
    }

    .box-tel dt span {
        padding-right: 20px;
        font-size: 1.5rem;
        font-weight: bold;
    }

    #fixed_header {
        position: fixed;
        top: 0px;
        right: 0;
        opacity: 0;
        background: url(/img/pc-background.jpg);
        width: 100%;
        background-size: cover;
        height: 80px;
        z-index: 100;
        margin: 0;
        padding-right: 0;
        transition: .3s all ease;
        visibility: hidden;
    }

    #fixed_header .tel-number {
        color: var(--accent-color);
        font-size: 2.7rem;
    }

    #fixed_header .box-tel dl,
    #fixed_header .pc-menu {
        justify-content: right;
        color: #fff;
    }

    #fixed_header .box-tel {
        margin-right: 20%;
    }

    #fixed_header .pc-menu {
        padding-right: 20%;
    }

    #fixed_header .box-tel {
        margin-top: 5px;
    }

    #fixed_header .sns {
        position: absolute;
        right: 0;
        display: flex;
        flex-wrap: wrap;
        top: 50%;
        transform: translateY(-50%);
        margin-right: 5%;
        margin-left: 20px;
    }

    #fixed_header .sns a {
        display: block;
        width: 38px;
        margin-left: 24px;
        transition: var(--hover-move);
    }

    #fixed_header .sns a:hover {
        opacity: 0.54;
    }

    #fixed_header .pc-menu li {
        margin-right: 40px;
    }

    #fixed_header.active {
        opacity: 1;
        visibility: visible;
    }

    #fixed_header.passive {
        opacity: 0;
        visibility: hidden;
    }

    /* ヘッダー */

    #day_night {
        background-size: 80%;
        background-position: 5% 110%, 180% 5%;
    }

    .day_or_night {
        text-align: center;
    }

    .caption.right {
        padding: 8px 200px 8px 50px;
    }

    .caption.left {
        padding: 8px 50px 8px 200px;
    }

    .notice h2 {
        font-size: 2.4rem;
    }

    .parallax {
        height: 580px;
    }

    #about {
        margin: 40px auto;
        padding: 5vh 5%;
        max-width: 1000px;
    }

    #about h2 {
        text-align: center;
    }

    .modal__trigger {
        font-size: 1.5rem;
    }

    .lower_fixed {
        display: none;
    }

    .main_slider .slick-slide {
        height: 800px;
    }

    .caption {
        font-size: 3.8rem;
    }

    /* ランチディナー */
    .lunch,
    .dinner {
        width: 70%;
    }

    .lunch .don_t,
    .dinner .don_t {
        font-size: 3.5rem;
    }

    /* 当店の魅力 */
    .neonText {
        font-size: 3.5rem;
        margin-bottom: 90px;
        margin-top: 10px;
    }

    .charm-visual {
        width: 74%;
        max-width: 840px;
        margin-left: auto;
        margin-right: auto;
        top: -45px;
    }

    .text-part1,
    .text-part2 {
        font-size: 26px;
    }

    .text-part1 {
        width: 40%;
        top: -210px;
        left: 8%;
    }

    p.text-part1 {
        left: 32%;
        width: 100%;
    }

    p.text-part2 {
        right: 32%;
        width: 100%;
    }

    .text-part2 {
        width: 38%;
        top: -180px;
        right: 8%;
    }

    .text-part3 {
        width: 50%;
        transform: translateX(-50%);
        left: 50%;
    }

    p.text-part3 {
        font-size: 30px;
    }

    .sub-visuals {
        width: 45%;
        max-width: 670px;
        top: -15%;
    }

    .sub-visuals.subLeft {
        right: 55%;
    }

    .sub-visuals.subRight {
        left: 55%;
    }

    .charm-text {
        top: -150px;
        text-align: center;
    }

    .charm-text i {
        font-size: 1.7rem;
    }

    .charm-text br.pc,
    main br.pc {
        display: none;
    }

    /* 無限スクロール */
    .scroll-infinity {
        top: -130px;
        margin-bottom: -180px;
    }

    .scroll_item {
        width: calc(100vw / 5);
    }

    /* 店内のご案内 */
    .location-inner {
        padding-top: 65%;
    }

    .location-inner::after {
        top: 0;
    }

    /* フッター */
    .copyright {
        margin-bottom: 0;
    }

    .popup-inner {
        max-width: 440px;
    }

    /* イベント */
    .schedule table th {
        font-size: 1.7rem;
        padding: 14px 8px 10px 8px;
    }

    .schedule table td button {
        font-size: 1.4rem;
    }

    .schedule table img {
        width: 40px;
        height: 40px;
    }

}

@media screen and (min-width: 960px) {

    .location-block1,
    .location-block2 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .location-block1 {
        padding: 100px 0 130px 0;
    }

    .location-inner {
        width: 45%;
        padding-top: 0;
    }

    .inside-image {
        width: 40%;
    }

    .tabs {
        width: 50%;
        height: fit-content;
    }

    img.shop_type {
        width: 50%;
    }

    .location-visuals {
        width: 55%;
    }

    img.visuals02 {
        top: -190px;
        width: 55%;
    }

    img.visuals01 {
        top: -80px;
        width: 48%;
        right: 20%;
    }

    .location-block1 p {
        padding: 0;
        padding-left: 30px;
    }

    /* フッター */
    .footer-info {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 50px 0;
    }

    .info1 {
        width: 50%;
    }

    .sns-block a {
        width: 45%;
    }

    .basic_info {
        width: 45%;
        margin: 20px 0;
    }

    .parallax {
        background-attachment: fixed;
    }

    /* 装飾 */
    .shape-top {
        right: -8%;
    }

    .shape-slider {
        top: 76%;
        left: -10%;
        transform: rotate(173deg);
        width: 500px;
    }

    header br.pc {
        display: none;
    }
}

@media screen and (min-width: 1580px) {
    #charm .to_menu_btn {
        margin-bottom: 20px;
        margin-top: 130px;
    }

    .text-part1,
    .text-part2 {
        max-width: 430px;
    }

    .text-part1 {
        left: 25%;
    }

    .text-part2 {
        right: 25%;
    }

    .day_or_night img {
        width: 900px;
    }

    .location-inner::after {
        scale: 1.8;
    }
}

/* PCサイズここまで */


/* ローディング中スクロール禁止 */
.no-scroll {
    overflow: hidden;
}