@charset "UTF-8";
/*==============
    news
===============*/
input,
select {
    -webkit-appearance: none;
    appearance: none;
}
#news .category-wrap {
    display: flex;
    gap: 40px;
    justify-content: end;
}
#news .category-wrap li {
    border-bottom: 0;
    padding: 0;
}
#news .category-wrap li a {
    font-family: var(--en);
}
#news .category-wrap li.on a {
    color: var(--color1);
}
#news ul li {
    border-bottom: 1px solid #f2f2f2;
    padding: 2.26vw 1.33vw;
}
#news ul li a .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
}
#news ul li .day {
    font-family: var(--en);
    font-size: 1.4rem;
    margin-right: 15px;
    color: #808080;
    transition: 0.4s all;
}
#news ul li .category i {
    font-family: var(--en);
    font-size: 1.2rem;
    background: var(--color2);
    padding: 2px 20px;
    color: #fff;
    display: table;
    transition: 0.4s all;
}
#news ul li .ttl {
    font-size: 1.4rem;
    line-height: 1.8;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: 0.4s all;
}
#news ul li:hover .ttl,
#news ul li:hover .day,
#news ul li:hover .category {
    opacity: 0.5;
}
@media screen and (max-width: 768px) {
    #news ul li {
        padding: 20px 0;
    }
    #news .category-wrap {
        display: none;
        justify-content: flex-start;
        margin-bottom: 16px;
    }
}
/*==============
  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;
    color: #808080;
}
#news_detail .category i {
    font-family: var(--en);
    font-size: 1.2rem;
    background: var(--color2);
    padding: 0 15px;
    display: table;
}
#news_detail .news-body {
    line-height: 1.8;
    padding-bottom: 56px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 62px;
}
@media screen and (max-width: 768px) {
    #news_detail .news-body {
        margin-bottom: 56px;
        padding-bottom: 40px;
        padding-top: 24px;
    }
    #news_detail .day{
    font-size: 1.2rem;
    margin-right: 10px;
    }
}
/* 0219 */
#no-event-message {
    font-size: 1.8rem;
    font-family: var(--jp);
    color: #ccc;
    text-align: center;
    margin-top: 8vw;
}
select {
    size: initial !important;
    width: 100%;
    padding: .8em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
}
@media screen and (max-width: 420px) {
    #no-event-message {
        font-size: 1.6rem;
        margin-top: 18vw;
    }
}
/* add */
.news-body p,
.news-body span {
    font-family: var(--jp) !important;
}
.news-body a {
    text-decoration: underline !important;
    color: #3E569E !important;
}
@media screen and (max-width: 768px) {
    #news ul li a .flex {
        margin-bottom: 8px;
    }
    #news ul li .ttl {
        line-height: 1.5;
    }
    #news ul li .day {
        font-size: 1.2rem;
        margin-right: 10px;
    }
}