
.top_visual_section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 616px;
    border-radius: 0 0 60px 60px;
    overflow: hidden;
}
.top_visual_section::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0,0,0,0.4));
    z-index: -5;
    content: "";
}
.top_visual_section .scroll_icon {
    position: absolute;
    left: calc(50% - 12px);
    bottom: 24px;
    z-index: 5;
    width: 24px;
    height: 44px;
}
.top_visual_section .scroll_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.top_visual_section video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    object-fit: cover;
}
.top_visual_section .title_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.top_visual_section .title_wrap h2 {
    font-size: 42px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    letter-spacing: 0.4rem;
}
.top_visual_section .title_wrap h2 .m_br {
    display: none;
}
.top_visual_section .title_wrap h2 em {
    color: var(--mainpink);
}


@media screen and (max-width: 980px) {
    .top_visual_section {
        border-radius: 0;
    }
    .top_visual_section .title_wrap h2 {
        font-size: 36px;
    }
    .top_visual_section .title_wrap h2 .m_br {
        display: block;
    }
    
}