@charset "utf-8";
/*  2025/09/16 add　version3
    このCSSはcontents.htmlでのみ使用しています */
/*--------------------共通----------------------*/
.contents-index p {
    margin-bottom: 20px;
}
.contents-index ul {
    padding: 20px 40px;
    background-color: #f2f2f2;
    border-radius: 5px;
}
    .contents-index ul li {
        margin-bottom: 10px;
    }
        .contents-index ul li:last-child {
            margin-bottom: 0;
        }
        .contents-index ul li a {
            position: relative;
            color: #333;
        }
            .contents-index ul li a:after {
                content: "";
                display: block;
                position: absolute;
                right: -1.5em;
                top: calc(50% - 0.25em);
                color: #333;
                width: .5em;
                height: .5em;
                border: 0.1em solid currentColor;
                border-left: 0;
                border-bottom: 0;
                box-sizing: border-box;
                transform: translateY(-25%) rotate(135deg);
            }
            .contents-index ul li a:hover {
                text-decoration: underline;
            }

.contents-cols .in-read2 a {
    text-decoration: underline;
}
    .contents-cols .in-read2 a:hover {
        text-decoration: none;
    }


/*--------------------共通 end----------------------*/
/*〓〓〓〓〓〓〓 PC 〓〓〓〓〓〓〓*/
@media (min-width:751px) {
    .contents-index {
        margin-bottom: 50px;
    }

    .contents-cols {
        display: flex;
        gap: 50px;
        margin-bottom: 50px;
    }

    .contents-cols__txt {
        flex: 1;
    }

    .contents-cols__img {
        width: 600px;
        text-align: center;
        margin: 38px 0 40px;
    }
        .contents-cols__img img {
            max-width: 100%;
        }


}/*--------------------PC end----------------------*/
/*〓〓〓〓〓〓〓 SMP 〓〓〓〓〓〓〓*/
@media (max-width:750px) {

    .contents-index {
        margin-bottom: 40px;
    }

    .contents-index p {
        font-size: 26px;
        margin-bottom: 40px;
    }
    .contents-index ul {
    }
        .contents-index ul li {
            margin-bottom: 20px;
        }
            .contents-index ul li a {
                font-size: 26px;
            }


    .contents-cols {
        margin-bottom: 50px;
    }

    .contents-cols__img {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
        .contents-cols__img img {
            max-width: 100%;
        }


}/*--------------------SMP end----------------------*/
