:root {
    --column_font_base: "IBM Plex Sans JP", sans-serif;
    --column_font_en: "Jost", sans-serif;
    --column_font_mincho: "Shippori Mincho B1", serif;
    --column_color_text: #32373E;
    --column_color_text_light: #6B6F75;
    --column_color_text_dark: #20242a;
    --column_color_red: #C50018;
    --column_color_white: #ffffff;
    --column_color_black: #000000;
    --column_color_bg: #F0F1F4;
    --column_color_box_bg: #DFE2E5;
    --column_color_line: #CCCFD1;
}

.first_area {
    .first_wrap {
        max-width: 1280px;
        margin: 0 auto;
    }
}

.column_detail_area {
    padding: 0 16px;
    margin-top: 96px;
    font-family: var(--column_font_base);

    .column_detail_wrap {
        display: grid;
        grid-template-columns: minmax(0, 920px) 320px;
        align-items: start;
        gap: 40px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .column_detail_main {
        min-width: 0;
    }

    .column_detail_article {
        color: var(--column_color_text);
    }

    .column_detail_head {
        margin-bottom: 64px;
    }

    .column_detail_meta {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .column_detail_number {
        font-family: var(--column_font_en);
        font-weight: 600;
        font-size: 60px;
        line-height: 87px;
        color: var(--column_color_red);
    }

    .column_detail_category {
        padding: 5px 16px 2px;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: var(--column_color_white);
        background-color: var(--column_color_red);
        border-radius: 999px;
    }

    .column_detail_head h2 {
        margin: 0 0 15px;
        font-weight: 600;
        font-size: 28px;
        line-height: 42px;
        letter-spacing: 0;
        color: var(--column_color_text);
        font-family: var(--column_font_base);
    }

    .column_detail_tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 32px;

        span {
            padding: 3px 12px 2px;
            font-weight: 600;
            font-size: 14px;
            line-height: 21px;
            /* color: var(--column_color_text_light); */
            color: var(--column_color_text);
            border: 1px solid var(--column_color_line);
            border-radius: 999px;
        }
    }

    .column_detail_hero {
        aspect-ratio: 920 / 613;
        margin: 0 0 24px;
        overflow: hidden;
        border-radius: 4px;

        img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .column_detail_date {
        display: inline-block;
        font-family: var(--column_font_en);
        font-weight: 600;
        font-size: 12px;
        line-height: 18px;
        color: var(--column_color_text_light);
    }

    .column_detail_dates {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;

        dl {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0;
            font-family: var(--column_font_base);
            font-weight: 600;
            font-size: 12px;
            line-height: 18px;
            color: var(--column_color_text_light);
        }

        dt {
            padding: 4px 8px 2px;
            color: var(--column_color_text);
            background-color: var(--column_color_box_bg);
        }

        dd {
            margin: 0;
            font-weight: 500;
        }
    }

    .column_detail_image_placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        min-height: 120px;
        font-family: var(--column_font_en);
        font-weight: 600;
        font-size: 14px;
        line-height: 1;
        color: var(--column_color_text_light);
        background:
            linear-gradient(135deg, rgba(197, 0, 24, 0.08), rgba(50, 55, 62, 0.12)),
            var(--column_color_bg);
    }

    .column_detail_lead {
        margin: 64px 0 88px;

        p {
            margin: 0;
            font-weight: 500;
            font-size: 16px;
            line-height: 28px;
            color: var(--column_color_text);
        }

        .column_detail_note {
            margin-bottom: 25px;
            font-size: 14px;
            line-height: 20px;
            color: var(--column_color_text_light);
        }
    }

    .column_detail_toc {
        margin-bottom: 0;
        border: 1px solid var(--column_color_line);
        border-radius: 4px;
        overflow: hidden;
        background-color: var(--column_color_white);

        h3 {
            margin: 0;
            padding: 17px 25px 15px;
            font-weight: 600;
            font-family: var(--column_font_base);
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0;
            color: var(--column_color_white);
            background-color: var(--column_color_text);
        }

        ol {
            display: grid;
            gap: 16px;
            padding: 29px 25px 27px;
            margin: 0;
            list-style: none;
        }

        li {
            position: relative;
            padding-left: 22px;

            &:before {
                content: '';
                position: absolute;
                top: 10px;
                left: 0;
                width: 8px;
                height: 8px;
                background-color: var(--column_color_red);
                border-radius: 50%;
            }
        }

        a {
            font-weight: 600;
            font-size: 16px;
            line-height: 24px;
            color: var(--column_color_text);
            text-decoration: underline;
            text-underline-offset: 3px;

            &:hover {
                opacity: 0.7;
            }
        }
    }

    .column_detail_body {
        padding: 64px 40px 56px;
        background-color: var(--column_color_white);
        color: var(--column_color_text);
    }

    .column_detail_intro_box {
        padding: 32px;
        margin-bottom: 48px;
        border: 1px solid var(--column_color_line);

        h3 {
            margin: 0 0 20px;
            text-align: center;
            font-weight: 600;
            font-size: 20px;
            line-height: 30px;
            color: var(--column_color_red);
        }

        p {
            margin: 0 0 20px;
            font-size: 15px;
            line-height: 27px;
        }

        ol {
            display: grid;
            gap: 16px;
            padding-left: 20px;
            margin: 0;
            font-size: 15px;
            line-height: 27px;

            li::marker {
                color: var(--column_color_red);
                font-weight: 600;
            }
        }
    }

    .column_detail_section {
        margin-top: 96px;
        scroll-margin-top: 100px;

        h3 {
            margin: 0 0 48px;
            padding: 28px 16px 25px;
            text-align: center;
            font-weight: 600;
            font-size: 22px;
            line-height: 33px;
            font-family: var(--column_font_base);
            letter-spacing: 0;
            color: var(--column_color_text);
            border-bottom: 1px solid var(--column_color_text);
            border-top: 1px solid var(--column_color_text);

            span {
                color: var(--column_color_red);
            }
        }

        h4 {
            position: relative;
            margin: 56px 0 21px;
            padding-left: 16px;
            font-weight: 600;
            font-size: 22px;
            line-height: 33px;
            font-family: var(--column_font_base);
            letter-spacing: 0;
            color: var(--column_color_text_dark);

            &:before {
                content: '';
                position: absolute;
                top: 3px;
                left: 0;
                width: 4px;
                height: 22px;
                background-color: var(--column_color_red);
            }
        }

        h5 {
            margin: 56px 0 22px;
            font-weight: 600;
            font-size: 20px;
            line-height: 30px;
            font-family: var(--column_font_base);
            letter-spacing: 0;
            color: var(--column_color_text_dark);

            span {
                color: var(--column_color_red);
            }
        }

        p {
            margin: 0 0 20px;
            font-weight: 500;
            font-size: 16px;
            line-height: 28px;
            color: var(--column_color_text);
        }

        strong {
            color: var(--column_color_red);
            font-weight: 600;
        }

        .highlight {
            background: linear-gradient(transparent 50%, rgba(197, 0, 24, 0.2) 50%, rgba(197, 0, 24, 0.2) 75%, transparent 75%);
        }

        figure {
            aspect-ratio: 600 / 431;
            margin: 56px auto 24px;
            overflow: hidden;
            border-radius: 4px;
        }
        .column_detail_source {
            margin-bottom: 57px;
            font-size: 14px;
            line-height: 20px;
            color: var(--column_color_text_light);
    
            a {
                color: #0356CB;
                text-decoration: underline;
                font-size: inherit;
    
                &:hover {
                    opacity: 0.7;
                }
            }
        }
    }

    .column_detail_asset_section {
        margin-top: 0;
    }

    .column_detail_land_section {
        .column_detail_land_image {
            max-width: 600px;
            aspect-ratio: 600 / 400;
            margin: 48px auto 56px;
            border-radius: 4px;

            img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }

    .column_detail_assessment_section {
        .column_detail_assessment_image {
            max-width: 600px;
            aspect-ratio: 600 / 400;
            margin: 48px auto 56px;
            border-radius: 4px;
            overflow: hidden;

            img {
                display: block;
                width: 100%;
                height: auto;
                object-fit: cover;
            }
        }
    }

    .column_detail_action_section {
        .column_detail_action_image {
            max-width: 600px;
            aspect-ratio: 600 / 400;
            margin: 48px auto 56px;
            border-radius: 4px;
            overflow: hidden;

            img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }

    .p_voice_cta_list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 19px;
        margin-top: 96px;

        .p_voice_cta_box {
            position: relative;

            .img {
                img {
                    width: 100%;
                }
            }

            .text {
                position: absolute;
                top: 50%;
                width: 100%;
                transform: translateY(-50%);
                text-align: center;

                p {
                    position: relative;
                    display: inline-block;
                    margin-bottom: 6px;
                    padding-bottom: 7px;
                    font-family: "IBM Plex Sans JP", sans-serif;
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 26px;

                    &:before {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 100%;
                        height: 8px;
                        background: url(../images/voice/banner_border_red.png) center / cover no-repeat;
                    }
                }

                h3 {
                    margin-bottom: 12px;
                    font-family: "IBM Plex Sans JP", sans-serif;
                    font-weight: 600;
                    font-size: 24px;
                    line-height: 32px;
                    color: #c50018;
                }

                .link {
                    display: inline-block;
                    min-width: 240px;
                    max-width: 320px;
                    margin: 0 auto;
                    padding: 12px 41px 12px 27px;
                    font-family: "IBM Plex Sans JP", sans-serif;
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 24px;
                    text-align: center;
                    color: #ffffff;
                    background: url("../images/common/white_circle_red_arrow.png") center right 12px / 24px no-repeat;
                    background-color: #c50018;
                    border-radius: 32px;
                    transition: 0.3s;

                    &:hover {
                        opacity: 0.7;
                    }
                }
            }
        }
    }

    .column_author_box {
        margin-top: 96px;
        overflow: hidden;
        background-color: var(--column_color_white);
        border: 1px solid var(--column_color_line);
        border-radius: 4px;

        h2 {
            margin: 0;
            padding: 18px 25px 14px;
            font-family: var(--column_font_base);
            font-weight: 600;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0;
            color: var(--column_color_white);
            background-color: var(--column_color_text);
        }
    }

    .column_author_content {
        display: grid;
        grid-template-columns: 160px minmax(0, 1fr);
        align-items: center;
        gap: 40px;
        padding: 40px;
    }

    .column_author_image {
        width: 160px;
        aspect-ratio: 1 / 1;
        margin: 0;
        overflow: hidden;
        border-radius: 4px;

        img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .column_author_text {
        h3 {
            margin: 0;
            padding-bottom: 10px;
            font-family: var(--column_font_base);
            font-weight: 600;
            font-size: 20px;
            line-height: 30px;
            letter-spacing: 0;
            color: var(--column_color_text);
            border-bottom: 1px solid var(--column_color_line);
        }

        p {
            margin: 20px 0 0;
            font-weight: 500;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0;
            color: var(--column_color_text);
        }
    }

    .column_detail_related_slider_area {
        margin-top: 96px;

        > h2 {
            margin: 0px 0 32px;
            padding: 28px 0 25px;
            font-family: var(--column_font_base);
            font-weight: 600;
            font-size: 22px;
            line-height: 33px;
            text-align: center;
            letter-spacing: 0;
            color: var(--column_color_text);
            border-top: 1px solid var(--column_color_line);
            border-bottom: 1px solid var(--column_color_line);
        }
    }

    .column_detail_related_slider_wrap {
        position: relative;
        padding-bottom: 80px;
    }

    .column_detail_related_slider {
        margin: 0;

        .slick-list {
            overflow: hidden;
        }

        .slick-dots {
            display: flex !important;
            justify-content: center;
            gap: 20px;
            bottom: -52px;

            li {
                width: 8px;
                height: 8px;
                margin: 0;

                button {
                    width: 8px;
                    height: 8px;
                    padding: 0;
                    border-radius: 50%;
                    background-color: #ADB0B5;

                    &:before {
                        content: none;
                    }
                }

                &.slick-active button {
                    background-color: #32373E;
                }
            }
        }
    }

    .column_detail_related_slider_card {
        display: grid;
        grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
        align-items: center;
        gap: 40px;
        min-height: 408px;
        padding: 64px 40px;
        color: var(--column_color_text);
        background-color: var(--column_color_white);
        border: 1px solid var(--column_color_line);
        border-radius: 4px;

        &:hover {
            border-color: rgb(197, 0, 24);

            .column_detail_related_slider_image img {
                transform: scale(1.1);
            }

            .column_detail_related_slider_content {
                opacity: 0.7;
            }
        }
    }

    .column_detail_related_slider_image {
        display: block;
        aspect-ratio: 420 / 280;
        overflow: hidden;
        border-radius: 4px;

        img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
    }

    .column_detail_related_slider_content {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .column_detail_related_slider_head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .column_detail_related_slider_number {
        font-family: var(--column_font_en);
        font-weight: 600;
        font-size: 32px;
        line-height: 46px;
        color: var(--column_color_red);
    }

    .column_detail_related_slider_category {
        padding: 4px 16px 3px;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: var(--column_color_white);
        background-color: var(--column_color_red);
        border-radius: 999px;
    }

    .column_detail_related_slider_title {
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0;
        color: var(--column_color_text);
    }

    .column_detail_related_slider_tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 6px;
        margin-top: 9px;

        span {
            padding: 2px 10px 0;
            font-weight: 500;
            font-size: 12px;
            line-height: 18px;
            color: var(--column_color_text);
            border: 1px solid var(--column_color_line);
            border-radius: 999px;
        }
    }

    .column_detail_related_slider_dates {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 22px;

        span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--column_color_text);
        }

        b {
            padding: 3px 8px 2px;
            font-weight: 600;
            font-size: 10px;
            line-height: 15px;
            background-color: var(--column_color_bg);
            border-radius: 2px;
        }

        time {
            font-weight: 500;
            font-size: 12px;
            line-height: 18px;
        }
    }

    .column_detail_related_arrow {
        position: absolute;
        bottom: 0;
        z-index: 2;
        width: 80px;
        height: 64px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 0;
        cursor: pointer;
        transition: opacity 0.3s;

        &:hover {
            opacity: 0.7;
        }

        img {
            display: block;
            width: 60px;
            height: 48px;
        }
    }

    .column_detail_related_prev {
        left: 230px;
    }

    .column_detail_related_next {
        right: 230px;

        img {
            transform: rotate(180deg);
        }
    }

    .column_detail_chart {
        max-width: 640px;
        aspect-ratio: auto;
        margin: 48px auto 24px;
        border-radius: 4px;

        img {
            display: block;
            width: 100%;
            height: auto;
        }
    }

    .column_detail_related_card {
        display: grid;
        grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
        gap: 38px;
        align-items: center;
        padding: 40px 40px 36px;
        margin: 56px 0 96px;
        color: var(--column_color_text);
        border: 1px solid var(--column_color_line);
        background-color: var(--column_color_white);
        border-radius: 4px;

        &:hover {
            border-color: rgb(197, 0, 24);

            .column_detail_related_image img{
                transform: scale(1.1);
            }

            .column_detail_related_content {
                opacity: 0.7;
            }
        }
    }

    .column_detail_related_image {
        display: block;
        aspect-ratio: 360 / 280;
        overflow: hidden;
        border-radius: 4px;

        img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
    }

    .column_detail_related_content {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .column_detail_related_head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .column_detail_related_number {
        font-family: var(--column_font_en);
        font-weight: 600;
        font-size: 32px;
        line-height: 46px;
        color: var(--column_color_red);
    }

    .column_detail_related_category {
        padding: 4px 16px 3px;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: var(--column_color_white);
        background-color: var(--column_color_red);
        border-radius: 999px;
    }

    .column_detail_related_title {
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
        color: var(--column_color_text_dark);
    }

    .column_detail_related_tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 6px;
        margin-top: 11px;

        span {
            padding: 2px 10px 0px;
            font-weight: 500;
            font-size: 12px;
            line-height: 18px;
            color: var(--column_color_text);
            border: 1px solid var(--column_color_line);
            border-radius: 999px;
        }
    }

    .column_detail_related_dates {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 18px;
        color: var(--column_color_text);

        span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 10px;
            line-height: 15px;
        }
        b {
            padding: 3px 6px 2px;
            font-weight: 600;
            background-color: var(--column_color_box_bg);
        }
        time {
            font-weight: 500;
            font-size: 12px;
            line-height: 18px;
        }
    }

    .column_detail_related_more {
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        gap: 4px;
        margin-top: 8px;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: var(--column_color_text_dark);
        align-self: flex-end;

        &:after {
            content: '';
            width: 20px;
            height: 20px;
            background: url('../images/column/column-sidebar-ranking-arrow.png') center / contain no-repeat;
        }
    }

    .column_detail_related_card_sp {
        display: none;
    }

    .column_detail_sidebar {
        /* position: sticky; */
        top: 24px;
        display: grid;
        gap: 16px;
    }

    .column_side_box {
        padding: 16px;
        background-color: var(--column_color_white);
        border: 1px solid var(--column_color_line);

        h3 {
            margin: 0 0 12px;
            padding-bottom: 10px;
            font-family: var(--column_font_base);
            font-weight: 600;
            font-size: 14px;
            line-height: 20px;
            color: var(--column_color_text_dark);
            border-bottom: 1px solid var(--column_color_line);
        }
    }

    .column_side_button {
        display: block;
        padding: 10px 14px;
        font-weight: 600;
        font-size: 13px;
        line-height: 18px;
        text-align: center;
        color: var(--column_color_text_dark);
        border: 1px solid var(--column_color_line);
        border-radius: 999px;

        &+.column_side_button {
            margin-top: 8px;
        }

        &:hover {
            opacity: 0.7;
        }
    }

    .column_side_button_red {
        color: var(--column_color_white);
        background-color: var(--column_color_red);
        border-color: var(--column_color_red);
    }

    .column_side_category {
        display: grid;
        gap: 8px;
        padding: 0;
        margin: 0;
        list-style: none;

        a {
            display: block;
            font-size: 13px;
            line-height: 20px;
            color: var(--column_color_text);

            &:hover {
                color: var(--column_color_red);
            }
        }
    }

    .column_side_tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;

        a {
            padding: 3px 9px;
            font-size: 12px;
            line-height: 18px;
            color: var(--column_color_text);
            border: 1px solid var(--column_color_line);
            border-radius: 999px;
        }
    }

    .column_side_ranking {
        display: grid;
        gap: 12px;
        padding: 0;
        margin: 0;
        list-style: none;

        a {
            display: grid;
            grid-template-columns: 18px 64px minmax(0, 1fr);
            gap: 8px;
            align-items: start;

            &:hover {
                border-color: rgb(197, 0, 24);

                .column_side_thumb img{
                    transform: scale(1.1);
                }
            }
        }
    }

    .column_side_rank {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        font-family: var(--column_font_en);
        font-weight: 600;
        font-size: 12px;
        line-height: 1;
        color: var(--column_color_white);
        background-color: var(--column_color_red);
    }

    .column_side_thumb {
        display: block;
        aspect-ratio: 64 / 44;
        background:
            linear-gradient(135deg, rgba(197, 0, 24, 0.08), rgba(50, 55, 62, 0.12)),
            var(--column_color_bg);
        overflow: hidden;

        img {
            transition: transform 0.3s ease;
        }
    }

    .column_side_text {
        display: -webkit-box;
        font-weight: 600;
        font-size: 12px;
        line-height: 18px;
        color: var(--column_color_text_dark);
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .column_detail_sidebar {
        width: 320px;
        gap: 0;
        padding: 32px 20px;
        background-color: var(--column_color_white);
        border: 1px solid var(--column_color_line);
        border-radius: 4px;
    }

    .column_side_section {
        margin-bottom: 48px;

        &:last-child {
            margin-bottom: 0;
        }

        h3 {
            margin: 0;
            text-align: center;
            font-family: var(--column_font_base);
            font-weight: 600;
            font-size: 18px;
            line-height: 27px;
            letter-spacing: 0;
            color: var(--column_color_text_dark);
            padding: 24px 0 24px;
            border-top: 1px solid var(--column_color_line);
            border-bottom: 1px solid var(--column_color_line);
        }
    }

    .column_side_purpose {

        h3 {
            margin-bottom: 24px;
        }
    }

    .column_side_purpose_button {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 12px 50px 11px;
        position: relative;
        font-weight: 600;
        font-size: 14px;
        line-height: 24px;
        color: var(--column_color_white);
        border-radius: 999px;
        border: 1px solid var(--column_color_line);

        .lagr_text {
            font-size: 16px;
        }

        &+.column_side_purpose_button {
            margin-top: 20px;
        }

        &:after {
            content: '';
            position: absolute;
            top: 50%;
            right: 13px;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
        }

        &:hover {
            opacity: 0.7;
        }
    }

    .column_side_purpose_button_sell {
        background-color: var(--column_color_red);

        &:after {
            background-image: url('../images/column/column-sidebar-button-arrow-red.png');
        }
    }

    .column_side_purpose_button_buy {
        background-color: var(--column_color_text);

        &:after {
            background-image: url('../images/column/column-sidebar-button-arrow-dark.png');
        }
    }

    .column_side_category_section {
        h3 {
            margin-bottom: 26px;
        }
    }

    .column_side_category {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 6px;
        padding: 22px 15px 20px 14px;
        margin: 0;
        border: 1px solid var(--column_color_line);
        border-radius: 4px;

        a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 20px;
            padding: 2px 10px 0px;
            font-weight: 500;
            font-size: 12px;
            line-height: 18px;
            color: var(--column_color_text);
            border: 1px solid var(--column_color_line);
            border-radius: 999px;
            background-color: var(--column_color_white);

            &.active,
            &:hover {
                color: var(--column_color_red);
                border-color: var(--column_color_red);
            }
        }
    }

    .column_side_ranking_section {
        h3 {
            margin-bottom: 26px;
        }
    }

    .column_side_ranking {
        gap: 16px;
    }

    .column_side_ranking li {
        margin: 0;
    }

    .column_side_ranking a {
        display: grid;
        grid-template-columns: 64px minmax(0, 148px) 16px;
        align-items: center;
        gap: 12px;
        min-height: 104px;
        position: relative;
        padding: 20px 12px 18px 16px;
        border: 1px solid var(--column_color_line);
        border-radius: 4px;
        background-color: var(--column_color_white);
        overflow: hidden;
    }

    .column_side_rank {
        position: absolute;
        top: -1px;
        left: -1px;
        z-index: 1;
        width: 32px;
        height: 32px;
        font-size: 18px;
        line-height: 1;
        border-radius: 0 0 4px 0
    }

    .column_side_thumb {
        display: block;
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: 2px;
    }

    .column_side_text {
        -webkit-line-clamp: 3;
        font-size: 14px;
        line-height: 20px;
        color: var(--column_color_text_dark);
    }

    .column_side_ranking a:after {
        content: '';
        width: 16px;
        height: 16px;
        background: url("../images/column/column-sidebar-ranking-arrow.png") center / contain no-repeat;
    }
}

.first_wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

.column_buttons_container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 96px;

    .column_btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 550px;
        height: 64px;
        font-family: "IBM Plex Sans JP", sans-serif;
        font-weight: 600;
        font-size: 18px;
        color: #ffffff;
        line-height: 24px;
        border-radius: 32px;
        transition: opacity 0.3s;
        text-decoration: none;
        box-sizing: border-box;
        padding: 0 24px;

        &:hover {
            opacity: 0.7;
            color: #ffffff;
        }

        &.column_btn_seller {
            background: url('/assets/images/common/white_circle_red_arrow.png') center right 20px / 24px no-repeat;
            background-color: #c50018;
        }

        &.column_btn_buyer {
            background: url('/assets/images/common/white_circle_gray_arrow.png') center right 20px / 24px no-repeat;
            background-color: #32373e;
        }

        span {
            font-size: 20px;
        }
    }
}

.column_slider_area {
    margin-top: 96px;
    margin-bottom: 96px;

    .column_slider_wrapper {
        position: relative;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .column-arrow {
        position: absolute;
        top: 218px;
        transform: translateY(-50%);
        width: 80px;
        height: 64px;
        background-color: #32373e;
        border: 1px solid #CCCFD1;
        border-radius: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 100;
        transition: opacity 0.3s;
        padding: 0;
        box-sizing: border-box;



        img {
            width: 16px;
            height: 14px;
            display: block;
        }

        &.column-prev {
            left: calc(50% - 610px);
        }

        &.column-next {
            right: calc(50% - 610px);
        }
    }

    .column_slider {
        margin: 0;
    }

    .column_slider_item {
        width: 1120px;
        margin: 0 10px;
        box-sizing: border-box;
        display: block !important;
    }

    .column_card {
        display: flex;
        width: 1120px;
        height: 437px;
        padding: 48px 64px 48px 48px;
        box-sizing: border-box;
        background: #ffffff;
        border: 1px solid #CCCFD1;
        border-radius: 4px;
        gap: 64px;
        cursor: pointer;
        transition: border-color 0.3s ease;

        &:hover {
            border-color: #C50018;

            .column_card_img img {
                transform: scale(1.1);
            }

            .column_card_info {
                opacity: 0.7;
            }
        }

        .column_card_img {
            width: 512px;
            height: 341px;
            flex-shrink: 0;
            overflow: hidden;
            border-radius: 4px;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 4px;
                transition: transform 0.3s ease;
            }
        }

        .column_card_info {
            display: flex;
            flex-direction: column;
            padding-top: 40px;
            padding-bottom: 36px;
            justify-content: space-between;
            flex-grow: 1;
            transition: opacity 0.3s ease;
        }

        .column_card_header {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }

        .column_card_num {
            font-family: 'Jost', sans-serif;
            font-size: 32px;
            font-weight: 600;
            line-height: 46px;
            color: #C50018;
            margin-right: 12px;
        }

        .column_card_badge {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 158px;
            height: 28px;
            background-color: #C50018;
            color: #ffffff;
            font-family: "IBM Plex Sans JP", sans-serif;
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            border-radius: 14px;
            text-align: center;
        }

        .column_card_title {
            font-family: "IBM Plex Sans JP", sans-serif;
            font-size: 20px;
            font-weight: 600;
            line-height: 32px;
            color: #32373e;
            margin-bottom: 12px;
        }

        .column_card_tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 6px;
            max-width: 314px;
        }

        .column_card_tag {
            font-family: "IBM Plex Sans JP", sans-serif;
            font-size: 12px;
            font-weight: 500;
            line-height: 18px;
            color: #32373e;
            border: 1px solid rgba(50, 55, 62, 0.3);
            border-radius: 20px;
            padding: 0 9px;
        }

        .column_card_dates {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
        }

        .column_card_date_label {
            font-family: "IBM Plex Sans JP", sans-serif;
            font-size: 10px;
            font-weight: 600;
            line-height: 15px;
            color: #32373e;
            background-color: #F0F1F4;
            border-radius: 2px;
            padding: 2px 6px;
        }

        .column_card_date_val {
            font-family: "IBM Plex Sans JP", sans-serif;
            font-size: 12px;
            font-weight: 500;
            line-height: 18px;
            color: #32373e;
            margin-right: 8px;

            &:last-child {
                margin-right: 0;
            }
        }
    }

    .slick-dots {
        display: flex !important;
        justify-content: center !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 32px 0 0 0 !important;
        gap: 12px !important;
        position: static !important;

        li {
            width: 8px !important;
            height: 8px !important;
            margin: 0 !important;
            padding: 0 !important;

            button {
                width: 8px !important;
                height: 8px !important;
                border-radius: 50% !important;
                background-color: #CCCFD1 !important;
                border: none !important;
                padding: 0 !important;
                font-size: 0 !important;
                cursor: pointer !important;
                opacity: 1 !important;
                transition: background-color 0.3s !important;

                &::before {
                    content: none !important;
                }
            }

            &.slick-active button {
                background-color: #32373E !important;
                opacity: 1 !important;
            }
        }
    }
}




.column_main_content {
    margin-top: 96px;
}

.column_main_wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.column_left {
    width: 920px;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.column_right {
    width: 320px;
    height: max-content;
    background: #ffffff;
    border: 1px solid #CCCFD1;
    border-radius: 4px;
    padding: 32px 20px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.column_section_title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 28px 0 25px;
    border-top: 1px solid #cccfd1;
    border-bottom: 1px solid #cccfd1;
    background-color: #f0f1f4;
    text-align: center;
    width: 100%;
    font-weight: 600;

    h2 {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-weight: 600;
        font-size: 22px;
        line-height: 33px;
        color: #32373e;
        margin: 0;
    }
}

.column_category_section {
    display: flex;
    flex-direction: column;
}

.category_tags_box {
    width: 100%;
    max-width: 920px;
    max-height: 148px;
    padding: 40px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #CCCFD1;
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 8px;
    margin-top: 32px;

    .category_tag {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: #32373e;
        text-decoration: none;
        padding: 4px 12px 4px;
        border: 1px solid rgba(50, 55, 62, 0.3);
        border-radius: 50px;
        transition: all 0.3s ease;
        height: 26px;

        &:hover {
            border-color: #C50018;
            color: #C50018;
        }

        &.active {
            color: #C50018;
            border-color: #C50018;
            font-weight: 500;
        }
    }
}



.column_right .popular_title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 21px;
    padding-bottom: 18px;
    border-top: 1px solid #cccfd1;
    border-bottom: 1px solid #cccfd1;
    background-color: #ffffff;
    text-align: center;
    width: 100%;

    h2 {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-weight: 600;
        font-size: 18px;
        line-height: 28px;
        color: #32373e;
        margin: 0;
    }
}

.popular_cards_list {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    gap: 16px;
}

.popular_card {
    position: relative;
    display: flex;
    align-items: center;
    height: 104px;
    width: 100%;
    padding: 12px 30px 12px 12px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #CCCFD1;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.3s, border-color 0.3s;

    &:hover {
        border-color: #C50018;

        .popular_card_img img {
            transform: scale(1.1);
        }
    }

    .popular_num {
        position: absolute;
        top: -1px;
        left: -1px;
        width: 32px;
        height: 32px;
        background-color: #C50018;
        color: #ffffff;
        font-family: "IBM Plex Sans JP", sans-serif;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-top-left-radius: 3px;
        border-bottom-right-radius: 3px;
        z-index: 2;
    }

    .popular_card_img {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
        margin-left: 12px;
        overflow: hidden;
        border-radius: 2px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 2px;
            transition: transform 0.3s ease;
        }
    }

    .popular_card_title {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        color: #32373e;
        margin: 8px 0 0 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: left;
    }

    .popular_arrow {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        display: flex;
        justify-content: center;
        align-items: center;

        img {
            width: 16px;
            height: 16px;
            object-fit: contain;
        }
    }
}

.sidebar_banners {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.sidebar_cta_box {
    position: relative;
    width: 279px;
    height: 171px;
    border: 2px solid #C50018;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 22px 25px;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    &:first-of-type::before {
        /* background: linear-gradient(180deg, rgb(253, 221, 225) 0%, rgb(255, 255, 255) 0%, rgb(253, 221, 225) 100%); */
        background: url('/assets/images/column/simulation-back.webp') center no-repeat;
        background-size: cover;
    }

    &:last-of-type::before {
        /* background: linear-gradient(180deg, rgb(240, 241, 244) 0%, rgb(255, 255, 255) 0%, rgb(240, 241, 244) 100%); */
        background: url('/assets/images/column/satei-back.webp') center no-repeat;
        background-size: cover;
    }

    .sidebar_cta_inner {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        width: 100%;
    }

    .sidebar_cta_lead {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 10px;
        font-weight: 600;
        line-height: 16px;
        color: #32373e;
        margin: 0;
        padding-bottom: 7px;
        position: relative;
        display: inline-block;

        &::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 8px;
            background: url('/assets/images/voice/banner_border_red.png') center / contain no-repeat;
        }
    }

    .sidebar_cta_title {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-weight: 600;
        font-size: 17px;
        line-height: 20px;
        color: #c50018;
        margin: 6px 0;
    }

    .sidebar_cta_btn {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 39px;
        color: #ffffff;
        font-family: "IBM Plex Sans JP", sans-serif;
        font-weight: 600;
        font-size: 12px;
        text-decoration: none;
        border-radius: 20px;
        transition: opacity 0.3s;
        box-sizing: border-box;

        &:hover {
            opacity: 0.7;
        }

        &.sidebar_cta_btn_simulation {
            width: 228px;
            background: #c50018 url('/assets/images/common/white_circle_red_arrow.png') right 8px center / 16px 16px no-repeat;
            padding: 0 28px 0 12px;
        }

        &.sidebar_cta_btn_assessment {
            width: 195px;
            background: #c50018 url('/assets/images/common/white_circle_red_arrow.png') right 8px center / 16px 16px no-repeat;
            padding: 0 28px 0 12px;
        }
    }
}

.new_articles_container {
    margin-top: 32px;
    width: 920px;
    height: 886px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new_articles_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 18px;
}

.new_article_card {
    width: calc((100% - 36px) / 3);
    height: 433px;
    box-sizing: border-box;
    border: 1px solid #CCCFD1;
    border-radius: 4px;
    padding: 16px 19px 13px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: border-color 0.3s ease;

    &:hover {
        border-color: #C50018;

        .new_article_img img {
            transform: scale(1.1);
        }

        .new_article_title,
        .new_article_header,
        .new_article_tags,
        .new_article_dates {
            opacity: 0.7;
        }
    }
}

.new_article_header {
    width: 180px;
    height: 35px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: opacity 0.3s ease;
}

.new_article_num {
    font-family: "Jost", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
    color: #C50018;
    margin-right: 13px;
}

.new_article_badge {
    width: 140px;
    height: 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #ffffff;
    border-radius: 50px;

    &.new_article_badge_seller {
        background-color: #C50018;
    }

    &.new_article_badge_buyer {
        background-color: #32373E;
    }
}

.new_article_img {
    width: 100%;
    height: 170px;
    margin-bottom: 16px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
        transition: transform 0.3s ease;
    }
}

.new_article_title {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    color: #32373E;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 84px;
    transition: opacity 0.3s ease;
}

.new_article_title_sp {
    display: none;
}

.new_article_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    margin-top: auto;
    transition: opacity 0.3s ease;
}

.new_article_tag {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #32373E;
    border: 1px solid rgba(50, 55, 62, 0.3);
    border-radius: 10px;
    padding: 2px 10px;
}

.new_article_dates {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.new_article_date_label {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    color: #32373e;
    background-color: #F0F1F4;
    border-radius: 2px;
    padding: 2px 6px;
}

.new_article_date_val {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #32373e;

    &:last-child {
        margin-right: 0;
    }
}

.news_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 32px;

    a {
        color: #32373e;
    }

    .news_pagination_arrow {
        width: 60px;
        height: 48px;
        background: url('/assets/images/news/pagination-prev.png') center / contain no-repeat;

        &:hover {
            opacity: 0.7;
        }
    }

    .news_pagination_next {
        transform: rotate(180deg);
    }

    .news_pagination_number,
    .news_pagination_dots {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-weight: 600;
        font-size: 16px;
        line-height: 16px;
        color: #32373e;
    }

    .news_pagination_number {
        min-width: 12px;
        text-align: center;
        text-decoration: none;
        transition: opacity 0.3s ease;

        &:hover {
            opacity: 0.7;
        }

        &.active {
            color: #C50018;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
    }
}



.column_popular_wide_section {
    margin-top: 96px;
    width: 100%;
}

.popular_wide_list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular_wide_card {
    position: relative;
    width: 920px;
    min-height: 184px;
    box-sizing: border-box;
    padding: 24px;
    background-color: #ffffff;
    border: 1px solid #CCCFD1;
    border-radius: 4px;
    display: flex;
    cursor: pointer;
    transition: border-color 0.3s ease;

    &:hover {
        border-color: #C50018;

        .popular_wide_img img {
            transform: scale(1.1);
        }

        .popular_wide_content {
            opacity: 0.7;
        }
    }
}

.popular_wide_num {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 39px;
    height: 39px;
    background-color: #C50018;
    color: #ffffff;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 3px;
    border-bottom-right-radius: 3px;
    z-index: 2;
}

.popular_wide_img {
    width: 136px;
    height: 136px;
    flex-shrink: 0;
    margin-right: 24px;
    overflow: hidden;
    border-radius: 2px;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 2px;
        transition: transform 0.3s ease;
    }
}

.popular_wide_content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    transition: opacity 0.3s ease;
}

.popular_wide_title {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: #32373E;
    margin: 0 0 7px;
}

.popular_wide_desc {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #6B6F75;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular_wide_tag_box {
    margin-bottom: 6px;
}

.popular_wide_tag {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #32373E;
    border: 1px solid rgba(50, 55, 62, 0.3);
    border-radius: 10px;
    padding: 2px 10px;
    display: inline-block;
}

.popular_wide_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.popular_wide_dates {
    display: flex;
    align-items: center;
    gap: 8px;
}

.popular_wide_date_label {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 15px;
    color: #32373e;
    background-color: #F0F1F4;
    border-radius: 2px;
    padding: 2px 6px;
}

.popular_wide_date_val {
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #32373e;
    margin-right: 8px;

    &:last-child {
        margin-right: 0;
    }
}

.popular_wide_link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #32373E;
    text-decoration: none;
    transition: opacity 0.3s;

    &:hover {
        opacity: 0.7;
    }

    img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
}





/*-------------------- pc-spの間 --------------------*/
/*---------- base > width:1440px ----------*/
@media(max-width:1439px) and (min-width:769px){
    .first_area {
        .first_wrap {
            /* max-width: 88.889vw; */
            padding: 0 1.389vw;
            margin: 0 auto;
        }
    }
    
    .column_detail_area {
        padding: 0 1.111vw;
        margin-top: 6.667vw;
        font-family: var(--column_font_base);
    
        .column_detail_wrap {
            display: grid;
            grid-template-columns: minmax(0, 63.889vw) 22.222vw;
            align-items: start;
            gap: 2.778vw;
            /* max-width: 88.889vw; */
            width: fit-content;
            margin: 0 auto;
        }
    
        .column_detail_main {
            min-width: 0;
        }
    
        .column_detail_article {
            color: var(--column_color_text);
        }
    
        .column_detail_head {
            margin-bottom: 4.444vw;
        }
    
        .column_detail_meta {
            display: flex;
            align-items: center;
            gap: 1.111vw;
            margin-bottom: 1.111vw;
        }
    
        .column_detail_number {
            font-family: var(--column_font_en);
            font-weight: 600;
            font-size: 4.167vw;
            line-height: 6.042vw;
            color: var(--column_color_red);
        }
    
        .column_detail_category {
            padding: 0.347vw 1.111vw 0.139vw;
            font-weight: 500;
            font-size: 1.111vw;
            line-height: 1.667vw;
            color: var(--column_color_white);
            background-color: var(--column_color_red);
            border-radius: 69.375vw;
        }
    
        .column_detail_head h2 {
            margin: 0 0 1.042vw;
            font-weight: 600;
            font-size: 1.944vw;
            line-height: 2.917vw;
            letter-spacing: 0;
            color: var(--column_color_text);
            font-family: var(--column_font_base);
        }
    
        .column_detail_tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.417vw;
            margin-bottom: 2.222vw;
    
            span {
                padding: 0.208vw 0.833vw 0.139vw;
                font-weight: 600;
                font-size: 0.972vw;
                line-height: 1.458vw;
                color: var(--column_color_text_light);
                border: 0.069vw solid var(--column_color_line);
                border-radius: 69.375vw;
            }
        }
    
        .column_detail_hero {
            aspect-ratio: 920 / 613;
            margin: 0 0 1.667vw;
            overflow: hidden;
            border-radius: 0.278vw;
    
            img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    
        .column_detail_date {
            display: inline-block;
            font-family: var(--column_font_en);
            font-weight: 600;
            font-size: 0.833vw;
            line-height: 1.25vw;
            color: var(--column_color_text_light);
        }
    
        .column_detail_dates {
            display: flex;
            flex-wrap: wrap;
            gap: 0.833vw;
    
            dl {
                display: flex;
                align-items: center;
                gap: 0.556vw;
                margin: 0;
                font-family: var(--column_font_base);
                font-weight: 600;
                font-size: 0.833vw;
                line-height: 1.25vw;
                color: var(--column_color_text_light);
            }
    
            dt {
                padding: 0.278vw 0.556vw 0.139vw;
                color: var(--column_color_text);
                background-color: var(--column_color_box_bg);
            }
    
            dd {
                margin: 0;
                font-weight: 500;
            }
        }
    
        .column_detail_image_placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            min-height: 8.333vw;
            font-family: var(--column_font_en);
            font-weight: 600;
            font-size: 0.972vw;
            line-height: 1;
            color: var(--column_color_text_light);
            background:
                linear-gradient(135deg, rgba(197, 0, 24, 0.08), rgba(50, 55, 62, 0.12)),
                var(--column_color_bg);
        }
    
        .column_detail_lead {
            margin: 4.444vw 0 6.111vw;
    
            p {
                margin: 0;
                font-weight: 500;
                font-size: 1.111vw;
                line-height: 1.944vw;
                color: var(--column_color_text);
            }
    
            .column_detail_note {
                margin-bottom: 1.736vw;
                font-size: 0.972vw;
                line-height: 1.389vw;
                color: var(--column_color_text_light);
            }
        }
    
        .column_detail_toc {
            margin-bottom: 0;
            border: 0.069vw solid var(--column_color_line);
            border-radius: 0.278vw;
            overflow: hidden;
            background-color: var(--column_color_white);
    
            h3 {
                margin: 0;
                padding: 1.181vw 1.736vw 1.042vw;
                font-weight: 600;
                font-family: var(--column_font_base);
                font-size: 1.111vw;
                line-height: 1.667vw;
                letter-spacing: 0;
                color: var(--column_color_white);
                background-color: var(--column_color_text);
            }
    
            ol {
                display: grid;
                gap: 1.111vw;
                padding: 2.014vw 1.736vw 1.875vw;
                margin: 0;
                list-style: none;
            }
    
            li {
                position: relative;
                padding-left: 1.528vw;
    
                &:before {
                    content: '';
                    position: absolute;
                    top: 0.694vw;
                    left: 0;
                    width: 0.556vw;
                    height: 0.556vw;
                    background-color: var(--column_color_red);
                    border-radius: 50%;
                }
            }
    
            a {
                font-weight: 600;
                font-size: 1.111vw;
                line-height: 1.667vw;
                color: var(--column_color_text);
                text-decoration: underline;
                text-underline-offset: 0.208vw;
    
                &:hover {
                    opacity: 0.7;
                }
            }
        }
    
        .column_detail_body {
            padding: 4.444vw 2.778vw 3.889vw;
            background-color: var(--column_color_white);
            color: var(--column_color_text);
        }
    
        .column_detail_intro_box {
            padding: 2.222vw;
            margin-bottom: 3.333vw;
            border: 0.069vw solid var(--column_color_line);
    
            h3 {
                margin: 0 0 1.389vw;
                text-align: center;
                font-weight: 600;
                font-size: 1.389vw;
                line-height: 2.083vw;
                color: var(--column_color_red);
            }
    
            p {
                margin: 0 0 1.389vw;
                font-size: 1.042vw;
                line-height: 1.875vw;
            }
    
            ol {
                display: grid;
                gap: 1.111vw;
                padding-left: 1.389vw;
                margin: 0;
                font-size: 1.042vw;
                line-height: 1.875vw;
    
                li::marker {
                    color: var(--column_color_red);
                    font-weight: 600;
                }
            }
        }
    
        .column_detail_section {
            margin-top: 3.333vw;
            scroll-margin-top: 6.944vw;
    
            h3 {
                margin: 0 0 3.333vw;
                padding: 1.944vw 1.111vw 1.736vw;
                text-align: center;
                font-weight: 600;
                font-size: 1.528vw;
                line-height: 2.292vw;
                font-family: var(--column_font_base);
                letter-spacing: 0;
                color: var(--column_color_text);
                border-bottom: 0.069vw solid var(--column_color_line);
                border-top: 0.069vw solid var(--column_color_line);
    
                span {
                    color: var(--column_color_red);
                }
            }
    
            h4 {
                position: relative;
                margin: 3.889vw 0 1.458vw;
                padding-left: 1.111vw;
                font-weight: 600;
                font-size: 1.528vw;
                line-height: 2.292vw;
                font-family: var(--column_font_base);
                letter-spacing: 0;
                color: var(--column_color_text_dark);
    
                &:before {
                    content: '';
                    position: absolute;
                    top: 1px;
                    left: 0;
                    width: 0.278vw;
                    height: 1.7vw;
                    background-color: var(--column_color_red);
                }
            }
    
            h5 {
                margin: 3.889vw 0 1.528vw;
                font-weight: 600;
                font-size: 1.389vw;
                line-height: 2.083vw;
                font-family: var(--column_font_base);
                letter-spacing: 0;
                color: var(--column_color_text_dark);
    
                span {
                    color: var(--column_color_red);
                }
            }
    
            p {
                margin: 0 0 1.389vw;
                font-weight: 500;
                font-size: 1.111vw;
                line-height: 1.944vw;
                color: var(--column_color_text);
            }
    
            strong {
                color: var(--column_color_red);
                font-weight: 600;
            }
    
            figure {
                aspect-ratio: 600 / 431;
                margin: 3.889vw auto 1.667vw;
                overflow: hidden;
                border-radius: 0.278vw;
            }
            .column_detail_source {
                margin-bottom: 3.958vw;
                font-size: 0.972vw;
                line-height: 1.389vw;
                color: var(--column_color_text_light);
        
                a {
                    color: #0356CB;
                    text-decoration: underline;
        
                    &:hover {
                        opacity: 0.7;
                    }
                }
            }
        }
    
        .column_detail_asset_section {
            margin-top: 0;
        }
    
        .column_detail_land_section {
            .column_detail_land_image {
                /* max-width: 41.667vw; */
                aspect-ratio: 600 / 400;
                margin: 3.333vw auto 3.889vw;
                border-radius: 0.278vw;
    
                img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
    
        .column_detail_assessment_section {
            .column_detail_assessment_image {
                /* max-width: 41.667vw; */
                aspect-ratio: 600 / 400;
                margin: 3.333vw auto 3.889vw;
                border-radius: 0.278vw;
                overflow: hidden;
    
                img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
    
        .column_detail_action_section {
            .column_detail_action_image {
                /* max-width: 41.667vw; */
                aspect-ratio: 600 / 400;
                margin: 3.333vw auto 3.889vw;
                border-radius: 0.278vw;
                overflow: hidden;
    
                img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
    
        .p_voice_cta_list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.319vw;
            margin-top: 6.667vw;
    
            .p_voice_cta_box {
                position: relative;
    
                .img {
                    img {
                        width: 100%;
                    }
                }
    
                .text {
                    position: absolute;
                    top: 50%;
                    width: 100%;
                    transform: translateY(-50%);
                    text-align: center;
    
                    p {
                        position: relative;
                        display: inline-block;
                        margin-bottom: 0.417vw;
                        padding-bottom: 0.486vw;
                        font-family: "IBM Plex Sans JP", sans-serif;
                        font-weight: 600;
                        font-size: 1.111vw;
                        line-height: 1.806vw;
    
                        &:before {
                            content: '';
                            position: absolute;
                            bottom: 0;
                            left: 50%;
                            transform: translateX(-50%);
                            width: 100%;
                            height: 0.556vw;
                            background: url(../images/voice/banner_border_red.png) center / cover no-repeat;
                        }
                    }
    
                    h3 {
                        margin-bottom: 0.833vw;
                        font-family: "IBM Plex Sans JP", sans-serif;
                        font-weight: 600;
                        font-size: 1.667vw;
                        line-height: 2.222vw;
                        color: #c50018;
                    }
    
                    .link {
                        display: inline-block;
                        /* min-width: 16.667vw; */
                        /* max-width: 22.222vw; */
                        margin: 0 auto;
                        padding: 0.833vw 2.847vw 0.833vw 1.875vw;
                        font-family: "IBM Plex Sans JP", sans-serif;
                        font-weight: 600;
                        font-size: 1.111vw;
                        line-height: 1.667vw;
                        text-align: center;
                        color: #ffffff;
                        background: url("../images/common/white_circle_red_arrow.png") center right 0.833vw / 1.667vw no-repeat;
                        background-color: #c50018;
                        border-radius: 2.222vw;
                        transition: 0.3s;
    
                        &:hover {
                            opacity: 0.7;
                        }
                    }
                }
            }
        }
    
        .column_author_box {
            margin-top: 6.667vw;
            overflow: hidden;
            background-color: var(--column_color_white);
            border: 0.069vw solid var(--column_color_line);
            border-radius: 0.278vw;
    
            h2 {
                margin: 0;
                padding: 1.25vw 1.736vw 0.972vw;
                font-family: var(--column_font_base);
                font-weight: 600;
                font-size: 1.111vw;
                line-height: 1.667vw;
                letter-spacing: 0;
                color: var(--column_color_white);
                background-color: var(--column_color_text);
            }
        }
    
        .column_author_content {
            display: grid;
            grid-template-columns: 11.111vw minmax(0, 1fr);
            align-items: center;
            gap: 2.778vw;
            padding: 2.778vw;
        }
    
        .column_author_image {
            width: 11.111vw;
            aspect-ratio: 1 / 1;
            margin: 0;
            overflow: hidden;
            border-radius: 0.278vw;
    
            img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    
        .column_author_text {
            h3 {
                margin: 0;
                padding-bottom: 0.694vw;
                font-family: var(--column_font_base);
                font-weight: 600;
                font-size: 1.389vw;
                line-height: 2.083vw;
                letter-spacing: 0;
                color: var(--column_color_text);
                border-bottom: 0.069vw solid var(--column_color_line);
            }
    
            p {
                margin: 1.389vw 0 0;
                font-weight: 500;
                font-size: 1.111vw;
                line-height: 1.667vw;
                letter-spacing: 0;
                color: var(--column_color_text);
            }
        }
    
        .column_detail_related_slider_area {
            margin-top: 6.667vw;
    
            > h2 {
                margin: 0 0 2.222vw;
                padding: 1.944vw 0 1.736vw;
                font-family: var(--column_font_base);
                font-weight: 600;
                font-size: 1.528vw;
                line-height: 2.292vw;
                text-align: center;
                letter-spacing: 0;
                color: var(--column_color_text);
                border-top: 0.069vw solid var(--column_color_line);
                border-bottom: 0.069vw solid var(--column_color_line);
            }
        }
    
        .column_detail_related_slider_wrap {
            position: relative;
            padding-bottom: 5.556vw;
        }
    
        .column_detail_related_slider {
            margin: 0;
    
            .slick-list {
                overflow: hidden;
            }
    
            .slick-dots {
                display: flex !important;
                justify-content: center;
                gap: 1.389vw;
                bottom: -3.611vw;
    
                li {
                    width: 0.556vw;
                    height: 0.556vw;
                    margin: 0;
    
                    button {
                        width: 0.556vw;
                        height: 0.556vw;
                        padding: 0;
                        border-radius: 50%;
                        background-color: #ADB0B5;
    
                        &:before {
                            content: none;
                        }
                    }
    
                    &.slick-active button {
                        background-color: #32373E;
                    }
                }
            }
        }
    
        .column_detail_related_slider_card {
            display: grid;
            grid-template-columns: minmax(0, 29.167vw) minmax(0, 1fr);
            align-items: center;
            gap: 2.778vw;
            min-height: 28.333vw;
            padding: 4.444vw 2.778vw;
            color: var(--column_color_text);
            background-color: var(--column_color_white);
            border: 0.069vw solid var(--column_color_line);
            border-radius: 0.278vw;
        }
    
        .column_detail_related_slider_image {
            display: block;
            aspect-ratio: 420 / 280;
            overflow: hidden;
            border-radius: 0.278vw;
    
            img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    
        .column_detail_related_slider_content {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
    
        .column_detail_related_slider_head {
            display: flex;
            align-items: center;
            gap: 0.833vw;
            margin-bottom: 1.25vw;
        }
    
        .column_detail_related_slider_number {
            font-family: var(--column_font_en);
            font-weight: 600;
            font-size: 2.222vw;
            line-height: 3.194vw;
            color: var(--column_color_red);
        }
    
        .column_detail_related_slider_category {
            padding: 0.278vw 1.111vw 0.208vw;
            font-weight: 500;
            font-size: 0.972vw;
            line-height: 1.389vw;
            color: var(--column_color_white);
            background-color: var(--column_color_red);
            border-radius: 69.375vw;
        }
    
        .column_detail_related_slider_title {
            font-weight: 600;
            font-size: 1.25vw;
            line-height: 1.944vw;
            letter-spacing: 0;
            color: var(--column_color_text);
        }
    
        .column_detail_related_slider_tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.694vw 0.417vw;
            margin-top: 0.625vw;
    
            span {
                padding: 0.139vw 0.694vw 0;
                font-weight: 500;
                font-size: 0.833vw;
                line-height: 1.25vw;
                color: var(--column_color_text);
                border: 0.069vw solid var(--column_color_line);
                border-radius: 69.375vw;
            }
        }
    
        .column_detail_related_slider_dates {
            display: flex;
            flex-wrap: wrap;
            gap: 1.111vw;
            margin-top: 1.528vw;
    
            span {
                display: inline-flex;
                align-items: center;
                gap: 0.556vw;
                color: var(--column_color_text);
            }
    
            b {
                padding: 0.208vw 0.556vw 0.139vw;
                font-weight: 600;
                font-size: 0.694vw;
                line-height: 1.042vw;
                background-color: var(--column_color_bg);
                border-radius: 0.139vw;
            }
    
            time {
                font-weight: 500;
                font-size: 0.833vw;
                line-height: 1.25vw;
            }
        }
    
        .column_detail_related_arrow {
            position: absolute;
            bottom: 0;
            z-index: 2;
            width: 5.556vw;
            height: 4.444vw;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 0;
            cursor: pointer;
            transition: opacity 0.3s;
    
            &:hover {
                opacity: 0.7;
            }
    
            img {
                display: block;
                width: 4.167vw;
                height: 3.333vw;
            }
        }
    
        .column_detail_related_prev {
            left: 15.972vw;
        }
    
        .column_detail_related_next {
            right: 15.972vw;
    
            img {
                transform: rotate(180deg);
            }
        }
    
        .column_detail_chart {
            /* max-width: 44.444vw; */
            aspect-ratio: auto;
            margin: 3.333vw auto 1.667vw;
            border-radius: 0.278vw;
    
            img {
                display: block;
                width: 100%;
                height: auto;
            }
        }
    
        .column_detail_related_card {
            display: grid;
            grid-template-columns: minmax(0, 25vw) minmax(0, 1fr);
            gap: 2.639vw;
            align-items: center;
            padding: 2.778vw 2.778vw 2.5vw;
            margin: 3.889vw 0 6.667vw;
            color: var(--column_color_text);
            border: 0.069vw solid var(--column_color_line);
            background-color: var(--column_color_white);
            border-radius: 0.278vw;
    
            &:hover {
                opacity: 0.7;
            }
        }
    
        .column_detail_related_image {
            display: block;
            aspect-ratio: 360 / 280;
            overflow: hidden;
            border-radius: 0.278vw;
    
            img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    
        .column_detail_related_content {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
    
        .column_detail_related_head {
            display: flex;
            align-items: center;
            gap: 0.833vw;
            margin-bottom: 1.111vw;
        }
    
        .column_detail_related_number {
            font-family: var(--column_font_en);
            font-weight: 600;
            font-size: 2.222vw;
            line-height: 3.194vw;
            color: var(--column_color_red);
        }
    
        .column_detail_related_category {
            padding: 0.278vw 1.111vw 0.208vw;
            font-weight: 500;
            font-size: 0.972vw;
            line-height: 1.389vw;
            color: var(--column_color_white);
            background-color: var(--column_color_red);
            border-radius: 69.375vw;
        }
    
        .column_detail_related_title {
            font-weight: 600;
            font-size: 1.25vw;
            line-height: 1.944vw;
            color: var(--column_color_text_dark);
        }
    
        .column_detail_related_tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.694vw 0.417vw;
            margin-top: 0.764vw;
    
            span {
                padding: 0.139vw 0.694vw 0;
                font-weight: 500;
                font-size: 0.833vw;
                line-height: 1.25vw;
                color: var(--column_color_text);
                border: 0.069vw solid var(--column_color_line);
                border-radius: 69.375vw;
            }
        }
    
        .column_detail_related_dates {
            display: flex;
            flex-wrap: wrap;
            gap: 0.556vw;
            margin-top: 1.25vw;
            color: var(--column_color_text);
    
            span {
                display: inline-flex;
                align-items: center;
                gap: 0.556vw;
                font-size: 0.694vw;
                line-height: 1.042vw;
            }
            b {
                padding: 0.208vw 0.417vw 0.139vw;
                font-weight: 600;
                background-color: var(--column_color_box_bg);
            }
            time {
                font-weight: 500;
                font-size: 0.833vw;
                line-height: 1.25vw;
            }
        }
    
        .column_detail_related_more {
            display: inline-flex;
            align-items: center;
            justify-content: flex-end;
            gap: 0.278vw;
            margin-top: 0.556vw;
            font-weight: 600;
            font-size: 1.111vw;
            line-height: 1.667vw;
            color: var(--column_color_text_dark);
            align-self: flex-end;
    
            &:after {
                content: '';
                width: 1.389vw;
                height: 1.389vw;
                background: url('../images/column/column-sidebar-ranking-arrow.png') center / contain no-repeat;
            }
        }
    
        .column_detail_related_card_sp {
            display: none;
        }
    
        .column_detail_sidebar {
            /* position: sticky; */
            top: 1.667vw;
            display: grid;
            gap: 1.111vw;
        }
    
        .column_side_box {
            padding: 1.111vw;
            background-color: var(--column_color_white);
            border: 0.069vw solid var(--column_color_line);
    
            h3 {
                margin: 0 0 0.833vw;
                padding-bottom: 0.694vw;
                font-family: var(--column_font_base);
                font-weight: 600;
                font-size: 0.972vw;
                line-height: 1.389vw;
                color: var(--column_color_text_dark);
                border-bottom: 0.069vw solid var(--column_color_line);
            }
        }
    
        .column_side_button {
            display: block;
            padding: 0.694vw 0.972vw;
            font-weight: 600;
            font-size: 0.903vw;
            line-height: 1.25vw;
            text-align: center;
            color: var(--column_color_text_dark);
            border: 0.069vw solid var(--column_color_line);
            border-radius: 69.375vw;
    
            &+.column_side_button {
                margin-top: 0.556vw;
            }
    
            &:hover {
                opacity: 0.7;
            }
        }
    
        .column_side_button_red {
            color: var(--column_color_white);
            background-color: var(--column_color_red);
            border-color: var(--column_color_red);
        }
    
        .column_side_category {
            display: grid;
            gap: 0.556vw;
            padding: 0;
            margin: 0;
            list-style: none;
    
            a {
                display: block;
                font-size: 0.903vw;
                line-height: 1.389vw;
                color: var(--column_color_text);
    
                &:hover {
                    color: var(--column_color_red);
                }
            }
        }
    
        .column_side_tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.556vw;
    
            a {
                padding: 0.208vw 0.625vw;
                font-size: 0.833vw;
                line-height: 1.25vw;
                color: var(--column_color_text);
                border: 0.069vw solid var(--column_color_line);
                border-radius: 69.375vw;
            }
        }
    
        .column_side_ranking {
            display: grid;
            gap: 0.833vw;
            padding: 0;
            margin: 0;
            list-style: none;
    
            a {
                display: grid;
                grid-template-columns: 1.25vw 4.444vw minmax(0, 1fr);
                gap: 0.556vw;
                align-items: start;
            }
        }
    
        .column_side_rank {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.25vw;
            height: 1.25vw;
            font-family: var(--column_font_en);
            font-weight: 600;
            font-size: 0.833vw;
            line-height: 1;
            color: var(--column_color_white);
            background-color: var(--column_color_red);
        }
    
        .column_side_thumb {
            display: block;
            aspect-ratio: 64 / 44;
            background:
                linear-gradient(135deg, rgba(197, 0, 24, 0.08), rgba(50, 55, 62, 0.12)),
                var(--column_color_bg);
        }
    
        .column_side_text {
            display: -webkit-box;
            font-weight: 600;
            font-size: 0.833vw;
            line-height: 1.25vw;
            color: var(--column_color_text_dark);
            overflow: hidden;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
        }
    
        .column_detail_sidebar {
            width: 22.222vw;
            gap: 0;
            padding: 2.222vw 1.389vw;
            background-color: var(--column_color_white);
            border: 0.069vw solid var(--column_color_line);
            border-radius: 0.278vw;
        }
    
        .column_side_section {
            margin-bottom: 3.333vw;
    
            &:last-child {
                margin-bottom: 0;
            }
    
            h3 {
                margin: 0;
                text-align: center;
                font-family: var(--column_font_base);
                font-weight: 600;
                font-size: 1.25vw;
                line-height: 1.875vw;
                letter-spacing: 0;
                color: var(--column_color_text_dark);
                padding: 1.25vw 0 1.458vw;
                border-top: 0.069vw solid var(--column_color_line);
                border-bottom: 0.069vw solid var(--column_color_line);
            }
        }
    
        .column_side_purpose {
    
            h3 {
                margin-bottom: 1.667vw;
            }
        }
    
        .column_side_purpose_button {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 3.333vw;
            padding: 0.833vw 3.472vw 0.764vw;
            position: relative;
            font-weight: 600;
            font-size: 0.972vw;
            line-height: 1.667vw;
            color: var(--column_color_white);
            border-radius: 69.375vw;
            border: 0.069vw solid var(--column_color_line);
    
            .lagr_text {
                font-size: 1.111vw;
            }
    
            &+.column_side_purpose_button {
                margin-top: 1.389vw;
            }
    
            &:after {
                content: '';
                position: absolute;
                top: 50%;
                right: 0.903vw;
                transform: translateY(-50%);
                width: 1.667vw;
                height: 1.667vw;
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;
            }
    
            &:hover {
                opacity: 0.7;
            }
        }
    
        .column_side_purpose_button_sell {
            background-color: var(--column_color_red);
    
            &:after {
                background-image: url('../images/column/column-sidebar-button-arrow-red.png');
            }
        }
    
        .column_side_purpose_button_buy {
            background-color: var(--column_color_text);
    
            &:after {
                background-image: url('../images/column/column-sidebar-button-arrow-dark.png');
            }
        }
    
        .column_side_category_section {
            h3 {
                margin-bottom: 1.806vw;
            }
        }
    
        .column_side_category {
            display: flex;
            flex-wrap: wrap;
            gap: 0.694vw 0.417vw;
            padding: 1.528vw 1.042vw 1.389vw 0.972vw;
            margin: 0;
            border: 0.069vw solid var(--column_color_line);
            border-radius: 0.278vw;
    
            a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-height: 1.389vw;
                padding: 0.139vw 0.694vw 0;
                font-weight: 500;
                font-size: 0.833vw;
                line-height: 1.25vw;
                color: var(--column_color_text);
                border: 0.069vw solid var(--column_color_line);
                border-radius: 69.375vw;
                background-color: var(--column_color_white);
    
                &.active,
                &:hover {
                    color: var(--column_color_red);
                    border-color: var(--column_color_red);
                }
            }
        }
    
        .column_side_ranking_section {
            h3 {
                margin-bottom: 1.806vw;
            }
        }
    
        .column_side_ranking {
            gap: 1.111vw;
        }
    
        .column_side_ranking li {
            margin: 0;
        }
    
        .column_side_ranking a {
            display: grid;
            grid-template-columns: 4.444vw minmax(0, 10.278vw) 1.111vw;
            align-items: center;
            gap: 0.833vw;
            min-height: 7.222vw;
            position: relative;
            padding: 1.389vw 0.833vw 1.25vw 1.111vw;
            border: 0.069vw solid var(--column_color_line);
            border-radius: 0.278vw;
            background-color: var(--column_color_white);
            overflow: hidden;
        }
    
        .column_side_rank {
            position: absolute;
            top: -0.069vw;
            left: -0.069vw;
            z-index: 1;
            width: 2.222vw;
            height: 2.222vw;
            font-size: 1.25vw;
            line-height: 1;
            border-radius: 0 0 0.278vw 0
        }
    
        .column_side_thumb {
            display: block;
            width: 4.444vw;
            height: 4.444vw;
            object-fit: cover;
            border-radius: 0.139vw;
        }
    
        .column_side_text {
            -webkit-line-clamp: 3;
            font-size: 0.972vw;
            line-height: 1.389vw;
            color: var(--column_color_text_dark);
        }
    
        .column_side_ranking a:after {
            content: '';
            width: 1.111vw;
            height: 1.111vw;
            background: url("../images/column/column-sidebar-ranking-arrow.png") center / contain no-repeat;
        }
    }
    
    .first_wrap {
        /* max-width: 88.889vw; */
        margin: 0 auto;
        padding: 0;
    }
    
    .column_buttons_container {
        display: flex;
        justify-content: center;
        gap: 1.389vw;
        margin-top: 6.667vw;
    
        .column_btn {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            /* max-width: 38.194vw; */
            height: 4.444vw;
            font-family: "IBM Plex Sans JP", sans-serif;
            font-weight: 600;
            font-size: 1.25vw;
            color: #ffffff;
            line-height: 1.667vw;
            border-radius: 2.222vw;
            transition: opacity 0.3s;
            text-decoration: none;
            box-sizing: border-box;
            padding: 0 1.667vw;
    
            &:hover {
                opacity: 0.7;
                color: #ffffff;
            }
    
            &.column_btn_seller {
                background: url('/assets/images/common/white_circle_red_arrow.png') center right 1.389vw / 1.667vw no-repeat;
                background-color: #c50018;
            }
    
            &.column_btn_buyer {
                background: url('/assets/images/common/white_circle_gray_arrow.png') center right 1.389vw / 1.667vw no-repeat;
                background-color: #32373e;
            }
    
            span {
                font-size: 1.389vw;
            }
        }
    }
    
    .column_slider_area {
        margin-top: 6.667vw;
        margin-bottom: 6.667vw;
    
        .column_slider_wrapper {
            position: relative;
            width: 100%;
            margin: 0 auto;
            padding: 0;
        }
    
        .column-arrow {
            position: absolute;
            top: 15.139vw;
            transform: translateY(-50%);
            width: 5.556vw;
            height: 4.444vw;
            background-color: #32373e;
            border: 0.069vw solid #CCCFD1;
            border-radius: 2.222vw;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 100;
            transition: opacity 0.3s;
            padding: 0;
            box-sizing: border-box;
    
    
    
            img {
                width: 1.111vw;
                height: 0.972vw;
                display: block;
            }
    
            &.column-prev {
                left: calc(50% - 42.361vw);
            }
    
            &.column-next {
                right: calc(50% - 42.361vw);
            }
        }
    
        .column_slider {
            margin: 0;
        }
    
        .column_slider_item {
            width: 77.778vw;
            margin: 0 0.694vw;
            box-sizing: border-box;
            display: block !important;
        }
    
        .column_card {
            display: flex;
            width: 77.778vw;
            height: 30.347vw;
            padding: 3.333vw 4.444vw 3.333vw 3.333vw;
            box-sizing: border-box;
            background: #ffffff;
            border: 0.069vw solid #CCCFD1;
            border-radius: 0.278vw;
            gap: 4.444vw;
            cursor: pointer;
            transition: border-color 0.3s ease;
    
            &:hover {
                border-color: #C50018;
    
                .column_card_img img {
                    transform: scale(1.1);
                }
    
                .column_card_info {
                    opacity: 0.7;
                }
            }
    
            .column_card_img {
                width: 35.556vw;
                height: 23.681vw;
                flex-shrink: 0;
                overflow: hidden;
                border-radius: 0.278vw;
    
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 0.278vw;
                    transition: transform 0.3s ease;
                }
            }
    
            .column_card_info {
                display: flex;
                flex-direction: column;
                padding-top: 2.778vw;
                padding-bottom: 2.5vw;
                justify-content: space-between;
                flex-grow: 1;
                transition: opacity 0.3s ease;
            }
    
            .column_card_header {
                display: flex;
                align-items: center;
                margin-bottom: 1.111vw;
            }
    
            .column_card_num {
                font-family: 'Jost', sans-serif;
                font-size: 2.222vw;
                font-weight: 600;
                line-height: 3.194vw;
                color: #C50018;
                margin-right: 0.833vw;
            }
    
            .column_card_badge {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 10.972vw;
                height: 1.944vw;
                background-color: #C50018;
                color: #ffffff;
                font-family: "IBM Plex Sans JP", sans-serif;
                font-size: 0.972vw;
                font-weight: 500;
                line-height: 1.389vw;
                border-radius: 0.972vw;
                text-align: center;
            }
    
            .column_card_title {
                font-family: "IBM Plex Sans JP", sans-serif;
                font-size: 1.389vw;
                font-weight: 600;
                line-height: 2.222vw;
                color: #32373e;
                margin-bottom: 0.833vw;
            }
    
            .column_card_tags {
                display: flex;
                flex-wrap: wrap;
                gap: 0.694vw 0.417vw;
                /* max-width: 21.806vw; */
            }
    
            .column_card_tag {
                font-family: "IBM Plex Sans JP", sans-serif;
                font-size: 0.833vw;
                font-weight: 500;
                line-height: 1.25vw;
                color: #32373e;
                border: 0.069vw solid rgba(50, 55, 62, 0.3);
                border-radius: 1.389vw;
                padding: 0 0.625vw;
            }
    
            .column_card_dates {
                display: flex;
                align-items: center;
                gap: 0.556vw;
                margin-top: 0.972vw;
            }
    
            .column_card_date_label {
                font-family: "IBM Plex Sans JP", sans-serif;
                font-size: 0.694vw;
                font-weight: 600;
                line-height: 1.042vw;
                color: #32373e;
                background-color: #F0F1F4;
                border-radius: 0.139vw;
                padding: 0.139vw 0.417vw;
            }
    
            .column_card_date_val {
                font-family: "IBM Plex Sans JP", sans-serif;
                font-size: 0.833vw;
                font-weight: 500;
                line-height: 1.25vw;
                color: #32373e;
                margin-right: 0.556vw;
    
                &:last-child {
                    margin-right: 0;
                }
            }
        }
    
        .slick-dots {
            display: flex !important;
            justify-content: center !important;
            list-style: none !important;
            padding: 0 !important;
            margin: 2.222vw 0 0 0 !important;
            gap: 0.833vw !important;
            position: static !important;
    
            li {
                width: 0.556vw !important;
                height: 0.556vw !important;
                margin: 0 !important;
                padding: 0 !important;
    
                button {
                    width: 0.556vw !important;
                    height: 0.556vw !important;
                    border-radius: 50% !important;
                    background-color: #CCCFD1 !important;
                    border: none !important;
                    padding: 0 !important;
                    font-size: 0 !important;
                    cursor: pointer !important;
                    opacity: 1 !important;
                    transition: background-color 0.3s !important;
    
                    &::before {
                        content: none !important;
                    }
                }
    
                &.slick-active button {
                    background-color: #32373E !important;
                    opacity: 1 !important;
                }
            }
        }
    }
    
    
    
    
    .column_main_content {
        margin-top: 6.667vw;
    }
    
    .column_main_wrap {
        display: flex;
        justify-content: center;
        gap: 2.778vw;
        /* max-width: 88.889vw; */
        margin: 0 auto;
    }
    
    .column_left {
        width: 63.889vw;
        display: flex;
        flex-direction: column;
        gap: 6.667vw;
    }
    
    .column_right {
        width: 22.222vw;
        height: max-content;
        background: #ffffff;
        border: 0.069vw solid #CCCFD1;
        border-radius: 0.278vw;
        padding: 2.222vw 1.389vw 2.222vw;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    .column_section_title {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 1.944vw 0 1.736vw;
        border-top: 0.069vw solid #cccfd1;
        border-bottom: 0.069vw solid #cccfd1;
        background-color: #f0f1f4;
        text-align: center;
        width: 100%;
        font-weight: 600;
    
        h2 {
            font-family: "IBM Plex Sans JP", sans-serif;
            font-weight: 600;
            font-size: 1.528vw;
            line-height: 2.292vw;
            color: #32373e;
            margin: 0;
        }
    }
    
    .column_category_section {
        display: flex;
        flex-direction: column;
    }
    
    .category_tags_box {
        width: 100%;
        /* max-width: 63.889vw; */
        /* max-height: 10.278vw; */
        padding: 2.778vw;
        box-sizing: border-box;
        background: #ffffff;
        border: 0.069vw solid #CCCFD1;
        border-radius: 0.278vw;
        display: flex;
        flex-wrap: wrap;
        gap: 1.111vw 0.556vw;
        margin-top: 2.222vw;
    
        .category_tag {
            font-family: "IBM Plex Sans JP", sans-serif;
            font-weight: 500;
            font-size: 0.972vw;
            line-height: 1.389vw;
            color: #32373e;
            text-decoration: none;
            padding: 0.278vw 0.833vw 0.278vw;
            border: 0.069vw solid rgba(50, 55, 62, 0.3);
            border-radius: 0.903vw;
            transition: all 0.3s ease;
            height: 1.806vw;
    
            &:hover {
                border-color: #C50018;
                opacity: 0.7;
            }
    
            &.active {
                color: #C50018;
                border-color: #C50018;
                font-weight: 500;
            }
        }
    }
    
    
    
    .column_right .popular_title {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding-top: 1.458vw;
        padding-bottom: 1.25vw;
        border-top: 0.069vw solid #cccfd1;
        border-bottom: 0.069vw solid #cccfd1;
        background-color: #ffffff;
        text-align: center;
        width: 100%;
    
        h2 {
            font-family: "IBM Plex Sans JP", sans-serif;
            font-weight: 600;
            font-size: 1.25vw;
            line-height: 1.944vw;
            color: #32373e;
            margin: 0;
        }
    }
    
    .popular_cards_list {
        display: flex;
        flex-direction: column;
        margin-top: 1.667vw;
        gap: 1.111vw;
    }
    
    .popular_card {
        position: relative;
        display: flex;
        align-items: center;
        height: 7.222vw;
        width: 100%;
        padding: 0.833vw 2.083vw 0.833vw 0.833vw;
        box-sizing: border-box;
        background: #ffffff;
        border: 0.069vw solid #CCCFD1;
        border-radius: 0.278vw;
        text-decoration: none;
        transition: opacity 0.3s, border-color 0.3s;
    
        &:hover {
            border-color: #C50018;
    
            .popular_card_img img {
                transform: scale(1.1);
            }
        }
    
        .popular_num {
            position: absolute;
            top: -0.069vw;
            left: -0.069vw;
            width: 2.222vw;
            height: 2.222vw;
            background-color: #C50018;
            color: #ffffff;
            font-family: "IBM Plex Sans JP", sans-serif;
            font-weight: 600;
            font-size: 1.111vw;
            display: flex;
            justify-content: center;
            align-items: center;
            border-top-left-radius: 0.208vw;
            border-bottom-right-radius: 0.208vw;
            z-index: 2;
        }
    
        .popular_card_img {
            width: 4.444vw;
            height: 4.444vw;
            flex-shrink: 0;
            margin-left: 0.833vw;
            overflow: hidden;
            border-radius: 0.139vw;
    
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 0.139vw;
                transition: transform 0.3s ease;
            }
        }
    
        .popular_card_title {
            font-family: "IBM Plex Sans JP", sans-serif;
            font-weight: 600;
            font-size: 0.972vw;
            line-height: 1.389vw;
            color: #32373e;
            margin: 0.556vw 0 0 0.833vw;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-align: left;
        }
    
        .popular_arrow {
            position: absolute;
            right: 0.556vw;
            top: 50%;
            transform: translateY(-50%);
            width: 1.111vw;
            height: 1.111vw;
            display: flex;
            justify-content: center;
            align-items: center;
    
            img {
                width: 1.111vw;
                height: 1.111vw;
                object-fit: contain;
            }
        }
    }
    
    .sidebar_banners {
        margin-top: 3.333vw;
        display: flex;
        flex-direction: column;
        gap: 1.319vw;
    }
    
    .sidebar_cta_box {
        position: relative;
        width: 19.375vw;
        height: 11.875vw;
        border: 0.139vw solid #C50018;
        border-radius: 0.278vw;
        box-sizing: border-box;
        padding: 1.528vw 1.736vw;
        background-color: #ffffff;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    
        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }
    
        &:first-of-type::before {
            /* background: linear-gradient(180deg, rgb(253, 221, 225) 0%, rgb(255, 255, 255) 0%, rgb(253, 221, 225) 100%); */
            background: url('/assets/images/column/simulation-back.webp') center no-repeat !important;
            background-size: cover !important;
        }
    
        &:last-of-type::before {
            /* background: linear-gradient(180deg, rgb(240, 241, 244) 0%, rgb(255, 255, 255) 0%, rgb(240, 241, 244) 100%); */
            background: url('/assets/images/column/satei-back.webp') center no-repeat !important;
            background-size: cover !important;
        }
    
        .sidebar_cta_inner {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            width: 100%;
        }
    
        .sidebar_cta_lead {
            font-family: "IBM Plex Sans JP", sans-serif;
            font-size: 0.694vw;
            font-weight: 600;
            line-height: 1.111vw;
            color: #32373e;
            margin: 0;
            padding-bottom: 0.486vw;
            position: relative;
            display: inline-block;
    
            &::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 100%;
                height: 0.556vw;
                background: url('/assets/images/voice/banner_border_red.png') center / contain no-repeat;
            }
        }
    
        .sidebar_cta_title {
            font-family: "IBM Plex Sans JP", sans-serif;
            font-weight: 600;
            font-size: 1.181vw;
            line-height: 1.389vw;
            color: #c50018;
            margin: 0.417vw 0;
        }
    
        .sidebar_cta_btn {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 2.708vw;
            color: #ffffff;
            font-family: "IBM Plex Sans JP", sans-serif;
            font-weight: 600;
            font-size: 0.833vw;
            text-decoration: none;
            border-radius: 1.389vw;
            transition: opacity 0.3s;
            box-sizing: border-box;
    
            &:hover {
                opacity: 0.7;
            }
    
            &.sidebar_cta_btn_simulation {
                width: 15.833vw;
                background: #c50018 url('/assets/images/common/white_circle_red_arrow.png') right 0.556vw center / 1.111vw 1.111vw no-repeat;
                padding: 0 1.944vw 0 0.833vw;
            }
    
            &.sidebar_cta_btn_assessment {
                width: 13.542vw;
                background: #c50018 url('/assets/images/common/white_circle_red_arrow.png') right 0.556vw center / 1.111vw 1.111vw no-repeat;
                padding: 0 1.944vw 0 0.833vw;
            }
        }
    }
    
    .new_articles_container {
        margin-top: 2.222vw;
        width: 63.889vw;
        height: 61.528vw;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .new_articles_grid {
        display: flex;
        flex-wrap: wrap;
        gap: 1.389vw 1.25vw;
    }
    
    .new_article_card {
        width: calc((100% - 2.5vw) / 3);
        height: 30.069vw;
        box-sizing: border-box;
        border: 0.069vw solid #CCCFD1;
        border-radius: 0.278vw;
        padding: 1.111vw 1.319vw 0.903vw;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        transition: border-color 0.3s ease;
    
        &:hover {
            border-color: #C50018;
    
            .new_article_img img {
                transform: scale(1.1);
            }
    
            .new_article_title,
            .new_article_header,
            .new_article_tags,
            .new_article_dates {
                opacity: 0.7;
            }
        }
    }
    
    .new_article_header {
        width: 12.5vw;
        height: 2.431vw;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.556vw;
        transition: opacity 0.3s ease;
    }
    
    .new_article_num {
        font-family: "Jost", sans-serif;
        font-size: 1.667vw;
        font-weight: 600;
        line-height: 2.431vw;
        color: #C50018;
        margin-right: 0.903vw;
    }
    
    .new_article_badge {
        width: 9.722vw;
        height: 1.667vw;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 0.833vw;
        font-weight: 500;
        line-height: 1.25vw;
        color: #ffffff;
        border-radius: 0.833vw;
    
        &.new_article_badge_seller {
            background-color: #C50018;
        }
    
        &.new_article_badge_buyer {
            background-color: #32373E;
        }
    }
    
    .new_article_img {
        width: 100%;
        height: 11.806vw;
        margin-bottom: 1.111vw;
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 0.278vw;
    
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.278vw;
            transition: transform 0.3s ease;
        }
    }
    
    .new_article_title {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 1.111vw;
        font-weight: 600;
        line-height: 1.944vw;
        color: #32373E;
        margin: 0 0 0.417vw;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 5.833vw;
        transition: opacity 0.3s ease;
    }
    
    .new_article_title_sp {
        display: none;
    }
    
    .new_article_tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.417vw;
        margin-bottom: 0.694vw;
        margin-top: auto;
        transition: opacity 0.3s ease;
    }
    
    .new_article_tag {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 0.833vw;
        font-weight: 500;
        line-height: 1.25vw;
        color: #32373E;
        border: 0.069vw solid rgba(50, 55, 62, 0.3);
        border-radius: 0.694vw;
        padding: 0.139vw 0.694vw;
    }
    
    .new_article_dates {
        display: flex;
        align-items: center;
        gap: 0.556vw;
        transition: opacity 0.3s ease;
    }
    
    .new_article_date_label {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 0.694vw;
        font-weight: 600;
        line-height: 1.042vw;
        color: #32373e;
        background-color: #F0F1F4;
        border-radius: 0.139vw;
        padding: 0.139vw 0.417vw;
    }
    
    .new_article_date_val {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 0.833vw;
        font-weight: 500;
        line-height: 1.25vw;
        color: #32373e;
    
        &:last-child {
            margin-right: 0;
        }
    }
    
    .news_pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.667vw;
        margin-top: 2.222vw;
    
        a {
            color: #32373e;
        }
    
        .news_pagination_arrow {
            width: 4.167vw;
            height: 3.333vw;
            background: url('/assets/images/news/pagination-prev.png') center / contain no-repeat;
    
            &:hover {
                opacity: 0.7;
            }
        }
    
        .news_pagination_next {
            transform: rotate(180deg);
        }
    
        .news_pagination_number,
        .news_pagination_dots {
            font-family: "IBM Plex Sans JP", sans-serif;
            font-weight: 600;
            font-size: 1.111vw;
            line-height: 1.111vw;
            color: #32373e;
        }
    
        .news_pagination_number {
            min-width: 0.833vw;
            text-align: center;
            text-decoration: none;
            transition: opacity 0.3s ease;
    
            &:hover {
                opacity: 0.7;
            }
    
            &.active {
                color: #C50018;
                text-decoration: underline;
                text-underline-offset: 0.208vw;
            }
        }
    }
    
    
    
    .column_popular_wide_section {
        margin-top: 6.667vw;
        width: 100%;
    }
    
    .popular_wide_list {
        margin-top: 2.222vw;
        display: flex;
        flex-direction: column;
        gap: 1.389vw;
    }
    
    .popular_wide_card {
        position: relative;
        width: 63.889vw;
        min-height: 12.778vw;
        box-sizing: border-box;
        padding: 1.667vw;
        background-color: #ffffff;
        border: 0.069vw solid #CCCFD1;
        border-radius: 0.278vw;
        display: flex;
        cursor: pointer;
        transition: border-color 0.3s ease;
    
        &:hover {
            border-color: #C50018;
    
            .popular_wide_img img {
                transform: scale(1.1);
            }
    
            .popular_wide_content {
                opacity: 0.7;
            }
        }
    }
    
    .popular_wide_num {
        position: absolute;
        top: -0.069vw;
        left: -0.069vw;
        width: 2.708vw;
        height: 2.708vw;
        background-color: #C50018;
        color: #ffffff;
        font-family: "Jost", sans-serif;
        font-weight: 600;
        font-size: 1.25vw;
        display: flex;
        justify-content: center;
        align-items: center;
        border-top-left-radius: 0.208vw;
        border-bottom-right-radius: 0.208vw;
        z-index: 2;
    }
    
    .popular_wide_img {
        width: 9.444vw;
        height: 9.444vw;
        flex-shrink: 0;
        margin-right: 1.667vw;
        overflow: hidden;
        border-radius: 0.139vw;
    
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.139vw;
            transition: transform 0.3s ease;
        }
    }
    
    .popular_wide_content {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        transition: opacity 0.3s ease;
    }
    
    .popular_wide_title {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 1.25vw;
        font-weight: 600;
        line-height: 1.806vw;
        color: #32373E;
        margin: 0 0 0.486vw;
    }
    
    .popular_wide_desc {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 0.833vw;
        font-weight: 500;
        line-height: 1.25vw;
        color: #6B6F75;
        margin: 0 0 0.556vw;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .popular_wide_tag_box {
        margin-bottom: 0.417vw;
    }
    
    .popular_wide_tag {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 0.833vw;
        font-weight: 500;
        line-height: 1.25vw;
        color: #32373E;
        border: 0.069vw solid rgba(50, 55, 62, 0.3);
        border-radius: 0.694vw;
        padding: 0.139vw 0.694vw;
        display: inline-block;
    }
    
    .popular_wide_footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
    }
    
    .popular_wide_dates {
        display: flex;
        align-items: center;
        gap: 0.556vw;
    }
    
    .popular_wide_date_label {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 0.694vw;
        font-weight: 600;
        line-height: 1.042vw;
        color: #32373e;
        background-color: #F0F1F4;
        border-radius: 0.139vw;
        padding: 0.139vw 0.417vw;
    }
    
    .popular_wide_date_val {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 0.833vw;
        font-weight: 500;
        line-height: 1.25vw;
        color: #32373e;
        margin-right: 0.556vw;
    
        &:last-child {
            margin-right: 0;
        }
    }
    
    .popular_wide_link {
        display: flex;
        align-items: center;
        gap: 0.278vw;
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 1.111vw;
        font-weight: 600;
        line-height: 1.667vw;
        color: #32373E;
        text-decoration: none;
        transition: opacity 0.3s;
    
        &:hover {
            opacity: 0.7;
        }
    
        img {
            width: 1.389vw;
            height: 1.389vw;
            object-fit: contain;
        }
    }
}





/*-------------------- sp --------------------*/
/*---------- デザインベースはwidth:375px ----------*/
@media(max-width:768px){
    .column_detail_area {
        margin-top: 12.8vw;
        padding: 0;
    
        .column_detail_wrap {
            display: block;
        }
    
        .column_detail_head {
            margin-bottom: 12.8vw;
            padding: 0 4.267vw;
        }
    
        .column_detail_number {
            font-size: 10.667vw;
            line-height: 15.467vw;
        }
    
        .column_detail_meta {
            gap: 3.2vw;
            margin-bottom: 3.2vw;
        }
    
        .column_detail_category {
            padding: 1.067vw 4.267vw 0.8vw;
            font-size: 3.733vw;
            line-height: 5.6vw;
        }
    
        .column_detail_head h2 {
            font-size: 5.333vw;
            line-height: 8.533vw;
            margin-bottom: 3.2vw;
        }
    
        .column_detail_tags {
            gap: 2.133vw 1.6vw;
            margin-bottom: 6.4vw;
    
            span {
                font-size: 3.2vw;
                padding: 0.533vw 2.667vw 0;
                line-height: 4.8vw;
            }
        }
    
        .column_detail_hero {
            aspect-ratio: 344 / 229;
            margin-bottom: 4.267vw;
        }
    
        .column_detail_dates {
            gap: 3.2vw;
    
            dl {
                gap: 2.133vw;
                font-size: 3.2vw;
                line-height: 4.8vw;
            }
    
            dt {
                padding: 1.067vw 2.133vw 0.533vw;
            }
        }
    
        .column_detail_toc {
            margin: 0 4.267vw;
            h3 {
                padding: 5.6vw 4.267vw 4.8vw;
                font-size: 3.733vw;
                line-height: 5.6vw;
                text-align: center;
            }
    
            ol {
                gap: 3.467vw;
                padding: 5.6vw 4.267vw 5.333vw;
            }
    
            a {
                font-size: 3.733vw;
                line-height: 5.333vw;
            }
            li {
                &:before {
                    top: 1.6vw;
                    left: 0;
                    width: 2.133vw;
                    height: 2.133vw;
                }
            }
        }
    
        .column_detail_lead {
            margin: 12.8vw 0 14.933vw;
            padding: 0 4.267vw;
    
            p {
                font-size: 4.267vw;
                line-height: 7.467vw;
            }
    
            .column_detail_note {
                margin-bottom: 4.8vw;
                font-size: 3.2vw;
                line-height: 4.8vw;
            }
        }
    
        .column_detail_body {
            padding: 12.8vw 4.267vw 10.667vw;
        }
    
        .column_detail_intro_box {
            padding: 6.4vw 4.267vw;
            margin-bottom: 10.667vw;
    
            h3 {
                font-size: 4.8vw;
                line-height: 7.467vw;
            }
    
            p,
            ol {
                font-size: 3.733vw;
                line-height: 6.4vw;
            }
        }
    
        .column_detail_section {
            margin-top: 21.333vw;

            &:first-child {
                margin-top: 0;
            }
    
            h3 {
                font-size: 4.8vw;
                line-height: 7.467vw;
                padding: 5.6vw 4.267vw 4.8vw;
                margin-bottom: 12.8vw;
            }
    
            h4 {
                font-size: 5.333vw;
                line-height: 8.533vw;
                margin: 10.667vw 0 3.733vw;
    
                &:before {
                    top: 1px;
                    left: 0;
                    width: 1.067vw;
                    height: 83%;
                }
            }
    
            h5 {
                margin: 10.667vw 0 4vw;
                font-size: 4.8vw;
                line-height: 7.467vw;
            }
    
            p {
                font-size: 4.267vw;
                line-height: 7.467vw;
            }
    
            figure {
                aspect-ratio: 311 / 180;

                &.column_detail_chart {
                    aspect-ratio: 311 / 220;
                }
            }
            .column_detail_source {
                margin-bottom: 11.2vw;
                font-size: 3.2vw;
                line-height: 4.8vw;
            }
        }
    
        .column_detail_chart {
            max-width: 100%;
            margin: 8.533vw auto 4.8vw;
        }
    
        .column_detail_land_section {
            .column_detail_land_image {
                max-width: 100%;
                aspect-ratio: 343 / 228;
                margin: 8.533vw auto 10.667vw;
            }
        }
    
        .column_detail_assessment_section {
            .column_detail_assessment_image {
                max-width: 100%;
                aspect-ratio: 343 / 230;
                margin: 8.533vw auto 10.667vw;
            }
        }
    
        .column_detail_action_section {
            .column_detail_action_image {
                max-width: 100%;
                aspect-ratio: 343 / 228;
                margin: 8.533vw auto 10.667vw;
            }
        }
    
        .p_voice_cta_list {
            grid-template-columns: 1fr;
            margin: 12.8vw auto 0;
            padding: 0 4.267vw;
    
            .p_voice_cta_box {
                .text {
                    p {
                        margin-bottom: 1.6vw;
                        padding-bottom: 1.867vw;
                        font-size: 3.2vw;
                        line-height: 4.8vw;
    
                        &:before {
                            width: 100%;
                            height: 1.867vw;
                        }
                    }
    
                    h3 {
                        margin-bottom: 3.467vw;
                        font-size: 5.867vw;
                        line-height: 8vw;
                    }
    
                    .link {
                        max-width: 74.667vw;
                        padding: 3.733vw 11.2vw 3.467vw 3.467vw;
                        font-size: 3.733vw;
                        line-height: 5.6vw;
                        background: url(../images/common/white_circle_red_arrow.png) center right 3.2vw / 6.4vw no-repeat;
                        background-color: #c50018;
                    }
                }
    
                &:last-child {
                    .text {
                        .link {
                            max-width: 80vw;
                            padding: 3.733vw 11.2vw 3.467vw 3.467vw;
                            font-size: 3.733vw;
                            line-height: 5.6vw;
                            background: url(../images/common/white_circle_red_arrow.png) center right 3.2vw / 6.4vw no-repeat;
                            background-color: #c50018;
                        }
                    }
                }
            }
        }
    
        .column_author_box {
            margin: 17.067vw 4.267vw 0;
    
            h2 {
                padding: 5.6vw 4.267vw 4.8vw;
                text-align: center;
                font-size: 3.733vw;
                line-height: 5.333vw;
            }
        }
    
        .column_author_content {
            display: grid;
            grid-template-columns: 26.667vw minmax(0, 1fr);
            align-items: center;
            column-gap: 4.267vw;
            row-gap: 0;
            padding: 6.4vw 4.267vw 4.533vw;
        }
    
        .column_author_image {
            width: 26.667vw;
        }
    
        .column_author_text {
            display: contents;
    
            h3 {
                width: auto;
                padding-bottom: 0;
                font-size: 4.8vw;
                line-height: 7.467vw;
                border-bottom: 0;
            }
    
            p {
                grid-column: 1 / -1;
                margin-top: 4.267vw;
                padding-top: 4.267vw;
                font-size: 3.733vw;
                line-height: 6.4vw;
                border-top: 0.267vw solid var(--column_color_line);
            }
        }
    
        .column_detail_related_slider_area {
            margin-top: 17.067vw;
            overflow: hidden;
    
            > h2 {
                margin: 0 4.267vw;
                margin-bottom: 8.533vw;
                padding: 5.6vw 0 4.8vw;
                font-size: 4.8vw;
                line-height: 7.467vw;
            }
        }
    
        .column_detail_related_slider_wrap {
            padding-bottom: 6.933vw;
        }
    
        .column_detail_related_slider {
            .slick-list {
                overflow: visible;
            }
    
            .slick-slide {
                width: 82.933vw !important;
                margin: 0 2.133vw;
            }
    
            .slick-dots {
                gap: 3.2vw;
                bottom: -6.4vw;
    
                li {
                    width: 1.6vw;
                    height: 1.6vw;
                    margin: 0;
    
                    button {
                        width: 1.6vw;
                        height: 1.6vw;
                        background-color: #ADB0B5;
                    }
    
                    &.slick-active button {
                        background-color: #32373E;
                    }
                }
            }
        }
    
        .column_detail_related_slide {
            width: 82.933vw !important;
            padding: 0;
        }
    
        .column_detail_related_slider_card {
            display: flex;
            flex-direction: column;
            /* width: 82.933vw; */
            min-height: 0;
            padding: 4.267vw 6.4vw 5.6vw;
            gap: 0;
        }
    
        .column_detail_related_slider_content {
            display: contents;
        }
    
        .column_detail_related_slider_head {
            order: 1;
            gap: 4.8vw;
            margin-bottom: 2.13vw;
            width: 100%;
        }
    
        .column_detail_related_slider_number {
            font-size: 6.4vw;
            line-height: 9.333vw;
        }
    
        .column_detail_related_slider_category {
            padding: 1.067vw 4.267vw 0.533vw;
            font-size: 3.2vw;
            line-height: 4.8vw;
        }
    
        .column_detail_related_slider_image {
            order: 2;
            width: 100%;
            aspect-ratio: 526 / 350;
        }
    
        .column_detail_related_slider_title {
            order: 3;
            margin-top: 4.267vw;
            font-size: 4.267vw;
            line-height: 7.467vw;
        }
    
        .column_detail_related_slider_tags {
            order: 4;
            gap: 1.6vw 2.133vw;
            margin-top: 1.6vw;
    
            span {
                padding: 0.533vw 2.667vw 0;
                font-size: 3.2vw;
                line-height: 4.8vw;
            }
        }
    
        .column_detail_related_slider_dates {
            order: 5;
            gap: 2.133vw;
            margin-top: 3.733vw;
    
            b {
                padding: 0.8vw 1.6vw 0.533vw;
                font-size: 2.667vw;
                line-height: 4vw;
            }
    
            time {
                font-size: 3.2vw;
                line-height: 4.8vw;
            }
        }
    
        .column_detail_related_arrow {
            top: 58.933vw;
            bottom: auto;
            width: 13.333vw;
            height: 10.667vw;
    
            img {
                width: 100%;
                height: 100%;
            }
        }
    
        .column_detail_related_prev {
            left: 2.667vw;
        }
    
        .column_detail_related_next {
            right: 2.667vw;
        }
    
        .column_detail_source {
            font-size: 3.2vw;
            line-height: 4.8vw;
        }
    
        .column_detail_related_card_sp {
            display: block;
            padding: 4.267vw 4.267vw 3.733vw;
            margin: 10.667vw 0 21.333vw;
            color: var(--column_color_text);
            background-color: var(--column_color_white);
            border: 0.267vw solid var(--column_color_line);
            border-radius: 1.067vw;
        }
        .column_detail_related_sp_head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4.267vw;
            padding-bottom: 2.933vw;
            border-bottom: 0.267vw solid var(--column_color_line);
        }
        .column_detail_related_sp_number {
            font-family: var(--column_font_en);
            font-weight: 600;
            font-size: 6.4vw;
            line-height: 9.333vw;
            color: var(--column_color_red);
        }
        .column_detail_related_sp_category {
            padding: 1.067vw 3.733vw 0.533vw;
            font-weight: 500;
            font-size: 3.2vw;
            line-height: 4.8vw;
            color: var(--column_color_white);
            background-color: var(--column_color_red);
            border-radius: 266.4vw;
        }
        .column_detail_related_sp_middle {
            display: grid;
            grid-template-columns: 21.333vw minmax(0, 1fr);
            align-items: center;
            gap: 3.2vw;
            padding: 3.2vw 0;
            border-bottom: 0.267vw solid var(--column_color_line);
        }
        .column_detail_related_sp_image {
            display: block;
            aspect-ratio: 80 / 80;
            overflow: hidden;
            border-radius: 1.067vw;
    
            img {
                display: block;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .column_detail_related_sp_title {
            font-weight: 600;
            font-size: 4.267vw;
            line-height: 6.4vw;
            color: var(--column_color_text);
        }
        .column_detail_related_sp_tags {
            display: flex;
            flex-wrap: wrap;
            gap: 1.6vw 1.067vw;
            padding-top: 3.2vw;
    
            span {
                padding: 0.533vw 2.667vw 0;
                font-weight: 500;
                font-size: 2.667vw;
                line-height: 4vw;
                color: var(--column_color_text);
                border: 0.267vw solid var(--column_color_line);
                border-radius: 266.4vw;
            }
        }
        .column_detail_related_sp_dates {
            display: flex;
            flex-wrap: wrap;
            gap: 2.133vw;
            margin-top: 2.4vw;
    
            span {
                display: inline-flex;
                align-items: center;
                gap: 2.133vw;
                font-size: 2.667vw;
                line-height: 4vw;
                color: var(--column_color_text);
            }
            b {
                padding: 0.8vw 1.6vw 0.533vw;
                font-weight: 600;
                background-color: var(--column_color_box_bg);
            }
            time {
                font-weight: 500;
                font-size: 3.2vw;
                line-height: 4.8vw;
            }
        }
        .column_detail_related_sp_more {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 1.067vw;
            margin-top: 3.467vw;
            font-weight: 600;
            font-size: 3.2vw;
            line-height: 4.8vw;
            color: var(--column_color_text_dark);
    
            &:after {
                content: '';
                width: 4.267vw;
                height: 4.267vw;
                background: url('../images/column/column-sidebar-ranking-arrow.png') center / contain no-repeat;
            }
        }
    
        .column_detail_sidebar {
            position: static;
            width: auto;
            margin-top: 17.067vw;
            padding: 0 4.267vw;
            border: unset;
            background-color: unset;
        }
    
        .column_side_section {
            margin-bottom: 17.067vw;
    
            h3 {
                font-size: 4.8vw;
                line-height: 7.467vw;
                margin-bottom: 8.533vw;
                padding: 5.6vw 0 4.8vw;
            }
        }
    
        .column_side_purpose_button {
            min-height: 21.333vw;
            font-size: 4.267vw;
            line-height: 7.2vw;
    
            .lagr_text {
                font-size: 4.8vw;
            }
    
            &:after {
                top: 50%;
                right: 4.8vw;
                width: 6.4vw;
                height: 6.4vw;
            }
    
            &+.column_side_purpose_button {
                margin-top: 4.267vw;
            }
        }
    
        .column_side_category {
            padding: 5.867vw 3.733vw 5.333vw;
            background-color: var(--column_color_white);
    
            a {
                font-size: 3.2vw;
                line-height: 4.8vw;
                padding: 0.533vw 2.667vw 0;
            }
        }
    
        .column_side_ranking a {
            grid-template-columns: 21.333vw minmax(0, 47.733vw) 4.267vw;
            min-height: 34.133vw;
            padding: 6.4vw 4.267vw 6.4vw 6.4vw;
        }
    
        .column_side_thumb {
            width: 21.333vw;
            height: 21.333vw;
        }
    
        .column_side_text {
            font-size: 4.267vw;
            line-height: 6.4vw;
        }
    }
    
    .column_buttons_container {
        flex-direction: column;
        align-items: center;
        gap: 4.267vw;
        margin-top: 12.8vw;
        margin-bottom: 12.8vw;
        padding: 0 4.267vw;
    
        .column_btn {
            max-width: 100%;
            height: 17.067vw;
            font-size: 4.267vw;
            background-position: center right 4.267vw;
        }
    }
    
    .column_slider_area {
        margin-top: 12.8vw;
        margin-bottom: 12.8vw;
        max-width: 100% !important;
    
        .slick-dots {
            margin: 6.4vw 0 0 0 !important;
        }
    }
    
    .column_slider_area .column_slider_wrapper {
        max-width: 100% !important;
    }
    
    .column_slider_area .column_slider {
        max-width: 100% !important;
    }
    
    .column_slider_area .column-arrow {
        width: 13.333vw;
        height: 10.667vw;
        top: 60vw;
    }
    
    .column_slider_area .column-arrow img {
        width: 2.667vw;
        height: 2.4vw;
    }
    
    .column_slider_area .column-arrow.column-prev {
        left: 2.667vw;
    }
    
    .column_slider_area .column-arrow.column-next {
        right: 2.667vw;
    }
    
    .column_slider_area .column_slider_item {
        width: 82.933vw !important;
        max-width: 100% !important;
        margin: 0 2.133vw !important;
    }
    
    .column_slider_area .column_card {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        height: 118.933vw !important;
        padding: 4.533vw 6.4vw 5.333vw !important;
        gap: 0 !important;
    }
    
    .column_slider_area .column_card_info {
        display: contents !important;
    }
    
    .column_slider_area .column_card_header {
        grid-row: 1 !important;
        margin-bottom: 2.133vw !important;
    }
    
    .column_slider_area .column_card_num {
        font-size: 6.4vw !important;
        line-height: 9.333vw !important;
    }
    
    .column_slider_area .column_card_img {
        grid-row: 2 !important;
        width: 100% !important;
        height: 46.667vw !important;
        aspect-ratio: 512 / 341 !important;
    }
    
    .column_slider_area .column_card_img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .column_slider_area .column_card_title {
        grid-row: 3 !important;
        font-size: 4.267vw !important;
        line-height: 7.467vw !important;
        margin-bottom: 1.6vw !important;
        margin-top: 4.267vw;
        font-weight: 600;
    }
    
    .column_slider_area .column_card_tags {
        grid-row: 4 !important;
        margin-bottom: 0 !important;
        gap: 1.6vw !important;
    }
    
    .column_slider_area .column_card_dates {
        grid-row: 5 !important;
        margin-top: 3.733vw !important;
    }
    
    .column_slider_area .column_card .column_card_badge {
        width: 37.333vw;
        height: 6.4vw;
        font-size: 3.2vw;
        line-height: 4.8vw;
        border-radius: 3.2vw;
    
    }
    
    
    .column_slider_area .column_card .column_card_tag {
        padding: 1.067vw 2.4vw;
        line-height: 1;
    
    }
    
    .column_slider_area .column_card .column_card_date_label {}
    
    .column_slider_area .column_card .column_card_date_val {}
    
    .column_main_content {
        margin-top: 17.067vw;
    }
    
    .column_main_wrap {
        flex-direction: column;
        gap: 17.067vw;
    
        .column_left {
            width: 100%;
            gap: 17.067vw;
        }
    
        .category_tags_box {
            width: auto;
            padding: 6.4vw 4.267vw;
            min-height: auto;
            max-height: none;
            gap: 3.2vw 1.6vw;
            margin-left: 4.267vw;
            margin-right: 4.267vw;
    
            .category_tag {
                padding: 1.067vw 2.4vw;
                height: 5.333vw;
                font-size: 3.2vw;
                line-height: 1;
            }
    
            .category_tag:hover {}
    
            .category_tag.active {}
        }
    
        .column_right {
            width: 100%;
            min-height: auto;
            background: transparent;
            border: none;
            padding: 0;
    
            .popular_title,
            .popular_cards_list {
                display: none;
            }
        }
    
        .sidebar_banners {
            margin-top: 0;
            gap: 6.4vw;
        }
    
        .sidebar_cta_box {
            width: auto !important;
            height: auto !important;
            margin: 0 4.267vw !important;
            padding: 6.4vw 6.933vw !important;
    
            &::before {
                background: none !important;
            }
    
            &:first-of-type::before {
                /* background: linear-gradient(180deg, rgb(253, 221, 225) 0%, rgb(255, 255, 255) 0%, rgb(253, 221, 225) 100%) !important; */
                background: url('/assets/images/column/simulation-back.webp') center no-repeat !important;
                background-size: cover !important;
            }
    
            &:last-of-type::before {
                /* background: linear-gradient(180deg, rgb(240, 241, 244) 0%, rgb(255, 255, 255) 0%, rgb(240, 241, 244) 100%) !important; */
                background: url('/assets/images/column/satei-back.webp') center no-repeat !important;
                background-size: cover !important;
            }
    
            .sidebar_cta_inner {
                gap: 1.6vw !important;
            }
    
            .sidebar_cta_lead {
                font-size: 3.2vw !important;
                line-height: 6.933vw !important;
                font-weight: 600 !important;
            }
    
            .sidebar_cta_title {
                font-size: 5.867vw !important;
                line-height: 8vw !important;
                font-weight: 600 !important;
                margin-top: 0;
                margin-bottom: 1.867vw;
            }
    
            .sidebar_cta_btn {
                height: 12.8vw !important;
                border-radius: 6.4vw !important;
                font-size: 3.733vw !important;
                line-height: 5.6vw !important;
                font-weight: 600 !important;
                background-size: 6.4vw 6.4vw !important;
                background-position: right 3.2vw center !important;
                padding: 0 6.4vw 0 2.667vw !important;
    
                &.sidebar_cta_btn_simulation {
                    width: 74.667vw !important;
                }
    
                &.sidebar_cta_btn_assessment {
                    width: 64vw !important;
                }
            }
        }
    }
    
    .column_section_title {
        padding: 5.6vw 0 4.8vw;
        width: auto;
        margin: 0;
    
        h2 {
            font-size: 4.8vw;
            line-height: 7.467vw;
        }
    }
    
    .new_articles_title,
    .category_section_title {
        margin: 0 4.267vw !important;
    }

    .first_wrap {
        padding: 0;
    }
    
    .common_title {
        margin: 0 4.267vw !important;
    }
    
    .new_articles_container {
        width: 100% !important;
        height: auto !important;
        margin-top: 8.533vw;
        padding: 0 4.267vw;
        box-sizing: border-box;
    }
    
    .new_articles_grid {
        justify-content: center;
        gap: 5.333vw;
    }
    
    .new_article_card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        padding: 4.267vw 4.267vw 5.6vw;
    }
    
    .new_article_card .new_article_header {
        margin-bottom: 4vw;
        width: 100%;
        justify-content: left;
    }
    
    .new_article_card .new_article_num {
        font-size: 8.533vw;
        line-height: 12.267vw;
        margin-right: 1.6vw;
    }
    
    .new_article_card .new_article_badge {
        line-height: 1;
        padding: 2.13vw 4.27vw;
        width: 37.33vw;
    }
    
    .new_article_card .new_article_img {
        min-height: 55.2vw;
    
        margin-bottom: 5.333vw;
    }
    
    .new_article_card .new_article_img img {}
    
    .new_article_card .new_article_title {
        display: none !important;
    }
    
    .new_article_card .new_article_title_sp {
        font-family: "IBM Plex Sans JP", sans-serif;
        font-size: 4.8vw !important;
        line-height: 7.467vw !important;
        font-weight: 600 !important;
        margin-bottom: 2.4vw !important;
        height: auto !important;
        overflow: visible !important;
        display: block !important;
    }
    
    .new_article_card .new_article_tags {
        margin-bottom: 4.8vw;
    }
    
    .new_article_card .new_article_tag {
        padding: 1.067vw 2.4vw;
        gap: 1.6vw;
        line-height: 1;
        border-radius: 50px;
    }
    
    .new_article_card .new_article_dates {}
    
    .new_article_card .new_article_date_label {}
    
    .new_article_card .new_article_date_val {}
    
    .news_pagination {
        gap: 5.333vw;
        margin-top: 8.533vw;
    
        .news_pagination_arrow {
            width: 13.333vw;
            height: 10.667vw;
        }
    
        .news_pagination_number,
        .news_pagination_dots {
            font-size: 4.267vw;
            line-height: 4.267vw;
        }
    }
    
    .column_popular_wide_section {
        margin-top: 0;
        padding: 0 4.267vw;
    }
    
    .popular_wide_list {
        margin-top: 8.533vw;
        gap: 4.267vw;
    }
    
    .popular_wide_card {
        display: grid !important;
        grid-template-columns: 21.333vw 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 3.2vw 3.2vw !important;
        padding: 4.267vw !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    
        .popular_wide_num {
            width: 8.533vw !important;
            height: 8.533vw !important;
            font-size: 4.8vw !important;
            line-height: 5.867vw !important;
        }
    
        .popular_wide_img {
            grid-column: 1 !important;
            grid-row: 1 !important;
            width: 21.333vw !important;
            height: 21.333vw !important;
            margin-right: 0 !important;
            margin-bottom: 0 !important;
            flex-shrink: 0 !important;
            border-radius: 1.067vw !important;
        }
    
        .popular_wide_content {
            display: contents !important;
        }
    
        .popular_wide_title {
            grid-column: 2 !important;
            grid-row: 1 !important;
            font-size: 4.267vw !important;
            line-height: 6.4vw !important;
            font-weight: 600 !important;
            margin-bottom: 0 !important;
            align-self: center !important;
        }
    
        .popular_wide_desc {
            display: none !important;
        }
    
        .popular_wide_tag_box {
            grid-column: 1 / span 2 !important;
            grid-row: 2 !important;
            border-top: 0.267vw solid #CCCFD1 !important;
            padding-top: 2.667vw !important;
            margin-bottom: 0 !important;
        }
    
        .popular_wide_tag {
            font-size: 2.667vw !important;
            line-height: 4.8vw !important;
            padding: 0 2.4vw !important;
            border-radius: 50px;
        }
    
        .popular_wide_footer {
            grid-column: 1 / span 2 !important;
            grid-row: 3 !important;
            display: flex !important;
            flex-wrap: wrap !important;
            justify-content: space-between !important;
            align-items: flex-end !important;
            gap: 3.467vw !important;
            margin-top: 0 !important;
        }
    
        .popular_wide_dates {
            display: flex !important;
            flex-wrap: wrap !important;
            align-items: center !important;
            gap: 2.133vw !important;
        }
    
        .popular_wide_date_label {
            font-size: 2.667vw !important;
            line-height: 4vw !important;
            padding: 0.533vw 1.6vw !important;
            white-space: nowrap !important;
        }
    
        .popular_wide_date_val {
            font-size: 3.2vw !important;
            line-height: 4.8vw !important;
            margin-right: 1.067vw !important;
            white-space: nowrap !important;
        }
    
        .popular_wide_link {
            font-size: 3.2vw !important;
            line-height: 4.8vw !important;
            display: flex !important;
            align-items: center !important;
            gap: 1.067vw !important;
            margin-left: auto !important;
            white-space: nowrap !important;
    
            img {
                width: 4.267vw !important;
                height: 4.267vw !important;
            }
        }
    }
    
    .column_buttons_container .column_btn:hover {
        opacity: 1 !important;
    }
    
    .column_slider_area .column_card:hover {
        border-color: #CCCFD1 !important;
    }
    
    .column_slider_area .column_card:hover .column_card_img img {
        transform: none !important;
    }
    
    .column_slider_area .column_card:hover .column_card_info {
        opacity: 1 !important;
    }
    
    .category_tags_box .category_tag:hover {
        color: #32373e !important;
        border-color: rgba(50, 55, 62, 0.3) !important;
    }
    
    .category_tags_box .category_tag.active:hover {
        color: #C50018 !important;
        border-color: #C50018 !important;
    }
    
    .new_article_card:hover {
        border-color: #CCCFD1 !important;
    }
    
    .new_article_card:hover .new_article_img img {
        transform: none !important;
    }
    
    .new_article_card:hover .new_article_title,
    .new_article_card:hover .new_article_header,
    .new_article_card:hover .new_article_tags,
    .new_article_card:hover .new_article_dates {
        opacity: 1 !important;
    }
    
    .popular_wide_list .popular_wide_card:hover {
        border-color: #CCCFD1 !important;
    }
    
    .popular_wide_list .popular_wide_card:hover .popular_wide_img img {
        transform: none !important;
    }
    
    .popular_wide_list .popular_wide_card:hover .popular_wide_content {
        opacity: 1 !important;
    }
    
    .news_pagination .news_pagination_arrow:hover {
        opacity: 1 !important;
    }
    
    .news_pagination .news_pagination_number:hover {
        opacity: 1 !important;
    }
    
    .news_pagination .news_pagination_number.active:hover {
        color: #C50018 !important;
    }
    
    .popular_wide_card .popular_wide_link:hover {
        opacity: 1 !important;
    }
}
