#top .jino_box,
#top .menu_btn,
#top .bnr_area {
    width: 94.66%;
    margin-left: auto;
    margin-right: auto;
}
#top .jino_box {
    margin-top: 32px;
    height: 120px;
    aspect-ratio: 355 / 120;
    position: relative;
}
#top .jino_box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}
#top .jino_box a img {
    width: 50%;
}
#top .jino_box #canvas {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: url('../images/bg_jino.webp') center center / cover no-repeat;
}
#top .menu_btn {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 9px;
    margin-top: 32px;
    margin-bottom: 32px;
}
#top .menu_btn li {
    width: calc( 100% / 4 );
    height: 80px;
    background-color: #ffffff;
    box-sizing: border-box;
    border: 1px solid #e3dcdc;
    border-radius: 4px;
}
#top .menu_btn li a {
    position: relative;
    display: flex;
    justify-content:center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 5px;
}
#top .menu_btn li a::after {
    content: "";
    display: flex;
    justify-content:center;
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url('../images/menu_arrow.png');
    width: 10px;
    height: 5px;
    position: absolute;
    bottom: 10%;
    left: 44%;
}
#top .bnr_area a {
    display: block;
}
#top .bnr_area a + a {
    margin-top: 32px;
}
@media screen and (min-width: 768px) {
    #top .jino_box {
        margin-top: 40px;
        height: 240px;
        aspect-ratio: 710 / 240;
    }
    #top .menu_btn {
        gap: 21px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    #top .menu_btn li {
        height: 165px;
    }
    #top .menu_btn li a {
        font-size: 22px;
        padding-bottom: 9px;
    }
    #top .menu_btn li a::after {
        width: 18px;
        height: 9px;
    }
    #top .bnr_area a + a {
        margin-top: 40px;
    }
}