.col_prepare {
    text-align: center;
    margin: 50px auto;
    order: 1;
}

.pc_none {
    display: none;
}

.pc_none2 {
    display: none;
}

.sp_none {
    display: block;
}


.zen {
    font-family: "Zen Old Mincho", serif;

}

* img {
    display: block;
    width: 100%;
    height: auto;
}

.wrapper.trajectory {
    max-width: 100%;
}

.wrapper.trajectory #header.fixed {
    max-width: 100%;
}

.wrap_trajectory {
    margin: 0 auto;
    display: flex;
}

.right_trajectory {
    width: calc(100% - 359px);
}

.banner_area.trajectory {
    display: none;
}

.kv_trajectory {
    padding: 0;
    position: relative;
    z-index: 0;
}

.kv_trajectory::before {
    content: "";
    width: 91%;
    max-width: 1305px;
    height: 15.9vw;
    background-color: #424242;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}


.kv_trajectory img {
    width: 95.2%;
    max-width: 1358px;
    height: auto;
    margin: 0 0 0 auto;
    display: block;
}

.bnr_24 {
    max-width: 163px;
    position: absolute;
    top: 15px;
    left: 50%;
}

.breadcrumb {
    padding: 17px 0 17px 73px;
    color: #fff;
    font-size: 11px;
}

.breadcrumb.pc_none {
    display: none;
}

.breadcrumb a {
    color: #fff;
}

.grid_timeline {
    width: 96%;
    display: grid;
    gap: 50px 7px;
    max-width: 750px;
    margin: 60px auto 100px;
    justify-content: center;
    grid-template-columns: repeat(3, minmax(0, 245px));
    padding: 0;
    box-sizing: border-box;
}

.grid_timeline .column {
    box-sizing: border-box;
    max-width: 245px;
    display: flex;
    flex-direction: column;

}

.grid_timeline .thumbnail {
    width: 100%;
}

.grid_timeline .thumbnail:hover {
    opacity: 0.8;
}

.grid_timeline .thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.grid_timeline .thumbnail.video {
    position: relative;
}

.grid_timeline .thumbnail.video::after {
    position: absolute;
    content: '';
    background-image: url(../../img/new/trajectory/btn_play.png);
    background-size: 100% auto;
    width: 49px;
    height: 49px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.grid_timeline .date {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: normal;
    text-align: left;
}

@media (max-width: 740px) {
    .grid_timeline {
        grid-template-columns: repeat(3, minmax(0, 30.27vw));
        gap: 5.405vw 0.94vw;
        max-width: 100%;
        padding: 0 16px;
        margin: 5.46vw auto 10.8vw;
        justify-content: center;
    }

    .grid_timeline .column {
        max-width: none;
    }

    .grid_timeline .thumbnail img {
        width: 100%;
        max-width: none;
    }

    .grid_timeline .date {
        font-size: 2.40vw;
    }

    .grid_timeline .thumbnail.video::after {
        background-size: 100% auto;
        width: 6.63vw;
        height: 6.63vw;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.trajectory-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 99999;
}

.trajectory-popup-overlay.is-open {
    display: flex;
}

.trajectory-popup-inner {
    position: relative;
    width: auto;
    max-height: 90vh;
    padding: 18px;
    box-sizing: border-box;
}

.trajectory-popup-inner img,
.trajectory-popup-inner video {
    width: auto;
    height: 100%;
    max-width: 70vw;
    max-height: calc(100vh - 200px);
    display: block;
}

.trajectory-popup-date {
    font-family: "Inter", sans-serif;
    margin-top: 5px;
    color: #fff;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
}

.trajectory-popup-close {
    display: none;
    /* position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 22px;
    cursor: pointer; */
}

.grid_timeline .thumbnail {
    cursor: pointer;
}

.trajectory-popup-prev,
.trajectory-popup-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, .8);
    color: #000;

    font-size: 42px;
    line-height: 1;
    cursor: pointer;

    transition: background .2s;
    z-index: 1000;
}

.trajectory-popup-prev {
    left: -80px;
}

.trajectory-popup-next {
    right: -80px;
}



.trajectory-popup-prev span,
.trajectory-popup-next span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
}

/* ＞ */
.trajectory-popup-next span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 7px;
    height: 7px;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;

    transform: translate(-65%, -50%) rotate(45deg);
}

/* ＜ */
.trajectory-popup-prev span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 7px;
    height: 7px;
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;


    transform: translate(-35%, -50%) rotate(-45deg);
}

/* ---------------------------------------------------------------
	start max 740px
--------------------------------------------------------------- */
@media print,
screen and (max-width: 740px) {
    .pc_none {
        display: block;
    }

    .sp_none {
        display: none;
    }


    .kv_trajectory {
        display: none;
    }

    .banner_area.trajectory {
        background-color: transparent;
        display: block;
    }

    .breadcrumb.pc_none {
        display: block;
        color: #000;
        padding: min(2.3vw, 17px) 0 min(2.3vw, 17px) min(4.1vw, 30px);
        font-size: min(2.2vw, 16px);
    }

    .breadcrumb a {
        color: #000;
    }








    .trajectory-popup-prev {
        left: -10vw;
    }


    .trajectory-popup-next {
        right: -10vw;
    }




}

/* ---------------------------------------------------------------
	end max 740px
--------------------------------------------------------------- */