/* icons-only.css */

/* 必ずファイルの先頭に記述します */
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');


#kokuspo2025 {
    .pc {
        display: block;

        @media(max-width: 767px) {
            display: none;
        }
    }

    .sp {
        display: none;

        @media(max-width: 767px) {
            display: block;
        }
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .common-ttl {
        font-size: 2.125rem;
        font-weight: bold;
        line-height: 3.125rem;
        text-align: center;

        @media(max-width: 767px) {
            font-size: 20px;
        }
    }

    .read {
        text-align: center;
        margin-top: 60px;
        margin-bottom: 60px;

        @media(max-width: 767px) {
            margin-top: 40px;
            margin-bottom: 40px;
        }
    }

    .read-list {
        display: flex;
        gap: 50px;
        margin-bottom: 100px;

        @media(max-width: 767px) {
            gap: 15px;
        }

        li {
            flex: 1;
            list-style-type: none;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            padding: 0;
        }

        .dummy-img {
            background: #dcdcdc;
            display: flex;
            aspect-ratio: 4 / 3;
            justify-content: center;
            align-items: center;
            font-size: 2.2rem;
            padding: 1.5em;
            text-align: center;
            line-height: 1.2;

            @media(max-width: 767px) {
                font-size: 1.2rem;
            }
        }
    }

    .list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        margin-bottom: 100px;

        @media(max-width: 767px) {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 100px
        }



        .once p {

            @media(max-width: 767px) {
                font-size: 13px;
                line-height: 1.8;
            }

        }

        .once img {
            margin: 0 auto;
        }

        li {
            list-style-type: none;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            padding: 0;
        }

        li h3 {
            margin: 10px 0 0;
            ] font-size: 1.5rem;
        }

    }

    .more {
        display: block;
        border: 1px solid #111;
        text-align: center;
        text-decoration: none;
        padding: 0.3em 1em;

        &:hover {
            color: #fff;
            border: 1px solid #f44b1e !important;
            background: #f44b1e;
            border: 0
        }
    }

    .link-list {
        column-count: 2;

        @media(max-width: 767px) {
            column-count: 1;
        }

        li {
            margin: 0 0 1em 0;
            list-style-type: none;
            padding-left: 1.5em;
            position: relative;
            line-height: 1.6;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            display: inline-block;
        }

        li a {
            text-decoration: none;
        }


        li a:hover {
            text-decoration: underline;
        }

        li::before {
            font-family: 'Material Symbols Outlined';
            content: 'arrow_forward';
            font-weight: 400;
            margin-right: 0.5em;
            color: #f44b1e;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);

        }

        li::after {
            font-family: 'Material Symbols Outlined';
            content: 'open_in_new';
            font-weight: 400;
            margin-left: 0.5em;
        }
    }
}