/*
* CONTENTS_AREA
**************************************/
#CONTENTS_AREA {
    background-color: #F4F7F4;
}
    #CONTENTS_AREA .intro {
        background-color: rgba(50, 194, 77, 0.06);
        padding: 32px 16px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }
        #CONTENTS_AREA .intro .intro-text{
            font-family: 'Noto Sans', sans-serif;
            font-weight: 500; /* Medium */
            font-size: 18px;
            line-height: 1.5;
            color: #000;
            max-width: 600px;
            margin-bottom: 40px;
            word-break: break-word;        
        }
        #CONTENTS_AREA .intro .intro-text .sp-break {
            display: none;
        }
        #CONTENTS_AREA .intro .intro-button{
            font-family: 'Noto Sans', sans-serif;
            font-weight: bold;
            font-size: 16px;
            color: #fff;
            background-color: #FA8E25;
            border: none;
            border-radius: 22px;
            width: 210px;
            height: 44px;
            text-align: center;
            justify-content: center;
            align-items: center;
            display: inline-flex;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
    #CONTENTS_AREA .list {
        display: flex;
        gap: 44px 44px;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }

    @media (min-width: 1017px) {
        #CONTENTS_AREA .list {
            gap: 48px 53px;
        }
    }
    
        #CONTENTS_AREA .list > a:hover {
            text-decoration: none;
            pointer-events: none;
            cursor: default;
        }
        #CONTENTS_AREA .list .item {
            background: var(--白) 0% 0% no-repeat padding-box;
            box-shadow: 0px 6px 10px #2222221A;
            border-radius: 10px;
            box-sizing: border-box;
            width: 298px;
            height: 460px;
            padding: 40px 24px 0;
        }
        
            #CONTENTS_AREA .list .item > .title {
                width: 100%;
                margin: 32px auto;
                font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-bold) var(--unnamed-font-size-22)/var(--unnamed-line-spacing-44) var(--unnamed-font-family-noto-sans), var(--unnamed-font-family-noto-sans-jp);
                letter-spacing: var(--unnamed-character-spacing-2-2);
                color: var(--文字);
                text-align: center;
                line-height: 22px;
            }
            #CONTENTS_AREA .list .item > .body {
                font: var(--unnamed-font-style-normal) normal var(--unnamed-font-weight-medium) var(--unnamed-font-size-16)/var(--unnamed-line-spacing-26) var(--unnamed-font-family-noto-sans), var(--unnamed-font-family-noto-sans-jp);
                letter-spacing: var(--unnamed-character-spacing-1-28);
                color: var(--文字);
            }
            #CONTENTS_AREA .list .item > .bg {
                width: 90px;
                height: 90px;
                background: var(--背景色) 0% 0% no-repeat padding-box;
                border-radius: 90%;
                margin: auto;
                position: relative;
            }

            #CONTENTS_AREA .list .item-post {
                position: relative;
            }

            #CONTENTS_AREA .list .item-post > a{
                cursor: default !important;
            }

            #CONTENTS_AREA .list .icon-post {
                right: 15px;
                position: absolute;
                bottom: 10px;
            }

            #CONTENTS_AREA .list .icon-post:hover {
                cursor: pointer !important;
                transform: scale(1.1);
            }

            #CONTENTS_AREA .list .icon-post > .icon-post-detail {
                display: block;
                float: right;
            }

            #CONTENTS_AREA .list .item > .bg > .img {
                display: block;
                position: absolute;
                top: 0;
                bottom: 0;
                right: 0;
                left: 0;
                margin: auto;
                cursor: pointer;
            }
            #CONTENTS_AREA .list .item > .bg > .img.document-issuance {
                left: 7px;
            }
