@charset "utf-8";

:root {
    --press-accent: #e33f42;
    --press-accent-dark: #c92f33;
    --press-text: #1b1b1d;
    --press-muted: #66676b;
    --press-line: #e5e5e7;
    --press-soft: #f7f7f8;
}

#bo_list.press_board_list {
    width: min(1240px, calc(100% - 64px)) !important;
    margin: 0 auto;
    padding: 82px 0 130px;
    box-sizing: border-box;
    color: var(--press-text);
}

#bo_list.press_board_list .press_list_top_controls {
    display: none;
}

#bo_list.press_board_list #bo_sch {
    width: 100%;
    margin: 0 0 32px;
    padding: 0;
}

#bo_list.press_board_list #bo_sch form {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

#bo_list.press_board_list #bo_sch select,
#bo_list.press_board_list #bo_sch input[type="text"] {
    min-height: 44px;
    border: 1px solid #d8d8db;
    background: #fff;
    color: #343438;
    font-size: 14px;
    box-sizing: border-box;
}

#bo_list.press_board_list #bo_sch select {
    width: 126px;
    padding: 0 34px 0 13px;
}

#bo_list.press_board_list #bo_sch input[type="text"] {
    width: min(280px, 38vw);
    padding: 0 14px;
}

#bo_list.press_board_list .press-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 92px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--press-text);
    border-radius: 4px;
    background: var(--press-text);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
}

#bo_list.press_board_list .press-search-button:hover {
    border-color: var(--press-accent);
    background: var(--press-accent);
}

#bo_list.press_board_list .press-search-button:focus-visible,
#bo_list.press_board_list a:focus-visible,
#bo_v.press_board_view a:focus-visible {
    outline: 3px solid rgba(227, 63, 66, .28);
    outline-offset: 3px;
}

#bo_list.press_board_list .tbl_head01 {
    width: 100%;
    margin: 0;
}

#bo_list.press_board_list .tbl_head01 table,
#bo_list.press_board_list .tbl_head01 tbody {
    display: block;
    width: 100%;
}

#bo_list.press_board_list .tbl_head01 thead {
    display: none;
}

#bo_list.press_board_list .tbl_head01 tbody tr {
    display: block;
    padding: 30px 0;
    border-bottom: 1px solid var(--press-line);
}

#bo_list.press_board_list .tbl_head01 tbody tr:first-child {
    border-top: 2px solid var(--press-text);
}

#bo_list.press_board_list .tbl_head01 tbody td:not(.td_subject) {
    display: none;
}

#bo_list.press_board_list .press_entries {
    width: 100%;
    border-top: 2px solid var(--press-text);
}

#bo_list.press_board_list .press_entries > ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

#bo_list.press_board_list .press_list_entry {
    position: relative;
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid var(--press-line);
    box-sizing: border-box;
}

#bo_list.press_board_list .press_list_entry.is_notice {
    background: var(--press-soft);
}

#bo_list.press_board_list .press_select {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 0;
}

#bo_list.press_board_list .tbl_head01 td.td_subject {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

#bo_list.press_board_list .press_list_item {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: center;
    gap: 34px;
    width: 100%;
    min-height: 141px;
}

#bo_list.press_board_list .press_list_thumb {
    display: block;
    width: 250px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    background: var(--press-soft);
}

#bo_list.press_board_list .press_list_thumb img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    transition: transform .3s ease;
}

#bo_list.press_board_list .press_list_entry:hover .press_list_thumb img {
    transform: scale(1.025);
}

#bo_list.press_board_list .press_list_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

#bo_list.press_board_list .press_list_heading {
    margin: 0;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
}

#bo_list.press_board_list .press_empty {
    margin: 0;
    padding: 80px 0;
    border-bottom: 1px solid var(--press-line);
    color: var(--press-muted);
    font-size: 15px;
    text-align: center;
}

#bo_list.press_board_list .td_subject .sb_vimg {
    position: static;
    display: block;
    width: 250px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    background: var(--press-soft);
}

#bo_list.press_board_list .td_subject .sb_vimg > a,
#bo_list.press_board_list .td_subject .list_img {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

#bo_list.press_board_list .td_subject .list_img {
    margin: 0;
    border: 0;
    object-fit: cover;
    transition: transform .3s ease;
}

#bo_list.press_board_list .tbl_head01 tr:hover .list_img {
    transform: scale(1.025);
}

#bo_list.press_board_list .td_subject .sb_content {
    float: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    height: auto !important;
    margin: 0 !important;
}

#bo_list.press_board_list .press_list_meta {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px;
}

#bo_list.press_board_list .press_list_label {
    color: var(--press-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
}

#bo_list.press_board_list .press_list_date {
    display: block;
    margin: 0;
    color: #8a8a8f;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

#bo_list.press_board_list .td_subject .sb_content p {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.45;
}

#bo_list.press_board_list .press_list_title {
    display: inline;
    color: var(--press-text);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#bo_list.press_board_list .press_list_title:hover {
    color: var(--press-accent-dark);
}

#bo_list.press_board_list .press_list_excerpt {
    display: -webkit-box;
    max-width: 780px;
    margin-top: 12px;
    overflow: hidden;
    color: var(--press-muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

#bo_list.press_board_list .press_list_bottom_controls {
    width: 100%;
    margin: 26px 0 0;
}

#bo_list.press_board_list .btn_bo_user a,
#bo_list.press_board_list .btn_bo_adm input {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid #d8d8db;
    border-radius: 4px;
    background: #fff;
    color: #333438;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
}

#bo_v.press_board_view {
    width: min(1040px, calc(100% - 64px));
    margin: 0 auto;
    padding: 88px 0 150px;
    color: var(--press-text);
    box-sizing: border-box;
}

#bo_v.press_board_view .press_article_header {
    max-width: 860px;
    margin: 0 auto 62px;
    padding: 0 0 30px;
    border-bottom: 1px solid var(--press-line);
    text-align: left;
}

#bo_v.press_board_view .press_article_eyebrow {
    display: block;
    margin-bottom: 15px;
    color: var(--press-accent);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

#bo_v.press_board_view #bo_v_title {
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--press-text);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#bo_v.press_board_view .press_article_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
    margin-top: 20px;
    color: #77787c;
    font-size: 14px;
    line-height: 1.5;
}

#bo_v.press_board_view .press_article_meta span + time::before {
    display: inline-block;
    width: 1px;
    height: 12px;
    margin-right: 18px;
    background: #d5d5d8;
    vertical-align: -1px;
    content: "";
}

#bo_v.press_board_view #bo_v_info,
#bo_v.press_board_view #bo_v_top {
    display: none;
}

#bo_v.press_board_view #bo_v_atc {
    min-height: 0;
}

#bo_v.press_board_view #bo_v_con {
    width: min(780px, 100%);
    margin: 0 auto;
    overflow: visible;
    color: #393a3d;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.95;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

#bo_v.press_board_view #bo_v_con > * {
    max-width: 100%;
}

#bo_v.press_board_view #bo_v_con p,
#bo_v.press_board_view #bo_v_con div {
    margin: 0 0 22px;
    padding: 0;
    line-height: inherit;
}

#bo_v.press_board_view #bo_v_con span,
#bo_v.press_board_view #bo_v_con font {
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: 0 !important;
}

#bo_v.press_board_view #bo_v_con p:has(> br:only-child),
#bo_v.press_board_view #bo_v_con div:has(> br:only-child) {
    display: none;
}

#bo_v.press_board_view #bo_v_con .press-content-lead {
    margin: 0 0 38px;
    padding: 22px 0 22px 24px;
    border-left: 3px solid var(--press-accent);
    color: #27272a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
}

#bo_v.press_board_view #bo_v_con .press-content-byline {
    margin: 0 0 16px;
    color: #77787c;
    font-size: 14px;
    line-height: 1.6;
}

#bo_v.press_board_view #bo_v_con img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 42px auto;
    border: 0;
}

#bo_v.press_board_view #bo_v_con a {
    color: var(--press-accent-dark);
    text-decoration-color: rgba(201, 47, 51, .4);
    text-underline-offset: 3px;
}

#bo_v.press_board_view .press_source {
    width: min(780px, 100%);
    margin: 62px auto 0;
    padding: 22px 24px;
    border-top: 1px solid var(--press-line);
    border-bottom: 1px solid var(--press-line);
    box-sizing: border-box;
}

#bo_v.press_board_view .press_source_heading {
    margin: 0 0 10px;
    color: #77787c;
    font-size: 13px;
    font-weight: 700;
}

#bo_v.press_board_view .press_source_link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    color: var(--press-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

#bo_v.press_board_view .press_source_link:hover {
    color: var(--press-accent-dark);
}

#bo_v.press_board_view .press_article_navigation {
    width: min(860px, 100%);
    margin: 72px auto 0;
    border-top: 1px solid var(--press-text);
}

#bo_v.press_board_view .press_article_navigation a {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 18px;
    min-height: 74px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--press-line);
    color: var(--press-text);
    text-decoration: none;
    box-sizing: border-box;
}

#bo_v.press_board_view .press_article_navigation a:hover {
    color: var(--press-accent-dark);
}

#bo_v.press_board_view .press_nav_direction {
    color: #77787c;
    font-size: 13px;
    font-weight: 600;
}

#bo_v.press_board_view .press_nav_title {
    overflow: hidden;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#bo_v.press_board_view .press_nav_icon {
    color: #a0a0a4;
    text-align: center;
}

#bo_v.press_board_view .press_article_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    width: min(860px, 100%);
    margin: 26px auto 0;
    padding: 0;
    list-style: none;
}

#bo_v.press_board_view .press_article_actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid #d5d5d8;
    border-radius: 4px;
    background: #fff;
    color: #343438;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
}

#bo_v.press_board_view .press_article_actions a:hover {
    border-color: #aaaab0;
    background: var(--press-soft);
}

#bo_v.press_board_view .press_article_actions .press_action_primary {
    border-color: var(--press-text);
    background: var(--press-text);
    color: #fff;
}

#bo_v.press_board_view .press_article_actions .press_action_primary:hover {
    border-color: var(--press-accent);
    background: var(--press-accent);
    color: #fff;
}

#bo_v.press_board_view #bo_v_bot {
    display: none;
}

@media screen and (max-width: 768px) {
    #bo_list.press_board_list {
        width: 100% !important;
        padding: 48px 18px 110px;
    }

    #bo_list.press_board_list #bo_sch {
        display: block;
        margin-bottom: 24px;
    }

    #bo_list.press_board_list #bo_sch form {
        display: grid;
        grid-template-columns: 94px minmax(0, 1fr) 48px;
        gap: 6px;
    }

    #bo_list.press_board_list #bo_sch select,
    #bo_list.press_board_list #bo_sch input[type="text"] {
        width: 100%;
        min-width: 0;
        min-height: 42px;
        font-size: 13px;
    }

    #bo_list.press_board_list .press-search-button {
        min-width: 0;
        min-height: 42px;
        padding: 0;
        font-size: 15px;
    }

    #bo_list.press_board_list .press-search-button span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    #bo_list.press_board_list .tbl_head01 tbody tr {
        padding: 18px 0;
    }

    #bo_list.press_board_list .press_list_entry {
        padding: 20px 0;
    }

    #bo_list.press_board_list .press_list_item {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 14px;
        min-height: 72px;
    }

    #bo_list.press_board_list .press_list_thumb {
        width: 112px;
    }

    #bo_list.press_board_list .td_subject .sb_vimg {
        width: 112px;
    }

    #bo_list.press_board_list .press_list_meta {
        gap: 8px;
        margin-bottom: 7px;
    }

    #bo_list.press_board_list .press_list_label {
        font-size: 10px;
    }

    #bo_list.press_board_list .press_list_date {
        font-size: 11px;
    }

    #bo_list.press_board_list .press_list_title {
        display: -webkit-box;
        overflow: hidden;
        font-size: 15px;
        line-height: 1.45;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    #bo_list.press_board_list .press_list_excerpt {
        display: none;
    }

    #bo_list.press_board_list .bo_fx.press_list_bottom_controls {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 18px;
    }

    #bo_list.press_board_list .press_list_bottom_controls .btn_bo_adm,
    #bo_list.press_board_list .press_list_bottom_controls .btn_bo_user {
        display: contents;
    }

    #bo_list.press_board_list .press_list_bottom_controls li {
        float: none;
        width: auto;
        margin: 0;
    }

    #bo_list.press_board_list .press_list_bottom_controls .btn_bo_user li {
        grid-column: 2;
    }

    #bo_list.press_board_list .press_list_bottom_controls a,
    #bo_list.press_board_list .press_list_bottom_controls input {
        width: 100%;
        min-width: 0;
        padding-right: 10px;
        padding-left: 10px;
    }

    #bo_v.press_board_view {
        width: 100%;
        padding: 52px 18px 120px;
    }

    #bo_v.press_board_view .press_article_header {
        margin-bottom: 40px;
        padding-bottom: 24px;
    }

    #bo_v.press_board_view .press_article_eyebrow {
        margin-bottom: 12px;
        font-size: 12px;
    }

    #bo_v.press_board_view #bo_v_title {
        font-size: 27px;
        line-height: 1.42;
    }

    #bo_v.press_board_view .press_article_meta {
        margin-top: 16px;
        font-size: 12px;
    }

    #bo_v.press_board_view #bo_v_con {
        font-size: 16px;
        line-height: 1.85;
    }

    #bo_v.press_board_view #bo_v_con p,
    #bo_v.press_board_view #bo_v_con div {
        margin-bottom: 18px;
    }

    #bo_v.press_board_view #bo_v_con .press-content-lead {
        margin-bottom: 30px;
        padding: 17px 0 17px 17px;
        font-size: 16px;
        line-height: 1.75;
    }

    #bo_v.press_board_view #bo_v_con img {
        margin: 30px auto;
    }

    #bo_v.press_board_view .press_source {
        margin-top: 44px;
        padding: 18px 4px;
    }

    #bo_v.press_board_view .press_source_link {
        width: 100%;
        overflow: hidden;
        font-size: 14px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #bo_v.press_board_view .press_article_navigation {
        margin-top: 52px;
    }

    #bo_v.press_board_view .press_article_navigation a {
        grid-template-columns: 58px minmax(0, 1fr) 16px;
        gap: 10px;
        min-height: 64px;
        padding: 10px 2px;
    }

    #bo_v.press_board_view .press_nav_direction {
        font-size: 12px;
    }

    #bo_v.press_board_view .press_nav_title {
        font-size: 13px;
    }

    #bo_v.press_board_view .press_article_actions {
        justify-content: stretch;
        margin-top: 20px;
    }

    #bo_v.press_board_view .press_article_actions li {
        flex: 1 1 auto;
    }

    #bo_v.press_board_view .press_article_actions a {
        width: 100%;
        min-height: 46px;
        padding: 0 13px;
        font-size: 13px;
    }
}
