/* =========================
   PC用 4列×2段メニュー
   ========================= */

#pc-menu {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 30px;
    border-collapse: separate;
    border-spacing: 10px;
    table-layout: fixed;
}

#pc-menu td {
    padding: 0;
    text-align: center;
    vertical-align: middle;
}

#pc-menu a {
    display: block;
    text-decoration: none;
}

#pc-menu img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    transition: opacity 0.2s ease;
}

#pc-menu a:hover img {
    opacity: 0.75;
}


/* =========================
   スマホではPCメニューを隠す
   ========================= */

@media screen and (max-width: 767px) {
    #pc-menu {
        display: none;
    }
}


.nemu-button {
    display: inline-block;
    width: 48%;
    margin: 0 0.5% 20px;
    vertical-align: top;
    text-decoration: none;
    transition: 0.25s ease;
}

.nemu-button img {
    display: block;
    width: 100%;
    height: auto;
    border: none;
}

.nemu-button:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 5px 8px rgba(85,68,111,0.18));
}

