    /* ====================================
       ページヘッダー & アンカーナビ
       ==================================== */
    .service-page-header {
        padding: 40px 0 60px;
        text-align: center;
        background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

    /* アンカーナビ */
    .anchor-nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        max-width: 900px;
        margin: 0 auto;
    }
    .anchor-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fff;
        width: 200px;
        padding: 20px 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        color: var(--main-color);
        box-sizing: border-box;
    }
    .anchor-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(16, 70, 100, 0.15);
        border-color: var(--main-color);
        opacity: 1;
    }
    .anchor-en {
        font-weight: 700;
        color: var(--main-color);
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 5px;
    }
    .anchor-jp {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
    }
    .anchor-btn::after {
        content: "▼";
        display: block;
        margin-top: 10px;
        color: var(--main-color);
        font-size: 0.9rem;
        opacity: 0.6;
        transition: 0.3s;
    }
    .anchor-btn:hover::after { 
        opacity: 1; 
        transform: translateY(3px);
    }

    /* ====================================
       共通セクション構造
       ==================================== */
    .service-block {
        padding: 80px 0;
        border-bottom: 1px solid #eee;
        scroll-margin-top: 0;
    }
    .service-block:nth-of-type(even) { background-color: #f8f9fa; }

    /* ヘッダー */
    .block-header {
        text-align: center;
        margin-bottom: 50px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .block-title-en {
        font-size: 2.2rem;
        color: var(--main-color);
        margin: 0 0 10px;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.2;
        text-transform: uppercase;
        font-family: "Helvetica Neue", Arial, sans-serif;
    }
    .block-title-jp {
        font-size: 1.2rem;
        color: #333;
        margin: 0 0 30px;
        font-weight: 700;
        line-height: 1.5;
    }
    .block-desc { 
        text-align: left; 
        display: inline-block; 
        line-height: 1.8;
    }

    /* メイン画像 */
    .block-main-image {
        margin-bottom: 50px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        height: 300px;
        width: 100%;
        overflow: hidden;
    }
    .block-main-image img { 
        width: 100%; height: 100%; object-fit: cover; display: block; 
    }

    /* 関連記事エリア */
    .related-area {
        margin-top: 60px;
        padding-top: 60px;
        border-top: 2px dashed #ddd;
    }
    .related-label {
        text-align: center; font-size: 0.9rem; color: #999;
        letter-spacing: 0.2em; margin-bottom: 10px; font-weight: 700;
    }
    .related-heading {
        text-align: center; font-size: 1.2rem; margin: 0 0 30px; font-weight: 700;
    }
    .related-grid {
        display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px;
    }
    .related-card {
        display: block; background: #fff; overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05); border: 1px solid #eee;
        text-decoration: none; color: #333;
    }
    .related-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); opacity: 1; }
    .related-thumb {
        height: 160px; background: #f4f4f4; display: flex;
        align-items: center; justify-content: center; overflow: hidden;
    }
    .related-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .related-body { padding: 15px; }
    .related-date { font-size: 0.8rem; color: #888; display: block; margin-bottom: 5px; }
    .related-title { font-size: 0.95rem; font-weight: 700; margin: 0; line-height: 1.5; }

    /* ====================================
       コンテンツタイプ別スタイル
       ==================================== */

    /* TYPE A: カードリスト型 */
    .content-type-cards .card-list-wrapper {
        display: flex; flex-direction: column; gap: 40px;
    }
    .content-type-cards .service-card {
        background: #fff; border: 1px solid #e5e5e5;
        padding: 40px; transition: 0.3s;
        display: flex; flex-direction: column;
    }
    .content-type-cards .service-card:hover {
        transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: var(--main-color);
    }
    .content-type-cards .card-head {
        border-bottom: 2px solid var(--main-color); padding-bottom: 15px; margin-bottom: 25px;
    }
    .content-type-cards .card-title {
        font-size: 1.5rem; color: var(--main-color); margin: 0; font-weight: 700; line-height: 1.4;
    }
    .content-type-cards .card-body { flex-grow: 1; }
    
    .content-type-cards .card-body p{
	    line-height: 1.6;
    }
    
    /* カード内リンク */
    .card-text-link {
        margin-top: 25px; text-align: right;
    }
    .card-text-link a {
        font-weight: 700; color: var(--main-color); text-decoration: none;
        display: inline-flex; align-items: center;
    }
    .card-text-link a::after {
        content: "→"; display: inline-block; margin-left: 8px; transition: transform 0.3s;
    }
    .card-text-link a:hover::after { transform: translateX(5px); }

    .detail-table {
        width: 100%; border-collapse: collapse; margin-top: 20px;
        background: #f9f9f9; overflow: hidden;
    }
    .detail-table tr { border-bottom: 1px solid #eee; }
    .detail-table tr:last-child { border-bottom: none; }
    .detail-table th {
        text-align: left; padding: 15px 20px; width: 25%; font-weight: 700;
        color: #555; background: #f0f4f8; white-space: nowrap;
    }
    .detail-table td { padding: 15px 20px; }

    /* サブメニュー */
    .sub-menu-group { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
    .sub-menu-item { border: 1px dashed #ccc; padding: 20px; }
    .sub-menu-title {
        font-size: 1.1rem; font-weight: 700; margin: 0 0 15px;
        display: flex; align-items: center; line-height: 1.4;
    }
    .sub-menu-title::before {
        content: ''; display: inline-block; width: 6px; height: 6px; flex-shrink: 0;
        background: var(--main-color); margin-right: 10px;
    }

    /* オプションエリア */
    .option-area {
        margin-top: 60px; background: #eef5ff; padding: 40px 20px;
    }
    .option-title {
        text-align: center; font-size: 1.3rem; margin: 0 0 30px; font-weight: 700; color: var(--main-color);
    }
    .option-grid {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
    }
    .option-card {
        background: #fff; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    }
    .option-name { font-weight: 700; color: var(--main-color); margin: 0 0 5px; }
    .option-desc { font-size: 0.9rem; margin: 0; }

    /* TYPE B: フリー記述型（構造化スタイル） */
    .content-type-free .free-content-wrapper {
        max-width: 800px; margin: 0 auto;
    }
    .free-topic-block {
        margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px dashed #ccc;
    }
    .free-topic-block:last-child {
        margin-bottom: 0; padding-bottom: 0; border-bottom: none;
    }
    .free-topic-title {
        font-size: 1.6rem; position: relative; padding-left: 20px;
        margin: 0 0 25px; font-weight: 700; line-height: 1.4; color: #333;
    }
    .free-topic-title::before {
        content: ''; position: absolute; left: 0; top: 0.2em; bottom: 0.2em;
        width: 6px; background: var(--main-color);
    }
    .free-topic-lead {
        font-weight: 700; font-size: 1.1rem; margin-bottom: 20px;
        color: var(--main-color); line-height: 1.6;
    }
    .free-topic-text { margin-bottom: 30px; }
    
    .free-topic-list {
        background: #fff; padding: 30px 40px;
        border: 1px solid #eee; list-style: none; margin-bottom: 30px;
    }
    .free-topic-list li {
        position: relative; margin-bottom: 12px; padding-left: 1.5em; line-height: 1.6;
    }
    .free-topic-list li:last-child { margin-bottom: 0; }
    .free-topic-list li::before {
        content: "✔"; color: var(--main-color); font-weight: bold; 
        position: absolute; left: 0; top: 0;
    }
    .btn-center { text-align: center; margin-top: 40px; }
    .btn-primary {
        display: inline-block; background: var(--main-color); color: #fff;
        padding: 16px 40px; font-weight: 700;
        font-size: 1.1rem; box-shadow: 0 5px 15px rgba(16, 70, 100, 0.2);
        text-decoration: none;
    }
    .btn-primary:hover {
        transform: translateY(-3px); box-shadow: 0 8px 20px rgba(16, 70, 100, 0.3); opacity: 1;
    }
    .btn-accent {
        background: #ff9900; box-shadow: 0 5px 15px rgba(255, 153, 0, 0.2);
    }
    .btn-accent:hover { box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3); }

    /* スマホ対応 */
    @media (max-width: 768px) {
        .anchor-nav { flex-direction: column; align-items: stretch; gap: 10px; }
        .anchor-btn { width: 100%; flex-direction: row; justify-content: space-between; padding: 15px 20px; }
        .anchor-btn::after { margin-top: 0; content: "▶"; transform: rotate(0); font-size: 0.8rem; margin-left: 10px; }
        .anchor-text-wrap { text-align: left; }
        .anchor-en { margin-bottom: 0; font-size: 1rem; margin-right: 10px; display: inline-block;}
        
        .service-block { padding: 60px 0; }
        .block-title-en { font-size: 1.8rem; line-height: 1.3; } /* 行間調整 */
        .block-title-jp { margin-bottom: 25px; }

        .content-type-cards .service-card { padding: 25px; }
        .content-type-cards .card-title { font-size: 1.3rem; line-height: 1.4; } /* 行間調整 */
        .card-text-link { text-align: center; } /* センター寄せ */
        
        .detail-table th, .detail-table td { display: block; width: 100%; box-sizing: border-box;}
        .detail-table th { border-bottom: none; padding-bottom: 5px; }
        .detail-table td { padding-top: 5px; border-bottom: 1px solid #eee; padding-left: 20px; }
        
        .block-main-image { height: 200px; margin-bottom: 40px; }
        
        .free-topic-title { font-size: 1.4rem; padding-left: 15px; margin-bottom: 20px; }
        .free-topic-list { padding: 20px; }
        .free-topic-list li { padding-left: 1.4em; }
    }