@charset "utf-8";

.single_news .entry-date {
    color: #333;
    font-weight: 500;
}
.single_news #single_post .post_meta {
    margin:  1rem 0;
}
.single_news #single_post .post_meta li {
    border-right: none;
    padding: 0;
}
.single_news #single_post .post_category a {
    border: 1px solid #5ABDED;
    color: #5ABDED !important;
    font-size: 14px;
    border-radius: 50px;
    padding: 9px 21px;
    display: inline-block;
    text-decoration: none !important;
}

.single_news #single_post .post_category a:hover {
    background-color: #003894 !important;
    color: #fff !important;
    border-color: #003894 !important;
}

.single_news #single_post .post_content a {
    text-decoration: underline !important;
}

.single_news #single_post .post_content a:hover {
    text-decoration: none !important;
}

/* ソーシャルシェアボタンとナビゲーション */
.single_news #single_post_navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

/* 左側：ソーシャルシェアボタン（既存の#share_top1を調整） */
.single_news #single_post_navigation #share_top1 {
    width: auto;
    margin: 0;
    flex: 1;
}

.single_news #single_post_navigation #share_top1 h2 {
    display: none;
}

.single_news #single_post_navigation #share_top1 ul {
    margin: 0;
    padding: 0;
}

.single_news #single_post_navigation #share_top1 ul li {
    margin: 0 5px 0 0;
}

/* 右側：ナビゲーション */
.single_news .single_post_nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.single_news .single_post_nav .nav-link {
    color: #59BDED;
    text-decoration: none;
    transition: color 0.3s;
}

.single_news .single_post_nav .nav-link:hover {
    color: #003894;
    text-decoration: underline;
}

.single_news .single_post_nav .nav-link.disabled {
    color: #999;
    cursor: default;
    text-decoration: none;
}

.single_news .single_post_nav .nav-link.disabled:hover {
    color: #999;
    text-decoration: none;
}

.single_news .single_post_nav .nav-separator {
    color: #ccc;
    margin: 0;
}

.single_news .single_post_nav .nav-arrow {
    font-size: 18px;
    margin: 0 4px;
}

.single_news .single_post_nav .prev-link .nav-arrow {
    margin-right: 4px;
}

.single_news .single_post_nav .next-link .nav-arrow {
    margin-left: 4px;
}

/* お知らせアーカイブページのスタイル */
.archive_news__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.archive_news__item {
    display: flex;
    background: #F3F3F3;
    padding: 25px;
    gap: 20px;
}

.archive_news__image {
    flex-shrink: 0;
    width: 185px;
    position: relative;
}

.archive_news__image::after {
    content: "";
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.archive_news__image:hover::after {
    box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.3);
}

.archive_news__image:hover img {
    opacity: 0.7;
}

.archive_news__image img {
    max-width: 100%;
    transition: opacity 0.2s ease-in-out;
    height: auto;
    object-fit: contain;
}

.archive_news__content {
    flex: 1;
    overflow: hidden;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
}

.archive_news__meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.archive_news__date {
    color: #333;
    font-size: 14px;
    margin: 0;
}

.archive_news__category {
    display: inline-block;
    border: 1px solid #5ABDED;
    color: #5ABDED !important;
    font-size: 14px;
    border-radius: 50px;
    padding: 7px 21px;
    text-decoration: none;
    font-weight: 500;
}

.archive_news__category:hover {
    background-color: #003894 !important;
    color: #fff !important;
    text-decoration: none !important;
    border-color: #003894 !important;
}

.archive_news__title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.archive_news__title a {
    color: #333;
    display: block;
    text-decoration: underline;
    transition: color 0.3s;
}

.archive_news__title a:hover {
    color: #333 !important;
    text-decoration: none;
}

/* お知らせアーカイブページのページネーション */
.archive_news__pagination {
    margin: 30px 0;
    text-align: center;
}

.archive_news__pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.archive_news__pagination .page-numbers li {
    margin: 0;
    list-style: none;
}

.archive_news__pagination .page-numbers a,
.archive_news__pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.archive_news__pagination .page-numbers a {
    color: #5ABDED;
    border: 1px solid #5ABDED;
    background: transparent;
}

.archive_news__pagination .page-numbers a:hover {
    color: #fff;
    background: #5ABDED;
    border-color: #5ABDED;
}

.archive_news__pagination .page-numbers .current {
    color: #fff;
    background: #5ABDED;
    border: 1px solid #5ABDED;
}

.archive_news__pagination .page-numbers .dots {
    border: none;
    background: transparent;
    color: #333;
    cursor: default;
}

.archive_news__pagination .page-numbers .dots:hover {
    background: transparent;
    color: #333;
}

/* トップページのお知らせセクション */
#index_news {
    margin: 90px auto 0;
    padding: 0;
    width: auto;
}

.index_news__header {
    background: #5ABDED;
    padding: 20px 30px;
    margin: 0;
}


.index_news__header_inner {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.index_news__title {
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",メイリオ,Meiryo, sans-serif !important;
}

.index_news__button {
    display: inline-block;
    background: #fff;
    border: 1px solid #7BC8E8;
    color: #5ABDED;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    height: 50px;
    width: 195px;
    line-height: 50px;
    text-align: center;
    box-sizing: border-box;
}

.index_news__button:hover {
    background: #003894;
    color: #fff;
    text-decoration: none !important;
}

.index_news__list {
    background: #fff;
    padding: 0;
    margin: 30px auto 0;
    width: 1200px;
}

.index_news__item {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #ccc;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s;
}

.index_news__item:hover {
    background-color: #F5F5F5;
    text-decoration: none;
}

.index_news__item:last-child {
    border-bottom: none;
}

.index_news__date {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}

.index_news__category--wrap {
    width: 150px;
    margin: 0 10px 0 30px;
}
.index_news__category {
    display: inline-block;
    padding: 7px 10px;
    border: 1px solid #5ABDED;
    border-radius: 50px;
    font-size: 14px;
    color: #5ABDED;
    min-width: 130px;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
}

.index_news__title_link {
    font-size: 20px;
    color: #333;
    font-weight: 400;
    text-decoration: underline;
    flex: 1;
    transition: color 0.3s;
    line-height: 1.5;
}

.index_news__no_post {
    margin: 0;
    padding: 20px 30px;
    color: #666;
    font-size: 14px;
}


