        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
            color: #1a1a1a;
            background-color: #fcfbfa;
            line-height: 2;
            letter-spacing: 0.08em;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
        }
        a:hover {
            opacity: 0.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }
        .sp-br {
    display: none; 
        }
@media (max-width: 960px) {
    .sp-br {
        display: block !important; 
    }
}
        /* 共通コンポーネント */
        .en-title {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
            font-style: italic;
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 10px;
        }
        .jp-title {
            font-size: 0.85rem;
            color: #8c8c8c;
            letter-spacing: 0.2em;
            margin-bottom: 50px;
            font-weight: normal;
        }
        .section-padding {
            padding: 120px 0;
        }
        
        /* ボタンの調整 */
        .btn-custom {
            display: inline-block;
            background-color: #1a1a1a;
            color: #fff;
            padding: 15px 50px;
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            letter-spacing: 0.1em;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: color 0.4s ease, border-color 0.4s ease;
        }
        .btn-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #00a3af 0%, #4d4398 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .btn-custom:hover {
            border-color: transparent;
            color: #fff;
            opacity: 1;
            box-shadow: 0 4px 15px rgba(77, 67, 152, 0.25);
        }
        .btn-custom:hover::before {
            opacity: 1;
        }

        /* アニメーション設定 */
        .fade-in-block {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 1.2s ease, transform 1.2s ease;
        }
        .js-enabled .fade-in-block {
            opacity: 0;
            transform: translateY(40px);
        }
        .js-enabled .fade-in-block.is-active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ヘッダー */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background-color: rgba(252, 251, 250, 0.9);
            border-bottom: 1px solid #f0eee9;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            letter-spacing: 0.15em;
            font-weight: 400;
            white-space: nowrap;
        }
        .nav-sns {
            display: flex;
            align-items: center;
        }
        .nav-sns a {
            margin-left: 25px;
            font-family: 'Playfair Display', serif;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }
        .nav-sns a:hover {
            color: #4d4398;
            opacity: 1;
        }
        .nav-shop {
            font-weight: bold;
            padding-bottom: 2px;
        }

        /* 1. メインビジュアル */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 1;
            object-fit: cover;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(252, 251, 250, 0.2);
            z-index: 2;
        }
        .hero-title {
            position: relative;
            z-index: 3;
            color: #fff;
            padding: 0 20px;
        }
        .hero-title h1 {
            font-size: 2.2rem;
            font-weight: normal;
            letter-spacing: 0.2em;
            margin-bottom: 20px;
            line-height: 1.6;
            word-break: keep-all;
        }
        .hero-title p {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            letter-spacing: 0.15em;
            color: #fff;
        }
.hero-title h1, 
.hero-title p {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 0 4px rgba(0, 0, 0, 0.3);
}
        /* SCROLLアイコン（文字を小文字にして線の左横に配置） */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            /* 線の位置も含めて全体が画面中央にくるよう、左にわずかに補正 */
            transform: translateX(-53%); 
            font-family: 'Playfair Display', serif;
            font-size: 0.85rem;
            letter-spacing: 0.2em; /* 縦書きに最適な文字間隔 */
            color: #fff;
            z-index: 3;
            text-transform: lowercase; /* 自動小文字化 */
            
            /* ★英字をモダンに回転させて縦書き（上から下へ流れる状態）にする */
            writing-mode: vertical-rl;
            
            /* 線の見え方に合わせて全体の高さを最適化 */
            height: 55px; 
            line-height: 1;
            
            /* 文字の右横に線を置くためのすき間 */
            padding-right: 14px; 
        }

        /* ベースの縦線（右横に絶対配置） */
        .scroll-down::after {
            content: '';
            width: 1px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.3);
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        /* 上から下へ滑らかに流れ落ちる白いラインの光 */
        .scroll-down::before {
            content: '';
            width: 1px;
            height: 45px;
            background-color: #fff;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            /* 前回の滑らかな高描画アニメーションと完全に連動 */
            animation: scrollMove 2.2s infinite cubic-bezier(0.25, 1, 0.5, 1);
        }
        
        /* 動画背景の上でも100%カクつかない、滑らかな描画アニメーション */
        @keyframes scrollMove {
            0% {
                clip-path: inset(0 0 100% 0); /* 線の上のほうだけが少し見えている状態 */
                opacity: 0;
            }
            20% {
                opacity: 1;
            }
            60% {
                clip-path: inset(0 0 0 0); /* 線が一番下までスーッと綺麗に伸びた状態 */
                opacity: 1;
            }
            100% {
                clip-path: inset(100% 0 0 0); /* 上から追うようにスッと消えていく状態 */
                opacity: 0;
            }
        }

        /* 2. 作家紹介（ABOUT） */
        .about-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* 写真と文章の横幅比率 */
    align-items: center;
    gap: 40px 80px; /* 上下の隙間40px / 左右の隙間80px */
}
.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    background-color: #e8e6e1;
}
.about-text {
    /* 内包する文章用なので指定なしでOK */
}
/* ★最重要：PC時は写真と文章の下側に「横幅いっぱい」に回り込ませる命令 */
.about-qualification {
    grid-column: 1 / -1; 
    margin-top: 20px;
}
        .about-text h3 {
            font-size: 1.3rem;
            margin-bottom: 30px;
            font-weight: bold;
            line-height: 1.6;
        }
        .about-text p {
            font-size: 0.95rem;
            color: #333;
            margin-bottom: 20px;
            text-align: justify;
        }
        .about-text .highlight {
            margin-top: 40px;
            font-size: 1.05rem;
            color: #1a1a1a;
            font-weight: bold;
            border-left: 2px solid #4d4398;
            padding-left: 20px;
            line-height: 1.8;
        }

        /* 3. ギャラリー（COLLECTION） */
        .collection {
            background-color: #f5f4f0;
            text-align: center;
        }
        .grid-collection {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }
        .collection-item {
            text-align: left;
        }
        .item-thumb {
            width: 100%;
            height: 400px;
            object-fit: cover;
            margin-bottom: 20px;
            background-color: #e8e6e1;
            transition: transform 0.5s;
        }
        .collection-item:hover .item-thumb {
            transform: scale(1.02);
        }
        .item-name {
            font-size: 0.95rem;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .item-desc {
            font-size: 0.85rem;
            color: #666;
        }
        
        /* 作品一覧の下のオンラインショップ案内エリア */
        .shop-trigger {
            margin-bottom: 80px;
            padding-bottom: 80px;
            border-bottom: 1px solid #e0ded9;
        }
        .shop-trigger p {
            font-size: 0.95rem;
            margin-bottom: 20px;
            color: #4a4a4a;
        }
        .sns-trigger {
            margin-top: 40px;
            width: 100%;
        }
        .sns-trigger p {
            font-size: 0.95rem;
            margin-bottom: 25px;
            color: #4a4a4a;
        }
        .sns-trigger .btn-custom {
            margin: 0 10px;
        }
        
        /* Instagram埋め込みコンテナ */
        .instagram-embed-container {
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
            overflow: hidden;
        }

        /* 全幅の固定背景画像セクション（パララックス） */
        .parallax-bg {
            height: 60vh;
            background-color: #cbd4c5;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
                background-image: url(../img/backfixd.jpg);
        }

        /* 4. 未来の展望（FUTURE VISION） */
        .vision-row {
            display: flex;
            align-items: center;
            gap: 80px;
            flex-direction: row-reverse;
        }
        .vision-img {
            flex: 1;
            width: 100%;
            height: 550px;
            object-fit: cover;
            background-color: #dfdec9;
        }
        .vision-text {
            flex: 1.2;
        }
        .vision-text h3.catch {
            font-size: 1.3rem;
            margin-bottom: 35px;
            font-weight: bold;
            color: #1a1a1a;
            line-height: 1.6;
        }
        .vision-text p {
            font-size: 0.95rem;
            color: #333;
            margin-bottom: 20px;
            text-align: justify;
        }
        .vision-note {
            font-size: 0.85rem !important;
            color: #8c8c8c !important;
            margin-top: 30px;
        }

        /* 5. お問い合わせ（CONTACT） */
        .contact {
            text-align: center;
            border-top: 1px solid #f0eee9;
        }
        .contact p {
            font-size: 0.95rem;
            color: #4a4a4a;
            margin-bottom: 40px;
        }

        /* フッター */
        footer {
            background-color: #1a1a1a;
            color: #fff;
            padding: 60px 0;
            text-align: center;
        }
        footer .logo {
            margin-bottom: 20px;
            color: #fff;
        }
        footer p {
            font-size: 0.75rem;
            color: #777;
            letter-spacing: 0.05em;
        }

        /* ==========================================
           ★レスポンシブ・スマートフォン最適化
        ========================================== */
        @media (max-width: 960px) {
            .section-padding {
                padding: 80px 0;
            }
            
            /* ★ご指定通り、スマホ時の上部余白を50pxに調整 */
            .about-section {
                padding-top: 50px !important;
            }

            .container {
                padding: 0 24px;
            }
            
            header .container {
                height: 75px;
                padding: 0 20px;
            }
            .logo {
                font-size: 1.25rem;
                letter-spacing: 0.1em;
            }
            .nav-sns a {
                margin-left: 15px;
                font-size: 0.85rem;
            }

            .hero-title h1 {
                font-size: 1.6rem;
                letter-spacing: 0.12em;
                line-height: 1.5;
            }
            .hero-title p {
                font-size: 0.95rem;
            }

            /* ★ABOUTセクションのみ「column-reverse」にして文章を上、写真を下に反転 */
            .about-row {
        grid-template-columns: 1fr; /* 縦1列にする */
        gap: 40px;
    }
    /* スマホ時の表示順番号（数字が小さい順に上から並びます） */
    .about-text {
        grid-row: 1; /* 1番上：Aboutのメイン文章 */
    }
    .about-qualification {
        grid-row: 2; /* 2番目：グルーデコの文章（綺麗に連続します） */
        grid-column: auto;
    }
    .about-img {
        grid-row: 3; /* 3番目（一番下）：作家写真 */
        width: 100%;
      }
            /* FUTURE VISIONは通常の縦並び（写真が上、文章が下）を維持 */
            .vision-row {
                flex-direction: column;
                gap: 40px;
            }
            .about-img, .vision-img {
                width: 100%;
            }

            .en-title {
                font-size: 2.2rem;
            }
            .about-text h3, .vision-text h3.catch {
                font-size: 1.2rem;
                margin-bottom: 24px;
            }
            .about-text p, .vision-text p {
                font-size: 0.95rem;
                text-align: left;
            }
            .about-text .highlight {
                margin-top: 30px;
                padding-left: 16px;
                font-size: 1rem;
            }

            .grid-collection {
                grid-template-columns: 1fr;
                gap: 45px;
                margin-bottom: 50px;
            }
            .item-thumb {
                height: 340px;
                margin-bottom: 15px;
            }

            .shop-trigger {
                margin-bottom: 60px;
                padding-bottom: 60px;
            }
            .shop-trigger .btn-custom,
            .sns-trigger .btn-custom,
            .contact .btn-custom {
                width: 100%;
                display: block;
                padding: 16px 20px;
                text-align: center;
            }

            .sns-trigger .btn-custom {
                margin: 0 0 15px 0;
            }
            .sns-trigger .btn-custom:last-child {
                margin-bottom: 0;
            }
            .sns-trigger p {
                font-size: 0.9rem;
                margin-bottom: 24px;
            }

            /* ★スマホではパララックス画像を完全に非表示（削除） */
            .parallax-bg {
                display: none !important;
            }
        }

        @media (max-width: 380px) {
            header .container {
                padding: 0 12px;
            }
            .logo {
                font-size: 1.1rem;
                letter-spacing: 0.05em;
            }
            .nav-sns a {
                margin-left: 10px;
                font-size: 0.8rem;
            }
            .hero-title h1 {
                font-size: 1.4rem;
            }
        }
  #loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fcfbfa; /* サイト全体の背景色と同期 */
    z-index: 9999; /* 最前面に表示 */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s ease;
}
/* 読み込み完了後に消える設定 */
#loading-screen.is-loaded {
    opacity: 0;
    visibility: hidden;
}
/* ミニマルなローディングサークル */
.loading-spinner {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-top-color: #1a1a1a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}