@charset "UTF-8";

/* ===============================================
   お知らせ一覧
=============================================== */
#news_list {
    margin-bottom: 100px;
}
#news_list .s_inner {
    padding-bottom: 0;
}
#news_list li {
    width: 100%;
    padding: 50px 0;
    border-bottom: 1px solid #707070;
}
#news_list li:first-child {
    padding-top: 0;
}
#news_list .article_date {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    display: flex;
}
#news_list .article_ttl {
    font-size: 2.5rem;
    line-height: 1.6em;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 0.05em;
}
#news_list .article_txt {
    font-size: 1.6rem;
    line-height: 1.8em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
#news_list .event_date {
    font-size: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    margin-bottom: 10px;
}
#news_list .event_date span {
    display: inline-block;
}
#news_list .event_date span:first-child {
    margin-right: 0.5em;
}
#news_list .details_link {
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width:768px){
    #news_list {
        margin-bottom: 30px;
    }
    #news_list li {
        padding: 25px 0;
    }
    #news_list .article_date {
        font-size: 1.2rem;
    }
    #news_list .article_ttl {
        font-size: 1.8rem;
        margin-top: 10px;
    }
    #news_list .article_txt {
        font-size: 1.2rem;
        line-height: 2em;
        margin-top: 15px;
        margin-bottom: 25px;
    }
    #news_list .event_date {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
}

/* ===============================================
   ページネーション
=============================================== */
#pagination {
    width: 100%;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    margin: 0 0 150px;
}
#pagination .paging {
    width: 1120px;
    max-width: 90%;
    margin: 0 auto;
    padding-right: 285px;
    display: flex;
    justify-content: center;
}
#pagination .page-numbers {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#pagination .page-numbers::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #D82C2C;
    bottom: 0;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}
#pagination .page-numbers:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}
#pagination .page-numbers.current::after {
    transform: scale(1, 1);
}
#pagination .page-numbers.next,
#pagination .page-numbers.prev,
#pagination .page-numbers.dots::after {
    display: none;
}
@media screen and (max-width:768px){
    #pagination {
        margin: 0 0 50px;
    }
    #pagination .paging {
        padding-right: 0;
    }
    #pagination .page-numbers {
        width: 2.5em;
        height: 2.5em;
        font-size: 1.5rem;
    }
}

/* ===============================================
   記事詳細
=============================================== */
.article_wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 0 40px;
    margin-bottom: 60px;
}
.article_wrap .txt_area {
    flex: 1;
}
.article_wrap .img_area {
    width: 270px;
    max-width: 40%;
    max-height: 320px;
    border-radius: 20px;
    overflow: hidden;
}
.article_wrap .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#news_article .article_date {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    display: flex;
    margin-bottom: 15px;
}
#news_article .article_ttl {
    font-size: 3rem;
    line-height: 1.6em;
    font-weight: 600;
    letter-spacing: 0.05em;
}
#news_article .article_txt {
    font-size: 1.6rem;
    line-height: 1.8em;
    margin-top: 25px;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}
#news_article .event_date {
    font-size: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.5em;
}
#news_article .event_date:not(:first-child) {
    margin-top: 20px;
}
#news_article .event_date span {
    display: inline-block;
}
#news_article .event_date span:first-child {
    margin-right: 15px;
}
#news_article .details_link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; 
}
.map {
    width: 100%;
}
.map iframe {
    width: 100%;
    height: 240px;
    border: 1px solid #707070;
}
.article_return a {
    margin: 40px 0 0;
    font-size: 1.6rem;
    padding-left: 1.3em;
    position: relative;
}
.article_return a::before {
    content: "";
    width: 1em;
    height: 1em;
    background: url(../img/arrow_bk.svg) no-repeat center center / contain;
    transform: scale(-1, 1);
    display: inline-block;
    position: absolute;
    top: 0.1em;
    left: 0;
    margin: auto;
}
@media screen and (max-width:1200px){
    .article_wrap {
        gap: 0 20px;
    }
    #news_article .event_date {
        font-size: 1.7rem;
    }
}
@media screen and (max-width:768px){
    .article_wrap {
        display: block;
        margin-bottom: 40px;
    }
    .article_wrap .img_area {
        width: 100%;
        max-width: 100%;
        max-height: 220px;
        border-radius: 20px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    #news_article .article_date {
        font-size: 1.2rem;
    }
    #news_article .article_ttl {
        font-size: 1.8rem;
    }
    #news_article .article_txt {
        font-size: 1.4rem;
    }
    #news_article .article_txt {
        font-size: 1.2rem;
        line-height: 2em;
        margin-top: 15px;
        margin-bottom: 25px;
    }
    #news_article .event_date {
        font-size: 1.4rem;
    }
    #news_article .event_date:not(:first-child) {
        margin-top: 10px;
    }
    .map iframe {
        height: 200px;
    }
    .article_return a {
        font-size: 1.4rem;
    }
}

#news_list .article_txt a {
    text-decoration: underline;
    opacity: 1;
}
#news_list .article_txt a:hover {
    text-decoration: none;
    opacity: 0.6;
}