.button {
    display: none;
}

.flex_two {
    display: block;
}

.shop_block {
    display: block;
}

.midashi::before {
    /*-見出しの装飾-*/
    width: 100%;
}

#header_pc{
    display: none;
}

#header_sp{
    display: block;
    text-align: center;
    overflow:hidden;
}



/* ------------- ナビゲーション -------------- */
nav {
    display: none;
}

.hamburger-menu {
    visibility: visible;
}


.menu-btn {
    position: fixed;
    bottom: 100px;
    right: 15px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 102;
    background-color: #0707087d;
    border: 1px solid #fff;
    border-radius: 30px;
}

/* 三本線 */
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
    transition: .3s;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

/* 展開時の三本線 */
#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    transition: .3s;
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    transition: .3s;
}

/* 展開時の中身 */
#menu-btn-check:checked~.menu-content {
    /* チェックが付いたら表示 */
    visibility: visible;
    opacity: 0;

}

#menu-btn-check {
    display: none;
}

/*-------------- ハンバーガーメニューの中身 ---------------*/
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    z-index: 101;
    background-color: #0707087d;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 0px;


    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;


    /* 普段は隠す */
    visibility: hidden;
}

.menu-content img {
    width: 70%;
    margin: 0px;
    padding: 50px 0px;
    right: 0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.menu-content ul {
    padding: 70px 10px 0;
    text-align: right;
}

.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}

/* -------------------ABOUT ------------------- */
#catch{
    line-height: 50px;
    margin: 70px 0px;
}

/* ----------------- DETAIL ------------------ */
.flex_two table {
    border-spacing: 0px 20px;
    width: 100%;
    margin: auto;

}

tr {
    width: 100%;
}

th {
    min-width: 60px;
}


/* イベント内容 */
.border_decoration h5 {
    margin-bottom: -20px;
}


.border_decoration {
    max-width: 90%;
}

.flex_two .content {
    width: 100%;
    margin: 50px;
    padding: 0px 20px;
    margin: auto;
    margin-top: 30px;
}

.flex_two .content ul {
    margin: 20px auto;
}

.flex_two .content li {
    list-style: disc;
    padding: 5px 0px;
}

.border_lr {
    border: none;
    margin: 50px 50px 100px 50px;
}

.content h3 {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
}

.content h3::after {
    position: absolute;
    content: '';
    top: 42px;
    left: 50%;

    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    padding: 0px 20px;
    border-top: 3px solid var(--accent);
}


/* --------------- SHOP LIST -------------- */
.shops {
    display: flex;
}


.shop_block section {
    margin: auto;
    width: 90%;
    height: 350px;
    background-color: var(--bg2);
    margin: 20px 10px;
    text-align: left;
    padding-bottom: 7px;
}

section h4 {
    width: 100%;
    height: 100px;
    margin: 0px;
    display: table-cell;
    vertical-align: middle;
}

section p {
    padding: 20px 15px 20px 15px;
    padding: 0px 15px;
    vertical-align: middle;
}


/* -------------- ACCESS ------------- */
#access img{
    margin-top: 30px;
}


/* -----------------------------
          フッター              
----------------------------- */
footer img {
    width: 230px;
}