/* カスタムスタイル */

/* 全体のフォント設定 */
body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    zoom: 1.0; /* デフォルト（スマホ）の拡大率 */
}

/* PCなど画面幅が768px以上のデバイス用の設定 */
@media (min-width: 768px) {
    body {
        zoom: 1.5; /* PC画面を1.5倍に拡大 */
    }
}

/* ヒーローセクションの背景画像設定 */
.hero-bg {
    background-image: url('https://cdn.peraichi.com/userData/ec1d37ae-1e8d-42df-a8e1-dfe995906b1b/img/67bff0b73f6ce/original.jpg');
    background-size: cover;
    background-position: center;
}

/* CTAボタンのホバーエフェクト */
.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* グラデーションテキスト */
.gradient-text {
    background: linear-gradient(to right, #F97316, #EA580C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* セクションタイトルのスタイル */
.section-title {
    font-weight: 900;
    letter-spacing: 0.05em;
}

/* ヒーローセクションのテキストシャドウ */
.hero-text-shadow {
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.7);
}
