@charset "utf-8";
/* PC用 */
@media screen and (min-width: 561px) {
    .category-list {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
    .category-list li {
        width: 25%;
    }
    .category-list li ul li:before {
        content: "• ";
        color: #aaa;
    }
    .category-list p {
        text-align: center;
        margin-top: 10px;
    }
    .category-list li.last {
        margin: 0 auto 0 0;
    }
    .category-list li a {
        color: #ff5600;
    }
    .category-list li a:hover {
        text-decoration: underline;
        color: #0056b3;
    }
    .category-list li img:hover {
        opacity: .8;
    }
    .inner li {
        width: 95%;
        margin: 0 auto 5px;
    }
}
/* スマホ用 */
@media screen and (max-width: 560px) {
    #contents .accordion p {
        color: #333;
        font-size: .9em;
        letter-spacing: .5px;
        margin: 0;
        width: 100% !important;
    }
    .accordion {
        text-align: center;
        margin: 20px 0;
        border: 1px solid #ccc;
        border-style: solid solid none solid;
    }
    .accordion p {
        cursor: pointer;
        padding: 15px 0;
        font-weight: bold;
        border-bottom: 1px solid #cccccc;
        background: #fefefe;
        background: -moz-linear-gradient(top, #fefefe 0%, #eaeaea 100%);
        background: -webkit-linear-gradient(top, #fefefe 0%,#eaeaea 100%);
        background: linear-gradient(to bottom, #fefefe 0%,#eaeaea 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fefefe', endColorstr='#eaeaea',GradientType=0 );
    }
    .accordion .inner {
        display: none;
    }
    .accordion .inner li {
        border-bottom: 1px dotted #ccc;
    }
    .accordion .inner li:last-child {
        border-bottom: 1px solid #ccc;
    }
    .accordion .inner li a {
        display: block;
        padding: 15px 0;
        color: #333;
    }
}