@charset "utf-8";

/*===============================================
* layout
===============================================*/
#secondary {
    background: transparent;
    padding: 0;
    border: none;
    margin-bottom: 50px;
}

/* wiget
-------------------------------*/
#secondary .widget {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/*--- title ---*/
#secondary .widget-title {
    background-color: #f7f9fa;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 20px;
    margin: 0;
    border-bottom: 1px solid #ddd;
}

/*--- list ---*/
#secondary .widget ul {
    padding: 0;
    margin: 0;
}

#secondary .widget ul li {
    list-style: none;
    border-bottom: 1px solid #eee;
    margin: 0;
    padding: 0;
}

#secondary .widget ul li:last-child {
    border-bottom: none;
}

#secondary .widget ul li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    background-color: #fff;
    transition: all 0.2s ease;
    line-height: 18.1875px;
}

#secondary .widget ul li a:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: rotate(45deg);
    margin-right: 10px;
    transition: all 0.2s ease;
}

#secondary .widget ul li a:hover {
    background-color: #f0f7ff;
    color: #0068b7;
    padding-left: 24px;
}

#secondary .widget ul li a:hover:before {
    border-color: #0068b7;
}

/* child */
#secondary .widget ul ul {
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

#secondary .widget ul ul li a {
    padding-left: 35px;
    font-size: 13px;
    color: #666;
}

#secondary .widget ul ul li a:hover {
    padding-left: 39px;
    background-color: #f0f7ff;
}

/*--- sp ---*/
@media (max-width: 767px) {
    #secondary {
        margin-top: 40px;
    }

    #secondary .widget-title {
        padding: 12px 15px;
        font-size: 15px;
    }

    #secondary .widget ul li a {
        padding: 12px 15px;
    }
}

/*===============================================
* term-list-box
===============================================*/
#sub .term-list-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 30px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    list-style: none;
}

/*--- list ---*/
#sub .term-list-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#sub .term-list-box li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
    background: none;
}

#sub .term-list-box li:last-child {
    border-bottom: none;
}

#sub .term-list-box li::before,
#sub .term-list-box li::after {
    display: none;
}

#sub .term-list-box li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    background-color: transparent;
    transition: all 0.2s ease;
    line-height: 1.5;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
}

#sub .term-list-box li a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    border-bottom: none;
    border-left: none;
    transform: rotate(45deg);
    margin-right: 10px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

#sub .term-list-box li a:hover {
    background-color: #f0f7ff;
    color: #0068b7;
    padding-left: 24px;
}

#sub .term-list-box li a:hover::before {
    border-color: #0068b7;
}

#sub .term-list-box li ul {
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    display: block;
    width: 100%;
}

#sub .term-list-box li ul li a {
    padding-left: 35px;
    font-size: 13px;
    color: #666;
}

#sub .term-list-box li ul li a:hover {
    padding-left: 39px;
    background-color: #f0f7ff;
}

/*--- sp ---*/
@media (max-width: 767px) {
    #sub .term-list-box {
        margin-top: 40px;
    }

    #sub .term-list-box li a {
        padding: 12px 15px;
    }
}