@charset "UTF-8";

/* スマホ用変数 */
:root {
    --main-violet: #9D50E6;
    --deep-night: #281A45;
    --accent-cyan: #00E0D1;
    --misty-pink: #E8A5EB;
    --pale-lavender: #F6F0FC;
    --white: #ffffff;
}

/* アニメーション */
@keyframes floatSP { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes rainbowBorder { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes spin { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spinReverse { 0% { transform: translate(-50%, -50%) rotate(360deg); } 100% { transform: translate(-50%, -50%) rotate(0deg); } }
@keyframes loadingGlitch { 0% { text-shadow: 2px 2px var(--main-violet); } 50% { text-shadow: -2px -2px var(--accent-cyan); } 100% { text-shadow: 2px 2px var(--main-violet); } }
@keyframes barFill { 0% { width: 0; } 100% { width: 100%; } }

body {
    -webkit-text-size-adjust: 100%; margin: 0; font-family: sans-serif;
    background-color: var(--deep-night); color: white; cursor: auto !important;
}
.pc-only, #cursor-follower { display: none !important; }
.sp-only { display: block !important; }

/* ローディング */
.loading-screen { position: fixed; inset: 0; background-color: #0d001a; z-index: 9999; display: flex; justify-content: center; align-items: center; transition: 0.8s ease; }
.loading-screen.loaded { opacity: 0; visibility: hidden; }
.loading-circle-outer { position: absolute; top: 50%; left: 50%; width: 300px; height: 300px; border: 2px dashed rgba(157, 80, 230, 0.3); border-radius: 50%; transform: translate(-50%, -50%); animation: spin 20s linear infinite; }
.loading-circle-inner { position: absolute; top: 50%; left: 50%; width: 200px; height: 200px; border: 2px dashed rgba(0, 224, 209, 0.3); border-radius: 50%; transform: translate(-50%, -50%); animation: spinReverse 15s linear infinite; }
.loading-content { z-index: 2; text-align: center; }
.logo-main { font-size: 3rem; font-weight: 900; color: var(--white); letter-spacing: 0.1em; animation: loadingGlitch 0.3s infinite; }
.logo-sub { font-size: 0.8rem; letter-spacing: 0.3em; color: var(--accent-cyan); margin-bottom: 20px; }
.loading-bar-container { width: 200px; height: 4px; background: rgba(255,255,255,0.1); margin: 0 auto; border-radius: 4px; overflow: hidden; }
.loading-bar { width: 0%; height: 100%; background: var(--accent-cyan); animation: barFill 1.5s ease-out forwards; }
.loading-percent { margin-top: 10px; font-size: 0.7rem; color: var(--misty-pink); }

/* ヘッダー (ガラス風) */
.site-header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(40, 26, 69, 0.8); backdrop-filter: blur(10px);
    padding: 10px 0; border-bottom: 1px solid var(--main-violet);
}
.logo-text { font-weight: bold; font-size: 1.2rem; color: var(--white); }

/* ハンバーガー */
.hamburger-btn { width: 30px; height: 30px; border: none; background: none; position: relative; z-index: 1100; }
.hamburger-btn span { position: absolute; left: 50%; transform: translateX(-50%); width: 24px; height: 2px; background-color: var(--accent-cyan); transition: 0.3s; box-shadow: 0 0 5px var(--accent-cyan); }
.hamburger-btn span:nth-child(1) { top: 6px; }
.hamburger-btn span:nth-child(2) { top: 14px; }
.hamburger-btn span:nth-child(3) { top: 22px; }
.hamburger-btn.active span { background-color: var(--misty-pink); }
.hamburger-btn.active span:nth-child(1) { top: 14px; transform: translateX(-50%) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { top: 14px; transform: translateX(-50%) rotate(-45deg); }

/* メニュー */
.sp-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: rgba(13, 0, 26, 0.98); z-index: 1050;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.3s;
}
.sp-menu.active { opacity: 1; visibility: visible; }
.sp-menu a { font-size: 1.5rem; font-weight: bold; color: var(--white); margin-bottom: 25px; }
.sp-social { margin-top: 30px; display: flex; gap: 20px; font-size: 2rem; }
.sp-social a { color: var(--accent-cyan); }

/* ヒーロー */
.hero-section {
    height: 100vh; background-image: url('asset/backimg.webp');
    background-size: cover; background-position: center; display: flex; justify-content: center; align-items: center;
}
.glitch-effect { font-size: 3rem; text-shadow: 3px 3px 0 var(--main-violet); text-align: center; }
.hero-subtitle {
    margin-top: 20px; font-size: 0.9rem; color: var(--accent-cyan);
    background: rgba(0,0,0,0.5); padding: 5px 15px; border-radius: 15px;
}

/* コンテンツ */
.section { padding: 80px 20px; }
.section-title {
    font-size: 2.2rem; text-align: center; margin-bottom: 40px;
    color: var(--white); text-shadow: 0 0 10px var(--main-violet);
    position: relative; display: inline-block; width: 100%;
}
.section-title::before, .section-title::after { content: '✦'; position: absolute; top: 0; font-size: 1.5rem; color: var(--accent-cyan); }
.section-title::before { left: 10%; }
.section-title::after { right: 10%; color: var(--misty-pink); }

.section-news, .section-movie, .profile-box, .link-banner {
    background: rgba(40, 26, 69, 0.5) !important;
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 20px; padding: 25px; margin-bottom: 30px;
}

.news-item { display: block; padding: 15px; border-bottom: 1px dashed rgba(255,255,255,0.2); }
.news-item .date { color: var(--accent-cyan); font-weight: bold; margin-right: 10px; }
.news-item .tag { background: var(--main-violet); padding: 3px 10px; border-radius: 10px; font-size: 0.7rem; }
.news-item .title { margin-top: 5px; font-size: 1rem; color: var(--white); }

.profile-box { flex-direction: column; text-align: center; }
.profile-img-area img {
    width: 160px; height: 160px; border-radius: 50%; border: 4px solid var(--white);
    box-shadow: 0 0 20px var(--misty-pink); margin-bottom: 20px; animation: floatSP 3s ease-in-out infinite;
}
.profile-text-area h3 { color: var(--misty-pink); font-size: 1.8rem; margin-bottom: 10px; border-bottom: 2px dashed var(--accent-cyan); display: inline-block; }
.btn-common {
    width: 100%; display: block; text-align: center; padding: 15px; margin-top: 20px; box-sizing: border-box;
    background: linear-gradient(45deg, var(--main-violet), var(--deep-night)); border-radius: 30px; font-weight: bold; color: white;
}

.video-wrap {
    position: relative; padding-bottom: 56.25%; height: 0; border-radius: 15px; overflow: hidden;
    padding: 3px; background: linear-gradient(45deg, var(--main-violet), var(--accent-cyan));
    background-size: 200% 200%; animation: rainbowBorder 3s ease infinite;
}
.video-wrap iframe { position: absolute; top: 3px; left: 3px; width: calc(100% - 6px); height: calc(100% - 6px); border-radius: 12px; }

.movie-grid { display: grid; gap: 20px; }
.link-banner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.link-banner { width: 100%; box-sizing: border-box; text-align: center; padding: 20px 10px; animation-duration: 7s; }
.link-banner i { font-size: 2rem; color: var(--accent-cyan); }
.link-banner p { font-size: 0.9rem; font-weight: bold; margin-top: 8px; color: var(--white); }

.site-footer { padding: 30px; background: #0d001a; color: rgba(255,255,255,0.5); font-size: 0.7rem; text-align: center; border-top: 1px solid var(--deep-night); }