@charset "UTF-8";
/*==============
    news
===============*/
h3 {
    font-family: var(--ja);
    color: var(--black);
}
#news .category-wrap {
    display: flex;
    gap: 40px;
    justify-content: end;
    margin-bottom: 24px;
}
#news .category-wrap li {
    border-bottom: 0;
    padding: 0;
    display: contents;
}
#news .category-wrap li a {
    font-family: var(--en);
    font-size: clamp(1.4rem, 3.73vw, 1.6rem);
}
#news .category-wrap li.on a {
    color: var(--color1);
}
#news ul li:last-child {
    margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
    #news ul li {
        padding: 20px 0;
    }
    #news ul li:nth-child(1) {
        padding-top: 0;
    }
    #news .category-wrap {
        justify-content: end;
        margin: 16px 0;
    }
}
/*==============
  news_detail
===============*/
#news_details .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.11vw;
}
#news_detail .day {
    font-family: var(--en);
    font-size: 1.4rem;
    margin-right: 1.88vw;
    margin-bottom: 12px;
}
#news_detail .news-body {
    line-height: 1.5;
    padding-bottom: 40px;
    margin: 32px 0;
    border-bottom: 1px solid var(--gray);
    font-size: clamp(1.4rem, 3.73vw, 1.6rem);
    word-break: break-word;
}
@media screen and (max-width: 768px) {
    #news_detail .news-body {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }
    #news_detail .news-body img {
        max-width: 100% !important;
        height: auto !important;
    }
}
@media screen and (max-width: 768px) {
    /* select */
    .selectList li span {
        display: block;
        font-size: 1.2rem;
        font-family: var(--en);
        color: #ccc;
        margin-bottom: 5px;
    }
    .selectList li {
        padding: 2.26vw 1.33vw;
        padding-top: 0 !important;
    }
    .selectList select {
        width: 225px;
        height: 40px;
        font-size: 13px;
        border: 1px solid #C2C2C2;
        padding: 10px;
        background-color: var(--color3);
        -webkit-appearance: none;
        appearance: none;
        color: var(--black);
    }
    .selectList li {
        margin-bottom: 24px !important;
        border-bottom: none 0 !important;
    }
}