/* ========================================
   480px以下のレスポンシブ対応
   ======================================== */

@media (max-width: 480px) {
    /* トップセクションのフォントサイズを63pxに設定（0.9換け） */
    .top__left-text-symbol,
    .top__right-text-symbol,
    .top__left-text-with-furigana,
    .top__right-text-with-furigana,
    .top__left-text-service,
    .top__right-text-service {
        font-size: 34px;
    }

    /* 会社名のフォントサイズを34pxに設定 */
    .top__title {
        font-size: 30px;
        font-family: var(--font-family-english);
        font-weight: bold;
    }

    /* 各セクションタイトルのフォントサイズ調整：日本語22px、英訳20px */
    .about__subtitle,
    .service-details__subtitle,
    .services__subtitle,
    .management__subtitle,
    .company__subtitle,
    .contact__header-title,
    .policy-content__title {
        font-size: 22px !important;
    }

    /* セクションタイトル内の英訳は20pxに */
    .about__subtitle .text-english,
    .service-details__subtitle .text-english,
    .services__subtitle .text-english,
    .company__subtitle .text-english,
    .management__subtitle .text-english,
    .contact__header-title .text-english {
        font-family: var(--font-family-english);
        font-weight: normal;
        font-size: 20px !important;
    }

    /* セクションタイトルの下マージンを20pxに変更 */
    .about__subtitle,
    .service-details__subtitle,
    .services__subtitle,
    .management__subtitle,
    .company__subtitle,
    .contact__header-title {
        margin-bottom: 20px !important;
    }

    /* aboutカードのpaddingを30pxに統一、上だけ10pxに */
    .about__card {
        padding: 10px 20px 30px 20px;
    }

    /* 各カードタイトルを20pxに統一 */
    .about__title,
    .service-details__title,
    .services__group-title {
        font-size: 20px;
        text-align: left;
    }

    /* サービス内容カードのpaddingを30pxに統一 */
    .service-details__card {
        padding: 30px 20px;
    }

    /* 弊社の理念カードのロゴサイズを小さく */
    .about__logo img {
        height: 70px;
    }

    /* サービス内容アイコンの下マージンを削除、カード内の間隔調整、サイズを小さく */
    .service-details__icon {
        margin-bottom: 0 !important;
        width: 60px !important;
        height: 60px !important;
    }

    .service-details__card {
        gap: 30px !important;
    }

    /* 事業内容カードのpaddingを30pxに統一、最後のカードの下マージン削除 */
    .services__card {
        padding: 30px 20px !important;
    }

    .services__card:last-child {
        margin-bottom: 0 !important;
    }

    /* 電話番号のフォントサイズを2px小さく表示 */
    .contact__phone-number {
        font-size: 22px;
    }

    /* コンテナの左右パディングを20pxに変更 */
    .container {
        padding: 0 20px !important;
    }

    /* ポリシーページカードのpaddingを30pxに統一 */
    .policy-content__container {
        padding: 30px 20px !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .policy-content__section {
        /* セクション間の縦マージンを30pxに変更、左マージン削除 */
        margin-bottom: 30px !important;
        margin-left: 0 !important;
        text-align: left !important;
    }

    .policy-content__header {
        padding-bottom: 20px !important;
    }

    .policy-content__title {
        margin-bottom: 10px !important;
    }

    .policy-content__section-title {
        /* 縦マージンはそのまま */
        padding-left: 0 !important;
        text-align: left !important;
    }

    .policy-content__text {
        /* 縦マージンはそのまま */
        margin-left: 0 !important;
        text-align: left !important;
    }

    .policy-content__section:first-of-type .policy-content__text {
        margin-left: 0 !important;
    }

    .policy-content__list {
        margin-left: 0 !important;
        /* margin-bottomはそのまま */
        text-align: left !important;
    }

    .policy-content__list-item {
        /* 縦マージンはそのまま */
        text-align: left !important;
    }

    .policy-content__signature {
        text-align: right !important;
        /* margin-topとpadding-topはそのまま */
    }

    /* コンタクトサブタイトルのフォントサイズを19pxに調整 */
    .contact__subtitle {
        font-size: 19px;
    }

    /* スマホ用電話リンクの表示切り替え */
    .contact__phone-number--desktop {
        display: none !important;
    }

    .contact__phone-number--mobile {
        display: inline-block !important;
    }

    /* 会社概要テーブルの比率を1:3に変更 */
    .company__info-label {
        width: 25% !important;
    }

    .company__info-value {
        width: 75% !important;
    }

}