@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: 55px;
}

.top-logo img {
    width: 100%;
    height: auto;
}
@media screen and (max-height: 860px) {
    .top-logo {
        width: 30vh; 
        top: 30px;
    }
}
@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: 37vh;
}
@media screen and (max-height: 850px) {
    .philosopy-wrapper {
        width: 55vh; 
        top: 27vh;
    }
}
@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%;
}

@media (max-width: 860px) {
    .philoso-img {
        margin-bottom: 10px;
    }
}

.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;
}

@media (max-width: 860px) {
    .philoso-inner {
        margin-bottom: 10px;
    }
}

@media (max-width: 560px) {
    .sub-contents .philoso-inner {
        display: block;
        margin-bottom: 5px;
        text-align: center;
    }
}

.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;
}

@media (max-width: 860px) {
    .philoso-button {
        font-size: 0.75rem;
        padding: 0 5px;
        height: 25px;
    }
}

@media (max-width: 560px) {
    .philoso-button {
        font-size: 0.55rem;
        height: 20px;
       margin-left: auto;
       margin-right: auto;
    }
}

.philoso-button-inner {
    width: 58%;
    position: relative;
    display: flex;
    justify-content: end;
}
@media screen and (max-height: 860px) {
    .philoso-button-inner {
        width: 25vh;
    }
}
.philoso-button-inner::after {
    position: absolute;
    content: "";
    z-index: 0;
    border-bottom: solid 1px #FFF;
    width: 100%;
    height: 15px;
}

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

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

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

.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: 1160px) {
    .sub-contents .right-menu {
        position: fixed;
        top: 50px;
    }
}

@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;
    }
}

@media (max-width: 560px) {
    .right-menu li {
        font-size: 0.925rem;
        padding-right: 25px;
    }
    .right-menu li::before {
        width: 20px;
        top: 10px;
    }
    .right-menu li span {
        font-size: 0.675rem;
    }
}

/* ====================================================
   アニメーション
==================================================== */
.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: 10px;
}

.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 {
    position: relative;
    z-index: 10;
    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);
}
@media (max-width: 860px) {
    .stream-button-prev,
    .stream-button-next {
        transform: translateY(-15px);
    }
}

.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;
    padding-bottom: 70px;
}

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

.two-flex, .two-flex-mv, .two-flex-yt, .two-flex-cont, .two-flex-prof {
    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: 580px) {
    .two-flex-mv {
        display: block;
    }
}

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

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

.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: 0;
    margin-right: 20px;
}

.movie-sub-inner {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.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 {
    position: relative;
    z-index: 10;
    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;
    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;
        margin-bottom: 50px;
    }
}

.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;
}

/* ==================================================
   背景用のアニメーション定義（設計図）
================================================== */
@keyframes fadeInHalf {
    0% {
        opacity: 0;   /* スタート時は完全に透明 */
    }
    100% {
        opacity: 0.3; /* ゴールは半透明（ここでストップ） */
    }
}

/* ==================================================
   パララックスページ固有の設定
================================================== */
/* 1. 固定背景（スマホ対応） */
.is-parallax .sub-contents::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: url('../images/main-visual.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeInHalf 2s ease forwards;
}

.is-parallax .sub-contents {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 0;
    display: flow-root;
}

/* 2. 重なってくるコンテンツの設定（全幅のラッパーに背景色を指定） */
.is-parallax .contents-outer,
.is-parallax footer {
    position: relative;
    z-index: 1;
    background-color: #000000; /* フルワイズで黒背景を敷く */
}

/* （オプション）必要に応じてouterの上下に余白を設ける場合 */
.is-parallax .contents-outer {
    padding-top: 70px; /* .contents の margin-bottom とバランスを取るなど */
}

.sub-header {
    position: fixed;
    content: "";
    z-index: 1;
    max-width: 480px;
    top: 0;
    left: 50px;
    bottom: 0;
}

@media (max-width: 1400px) {
    .sub-header {
        max-width: 320px;
    }
}

@media (max-width: 1160px) {
    .sub-header {
        max-width: 100%;
        left: 0;
        right: 0;
        padding: 0px 30px 70px;
        bottom: auto;
        display: flex;
        justify-content: space-between;
        background-color: rgba(0, 0, 0, 0.5);
    }
}

.sub-logo {
    max-width: 208px;
    margin-top: 50px;
}

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

@media (max-width: 1160px) {
    .sub-logo {
        max-width: 168px;
        margin-top: 45px;
    }
}

@media (max-width: 860px) {
    .sub-logo {
        width: 108px;
        margin-top: 30px;
    }
}

.sub-philosofy-wrap {
    margin-top: 12vh;
    max-width: 390px;
}

@media (max-width: 1400px) {
    .sub-philosofy-wrap {
        max-width: 280px;
    }
}

@media (max-width: 1160px) {
    .sub-philosofy-wrap {
        margin-top: 50px;
        margin-right: auto;
        margin-left: 50px;
    }
}

@media (max-width: 860px) {
    .sub-philosofy-wrap {
        max-width: 180px;
        margin-top: 30px;
        margin-left: 30px;
    }
}

@media (max-width: 560px) {
    .sub-philosofy-wrap {
        width: 105px;
        margin-left: 20px;
    }
}

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

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

@media (max-width: 560px) {
    .sub-philoso-title {
        width: 100%;
        font-size: 1.045rem;
    }
}

.sub-philoso-txt {
    color: #FFF;
    font-size: 1.075rem;
    font-weight: bold;
    line-height: 120%;
}

@media (max-width: 1400px) {
    .sub-philoso-txt {
        font-size: 0.925rem;
    }
}

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

@media (max-width: 560px) {
    .sub-philoso-txt {
        font-size: 0.55rem;
    }
}

.sub-name {
    position: absolute;
    bottom: 50px;
    font-size: 3.125rem;
    font-weight: bold;
    color: #FFFFFF;
}

.sub-name span {
    color: #B9B9B9;
    font-size: 1.6875rem;
    display: block;
    margin-top: 10px;
}

@media (max-width: 1160px) {
    .sub-name {
        font-size: 1.675rem;
        position: absolute;
        bottom: 10px;
        width: 100%;
        display: flex;
    }
    .sub-name span {
        font-size: 1rem;
        margin-top: 5px;
        margin-left: 20px;
    }
}

@media (max-width: 1000px) {
    .sub-name {
        font-size: 2.5rem;
    }
    .sub-name span {
        font-size: 1.25rem;
    }
}
@media (max-width: 860px) {
    .sub-name {
        font-size: 1.875rem;
    }
    .sub-name span {
        font-size: 1rem;
    }
}

.comment {
    position: relative;
    display: block;
    margin-left: 500px;
    margin-right: 50px;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 50px;
    margin-top: 280px;
    margin-bottom: 200px;
}

@media (max-width: 1400px) {
    .comment {
        margin-left: 370px;
        padding: 30px;
    }
}

@media (max-width: 1160px) {
    .comment {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 860px) {
    .comment {
        margin-top: 200px;
        padding: 20px;
        margin-bottom: 100px;
    }
}

.coment-cat {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.coment-cat span {
    font-size: 0.75rem;
    margin-left: 20px;
}

@media (max-width: 860px) {
    .coment-cat {
        margin-bottom: 10px;
    }
}

.return-b {
    position: relative;
    font-size: 0.975rem;
    cursor: pointer;
    padding-right: 20px;
    width: fit-content;
}

.return-b::before {
    position: absolute;
    content: "▶";
    color: #FF2885;
    right: 0;
}

.return-b a {
    color: #000000;
}

.return-b a:hover {
    color: #FF2885;
}

@media (max-width: 580px) {
    .return-b {
        font-size: 0.725rem;
    }
}

.jacket {
    max-width: 174px;
    margin-right: 30px;
}

.jacket img {
    width: 100%;
    height: auto;
}

@media (max-width: 1240px) {
    .jacket {
        width: 132px;
    }
}

@media (max-width: 780px) {
    .jacket {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }
}

.song-name {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 130%;
}

.song-name span {
    font-size: 2rem;
    display: block;
    margin-top: 10px;
    line-height: 100%;
}

.produ-flex-outer a.song-name {
    color: #000000;
}

@media (max-width: 1240px) {
    .song-name {
        font-size: 2rem;
    }
    .song-name span {
        font-size: 1.5rem;
    }
}

@media (max-width: 780px) {
    .song-name {
        text-align: center;
    }
}

.philo-song-name {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 130%;
}
.philo-song-name span {
    font-size: 1.275rem;
    line-height: 170%;
    display: block;
    margin-top: 5px;
}
.stra-box {
    display: block;
}

@media (max-width: 1140px) {
    .stra-box {
        margin-top: 20px;
    }
}

@media (max-width: 780px) {
    .stra-box {
        display: flex;
        justify-content: space-around;
    }
}

.liter {
    font-size: 1.145rem;
    line-height: 150%;
}

@media (max-width: 1240px) {
    .liter {
        font-size: 0.975rem;
    }
}

@media (max-width: 780px) {
    .liter {
        font-size: 0.875rem;
        text-align: center;
    }
}

.produ-flex-outer {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: solid 1px #000000;
    margin-bottom: 50px;
}
.produ-flex-outer a {
    color: #000000;
}
.produ-flex-outer a:hover {
    opacity: 0.8;
}

@media (max-width: 1140px) {
    .produ-flex-outer {
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 780px) {
    .produ-flex-outer {
        display: block;
    }
}

.produ-flex {
    display: flex;
    align-items: center;
}

@media (max-width: 780px) {
    .produ-flex {
        display: block;
    }
}

.streming-b {
    cursor: pointer;
    width: 132px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F1EC4F;
    border-radius: 15px;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.streming-b a {
    color: #000000;
}

@media (max-width: 1140px) {
    .streming-b {
        margin-right: 20px;
    }
}
@media (max-width: 780px) {
    .streming-b {
        font-size: 1rem;
        height: 25px;
        width: 125px;
    }
}

@media (max-width: 480px) {
    .streming-b {
        margin-bottom: 0;
    }
}

.youtube-b {
    cursor: pointer;
    width: 132px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF2885;
    border-radius: 15px;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.youtube-b a:hover {
    color: #FFFFFF;
}
@media (max-width: 780px) {
    .youtube-b {
        font-size: 1rem;
        height: 25px;
        width: 125px;
    }
}
.comment-box {
    width: 100%;
}
.comment-box a {
    color: #000;
}
.comment-box a:hover {
    color: #444;
}

.comment-box h2 {
    font-size: 1.5rem;
    line-height: 170%;
    padding-bottom: 20px;
}

.ln-title {
    font-size: 1.5rem;
    line-height: 170%;
    padding: 20px 0 0;
    border-top: solid 1px #000000;
}
@media (max-width: 780px) {
    .ln-title {
        font-size: 1.275rem;
        padding: 10px 0 0;
        text-align: center;
    }
}

.comment-box p {
    font-size: 1rem;
    line-height: 200%;
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .comment-box h2 {
        font-size: 1.25rem;
        padding-bottom: 10px;
    }
    .comment-box p {
        font-size: 0.975rem;
    }
}

/* 🎵 引用ブロック（blockquote）の基本設定 */
.wp-block-quote {
    position: relative;
    padding: 30px 0px;  /* 引用符を配置するための左右の余白 */
    margin: 40px 0;      /* 上下にもゆったりとした余白を */
    border-left: none;   /* WordPressデフォルトの左側の縦線を消す */
    background: transparent; /* 背景色（必要に応じて rgba(255,255,255,0.05) などにしてもOK） */
    text-align: center;  /* 歌詞などを中央揃えにしたい場合は残す（左揃えが良い場合は left に） */
}

/* 🏷 左上の開始引用符（“） */
.wp-block-quote::before {
    content: "“";
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 50px;
    color: #444; /* ダーク系のサイトに馴染む渋いグレー（お好みで調整） */
    font-family: "Times New Roman", serif; /* 引用符の形が一番美しくなるフォント */
    line-height: 1;
}

/* 🏷 右下の終了引用符（”） */
.wp-block-quote::after {
    content: "”";
    position: absolute;
    bottom: -40px;
    right: 0;
    font-size: 50px;
    color: #444;
    font-family: "Times New Roman", serif;
    line-height: 1;
}

/* 引用内の文字（段落）の微調整 */
.wp-block-quote p {
    margin-top: 0;
    font-style: italic;
    letter-spacing: 0.05em;
}

/* 最後の段落の下は余白を消す（引用符と文字のバランスを綺麗に保つ魔法） */
.wp-block-quote p:last-child {
    margin-bottom: 0;
}

.log-b a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 100px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #F1EC4F;
    color: #000000;
    font-size: 0.8125rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}
.log-c a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 100px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #F1EC4F;
    color: #000000;
    font-size: 0.8125rem;
    margin-top: 10px;
}