@charset "utf-8";

/* head-common.phpで挿入される */

/*  pc
---------------------------------------------- */

#information {
    padding: 60px 0;
    background-color: #f2f2f2;
}

#information .more-link {
    text-align: right;
    margin-top: 8px;
}
#information .more-link a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.6rem;
    color: #932536;
    text-decoration: none;
    border: 2px solid #932536;
    transition: 0.3s;
}
#information .more-link a:hover {
    background-color: #932536;
    color: #fff;
}

/* details要素のスタイル */
#information .more-news {
    background-color: #f2f2f2;
}
#information .more-news summary {
    padding: 20px 0 10px 0;
    font-size: 1.6rem;
    cursor: pointer;
    background-color: #f2f2f2;
    border-top: 2px solid #f2f2f2;
    user-select: none;
    text-align: right;
}
#information .more-news summary:hover {
    color: #932536;
    text-decoration: underline;
}
#information .more-news[open] summary {
    border-bottom: 2px solid #f2f2f2;
}
#information .lists li {
    background-color: #fff;
}
#information .lists li:not(:last-child) {
    border-bottom: 2px solid #f2f2f2;
}
#information .lists li a {
    display: block;
    padding: 30px;
    font-size: 1.6rem;
}
#information .lists li a:hover {
    color: #932536;
    text-decoration: underline;
}
#information .lists li a span:first-child {
    margin-right: 30px;
}

@media only screen and (max-width: 1024px) {
    #information {
        padding: 15px 0 5px 8px;
    }
    #information .lists li a {
        padding: 8px;
        line-height: 1.8rem;
        font-size: 1.2rem;
    }
    #information .lists li a span {
        display: block;
        margin-right: 0;
    }

    #information .more-news summary {
    padding-top: 6px;
    font-size: 1.2rem;
}

    #information .more-link {
        margin-top: 10px;
    }
    #information .more-link a {
        padding: 6px 10px;
        font-size: 1.1rem;
    }
}

