@charset "UTF-8";
/* club */
.topics{
    width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;

    .topics_title{
        padding: 10px;
        margin: 0 0 5px 0;
        font-size: 18px;
        font-weight: 700;
        border-bottom: solid 3px var(--sub-color2);
    }
    .subtitle{
        padding: 5px 0 5px 10px;
        margin: 10px 0;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.5;
        border-left: solid 4px #E8DF60;
    }
    .topics_inner{
        padding: 0 5px;
    }
    .date{
        margin: 0 0 10px 0;
        color: var(--color-gray-dark);
        font-size: 14px;
        text-align: right;
    }
    .mainview{
        margin: 0 0 20px 0;
    }
    .text{
        padding: 0 10px;
    }
    .figure_list{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .figure_item{
        width: calc(50% - 10px);
        margin: 15px;

        img{
            width: 100%;
            aspect-ratio: 3 / 2;
            object-fit: contain;
        }
    }
    .figure_item.single{
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .table{
        width: calc(100% - 20px);
        margin: 0 auto 30px;

        th,
        td{
            padding: 10px;
        }

        th{
            width: 20%;
            background: var(--sub-color2);
        }

        td{
            background: var(--color-white);
        }
    }
    .attention{
        padding: 0 0 0 1em;
        font-size: 14px;
        position: relative;
    }
    .attention::before{
        content: "※";
        position: absolute;
        top: 0;
        left: 0;
    }
    .mail,
    .tell{
        padding: 0 0 0 1.5em;
        position: relative;
    }
    .mail::before,
    .tell::before{
        font-family: Font Awesome\ 6 Free;
        color: var(--main-color);
        font-weight: 600;
        position: absolute;
        left: 0;
        top: 0;
    }
    .mail::before{
        content: "\f0e0";
    }
    .tell::before{
        content: "\f095";
    }
    .button-oval{
        margin: 15px auto 30px;

        a{
            color: var(--color-white);
            background: var(--color-blue);
        }
    }
}

@media screen and (max-width: 1024px){
    .topics{
        width: 80%;

        .table{
            th,
            td{
                padding-left: 20px;
                padding-right: 20px;
                width: 100%;
               display: block;
            }
        }
    }
}

@media screen and (max-width: 600px){
    .topics{
        width: 90%;

        .figure_list{
            flex-direction: column;
        }
        .figure_item{
            width: 100%;
        }
    }
}