@charset "utf-8";
.header_nav02 li.nav-top a{
    background: #6d6854;
    color: #fff;
}

.foot_nav02 .nav_top{
    background-color: #6d6854;
    color: #fff;
	transition :0.7s;
}
/* .foot_nav02 .nav_top:hover {
    opacity: 0.5;
} */
.cap{
    color: #fff;
}
.mt60{
    margin: 60px auto 0;
}
.t_center{
    text-align: center;
}

.mv_sp{
    display: none;
}

/* MV */
.mv{
    position: relative;
}

.mv_belt_bg{
    background-color: #271f00;
}
.mv_belt_bg .com_inner{
    padding: 35px 20px 35px;
}
.mv_belt_img{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 960px;
    justify-content: space-between;
}
.mv_belt_img_01{
    max-width: 470px;
    width: 49%;
}
.mv_belt_img_01:nth-of-type(n+3){
    margin-top: 20px;
}


.top_info{
    padding-bottom: 100px;
}
.top_en{
    color: #6d6854;
    font-size: 24px;
    font-family: "Noto Sans JP", "Cinzel", serif;
}
.ttl_info{
    font-size: 34px;
    letter-spacing: 0.6em;
    line-height: 2;
}
.info_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eae2c8;
    font-size: 20px;
    width: 480px;
    height: 60px;
    background-color: #6d6854;
    letter-spacing: 0.4em;
    transition: 0.7s;
}
.info_btn:hover{
    opacity: 0.5;
    transition: 0.7s;
}
.info_btn_in{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 468px;
    height: 48px;
    border: 1px solid #eae2c8;
}
.info_btn_in::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0.5%;
	width: 21px;
	height: 21px;
	background-color: #eae2c8;
	clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
}


@media screen and (max-width: 1720px) {

}
@media screen and (max-width: 1200px) {

}

    
@media screen and (max-width: 1000px) {

}

@media screen and (max-width: 750px) {

    
}
@media screen and (max-width: 650px) {
.mt60{
    margin: 40px auto 0;
}

.mv_belt_bg .cap{
    margin-top: 30px;
}
.mv_pc{
    display: none;
}
.mv_sp{
    display: block;
}

.mv_belt_bg .com_inner{
    padding: 20px 20px 20px;
}
.mv_belt_img_01{
    max-width: 335px;
    width: 100%;
    margin: 0 auto;
}
.mv_belt_img_01:nth-of-type(n+2) {
    margin-top: 10px;
}

.ttl_info{
    font-size: 26px;
    letter-spacing: 0.6em;
    line-height: 2;
}

.info_btn{
    width: 335px;
    height: 42px;
    font-size: 16px;
}
.info_btn_in{
    width: 325px;
    height: 33px;
}
.info_btn_in::after {
	top: 47%;
	right: 0.5%;
	width: 15px;
	height: 15px;
}
}

@media screen and (max-width: 500px) {

}


/* mv */


.main_visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* アスペクト比固定 */
    /* max-width: 1400px; */
    margin: 0 auto;
    overflow: hidden;
    font-size: 1vw;
    /* 文字・パーティクルの基準サイズ */
}

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

/* レイヤー共通 */

.bg_layer,
.beam_layer,
.particle_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg_layer {
    z-index: 1;
}

.beam_layer {
    display: none;
    z-index: 2;
    pointer-events: none;
}



.particle_layer {
    z-index: 3;
    pointer-events: none;
}

.white_label_box,
.station_label_layer,
.main_title_layer,
.catch_copy_vert {
    position: absolute;
    z-index: 10;
}



.light_particle {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    /* 光彩効果：ぼかしを入れて発光感を出す */
    box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.8);
    opacity: 0;
    /* 最初は消えている */
    /* 加算合成で光をきれいに重ねる */
    mix-blend-mode: screen;
}



@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 0.8;
        /* ふわっと現れる */
        transform: translateY(-2em) scale(1);
    }
    100% {
        opacity: 0;
        /* 上に行きながら消える */
        transform: translateY(-8em) scale(0.2);
    }
}



.main_visual.is_active .light_particle {
    animation-name: particleFloat;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    /* ずっと繰り返す */
}



.white_label_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.8em 1.5em;
}

.pos_center_right {
    top: 68%;
    left: 54%;
}

.pos_bottom_center {
    bottom: 5%;
    left: 49.5%;
    padding: 0.2em 0.5em;
}

.label_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.label_img {
    width: 8em;
}

.label_text {
    display: block;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    color: #333;
    white-space: nowrap;
}

.label_text_mask {
    overflow: hidden;
}

.label_img,
.label_text {
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s ease 0.4s, opacity 0.6s ease 0.4s;
}

.main_visual.is_active .label_bg {
    transform: scaleX(1);
}

.main_visual.is_active .label_img,
.main_visual.is_active .label_text {
    transform: translateY(0);
    opacity: 1;
}



.pos_yoga {
    bottom: 2%;
    right: 42%;
}



.pos_futako {
    top: 43%;
    left: 29.5%;
    font-size: 0.7vw;
}

.marker_group {
    position: relative;
    width: 0;
    height: 0;
}

.circle_marker {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) scale(0);
    width: 0.8em;
    height: 0.8em;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease 1.0s, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.0s;
}

.line_element {
    position: absolute;
    height: 1px;
    background-color: rgba(255, 255, 255, .8);
    width: 0;
    top: 0%;
    left: 0;
    transition: width .8s cubic-bezier(.22, 1, .36, 1) 1.3s;
}




/* .line_left { left: auto; right: 0; transform-origin: right; top: 0; } */

.text_mask_container {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-left: 1em;
    padding-bottom: 0.5em;
    overflow: hidden;
}



.pos_futako .text_mask_container {
    /* left: auto;
    right: 0;
    margin-left: 0;
    margin-right: 1.5em; 
    text-align: right;
  */
}

.text_content {
    display: block;
    color: #fff;
    font-size: 1.2em;
    white-space: nowrap;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.5s, opacity 0.8s ease 1.5s;
}

.main_visual.is_active .circle_marker {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.main_visual.is_active .pos_yoga .line_element {
    /* width: 8.5em; */
    width: 6.5vw;
}

.main_visual.is_active .pos_futako .line_element {
    /* width: 16em; */
    width: 10vw;
}

.main_visual.is_active .text_content {
    transform: translateY(0);
    opacity: 1;
}



.beam_image {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transition: clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.8s, opacity 0.5s ease 1.8s;
}

.main_visual.is_active .beam_image {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}



.main_title_layer {
    top: 14%;
    left: 0;
    right: 0;
    margin: auto;
    width: 15%;
    text-align: center;
}

.title_4min img {
    width: 100%;
    filter: blur(10px);
    opacity: 0;
    transform: scale(1.1);
    transition: filter 1.0s ease 2.5s, opacity 1.0s ease 2.5s, transform 1.0s ease 2.5s;
}

.title_yoga_vert {
    position: absolute;
    top: 1%;
    right: 33%;
    width: 13%;
}

.title_yoga_vert img {
    opacity: 0;
    transform: translateY(-1em);
    transition: opacity 0.8s ease 2.8s, transform 0.8s ease 2.8s;
}

.main_visual.is_active .title_4min img {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
}

.main_visual.is_active .title_yoga_vert img {
    opacity: 1;
    transform: translateY(0);
}



.catch_copy_vert {
    top: 38.5%;
    left: 43%;
    writing-mode: vertical-rl;
    font-size: clamp(0em, 2em, 21px);
    color: #fff;
    letter-spacing: 0.25em;
    line-height: 1.8;
}

.catch_copy_vert span {
    display: inline-block;
    opacity: 0;
    transform: translateY(-0.5em);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.main_visual.is_active .catch_copy_vert span {
    opacity: 1;
    transform: translateY(0);
}

.main_visual.is_active .catch_copy_vert span:nth-child(1) {
    transition-delay: 3.2s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(2) {
    transition-delay: 3.25s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(3) {
    transition-delay: 3.3s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(4) {
    transition-delay: 3.35s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(5) {
    transition-delay: 3.4s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(6) {
    transition-delay: 3.45s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(7) {
    transition-delay: 3.5s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(8) {
    transition-delay: 3.55s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(9) {
    transition-delay: 3.6s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(10) {
    transition-delay: 3.65s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(11) {
    transition-delay: 3.7s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(12) {
    transition-delay: 3.75s;
}

.main_visual.is_active .catch_copy_vert span:nth-child(13) {
    transition-delay: 3.8s;
}


@media screen and (max-width: 1400px) {

.main_visual {
    width: 1400px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
}

.white_label_box{
    padding: 7px 10px;
}

.label_img{
    width: 154px;
}
.label_text{
    font-size: 12.6px;
}
.catch_copy_vert{
    font-size: 21px;
}
.text_content{
    font-size: 11.72px;
}

.main_visual.is_active .pos_futako .line_element{
    width: 130px;
}
.main_visual.is_active .pos_yoga .line_element{
    width: 80px;
}

}

@media screen and (max-width: 650px) {
    .main_visual {
        width: 1100px;
        font-size: 11px;
    }
    .pos_futako{
        display: none;
    }
    .label_img {
        width: 100px;
    }
    .catch_copy_vert {
        font-size: 18px;
    }
}



