/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 04 2024 | 11:15:38 */
/* 一般的なスタイル */
.announcement-columns {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    width: 100%;
    margin: 30px auto;
    font-size: 1.1rem;
    line-height: 1.5;
    background-color:#fff;
    border:1px solid #ccc;
    padding:20px;

    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}
.announcement-columns p{
    padding:20px 10px;
}

.announcement-date {
    margin-bottom: 15px;
    font-weight: bold;
    padding: 10px;
    background-color: #0067BE;
    text-align: center;
    color: #fff;
}

.announcement-title {
    font-weight: bold;
    font-size:1.5rem;
    line-height: 2rem;
}

.text_wrapper {
    position: relative;
margin-bottom: 20px;

}

.text.hidden {
height: 100px;
    overflow: hidden;
}

.show_more {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 30px;
    padding-top: 60px;
    text-align: center;
    line-height: 30px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 70%
    );
    cursor: pointer;
    transition: bottom 0.2s;

}

.new-wappen {
color: #ff0000;
background-color: #fff;
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 0.8em;
    margin-left: 5px;
}



@media only screen and (max-width : 599px) {
.text_wrapper {
        width: 100%;
}
}


/* ページネーションリンク全体のスタイル */
.page-numbers {
    display: inline-block; /* または display: inline; */
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #f1f1f1;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
}

/* 現在のページ番号のスタイル */
.page-numbers.current {
    background-color: #007bff;
    color: #fff;
}

/* リンクのホバー時のスタイル */
.page-numbers:hover {
    background-color: #007bff;
    color: #fff;
}

/* モバイルデバイス対応 */
@media screen and (max-width: 600px) {
    .page-numbers {
        padding: 3px 6px;
        font-size: 12px;
    }
}

