body {
    font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    background-color: #f7f9fa;
    color: #333;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

.support-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
}

.page-title {
    font-size: 24px;
    color: #004098;
    border-bottom: 2px solid #004098;
    padding-bottom: 15px;
    text-align: center;
}

.section-main-title {
    font-size: 19px;
    color: #004098;
    background: #e9f0f7;
    padding: 10px 15px;
    border-left: 5px solid #004098;
    margin-top: 40px;
}


/* PDF資料リンク */
.doc-links {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.doc-links li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 5px;
}

/*
.doc-links li::before {
    content: "・";
    position: absolute;
    left: 0;
}
*/

.doc-links li a {
    color: #3b82f6;
    text-decoration: underline;
    font-size: 14px;
}

.doc-links li a:hover {
    color: #2563eb;
    text-decoration: none;
}

.category-label {
    /*color: #d32f2f;*/
    font-size: 16px;
    /*margin: 25px 0 10px;*/
    margin: 25px 0 10px;
}

.conditional-block {
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #ccc;
}

.preview-popup {
    display: none;
    position: absolute;
    z-index: 9999;
    background: #fff;
    border: 2px solid #004098;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    pointer-events: none; /* マウスイベントを透過させてチラつきを防ぐ */
}

.preview-popup img {
    max-width: 250px;
    height: auto;
    display: block;
}

.no-marker {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}


/* 既存の a タグの設定に合わせて、テキスト部分も調整 */
.doc-links li, 
.doc-links li .doc-text {
    font-size: 14px; /* 他のリンクと同じサイズに強制 */
    color: #333;    /* テキストの色を本文に合わせる */
}

/* もし「・」の位置が気になる場合は以下も確認 */
.doc-links li {
    display: block; /* 縦の並びを安定させる */
    line-height: 1.8;
}


/* --- 1. タイトル行のデザイン（変更なし・▼の位置を固定） --- */
.product-head {
    cursor: pointer;
    position: relative;
    padding: 5px;
    padding-right: 25px; /* 矢印用のスペース */
    border-bottom: 1px solid #eee;
    font-size: 16px;
    /* width: fit-content; は削除してください（これが▼のズレの原因です） */
}

/* 矢印を右端に絶対配置 */
.product-head::after {
    content: '▼';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    transition: transform 0.3s;
}

/* --- 2. 判定エリア（文字の上だけ） --- */
.hover-trigger {
    display: inline-block;
    transition: background 0.3s;
    border-radius: 4px;
}
.hover-trigger:hover {
    background-color: #f0f4f8;
}

/* --- 3. アンカーリンク用の余白設定 --- */
/* コンテナ全体の余白は消し、最後に空のスペースを作る */
.support-container::after {
    content: "";
    display: block;
    height: 80vh; /* これで最後のセクションが一番上まで上がります */
}
