/* CSS Document /
/government/comm/future023.asp */

/* --- Base Elements --- */
#scrl1 h3, #scrl2 h3 {
    margin-bottom: .5em;
    padding-bottom: 0;
    border-bottom: 0;
}
#scrl1 h3 {
    color: #152768;
}
#scrl2 h3 {
    color: #ff0000;
}

#scrl2 h3, #scrl3 h3 {
    margin-bottom: .5em;
}

/* --- Layout Components --- */
.idxBox_flex {
    margin-top: 32px;
    display: flex;
    flex-flow: row wrap;
    box-sizing: border-box;
    & * { box-sizing: border-box; }
    & .idxBox, & figure { width: 100%; }
    & figure img { height: auto; display: block; }
}

/* --- Individual Cases --- */
.individual_cases {
    & a {
        width: 100%;
        border: 1px solid #d9e0de;
        border-radius: 4px;
        margin-top: 30px;
        padding: 15px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        transition: 0.3s;
        text-decoration: none;
        color: inherit;
        &:hover { opacity: 0.7; }
    }
    & figure {
        width: 35%;
        margin: 0;
        & img { width: 100%; height: 100%; object-fit: cover; }
    }
}

.individual_cases_text {
    width: 60%;
    & dl {
        margin-bottom: 20px;
        & dt {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        & dd { line-height: 1.5; margin: 0; }
    }
    & .case_btn { text-align: right; }
    & .case_btn_link {
        width: 100%;
        display: inline-block;
        position: relative;
        padding: 8px 10px;
        background: #152768;
        color: #fff;
        text-align: center;
        border-radius: 4px;
        box-sizing: border-box;
        & span {
            font-size: 14px;
            &::after {
                content: "";
                position: absolute;
                inset: 50% 15px auto auto;
                width: 6px;
                height: 6px;
                border-top: 1px solid #fff;
                border-right: 1px solid #fff;
                transform: translateY(-50%) rotate(45deg);
            }
        }
    }
}