@charset "utf-8";

:root {
    /* アニメーション用の変数定義 */
    --duration: 0.8s;
    --snap-duration: 0.6s;
    --flow-duration: 1.2s;
}

/* ==================== */
/* 共通パーツ */
/* ==================== */

.swiper {
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
}
.swiper.swiper-initialized {
    opacity: 1;
    visibility: visible;
}

/* --- セクション区切り --- */
.p_sec_header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.p_divider_l,
.p_sec_title_wrap {
    flex-shrink: 0;
}

/* 左線 */
.p_divider_l {
    height: 75px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* 右線：残り幅すべて */
.p_divider_r{
    flex: 1;
    display: block;
    position: relative;
    height: 75px;
}

.p_divider_l img,
.p_divider_r img{
    width: auto;
    height: 100%;
    object-fit: contain;
}


.p_divider_r::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #000;
}

.p_sec_title_wrap{
    display: flex;
    align-items: flex-end;
    gap: 30px;
    font-weight: bold;
}

.p_sec_title{
    font-size: 4.2rem;
    font-style: italic;
    line-height: 0.9;
}

.p_sec_sub_title{
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    line-height: 1;
}

.p_sec_sub_title img{
    width: 18px;
}

.p_sec_sub_title span{
    font-size: 1.8rem;
    line-height: 1.1;
}



/* 画像の伸縮調整 */
.p_divider_l {
    width: 20%;
    flex-shrink: 1;
    min-width: 50px;
}
.p_sec_title_wrap {
    flex-shrink: 0;
}
.p_divider_l img {
    width: 100%;
    object-fit: cover;
    object-position: right center;
}
.p_divider_r{
    min-width: 5%;
}



@media screen and (max-width: 767.8px) {
    /* 左線 */
    .p_divider_l {
        height: 30px;
        width: 20%;
    }

    /* 右線*/
    .p_divider_r{
        height: 24px;
    }

    .p_sec_title_wrap{
        gap: 6px;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .p_sec_title{
        font-size: 2rem;
    }

    .p_sec_sub_title img{
        width: 14px;
    }
    .p_sec_sub_title{
        font-size: 0.8em;
    }
}
@media screen and (max-width: 500px) {
    /* 左線 */
    .p_divider_l {

    }
}

/* --- ALL VIEW ボタン --- */
.p_btn_allview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    /* background-color: #fff; */
    background: linear-gradient(75deg, #0084CA 0%, #E62475 30%, #fff 50%, #fff 100%);
    background-size: 300% 100%;
    background-position: 100% 0;
    border: 1px solid #000;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    box-sizing: border-box;
    box-shadow: 0 3px 0 1px #000;
    position: relative;
    top: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.p_btn_text {
    font-size: 1.25em;
    letter-spacing: 0.05em;
}

/* 矢印 */
img.p_btn_arrow {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* ボケ防止 */
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 768px) {
    .p_btn_allview:hover {
        padding: 0 25px 0 35px;
        /* background: linear-gradient(270deg, #E62475 0%, #0084CA 100%); */
        background-position: 0% 0;
        color: #fff;
        opacity: 1;
    }

    .p_btn_allview:hover img.p_btn_arrow {
        filter: brightness(0) invert(1);
    }

}

@media screen and (max-width: 767.8px) {
    .p_btn_allview {
        padding: 0 8%;
    }
}

/* ==================== */
/* メインビジュアル */
/* ==================== */

.hero {
    position: relative;
    width: 100%;
    margin: -1px auto 0;
    overflow: hidden;
}

.hero_container {
    width: 100%;
}

.hero_kv {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    z-index: 1;
    margin: 0;
}

.hero_kv video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}

.hero_content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.hero_title {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* アニメーション後 y.kawai 残タスクNo4対応中 */
.hero_title.finished {
    align-items: flex-start;
}

.hero_title_text {
    position: relative;
    font-family: "Roboto", sans-serif;
    /* font-size: 204px; */
    font-size: 20rem; /* y.kawai 残タスクNo4対応中 */
    font-weight: 700;
    /* color: #FFF; */
    letter-spacing: -0.01em;
    opacity: 0;
    line-height: 0.9;
    text-transform: uppercase;
    white-space: nowrap;
    display: block;
    transform-origin: center center;

    /* グラデーション */
    background: linear-gradient(75deg, var(--cl-accent01), var(--cl-accent02));
    background-size: 200% auto; /* アニメーション用に幅を広げる */
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;

    animation:
        glitchFadeIn 0.1s forwards,
        glitchShake var(--duration) linear forwards,
        snapToPosition var(--snap-duration) cubic-bezier(0.19, 1, 0.22, 1) var(--duration) forwards;
}

.hero_title_text.__line2 {
    animation-delay: 0.1s, 0.1s, calc(var(--duration) + 0.1s);
}

@keyframes glitchFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes colorFlow {
    0% {
        /* 最初は白 */
        filter: brightness(10) contrast(1);
        background-position: 200% center;
        transform: scale(1.1);
    }
    20% {
        /* 徐々にグラデーションを出す */
        filter: brightness(1) contrast(1);
        background-position: 100% center;
        transform: scale(1.12) translate(2px, -1px);
    }
    100% {
        filter: brightness(1);
        background-position: 0% center;
        transform: scale(1.0);
    }
}

/* 所定の位置へ移動 */
@keyframes snapToPosition {
    0% {
        transform: scale(1.5) translate(0, 0) skewY(0deg);
    }

    100% {
        /* translateで左寄せの位置調整 */
        /* 斜めの角度（skewY）をつける */
        transform: scale(1) translate(-0.5vw, calc(-70% - 20px)) skewY(-16deg); /* アニメーション後 y.kawai 残タスクNo4対応中 */
        color: rgba(255, 255, 255, 0.5);
        -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
        background: none;
    }
}

/* 2行目（1行目より少し右にずらして調整） */
.hero_title_text.__line2 {
    animation:
        glitchFadeIn 0.1s 0.1s forwards,
        glitchShake var(--duration) 0.1s linear forwards,
        snapToPositionLine2 var(--snap-duration) cubic-bezier(0.19, 1, 0.22, 1) calc(var(--duration) + 0.1s) forwards;
}

@keyframes snapToPositionLine2 {
    0% {
        transform: scale(1.5) translate(0, 0) skewY(0deg);
    }

    100% {
        /* 1行目よりも右側にずらす */
        transform: scale(1) translate(2vw, calc(-70% - 20px)) skewY(-16deg); /* アニメーション後 y.kawai 残タスクNo4対応中 */
        color: rgba(255, 255, 255, 0.5);
        -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
        background: none;
    }
}

.sub_title {
    width: 100%;
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 15;
    opacity: 0;
    animation: fadeInSub 1s ease-out calc(1.0s + 0.2s) forwards;
    color: #fff;
}

@keyframes fadeInSub {
    from {
        opacity: 0;
        transform: translateY(30px) skewY(-0deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) skewY(-0deg);
    }
}

.sub_title_image{
    width: 30%;
    max-width: 580px;
}

/* 大きめノートPC */
@media screen and (max-width: 1700px) {
    .hero_title_text {
        font-size: 13rem; /* y.kawai 残タスクNo4対応中 */
    }
}

@media screen and (max-width: 1024px) {
    .hero_title_text {
        font-size: 10rem; /* y.kawai 残タスクNo4対応中 */
    }
}

@media screen and (max-width: 767.8px) {
    .hero_title_text {
        font-size: 3.5rem; /* y.kawai 残タスクNo4対応中 */
    }

    .sub_title_image{
        width: 40%;
        max-width: 200px;
    }
}

/* ==================== */
/* NEW ARRIVALS (新着コンテンツ) */
/* ==================== */

.p_top .c_sec.new-arrivals {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 !important;
}

.new-arrivals_container{
    padding-top: 60px;
    padding-bottom: 60px;
    width: 100%;
    height: 100%;
    background: linear-gradient(245deg, rgba(230, 36, 117, 0.1) 0%, rgba(0, 132, 202, 0.1) 100%);
}

.new-arrivals_inner {
    width: 100%;
    padding: 0;
}

.new-arrivals_head {
    margin-bottom: 20px;
}

.new-arrivals_title_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 10%;
}

/* NEWバッジ */
.new-arrivals_new_badge{
    display: inline-block;
    padding: 1px 20px 2px;
    font-size: 3rem;
    letter-spacing: 0.01em;
    text-align: center;
    color: #fff;
    font-weight: bold;
    background: linear-gradient(245deg, #E62475 0%, #0084CA 100%);
    border-radius: 10px;
}

.new-arrivals_ttl {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    margin: 0;
}

/* スライダー・カード表示 */
.new-arrivals_content {
    width: 100%;
}

.new-arrivals_list {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.new-arrivals_card {
    width: 430px;
    /* padding-right: 40px; */
    flex-shrink: 0;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

@media screen and (min-width: 768px) {
    .new-arrivals_card:hover {
        transform: translateY(-5px);
    }
}

.new-arrivals_card_link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.new-arrivals_card_link:hover{
    opacity: 1 !important;
}


/* サムネイル画像 */
.new-arrivals_thumb_wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.new-arrivals_thumb_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-arrivals_info {
    padding: 12px 4px 0;
}

.new-arrivals_title {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4;
    color: #000;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 1行で省略表示 */
    -webkit-box-orient: vertical;
}

/* メタ情報 */
.new-arrivals_meta {
    font-size: 1.4rem;
    font-weight: normal;
    white-space: normal;
}

.new-arrivals_author_icon {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    background-color: #fff;
    flex-shrink: 0;
    position: relative;
    margin-right: 8px;
}

.new-arrivals_author_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.new-arrivals_authorname {

}

.new-arrivals_date {
    white-space: nowrap;
}

.new-arrivals_date::before {
    content: "|";
    margin: 0 6px;
    color: #000;
}

@media screen and (max-width: 767.8px) {
    .new-arrivals_container{
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .new-arrivals_new_badge{
        font-size: 2rem;
        padding: 1px 12px 2px;
        border-radius: 7px;
    }

    .new-arrivals_ttl {
        font-size: 2rem;
    }

    .new-arrivals_card {
        width: 70%;
        /* padding-right: 16px; */
    }
}

/* ==================== */
/* concept */
/* ==================== */

.p_top .c_sec.concept {
    padding-bottom: 120px;
    position: relative;
}

.concept_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* 画像配置の基準 */
    min-height: 450px;
}

.concept_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* 左側 */
.concept_left {
    width: 50%;
    max-width: 594px;
    z-index: 10;
}

/* 右側 */
.concept_right {
    width: 50%;
    position: static; /* innerを基準にするため static */
}

/* 左側 子要素 */
.concept_logo {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
}

.concept_logo img {
    width: 100%;
    max-width: 259px;
}

.concept_logo span {
    font-weight: bold;
    /* 1.8rem */
    font-size: 1.125em;
    padding-bottom: 5px;
}

.concept_title {
    /* font-size: 3rem; */
    font-size: clamp(2.4rem, 2rem + 0.521vw, 3rem);
    font-weight: bold;
    margin-bottom: 24px;
}

.concept_title span{
    display: inline-block;
}

.concept_desc {
    font-weight: bold;
    margin-bottom: 38px;
}

/* 右側 子要素 */
.img_group{
    width: 50vw;
    max-width: 816px;
    position: absolute;
    top: 60%;
    left: 45%;
    transform: translate(-0%, -50%);
    z-index: 5;
}

.img_group figure {
    width: 100%;
}

.img_group img {
    width: 100%;
}

/* 各画像で配置を変更する場合（数値は目安 調整必要） */
/*
.img_main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
} */
/* 左下 */
/*
.img_sub01 {
    width: 35%;
    height: 200px;
    bottom: 0;
    left: 0;
    z-index: 4;
} */
 /* 左上 */
/*
.img_sub02 {
    width: 30%;
    height: 150px;
    top: 0;
    left: 10%;
    z-index: 2;
} */
 /* 右下 */
/*
.img_sub03 {
    width: 35%;
    height: 180px;
    bottom: 10%;
    right: 0;
    z-index: 4;
} */

/* ボタンのデザイン */
.concept_btn {
    width: 98%;
    max-width: 360px;
    height: 60px;
}

/* 背景文字*/
.concept_bg_text {
    font-size: clamp(6rem, 10cqw, 22rem);
    white-space: nowrap;
    position: absolute;
    bottom: calc( (22rem - clamp(6rem, 10cqw, 22rem)) * 0.5 );
    left: 50%;
    transform: translate(-50%, 50%);
    font-weight: 700;
    font-style: italic;
    color: #F6F6F6;
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
}

@media screen and (max-width: 767.8px) {
    .p_top .c_sec.concept{
        padding-bottom: 20px;
    }
    .concept_inner{
        min-height: auto;
    }
    .concept_content {
        flex-direction: column;
        align-items: flex-start;
    }
    .concept_left, .concept_right {
        width: 100%;
    }
    .concept_title{
        font-size: 2rem;
    }
    .concept_desc{
        margin-bottom: 2px;
    }
    .concept_right{
        position: relative;
    }
    .img_group {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(-0%, -0%);
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    .concept_bg_text {
        font-size: calc(100cqi / 10);
        top: 0;
        transform: translate(-50%, 0%);
    }
    .concept_btn {
        width: 90%;
        max-width: 240px;
        height: 40px;
        margin: 0 auto;
        margin-top: 2rem;
    }
    img.p_btn_arrow {
        width: 24px;
        height: 24px;
    }
}
/*
@media screen and (max-width: 500px) {
    .concept_bg_text {
        font-size: 4rem;
    }
} */


/* --- 区切り線 --- */
.p_top_divider {
    width: 100%;
    margin-top: clamp(20px, -60px + 10.417vw, 140px);
}

.p_top_divider img {
    width: 100%;
    height: auto;
    display: block;
}



@media screen and (max-width: 767.8px) {
    .p_top_divider {
        margin-top: 20px;
    }
}

/* PC/SPで画像を出し分けする場合 */
/*
@media screen and (max-width: 767.8px) {
    .p_top_divider img.pc{
        display: none !important;
    }
    .p_top_divider img.sp{
        display: block !important;
    }
}
*/

/* ==================== */
/* newvideo */
/* ==================== */
/*
.p_top .c_sec.newvideo {
    padding-top: 250px;
}

.newvideo_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.newvideo_card {
    display: flex;
    align-items: center;
    gap: 40px;
}

.newvideo_thumb_wrap {
    position: relative;
    flex-shrink: 0;
}

.newvideo_thumb_wrap::before {
    content: "";
    position: absolute;
    bottom: -6%;
    left: 3.5%;
    width: 100%;
    height: 100%;
    background: var(--cl-accent02);
    border-radius: 20px;
    z-index: 1;
}

.newvideo_thumbnail {
    position: relative;
    z-index: 2;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.new_badge{
    display: inline-block;
    padding: 0px 10px 2px;
    font-size: 2rem;
    margin-bottom: 1.4rem;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-style: italic;
    background: linear-gradient(245deg, #E62475 0%, #0084CA 100%);
    border-radius: 10px;
}
@media screen and (max-width: 767.8px) {
    .new_badge{
        margin-top: 1.6rem;
        margin-bottom: 0;
    }
}

.newvideo_title {
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
}

.newvideo_desc {
    font-weight: bold;
    margin-bottom: 8px;
}

.newvideo_meta {
    font-size: 0.875em;
    font-weight: normal;
    white-space: normal;
}

.newvideo_authoricon {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    background-color: #fff;
    flex-shrink: 0;
    position: relative;
    margin-right: 8px;
}

.newvideo_authoricon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.newvideo_date {
    white-space: nowrap;
}

.newvideo_date::before {
    content: "|";
    margin-left: 8px;
    margin-right: 8px;
    font-weight: normal;
    color: #000;
}

.newvideo_top_row {
    margin-bottom: 80px;
}

.newvideo_card.top .newvideo_thumb_wrap {
    width: 55%;
    max-width: 630px;
}

.newvideo_card.top .newvideo_title{
    font-size: 3.0rem;
}

.newvideo_sub_row {
    width: 100%;
}

.newvideo_list_sub {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.newvideo_sub_item {
    display: flex;
    width: 100%;
}

.newvideo_card.sub .newvideo_thumb_wrap {
    width: 48%;
}

.newvideo_card.sub .newvideo_info {
    width: 52%;
}

.newvideo_sub_item:first-child {
    justify-content: space-between;
}

.newvideo_sub_item:first-child .newvideo_section_head {
    width: 40%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.newvideo_sub_item:first-child .newvideo_card.sub {
    width: 60%;
}

.newvideo_sec_title {
    font-size: clamp(6rem, 0.123rem + 7.663vw, 10rem);
    font-weight: 600;
    font-style: italic;
    color: var(--cl-accent02);
    line-height: 1;
    margin-bottom: 12px;
}

.newvideo_sub_title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.newvideo_sub_title img{
    width: 20px;
    object-fit: contain;
}

.newvideo_sub_title span{
    font-size: 2rem;
}

.newvideo_card.sub .newvideo_title {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.newvideo_sub_item:not(:first-child) {
    justify-content: flex-start;
}

.newvideo_sub_item:not(:first-child) .newvideo_card.sub {
    width: 60%;
}

@media screen and (max-width: 767.8px) {
    .p_top .c_sec.newvideo{
        padding-top: 100px;
    }

    .newvideo_section_head.sp{
        display: flex;
        flex-direction: column;
        margin-bottom: 40px;
    }
    .newvideo_sec_title{
        margin-bottom: 6px;
    }
    .newvideo_sub_title img{
        width: 15px;
    }

    .newvideo_top_row{
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .newvideo_list_sub{
        gap: 40px;
    }

    .newvideo_card{
        flex-direction: column;
        gap: 20px;
    }
    .newvideo_card.top .newvideo_thumb_wrap{
        width: 98%;
    }
    .newvideo_card.top .newvideo_title{
        font-size: 2rem;
        margin-top: 1.6rem;
    }
    .newvideo_card.sub .newvideo_title {
        margin-top: 1.6rem;
    }

    .newvideo_sub_item,
    .newvideo_sub_item:first-child {
        flex-direction: column;
        align-items: flex-start;
    }
    .newvideo_sub_item:first-child .newvideo_section_head,
    .newvideo_sub_item .newvideo_card.sub,
    .newvideo_sub_item:first-child .newvideo_card.sub,
    .newvideo_sub_item:not(:first-child) .newvideo_card.sub,
    .newvideo_card.sub .newvideo_thumb_wrap,
    .newvideo_card.sub .newvideo_info {
        width: 98%;
    }
    .newvideo_sub_row {
        flex-direction: column;
    }
    .newvideo_card.sub{
        flex-direction: column;
    }
    .newvideo_sec_title {
        font-size: 6rem;
    }
}

@media screen and (max-width: 500px) {
    .newvideo_card.top .newvideo_title{
        margin-top: 0.8rem;
    }

    .newvideo_top_row{
        margin-top: 30px;
    }

    .newvideo_card.sub .newvideo_title {
        margin-top: 0.8rem;
    }

}
*/

/* ==================== */
/* video Section */
/* ==================== */
.p_top .video {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.video_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.video_content_wrap {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

/* 縦書き見出しエリア */
.video_head {
    display: flex;
    align-items: start;
    flex-direction: column-reverse;
    gap: 2px;
    writing-mode: vertical-rl;
}

.video_sec_title {
    font-size: 10rem;
    font-weight: 800;
    color: var(--cl-accent02);
    line-height: 1;
    font-style: italic;
}

.video_sub_title{
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: bold;
}

.video_sub_title img {
    width: 15px;
    height: auto;
}

.video_sub_title span {
    font-size: 2.0rem;
}

/* メインカード */
.video_main_card {
    flex: 1;
    max-width: 868px;
}


.video_thumb_outer {
    position: relative;
    margin-bottom: 40px;
}

.video_thumb_outer::before {
    content: "";
    position: absolute;
    bottom: -4%;
    left: 2.5%;
    width: 100%;
    height: 100%;
    background: var(--cl-accent02);
    border-radius: 20px;
    z-index: 1;
}

.video_thumb_wrap {
    position: relative;
    z-index: 2;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

/* テキストエリア */
.video_title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.video_desc {
    margin-bottom: 15px;
}

.video_meta {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 10px; */
    font-weight: normal;
    white-space: normal;
    font-size: 1.4rem;
}

.video_authoricon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    font-size: 0.875em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.video_date{
    white-space: nowrap;
}

.video_date::before{
    content: "|";
    margin-left: 8px;
    margin-right: 8px;
}

.video_authoricon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1024px) {
    .video_title {
        font-size: 2.0rem;
    }

    .video_desc {
        font-size: 1.6rem;
}
}

/* ALL VIEWボタン */
.video_btn_container{
    width: 100%;
    margin-left: 20%;
    margin-top: 80px;
}

.video_btn {
    width: 98%;
    max-width: 360px;
    height: 60px;
}

@media screen and (max-width: 1024px) {
    .p_top .video{
        padding: 40px 0 100px;
    }

    .video_content_wrap {
        flex-direction: column;
    }

    .p_top .video::before ,
    .p_top .video::after {
        font-size: 11vw;
        bottom: 0;
    }

    .video_content_wrap {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .video_head {
        flex-direction: column;
        writing-mode: horizontal-tb;
        margin-bottom: 20px;
    }
    .video_sec_title {
        font-size: clamp(6rem, 0.123rem + 7.663vw, 10rem);
    }

    .video_main_card {
        margin: 0 auto;
    }

    .video_btn_container {
        margin-left: 0;
    }

    .video_btn{
        margin: 0 auto;
    }
}

@media screen and (max-width: 767.8px) {
    .p_top .video{
        padding: 40px 0 80px;
    }

    .video_head{
        margin-bottom: 0;
    }

    .video_btn_container {
        margin-top: 40px;
    }

    .video_btn {
        width: 90%;
        max-width: 240px;
        height: 40px;
    }

    .video_thumb_outer{
        margin-bottom: 20px;
    }
}

.video_list_content {
    width: 100%;
    margin-top: 60px;
}

.video_list {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.video_list_card {
    width: 430px;
    /* padding-right: 40px; */
    flex-shrink: 0;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

@media screen and (min-width: 768px) {
    .video_list_card:hover {
        transform: translateY(-5px);
    }
}

.video_list_card_link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.video_list_card_link:hover{
    opacity: 1 !important;
}


/* サムネイル画像 */
.video_list_thumb_wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.video_list_thumb_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_list_info {
    padding: 12px 4px 0;
}

.video_list_title {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4;
    color: #000;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 1行で省略表示 */
    -webkit-box-orient: vertical;
}

/* メタ情報 */
.video_list_meta {
    font-size: 1.4rem;
    font-weight: normal;
    white-space: normal;
}

.video_list_author_icon {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    background-color: #fff;
    flex-shrink: 0;
    position: relative;
    margin-right: 8px;
}

.video_list_author_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video_list_authorname {

}

.video_list_date {
    white-space: nowrap;
}

.video_list_date::before {
    content: "|";
    margin: 0 6px;
    color: #000;
}

@media screen and (max-width: 767.8px) {
    .video_list_content {
        margin-top: 40px;
    }

    .video_list_card {
        width: 70%;
        /* padding-right: 16px; */
    }
}

/* ==================== */
/* SPECIAL Section */
/* ==================== */
.p_top .special {
    padding: 140px 0 160px;
    position: relative;
    /* overflow: hidden; */
}

.special_bg_container{
    inset: 0;
    z-index: -3;
    background-color: #f6f6f6;
    position: absolute;
}

.p_top .special::after,
.p_top .special::before {
    content: "SPECIAL CONTENTS SPECIAL CONTENTS SPECIAL CONTENTS";
    position: absolute;
    bottom: -1%;
    left: 50%;
    transform: translate(-50%, -25%);
    white-space: nowrap;
    font-size: 220px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    font-family: var(--font-en);
}

.p_top .special::before {
    z-index: -2;
    color: #F6F6F6;
    -webkit-text-stroke: 2px #E5E5E5;
}

.p_top .special::after {
    z-index: -1;
    color: #F6F6F6;
    -webkit-text-stroke: 0;
}

.special_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2; /* 確実に背景文字より前に出す */
}

.special_content_wrap {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

/* 縦書き見出しエリア */
.special_head {
    display: flex;
    align-items: start;
    flex-direction: column-reverse;
    gap: 2px;
    writing-mode: vertical-rl;
}

.special_sec_title {
    font-size: 10rem;
    font-weight: 800;
    color: var(--cl-accent01);
    line-height: 1;
    font-style: italic;
}

.special_sub_title{
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: bold;
}

.special_sub_title img {
    width: 15px;
    height: auto;
}

.special_sub_title span {
    font-size: 2.0rem;
}

/* メインカード */
.special_main_card {
    flex: 1;
    max-width: 868px;
}


.special_thumb_outer {
    position: relative;
    margin-bottom: 40px;
}

.special_thumb_outer::before {
    content: "";
    position: absolute;
    bottom: -4%;
    left: 2.5%;
    width: 100%;
    height: 100%;
    background: var(--cl-accent01); /* ピンク色 */
    border-radius: 20px;
    z-index: 1;
}

.special_thumb_wrap {
    position: relative;
    z-index: 2;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

/* テキストエリア */
.special_title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.special_desc {
    margin-bottom: 15px;
}

.special_meta {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 10px; */
    font-weight: normal;
    white-space: normal;
    font-size: 1.4rem;
}

.special_authoricon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    font-size: 0.875em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.special_date{
    white-space: nowrap;
}

.special_date::before{
    content: "|";
    margin-left: 8px;
    margin-right: 8px;
}

.special_authoricon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1024px) {
    .special_title {
        font-size: 2.0rem;
    }

    .special_desc {
        font-size: 1.6rem;
}
}

/* ALL VIEWボタン */
.special_btn_container{
    width: 100%;
    margin-left: 20%;
    margin-top: 80px;
}

.special_btn {
    width: 98%;
    max-width: 360px;
    height: 60px;
}

@media screen and (max-width: 1024px) {
    .p_top .special{
        padding: 100px 0 100px;
    }

    .special_content_wrap {
        flex-direction: column;
    }

    .p_top .special::before ,
    .p_top .special::after {
        font-size: 11vw;
        bottom: 0;
    }

    .special_content_wrap {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .special_head {
        flex-direction: column;
        writing-mode: horizontal-tb;
        margin-bottom: 20px;
    }
    .special_sec_title {
        font-size: clamp(6rem, 0.123rem + 7.663vw, 10rem);
    }

    .special_main_card {
        margin: 0 auto;
    }

    .special_btn_container {
        margin-left: 0;
    }

    .special_btn {
        margin: 0 auto;
    }
}

@media screen and (max-width: 767.8px) {
    .p_top .special{
        padding: 60px 0 60px;
    }

    .special_head{
        margin-bottom: 0;
    }

    .special_btn_container {
        margin-top: 40px;
    }

    .special_btn {
        width: 90%;
        max-width: 240px;
        height: 40px;
    }

    .special_thumb_outer{
        margin-bottom: 20px;
    }
}

.special_list_content {
    width: 100%;
    margin-top: 60px;
}

.special_list {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.special_list_card {
    width: 430px;
    /* padding-right: 40px; */
    flex-shrink: 0;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

@media screen and (min-width: 768px) {
    .special_list_card:hover {
        transform: translateY(-5px);
    }
}

.special_list_card_link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.special_list_card_link:hover{
    opacity: 1 !important;
}

/* サムネイル画像 */
.special_list_thumb_wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.special_list_thumb_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special_list_info {
    padding: 12px 4px 0;
}

.special_list_title {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4;
    color: #000;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 1行で省略表示 */
    -webkit-box-orient: vertical;
}

/* メタ情報 */
.special_list_meta {
    font-size: 1.4rem;
    font-weight: normal;
    white-space: normal;
}

.special_list_author_icon {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    background-color: #fff;
    flex-shrink: 0;
    position: relative;
    margin-right: 8px;
}

.special_list_author_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.special_list_authorname {

}

.special_list_date {
    white-space: nowrap;
}

.special_list_date::before {
    content: "|";
    margin: 0 6px;
    color: #000;
}

@media screen and (max-width: 767.8px) {
    .special_list_content {
        margin-top: 40px;
    }

    .special_list_card {
        width: 70%;
        /* padding-right: 16px; */
    }
}

/* ==================== */
/* video LIST */
/* ==================== */
.p_top .c_sec.videolist{
    padding-top: 0;
}

.videolist{
    position: relative;
    --bg-color: #020617;
    --card-gap: 1.5vw;
    /* --section-height: 750px; */
    --section-height: 640px;
    --primary-gradient: linear-gradient(135deg, #db2777 0%, #2563eb 100%);
}

.videolist_container {
    overflow: hidden;
}

/* Scroll Logic Layout */
.scroll-wrapper {
    /* height: 200vh;  */
    position: relative;
}

.sticky-stage {
    position: sticky;
    top: calc(50% - (var(--section-height) / 2));
    height: var(--section-height);
    max-height: 50vh;   /* 追加：レスポンシブ時の大きさ調整のため */
    width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
}
@media screen and (min-width: 768px) {
    .sticky-stage {
        max-height: 60vh;
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: var(--card-gap);
    width: 96%;
    max-width: 1600px;
    height: 100%;
    align-items: center;
    z-index: 10;
}

.column {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.track {
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
    will-change: transform;
    transition: transform 0.15s cubic-bezier(0.1, 0.4, 0.1, 1);
}

.video-tile {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: #1e293b;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-tile img {
    border-radius: 12px;
}

/* Floating Title Layer */
.floating-title-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
    pointer-events: none;
    background: rgba(2, 6, 23, 0.6);
    height: 102%;
}

.main-title-box {
    text-align: center;
    opacity: 0;
    /* transform: scale(0.9); */
    transform: scale(0.6);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    padding: 2.5rem 5rem;
}

.main-title-box h2 {
    /* font-size: clamp(2.5rem, 6vw, 5rem); */
    font-size: clamp(4rem, 6vw, 10rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.main-title-box p {
    /* font-size: 0.85rem; */
    font-size: clamp(1.4rem, 1.127rem + 0.727vw, 2rem);
    letter-spacing: 0.1em;
    color: #fff;
}

/* Action Button */
.all-view-container {
    position: absolute;
    bottom: 0;
    right: 23%;
    z-index: 100;
}

.all-view-btn {
    width: 200px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 20px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
    cursor: pointer;
    border: none;
    color: #fff;
    /* ボケ防止 */
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.all-view-btn span.label {
    font-size: 2.0rem;
    font-weight: 800;
}

.all-view-btn span.arrow {
    display: block;
    width: 15%;
    margin-top: 1rem;
    transition: all 0.4s ease;
}

.all-view-btn span.arrow img {
    width: 100%;
    object-fit: contain;
    filter: invert(100%);
}

.all-view-btn:hover {
    opacity: 1;
}
@media screen and (min-width: 768px) {
    .all-view-btn:hover {
        transform: scale(1.1);
    }
    .all-view-btn:hover span.arrow {
        margin-left: 1.5rem;
    }
}

/* Spacer Sections */
.spacer {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    letter-spacing: 0.5em;
    opacity: 0.2;
}

/* Responsive */
@media screen and (max-width: 767.8px) {
    .videolist {
        --section-height: 400px;
        --card-gap: 10px;
    }

    .gallery-grid {
        /* 画面幅に固定 */
        width: 100vw;
        padding: 0 10px;
        box-sizing: border-box;
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 10px;
        overflow: hidden;
    }

    /* 左のカラムを左側へ押し出す */
    .column:nth-child(1) {
        transform: translateX(-24%);
    }

    .column:nth-child(2) {
        width: 124%;
        transform: translateX(-10%);
    }

    /* 右のカラムを右側へ押し出す */
    .column:nth-child(3) {
        transform: translateX(24%);
    }

    .all-view-btn { width: 120px;}
    /* .all-view-container { bottom: 1.5rem; right: 1.5rem; } */
    .all-view-btn span.label { font-size: 1.6rem;}
    .main-title-box { padding: 1.5rem 1rem; width: 90%; }
    .main-title-box h2 { font-size: 4rem; }
}

/* ==================== */
/* MAGAZINE */
/* ==================== */

.p_top .c_sec.magazine {
    margin-top: 100px;
    padding-top: 0px;
    padding-bottom: 0;
    position: relative;
}

.magazine .p_top_divider{
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate( 0 , -50%);
    z-index: 2;
}

.magazine_content{
    padding: 120px 0 100px;
    background-image: url("../../../assets/images/top/bg_magazine_gridline.png");
    background-repeat: repeat;
    background-size: auto;
    transform: translateY(1px);
    z-index: 1;
}

/* 記事リスト */
.magazine_list {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 70px 0px 20px;
}

.magazine_card {
    width: 410px;
    height: 100%;
    flex-shrink: 0;
    aspect-ratio: 410 / 337;
    background: #fff;
    border: 1px solid #000;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

@media screen and (min-width: 768px) {
    .magazine_card:hover {
        transform: translateY(-5px);
    }
}

.magazine_card_thumb {
    position: relative;
    aspect-ratio: 410 / 192;
    overflow: hidden;
    width: 100%;
}

.magazine_card_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 記事概要 */
.magazine_card_body {
    padding: 18px 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 44%;
}

.magazine_card_ttl {
    font-weight: bold;
    line-height: 1.4;
    height: 2.8em; /* 2行分確保 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.magazine_card_meta {
    display: flex;
    align-items: center;
    font-size: 0.875em;
    color: #000;
    line-height: 1;
}

.magazine_author_icon {
    width: 9%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: 8px;
}
.magazine_author_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.magazine_date::before{
    content: "|";
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.magazine_btn_container {
    width: 100%;
    margin-left: 20%;
    margin-top: 80px;
}

.magazine_btn{
    width: 98%;
    max-width: 360px;
    height: 60px;
}

@media screen and (max-width: 767.8px) {
    .p_top .c_sec.magazine {
        margin-top: 60px;
    }
    .magazine_content{
        padding: 60px 0 60px;
    }

    .magazine_list{
        padding: 60px 0px 20px;
    }

    .magazine_btn_container {
        margin-top: 20px;
        margin-left: 0;
    }

    .magazine_btn{
        width: 90%;
        max-width: 240px;
        height: 40px;
        margin: 0 auto;
    }
}


@media screen and (min-width: 501px) and (max-width: 767px) {

    .magazine_card {
        width: 70%;
        aspect-ratio: 47 / 40;
        margin-bottom: 20px;
    }

    .magazine_card_body {
        padding: 8px 5% ;
        height: 45%;
    }

    .magazine_card_ttl {
        font-size: clamp(1.4rem, 1.023rem + 0.752vw, 1.6rem);
    }

    .magazine_card_meta{
        margin-top: 0px;
    }
}

@media screen and (max-width: 500px) {

    .magazine_card {
        width: 80%;
        aspect-ratio: 47 / 40;
        min-width: 260px;
        margin-bottom: 20px;
    }

    .magazine_card_body {
        padding: 8px 4%;
        height: 45%;
    }

    .magazine_card_meta{
        font-size: 1.2rem;
        margin-top: 0.1em;
        margin-bottom: 0.1em;
    }
}


/* -----改修追加------ */

.magazine_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2; /* 確実に背景文字より前に出す */
}

.magazine_content_wrap {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* 縦書き見出しエリア */
.magazine_head {
    display: flex;
    align-items: start;
    flex-direction: column-reverse;
    gap: 2px;
    writing-mode: vertical-rl;
}

.magazine_sec_title {
    font-size: 10rem;
    font-weight: 800;
    color: #8F45A1;
    line-height: 1;
    font-style: italic;
}

.magazine_sub_title{
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: bold;
}

.magazine_sub_title img {
    width: 15px;
    height: auto;
}

.magazine_sub_title span {
    font-size: 2.0rem;
}

/* メインカード */
.magazine_main_card_outer{
    position: relative;
    margin-bottom: 40px;
}

.magazine_main_card_outer::before {
    content: "";
    position: absolute;
    bottom: -4%;
    left: 2.5%;
    width: 100%;
    height: 100%;
    background: #8F45A1;
    border-radius: 20px;
    z-index: 1;
    transition: all 0.3s ease;
}

.magazine_main_card_outer:hover {
    opacity: 1 !important;
}

.magazine_main_card_outer:hover::before{
    opacity: 0.8;
}

.magazine_main_card {
    flex: 1;
    max-width: 868px;
    height: 100%;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #000;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.magazine_main_card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.magazine_main_card_outer:hover .magazine_main_card::after {
    opacity: 0.4;
}

.magazine_thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 868 / 407;
}

.magazine_info{
    padding: 30px 3.4% 40px;
}

/* テキストエリア */
.magazine_title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.magazine_desc {
    margin-bottom: 15px;
}

.magazine_meta {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 10px; */
    font-weight: normal;
    white-space: normal;
    font-size: 1.4rem;
}

.magazine_authoricon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    font-size: 0.875em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.magazine_date{
    white-space: nowrap;
}

.magazine_date::before{
    content: "|";
    margin-left: 8px;
    margin-right: 8px;
}

.magazine_authoricon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1024px) {
    .magazine_title {
        font-size: 2.0rem;
    }

    .magazine_desc {
        font-size: 1.6rem;
    }

    .magazine_content_wrap {
        flex-direction: column;
    }
    .magazine_head {
        flex-direction: column;
        writing-mode: horizontal-tb;
        margin-bottom: 20px;
    }
    .magazine_sec_title {
        font-size: clamp(6rem, 0.123rem + 7.663vw, 10rem);
    }

    .magazine_main_card_outer {
        margin: 0 auto;
    }
}

@media screen and (max-width: 767.8px) {

    .magazine_head{
        margin-bottom: 0;
    }

    .magazine_thumb_outer{
        margin-bottom: 20px;
    }
}


/* ==================== */
/* blog */
/* ==================== */

.p_top .c_sec.blog {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
}

.blog_bg_container{
    inset: 0;
    z-index: -3;
    background-color: #f6f6f6;
    position: absolute;
}

.blog_content{
    padding: 140px 0 160px;
    background-repeat: repeat;
    background-size: auto;
}

/* リスト */
.blog_list {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 70px 0px 20px;
}

.blog_card {
    width: 410px;
    height: 100%;
    flex-shrink: 0;
    aspect-ratio: 410 / 327;
    background: #fff;
    border: 1px solid #000;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

@media screen and (min-width: 768px) {
    .blog_card:hover {
        transform: translateY(-5px);
    }
}

.blog_card_thumb {
    position: relative;
    aspect-ratio: 410 / 192;
    overflow: hidden;
    width: 100%;
}

.blog_card_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 概要 */
.blog_card_body {
    padding: 18px 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 44%;
}

.blog_card_ttl {
    font-weight: bold;
    line-height: 1.4;
    height: 2.8em; /* 2行分確保 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog_card_meta {
    display: flex;
    align-items: center;
    font-size: 0.875em;
    color: #000;
    line-height: 1;
}

.blog_author_icon {
    width: 9%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: 8px;
}
.blog_author_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog_date::before{
    content: "|";
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.blog_btn_container {
    width: 100%;
    margin-left: 20%;
    margin-top: 70px;
}

.blog_btn{
    width: 98%;
    max-width: 360px;
    height: 60px;
}

@media screen and (max-width: 1024px) {
    .blog_content{
        padding: 100px 0 100px;
    }
}

@media screen and (max-width: 767.8px) {
    .blog_content{
        padding: 60px 0 60px;
    }

    .blog_list{
        padding: 60px 0px 20px;
    }

    .blog_btn_container {
        margin-top: 20px;
        margin-left: 0;
    }

    .blog_btn{
        width: 90%;
        max-width: 240px;
        height: 40px;
        margin: 0 auto;
    }
}


@media screen and (min-width: 501px) and (max-width: 767px) {

    .blog_card {
        width: 70%;
        aspect-ratio: 47 / 40;
        margin-bottom: 20px;
    }

    .blog_card_body {
        padding: 8px 5% ;
        height: 45%;
    }

    .blog_card_ttl {
        font-size: clamp(1.4rem, 1.023rem + 0.752vw, 1.6rem);
    }

    .blog_card_meta{
        margin-top: 0px;
    }
}

@media screen and (max-width: 500px) {

    .blog_card {
        width: 80%;
        aspect-ratio: 47 / 40;
        min-width: 260px;
        margin-bottom: 20px;
    }

    .blog_card_body {
        padding: 8px 4%;
        height: 45%;
    }

    .blog_card_meta{
        font-size: 1.2rem;
        margin-top: 0.1em;
        margin-bottom: 0.1em;
    }
}

.blog_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2; /* 確実に背景文字より前に出す */
}

.blog_content_wrap {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* 縦書き見出しエリア */
.blog_head {
    display: flex;
    align-items: start;
    flex-direction: column-reverse;
    gap: 2px;
    writing-mode: vertical-rl;
}

.blog_sec_title {
    font-size: 10rem;
    font-weight: 800;
    color: #575FA9;
    line-height: 1;
    font-style: italic;
}

.blog_sub_title{
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: bold;
}

.blog_sub_title img {
    width: 15px;
    height: auto;
}

.blog_sub_title span {
    font-size: 2.0rem;
}

/* メインカード */
.blog_main_card {
    flex: 1;
    max-width: 868px;
    height: 100%;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #000;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.blog_main_card_outer{
    position: relative;
    margin-bottom: 40px;
}

.blog_main_card_outer::before {
    content: "";
    position: absolute;
    bottom: -4%;
    left: 2.5%;
    width: 100%;
    height: 100%;
    background: #575FA9;
    border-radius: 20px;
    z-index: 1;
}

.blog_thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 868 / 407;
}

.blog_info{
    padding: 30px 3.4% 40px;
}

/* テキストエリア */
.blog_title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.blog_desc {
    margin-bottom: 15px;
}

.blog_meta {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 10px; */
    font-weight: normal;
    white-space: normal;
    font-size: 1.4rem;
}

.blog_authoricon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    font-size: 0.875em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.blog_date{
    white-space: nowrap;
}

.blog_date::before{
    content: "|";
    margin-left: 8px;
    margin-right: 8px;
}

.blog_authoricon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1024px) {

    .blog_title {
        font-size: 2.0rem;
    }

    .blog_desc {
        font-size: 1.6rem;
    }

    .blog_content_wrap {
        flex-direction: column;
    }
    .blog_head {
        flex-direction: column;
        writing-mode: horizontal-tb;
        margin-bottom: 20px;
    }
    .blog_sec_title {
        font-size: clamp(6rem, 0.123rem + 7.663vw, 10rem);
    }

    .blog_main_card_outer {
        margin: 0 auto;
    }
}

@media screen and (max-width: 767.8px) {

    .blog_head{
        margin-bottom: 0;
    }

    .blog_thumb_outer{
        margin-bottom: 20px;
    }
}


/* ==================== */
/* OTHER CHANNELS */
/* ==================== */
.p_top .c_sec.other_channels {
    padding-top: 100px;
}

/* 区切り線エリア全体のレイアウト */
.other_channels_header {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

/* 左側の画像とボーダーの組み合わせ */
.other_channels_header::before {
    content: "";
    flex: 1; /* 画像の右側の空きを埋めるボーダー */
    height: 1px;
    background: #ccc;
}

/* 右側の長いボーダー */
.other_channels_header::after {
    content: "";
    flex: 1; /* タイトルの右側の空きを埋めるボーダー */
    height: 1px;
    background: #ccc;
    margin-right: 20px; /* 端の余白 */
}

/* セクションタイトル（白塗りでボーダーの上に配置） */
.other_channels_title_wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    background: #fff; /* 背面を白塗りにしてborderを隠す */
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.other_channels_sec_title {
    font-size: 4.2rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1;
}

.other_channels_sub_title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 1.4rem;
}

/* コンテンツ */
.other_channels_inner {
    margin-top: 60px;
}

.channels_grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    position: relative;
}

/* 中央の縦線 */
.channels_grid::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #000;
}

.channel_item {
    width: calc(50% - 40px);
    max-width: 470px;
}

.channel_head {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.channel_icon {
    width: 20%;
    aspect-ratio: 1 / 1;
    max-width: 100px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}
.channel_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.channel_name {
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.channel_desc {
    font-size: 1.6rem;
    line-height: 1.6;
}

.channel_video {
    margin-bottom: 30px;
}

.channel_btn {
    width: 98%;
    max-width: 300px;
    height: 60px;
    margin-top: 20px;
}

.channel_video_thumbnail {
    position: relative;
    z-index: 2;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.bg_gradation {
    position: relative;
}
.bg_gradation::before {
    content: "";
    position: fixed;
    inset: 0;
    opacity: 1;
    background:
        url("../../../assets/images/top/bg_gradation_magenta.png") no-repeat top 40% right -2%,
        url("../../../assets/images/top/bg_gradation_cyan.png") no-repeat bottom -10% left -2%;
    background-size: 34%, 34%;
    z-index: -1;
    pointer-events: none;
}

@media screen and (max-width: 1024px) {
    .channels_grid {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .channels_grid::after {
        display: none;
    }
    .channel_item {
        width: 100%;
    }
    .other_channels_sec_title {
        font-size: 2.8rem;
    }

    .channel_head {
        gap: 10px;
        align-items: start;
    }

    .channel_icon {
        width: 14%;
    }

    .bg_gradation::before {
        background-size: 50%, 50%;
    }
}

@media screen and (max-width: 767.8px) {
    .p_top .c_sec.other_channels {
        padding-top: 60px;
    }

    .other_channels_inner{
        margin-top: 40px;
    }
    .channel_btn {
        width: 90%;
        max-width: 240px;
        height: 40px;
        margin: 0 auto;
        margin-top: 1rem;
    }

    .bg_gradation::before {
        background:
            url("../../../assets/images/top/bg_gradation_magenta.png") no-repeat top 40% right -10%,
            url("../../../assets/images/top/bg_gradation_cyan.png") no-repeat bottom left -10%;
        background-size: 70%, 70%;
    }
}