/* =============================================================
   JTrust v2 - Common Parts
   /common/css/v2/common.css
============================================================= */

/* ========================================
   Variables
======================================== */
:root {
    --color-jt2-blue: #00A0E8;
    --color-jt2-light-blue: #dbf1fb;
    --color-jt2-light-gray: #D9D9D9;
    --color-jt2-light-gray2: #898787;
}
.display_pc_undermd_none{
    display: block;
}
.display_under_md{
    display: none;
}
.display_pc-md{
    display: block;
}
.display_md-pcnone{
    display: none;
}
.display_flex_column{
    display: flex;
    flex-direction: column;
    align-items: flex-start!important;
}
@media (max-width: 768px) {
.display_pc-md{
    display: none
}
.display_md-pcnone{
    display: block;
}
}
@media (max-width: 767px) {
.display_pc_undermd_none{
    display: none!important;
}
.display_under_md{
    display: block;
}
}
.jt2-page_head {
    padding: 28px 0 24px;
}
.jt2-page_title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
    letter-spacing: 0.04em;
}

/* --- Inner Container --- */
.jt2-inner {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}
/* --- Section Titles --- */
.jt2-section_head {
    margin-bottom: 32px;
}
.jt2-h2_title_border {
    width: 100%;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-jt2-blue);
    color: var(--color-jt2-blue);
}
.jt2-h2_title {
    font-size: 24px;
    font-weight: 400;
    margin-right: 20px;
    color: var(--color-jt2-blue);
}

/* --- More Button --- */
.jt2-btn_wrap {
    text-align: center;
    margin-top: 28px;
}
.jt2-btn_more {
    display: inline-block;
    color: #000!important;
    font-size: 12px;
    padding: 8px 30px;
    text-decoration: none;
    transition: 0.4s;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    border: 1px solid #D9D9D9;
    border-radius: 5px;
}
.jt2-btn_more::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #00A0E8;
    border-right: 2px solid #00A0E8;
    transform: rotate(45deg) translateY(-1px);
    margin-left: 10px;
    vertical-align: middle;
    transition: 0.4s;
}
.jt2-btn_more:hover {
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0);
    border: 1px solid #00A0E8;
    text-decoration: none;
}
/* --- 新着情報 --- */
.jt2-new_info {
    padding: 36px 0 36px;
}
.jt2-entry_list {
    margin-bottom: 40px;
}
.jt2-entry {
    display: flex;
    align-items: center;
    padding: 14px 4px;
    border-bottom: 1px dotted  var(--color-jt2-light-gray);
    transition: background 0.2s;
}
.jt2-entry:hover{
    background: var(--color-jt2-light-blue);
}
.jt2-entry_title {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    color: #1a1a1a;
}
.jt2-entry_title a {
    color: #1a1a1a;
    text-decoration: none;
}
.jt2-entry_meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: 356px;
}
.jt2-entry_date {
    font-size: 15px;
    white-space: nowrap;
    letter-spacing: 0.02em;
    min-width: 120px;
}
.jt2-entry_cat {
    font-size: 12px;
    color: #fff;
    padding: 3px 8px;
    white-space: nowrap;
    font-weight: 500;
    width: 150px;
    border-radius: 4px;
    text-align: center;
}
.new_entry.cell span {
    background: #cd2121;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    padding: 4px;
    text-align: center;
}

/* --- カテゴリバッジ カラー --- */
.jt2-entry_cat_news     { background: #01a0e9; }
.jt2-entry_cat_ir       { background: #53b778; }
.jt2-entry_cat_media    { background: #e98901; }
.jt2-entry_cat_business { background: #53b778; }
.jt2-entry_cat_partner  { background: #f29f00; }
.jt2-entry_cat_change   { background: #535ecd; }
.jt2-entry_cat_other    { background: #808080; }
.jt2-entry_cat_esg      { background: #00A1DA; }

/* =============================================
   RESPONSIVE - SP (max-width: 768px)
============================================= */
@media (max-width: 768px) {
.jt2-h2_title{
    font-size: 18px;
}
.jt2-inner {
    padding: 0 16px;
}
.jt2-btn_more {
    padding: 8px 14px;
}
.jt2-entry {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
}
.jt2-entry_date {
    font-size: 12px;
    min-width: 100px;
}
.entry_category div {
    font-size: 9px;
    width: 100px;
}
.jt2-entry_meta {
    width: 100%;
}
}