/* =========================================
   METANOIA CAREER OFFICE - FULL ARCHETYPE CSS
   (Ultimate Integrated Edition - Visual Clarity MAX)
   ========================================= */

:root {
    --bg-void: #050505;
    --text-holy: #f0f0f0;
    --accent-neon: #ff007f; 
}

/* --- 1. 背景とカメラ位置の強制固定 --- */
html, body {
    background-color: var(--bg-void) !important;
    color: var(--text-holy) !important;
    margin: 0 !important; padding: 0 !important;
    background-position: center 15% !important; 
    background-size: cover !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
}

/* --- 2. フォントの強制上書き & 全体シャドウ --- */
body, .m-theme-wrapper, .m-theme-wrapper div, .m-theme-wrapper span, .m-theme-wrapper p, .m-theme-wrapper a, .m-theme-wrapper li,
.j-static-page, .cc-content-parent, #content_area,
h1, h2, h3, h4, h5, h6, th, td {
    font-family: 'Shippori Mincho', serif !important;
}

.m-logo a, .m-global-nav a, .m-footer-logo, .m-footer-title, .m-footer-btn, .m-hero-sub, .m-hero-main, .m-p-en, .m-p-arrow, .copyright, .m-copy, .en-title, .mission-title,
.m-port-title, .m-l-icon, .id-name-en, .id-year, .m-yt-label, .m-yt-btn, #m-top-back, .m-header-logo, .m-confession-header h1 {
    font-family: 'Cinzel', serif !important;
}

a { text-decoration: none !important; color: var(--text-holy) !important; transition: 0.3s !important; }
a:hover { color: var(--accent-neon) !important; text-shadow: 0 0 8px rgba(255,0,127,0.5) !important; }

/* 汎用テキストに黒い影を強制付与して背景への同化を防止 */
p, li, td, th, .m-l-text, .m-yt-desc, .o-desc, .id-story-text, .m-mono-text p {
    text-shadow: 0 1px 3px rgba(0,0,0,1) !important;
}

body:not(.cc-pagemode-edit) .cc-content-parent, 
body:not(.cc-pagemode-edit) .j-layout, 
body:not(.cc-pagemode-edit) .site-wrapper {
    padding: 0 !important; margin: 0 !important; max-width: 100% !important; background: transparent !important;
}

/* --- 3. 浮遊するハンバーガーメニュー --- */
.m-header-floating { position: fixed; top: 0; left: 0; width: 100%; z-index: 2147483640; pointer-events: none; }
.m-nav-toggle { display: none; }
.m-nav-toggle-icon { 
    position: fixed; top: 30px; right: 30px; width: 35px; height: 22px; 
    cursor: pointer; z-index: 2147483647; pointer-events: auto;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.8)); 
}
.m-nav-toggle-icon span, .m-nav-toggle-icon span::before, .m-nav-toggle-icon span::after { position: absolute; width: 100%; height: 2px; background: #fff; transition: 0.3s; }
.m-nav-toggle-icon span { top: 10px; }
.m-nav-toggle-icon span::before { content: ''; top: -10px; }
.m-nav-toggle-icon span::after { content: ''; top: 10px; }
.m-nav-toggle:checked ~ .m-nav-toggle-icon span { background: transparent; }
.m-nav-toggle:checked ~ .m-nav-toggle-icon span::before { top: 0; transform: rotate(45deg); background: var(--accent-neon); }
.m-nav-toggle:checked ~ .m-nav-toggle-icon span::after { top: 0; transform: rotate(-45deg); background: var(--accent-neon); }

.m-global-nav {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: rgba(5,5,5,0.98); border-left: 1px solid #222;
    transition: 0.4s ease; padding-top: 100px; padding-bottom: 50px; 
    z-index: 2147483645; pointer-events: auto;
    overflow-y: auto; overflow-x: hidden; 
}
.m-global-nav::-webkit-scrollbar { width: 4px; }
.m-global-nav::-webkit-scrollbar-track { background: rgba(0,0,0,0.8); }
.m-global-nav::-webkit-scrollbar-thumb { background: var(--accent-neon); border-radius: 2px; }

.m-nav-toggle:checked ~ .m-global-nav { right: 0; }
.m-global-nav div, .m-global-nav ul, .m-global-nav li { display: block !important; list-style: none !important; margin: 0 !important; padding: 0 !important; }
.m-global-nav a { display: block !important; padding: 20px; text-align: center; border-bottom: 1px solid #111; font-size: 16px; letter-spacing: 2px; }
.m-global-nav a:hover { color: var(--accent-neon); background: rgba(255,0,127,0.05); }
.m-global-nav a.level_2 { font-size: 13px !important; padding: 15px 20px !important; background: rgba(15,15,15,0.8); color: #aaa !important; border-bottom: 1px solid #222; }
.m-global-nav a.level_2:hover { color: var(--accent-neon) !important; background: rgba(255,0,127,0.05); }

/* --- 4. メイン領域 --- */
.m-main { min-height: 80vh; }
.m-content { width: 100%; max-width: none; margin: 0; padding: 0; }
.j-static-page, .cc-content-parent { padding-top: 80px !important; }

/* --- 5. ヒーローセクション --- */


/* --- 5. ヒーローセクション --- */
.m-hero {
    width: 100%; min-height: 100vh; 
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    padding: 0 20px 80px; box-sizing: border-box;
    
    /* 黒いグラデーションで下部を沈めつつ、全体にすりガラスをかける */
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.1) 100%) !important;
    backdrop-filter: blur(10px) !important; /* ★すりガラス復活 */
    -webkit-backdrop-filter: blur(10px) !important; /* Safari対応 */
}

.m-hero-sub { color: var(--accent-neon); letter-spacing: 0.3em; font-size: 14px; margin-bottom: 20px; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.m-hero-main { font-size: 64px; line-height: 1.1; margin-bottom: 30px; color: #fff; text-shadow: 0 5px 15px rgba(0,0,0,1); }
.m-hero-desc { font-size: 18px; line-height: 2.2; color: #eee; max-width: 800px; margin: 0 auto; text-shadow: 0 2px 8px rgba(0,0,0,1); }


/* --- 6. 6つの柱 --- */
.m-pillars {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(255, 255, 255, 0.05); width: 100%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 10;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5); backdrop-filter: blur(10px); 
}
.m-pillar-item { background: rgba(5, 5, 5, 0.95); padding: 80px 30px; text-align: center; transition: all 0.4s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.m-pillar-item:hover { background: rgba(0, 0, 0, 0.98); box-shadow: inset 0 0 50px rgba(255, 0, 127, 0.15); transform: translateY(-5px); }
.m-p-en { color: #888; font-size: 12px; letter-spacing: 3px; display: block; margin-bottom: 15px; transition: 0.3s; }
.m-p-jp { font-size: 24px; margin-bottom: 25px; display: block; transition: 0.3s; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.m-pillar-item:hover .m-p-en, .m-pillar-item:hover .m-p-jp { color: var(--accent-neon); }
.m-p-desc { font-size: 14px; color: #aaa; line-height: 1.8; margin-bottom: 30px; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.m-p-arrow { color: var(--accent-neon); font-size: 12px; letter-spacing: 2px; opacity: 0.8; transition: 0.3s; }
.m-pillar-item:hover .m-p-arrow { opacity: 1; letter-spacing: 4px; }

/* --- 7. ポートフォリオ＆ハブ --- */
.m-portfolio-wrapper {
    width: 100%; max-width: 1200px; margin: 60px auto 0; display: flex; flex-wrap: wrap; gap: 40px; padding: 0 20px; box-sizing: border-box; position: relative; z-index: 10;
}
.m-port-profile, .m-port-links { flex: 1 1 45%; background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.05); padding: 50px 40px; border-radius: 4px; }
.m-port-title { font-size: 24px; color: var(--text-holy); letter-spacing: 2px; margin-bottom: 30px; border-bottom: 1px solid #333; padding-bottom: 15px; display: flex; flex-direction: column; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.m-port-title span { font-size: 12px; color: var(--accent-neon); letter-spacing: 1px; margin-top: 5px; font-family: 'Shippori Mincho', serif !important; }
.m-port-bio { font-size: 15px; line-height: 2.2; color: #eee; margin-bottom: 30px; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.m-port-btn { display: inline-block; border: 1px solid var(--accent-neon); color: var(--accent-neon) !important; padding: 12px 30px; font-size: 12px; letter-spacing: 2px; transition: 0.3s; background: rgba(255,0,127,0.05); }
.m-port-btn:hover { background: var(--accent-neon); color: #fff !important; box-shadow: 0 0 15px rgba(255,0,127,0.5); }

.m-port-link-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.m-link-item { display: flex; align-items: center; background: rgba(255, 255, 255, 0.02); border: 1px solid #333; padding: 15px; transition: 0.3s; border-radius: 8px; }
.m-link-item:hover { border-color: var(--accent-neon); background: rgba(255,0,127,0.05); transform: translateY(-3px); }
.m-l-icon { width: 50px; height: 50px; margin-right: 15px; display: flex; justify-content: center; align-items: center; border-radius: 50%; border: 2px solid rgba(255, 0, 127, 0.5); box-shadow: 0 0 10px rgba(255, 0, 127, 0.2); background: rgba(5, 5, 5, 0.8); transition: 0.3s; position: relative; overflow: hidden; }
.m-l-icon img { width: 24px; height: 24px; object-fit: contain; opacity: 0.85; transition: 0.4s ease; }
.m-link-item:hover .m-l-icon { border-color: var(--accent-neon); color: #fff; box-shadow: 0 0 20px var(--accent-neon), inset 0 0 15px var(--accent-neon); transform: scale(1.05); }
.m-link-item:hover .m-l-icon img { opacity: 1; transform: scale(1.2); filter: drop-shadow(0 0 5px rgba(255,0,127,0.8)); }
.m-l-text { font-size: 14px; color: #eee; line-height: 1.4; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.m-l-text small { font-size: 11px; color: #aaa; display: block; margin-top: 3px; }

/* --- 8. YouTube バナー領域 (THE BROADCAST) --- */
.m-yt-wrapper {
    width: 100%; max-width: 1200px; margin: 40px auto 0;
    display: flex; gap: 40px; padding: 0 20px; box-sizing: border-box;
    position: relative; z-index: 10;
}
.m-yt-banner {
    flex: 1; position: relative; overflow: hidden;
    border: 1px solid #333; border-radius: 4px;
    height: 260px; 
    transition: 0.4s ease;
    background: #000; 
}
.m-yt-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none; 
}
.m-yt-bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center center;
    transition: 0.6s ease;
    filter: brightness(0.8); 
}
.m-yt-content {
    position: relative; z-index: 2;
    height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 20px; text-align: center;
    background: radial-gradient(circle at center, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.7) 70%, transparent 100%);
}
.m-yt-banner::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-neon), transparent);
    opacity: 0.5; transition: 0.4s; z-index: 3;
}
.m-yt-banner:hover { border-color: var(--accent-neon); box-shadow: 0 0 20px rgba(255, 0, 127, 0.3); transform: translateY(-5px); }
.m-yt-banner:hover::before { opacity: 1; box-shadow: 0 0 15px var(--accent-neon); }
.m-yt-banner:hover .m-yt-bg img { filter: brightness(0.3); transform: scale(1.05); }

.m-yt-label { font-size: 12px; color: var(--accent-neon); letter-spacing: 2px; display: block; margin-bottom: 5px; text-shadow: 0 0 5px rgba(0,0,0,0.8); }
.m-yt-title { font-size: 24px; color: #fff; margin: 0 0 10px; font-weight: bold; text-shadow: 0 2px 10px rgba(0,0,0,1); }
.m-yt-desc { font-size: 13px; color: #eee; line-height: 1.6; margin-bottom: 15px; text-shadow: 0 1px 5px rgba(0,0,0,1); }

.m-yt-btn {
    display: inline-block; border: 1px solid var(--accent-neon); color: var(--accent-neon) !important;
    padding: 10px 25px; font-size: 12px; letter-spacing: 2px; transition: 0.3s; background: rgba(0,0,0,0.5);
    position: relative; z-index: 5;
}
.m-yt-banner:hover .m-yt-btn { background: var(--accent-neon); color: #fff !important; box-shadow: 0 0 15px rgba(255, 0, 127, 0.5); }

/* --- 9. フッター --- */
.m-footer-wrapper { background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(20px); border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 80px 0 30px; margin-top: 60px; width: 100%; }
.metanoia-custom-footer { display: flex; flex-wrap: wrap; justify-content: space-between; max-width: 1000px; margin: 0 auto 40px; padding: 0 20px; text-align: left; }
.m-footer-col { flex: 1 1 250px; margin-bottom: 40px; }
.m-footer-logo { font-size: 32px; color: var(--accent-neon); margin-bottom: 10px; letter-spacing: 2px; text-shadow: 0 0 10px rgba(255,0,127,0.3); }
.m-footer-catch { font-size: 14px; color: #ccc; margin-bottom: 30px; }
.m-footer-btn { display: inline-block; border: 1px solid #666; padding: 12px 24px; font-size: 12px; letter-spacing: 2px; transition: 0.3s; }
.m-footer-btn:hover { border-color: var(--accent-neon); color: var(--accent-neon); box-shadow: 0 0 15px rgba(255,0,127,0.4); background: rgba(255,0,127,0.05); }
.m-footer-title { font-size: 16px; color: #f0f0f0; letter-spacing: 2px; margin-bottom: 25px; border-left: 3px solid var(--accent-neon); padding-left: 15px; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.m-footer-links, .m-footer-sns { list-style: none; padding: 0; margin: 0; }
.m-footer-links li, .m-footer-sns li { margin-bottom: 15px; }
.m-footer-links a, .m-footer-sns a { font-size: 14px; color: #ccc; transition: 0.3s; }
.m-footer-links a:hover, .m-footer-sns a:hover { color: var(--accent-neon); padding-left: 5px; }
.metanoia-legal-links { text-align: center; margin-bottom: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.metanoia-legal-links a { color: #888; font-size: 12px; margin: 0 15px; }
.copyright { font-size: 12px; color: #666; text-align: center; }
.m-system-links { display: none !important; }

/* --- 10. システムページ完全上書き --- */
#content_area > .j-static-page, #content_area > .j-shop-special-page, #content_area > [id*="cc-shop"], #content_area > .cc-withdrawal, #content_area > .cc-privacy, #content_area > .cc-tos { 
    max-width: 900px !important; margin: 60px auto !important; padding: 60px 40px !important; 
    background: rgba(5, 5, 5, 0.95) !important; backdrop-filter: blur(20px) !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; border-radius: 4px !important;
}
#content_area > div div { background: transparent !important; }
#content_area .j-static-page *, #content_area .j-shop-special-page *, #content_area [id*="cc-shop"] * { color: #eee !important; text-shadow: 0 1px 3px rgba(0,0,0,0.8) !important; }
#content_area [id*="cc-shop"] h2.n, #content_area .j-static-page h1 { font-size: 28px !important; border-bottom: 1px solid #444 !important; padding-bottom: 15px !important; margin-bottom: 30px !important; text-align: center !important; width: 100% !important; color: #fff !important; text-shadow: 0 2px 5px rgba(0,0,0,0.8) !important; }
#content_area [id*="cc-shop"] h2:not(.n), #content_area .j-static-page h2 { font-size: 18px !important; color: var(--accent-neon) !important; margin-top: 40px !important; margin-bottom: 15px !important; border-left: 3px solid var(--accent-neon) !important; padding-left: 15px !important; }
#content_area .j-static-page a, #content_area [id*="cc-shop"] a { color: #fff !important; text-decoration: underline !important; }
#content_area .j-static-page a:hover, #content_area [id*="cc-shop"] a:hover { color: var(--accent-neon) !important; }

/* --- 11. ABOUT / IDENTITY ページ --- */
.outline-wrapper, .identity-wrapper { max-width: 900px; margin: 60px auto; padding: 60px 40px; background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; }
.mission-area { text-align: center; margin-bottom: 80px; padding: 60px 20px; border: 1px solid rgba(255,255,255,0.1); background: rgba(0, 0, 0, 0.6); border-radius: 4px; }
.mission-title { font-size: 32px; color: var(--accent-neon); letter-spacing: 0.2em; margin-bottom: 10px; display: block; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.mission-subtitle { font-size: 16px; color: #ccc; margin-bottom: 40px; display: block; letter-spacing: 0.1em; }
.mission-text { font-size: 16px; line-height: 2.2; color: #fff; text-shadow: 0 2px 5px rgba(0,0,0,0.9); }
.outline-header { margin-bottom: 30px; border-left: 4px solid var(--accent-neon); padding-left: 20px; }
.outline-header h2 { font-size: 24px; color: #fff; margin: 0; }
.outline-header span { font-size: 12px; color: #ccc; display: block; margin-top: 5px; }
.outline-row { display: flex; flex-wrap: wrap; border-top: 1px solid #333; padding: 25px 0; }
.outline-row:last-child { border-bottom: 1px solid #333; }
.o-title { width: 30%; font-weight: bold; color: var(--accent-neon); padding-right: 20px; }
.o-desc { width: 70%; margin: 0; color: #eee; line-height: 1.8; }
.o-desc ul { margin: 0; padding-left: 0; list-style: none; }
.o-desc li { margin-bottom: 10px; padding-left: 15px; position: relative; }
.o-desc li::before { content: "■"; color: #ff007f; font-size: 10px; position: absolute; left: 0; top: 5px; }

.id-header { display: flex; flex-wrap: wrap; align-items: center; border-bottom: 1px solid #333; padding-bottom: 40px; margin-bottom: 40px; }
.id-name-area { flex: 1; min-width: 250px; }
.id-role { font-size: 14px; color: var(--accent-neon); letter-spacing: 2px; margin-bottom: 5px; display: block; }
.id-name { font-size: 32px; color: #fff; margin: 0 0 10px 0; }
.id-name-en { font-size: 14px; color: #ccc; letter-spacing: 3px; }
.id-story-block { margin-bottom: 50px; }
.id-story-title { font-size: 20px; color: #fff; border-left: 3px solid var(--accent-neon); padding-left: 15px; margin-bottom: 20px; }
.id-story-text { font-size: 15px; line-height: 2.2; color: #eee; margin-bottom: 20px; }
.id-story-text strong { color: #fff; font-weight: normal; background: linear-gradient(transparent 70%, rgba(255,0,127,0.3) 70%); }
.id-timeline { margin-top: 60px; padding-top: 40px; border-top: 1px solid #333; }
.id-timeline-title { font-size: 22px; color: #fff; text-align: center; margin-bottom: 40px; letter-spacing: 2px; }
.id-history-row { display: flex; flex-wrap: wrap; margin-bottom: 20px; }
.id-year { width: 150px; color: var(--accent-neon); font-size: 16px; font-weight: bold; }
.id-event { width: calc(100% - 150px); color: #eee; font-size: 14px; line-height: 1.8; }

/* --- 12. 独自「トップへ戻る」ボタン --- */
#m-top-back { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: rgba(5, 5, 5, 0.8); border: 1px solid var(--accent-neon); color: var(--accent-neon); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; transition: 0.4s ease; border-radius: 4px; opacity: 0; visibility: hidden; backdrop-filter: blur(10px); }
#m-top-back.is-visible { opacity: 1; visibility: visible; }
#m-top-back::before { content: '✝'; font-size: 24px; }
#m-top-back:hover { background: var(--accent-neon); color: #fff; box-shadow: 0 0 20px var(--accent-neon); transform: translateY(-5px); }

/* --- 13. 左上ホーム帰還ロゴ --- */
.m-header-logo { position: fixed; top: 30px; left: 30px; z-index: 10001; font-size: 22px; color: var(--text-holy) !important; letter-spacing: 3px; text-shadow: 0 2px 5px rgba(0,0,0,0.8); pointer-events: auto; transition: 0.3s; }
.m-header-logo:hover { color: var(--accent-neon) !important; text-shadow: 0 0 15px rgba(255,0,127,0.8) !important; transform: scale(1.05); }

/* --- 14. CONTACT ページ (ヘッダー＆フォーム) --- */
.m-confession-header {
    max-width: 800px; margin: 60px auto 40px; padding: 50px 40px;
    background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; text-align: center;
}
.m-confession-header h1 {
    font-size: 32px; color: var(--accent-neon); letter-spacing: 0.1em;
    margin: 0 0 20px 0; text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    border-bottom: 1px solid rgba(255,0,127,0.3); padding-bottom: 15px; line-height: 1.2;
}
.m-confession-header h1 span {
    display: block; font-family: 'Shippori Mincho', serif; font-size: 14px;
    color: #ccc; margin-top: 10px; letter-spacing: 2px; text-shadow: none;
}
.m-confession-header p { font-size: 16px; color: #eee; line-height: 2.2; text-shadow: 0 1px 3px rgba(0,0,0,0.8); margin: 0; }
.m-confession-header .m-note { font-size: 13px; color: #ccc; display: block; margin-top: 15px; }

#content_area .j-formnew {
    max-width: 800px; margin: 0 auto 80px; padding: 50px 40px;
    background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; box-sizing: border-box;
}
#content_area .j-formnew label {
    color: var(--accent-neon) !important; font-size: 14px !important; letter-spacing: 2px;
    margin-bottom: 8px !important; display: block; font-family: 'Shippori Mincho', serif !important; text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
#content_area .j-formnew .j-m-required { color: #ff0000 !important; }

#content_area .j-formnew input[type="text"], 
#content_area .j-formnew input[type="email"], 
#content_area .j-formnew select,
#content_area .j-formnew textarea {
    width: 100% !important; background: rgba(0, 0, 0, 0.5) !important; border: 1px solid #444 !important;
    color: #fff !important; padding: 15px !important; font-family: 'Shippori Mincho', serif !important;
    font-size: 16px !important; border-radius: 4px !important; transition: 0.3s ease !important;
    box-sizing: border-box; margin-bottom: 25px !important;
}

#content_area .j-formnew select {
    appearance: none; -webkit-appearance: none; -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ff007f%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E') !important;
    background-repeat: no-repeat !important; background-position: right 15px center !important; background-size: 12px auto !important;
    padding-right: 40px !important; cursor: pointer;
}
#content_area .j-formnew select option { background: #111; color: #fff; padding: 10px; }

#content_area .j-formnew input[type="text"]:focus, #content_area .j-formnew input[type="email"]:focus, 
#content_area .j-formnew select:focus, #content_area .j-formnew textarea:focus {
    outline: none !important; border-color: var(--accent-neon) !important;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3) !important; background: rgba(255, 0, 127, 0.05) !important;
}

#content_area .j-formnew .cc-m-form-view-input-wrapper div, #content_area .j-formnew .cc-m-form-note { color: #ccc !important; font-size: 12px !important; }

#content_area .j-formnew input[type="submit"] {
    display: block !important; width: 100% !important; background: rgba(255, 0, 127, 0.05) !important;
    border: 1px solid var(--accent-neon) !important; color: var(--accent-neon) !important;
    padding: 15px 40px !important; font-family: 'Cinzel', serif !important; font-size: 16px !important;
    letter-spacing: 4px !important; cursor: pointer !important; transition: 0.3s ease !important;
    border-radius: 4px !important; margin-top: 20px;
}
#content_area .j-formnew input[type="submit"]:hover {
    background: var(--accent-neon) !important; color: #fff !important;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.5) !important; transform: translateY(-3px);
}

/* --- 15. EQUATIONS ページ --- */
.eq-container { max-width: 1000px; margin: 0 auto 60px; padding: 0 20px; font-family: 'Shippori Mincho', serif; }
.eq-intro-box { background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; padding: 50px 40px; margin-bottom: 60px; text-align: center; position: relative; overflow: hidden; }
.eq-intro-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-neon), transparent); opacity: 0.6; }
.eq-main-title { font-family: 'Cinzel', serif !important; font-size: 32px; color: var(--accent-neon); letter-spacing: 0.1em; margin: 0 0 30px 0; text-shadow: 0 2px 8px rgba(255,0,127,0.4); line-height: 1.3; }
.eq-main-title span { display: block; font-family: 'Shippori Mincho', serif; font-size: 16px; color: #fff; margin-top: 10px; letter-spacing: 3px; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.eq-intro-text p { font-size: 16px; line-height: 2.2; color: #eee; text-shadow: 0 1px 3px rgba(0,0,0,0.8); margin-bottom: 20px; }
.eq-intro-text .eq-highlight { color: #fff; border-left: 3px solid var(--accent-neon); padding-left: 15px; text-align: left; display: inline-block; margin-top: 10px; }
.eq-stone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.eq-stone { display: block; background: rgba(5, 5, 5, 0.95); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 4px; padding: 40px 30px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; backdrop-filter: blur(20px); }
.eq-stone::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,0,127,0.1), transparent); transform: skewX(-20deg); transition: 0.5s; }
.eq-stone:hover { background: rgba(15, 15, 15, 0.98); border-color: var(--accent-neon); box-shadow: 0 5px 20px rgba(255, 0, 127, 0.2), inset 0 0 15px rgba(255, 0, 127, 0.1); transform: translateY(-5px); }
.eq-stone:hover::before { left: 150%; }
.eq-stone-content { position: relative; z-index: 2; display: block; }
.eq-en { font-family: 'Cinzel', serif !important; font-size: 24px; color: var(--accent-neon); letter-spacing: 4px; margin-bottom: 15px; text-shadow: 0 0 8px rgba(255,0,127,0.3); transition: 0.3s; display: block; }
.eq-bible { font-size: 15px; color: #fff; line-height: 1.6; margin-bottom: 20px; min-height: 50px; display: flex; flex-direction: column; justify-content: center; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.eq-bible small { font-family: 'Cinzel', serif !important; font-size: 12px; color: #ccc; letter-spacing: 2px; margin-top: 5px; transition: 0.3s; display: block; }
.eq-jp { font-size: 14px; color: #eee; letter-spacing: 1px; border-top: 1px solid #333; padding-top: 15px; transition: 0.3s; display: block; }

.eq-stone:hover .eq-en { text-shadow: 0 0 15px rgba(255,0,127,0.8); }
.eq-stone:hover .eq-bible small { color: var(--accent-neon); }
.eq-stone:hover .eq-jp { color: #fff; border-top-color: rgba(255,0,127,0.5); }


/* --- 16. スマホ対応 (ALL) 【超・強化版：文字サイズ特大化】 --- */
@media (max-width: 768px) {
    /* メニュー周り */
    .m-header-logo { top: 20px; left: 20px; font-size: 20px; }
    .m-nav-toggle-icon { top: 20px; right: 20px; }
    
    /* ---------------------------------------------------- */
    /* 1. 本文・汎用テキストの底上げ（スマホ特大化） */
    /* ---------------------------------------------------- */
    body, p, li, td, th, 
    .m-p-desc, .m-port-bio, .m-l-text, .m-yt-desc, .mission-text, 
    .o-desc, .id-story-text, .id-event, .eq-jp, .m-mono-text p,
    .m-confession-header p, #content_area .j-formnew label {
        font-size: 18px !important;
        line-height: 2.2 !important;
    }

    /* 楽曲個別ページ内のインラインスタイル強制上書き（スマホ） */
    .m-archive-section p { font-size: 18px !important; line-height: 2.2 !important; }
    .m-archive-section span { font-size: 16px !important; line-height: 1.8 !important; }
    .m-archive-section h1 { font-size: 28px !important; line-height: 1.4 !important; margin-top: 15px !important; }
    .m-archive-section h2 { font-size: 24px !important; line-height: 1.4 !important; }
    .m-archive-section h3 { font-size: 22px !important; line-height: 1.4 !important; }

    /* ---------------------------------------------------- */
    /* 2. 小さい文字・ボタン系の底上げ（タップしやすさUP） */
    /* ---------------------------------------------------- */
    .m-p-en, .m-port-btn, .m-yt-label, .m-footer-catch, 
    .m-footer-links a, .m-footer-sns a, .metanoia-legal-links a, 
    .copyright, .mission-subtitle, .outline-header span, .id-role, 
    .id-name-en, .m-confession-header .m-note, .eq-main-title span, 
    .eq-bible small, .m-secret-btn, .blogselection .blogreadmore {
        font-size: 15px !important;
    }
    
    /* ストアボタンなどの余白とフォントサイズ（スマホ） */
    .m-archive-section .m-port-btn {
        font-size: 16px !important;
        padding: 18px 25px !important;
        width: 100%;
        box-sizing: border-box;
    }

    /* ---------------------------------------------------- */
    /* 3. 見出し・タイトル系の底上げ（メリハリ） */
    /* ---------------------------------------------------- */
    .m-hero-main { font-size: 46px !important; line-height: 1.2 !important; }
    .m-p-jp, .m-port-title, .m-yt-title, .mission-title, 
    .outline-header h2, .id-name, .id-story-title, .id-timeline-title, 
    .m-confession-header h1, .eq-main-title, .eq-en, .m-mono-title {
        font-size: 26px !important;
    }

    /* ---------------------------------------------------- */
    /* 個別レイアウトの調整 */
    /* ---------------------------------------------------- */
    .m-hero-desc { font-size: 20px !important; padding: 0 10px; line-height: 2.0 !important; }
    .m-hero { min-height: 85vh; justify-content: flex-end; padding-bottom: 100px; }
    .m-pillars { grid-template-columns: 1fr; width: 100%; box-shadow: none; margin-top: 0; }
    .m-pillar-item { padding: 60px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .m-portfolio-wrapper { flex-direction: column; gap: 20px; margin-top: 40px; }
    .m-port-profile, .m-port-links { padding: 40px 20px; }
    .m-port-link-grid { grid-template-columns: 1fr; }
    .m-yt-wrapper { flex-direction: column; gap: 20px; }
    .m-yt-banner { height: 180px; }
    
    .metanoia-custom-footer { flex-direction: column; text-align: center; }
    .m-footer-title { border-left: none; padding-left: 0; border-bottom: 2px solid var(--accent-neon); display: inline-block; padding-bottom: 5px; margin-bottom: 20px; }
    .m-footer-col { margin-bottom: 50px; }
    
    #content_area > .j-static-page, #content_area > .j-shop-special-page, #content_area > [id*="cc-shop"],
    .outline-wrapper, .identity-wrapper, .m-confession-header, #content_area .j-formnew { padding: 40px 20px !important; margin: 20px !important; }
    
    .outline-row { display: block; }
    .o-title { width: 100%; margin-bottom: 10px; }
    .o-desc { width: 100%; }
    
    .id-header { flex-direction: column; text-align: center; }
    .id-year { width: 100%; margin-bottom: 5px; text-align: left; border-bottom: 1px solid #222; padding-bottom: 5px; }
    .id-event { width: 100%; margin-bottom: 30px; }

    #m-top-back { bottom: 20px; right: 20px; width: 45px; height: 45px; }

    .eq-intro-box { padding: 40px 20px; }
    .eq-stone-grid { grid-template-columns: 1fr; gap: 20px; }
    .eq-stone { padding: 30px 20px; }
    .eq-bible { min-height: auto; }
}


/* --- 18. SYSTEM HACK: 編集ツールとナビゲーションの強制召喚 --- */
.cc-m-all-toolbox {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important; 
    transform: translateX(-50%) !important; 
    z-index: 2147483647 !important; 
    background: rgba(255, 0, 127, 0.9) !important; 
    padding: 5px 15px !important;
    border-radius: 4px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8) !important;
    display: flex !important;
    gap: 15px !important;
}
.cc-m-all-toolbox button,
.cc-m-all-toolbox span,
.cc-m-all-toolbox a,
.cc-m-all-toolbox div { color: #ffffff !important; }
.cc-m-all-toolbox button {
    filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(255,255,255,0.8)) !important;
    transform: scale(1.2) !important; 
    cursor: pointer !important;
}
body.cc-pagemode-edit .eq-intro-box,
body.cc-pagemode-edit .eq-stone,
body.cc-pagemode-edit .m-trans-card {
    overflow: visible !important;
}

body.cc-pagemode-edit .m-nav-toggle-icon,
body.cc-pagemode-edit .m-nav-toggle {
    display: none !important;
}

body.cc-pagemode-edit .m-global-nav {
    position: relative !important; 
    right: 0 !important;
    width: 100% !important;
    height: auto !important; 
    min-height: 100px !important;
    background: rgba(10,10,10,0.95) !important;
    padding: 80px 20px 50px !important;
    z-index: 2147483645 !important; 
    overflow: visible !important; 
    border-bottom: 2px solid var(--accent-neon) !important;
}

body.cc-pagemode-edit #cc-nav-btn-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 2147483647 !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
}

body.cc-pagemode-edit #cc-nav-open {
    display: block !important;
    text-align: center !important;
    background: var(--accent-neon) !important;
    color: #fff !important;
    padding: 15px 30px !important;
    font-weight: bold !important;
    border-radius: 4px !important;
    margin: 0 !important;
    box-shadow: 0 5px 15px rgba(255,0,127,0.5) !important;
}

body.cc-pagemode-edit #cc-nav-box-container {
    position: fixed !important;
    top: 50px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 95vw !important;
    max-width: 950px !important;
    background: rgba(10, 10, 10, 0.98) !important;
    border: 2px solid var(--accent-neon) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9) !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    z-index: 2147483647 !important;
    display: block !important; 
}

body.cc-pagemode-edit #cc-nav-box-container[style*="display: none"] {
    display: none !important;
}

body.cc-pagemode-edit #cc-nav-box,
body.cc-pagemode-edit #cc-nav-body,
body.cc-pagemode-edit #cc-nav-footer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

body.cc-pagemode-edit #cc-nav-editor {
    max-height: 60vh !important;
    overflow-y: auto !important;
    overflow-x: auto !important; 
    width: 100% !important;
    box-sizing: border-box !important;
}

body.cc-pagemode-edit #cc-nav-editor::-webkit-scrollbar { width: 6px; height: 6px; }
body.cc-pagemode-edit #cc-nav-editor::-webkit-scrollbar-track { background: #111; }
body.cc-pagemode-edit #cc-nav-editor::-webkit-scrollbar-thumb { background: var(--accent-neon); border-radius: 3px; }

body.cc-pagemode-edit #cc-nav-save {
    float: right !important;
    background: var(--accent-neon) !important;
    color: #fff !important;
    padding: 10px 30px !important;
    border: none !important;
    font-size: 16px !important;
    cursor: pointer !important;
}


/* --- 19. BLOG SELECTION (ブログ一覧のサイバーゴシック化) --- */
.blogselection {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.blogselection .j-blogarticle {
    display: flex;
    align-items: center;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-neon); 
    margin-bottom: 15px;
    padding: 25px 40px !important;
    transition: all 0.4s ease;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.blogselection .j-blogarticle:hover {
    border-color: var(--accent-neon);
    background: rgba(15, 15, 15, 0.98);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.8), inset 0 0 15px rgba(255,0,127,0.15);
}

.blogselection .datetime {
    flex: 0 0 100px; 
    float: none !important; 
    margin: 0 20px 0 0 !important;
    padding: 0 20px 0 0 !important;
    border-right: 1px solid rgba(255,255,255,0.1);
    background: none !important;
    height: auto !important;
    width: auto !important;
    text-align: left !important;
}
.blogselection .datetime-inner { display: block; }
.blogselection .datetime-inner p {
    margin: 0 !important; padding: 0 !important;
    font-family: 'Cinzel', 'Shippori Mincho', serif !important;
}

.blogselection .datetime-inner .yr { 
    font-size: 11px !important; color: #ccc !important; letter-spacing: 2px; text-shadow: none !important; margin-bottom: 5px !important; 
}
.blogselection .datetime-inner .mon, 
.blogselection .datetime-inner .day { 
    font-size: 16px !important; color: #fff !important; display: inline-block; font-weight: normal; letter-spacing: 1px;
}
.blogselection .datetime-inner .day-word { display: none !important; } 

.blogselection .j-blogarticle h2 {
    flex: 1 1 auto; 
    margin: 0 !important;
    padding: 0 20px 0 0 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    border: none !important;
}
.blogselection .j-blogarticle h2 a {
    color: #eee !important;
    display: block;
    transition: 0.3s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.blogselection .j-blogarticle:hover h2 a {
    color: var(--accent-neon) !important;
    text-shadow: 0 0 8px rgba(255,0,127,0.4) !important;
}

.blogselection .blogreadmore {
    flex: 0 0 auto;
    border: 1px solid rgba(255,0,127,0.5);
    color: var(--accent-neon) !important; 
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 2px;
    background: rgba(255,0,127,0.05);
    transition: 0.3s;
    white-space: nowrap;
    border-radius: 2px;
}
.blogselection .blogreadmore:hover {
    background: var(--accent-neon);
    color: #fff !important;
    box-shadow: 0 0 15px rgba(255,0,127,0.5);
    border-color: var(--accent-neon);
}

.blogselection .j-blogarticle .c { display: none !important; }

@media (max-width: 768px) {
    .blogselection .j-blogarticle {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px !important; 
    }
    .blogselection .datetime {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-right: 0 !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
        flex: auto;
        width: 100% !important;
    }
    .blogselection .j-blogarticle h2 {
        padding-right: 0 !important;
        margin-bottom: 15px !important;
        font-size: 18px !important; 
    }
    .blogselection .blogreadmore {
        align-self: flex-start;
    }
}


/* --- 20. ARCHIVE FOLD (JS不要・完全CSS駆動版) --- */
.blogselection .j-blogarticle:nth-child(n+6) {
    display: none !important;
}

body:has(#m-archive-toggle-check:checked) .blogselection .j-blogarticle:nth-child(n+6) {
    display: flex !important;
    animation: fadeInCyber 0.5s ease forwards;
}

@media (max-width: 768px) {
    body:has(#m-archive-toggle-check:checked) .blogselection .j-blogarticle:nth-child(n+6) {
        flex-direction: column !important;
    }
}

@keyframes fadeInCyber {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#m-archive-toggle-check:checked ~ .m-blog-toggle-btn .m-text-open {
    display: none !important;
}
#m-archive-toggle-check:checked ~ .m-blog-toggle-btn .m-text-close {
    display: inline-block !important;
}


/* --- 21. DEEP DATA ACCORDION (深層記録の開閉UI) --- */
.m-secret-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.m-hidden-check {
    display: none !important;
}

.m-secret-btn {
    cursor: pointer;
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 3px;
    display: inline-block;
}

.m-secret-content {
    display: none;
    background: rgba(5, 5, 5, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 127, 0.3);
    border-radius: 4px;
    padding: 80px 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9), inset 0 0 20px rgba(255,0,127,0.05);
    animation: fadeInSecret 0.6s ease forwards;
}

.m-hidden-check:checked ~ .m-secret-content {
    display: block;
}

.m-hidden-check:checked ~ div .m-secret-btn {
    display: none;
}

@keyframes fadeInSecret {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.m-mono-title {
    font-family: 'Shippori Mincho', serif !important;
    font-size: 24px; color: var(--accent-neon);
    text-align: center; letter-spacing: 0.2em; margin-bottom: 60px;
}
.m-mono-title::after {
    content: ''; display: block; width: 40px; height: 1px;
    background: rgba(255,255,255,0.3); margin: 20px auto 0;
}
.m-mono-text {
    max-width: 600px;
    margin: 0 auto;
}
.m-mono-text p {
    font-family: 'Shippori Mincho', serif !important;
    font-size: 16px; line-height: 2.4; color: #ddd;
    margin-bottom: 35px; text-align: left; letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .m-secret-content { padding: 40px 20px; }
    .m-mono-text p { font-size: 18px !important; line-height: 2.4 !important; margin-bottom: 25px; }
    .m-secret-btn { padding: 15px 25px !important; font-size: 14px !important; }
}


/* --- 22. MUSIC PAGE UI (音楽ページ専用レイアウト) --- */
.m-archive-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}
.m-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.m-archive-card {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 30px 25px;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.m-archive-card:hover {
    border-color: var(--accent-neon);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.8), inset 0 0 15px rgba(255,0,127,0.1);
}
.m-card-tag {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 15px;
    align-self: flex-start;
}
.m-card-tag.tag-metal {
    border: 1px solid var(--accent-neon);
    color: var(--accent-neon);
    background: rgba(255,0,127,0.05);
}
.m-card-tag.tag-hymn {
    border: 1px solid #00d2ff;
    color: #00d2ff;
    background: rgba(0,210,255,0.05);
}
.m-card-title {
    font-size: 20px;
    color: #fff;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}
.m-card-desc {
    font-size: 14px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}
.m-card-btn {
    display: inline-block;
    text-align: center;
    border: 1px solid #444;
    color: #eee !important;
    padding: 12px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
    background: rgba(0,0,0,0.5);
}
.m-archive-card:hover .m-card-btn {
    background: var(--accent-neon);
    border-color: var(--accent-neon);
    color: #fff !important;
}

.m-restoration-box {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 60px 40px;
    background: radial-gradient(circle at center, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.9);
}
.m-step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}
.m-step-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255,255,255,0.02);
    border: 1px solid #333;
    padding: 25px;
    border-radius: 4px;
}
.step-num {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--accent-neon);
    font-weight: bold;
    margin-right: 25px;
    text-shadow: 0 0 10px rgba(255,0,127,0.3);
    line-height: 1;
}
.step-text h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #fff;
}
.step-text p {
    margin: 0;
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .m-archive-grid {
        grid-template-columns: 1fr;
    }
    .m-restoration-box {
        padding: 40px 20px;
    }
    .m-step-item {
        flex-direction: column;
    }
    .step-num {
        margin-bottom: 15px;
    }
}


/* --- 23. STORE BUTTONS HOVER EFFECTS (音楽配信ストアボタンのサイバー装飾) --- */
.m-store-btn-apple:hover {
    background: rgba(250, 36, 60, 0.3) !important;
    box-shadow: 0 0 20px rgba(250, 36, 60, 0.8);
}
.m-store-btn-spotify:hover {
    background: rgba(29, 185, 84, 0.3) !important;
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.8);
}
.m-store-btn-youtube:hover {
    background: rgba(255, 0, 0, 0.3) !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}
.m-store-btn-amazon:hover {
    background: rgba(0, 168, 225, 0.3) !important;
    box-shadow: 0 0 20px rgba(0, 168, 225, 0.8);
}


/* --- 24. BLOG SINGLE POST HEADER UI (日付・タイトル完全統合) --- */
.j-blog-meta.j-blog-post--header {
    max-width: 900px !important;
    margin: 60px auto 0 !important;
    padding: 0 20px !important;
    text-align: left !important;
}

.j-blog-post--date {
    display: inline-block !important;
    font-family: 'Cinzel', serif !important;
    color: var(--accent-neon) !important;
    font-size: 14px !important;
    letter-spacing: 4px !important;
    background: rgba(5, 5, 5, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    padding: 8px 20px !important;
    border: 1px solid rgba(255, 0, 127, 0.3) !important;
    border-bottom: none !important;
    border-radius: 4px 4px 0 0 !important;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5) !important;
}

.j-blog-header.j-blog-headline.j-blog-post--headline {
    display: block !important;
    margin: 0 !important; 
    padding: 35px 40px !important;
    background: rgba(5, 5, 5, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-left: 4px solid var(--accent-neon) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,0,127,0.05) !important;
    color: #fff !important;
    font-size: 28px !important;
    line-height: 1.6 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,1) !important;
}

@media (max-width: 768px) {
    .j-blog-meta.j-blog-post--header {
        margin: 30px 10px 0 !important;
        padding: 0 !important;
    }
    .j-blog-post--date {
        font-size: 14px !important;
        padding: 6px 15px !important;
    }
    .j-blog-header.j-blog-headline.j-blog-post--headline {
        font-size: 24px !important;
        padding: 25px 20px !important;
    }
}


/* --- 25. BLOG SINGLE POST TAGS (カテゴリ/タグの装飾とカンマ消去) --- */
.j-blog-post--tags-wrapper {
    max-width: 900px !important;
    margin: 0 auto 60px !important;
    padding: 0 20px !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.j-blog-post--tags-label {
    font-family: 'Cinzel', serif !important;
    color: #aaa !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
}

.j-blog-post--tags-list {
    display: inline-flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    color: transparent !important; 
}

.j-blog-post--tag {
    display: inline-block !important;
    font-family: 'Cinzel', 'Shippori Mincho', serif !important;
    color: var(--accent-neon) !important;
    background: rgba(5, 5, 5, 0.9) !important;
    border: 1px solid rgba(255, 0, 127, 0.5) !important;
    padding: 8px 20px !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    border-radius: 2px !important;
    text-shadow: 0 0 5px rgba(255, 0, 127, 0.3) !important;
    transition: 0.3s ease !important;
}

.j-blog-post--tag:hover {
    background: var(--accent-neon) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.5) !important;
}

@media (max-width: 768px) {
    .j-blog-post--tags-wrapper {
        margin: 0 10px 40px !important;
        padding: 0 !important;
    }
}


/* --- 26. SITE-WIDE VISUAL CLARITY HACK (サイト全体の視認性・可読性強制強化) --- */
p[style*="#aaa"], span[style*="#aaa"], div[style*="#aaa"],
p[style*="#ccc"], span[style*="#ccc"], div[style*="#ccc"],
p[style*="#ddd"], span[style*="#ddd"], div[style*="#ddd"] {
    color: #eeeeee !important;
    font-weight: bold !important;
}

p[style*="LISTEN ON STORES"] {
    color: var(--accent-neon) !important;
    font-size: 18px !important;
    font-weight: bold !important;
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.8), 0 2px 5px rgba(0,0,0,1) !important;
}

.m-archive-section > div {
    background-color: rgba(5, 5, 5, 0.95) !important;
    backdrop-filter: blur(25px) !important;
}

.m-store-btn-apple, .m-store-btn-spotify, .m-store-btn-youtube, .m-store-btn-amazon {
    background-color: rgba(5, 5, 5, 0.98) !important; 
    font-weight: bold !important;
    text-shadow: 0 2px 5px rgba(0,0,0,1) !important; 
}


/* --- 27. THE ORACLE & GALLERY HACK (神託システムとギャラリーのサイバー化) --- */
.m-blink-text {
    animation: blinkCyber 1s infinite;
}
@keyframes blinkCyber {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; text-shadow: 0 0 10px var(--accent-neon); }
}

.m-gallery-cyber-hack .j-gallery, 
.m-gallery-cyber-hack .cc-gallery {
    background: rgba(5, 5, 5, 0.8) !important;
    padding: 20px !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
}

.m-gallery-cyber-hack img {
    filter: brightness(0.6) grayscale(50%);
    transition: all 0.4s ease !important;
    border: 1px solid #333 !important;
    border-radius: 2px !important;
}
.m-gallery-cyber-hack img:hover {
    filter: brightness(1.1) grayscale(0%) !important;
    border-color: var(--accent-neon) !important;
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.6) !important;
    transform: scale(1.03) !important;
    z-index: 10 !important;
    position: relative;
}


/* --- 28. THE ORACLE UI FORCE OVERRIDE (神託システムの強制ダーク化) --- */
.m-oracle-btn {
    background: rgba(5, 5, 5, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    padding: 12px 24px !important;
    font-family: 'Shippori Mincho', serif !important;
    font-size: 15px !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 1px 3px rgba(0,0,0,1) !important;
}

.m-oracle-btn:hover {
    border-color: var(--accent-neon) !important;
    background: rgba(255, 0, 127, 0.15) !important;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.5) !important;
    transform: translateY(-2px) !important;
}

.m-oracle-btn[data-emotion="ランダム"] {
    border-color: #00d2ff !important;
    color: #00d2ff !important;
}
.m-oracle-btn[data-emotion="ランダム"]:hover {
    background: rgba(0, 210, 255, 0.15) !important;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.5) !important;
}

#m-oracle-share {
    display: inline-block !important;
    background: rgba(5, 5, 5, 0.98) !important;
    border: 2px solid #1DA1F2 !important;
    color: #fff !important; 
    text-shadow: 0 0 8px rgba(29, 161, 242, 0.8), 0 2px 5px rgba(0,0,0,1) !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

#m-oracle-share:hover {
    background: rgba(29, 161, 242, 0.2) !important;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.8) !important;
    transform: translateY(-3px) !important;
}

/* --- 29. KARMA SWEEPER GAME UI (究極の背景透過＆視認性強化版) --- */

/* 盤面全体の背景を完全透明化し、背後の画像を見せる */
#ks-board {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 6px !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    background: transparent !important; /* ボード背面の膜を撤廃 */
    padding: 10px;
    border-radius: 8px;
}

/* 【未開拓マス】中身を完全に隠し、ネオンピンクの枠を強調 */
.ks-cell {
    aspect-ratio: 1 / 1 !important;
    background: rgba(10, 10, 10, 0.95) !important; /* 閉じてる時はほぼ不透明で背景を隠す */
    border: 1px solid rgba(255, 0, 127, 0.5) !important; /* 秘められた業を象徴するピンク枠 */
    border-radius: 4px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Cinzel', monospace !important;
    font-size: 20px !important;
    font-weight: bold !important;
    transition: all 0.2s ease !important;
    color: transparent !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    position: relative !important;
}

/* ホバー時に少し光らせる */
.ks-cell:hover {
    background: rgba(255, 0, 127, 0.1) !important;
    border-color: rgba(255, 0, 127, 0.8) !important;
}

/* 【開いたマス】背景色を消し、背後の画像を露出させる */
.ks-cell.is-revealed {
    background: transparent !important; /* 背景を剥ぎ取る */
    border: 1px solid rgba(255, 255, 255, 0.05) !important; /* 枠も極限まで消す */
    cursor: default !important;
    color: #fff !important;
}

/* 数字の視認性（背後の画像に負けないように強い外光と黒縁を入れる） */
.ks-cell.is-revealed[data-num] {
    filter: drop-shadow(0 0 5px #000) drop-shadow(0 0 2px #000);
}

.ks-cell.is-revealed[data-num="1"] { color: #00d2ff !important; text-shadow: 0 0 10px #00d2ff !important; }
.ks-cell.is-revealed[data-num="2"] { color: #00ff88 !important; text-shadow: 0 0 10px #00ff88 !important; }
.ks-cell.is-revealed[data-num="3"] { color: #ffaa00 !important; text-shadow: 0 0 10px #ffaa00 !important; }
.ks-cell.is-revealed[data-num="4"] { color: #ff007f !important; text-shadow: 0 0 10px #ff007f !important; }

/* 地雷（KARMA）表示 */
.ks-cell.is-mine {
    background: rgba(255, 0, 0, 0.8) !important;
    border-color: #ff0000 !important;
    color: #fff !important;
    text-shadow: 0 0 10px #fff !important;
    animation: flashMine 0.5s ease infinite alternate;
}

@keyframes flashMine {
    0% { transform: scale(1); background: rgba(255,0,0,0.8); }
    100% { transform: scale(1.05); background: #ff0000; }
}

/* 画面全体のフラッシュエフェクト */
.ks-flash-red { animation: screenRed 1s ease forwards !important; }
.ks-flash-blue { animation: screenBlue 1s ease forwards !important; }

@keyframes screenRed {
    0% { box-shadow: inset 0 0 100px rgba(255,0,0,0.8); border-color: #ff0000; }
    100% { box-shadow: inset 0 0 20px rgba(255,0,127,0.05); border-color: rgba(255,0,127,0.3); }
}
@keyframes screenBlue {
    0% { box-shadow: inset 0 0 100px rgba(0,210,255,0.8); border-color: #00d2ff; }
    100% { box-shadow: inset 0 0 20px rgba(255,0,127,0.05); border-color: rgba(255,0,127,0.3); }
}

/* 入力フォーム */
#ks-input-name:focus {
    background: rgba(255, 0, 127, 0.1) !important;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.5) !important;
}

/* =========================================================
   METANOIA: E-COMMERCE & CHECKOUT SYSTEM (完全統合版 Ver 2.0)
   ========================================================= */

/* -----------------------------------------
   1. SUPPORT TICKET (商品ページのレイアウト)
   ----------------------------------------- */
div#cc-m-12122406772.j-product {
    background: rgba(10, 10, 10, 0.95) !important;
    border: 1px solid rgba(255, 0, 127, 0.3) !important;
    padding: 40px 30px !important;
    margin: 0 auto 60px !important;
    max-width: 800px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8) !important;
    clear: both !important;
}

#cc-m-product-12122406772 .cc-shop-product-desc {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
}

#cc-m-product-12122406772 .fn[itemprop="name"] {
    display: block !important;
    width: 100% !important;
    font-family: 'Shippori Mincho', serif !important;
    color: #ccc !important;
    font-size: 16px !important;
    letter-spacing: 2px !important;
    margin: 0 0 30px 0 !important;
    text-align: center !important;
}

#cc-m-product-12122406772 .cc-shop-product-price {
    float: none !important;
    width: auto !important;
    margin: 0 60px 0 0 !important;
}

#cc-m-product-12122406772 .cc-shop-product-price-current {
    font-family: 'Cinzel', serif !important;
    color: #fff !important;
    font-size: 38px !important;
    font-weight: bold !important;
    margin: 0 !important;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.3) !important;
    line-height: 1 !important;
}

#cc-m-product-12122406772 .cc-shop-addtocard {
    display: inline-block !important;
    background: transparent !important;
    border: 1px solid var(--accent-neon, #ff007f) !important;
    color: var(--accent-neon, #ff007f) !important;
    font-family: 'Cinzel', 'Shippori Mincho', serif !important;
    padding: 16px 60px !important;
    font-size: 16px !important;
    letter-spacing: 3px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-radius: 4px !important;
    margin: 0 !important;
}

#cc-m-product-12122406772 .cc-shop-addtocard:hover {
    background: var(--accent-neon, #ff007f) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.5) !important;
}

/* 不要な情報の非表示 */
#cc-m-product-12122406772 .cc-shop-product-img,
#cc-m-product-12122406772 .cc-product-infolink,
#cc-m-product-12122406772 .cc-shop-product-availability,
#cc-m-product-12122406772 .cc-shop-product-price-old {
    display: none !important;
}

@media screen and (max-width: 600px) {
    #cc-m-product-12122406772 .cc-shop-product-price {
        margin: 0 0 25px 0 !important;
        text-align: center !important;
    }
    #cc-m-product-12122406772 .cc-shop-product-desc {
        flex-direction: column !important;
    }
}

/* -----------------------------------------
   2. SIDE CART POPUP (画面端のカートホバー)
   ----------------------------------------- */
body #cc-sidecart-wrapper .j-cart--hover-popup {
    background: rgba(10, 10, 10, 0.95) !important;
    border: 1px solid var(--accent-neon, #ff007f) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.9), 0 0 20px rgba(255,0,127,0.2) !important;
    border-radius: 4px !important;
    padding: 25px 20px !important;
}

body #cc-sidecart-wrapper .j-cart--hover-popup--cart-sum p {
    color: #fff !important;
    font-family: 'Cinzel', 'Shippori Mincho', serif !important;
    font-size: 18px !important;
    font-weight: bold !important;
    border-bottom: 1px dashed rgba(255, 0, 127, 0.3) !important;
    padding-bottom: 15px !important;
    margin-bottom: 15px !important;
    text-align: center !important;
}

body #cc-sidecart-wrapper .j-cart--hover-popup--shop-delivery-link {
    color: #888 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    transition: 0.3s !important;
}

body #cc-sidecart-wrapper .j-cart--hover-popup--shop-delivery-link:hover {
    color: var(--accent-neon, #ff007f) !important;
}

body #cc-sidecart-wrapper .j-cart--hover-popup--call-to-action-button {
    display: block !important;
    background: rgba(255, 0, 127, 0.05) !important;
    border: 1px solid var(--accent-neon, #ff007f) !important;
    color: var(--accent-neon, #ff007f) !important;
    font-family: 'Cinzel', 'Shippori Mincho', serif !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    letter-spacing: 2px !important;
    text-align: center !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

body #cc-sidecart-wrapper .j-cart--hover-popup--call-to-action-button:hover {
    background: var(--accent-neon, #ff007f) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.6) !important;
}

body #cc-sidecart-wrapper .j-cart--hover-popup--empty-message p {
    color: #aaa !important;
    font-family: 'Shippori Mincho', serif !important;
    text-align: center !important;
}

/* -----------------------------------------
   3. ADD TO CART OVERLAY (商品追加時の上部通知)
   ----------------------------------------- */
body .j-shop-addtocard-response {
    background: rgba(10, 10, 10, 0.98) !important;
    border-bottom: 1px solid var(--accent-neon, #ff007f) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9) !important;
    backdrop-filter: blur(10px) !important;
}

body .j-shop-addtocard-response--content {
    color: var(--accent-neon, #ff007f) !important;
    font-family: 'Shippori Mincho', serif !important;
    font-weight: bold !important;
    letter-spacing: 2px !important;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.4) !important;
}

body .j-shop-addtocard-response--item-title,
body .j-shop-addtocard-response--item-price {
    color: #fff !important;
    font-family: 'Cinzel', 'Shippori Mincho', serif !important;
    letter-spacing: 1px !important;
}

body .j-shop-addtocard-response--backward {
    background: transparent !important;
    border: 1px solid #666 !important;
    color: #ccc !important;
    border-radius: 4px !important;
    transition: 0.3s !important;
    font-family: 'Shippori Mincho', serif !important;
}

body .j-shop-addtocard-response--backward:hover {
    border-color: #fff !important;
    color: #fff !important;
    background: rgba(255,255,255,0.05) !important;
}

body .j-shop-addtocard-response--forward.is-checkout {
    background: rgba(255, 0, 127, 0.05) !important;
    border: 1px solid var(--accent-neon, #ff007f) !important;
    color: var(--accent-neon, #ff007f) !important;
    font-family: 'Cinzel', 'Shippori Mincho', serif !important;
    border-radius: 4px !important;
    letter-spacing: 2px !important;
    transition: 0.3s !important;
}

body .j-shop-addtocard-response--forward.is-checkout:hover {
    background: var(--accent-neon, #ff007f) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.6) !important;
}

/* -----------------------------------------
   4. CHECKOUT PAGE (決済・レジ画面本体)
   ----------------------------------------- */
#cc-checkout-wrapper {
    background: rgba(10, 10, 10, 0.95) !important;
    border: 1px solid rgba(255, 0, 127, 0.3) !important;
    padding: 40px 30px !important;
    margin: 40px auto 80px !important;
    max-width: 980px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8) !important;
    color: #eee !important;
    font-family: 'Shippori Mincho', serif !important;
}

/* 見出し */
.cc-checkout-subheadings {
    color: #fff !important;
    font-family: 'Shippori Mincho', serif !important;
    font-size: 24px !important;
    border-bottom: 1px solid rgba(255,0,127,0.3) !important;
    padding-bottom: 15px !important;
    margin-bottom: 20px !important;
}

/* プログレスバーのオレンジ色完全粉砕 */
#cc-inner #cc-checkout-wrapper div.cc-checkout-progress-element,
#cc-inner #cc-checkout-wrapper div.cc-progressbar,
#cc-inner #cc-checkout-wrapper .cc-checkout-progress-element span,
#cc-inner #cc-checkout-wrapper .cc-checkout-progress-element a {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
}

#cc-inner #cc-checkout-wrapper .cc-checkout-progress-element {
    padding: 0 15px 0 0 !important;
    margin: 0 10px 10px 0 !important;
    display: inline-block !important;
}

/* 未到達ステップの文字色 */
#cc-inner #cc-checkout-wrapper .cc-checkout-progress-element span,
#cc-inner #cc-checkout-wrapper .cc-checkout-progress-element a {
    color: #888 !important;
    font-family: 'Shippori Mincho', serif !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
    font-weight: normal !important;
    text-shadow: none !important;
    border-bottom: none !important;
    transition: 0.3s !important;
}

#cc-inner #cc-checkout-wrapper .cc-checkout-progress-element a:hover {
    color: #fff !important;
    text-shadow: 0 0 8px rgba(255,255,255,0.5) !important;
}

/* 現在のステップのみをネオン発光させる（動的対応） */
#cc-inner #cc-checkout-wrapper .cc-checkout-step1 .cc-progress-step1 span,
#cc-inner #cc-checkout-wrapper .cc-checkout-step1 .cc-progress-step1 a,
#cc-inner #cc-checkout-wrapper .cc-checkout-step2 .cc-progress-step2 span,
#cc-inner #cc-checkout-wrapper .cc-checkout-step2 .cc-progress-step2 a,
#cc-inner #cc-checkout-wrapper .cc-checkout-step3 .cc-progress-step3 span,
#cc-inner #cc-checkout-wrapper .cc-checkout-step3 .cc-progress-step3 a,
#cc-inner #cc-checkout-wrapper .cc-checkout-step4 .cc-progress-step4 span,
#cc-inner #cc-checkout-wrapper .cc-checkout-step4 .cc-progress-step4 a {
    color: var(--accent-neon, #ff007f) !important;
    font-weight: bold !important;
    text-shadow: 0 0 12px rgba(255, 0, 127, 0.6) !important;
    border-bottom: 1px solid var(--accent-neon, #ff007f) !important;
    padding-bottom: 2px !important;
}

/* -----------------------------------------
   5. CHECKOUT FORMS (STEP2以降：お客様情報入力)
   ----------------------------------------- */
/* 入力欄（テキストボックス・セレクト・テキストエリア）のサイバー化 */
#cc-checkout-wrapper input[type="text"],
#cc-checkout-wrapper input[type="email"],
#cc-checkout-wrapper input[type="tel"],
#cc-checkout-wrapper select,
#cc-checkout-wrapper textarea {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    padding: 12px 15px !important;
    font-family: 'Shippori Mincho', serif !important;
    border-radius: 4px !important;
    width: 100% !important; /* ボックス幅に合わせる */
    box-sizing: border-box !important;
    margin-bottom: 15px !important;
    transition: 0.3s !important;
}

/* 入力中の発光エフェクト */
#cc-checkout-wrapper input[type="text"]:focus,
#cc-checkout-wrapper input[type="email"]:focus,
#cc-checkout-wrapper input[type="tel"]:focus,
#cc-checkout-wrapper select:focus,
#cc-checkout-wrapper textarea:focus {
    border-color: var(--accent-neon, #ff007f) !important;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3) !important;
    outline: none !important;
}

/* フォームのラベル（姓、名、メールアドレスなど） */
#cc-checkout-wrapper label {
    color: #ccc !important;
    font-family: 'Shippori Mincho', serif !important;
    font-size: 14px !important;
    margin-bottom: 8px !important;
    display: inline-block !important;
    letter-spacing: 1px !important;
}

/* 必須マーク（*）の強調 */
#cc-checkout-wrapper .cc-checkout-adressform-mandatory {
    color: #fff !important;
}

/* チェックボックス（お届け先の住所が異なる場合） */
#cc-checkout-address-checkbox-title {
    color: #aaa !important;
    font-size: 14px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    margin-top: 10px !important;
}
#cc-checkout-address-checkbox {
    margin-right: 10px !important;
    width: auto !important;
}

/* エラー・警告メッセージ（無効なメールアドレス等） */
#cc-checkout-wrapper .message-warning {
    color: var(--accent-neon, #ff007f) !important;
    font-size: 12px !important;
    margin-top: -10px !important;
    margin-bottom: 15px !important;
    font-weight: bold !important;
}

/* テーブル（商品一覧・STEP1用） */
table.cc-checkout-products {
    width: 100% !important;
    border-collapse: collapse !important;
}

table.cc-checkout-products th {
    color: #fff !important; 
    background: rgba(255,0,127,0.15) !important;
    border-bottom: 1px solid var(--accent-neon, #ff007f) !important;
    padding: 12px !important;
    font-weight: normal !important;
    letter-spacing: 1px !important;
    text-shadow: 0 0 5px rgba(255,0,127,0.5) !important;
}

table.cc-checkout-products td {
    padding: 20px 12px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    color: #ccc !important;
}

.cc-checkout-desc strong {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: normal !important;
}

/* 金額の純白化（最強優先度） */
#cc-inner #cc-checkout-wrapper table.cc-checkout-products td.cc-checkout-number,
#cc-inner #cc-checkout-wrapper table.cc-checkout-products td.cc-checkout-number span,
#cc-inner #cc-checkout-wrapper span.product-entry-total,
#cc-inner #cc-checkout-wrapper span.product-entries-total {
    color: #fff !important;
    font-family: 'Cinzel', serif !important;
    font-size: 16px !important;
}

#cc-inner #cc-checkout-wrapper table.cc-checkout-products td.cc-checkout-total span {
    color: var(--accent-neon, #ff007f) !important;
    font-size: 24px !important;
    font-weight: bold !important;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.4) !important;
}

/* 「次へ」等のアクションボタン */
#cc-checkout-wrapper .cc-checkout-btn,
#cc-checkout-wrapper input[type="submit"] {
    background: rgba(10, 10, 10, 0.8) !important;
    border: 1px solid var(--accent-neon, #ff007f) !important;
    color: var(--accent-neon, #ff007f) !important;
    font-family: 'Cinzel', 'Shippori Mincho', serif !important;
    padding: 15px 50px !important;
    font-size: 16px !important;
    letter-spacing: 3px !important;
    cursor: pointer !important;
    border-radius: 4px !important;
    transition: 0.3s !important;
    margin-top: 30px !important;
    float: right !important;
    box-shadow: none !important;
}

#cc-checkout-wrapper .cc-checkout-btn:hover,
#cc-checkout-wrapper input[type="submit"]:hover {
    background: var(--accent-neon, #ff007f) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(255,0,127,0.6) !important;
}

/* -----------------------------------------
   6. CHECKOUT PAYMENT (STEP3：お支払い方法選択)
   ----------------------------------------- */
/* 支払い方法のリスト枠をリセット */
#cc-inner #cc-checkout-wrapper ul.cc-checkout-paymentoption {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 30px 0 !important;
}

#cc-inner #cc-checkout-wrapper ul.cc-checkout-paymentoption li {
    margin-bottom: 20px !important;
}

/* ラジオボタンと「クレジットカード」のテキスト */
#cc-inner #cc-checkout-wrapper .j-checkout__payment-method label {
    display: flex !important;
    align-items: center !important;
    color: #fff !important;
    font-family: 'Shippori Mincho', serif !important;
    font-size: 18px !important;
    font-weight: bold !important;
    cursor: pointer !important;
}

/* ラジオボタンを少し大きくして押しやすく */
#cc-inner #cc-checkout-wrapper .j-checkout__payment-method label input[type="radio"] {
    margin-right: 12px !important;
    transform: scale(1.2) !important;
    cursor: pointer !important;
}

/* クレジットカード情報入力エリア（外枠） */
#cc-inner #cc-checkout-wrapper .j-checkout__payment-info {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 20px !important;
    border-radius: 4px !important;
    margin-top: 15px !important;
    margin-left: 25px !important; /* ラジオボタンの右側に合わせる */
}

/* ★Stripeのカード入力枠（ここだけは黒文字が見えるように白背景にする） */
#cc-inner #cc-checkout-wrapper .j-checkout-payment-stripe__card {
    background: rgba(255, 255, 255, 0.9) !important; 
    padding: 12px 15px !important;
    border-radius: 4px !important;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5) !important; /* 内側に影をつけて奥まっている感を出す */
}

/* エラーメッセージ（カード番号が違います等） */
#cc-inner #cc-checkout-wrapper .j-checkout-payment-stripe__card-errors {
    color: var(--accent-neon, #ff007f) !important;
    font-size: 13px !important;
    margin-top: 10px !important;
    font-weight: bold !important;
}

/* セキュア通信の案内テキスト */
#cc-inner #cc-checkout-wrapper .j-checkout-payment__secure-text {
    color: #888 !important;
    font-size: 12px !important;
    margin-top: 15px !important;
    margin-left: 25px !important;
    font-family: 'Shippori Mincho', serif !important;
}

/* -----------------------------------------
   7. CHECKOUT OVERVIEW (STEP4：最終確認画面)
   ----------------------------------------- */

/* お客様情報・支払い方法のブロック背景 */
#cc-inner #cc-checkout-wrapper .cc-checkout-datacol {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 25px !important;
    border-radius: 4px !important;
    margin-bottom: 30px !important;
}

/* 見出しの右側にある「訂正」リンク */
#cc-inner #cc-checkout-wrapper .cc-checkout-subheadings span a {
    color: var(--accent-neon, #ff007f) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    border-bottom: 1px dashed var(--accent-neon, #ff007f) !important;
    float: right !important; /* 右端に配置 */
    letter-spacing: 1px !important;
    font-family: 'Shippori Mincho', serif !important;
    transition: 0.3s !important;
}

#cc-inner #cc-checkout-wrapper .cc-checkout-subheadings span a:hover {
    color: #fff !important;
    border-color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.8) !important;
}

/* 入力データの一覧（姓、名、住所など）を美しい表に整形 */
#cc-inner #cc-checkout-wrapper .cc-checkout-data dl {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

/* 項目名（左側） */
#cc-inner #cc-checkout-wrapper .cc-checkout-data dt {
    width: 35% !important;
    color: #aaa !important;
    font-family: 'Shippori Mincho', serif !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

/* 入力内容（右側） */
#cc-inner #cc-checkout-wrapper .cc-checkout-data dd {
    width: 65% !important;
    color: #fff !important;
    font-family: 'Shippori Mincho', serif !important;
    margin: 0 !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-sizing: border-box !important;
}

/* 支払い方法のテキスト（クレジットカード等） */
#cc-inner #cc-checkout-wrapper .cc-checkout-data {
    color: #fff !important;
    font-family: 'Shippori Mincho', serif !important;
    line-height: 1.8 !important;
}

/* 利用規約・キャンセルポリシー等の同意エリア */
#cc-inner #cc-checkout-wrapper #cc-checkout-termsoftrade {
    background: rgba(255, 0, 127, 0.05) !important;
    border: 1px solid rgba(255, 0, 127, 0.3) !important;
    padding: 20px !important;
    border-radius: 4px !important;
    margin-bottom: 30px !important;
}

#cc-inner #cc-checkout-wrapper #cc-checkout-termsoftrade label {
    color: #ccc !important;
    font-size: 14px !important;
    line-height: 2.0 !important;
    display: inline !important; /* ラベルの改行を防ぐ */
}

/* 規約へのリンク（ネオンピンクで強調） */
#cc-inner #cc-checkout-wrapper #cc-checkout-termsoftrade label a {
    color: var(--accent-neon, #ff007f) !important;
    text-decoration: underline !important;
    font-weight: bold !important;
    transition: 0.3s !important;
}

#cc-inner #cc-checkout-wrapper #cc-checkout-termsoftrade label a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.8) !important;
}
/* =========================================
   END OF METANOIA FULL ARCHETYPE CSS
   ========================================= */

/* リスト要素のダサさを消去し、サイバー化 */
#cc-m-product-12122406772 ul, 
.m-archive-section ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 auto !important;
}

/* 箇条書きの行間とフォントの統一 */
.m-archive-section li {
    font-family: 'Shippori Mincho', serif !important;
    color: #ccc !important;
    position: relative !important;
    padding-left: 20px !important;
    margin-bottom: 12px !important;
}

/* 独自のインジケーターを設置 */
.m-archive-section li::before {
    content: '▹' !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--accent-neon, #ff007f) !important;
    text-shadow: 0 0 8px rgba(255, 0, 127, 0.5) !important;
}

/* --- 30. AUDIO PLAYER CYBER HACK (標準プレイヤーのダーク化) --- */
.m-audio-container {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 4px;
    padding: 5px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.m-audio-container:hover {
    border-color: #00d2ff;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.m-cyber-audio {
    width: 100%;
    height: 40px;
    outline: none;
    /* ブラウザ標準の白いプレイヤーを強制的に黒系のダークトーンへ反転 */
    filter: invert(0.9) hue-rotate(180deg) contrast(1.2) sepia(1) saturate(1.5) hue-rotate(180deg) !important;
    -webkit-filter: invert(0.9) hue-rotate(180deg) contrast(1.2) sepia(1) saturate(1.5) hue-rotate(180deg) !important;
    opacity: 0.8;
    transition: 0.3s;
}

.m-cyber-audio:hover, 
.m-cyber-audio:focus {
    opacity: 1;
}

/* --- 31. SOUND ARCHIVE LIST (横一列のトラックリスト) --- */
.m-track-wrapper {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #00d2ff;
    padding: 20px 30px;
    margin-bottom: 5px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}
.m-track-wrapper:hover {
    border-color: #00d2ff;
    box-shadow: 0 5px 20px rgba(0, 210, 255, 0.2), inset 0 0 10px rgba(0, 210, 255, 0.05);
    transform: translateX(5px);
}

.m-track-info {
    flex: 1 1 300px;
}
.m-track-player {
    flex: 0 0 300px;
}

/* スマホ表示時の縦積み調整 */
@media (max-width: 768px) {
    .m-track-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .m-track-player {
        width: 100%;
        flex: 0 0 auto;
    }
}

/* --- 32. JIMDO DOWNLOAD WIDGET CYBER HACK (標準ダウンロード機能のサイバー化) --- */
.j-downloadDocument {
    max-width: 900px !important;
    margin: 0 auto 40px !important; /* 次の曲との間隔をあける */
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-top: none !important; /* 上のプレイヤーウィジェットとくっつけるため上線を消す */
    border-radius: 0 0 4px 4px !important; /* 下の角だけ丸くする */
    padding: 15px 30px !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

.j-downloadDocument:hover {
    background: rgba(0, 255, 136, 0.05) !important; /* ネオングリーンのホバー効果 */
    border-color: rgba(0, 255, 136, 0.3) !important;
    box-shadow: inset 0 0 15px rgba(0, 255, 136, 0.1) !important;
}

/* 内部レイアウトの調整（フレックスボックス化して横並びに） */
.j-downloadDocument .clearover {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

/* 左側のアイコン画像（白黒反転させて光らせる） */
.j-downloadDocument .leftDownload {
    float: none !important;
    margin: 0 !important;
    flex: 0 0 40px !important;
}
.j-downloadDocument .downloadImage {
    width: 30px !important;
    height: auto !important;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(90deg) drop-shadow(0 0 5px rgba(0,255,136,0.8)) !important;
    transition: 0.3s !important;
}

/* 右側のテキスト・リンクエリア */
.j-downloadDocument .rightDownload {
    float: none !important;
    width: auto !important;
    flex: 1 1 200px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* タイトル部分 */
.j-downloadDocument .cc-m-download-title {
    font-family: 'Shippori Mincho', serif !important;
    font-size: 16px !important;
    color: #fff !important;
    font-weight: normal !important;
    margin-bottom: 5px !important;
    text-shadow: 0 1px 3px rgba(0,0,0,1) !important;
}

/* ファイル名と情報（隠すか、目立たなくする） */
.j-downloadDocument .cc-m-download-file-name {
    display: none !important; /* タイトルと被るので非表示 */
}
.j-downloadDocument .cc-m-download-file-info {
    font-family: 'Cinzel', serif !important;
    font-size: 11px !important;
    color: #888 !important;
    letter-spacing: 1px !important;
}

/* ダウンロードリンク（ボタン化） */
.j-downloadDocument .cc-m-download-file-link {
    margin-top: 10px !important;
    text-align: right !important; /* 右寄せ */
}

.j-downloadDocument .cc-m-download-link {
    display: inline-block !important;
    font-family: 'Cinzel', serif !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    color: #00ff88 !important;
    background: transparent !important;
    border: 1px solid #00ff88 !important;
    padding: 8px 20px !important;
    text-decoration: none !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5) !important;
}

.j-downloadDocument .cc-m-download-link:hover {
    background: rgba(0, 255, 136, 0.2) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* スマホ表示時の調整 */
@media (max-width: 768px) {
    .j-downloadDocument {
        padding: 15px !important;
    }
    .j-downloadDocument .clearover {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .j-downloadDocument .cc-m-download-file-link {
        width: 100% !important;
        text-align: center !important;
    }
    .j-downloadDocument .cc-m-download-link {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}