@charset "utf-8";

@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/NotoSansCJKjp-Regular.woff') format('woff'),
        url('fonts/notosanscjkjp_regular.eot') format('eot');
    font-display: swap
}

@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/NotoSansCJKjp-Bold.woff') format('woff'),
        url('fonts/notosanscjkjp_bold.eot') format('eot');
    font-display: swap
}

@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 900;
    src: url('fonts/NotoSansCJKjp-Black.woff') format('woff'),
        url('fonts/notosanscjkjp_black.eot') format('eot');
    font-display: swap
}

@font-face {
    font-family: 'NHaasGrotesk';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/NHaasGroteskTXPro-55Rg.woff') format('woff'),
        url('fonts/NHaasGroteskTXPro-55Rg.eot') format('eot');
    font-display: swap
}

@font-face {
    font-family: 'NHaasGrotesk';
    font-style: italic;
    font-weight: 500;
    src: url('fonts/NHaasGroteskTXPro-56It.woff') format('woff'),
        url('fonts/NHaasGroteskTXPro-56It.eot') format('eot');
    font-display: swap
}

@font-face {
    font-family: 'NHaasGrotesk';
    font-style: normal;
    font-weight: 900;
    src: url('fonts/NHaasGroteskTXPro-75Bd.woff') format('woff'),
        url('fonts/NHaasGroteskTXPro-75Bd.eot') format('eot');
    font-display: swap
}

@font-face {
    font-family: 'billabongregular';
    font-weight: normal;
    font-style: normal;
    src: url('fonts/fontsfree-net-billabong-webfont.woff') format('woff'),
         url('fonts/fontsfree-net-billabong-webfont.eot') format('eot');
    font-display: swap
}


/* --------------------------------- */
html,
body {
    font-family: 'NotoSansCJKjp', "Noto Sans Japanese", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
    scroll-behavior: smooth;
}

body {
    font-size: 62.5%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: justify;
    position: relative;
    color: #4D4D4D;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* 一番手前に */
    pointer-events: none;
    /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
    opacity: 0;
    /* 初期値 : 透過状態 */
    -webkit-transition: opacity .8s ease;
    /* アニメーション時間は 0.8秒 */
    transition: opacity .8s ease;
}

body.fadeAnim::after {
    opacity: 1;
}

body a {
    color: #333;
    text-decoration: none;
    transition: all .3s;
}

body a:hover {
    transition: all .3s;
    opacity: 0.5
}

body img {
    width: 100%
}

:root {
    --vady-color: #b40000;
    --centurion-color: goldenrod;
    --plus-color: #008cd6;
    --abo-color: #249732;
    --swiper-theme-color: goldenrod !important;
}

.red {
  color: var(--vady-color);
}
.gold {
  color: var(--centurion-color);
}
.blue {
  color: var(--plus-color);
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

h1,
h2 {
    font-family: 'NHaasGrotesk';
    font-weight: bold;
    font-size: 5rem
}

h2:first-letter {
    color: var(--centurion-color)
}

h3 {
    font-family: 'NHaasGrotesk', 'NotoSansCJKjp', "Noto Sans Japanese", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
    font-style: italic;
    font-size: 1.6rem
}

p {
    font-size: 1.2rem
}

.mark1 {
    background: linear-gradient(transparent 60%, #ff6 60%);
}

/* --------------------------------- */

#wrap {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-height: 100vh;
}

#particle {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: fixed;
    z-index: 2;
    opacity: .2
}

/* --------------------------------- */

.cursor,
.follower {
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    cursor: none;
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: #1a1a1a;
    z-index: 1002;
}

.follower {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: transform ease .1s;
    text-align: center;
    z-index: 1001;
    background-color: rgba(240, 36, 0, 0.795);
}

.follower.is-active {
    transform: scale(2.4);
}

.kobe .follower,
.tamatsukuri .follower {
    background-color: rgba(0, 195, 255, 0.61);
}

.shinsaibashi .follower {
    background-color: rgba(240, 36, 0, 0.795);
}

.dojima .follower,
.uehonmachi .follower {
    background-color: rgba(255, 204, 0, 0.5);
}


/* toppage container top
------------------------------------ */

#hero {
    z-index: 1;
    position: relative
}

#hero h2 {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    text-align: center;
    width: 96%;
    line-height: 1.5;
    z-index: 2;
}

#hero h2 + p {
    font-family: 'NotoSansCJKjp', "Noto Sans Japanese", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
    font-weight: normal;
    color: white;
    font-size: 1.5rem !important;
    position: absolute;
    bottom: 17%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    z-index: 2;
}


/* fade animation
------------------------------------ */

#loader-bg {
    background-color: black;
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1001;
}

#loader-bg .ball-scale-ripple-multiple {
    left: 50%;
    position: fixed;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1001;
}

/* text link
----------------- */
.txtlink {
    border-bottom: 1px solid var(--vady-color);
    color: var(--vady-color);
}

/* container top
------------------------------------ */

.ttlArea {
    display: flex;
    align-items: flex-end;
    margin-bottom: 4rem;
    /*    border-bottom: 1px solid white;
    padding-bottom: 1rem;*/
}

.top-image {
    padding-top: 100px;
    padding: 6rem;
    color: white;
    height: 100vh;
}

.top-image small {
    font-weight: bold;
    font-size: 2rem;
    margin-left: 2rem;
}

.top-flexbox {
    display: flex;
}

.top-txtbox {
    width: 50%;
    padding: 1rem;
    background: rgba(0,0,0,.3);
}

.inner-text {
    margin-top: 2rem;
    line-height: 2;
    text-align: left;
    text-align: justify;
}

.top-imgbox {
    width: 50%;
    padding: 0 3%;
}

.fadein,
.fadein2,
.fadein3 {
    opacity: 0;
    visibility: hidden;
    transition: 1.5s;
}

.fadein {
    transform: translateY(30px);
}

.fadein2 {
    transform: translateY(70px);
}

.fadein3 {
    transform: translateY(100px);
}

.fade-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.zoom-img {
    max-width: 350px;
    max-height: 185px;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
}

.zoom-img img {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: .3s ease-in-out;
}

.zoom-img:hover img {
    transform: scale(1.3);
}


/* scrolldown btn
------------------------------------ */

.scrolldown,
.scrolldownBlk {
    position: absolute;
    left: 50%;
    bottom: 3%;
    height: 50px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.scrolldown span,
.scrolldownBlk span {
    position: absolute;
    left: -15px;
    top: -15px;
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.scrolldown::after,
.scrolldownBlk::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 30px;
    background: #eee;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

.scrolldownBlk span {
    color: black;
}

.scrolldownBlk::after {
    background: black;
}
.scrolldownBlk {
  bottom: -63px;
}

@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    30% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

/* スクロールバーデザイン
------------------------------ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(190, 190, 190, 1);
    border-radius: 10px;
    box-sizing: border-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(125, 125, 125, 1);
}

::-webkit-scrollbar-corner {
    background: rgba(250, 250, 250, 1);
}

/* Nav
------------------------------------ */

#menu {
    background-color: white;
    width: 240px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    z-index: 1
}

#menu_contents {
    position: relative;
    z-index: 3
}

#menu_logo {
    display: block;
    width: 165px;
    height: auto;
    top: 40px;
    left: 37px
}

#menu_list {
    width: 180px;
    height: auto;
    top: 180px;
    left: 37px
}

#shop-menu {
    width: 165px;
    height: auto;
    top: 550px;
    left: 37px
}

.menu_parts {
    position: absolute
}

.menu_item {
    font-size: 1rem;
    font-weight: bold;
    font-style: italic;
    display: table;
    width: auto;
    line-height: 22px;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 20px 22px
}

.menu_item a {
    display: table;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
    background-image: linear-gradient(90deg, black, black);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    transition: background-size 0.6s;
}

.menu_item a:hover {
    background-size: 100% 1px;
}

#re-dojima .menu_item a {
    background-image: linear-gradient(90deg, white, #ad9159);
}

.menu_line {
    background-color: #FFE900;
    width: 0;
    height: 1px;
    margin: -2px 0 20px 0
}

#submenu01 {
    width: 180px;
    height: 0;
    background-color: #252525;
    position: fixed;
    top: 0;
    left: 240px !important
}

#responsive {
    display: none
}

.bg-top {
    position: fixed;
    top: 0;
    width: 100%;
    height: 124px;
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 10
}

.bg-top-w {
    position: fixed;
    top: 0;
    width: 100%;
    height: 124px;
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 10
}

.add-menu {
    margin-top: 8%;
}


/* COVID Banner, FC Banner
---------------------------- */

.covid-bnr-sp {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 1000;
    display: block;
    transition: .5s;

}
.fc-bnr {
    position: fixed;
    bottom: 80px;
    left: 0;
    z-index: 1000;
    width: 240px;
    text-align: center;
    font-weight: bold;
}
.fc-bnr a,
.recruit-bnr a {
    padding: 10% 0;
    display: block;
}
.recruit-bnr {
    position: fixed;
    bottom: 160px;
    left: 0;
    z-index: 1000;
    width: 240px;
    text-align: center;
    font-weight: bold;
}
.covid-bnr {
    position: fixed;
    bottom: 0;
    left: 0;
    background: url(../img/bg_covid.webp), var(--centurion-color);
    background-blend-mode: multiply;
    background-position: bottom -9px center;
    z-index: 1000;
    display: block;
    width: 240px;
    padding: 1rem;
    border: 2px solid white
}

.covid-bnr p {
    color: white;
    font-weight: bold;
    font-size: .9rem !important;
    font-style: italic;
    font-family: 'NotoSansCJKjp';
}

#modal-covid {
    z-index: 1001
}

#modal-covid .modal__header {
    justify-content: space-evenly;
}

#modal-covid header {
    text-align: center !important;
    margin: 1rem 0 0 3rem;
}

#modal-covid p {
    font-size: 1rem;
    margin: auto;
    width: 80%;
}

#modal-covid #modal-content {
    margin: 2rem 3rem;
    line-height: 2;
    color: white;
}

#modal-covid #modal-content .attempt {
    font-size: 1.2rem !important;
    font-weight: bold;
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

#modal-covid #modal-content .attempt::before {
    position: absolute;
    bottom: -13px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: white;
}

#modal-content .image-list {
    margin: 2rem auto;
    width: 85%;
}

#modal-content .image-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

#modal-content .image-list ul li {
    width: 30%;
    margin-bottom: 1rem
}

#modal-content .image-list ul li img {
    width: 80%;
}

#modal-content .image-list ul li figure {
    text-align: center;
}

#modal-content .image-list ul li figcaption {
    font-size: .8rem
}

#modal-content .notice-list {
    width: 80%;
    margin: 0 auto;
    font-size: .9rem;
}

#modal-content .notice-list h4 {
    color: var(--centurion-color);
    margin-bottom: 1rem;
}

#modal-content .notice-list li::before {
    content: "\002713";
    padding-right: 0.3rem;
    font-size: 1.2rem;
    color: var(--centurion-color);
}

.notice-list span {
    color: var(--vady-color);
}

@media screen and (min-width: 1024px) {
    .sp-block {
        display: none;
    }

    .pc-none {
        display: block;
    }

}

@media screen and (max-width: 767px) {
    .sp-block {
        display: block;
    }

    .pc-none {
        display: none;
    }
}

.hide {
    opacity: 0
}

/* Container
------------------------------------ */

#container {
    flex: 1;
    width: 100%;
    padding-left: 240px;
    position: relative;
}

#nav-shops {
    width: 100%;
    height: 100%;
    margin-left: 240px;
    background: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    z-index: 3;
    animation: hide .5s linear 0s;
    display: none;
}

#nav-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.shop-area {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 1130px;
    margin-left: 10%
}

.shop-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 3% 0
}

.shop-container li {
    text-align: center;
    width: 30%;
    margin-bottom: 2%;
    padding: 1rem;
}

.shop-container li img {
    max-width: 250px
}

.shop-container li figcaption {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: bold;
}

.mainTtl {
    position: relative;
    padding: 1rem 2rem 1rem 0;
    border-bottom: 6px solid #cf121b;
}

#re-dojima .mainTtl {
    border-bottom: 6px solid #ad9159;
}

.mainTtl::before {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 20%;
    height: 6px;
    content: '';
    background: var(--vady-color);
}

#re-dojima .mainTtl::before {
    background: var(--centurion-color);
}

.openShops {
    visibility: visible;
    animation: show .5s linear 0s
}

.btn-close-area {
    position: absolute;
    top: 5%;
    right: -5%;
}

.btn-close {
    display: block;
    position: relative;
    width: 70px;
    height: 70px;
    border: solid 1px black;
    border-radius: 50%;
    transition: all .6s;
}

.btn-close::before,
.btn-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    /* 太さ */
    height: 40px;
    /* 高さ */
    background: #333;
}

#re-dojima .btn-close::before,
#re-dojima .btn-close::after {
    background: white;
}

.btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-close:hover {
    transform: perspective(500px) translateZ(100px);
}

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

footer {
    background: lightgray;
    width: 100%;
    padding: 30px 0;
    margin-top: auto;
}
.copyright {
    padding: 5% 0;
    color: black;
}*/

/* Shop News Area
------------------------------------ */

.news-outer {
    margin: 3rem auto;
    text-align: left;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 32vh;
    padding-right: 0.5rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.news-list a {
    color: white;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid white;
}

.news-inner {
    font-size: 1rem;
    display: flex;
    padding: 2rem 0 2rem 1rem;
    width: 100%;
}

#news-shinsaibashi .news-list a {
    border-bottom: 1px dotted gray;
}

.news-inner .date {
    color: goldenrod;
    font-weight: bold;
    width: 25%;
}

.news-inner .article-ttl {
    width: fit-content;
}

.news-list a::after {
    content: "\0bb";
    font-size: 2rem
}

#news .article-empty {
    color: white;
    font-size: 2rem;
    list-style: none;
}

#news .article-empty::first-letter {
    color: white
}

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

    h1,
    h2 {
        font-size: 3rem;
    }

    .ttlArea {
        flex-direction: column;
        align-items: flex-start;
    }

    .ttlArea small {
        margin-left: 0;
        font-size: 1.5rem;
    }

    body.fadeAnim .fade_group div,
    body.fadeAnim .fade_group2 div {
        background-color: white;
        z-index: 0;
    }

    .fadein,
    .fadein2,
    .fadein3 {
        transform: translateY(50px);
    }


    /* Container
    ------------------------------------ */

    #container {
        padding: 0
    }

    #hero {
        height: 100vh;
        background-size: cover
    }

    #hero h2 {
        bottom: 10%;
        font-size: 1rem;
        width: 96%;
        line-height: 1.5;
    }

    #hero h2 + p {
        color: white;
        font-size: 1rem !important;
        position: absolute;
        bottom: 7%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
    }

    .top-image {
        padding: 100px 1rem 1rem;
        height: auto;
    }

    .ttlArea {
        flex-wrap: wrap;
        margin-bottom: 3rem;
        padding-top: 4rem;
    }

    .top-flexbox {
        flex-direction: column-reverse;
    }

    .top-imgbox {
        display: none;
        width: 100%;
    }

    .top-txtbox {
        width: 100%;
    }

    .top-txtbox h3 {
        line-height: 1.5;
    }

    .inner-text {
        font-size: .8rem!important;
        margin-top: 2rem;
        line-height: 1.6;

    }

    /* Nav
    ------------------------------------ */

    #responsive {
        display: block;
    }

    .scroll-fade {
        opacity: 0;
        transform: translate(0, 50px);
        transition: all 500ms
    }

    .scroll-fade.scrollin {
        opacity: 1;
        transform: translate(0, 0)
    }

    #menu_contents {
        display: none
    }

    #menu_logo {
        display: none
    }

    .responsive-logo {
        position: fixed;
        left: 2rem;
        top: 1.6rem;
        width: 4rem;
        transition: all 500ms
    }

    /*
    .responsive-logo.logoScroll.-before {
        opacity: 0;
    }

    .responsive-logo.-after {
        opacity: 0;
    }

    .responsive-logo.logoScroll.-after {
        opacity: 1;
    }
*/
    .add-menu {
        padding: 0 26%;
        margin-top: 20px;
    }
    
    #nav-toggle {
        position: fixed;
        top: 2rem;
        right: 2rem;
        height: 3.2rem;
        cursor: pointer;
    }

    #nav-toggle:hover {
        opacity: 1.0 !important
    }

    #nav-toggle > div {
        position: relative;
        width: 36px
    }

    #nav-toggle span {
        width: 100%;
        height: 1px;
        left: 0;
        display: block;
        background: white;
        position: absolute;
        transition: transform .6s ease-in-out, top .5s ease
    }

    #nav-toggle.blk span {
        background: black;
    }

    .change-color {
        background-color: white !important;
    }

    #nav-toggle span:nth-child(1) {
        top: 0
    }

    #nav-toggle span:nth-child(2) {
        top: 14px
    }

    #nav-toggle span:nth-child(3) {
        top: 28px
    }

    .open #nav-toggle span {
        background: white
    }

    .open #nav-toggle span:nth-child(1) {
        top: 15px;
        transform: rotate(45deg)
    }

    .open #nav-toggle span:nth-child(2) {
        top: 15px;
        width: 0;
        left: 50%
    }

    .open #nav-toggle span:nth-child(3) {
        top: 15px;
        transform: rotate(-45deg)
    }

    #nav-toggle {
        z-index: 1000
    }

    #global-nav {
        padding: 25% 0 10%;
        background: rgba(0, 0, 0, .9);
        color: var(--vady-color);
        font-size: 1rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 990;
        text-align: center;
        display: flex;
        visibility: hidden;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        /*justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;*/
        /*align-items: center;*/
        opacity: 0;
        transition: opacity .6s ease, visibility .6s ease;
        overflow: hidden
    }

    #global-nav a {
        transition: color .6s ease
    }

    #global-nav a:hover {
        color: #ddd
    }

    #global-nav ul li {
        opacity: 0;
        transform: translateX(200px);
        transition: transform .6s ease, opacity .2s ease
    }

    #global-nav ul li:nth-child(2) {
        transition-delay: .15s
    }

    #global-nav ul li:nth-child(3) {
        transition-delay: .3s
    }

    #global-nav ul li:nth-child(4) {
        transition-delay: .45s
    }

    #global-nav ul li:nth-child(5) {
        transition-delay: .6s
    }

    #global-nav ul li:nth-child(6) {
        transition-delay: .75s
    }

    #global-nav ul li:nth-child(7) {
        transition-delay: .9s
    }

    #global-nav ul li:nth-child(8) {
        transition-delay: 1.05s
    }

    #global-nav ul li:nth-child(9)::after {
        font-family: "Font Awesome 5 Free";
        content: "\f35d";
        font-weight: 900;
        padding-left: 1rem;
        color: white;
    }
    
    .responsive-nav-item {
        margin-bottom: 2.5rem
    }

    .responsive-nav-item a {
        color: white
    }

    .responsive-nav-item .navlist-item-main {
        font-weight: bold
    }

    .responsive-logo {
        z-index: 999
    }

    .open {
        overflow: hidden
    }

    .open #global-nav {
        visibility: visible;
        opacity: 1;
        overflow-y: scroll;
    }

    .open #global-nav li {
        opacity: 1;
        transform: translateX(0);
        transition: transform 1s ease, opacity .9s ease
    }

    .scroll-prevent {
        position: fixed;
        z-index: -1;
        width: 100%;
        height: 100%
    }

    .open #global-nav {
        visibility: visible;
        opacity: 1
    }

    #nav-shops {
        display: none
    }

    small.copyright {
        padding-top: 1rem;
    }

    /* shoplist-sp
    ------------------------------------ */

    .switch-accordion {
        position: relative;
        display: block;
    }

    .accordion-inner {
        background: rgba(255, 255, 255, .9);
        margin-top: 2rem;
        padding: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        width: 100%;
        overflow-y: scroll;
    }

    .accordion-inner li {
        width: 25%;
        margin: 0 1% 3%;
    }

    .accordion-inner li a {
        color: black;
    }

    .accordion-inner li figcaption {
        margin-top: 8%;
    }

    .switch-accordion::before {
        content: "";
        position: absolute;
        top: 8px;
        right: 30%;
        width: 15px;
        height: 1px;
        transform: rotate(90deg);
        background: #fff;
        transition: all .6s ease-in-out;
    }

    .switch-accordion::after {
        content: "";
        position: absolute;
        top: 8px;
        right: 30%;
        width: 15px;
        height: 1px;
        background: #fff;
        transition: all .5s ease-in-out;
    }

    .switch-accordion.open::before {
        transform: rotate(180deg);
    }

    .switch-accordion.open::after {
        opacity: 0;
    }

    .accordion-container {
        display: none;
    }

    /* COVID modal
    ------------------------------ */
    #modal-covid .modal__container {
        padding: 70px 16px
    }

    #modal-covid .modal__header {
        margin: 0;
        align-items: center;
    }

    #modal-covid .modal__header h3 {
        width: 100%;
        font-size: 1.7em;
        text-align: left;
    }

    .modal-ttl-area {
        padding-right: 28px;
    }

    #modal-covid p {
        width: 100%;
    }

    #modal-covid #modal-content {
        margin: 2rem 0rem;
        line-height: 1.6;
    }

    #modal-content .image-list {
        width: 100%;
    }

    #modal-content .image-list ul li {
        width: 33%;
    }

    #modal-content .image-list ul li img {
        width: 98%;
    }

    #modal-content .image-list ul li figcaption {
        font-size: 0.7rem;
        padding: 0 1px;
    }

    #modal-content .notice-list {
        width: 100%;
        font-size: 0.8rem;
    }


    /* Shop News Area
    ------------------------------ */

    .news-inner {
        flex-direction: column;
        padding: 1rem 0 1rem 1rem;
        font-size: 0.8rem;
    }

    .news-inner .date {
        height: 1.5rem;
    }
}

@media screen and (max-width: 1366px) {
    h3 {
        font-size: 1.4rem
    }

    p {
        font-size: 1rem !important
    }

    .shop-area {
        max-width: 800px
    }
    #menu_logo {
        width: 135px;
        top: 30px;
    }
    #menu_list {
        width: 180px;
        top: 140px;
    }
    .menu_item {
        font-size: 0.9rem;
        line-height: 16px;
    }
    
}

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

    .cursor,
    .follower {
        display: none;
    }

    .shop-area {
        margin-left: 3%;
        max-width: 660px
    }
}



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

        .inner-text {
        font-size: .8rem!important;
        margin-top: 3%;
        line-height: 1.5;

    }

}