/* =============================================================
   JTrust v2 - NEWS RELEASE TOP PAGE
   /common/css/v2/news.css
============================================================= */
.jt2-entry_meta.margin_bottom_adj14 {
    margin-bottom: 14px;
}
/* --- コンテンツ本体 --- */
.jt2-news_body {
    background: #fff;
    padding: 36px 0 60px;
}
/* 2カラムレイアウト */
.jt2-news_layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
/* 本文エリア */
.jt2-news_main {
    flex: 1 1 0;
    min-width: 0;
}
/* --- カテゴリタブ --- */
.jt2-cat_tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #2b2b2b;
    margin-bottom: 26px;
}
.jt2-cat_tab {
    padding: 8px 36px;
    font-size: 14px;
    color: #00A1DA !important;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    display: block;
    position: relative;
    transition: 0.4s;
    text-align: center;
}
.jt2-cat_tab:hover {
    text-decoration: none;
}
.jt2-cat_tab:first-child {
    margin-left: 30px;
}
.jt2-cat_tab.is_active{
    background: #00A0E8;
    color:#fff!important;
}
.jt2-entry {
    padding: 14px 0;
    border-bottom: 1px solid #e0e0e0;
}
.jt2-entry_meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
/* --- サイドバー（年度） --- */
.jt2-news_side {
    flex: 0 0 180px;
    width: 180px;
}
.jt2-side_year_title {
    background: #6E6E6E;
    text-align: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 10px 14px;
    margin: 0;
    letter-spacing: 0.03em;
}
.jt2-side_year_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.jt2-side_year_list li {
    border-bottom: 1px solid #959595;
}
.jt2-side_year_link {
    display: block;
    padding: 9px 14px;
    font-size: 14px;
    color: #000!important;
    text-decoration: none;
    transition: background 0.4s, color 0.4s;
}
.jt2-side_year_link:hover,
.jt2-side_year_link.is_active {
    background: #00A1DA;
    color: #fff!important;
    text-decoration: none;
}
.jt2-side_year_toggle {
    display: block;
    position: relative;
    width: 100%;
    margin-top: 10px;
    padding: 9px 30px 9px 14px;
    text-align: center;
    font-size: 12px;
    background: none;
    border: 1px solid #d0d8e4;
    cursor: pointer;
    transition: 0.4s;
}
.jt2-side_year_toggle:hover {
    background: var(--color-jt2-light-blue);
}
.jt2-side_year_toggle:hover::before,
.jt2-side_year_toggle:hover::after {
    border-color: #00A1DA;
}
/* 横線（＋と－共通） */
.jt2-side_year_toggle::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    width: 10px;
    height: 0;
    border-top: 1px solid currentColor;
    transform: translateY(-50%);
    transition: transform 0.3s;
}
/* 縦線（＋のみ） */
.jt2-side_year_toggle::before {
    content: '';
    position: absolute;
    right: 35px;
    top: 50%;
    width: 0;
    height: 10px;
    border-left: 1px solid currentColor;
    transform: translateX(50%) translateY(-50%);
    transition: transform 0.3s;
}
/* is-open 時に縦線を潰して－表示 */
.jt2-side_year_toggle.is-open::before {
    transform: translateY(-50%) scaleY(0);
}
.jt2-side_year_select {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #d0d8e4;
    background: #fff;
    border-radius: 4px;
}
/* =============================================
   RESPONSIVE - SP (max-width: 768px)
============================================= */
@media (max-width: 768px) {
.jt2-news_body {
    padding: 24px 0 44px;
}
.jt2-news_layout {
    flex-direction: column;
    gap: 0;
}
.jt2-news_main {
    order: 2;
    width: 100%;
}
.jt2-news_side {
    order: 1;
    flex: none;
    width: 100%;
    margin-bottom: 24px;
}
.jt2-cat_tab {
    font-size: 12px;
    padding: 8px 14px;
    margin-right: 0px;
    width: 33.333%;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
}
.jt2-cat_tab:first-child {
    margin-left: 0;
}
.jt2-side_year_select{
    width: 160px;
    float: right;
    clear: right;
}
}
