/* public/assets/css/style.css */

/* 基本設定 */
body {
    background-color: #f4f2f0; /* 和紙のような白 */
    color: #1a1a1a;            /* 墨色 */
    overflow-x: hidden;
}

/* タイポグラフィ */
.font-serif { font-family: "Shippori Mincho", "Noto Serif JP", serif; }
.font-sans { font-family: "Noto Sans JP", sans-serif; }
.font-eng { font-family: "Cormorant Garamond", serif; }

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.15em;
}

/* 高級感を出すためのカーソル */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot { width: 5px; height: 5px; background-color: #1a1a1a; }
.cursor-outline {
    width: 40px; height: 40px;
    border: 1px solid rgba(26,26,26, 0.5);
    transition: width 0.2s, height 0.2s;
}

/* 画像プレースホルダー */
.img-placeholder {
    background-color: #dcdcdc;
    position: relative;
    overflow: hidden;
}
.img-placeholder::after {
    content: "";
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.05) 100%);
}

/* ページ遷移アニメーション用（フェードイン） */
body {
    animation: fadeIn 1.5s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}