@charset "utf-8";
/* ==============================
   responsive.css (スマホ用)
============================== */
@media screen and (max-width: 767px) {

    /* 全体の余白調整 */
    body {
        font-size: 14px;
        line-height: 1.5;
    }

    header {
        padding: 20px 10px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    header h2 {
        font-size: 1rem;
    }

    header p {
        font-size: 0.9rem;
    }

    /* ナビゲーション */
    .nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: #f5f5f5;
    }

    /* セクション */
    main section {
        padding: 40px 10px;
    }

    main section h3 {
        font-size: 1.4rem;
    }

    main section h4 {
        font-size: 1.2rem;
    }

    main section h5, main section p {
        font-size: 0.9rem;
    }

    /* 画像 */
    main section img {
        width: 100%;
        height: auto;
    }

    /* CTAボタン */
    header img, main section img[src*="CTA"] {
        width: 80%;
        margin: 20px auto;
    }

    /* フッター */
    footer {
        font-size: 0.8rem;
        padding: 15px 10px;
    }
}