<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.section{
    position: relative;
    display: grid;
    gap: 30px;
    width: 90%;
    max-width: 1093px;
    margin: 4rem auto 1rem auto;
    color: #000;
}
.section .title-wrapper &gt; .title{
    color: #3db134;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 4.5px;
    margin: 0 auto;
}
.section .title-wrapper &gt; .subtitle{
    color: #3db134;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 8px auto 0 auto;
    letter-spacing: 1px;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

.section .text{
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

@media (min-width: 769px){
    .section{
        gap: 40px;
        margin: 8rem auto 1rem auto;
    }
    .section .title-wrapper &gt; .title{
        font-size: 32px;
        letter-spacing: 4px;
    }
    .section .title-wrapper &gt; .subtitle{
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    .section .text{
        letter-spacing: 3px;
        line-height: 1.7;
    }
}

/* fair &amp; seminar section -- */
.fair.section, .seminar.section{
    gap: 40px;
}
.fair.section a:hover, .seminar.section a:hover{
    text-decoration: none;
}
.event-wrapper{
    display: grid;
    gap: 20px;
    grid-template-rows: max-content max-content;
    grid-template-columns: 1fr 1fr;
}
.event-item{
    position: relative;
    width: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 5px;
}
.event-type-label{
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
    border-radius: 40px;
    padding: 3px 15px;
}
.event-type-label.green{
    background-color: #3db134;
}
.event-type-label.blue{
    background-color: #00b4d2;
}
.event-type-label.pink{
    background-color: #d975a6;
}
.event-type-label.brown{
    background-color: #963f00;
}
.event-datetime{
    font-size: 14px;
    color: #231815;
    font-weight: 600;
    letter-spacing: 1px;
}
.event-buttons-wrapper{
    display: grid;
    justify-content: stretch;
    align-items: stretch;
    gap: 5px;
    grid-template-rows: 1fr 1fr;
    width: 100%;
    position: relative;
    font-size: 14px;
}
.event-buttons-wrapper .more-btn-wrapper &gt; div{
    padding: unset;
}
.event-buttons-wrapper .more-btn-wrapper &gt; div &gt; a{
    padding: 8px 0;
    border-radius: 30px;
}
.event-item-wrapper{
    word-break: break-all;
}
.event-thumbnail{
    position: relative;
    max-width: 41vw;
    width: 100%;
}
.event-image{
    position: relative;
    overflow: hidden;
}
.event-image &gt; img{
    width: 100%;            /* 蟷�ｒ繧ｳ繝ｳ繝�リ縺ｫ蜷医ｏ縺帙ｋ */
    aspect-ratio: 3 / 2;
    object-fit: cover;          /* 蝓九ａ繧九ｈ縺�↓諡｡螟ｧ or 蛻�ｊ蜿悶ｊ */
    object-position: center;    /* 荳ｭ螟ｮ縺ｫ謠�∴繧� */
    position: relative;
}
@media (min-width: 769px) {
    .event-wrapper{
        display: grid;
        gap: 20px;
        grid-template-rows: 1fr 0;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        overflow: hidden;
        margin-bottom: -10px;
    }
    .event-buttons-wrapper{
        grid-template-rows: 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .event-buttons-wrapper .more-btn-wrapper &gt; div{
        width: 100%;
        height: unset;
        padding: unset;
    }
    .event-buttons-wrapper .more-btn-wrapper &gt; div &gt; a{
        padding: 8px 0;
        border-radius: 50px;
    }
    .event-item-wrapper{
        width: calc((90vw - 74px) / 4);
    }
    .event-wrapper.not-max-count{
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 10px;
    }
}
@media (min-width: 1333px) {
    .event-item-wrapper{
        width: calc((1093px - 60px) / 4);
    }
}
/* -- fair section */

.footer{
    margin-top: 90px;
}
@media (min-width: 769px){
    .footer{
        margin-top: 150px;
    }
}

@media (min-width: 440px){
    .exists-max-w-440{
        display: none;
    }
}

.no-event-wrapper {
    position: relative;
    width: 90%;
    max-width: 1093px;
    margin: 0 auto;
    text-align: center;
    color: #999999;
}</pre></body></html>