.content {
    margin-top: 60px;
}

.top-view,
.slide-box {
    width: 100%;
    height: 0px;
    padding-top: 0px;
}

.menu-area-box h3 {
    height: 60px;
    line-height: 60px;
    color: white;
    font-weight: bold;
    text-align: center;
    background-color: black;
    margin-bottom: 40px;
    cursor: pointer;
}

h4 {
    line-height: 40px;
    font-weight: bold;
}

#menu-layout span {
    display: block;
    width: 100%;
    white-space: wrap;
    padding-left: 10px;
    border-bottom: 1px solid black;
    line-height: 40px;
}

#reserve {
    margin-top: 150px;
}

.menu-cat {
    width: 100%;
    margin-bottom: 40px;
    padding: 0 20px;
}

.menu-ala {
    width: 100%;
}

.menu-cat-set {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: start;
    flex-direction: row;
    flex-shrink: 0;
}

.menu-cat-set img {
    width: 300px;
    height: auto;
    margin: 0 20px auto 0;
    box-shadow: 0 4px 4px #ccc;
}

p.teikyou2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 250px;
    margin: 0 auto 30px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/menu-page/menu-header.jpg");
    background-position: 10%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 10px;
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.5;
    color: #fff;

    /* ▼白い影を追加 */
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3);
}

/* タブレット端末(768px)以下の際のクエリ */
@media screen and (max-width: 768px) {
    .menu-cat-set {
        display: flex;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 540px) {
    .menu-cat-set img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

/*==================================================
アコーディオンのためのcss
===================================*/
.accordion-area li {
    margin: 10px 0;
}

.accordion-area section {
    border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: white;

}

.title::before {
    top: 48%;
    left: 30px;
    transform: rotate(0deg);

}

.title::after {
    top: 48%;
    left: 30px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/
.title.close::before {
    transform: rotate(45deg);
}

.title.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;
    /*はじめは非表示*/
    margin: 0 3% 3% 3%;
    padding: 3%;
}