/* ============================================================
   コンテンツページ専用：背景色をグレーに設定
   ============================================================ */
body {
    background-color: #f7f7f7 !important;
}

/* ヘッダーやフッターの親要素が白背景を保持するように調整 */
.navi, .footer_c, .copyright {
    background-color: #ffffff !important;
}

/* ============================================================
   1. 共通ベース設定
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

.ta_c { text-align: center; }
.ta_l { text-align: left; }
.ta_r { text-align: right; }
.fc_orange { color: #f39800; }
.fc_blue { color: #00a0e9; }
.fc_skyblue { color: #00b7ce; }
.fc_red { color: #d93025; }
.fc_red2{ color: #ff0000; }
.mt1em { margin-top: 1em; }
.mt2em { margin-top: 2em; }
.mb1em { margin-bottom: 1em; }
.fw_b { font-weight: bold; }
.li_disc { margin-left: 1.5em; list-style: disc; }
.small_text { font-size: 11px; color: #666; line-height: 1.4; }

/* コンテンツエリア全体：左右中央配置を保証 */
.cont01_s01_full {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px;
    display: block;
    float: none !important;
    clear: both;
}

/* 見出しデザイン：枠なしテキストカラーのみ */
h1.ht_001a.fc_orange, h1.ht_001a.fc_blue {
    border: none !important;
    background: none !important;
    padding: 20px 0 !important;
    width: 100%;
    margin: 0 auto;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    display: block;
}
h1.ht_001a.fc_orange { color: #f39800; }
h1.ht_001a.fc_blue { color: #00a0e9; }

/* 導入文・案内ボックス */
.intro_box_custom, .info-box-custom, .contact-section-custom {
    border: 1px solid #e0e0e0;
    padding: 25px;
    margin: 0 auto 30px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    text-align: left;
    width: 100%;
    line-height: 1.6;
}

/* ============================================================
   2. 「お申込み」「追加登録」用：丸数字ステップ
   ============================================================ */
.step_list_custom {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.step_row_custom {
    width: 100%;
    position: relative;
    padding: 25px 25px 25px 65px; 
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.04);
}
.step_circle_custom {
    position: absolute;
    left: 15px;
    top: 25px;
    width: 32px;
    height: 32px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}
.step_circle_blue { background: #00a0e9; }
.step_circle_orange { background: #f39800; }

/* ============================================================
   3. 「保険金請求」用：横長Flexフロー（可変・追従）
   ============================================================ */
.flow-container-custom {
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 高さを揃え、テキスト量に合わせて背景が伸びるように修正 */
.flow-step-box-custom {
    display: flex !important;
    width: 100% !important;
    align-items: stretch !important; 
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    margin-bottom: 12px !important;
    padding: 0 !important; 
    min-height: 60px !important;
    height: auto !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

/* 番号ラベル：親に合わせて100%伸びる設定 */
.step-label-custom {
    background: #004098 !important;
    color: #fff !important;
    width: 65px !important;
    flex: 0 0 65px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    font-weight: bold !important;
    height: auto !important;
}

/* テキストエリア：左寄せにし、ボタンとの距離を最適化 */
.step-content-main {
    flex: 1 !important;
    display: flex !important;
    justify-content: flex-start !important; /* 空きすぎ防止 */
    align-items: center !important;
    padding: 15px 55px 15px 15px !important; /* 右側にアイコンとの重なり防止の余白 */
    text-align: left !important;
}

.step-text-title { 
    font-size: 14px; 
    font-weight: bold; 
    color: #333;
    line-height: 1.5 !important;
}

.step-btn-img img { height: 30px; width: auto; }

/* 保険金請求：書類グリッド */
.document-grid-custom { display: flex; gap: 10px; margin-bottom: 25px; }
.doc-item-custom { flex: 1; background: #fdfdfd; border: 1px solid #e0e0e0; padding: 20px 10px; text-align: center; }
.doc-img-area { width: 100%; margin-bottom: 15px; display: flex; justify-content: center; }
.doc-img-area img { max-height: 50px; width: auto; }
.doc-item-custom h3 { font-size: 14px; color: #004098; font-weight: bold; margin-bottom: 10px; text-decoration: underline; }

/* 保険金請求：注意点 */
.warning-box-custom { border: 1px solid #d93025; background: #fff8f8; padding: 20px; border-radius: 4px; margin: 30px 0; }
.warning-box-custom h2 { color: #d93025 !important; font-size: 16px; margin: 0 0 10px 0; font-weight: bold; border: none !important; }

/* 保険金請求：テーブル */
.benefit-table-custom { width: 100%; border-collapse: collapse; margin: 15px 0; background: #fff; }
.benefit-table-custom th, .benefit-table-custom td { border: 1px solid #ccc; padding: 15px; text-align: center; font-size: 14px; }

/* お問合せ：右寄せ案内 */
.contact-notice-right { border-top: 1px dotted #ccc; margin-top: 15px; padding-top: 15px; text-align: right; }

/* ============================================================
   4. レスポンシブ対応
   ============================================================ */
@media screen and (max-width: 768px) {
    h1.ht_001a { font-size: 18px; padding: 15px 0 !important; }
    .cont01_s01_full { padding: 0 10px; }
    .step_row_custom { padding: 20px 15px 20px 55px; }
    .flow-step-box-custom { min-height: 60px !important; }
    .step-label-custom { width: 50px !important; flex: 0 0 50px !important; font-size: 18px !important; }
    .step-content-main { padding: 10px 45px 10px 12px !important; } /* SP時の間隔詰め */
    .step-text-title { font-size: 13px !important; }
    .step-btn-img img { height: 22px; }
    .document-grid-custom { flex-direction: column; }
    .contact-notice-right { text-align: left; }
}

/* ============================================================
   保険金請求ページ：特定デザインの強制適用（デザイン維持）
   ============================================================ */
.claims-section h2 {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #004098 !important;
    padding-bottom: 8px !important;
    margin: 40px 0 20px !important;
    border-bottom: 1px solid #004098 !important;
    position: relative !important;
    display: block !important;
    text-align: left !important;
}
.claims-section h2::before {
    content: "" !important;
    position: absolute !important;
    bottom: -1px !important;
    left: 0 !important;
    width: 40px !important;
    height: 3px !important;
    background: #004098 !important;
    display: block !important;
}

.benefit-table-custom, .benefit-table-custom th, .benefit-table-custom td { border: 1px solid #004098 !important; }
.benefit-table-custom thead, .benefit-table-custom th { background: #004098 !important; color: #ffffff !important; }
.info-box-custom { background-color: #f0faff !important; border: 1px solid #e0e0e0 !important; padding: 30px !important; margin: 30px 0 !important; border-radius: 8px !important; text-align: left !important; }
.info-box-custom h2 { color: #004098 !important; font-size: 18px !important; font-weight: bold !important; text-align: center !important; margin: 0 auto 20px auto !important; padding-bottom: 5px !important; display: table !important; border-bottom: 2px solid #004098 !important; background: none !important; }
h1.ht_001a.fc_blue { color: #004098 !important; }

/* ============================================================
   FAQ（よくあるご質問）専用スタイル
   ============================================================ */
.faq-nav-custom { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0 40px; }
.faq-nav-custom a { background: #0062ad; color: #fff !important; text-align: center; padding: 12px 5px; text-decoration: none; font-size: 14px; font-weight: bold; border-radius: 4px; transition: opacity 0.3s; }
.faq-nav-custom a:hover { opacity: 0.8; }
.faq-category-header { border-left: 6px solid #0062ad; padding: 5px 15px; margin: 40px 0 20px; font-size: 20px; font-weight: bold; color: #333; text-align: left; }
.faq-accordion-container { margin-bottom: 40px; }

.faq-item-custom {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff !important;
}
.faq-q-btn { width: 100%; background: #fff !important; border: none !important; padding: 18px 50px 18px 20px; text-align: left; font-size: 15px; font-weight: bold; color: #333; cursor: pointer; position: relative; display: block; line-height: 1.5; }

/* アイコン設定（絶対配置にして重なりを防止） */
.faq-q-btn::after, .step-guide-q::after, .claims-custom-header::after { 
    content: "+" !important; 
    position: absolute !important; 
    right: 20px !important; 
    top: 50% !important; 
    transform: translateY(-50%) !important; 
    font-size: 28px !important; 
    font-weight: bold !important; 
    color: #0062ad; 
    transition: transform 0.3s; 
}
.faq-item-custom.is-active .faq-q-btn::after, .step-guide-item.is-active .step-guide-q::after, .is-active .claims-custom-header::after { 
    content: "\2212" !important; 
}

/* ============================================================
   メニューエリア：マウスオン設定
   ============================================================ */
#product_digital_area #header_menu ul li a { transition: none !important; padding-bottom: 5px !important; border-bottom: 4px solid transparent !important; }
#product_digital_area #header_menu ul li a:hover { background-color: transparent !important; text-decoration: none !important; border-bottom: 4px solid #00b7ce !important; color: #333 !important; }
#product_digital_area #header_menu ul li a:hover img { transform: none !important; }

/* ============================================================
   お申込み方法：アコーディオン調整
   ============================================================ */
.intro_box_custom { text-align: left !important; }

.step-guide-accordion { width: 100%; margin-bottom: 30px; }
.step-guide-item { border: 1px solid #e0e0e0; margin-bottom: 12px; border-radius: 6px; background: #fff !important; overflow: hidden; }
.step-guide-q { width: 100%; display: flex !important; align-items: center; padding: 15px 50px 15px 15px !important; background: #fff !important; border: none !important; cursor: pointer; text-align: left; position: relative; }
.step-guide-num { width: 30px; height: 30px; background: #00b7ce; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px; margin-right: 15px; flex-shrink: 0; }
.step-guide-txt { font-size: 15px; font-weight: bold; color: #333; line-height: 1.4; }
.step-guide-num.orange { background-color: #f39800 !important; }
.step-guide-item:has(.orange) .step-guide-q::after { color: #f39800 !important; }

.inline-step-link { display: inline-flex; width: 24px; height: 24px; background-color: #004098; color: #fff !important; border-radius: 50%; align-items: center; justify-content: center; font-size: 13px; font-weight: bold; text-decoration: none; margin: 0 4px; vertical-align: middle; }

.pc-br { display: inline; } .sp-br { display: none; }
@media screen and (min-width: 769px) { .sp-br { display: none !important; } .pc-br { display: block; content: ""; } }
@media screen and (max-width: 768px) { .pc-br { display: none !important; } .sp-br { display: block; content: ""; margin-top: 0; } }

/* ============================================================
   ★修正：アコーディオン回答エリアの統合とセンター配置・二重枠解消
   ============================================================ */
/* 閉じた時のはみ出し・二重枠防止 */
.faq-a-content, 
.claims-accordion-item .faq-a-content, 
.step-guide-a {
    display: none;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important; 
    overflow: hidden;
}

/* 開いた時の表示・中央寄せ設定 */
.faq-item-custom.is-active .faq-a-content,
.step-guide-item.is-active .step-guide-a,
.claims-accordion-item.is-active .faq-a-content {
    display: block !important;
    background-color: #ffffff !important;
    padding: 20px !important; /* 左右均等の余白でセンター配置 */
    border-top: 1px solid #dddddd !important; /* 上の区切り線のみ */
    text-align: left !important;
}

/* ============================================================
   保険金請求ページ：アコーディオン一体化デザイン
   ============================================================ */
.claims-accordion-item { 
    border: 1px solid #dddddd !important; /* 外枠はここで一本化 */
    background: transparent !important; 
    box-shadow: none !important; 
    margin-bottom: 15px !important; 
    padding: 0 !important; 
    border-radius: 8px !important; 
    overflow: hidden !important; 
}

/* Q：白背景・影なし */
.claims-custom-header.flow-step-box-custom {
    background-color: #ffffff !important;
    border: none !important; /* 親で枠線を持っているので不要 */
    box-shadow: none !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important; 
}

/* 画像の中央寄せ */
.img_wrap_custom { margin-top: 15px; text-align: center !important; }
.faq-a-content img, .step-guide-a img, .img_wrap_custom img { 
    display: block !important; 
    margin: 0 auto !important; 
    border: none !important; 
    box-shadow: none !important; 
}

/* ============================================================
   PC/SPでの画像切り替え・特定サイズ（30%・400px）設定
   ============================================================ */
html body .sp_in { display: none !important; }
html body .pc_in { display: block !important; margin: 0 auto !important; }

@media screen and (max-width: 768px) {
    html body .pc_in { display: none !important; }
    html body .sp_in { display: block !important; margin: 0 auto !important; }
}

@media (min-width: 768px) {
    .img_wrap_custom img { max-height: 400px; width: auto; }
    .img-narrow img { width: 35% !important; max-height: none; }
    .img-narrow2 img { width: 95% !important; max-height: none; }
}

/* ============================================================
   PC時のフォントサイズ（16px化）
   ============================================================ */
@media screen and (min-width: 769px) {
    .step-text-title, .faq-q-btn, .step-guide-txt, .faq-a-content, .step-guide-a {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* ============================================================
   SP（スマホ）時の画像巨大化を防止する追加設定
   ============================================================ */
@media screen and (max-width: 768px) {
    /* HTML直書きの width: 100% を強制キャンセルし、本来の比率を維持 */
    .img_wrap_custom img,
    .faq-a-content img,
    .step-guide-a img {
        width: auto !important; 
        max-width: 100% !important;
        /* スマホでも縦に長くなりすぎるのを防ぐ */
        max-height: 400px !important; 
    }

    /* .img-narrow（縦長画像）はスマホでも幅を絞る */
    .img-narrow img,
.img-narrow2 img{
        width: 80% !important; /* スマホ画面の80%程度に縮小 */
        max-width: 400px !important; /* それでも大きすぎる場合の最大幅制限 */
    }
}

/* ============================================================
   特定の画像に影を付ける専用クラス
   ============================================================ */
.img-shadow {
    /* ふんわりとした自然な影を付ける */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important; 
    
    /* 白い背景の画像が同化しないよう、極めて薄い枠線を付ける（お好みで削除可） */
    border: 1px solid #f0f0f0 !important; 
    
    /* 角を少し丸くしたい場合は以下を有効にしてください */
    /* border-radius: 6px !important; */
}


/* 親コンテナ */
.apply-page-custom .apply-accordion-container {
    margin-top: 30px !important;
    border-top: 1px solid #ddd !important;
}

/* 各アイテム */
.apply-page-custom .apply-acc-item {
    border-bottom: 1px solid #ddd !important;
    background: #fff !important;
}

/* 質問エリア（ヘッダー） */
.apply-page-custom .apply-acc-q {
    padding: 20px 45px 20px 15px !important;
    cursor: pointer !important;
    position: relative !important;
    display: flex !important; /* 番号とテキストを並列に */
    align-items: flex-start !important;
    font-weight: bold !important;
    color: #00428d !important; /* 青色 */
    transition: background 0.3s !important;
}

.apply-page-custom .apply-acc-q:hover {
    background-color: #f9f9f9 !important;
}

/* 番号部分 */
.apply-page-custom .acc-num {
    flex-shrink: 0 !important;
    margin-right: 0.5em !important; /* 番号の後のスペース */
}

/* テキスト部分（折り返し制御） */
.apply-page-custom .acc-text {
    line-height: 1.5 !important;
    text-indent: -1.5em !important; /* 1行目を左に戻す */
    padding-left: 1.5em !important;  /* 全体を右に寄せて、2行目以降を揃える */
}

/* 開閉アイコン（FAQ風のプラスマイナス） */
.apply-page-custom .apply-acc-q::after {
    content: '+' !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 20px !important;
}

.apply-page-custom .apply-acc-item.is-active .apply-acc-q::after {
    content: '-' !important;
}

/* 回答エリア */
.apply-page-custom .apply-acc-a {
    display: none; /* JSで制御 */
    padding: 20px !important;
    background: #fcfcfc !important;
    border-top: 1px solid #eee !important;
}

/* 画像や注釈の調整 */
.apply-page-custom .img_wrap_custom {
    margin-bottom: 15px !important;
}


/* ============================================================
   ご自宅でお申込み・追加登録ページ用 FAQアコーディオン調整
   ============================================================ */
/* ヘッダーをFlexboxにして2行目を揃える */
.faq-q-btn.custom-flex-header {
    display: flex !important;
    align-items: flex-start !important;
}
/* 項番のみ青色・太字 */
.faq-num-blue {
    color: #004098 !important;
    font-weight: bold !important;
    flex-shrink: 0 !important;
    margin-right: 0.5em !important;
　　font-size: 18px; !important;
}
/* テキスト本体の色を固定 */
.faq-txt-main {
    color: #333333 !important;
    display: block !important;
}
/* コンテンツのカット（見切れ）防止 */
.claims-accordion-item.overflow-visible,
.faq-a-content.overflow-visible {
    overflow: visible !important;
    height: auto !important;
}


/* ============================================================
   保険金請求 簡易フロー用スタイル
   ============================================================ */
.simple-flow-wrapper {
    width: 100%;
    margin: 0 0 40px 0;
}

.simple-flow-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 4つのボックスの高さを一番高いものに合わせる */
    width: 100%;
}

/* 各ステップのカード（PC版） */
.flow-step-card {
    background: #ffffff !important;
    border: 2px solid #004098 !important;
    border-radius: 8px !important;
    width: 22% !important; /* 4カラム均等 */
    padding: 20px 15px !important;
    text-align: center !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

/* ステップ番号 */
.flow-step-num {
    background: #004098 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: bold !important;
    padding: 4px 15px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    margin: 0 auto 15px auto !important;
}

/* アイコン画像エリア */
.flow-step-icon {
    margin-bottom: 15px !important;
    height: 90px !important; /* アイコンの高さを揃えてガタつきを防止 */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.flow-step-icon img {
    max-height: 100% !important;
    width: auto !important;
}

/* テキストエリア */
.flow-step-text {
    font-size: 13px !important;
    color: #333333 !important;
    line-height: 1.5 !important;
    text-align: left !important;
    margin: 0 !important;
}

.flow-step-text strong {
    color: #d93025 !important; /* 重要な部分を赤色太字に */
}

/* ステップ間の矢印 */
.flow-step-arrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #004098 !important;
    font-size: 24px !important;
    font-weight: bold !important;
    width: 4% !important;
}

/* ============================================================
   レスポンシブ（スマホ表示: ボックスを縦に積む）
   ============================================================ */
@media screen and (max-width: 768px) {
    .simple-flow-container {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .flow-step-arrow {
        width: 100% !important;
        transform: rotate(90deg) !important; /* 矢印を下向きに回転 */
        margin: 10px 0 !important;
    }
    
    /* SP時は高さを抑えるため、カード内でアイコン(左)とテキスト(右)を横並びに */
    .flow-step-card {
        width: 100% !important;
        max-width: 400px !important;
        padding: 15px !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
    }
    
    .flow-step-header {
        width: 80px !important;
        flex-shrink: 0 !important;
        margin-right: 15px !important;
        text-align: center !important;
    }
    
    .flow-step-num {
        margin: 0 auto 10px auto !important;
        font-size: 12px !important;
        padding: 3px 10px !important;
    }
    
    .flow-step-icon {
        margin-bottom: 0 !important;
        height: 40px !important;
    }
}




/* ============================================================
   アコーディオン共通：ボタンサイズ・デザインの完全統一
   ============================================================ */
.faq-accordion-container .custom-flex-header {
    display: flex !important;
    align-items: flex-start !important;
    padding: 18px 50px 18px 20px !important; /* ボタンの余白を完全統一 */
    min-height: 64px !important;             /* 高さを完全統一 */
    box-sizing: border-box !important;
}

/* 項番（青色・太字） */
.faq-accordion-container .faq-num-blue {
    color: #004098 !important;
    font-weight: bold !important;
    flex-shrink: 0 !important;
    margin-right: 0.5em !important;
    line-height: 1.5 !important;
}

/* テキスト本文（黒色・ぶら下げインデント） */
.faq-accordion-container .faq-txt-main {
    color: #333333 !important;
    display: block !important;
    line-height: 1.5 !important;
}

/* コンテンツのカット（見切れ）防止 */
.faq-accordion-container .faq-item-custom,
.faq-accordion-container .faq-a-content {
    overflow: visible !important;
    height: auto !important;
}


/* ============================================================
   アコーディオン共通：ボタンサイズ・デザインの完全統一
   ============================================================ */
.apply-page-custom .apply-accordion-container {
    margin-top: 30px !important; /* ←★これを追加して全ページで上部余白を固定 */
    overflow: visible !important;
}

.apply-page-custom .custom-flex-header {
    display: flex !important;
    align-items: flex-start !important;
    padding: 18px 50px 18px 20px !important;
    min-height: 64px !important;
    box-sizing: border-box !important;
}

.apply-page-custom .faq-num-blue {
    color: #004098 !important;
    font-weight: bold !important;
    flex-shrink: 0 !important;
    margin-right: 0.5em !important;
    line-height: 1.5 !important;
}

.apply-page-custom .faq-txt-main {
    color: #333333 !important;
    display: block !important;
    line-height: 1.5 !important;
}

.apply-page-custom .apply-acc-item,
.apply-page-custom .faq-a-content {
    overflow: visible !important;
    height: auto !important;
}

/* ============================================================
   アコーディオン共通：開閉アイコン（＋/－）のサイズと色
   ============================================================ */
.apply-page-custom .faq-q-btn {
    position: relative !important; /* アイコンの配置基準 */
}

.apply-page-custom .faq-q-btn::after {
    content: '+' !important;
    position: absolute !important;
    right: 25px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 28px !important; /* ← ここでアイコンを大きくしています */
    font-weight: bold !important;
    color: #0062ad !important;
    line-height: 1 !important;
}

.apply-page-custom .faq-item-custom.is-active .faq-q-btn::after {
    content: '－' !important; /* マイナス記号 */
}

/* ============================================================
   保険金請求：「必要な書類」のアイコンサイズ調整
   ============================================================ */
/* PC時のベースサイズ（適度な大きさに制限） */
.doc-item-custom .icon-img {
    max-height: 90px !important; 
    width: auto !important;
    margin-bottom: 15px !important;
}

/* スマホ（SP）時のサイズ縮小 */
@media screen and (max-width: 768px) {
    .doc-item-custom .icon-img {
        max-height: 60px !important; /* 
        margin-bottom: 10px !important;
    }
}