/* 768px以下のスタイル */
@media (max-width: 768px) {

    /* --- レイアウト共通 --- */
    .wrap {
        padding: 0 6%;
    }

    section {
        padding: 60px 0;
    }

    .section_title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    /* --- ヘッダー・ハンバーガーメニュー --- */
    .top_category_logo img {
        height: 35px;
    }

    /* ハンバーガーボタンの外枠 */
    .hamburger {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        z-index: 2000;
        cursor: pointer;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    /* 三本線 */
    .hamburger span {
        display: block;
        position: absolute;
        left: 10px;
        width: 24px;
        height: 2px;
        background-color: #333;
        transition: all 0.4s;
    }

    .hamburger span:nth-child(1) { top: 14px; }
    .hamburger span:nth-child(2) { top: 21px; }
    .hamburger span:nth-child(3) { top: 28px; }

    /* ボタンがアクティブ（開いた時）の形 */
    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(-45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(45deg);
    }

    /* ナビゲーションメニュー */
    .top_category_right {
        position: fixed;
        top: 0;
        right: -100%; /* 最初は画面外に隠す */
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1500;
        transition: all 0.5s;
    }

    .top_category_right.active {
        right: 0; /* 画面内にスライドイン */
    }

    .top_category_right a {
        margin: 20px 0;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    .top_category_right img {
        width: 50px;
        margin-top: 10px;
    }

    /* --- ヒーローエリア --- */
    #hero {
        height: 70vh;
    }

    .hero_content .title {
        font-size: 1.6rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    /* --- 事業内容 --- */
    .business_item {
        padding: 30px 20px;
    }

    .business_item h2 {
        font-size: 1.2rem;
    }

    /* --- 理念 --- */
    .philosophy_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .philosophy_card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 25px 15px;
    }

    .philosophy_visual img {
        width: 90%;
    }

    /* --- 会社概要 (テーブル解除) --- */
    .table_box dl {
        flex-direction: column;
    }

    .table_box dt {
        width: 100%;
        padding: 15px;
        text-align: left;
        background: #f5e9eb;
        border-bottom: none;
    }

    .table_box dd {
        width: 100%;
        padding: 10px 15px 25px 15px;
    }

    /* --- ブランドグリッド --- */
    .brand_grid {
        grid-template-columns: repeat(2, 1fr); /* 2列にする */
        gap: 15px;
    }

    .brand_item {
        margin-bottom: 15px;
    }

    .brand_item img {
        height: 140px;
    }

    .brand_item p {
        font-size: 14px;
    }

    /* --- 問い合わせ --- */
    .contact_info p {
        font-size: 14px;
    }
}