@charset "UTF-8";

/* 基本フォント設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #4a5568;
}

.font-hand {
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* ドットパターン背景 */
.bg-pattern {
    background-color: #fdfbf7;
    background-image: radial-gradient(#f0e6d2 1px, transparent 1px);
    background-size: 24px 24px;
}

/* テーブルのスタイル調整 */
.profile-table th {
    background-color: #fff7ed; /* orange-50 */
    color: #c2410c; /* orange-700 */
    white-space: nowrap;
}

/* テキストシャドウ */
.text-shadow-sm {
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}