@charset "UTF-8";

body {
    font-family: "Noto Sans JP", sans-serif;
}

.hero {
    display: flex;
    flex-direction: column;
    width: 100%;
    aspect-ratio: 9/15;
}
@media screen and (min-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        aspect-ratio: initial;
    }

}
.hero-main {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.hero-main_title {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 999999;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (min-width: 768px) and (orientation: landscape) {
    .hero-main_title {
        width: 130%;
        max-width: 1440px;
        height: 95%;
    }
}
.hero-main_title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}
.hero-main-body {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999999999999;
}
.hero-footer {
    background: #000;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 999999999999;
}
.hero-footer_line {
    width: 100%;
    height: 6px;
    border: solid 0px;
    border-top-width: 6px;

    border-image: linear-gradient(to right, 
        #C5B163 0%,     /* 左端：金 */
        #fff 55%,       /* 中心より少し右：白 */
        #C5B163 100%    /* 右端：金 */
    ) 1;
    border-image-slice: 1;
}
.hero-footer img {
    width: 100%;
    max-width: 1180px;
}
.mv {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.mv .swiper-wrapper,
.mv .swiper-slide {
    height: 100%;
}
.mv-bg {
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    /* aspect-ratio: 1440/955; */
    /* max-height: 800px; */
}
.mv-bg.--1 {
    background-image: url("../img/pic2-a-sp.png");
}
.mv-bg.--2 {
    background-image: url("../img/pic2-b-sp.png");
}
@media screen and (min-width: 768px) and (orientation: landscape) {
    .mv-bg.--1 {
    background-image: url("../img/pic2-a.png");
    }
    .mv-bg.--2 {
        background-image: url("../img/pic2-b.png");
    }
}

.hero-main-tiktok {
    display: none;
    height: 140%;
    aspect-ratio: 500/1001;
    position: absolute;
    bottom: -40%;
    z-index: 999999999;
}

.hero-main-tiktok.--1 {
    left: 3%;
}

.hero-main-tiktok.--2 {
    right: 10%;
}
@media screen and (min-width: 768px) and (orientation: landscape) {
    .hero-main-tiktok {
        display: none;
        height: 115%;
        aspect-ratio: 500/1001;
        position: absolute;
        bottom: -15%;
        z-index: 999999999;
    }
    .hero-main-tiktok.--1 {
        left: 10%;
    }

    .hero-main-tiktok.--2 {
        right: 10%;
    }
}

.hero-main-tiktok_waku {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.hero-main-tiktok_waku img {
    width: 100%;
    height: auto;
}
.hero-main-tiktok_media {
    width: 87%;
    position: absolute;
    top: 2.5%;
    left: 6.5%;
    z-index: 1;
}
.hero-main-tiktok_media video {
    width: 100%;
    height: auto;
}

.hero-main-content {
    display: none;
    width: 75%;
    max-width: 600px;
    position: absolute;
    bottom: 10%;
    z-index: 99999999999999999999;
    overflow: hidden;
}

.hero-main-content.--1 {
    display: block !important;
    right: 0%;
}
.hero-main-content.--2 {
    left: 10%;
}
.hero-main-content_text {
    width: 100%;
    height: auto;
}
@media screen and (min-width: 768px) and (orientation: landscape) {
    .hero-main-content {
        display: none;
        width: 65%;
        max-width: 600px;
        position: absolute;
        bottom: 20%;
        z-index: 99999999999999999999;
        overflow: hidden;
    }
    .hero-main-content.--2 {
        left: 13%;
    }

}

            
            
.hero-title {
    position: relative;
    height: 60px;
    overflow: hidden;
}
@media screen and (min-width: 768px) and (orientation: landscape) {
    .hero-title {
        height: 80px;
    }
}
.hero-title_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 16/9;
    background-image: url("../img/feature1.jpg");
    background-size: cover;
    transform: translateY(0);
    animation: htb-show 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    z-index: 1;
}
@keyframes htb-show {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20%);
    }
    
}
.hero-title_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(100%);
    text-align: center;
    height: 70%;
    width: 95%;
    z-index: 2;
    animation: htt-show 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title_text img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}
@keyframes htt-show {
    0% {
        transform: translate(-50%, -50%) translateY(100%);
    }
    100% {
        transform: translate(-50%, -50%) translateY(0%);
    }
}

.footer {
    background: #000;
    width: 100%;
}
.footer_copy {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    max-width: 1440px;
    width: 95%;
    padding: 12px 0;
    margin: 0 auto;
}

.main-point {
    background: #000;
    width: 100%;
    padding: 32px 0;
}
.main-point_text {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.main-point_text img {
    width: 100%;
    height: auto;
}
.main-section {
    background: #000;
    width: 100%;
}
.main-section_text {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.main-section_text img {
    width: 100%;
    height: auto;
}