/* ==========================================================================
   Sub Page Components
   ========================================================================== */
/* 下層ページヘッダー */
.page-header {
    background: 
    radial-gradient(circle at 85% 15%, rgba(37, 100, 161, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 15% 85%, rgba(13, 42, 69, 0.8) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #0D2A45 0%, #2564A1 100%);

    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px, 100% 100%;
    color: var(--color-white);
    padding: 0 0 80px;
    margin-top: var(--header-height); /* 固定ヘッダー分の余白 */
    text-align: center;
}

.page-header__title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding-top: 80px;
}

/* パンくずリスト */
.breadcrumbs {
    background-color: var(--color-bg-light);
    padding: 12px 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs__list li {
    display: flex;
    align-items: center;
}

.breadcrumbs__list li:not(:last-child)::after {
    content: ">";
    margin-left: 8px;
    font-size: 0.8em;
    opacity: 0.5;
}

.breadcrumbs__list a {
    color: var(--color-primary);
    text-decoration: underline;
}

.breadcrumbs__list a:hover {
    text-decoration: none;
}

/* ==========================================================================
   Service Detail Hero Area
   ========================================================================== */
.service-hero {
    padding: 60px 0 0;
    background-size: 30px 30px;
    overflow: hidden;
}
/* ヒーログリッド */
.service-hero__grid {
    display: flex;
    align-items: center;
    gap: 30px;
}
.service-hero__content {
    flex: 1.4;
    text-align: left;
}
.service-hero__label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-hero__title {
    font-size: 2.1rem;
    line-height: 1.35;
    margin-bottom: 24px;
    color: var(--color-white);
    font-weight: 800;
}

.service-hero__title-sub {
    display: block;
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-top: 8px;
    letter-spacing: 0.05em;
}

.service-hero__lead {
    line-height: 1.6;
    color: #cbd5e0;
}

/* ビジュアルエリア */
.service-hero__visual {
    flex: 1;
    position: relative;
}

.service-hero__image-wrapper {
    position: relative;
    z-index: 1;
}

.service-hero__image-wrapper img {
    width: 100%;
    border-radius: 24px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

@media (max-width: 900px) {
    .service-hero__grid {
        flex-direction: column;
        text-align: center;
    }
    .service-hero__title { font-size: 1.9rem; }
    .service-hero__visual { width: 80%; }
}

/* ==========================================================================
   Main Contents Area
   ========================================================================== */
.page-content {
    padding: 50px 0;
}


.subpage-box {
    background: var(--color-white);
    border-radius: 20px;
    padding: 20px 6%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
/* H2 見出し */
.heading-primary {
    font-size: 1.75rem;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-bg-light);
    padding-bottom: 12px;
    margin: 42px 0 32px;
    position: relative;
    font-weight: 700;
}

.heading-primary::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px; /* アクセントライン */
    height: 2px;
    background-color: var(--color-accent);
}

/* H3 見出し */
.heading-secondary {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 36px 0 24px;
    padding-left: 16px;
    border-left: 5px solid var(--color-accent);
    font-weight: 700;
}

/* H4 見出し */
.heading-tertiary {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.heading-tertiary::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    transform: rotate(45deg); /* ひし形アイコン */
}

/* H5 見出し */
.heading-quaternary {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary);
}

/* テキストスタイル */
.page-content p {
    line-height: 1.83;
    margin-bottom: 32px;
    color: var(--color-text);
}

/* リスト */
.common-list {
    margin-bottom: 32px;
    padding-left: 0;
}

.common-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.6;
}

ul.common-list li::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 9px;
    background-color: var(--color-accent);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    font-weight: 700;
}

.common-list--ordered {
    counter-reset: list-count;
}

.common-list--ordered li {
    padding-left: 30px;
}

ol.common-list--ordered li::before {
    content: counter(list-count) ".";
    counter-increment: list-count;
    color: var(--color-accent);
    font-family: var(--font-en);
}

/* 画像（全幅） */
.full-width-image {
    margin: 0 auto 32px;
    text-align: center;
}
.full-width-image img {
    width: 95%;
    height: auto;
    border-radius: 8px;
}
.full-width-image figcaption {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 8px;
    text-align: left;
}
/* 画像（幅小さ目） */
.full-width-image.u-smaller-image img {
    width: 80%;
}
@media (max-width: 768px) {
    .full-width-image.u-smaller-image img {
        width: 100%;
    }
}

/* メディアブロック（画像＋テキスト横並び） */
.media-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 40px;
}

.media-block__img {
    flex: 0 0 45%; /* 画像幅45% */
}

.media-block__img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.media-block__body {
    flex: 1;
}
/* YouTube動画（全幅） */
.full-width-youtube {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.full-width-youtube iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
  }


/* 逆配置用クラス */
.media-block--reverse {
    flex-direction: row-reverse;
}

/* テーブル */
.table-wrapper {
    overflow-x: auto; /* スマホで横スクロール */
    margin-bottom: 32px;
}

.common-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* スマホでもこれ以上縮めない */
}

.common-table th,
.common-table td {
    padding: 16px;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.common-table th {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    font-weight: 700;
    text-align: left;
    width: 30%; /* 見出し列の幅目安 */
}

.common-table td {
    background-color: #fff;
}

/* 汎用ボックス */
.info-box {
    background-color: var(--color-bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.info-box__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* ボタンサイズ拡張 */
.btn--sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .page-header {
        padding: 0 0 60px;
    }
    
    .page-header__title {
        font-size: 1.5rem;
        padding-top: 60px;
    }
    .media-block__body {
        width: 100%;
    }

    .media-block, 
    .media-block--reverse {
        flex-direction: column; /* 縦並び */
        gap: 20px;
    }

    .heading-primary {
        font-size: 1.5rem;
    }

    .heading-secondary {
        font-size: 1.25rem;
    }

    .page-content {
        padding: 40px 0;
    }
}

/* ==========================================================================
   Author & Interviewee
   ========================================================================== */
   .author-info {
    background: var(--color-bg-light);
    border-radius: 8px;
    padding: 30px;
}
.author-info__inner {
    display: flex;
    gap: 24px;
    align-items: center;
}
.author-info__img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}
.author-info__name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.author-info__text {
    font-size: 0.9rem;
    margin-bottom: 0 !important;
}

.interviewee-profile {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}
.interviewee-profile__header {
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
}
.interviewee-profile__title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0;
}
.interviewee-profile__content {
    display: flex;
    gap: 30px;
    padding: 20px;
    font-size: 0.9rem;
    background: var(--color-bg-light);
}
.interviewee-profile__info {
    flex: 1;
}
.interviewee-profile__img img {
    width: 120px;
    border-radius: 8px;
}
.interviewee-profile__name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px !important;
}
.interviewee-profile__sub {
    color: var(--color-text-light);
    margin-bottom: 12px;
}

/* ==========================================================================
   Speech Bubble
   ========================================================================== */
.speech {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}
.speech__avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.speech__bubble {
    position: relative;
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    border: 2px solid #eee;
    max-width: 70%;
    flex: 1;
}
.speech__bubble p { margin-bottom: 0 !important; }

/* 吹き出しのしっぽ */
.speech--left .speech__bubble::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #eee;
}
.speech--right { justify-content: flex-end; }
.speech--right .speech__bubble {
    background: var(--color-bg-light);
    border-color: var(--color-bg-light);
}
.speech--right .speech__bubble::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--color-bg-light);
}

/* ==========================================================================
   Custom Boxes Patterns
   ========================================================================== */
.custom-box {
    padding: 24px;
    border-radius: 8px;
}
.custom-box p:last-child { margin-bottom: 0; }

.custom-box--simple {
    background: #fff;
    border: 2px solid var(--color-accent);
}
.custom-box--titled {
    border: 2px solid var(--color-primary);
    padding-top: 40px;
    position: relative;
}
.custom-box__title {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 4px 20px;
    font-size: 0.85rem;
    font-weight: 700;
}
.custom-box--alert {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    color: #c53030;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .custom-box {
        padding: 24px 10px;
    }
}

/* ==========================================================================
   Definition Lists (<dl>)
   ========================================================================== */

/* 横並びスタイル（会社概要・スペックなど） */
.definition-list {
    border-top: 1px solid #e0e0e0;
    font-size: 0.9em;
    line-height: 1.3em;
}

.definition-list__item {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.definition-list dt {
    width: 6em; /* 項目名の幅 */
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

.definition-list dd {
    flex: 1;
    margin-left: 10px;
    color: var(--color-text);
}

/* FAQ/ボーダースタイル */
.faq-list__item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #ccc;
}

.faq-list dt {
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 8px;
    padding-left: 28px;
    position: relative;
}

.faq-list dt::before {
    content: "Q.";
    position: absolute;
    left: 0;
    font-family: var(--font-en);
}

.faq-list dd {
    margin-left: 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.faq-list dd::before {
    content: "A.";
    position: absolute;
    left: 0;
    font-family: var(--font-en);
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .definition-list__item {
        flex-direction: column;
    }
    .definition-list dt {
        width: 100%;
        margin-bottom: 8px;
    }
}

/* ==========================================================================
   Text Links
   ========================================================================== */
.t-link {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.t-link:hover {
    text-decoration: none;
    opacity: 0.7;
}

/* 矢印付き */
.t-link--arrow::after {
    content: "→";
    margin-left: 4px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.t-link--arrow:hover::after {
    transform: translateX(4px);
}

/* 外部リンク */
.t-link--external::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 6px;
    background-color: currentColor;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z"/></svg>') no-repeat center;
}

/* ダウンロードリンク */
.t-link--download::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    background-color: currentColor;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z"/></svg>') no-repeat center;
}
/* ==========================================================================
   Page Top Button
   ========================================================================== */
.pagetop-btn {
    position: fixed;
    right: 48px;
    bottom: 48px;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border: 1px solid #767676;
    border-radius: 8px;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagetop-btn.is-active {
    opacity: 1;
    visibility: visible;
}
.pagetop-btn span {
    width: 12px;
    height: 12px;
    border-top: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
    transform: rotate(-45deg);
    margin-top: 4px;
}
.pagetop-btn:hover {
    background: #eceff0;
}

@media (max-width: 768px) {
    .author-info__inner, .interviewee-profile__content { flex-direction: column; text-align: center; }
    .speech__bubble { max-width: 85%; }
}

/* ==========================================================================
   Smooth Details & Summary (FAQ)
   ========================================================================== */
.faq-item {
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary {
    list-style: none; /* Firefox用 */
    outline: none;
    cursor: pointer;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] {
    border-color: var(--color-accent);
    box-shadow: 0 10px 25px rgba(3, 114, 189, 0.08);
}

.faq-summary {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.faq-q-icon {
    font-family: var(--font-en);
    font-weight: 800;
    color: var(--color-accent);
    font-size: 1.2rem;
}

.faq-question {
    font-weight: 700;
    color: var(--color-primary);
    flex: 1;
}

/* カスタム矢印 */
.faq-arrow {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.4s ease;
}
.faq-arrow::before,
.faq-arrow::after {
    content: "";
    position: absolute;
    background: #cbd5e0;
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* 横棒 */
.faq-arrow::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}
/* 縦棒 */
.faq-arrow::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* 開いた時の矢印（マイナスにする） */
.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}
.faq-item[open] .faq-arrow::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
.faq-item[open] .faq-arrow::before {
    background: var(--color-accent);
}

/* ふわっと開閉のアニメーション設定 */
.faq-content {
    display: grid;
    grid-template-rows: 0fr; /* 初期状態は閉じている */
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-content {
    grid-template-rows: 1fr; /* 開くと中身の高さになる */
}

.faq-content-inner {
    overflow: hidden; /* アニメーション中の崩れ防止 */
}

.faq-content-inner p {
    padding: 0 24px 24px 60px; /* Qアイコンの幅分を左に開ける */
    margin: 0;
    color: var(--color-text);
    line-height: 1.8;
    /* ふわっと浮かび上がるフェードイン効果 */
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.faq-item[open] .faq-content-inner p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}
/* ==========================================================================
  フロー矢印
   ========================================================================== */
.flow-arrow {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 25px solid var(--color-primary);
    margin: 10px auto;
  }

/* ==========================================================================
   Infographics Styles
   ========================================================================== */
.chart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.chart-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.chart-card__title {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--color-primary);
}

/* --- 円グラフ（SVG） --- */
.pie-chart-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
}

.pie-chart__bg {
    fill: none;
    stroke: #eef2f6;
    stroke-width: 3.8;
}

.pie-chart__fill {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 3.8;
    stroke-linecap: round;
    /* 円周を100として計算できるように設定 */
    stroke-dasharray: 0 100;
    transition: stroke-dasharray 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pie-chart__percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

/* --- 棒グラフ --- */
.bar-chart-container {
    text-align: left;
    margin-bottom: 24px;
}

.bar-item {
    margin-bottom: 20px;
}

.bar-item__label {
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.bar-item__track {
    background: #eef2f6;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
}

.bar-item__fill {
    background: var(--color-accent);
    height: 100%;
    width: 0; /* 初期は0 */
    border-radius: 6px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-item__value {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 4px;
    text-align: right;
}
.chart-card__desc {
    text-align: left;
}

/* アニメーション開始用クラス */
.is-animated .pie-chart__fill {
    /* JSでdata-percentの値をstroke-dasharrayに代入 */
}

.is-animated .bar-item__fill {
    /* JSでdata-widthの値をwidthに代入 */
}

@media (max-width: 768px) {
    .chart-grid { grid-template-columns: 1fr; }
}
/* ==========================================================================
   Multi-segment Donut Chart
   ========================================================================== */
   .multi-pie-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.multi-pie-chart {
    flex: 0 0 320px;
    position: relative;
}

.donut-svg {
    transform: rotate(-90deg); 
    border-radius: 50%;
}

.donut-segment {
    /* 15.9155 * 2 * PI ≈ 100 なので、stroke-dasharrayがパーセンテージに直結します */
    stroke-dasharray: 0 100;
    stroke-dashoffset: 0;
    transition: stroke-dasharray 1.2s ease-out, stroke-dashoffset 1.2s ease-out;
}

.donut-center-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-total-label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--color-text-light); }
.donut-total-val { font-size: 1.2rem; font-weight: 800; color: var(--color-primary); }

/* 説明文（レジェンド） */
.multi-pie-info { flex: 1; }
.info-title { font-size: 1.4rem; margin-bottom: 30px; color: var(--color-primary); }
.info-list { list-style: none; padding: 0; }
.info-item {
    position: relative;
    padding-left: 24px;
    margin-bottom: 24px;
}
.info-item::before {
    content: "";
    position: absolute;
    left: 0; top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--item-color); /* インラインスタイルから取得 */
}

.info-label { display: block; font-weight: 700; color: var(--color-primary); margin-bottom: 4px; }
.info-desc { font-size: 0.9rem; line-height: 1.6; color: var(--color-text-light); margin: 0; }

@media (max-width: 900px) {
    .multi-pie-wrapper { flex-direction: column; padding: 40px 24px; }
    .multi-pie-chart { flex: 0 0 240px; width: 240px; }
}