@charset "utf-8";

/* ====================================================
   ベース・リセット
==================================================== */
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    overflow-x: clip;
    margin: 0;
    background: #000;
}

h1, h2, h3, h4, h5, p, ul, li, div, dl, dt, dd, ol {
    margin: 0px;
    padding: 0px;
    line-height: 100%;
    list-style-type: none;
}

:root {
    --header-height: 160px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-y: scroll;
}

html.overflow-y-hidden {
    overflow-y: hidden;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

a:hover {
    text-decoration: none;
    color: #F1EC4F;
}

img {
    border-style: none;
    padding: 0px;
    margin: 0px;
    line-height: 100%;
}

.bp {
    display: inline-block;
}

container {
    width: 100%;
    display: block;
    position: relative;
}

/* ====================================================
   ヘッダー・メインビジュアル
==================================================== */
.top-header {
    position: relative;
    width: 100%;
    height: 120vh;
}

.main-visual {
    width: 100%;
    height: 84vh;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

@media (max-width: 1100px) {
    .main-visual {
        height: 600px;
    }
}

@media (max-width: 860px) {
    .main-visual {
        height: 100vh;
    }
}

.visual-inner img {
    width: 120%;
    object-fit: cover;
    object-position: left bottom;
}

@media (max-width: 1100px) {
    .visual-inner img {
        width: 150%;
        height: 600px;
        object-fit: cover;
        object-position: right 130px top 0px;
    }
}

@media (max-width: 860px) {
    .visual-inner img {
        width: 130%;
        height: 80vh;
        object-fit: cover;
        object-position: left 56% top 0px;
    }
}

.top-logo {
    position: absolute;
    width: 18%;
    max-width: 270px;
    z-index: 1;
    left: 85px;
    top: 65px;
}

.top-logo img {
    width: 100%;
    height: auto;
}

@media (max-width: 860px) {
    .top-logo {
        width: 100px;
        left: 30px;
        top: 30px;
    }
}

/* ====================================================
   PHILOSOPHY
==================================================== */
.philosopy-wrapper {
    position: absolute;
    z-index: 1;
    width: 38%;
    max-width: 620px;
    left: 85px;
    top: 40vh;
}

@media (max-width: 860px) {
    .philosopy-wrapper {
        left: 30px;
        top: 350px;
        width: 85%;
        max-width: 480px;
    }
}

.philosopy {
    display: block;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.philoso-img {
    width: 100%;
    margin-bottom: 20px;
}

.philoso-img img {
    width: 100%;
}

.philoso-title {
    color: #FFF;
    font-weight: bold;
    font-size: 2.5rem;
    width: 40%;
}

@media (max-width: 1460px) {
    .philoso-title {
        font-size: 2.8vw;
    }
}

@media (max-width: 860px) {
    .philoso-title {
        font-size: 2rem;
    }
}

.philoso-txt {
    color: #FFF;
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 1460px) {
    .philoso-txt {
        font-size: 1.65vw;
    }
}

@media (max-width: 860px) {
    .philoso-txt {
        font-size: 0.895rem;
    }
}

.philoso-inner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.philoso-button {
    background-color: #000;
    height: 30px;
    color: #FFF;
    border-radius: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    width: fit-content;
    z-index: 1;
}

.philoso-button-inner {
    width: 58%;
    position: relative;
    display: flex;
    justify-content: end;
}

.philoso-button-inner::after {
    position: absolute;
    content: "";
    z-index: 0;
    border-bottom: solid 1px #FFF;
    width: 100%;
    height: 15px;
}

@media (max-width: 540px) {
    .philoso-button-inner::after {
        display: none;
    }
}

/* ====================================================
   右メニュー
==================================================== */
.right-menu {
    position: absolute;
    right: 0;
    top: 85px;
}

.right-menu li {
    font-size: 1.4375rem;
    color: #FFF;
    text-align: right;
    padding-right: 50px;
    position: relative;
}

.right-menu li a {
    padding-right: 50px;
    color: #FFF;
}

.right-menu li a:hover {
    color: #F1EC4F;
}

.right-menu li span {
    display: block;
    font-size: 0.875rem;
    color: #B9B9B9;
    padding-top: 5px;
}

.right-menu li::before {
    position: absolute;
    content: "";
    right: 0;
    top: 15px;
    width: 45px;
    height: 1px;
    background-color: #FFF;
}

@media (max-width: 860px) {
    .right-menu {
        top: 30px;
    }
    .right-menu li {
        font-size: 0.975rem;
        padding-right: 25px;
    }
    .right-menu li::before {
        width: 20px;
        top: 10px;
    }
    .right-menu li span {
        font-size: 0.775rem;
    }
}

/* ====================================================
   アニメーション
==================================================== */
.anim-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.anim-slide-right {
    opacity: 0;
    animation: slideRight 1s ease forwards;
}

@keyframes slideRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.anim-slide-left {
    opacity: 0;
    animation: slideLeft 1s ease forwards;
}

@keyframes slideLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.anim-slide-bottom {
    opacity: 0;
    animation: slideBottom 1s ease forwards;
}

@keyframes slideBottom {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hover-up {
    transition: transform 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

/* ====================================================
   ストリーム (DISTRIBUTION)
==================================================== */
.stream {
    position: absolute;
    z-index: 10;
    width: 100%;
    top: 88vh;
    transform: translateY(-50%);
}

.stream-title {
    color: #FFF;
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.stream-title span {
    margin-left: 20px;
    font-size: 1.4375rem;
}

@media (max-width: 860px) {
    .stream-title {
        font-size: 2rem;
    }
    .stream-title span {
        font-size: 1rem;
        display: block;
        margin-left: 0;
    }
}

.stream-slider-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 860px) {
    .stream-slider-area {
        gap: 10px;
        padding: 0 10px;
    }
}

.stream-button-prev,
.stream-button-next {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    color: #F1EC4F;
    font-size: 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.3s ease;
    transform: translateY(-28px);
}

.stream-button-prev:hover,
.stream-button-next:hover {
    opacity: 0.7;
}

.stream-swiper {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    overflow: hidden; /* Swiper用 */
    padding-top: 10px; /* ホバー時の見切れ防止用余白 */
}

.stream-swiper-inner a.stream-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.stream-img-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: solid 3px #F1EC4F;
    padding: 2px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.stream-img-mask {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    transform: translateZ(0);
}

.stream-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stream-swiper-inner a.stream-link:hover .stream-img-mask img {
    transform: scale(1.1);
}

.st-cap {
    text-align: center;
    color: #FFF;
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.4;
    transition: opacity 0.3s ease;
}

.st-cap span {
    display: block;
    color: #FFF;
    font-size: 0.75rem;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.stream-swiper-inner a.stream-link:hover .st-cap {
    opacity: 0.8;
}

.stream-txt {
    font-size: 1.145rem;
    color: #FFF;
    text-align: center;
    padding: 25px 0;
    line-height: 150%;
}

@media (max-width: 860px) {
    .stream-txt {
        font-size: 0.975rem;
    }
}

/* ====================================================
   共通コンテンツエリア
==================================================== */
.contents, .footer-contents {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 70px;
}

@media (max-width: 860px) {
    .contents, .footer-contents {
        padding: 0 20px;
    }
}

.two-flex, .two-flex-mv, .two-flex-yt, .two-flex-cont {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1300px) {
    .two-flex-yt {
        display: block;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px;
        position: relative;
    }
}

@media (max-width: 860px) {
    .two-flex-yt {
        padding: 0;
    }
}

@media (max-width: 1100px) {
    .two-flex-mv {
        display: block;
    }
}

@media (max-width: 1240px) {
    .two-flex-cont {
        display: block;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }
}

.two-flex-l {
    width: 57%;
}

.two-flex-r {
    width: 38%;
}

@media (max-width: 1300px) {
    .two-flex-l, .two-flex-r {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* ====================================================
   YouTube & SNS エリア
==================================================== */
.yt-l {
    width: 76%;
}

.yt-r {
    width: 22%;
}

.yt-r img {
    width: 100%;
}

@media (max-width: 480px) {
    .yt-l {
        width: 100%;
    }
    .yt-r {
        width: 20%;
        position: absolute;
        top: 0;
        right: 0;
    }
}

.yt-txt {
    font-size: 1.375rem;
    color: #FFF;
}

.yt-txt-b {
    font-size: 1rem;
    color: #FFF;
}

@media (max-width: 860px) {
    .yt-txt {
        font-size: 0.975rem;
    }
    .yt-txt-b {
        font-size: 0.875rem;
        line-height: 150%;
    }
}

.contents-title-a {
    color: #FFF;
    font-weight: bold;
    font-size: 2.375rem;
    padding-bottom: 20px;
    border-bottom: solid 5px #FF2885;
    margin-bottom: 20px;
}

@media (max-width: 860px) {
    .contents-title-a {
        font-size: 1.625rem;
    }
}

@media (max-width: 480px) {
    .contents-title-a {
        width: 78%;
    }
}

.contents-title-b {
    color: #FFF;
    font-weight: bold;
    font-size: 2.375rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

@media (max-width: 860px) {
    .contents-title-b {
        font-size: 1.625rem;
    }
}

.sns-icon {
    width: 30px;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.sns-icon img {
    width: 30px;
}

@media (max-width: 860px) {
    .sns-icon {
        width: 20px;
        margin-right: 10px;
    }
    .sns-icon img {
        width: 20px;
    }
}

.sns-flex {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    height: 33px;
}

@media (max-width: 860px) {
    .sns-flex {
        justify-content: center;
    }
}

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }

/* ====================================================
   CONCEPT ARTIST (MOVIE / SHORT / LIST)
==================================================== */
.movie-logo {
    max-width: 177px;
    width: 15%;
}

.movie-logo img {
    width: 100%;
}

@media (max-width: 1100px) {
    .movie-logo {
        width: 157px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
}

@media (max-width: 860px) {
    .movie-logo {
        width: 123px;
    }
}

.movie-title {
    color: #FFF;
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 860px) {
    .movie-title {
        font-size: 1.625rem;
    }
}

.movie-contents {
    width: 80%;
}

@media (max-width: 1100px) {
    .movie-contents {
        width: 100%;
    }
}

.movie-sub {
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: bold;
    margin-bottom: 20px;
    margin-right: 20px;
}

.movie-sub-inner {
    display: flex;
}

.movie-swiper {
    width: 100%;
    margin-bottom: 50px;
    overflow: hidden;
    padding-top: 10px; /* ホバー時の見切れ防止用余白 */
}

.movie-swiper-inner, .short-swiper-inner {
    position: relative;
}

.movie-swiper-inner a, .short-swiper-inner a {
    display: block;
}

.m-photo {
    width: 100%;
    margin-bottom: 10px;
}

.m-photo img {
    width: 100%;
}

.movie-m-title {
    font-size: 1.045rem;
    color: #FFFFFF;
    line-height: 150%;
    margin-bottom: 5px;
}

.movie-cap {
    font-size: 0.85rem;
    color: #FFFFFF;
    line-height: 150%;
}

.movie-button-prev,
.movie-button-next {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #FF2885;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.3s ease;
    transform: translateY(3px);
    margin: 0 3px;
}

.movie-button-prev:hover,
.movie-button-next:hover {
    opacity: 0.7;
}

/* ====================================================
   CONTACT
==================================================== */
.contact-inner {
    display: block;
    width: 40%;
    background-color: #2B2B2B;
    padding: 50px;
    cursor: pointer;
}

.contact-inner a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1300px) {
    .contact-inner {
        width: auto;
        padding: 30px 50px;
        margin-bottom: 20px;
    }
}

@media (max-width: 860px) {
    .contact-inner a {
        display: block;
    }
}

.qr-img {
    max-width: 162px;
    margin-left: 30px;
}

.qr-img img {
    width: 100%;
}

@media (max-width: 860px) {
    .qr-img {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ====================================================
   SITE POLICY
==================================================== */
.policy {
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    background-color: #2B2B2B;
    gap: 50px;
}

@media (max-width: 860px) {
    .policy {
        padding: 30px 30px 10px;
        display: block;
    }
}

.policy-inner {
    width: calc((100% - 50px) / 2);
    font-size: 1rem;
    line-height: 200%;
    color: #FFFFFF;
    padding-bottom: 0px;
}

@media (max-width: 860px) {
    .policy-inner {
        width: 100%;
        font-size: 0.925rem;
        margin-bottom: 20px;
    }
}

/* ====================================================
   FOOTER
==================================================== */
.footer-logo {
    width: 220px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.footer-logo img {
    width: 100%;
}

@media (max-width: 860px) {
    .footer-logo {
        width: 180px;
    }
}

.thanks-txt {
    font-size: 1rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
}

.footer-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    justify-content: space-around;
    max-width: 865px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

.suno, .chat { width: 90px; }
.suno img, .chat img { width: 100%; }

.gemini { width: 116px; }
.gemini img { width: 100%; }

.cubase { width: 117px; }
.cubase img { width: 100%; }

.rip { width: 141px; }
.rip img { width: 100%; }

@media (max-width: 860px) {
    .footer-banner {
        gap: 40px 20px;
        justify-content: center;
    }
    .footer-banner > div {
        width: calc((100% - 40px) / 3);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .suno img, .chat img { max-width: 90px; }
    .gemini img { max-width: 116px; }
    .cubase img { max-width: 117px; }
    .rip img { max-width: 141px; }
}

.copy {
    text-align: center;
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 70px;
}

/* ====================================================
   Swiper 補助スタイル
==================================================== */
/* Swiper初期化前のチラつき（画像巨大化）防止 */
.swiper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.swiper.swiper-initialized {
    opacity: 1;
    visibility: visible;
}