/* =======================================
   Next Vision モバイル用スタイル（最適化版）
   不要CSS全削除済み
======================================= */

/* ===== 基本設定 ===== */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #f1c40f;
}

/* ===== フッター ===== */
footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
}

/* ===== ヒーローセクション ===== */
.hero {
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('./image/Hero-mobile.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 2rem;
}
.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== SNSリンク（高級感バランス調整版） ===== */
.sns-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: clamp(1rem, 3vw, 1.5rem);
    padding: 1.2rem 0; /* 上下に均等な余白 */
    scrollbar-width: none;
    background: rgba(255, 255, 255, 0.02); /* 背景に薄い透明感 */
    border-radius: 16px;
    box-shadow: inset 0 0 8px rgba(255,255,255,0.05),
                0 0 15px rgba(0,0,0,0.5); /* 内外両方に陰影 */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    width: 92%;
    margin: 1.5rem auto; /* 上下均等に配置 */
}
.sns-container::-webkit-scrollbar { display: none; }

.sns-icon {
    flex: 0 0 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 0 12px rgba(255,255,255,0.1),
                0 6px 18px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}
.sns-icon img {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}
.sns-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 0 20px rgba(255,255,255,0.25);
}
.sns-icon:hover img { transform: scale(1.15); }

.sns-icon.insta {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.sns-icon.tiktok {
    background: linear-gradient(135deg, #25f4ee, #fe2c55);
}
.sns-icon.x {
    background: linear-gradient(135deg, #000000, #111);
    border: 1px solid rgba(255,255,255,0.2);
}
.sns-icon.map {
    background: linear-gradient(135deg, #34a853, #4285f4, #fbbc05, #ea4335);
}

/* ===== SNSメッセージ（高級感Ver.） ===== */
.social-message {
    margin: 2rem auto 2.5rem auto; /* 上下バランスを整える */
    font-size: 0.95rem;
    color: #eaeaea;
    background: rgba(255,255,255,0.05);
    padding: 1.2rem 1.5rem;
    border-radius: 14px;
    box-shadow: inset 0 0 8px rgba(255,255,255,0.05),
                0 0 14px rgba(139, 86, 212, 0.2);
    line-height: 1.8;
    letter-spacing: 0.03em;
    text-align: center;
    max-width: 88%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s ease-in-out;
}
.social-message:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 20px rgba(139, 86, 212, 0.3);
    transform: scale(1.02);
}



/* ===== フィルムバナー共通 ===== */
.ghost-wrapper,
.magic-wrapper,
.PT500-wrapper,
.insulation-wrapper {
    margin-top: 2rem;
}

.ghost-banner-link,
.magic-banner-link,
.PT500-banner-link,
.insulation-banner-link {
    display: inline-block;
    position: relative;
    border-radius: 14px;
    overflow: visible;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* バナー画像 */
.ghost-banner-img,
.magic-banner-img,
.PT500-banner-img,
.insulation-banner-img {
    width: 100%;
    max-width: 1200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    transition: transform 0.6s ease, opacity 0.6s ease;
    animation: fadeIn 1.2s ease forwards;
}

/* 紫のオーラ */
.ghost-banner-link::before,
.magic-banner-link::before,
.PT500-banner-link::before,
.insulation-banner-link::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 22px;
    background: radial-gradient(
        circle at center,
        rgba(170, 100, 255, 0.55) 0%,
        rgba(130, 80, 230, 0.25) 40%,
        transparent 75%
    );
    z-index: 1;
    filter: blur(20px);
    opacity: 0.5;
    animation: auraPulse 6s ease-in-out infinite alternate;
    pointer-events: none;
    transition: opacity 0.5s ease, filter 0.5s ease;
}
.ghost-banner-link:hover::before,
.magic-banner-link:hover::before,
.PT500-banner-link:hover::before,
.insulation-banner-link:hover::before {
    opacity: 0.85;
    filter: blur(25px);
    animation-duration: 4s;
}

/* ===== 説明文 ===== */
.ghost-description,
.magic-description,
.PT500-description,
.insulation-description {
    margin-top: 1.4rem;
    color: #eaeaea;
    font-size: clamp(0.88rem, 1.5vw, 0.95rem);
    line-height: 1.8;
    letter-spacing: 0.03em;
    background: rgba(255,255,255,0.03);
    padding: clamp(1rem, 2vw, 1.2rem);
    border-radius: 12px;
    box-shadow: inset 0 0 8px rgba(255,255,255,0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.ghost-description strong,
.magic-description strong,
.PT500-description strong,
.insulation-description strong {
    color: #8b56d4;
    font-weight: 600;
}

.ghost-description b,
.magic-description b,
.PT500-description b,
.insulation-description b {
    color: #7cffb1;
}

/* ===== スライドショー ===== */
.slideshow-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 125px;
    background-color: #000;
}
.slideshow {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 0 10px;
    -webkit-overflow-scrolling: touch;
}
.slideshow img {
    width: 125px;
    height: 125px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: block;
}
.slideshow img:hover {
    transform: scale(1.05);
}

/* ===== アニメーション ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes auraPulse {
    0% { transform: scale(1); opacity: 0.45; filter: blur(18px); }
    50% { transform: scale(1.05); opacity: 0.7; filter: blur(22px); }
    100% { transform: scale(1); opacity: 0.45; filter: blur(18px); }
}
