@charset "utf-8";
/* 記事内の図版・グラフのスタイル（この1行を消せば図版のCSSは無効になります） */
@import url("column-fig.css");
/* ==========================================================================
   column.css  ―  コラム（一覧／記事）専用スタイル
   ※既存CSS（reset/common/layout/page）は一切変更していません。
   　コラム配下のページからのみ読み込まれます。
   ========================================================================== */

/*------------------ teaser --------------------*/
#teaser.column{
    background: url(../images/column/teaser.png)no-repeat center center;
    background-size: cover;
}
@media screen and (max-width: 767px) {
    #teaser.column{
        background: url(../images/column/teaser_sp.png)no-repeat center center;
        background-size: cover;
    }
}

/*------------------ パンくず（4階層で2行になる場合の対応） --------------------*/
#breadcrumb.column{
    box-sizing: border-box;
    height: auto;
    min-height: 50px;
    padding: 13px 40px;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
    #breadcrumb.column{
        min-height: 30px;
        padding: 7px 10px;
    }
}

/*------------------ 共通 --------------------*/
#column{
    font-family: var(--font-base);
}
#column .column_wrap{
    /* 上の余白 70px → 0（2026年8月14日）
       パンくずと本文の間の空きを、ご相談方法・よくある質問と同じにするためです。
       一覧・カテゴリ別一覧・記事16本のすべてに効きます。
       ★記事16本だけは、下の #column .column_article で 40px 戻しています
       　（大きなタイトルがすぐ下に来るため。2026年8月14日）。 */
    padding: 0 0 100px;
}
#column .column_lead{
    margin: 0 auto 55px;
    max-width: 840px;
    font-size: 16px;
    line-height: 2;
    text-align: center;
}
#column .top_contact{
    background: #fafafa;
}
#column .top_banner{
    background: #fff;
}
@media screen and (max-width: 767px) {
    #column .column_wrap{
        padding: 0 0 45px;   /* 上 25px → 0（2026年8月14日） */
    }
    #column .column_lead{
        margin-bottom: 30px;
        font-size: 14px;
        line-height: 1.9;
        text-align: left;
    }
}

/*------------------ カテゴリ絞り込み --------------------*/
#column .column_cats{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
}
#column .column_cats button,
#column .column_cats a{
    display: inline-block;
    box-sizing: border-box;
    padding: 0 26px;
    height: 44px;
    border: 1px solid #e95377;
    border-radius: 22px;
    background: #fff;
    color: #cc2b5a;
    font-family: var(--font-base);
    font-size: 15px;
    line-height: 42px;
    text-decoration: none;
    cursor: pointer;
    transition: .2s;
}
#column .column_cats button:hover,
#column .column_cats a:hover{
    background: #fdf0f4;
}
#column .column_cats button.is_active,
#column .column_cats a.is_active{
    background: #e95377;
    color: #fff;
}
@media screen and (max-width: 767px) {
    #column .column_cats{
        gap: 8px;
        margin-bottom: 25px;
    }
    #column .column_cats button,
    #column .column_cats a{
        padding: 0 16px;
        height: 36px;
        border-radius: 18px;
        font-size: 13px;
        line-height: 34px;
    }
}

/*------------------ 一覧カード --------------------*/
#column .column_list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
#column .column_card{
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 32px 34px 78px;
    border: 1px solid #ebebeb;
    border-top: 4px solid #e95377;
    border-radius: 6px;
    background: #fff;
    transition: .25s;
}
#column .column_card:hover{
    border-color: #f3c4d1;
    border-top-color: #e95377;
    box-shadow: 0 8px 24px rgba(233,83,119,.13);
    transform: translateY(-3px);
}
#column .column_card.cat_cost{ border-top-color: #a9600f; }
#column .column_card.cat_area{ border-top-color: #377569; }
#column .column_card.cat_basic{ border-top-color: #4d6ea8; }

#column .column_card .meta{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
#column .column_card .cat{
    display: inline-block;
    padding: 0 14px;
    height: 26px;
    border-radius: 13px;
    background: #cc2b5a;   /* 白文字とのコントラストを4.5以上にするため（2026年8月14日）*/
    color: #fff;
    font-size: 12px;
    line-height: 26px;
    white-space: nowrap;
}
#column .column_card.cat_cost  .cat{ background: #a9600f; }
#column .column_card.cat_area  .cat{ background: #377569; }
#column .column_card.cat_basic .cat{ background: #4d6ea8; }
#column .column_card .date{
    color: #6e6e6e;
    font-family: var(--font-base);
    font-size: 13px;
}
#column .column_card .tit{
    font-family: var(--font-head);
    font-size: 21px;
    line-height: 1.6;
}
#column .column_card .tit a{
    color: #111;
}
#column .column_card:hover .tit a{
    color: #cc2b5a;
}
#column .column_card .txt{
    margin-top: 16px;
    color: #555;
    font-size: 14px;
    line-height: 1.9;
}
#column .column_card .more{
    position: absolute;
    left: 34px;
    bottom: 30px;
    padding-right: 26px;
    background: url(../images/common/ico_arrow02.png)no-repeat center right;
    background-size: 14px;
    color: #cc2b5a;
    font-size: 14px;
}
@media screen and (max-width: 767px) {
    #column .column_list{
        grid-template-columns: 1fr;
        gap: 16px;
    }
    #column .column_card{
        padding: 20px 18px 60px;
    }
    #column .column_card .meta{
        gap: 10px;
        margin-bottom: 12px;
    }
    #column .column_card .tit{
        font-size: 17px;
    }
    #column .column_card .txt{
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.8;
    }
    #column .column_card .more{
        left: 18px;
        bottom: 20px;
        font-size: 13px;
    }
}

/*------------------ 記事本文 --------------------*/
#column .column_article{
    max-width: 800px;
    margin: 0 auto;
    /* パンくずと記事タイトルの間（2026年8月14日）
       記事は「カテゴリの札＋日付」のすぐ下に大きなタイトルが来るため、
       ほかのページと同じ 0 にすると詰まって見えます。
       ここだけ 40px 空けています（一覧・カテゴリ別一覧は 0 のままです）。
       ★このクラスは記事ページにしかありません。一覧には影響しません。 */
    padding-top: 40px;
}
#column .article_head{
    padding-bottom: 28px;
    border-bottom: 1px solid #ebebeb;
}
#column .article_head .meta{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
#column .article_head .cat{
    display: inline-block;
    padding: 0 14px;
    height: 26px;
    border-radius: 13px;
    background: #cc2b5a;   /* 白文字とのコントラストを4.5以上にするため（2026年8月14日）*/
    color: #fff;
    font-size: 12px;
    line-height: 26px;
}
#column .article_head.cat_cost  .cat{ background: #a9600f; }
#column .article_head.cat_area  .cat{ background: #377569; }
#column .article_head.cat_basic .cat{ background: #4d6ea8; }
#column .article_head .date{
    color: #6e6e6e;
    font-family: var(--font-base);
    font-size: 13px;
}
#column .article_head h1.tit{
    font-family: var(--font-head);
    font-size: 30px;
    line-height: 1.5;
}
/* 記事の導入文（2026年8月13日に調整）
   　本文が16pxなのに導入文が15pxで、**紹介する文章のほうが小さい**という
   　逆転が起きていました。本文より少し大きくし、左に細い線を入れて
   　「ここは導入」と分かるようにしています。16本すべてに効きます。 */
#column .article_head .summary{
    margin-top: 22px;
    padding-left: 18px;
    border-left: 3px solid #f0d3db;
    color: #444;
    font-size: 17px;
    line-height: 2;
}
@media screen and (max-width: 767px) {
    #column .column_article{
        padding-top: 20px;   /* PCの40pxに対して、スマホは20px（2026年8月14日） */
    }
    #column .article_head{
        padding-bottom: 20px;
    }
    #column .article_head h1.tit{
        font-size: 21px;
    }
    #column .article_head .summary{
        margin-top: 16px;
        padding-left: 12px;
        border-left-width: 2px;
        font-size: 15px;   /* スマホの本文と同じ大きさ。左の線で導入だと分かります */
        line-height: 1.9;
    }
}

/*------------------ 目次 --------------------*/
#column .toc{
    box-sizing: border-box;
    margin-top: 40px;
    padding: 28px 34px 30px;
    border: 1px solid #f0d3db;
    border-radius: 6px;
    background: #fdf7f9;
}
#column .toc .toc_tit{
    margin-bottom: 14px;
    color: #cc2b5a;
    font-family: var(--font-head);
    font-size: 19px;
    text-align: center;
}
#column .toc ol{
    counter-reset: toc;
}
#column .toc li{
    position: relative;
    padding-left: 34px;
    font-size: 15px;
    line-height: 1.7;
}
#column .toc li+li{
    margin-top: 12px;
}
#column .toc li:before{
    counter-increment: toc;
    content: counter(toc);
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e95377;
    color: #fff;
    font-family: var(--font-base);
    font-size: 12px;
    line-height: 22px;
    text-align: center;
}
#column .toc li a{
    color: #333;
}
#column .toc li a:hover{
    color: #cc2b5a;
}
@media screen and (max-width: 767px) {
    #column .toc{
        margin-top: 25px;
        padding: 18px 16px 20px;
    }
    #column .toc .toc_tit{
        font-size: 16px;
    }
    #column .toc li{
        padding-left: 28px;
        font-size: 14px;
    }
}

/*------------------ 本文パーツ --------------------*/
#column .article_body{
    margin-top: 55px;
}
#column .article_body h2{
    position: relative;
    margin: 60px 0 24px;
    padding: 14px 0 14px 22px;
    border-left: 5px solid #e95377;
    background: #fbf3f5;
    font-family: var(--font-head);
    font-size: 24px;
    line-height: 1.5;
}
#column .article_body h3{
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e6b7c4;
    font-family: var(--font-head);
    font-size: 19px;
    line-height: 1.5;
}
#column .article_body p{
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 2;
}
#column .article_body p strong,
#column .article_body li strong{
    font-weight: 700;
    background: linear-gradient(transparent 62%, #fbdde5 62%);
}
#column .article_body a{
    color: #cc2b5a;
    text-decoration: underline;
}
#column .article_body a:hover{
    text-decoration: none;
}
#column .article_body ul{
    margin-bottom: 24px;
}
#column .article_body ul li{
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.9;
}
#column .article_body ul li+li{
    margin-top: 10px;
}
#column .article_body ul li:before{
    content: '';
    position: absolute;
    left: 2px;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e95377;
}
#column .article_body ol{
    margin-bottom: 24px;
    counter-reset: num;
}
#column .article_body ol li{
    position: relative;
    padding-left: 34px;
    font-size: 16px;
    line-height: 1.9;
}
#column .article_body ol li+li{
    margin-top: 14px;
}
#column .article_body ol li:before{
    counter-increment: num;
    content: counter(num);
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e95377;
    color: #fff;
    font-family: var(--font-base);
    font-size: 13px;
    line-height: 24px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    #column .article_body{
        margin-top: 30px;
    }
    #column .article_body h2{
        margin: 36px 0 18px;
        padding: 10px 0 10px 14px;
        border-left-width: 4px;
        font-size: 19px;
    }
    #column .article_body h3{
        margin: 26px 0 12px;
        font-size: 16px;
    }
    #column .article_body p{
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.95;
    }
    #column .article_body ul li,
    #column .article_body ol li{
        font-size: 15px;
    }
}

/*------------------ 表 --------------------*/
#column .table_wrap{
    margin-bottom: 28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
#column .article_body table{
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 15px;
}
#column .article_body table th,
#column .article_body table td{
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid #e4e4e4;
    line-height: 1.7;
    text-align: left;
    vertical-align: top;
}
#column .article_body table thead th{
    background: #e95377;
    color: #fff;
    font-weight: 500;
    text-align: center;
}
#column .article_body table tbody th{
    width: 26%;
    background: #fdf0f4;
    font-weight: 500;
}
@media screen and (max-width: 767px) {
    #column .article_body table{
        font-size: 13px;
    }
    #column .article_body table th,
    #column .article_body table td{
        padding: 10px 10px;
    }
    #column .table_scroll_note{
        margin-bottom: 8px;
        color: #6e6e6e;
        font-size: 12px;
    }
}
#column .table_scroll_note{
    display: none;
}
@media screen and (max-width: 767px) {
    #column .table_scroll_note{
        display: block;
    }
}

/*------------------ 補足ボックス --------------------*/
#column .note_box{
    box-sizing: border-box;
    margin: 0 0 28px;
    padding: 24px 28px;
    border-radius: 6px;
    background: #f7f7f5;
}
#column .note_box .note_tit{
    margin-bottom: 10px;
    color: #cc2b5a;
    font-family: var(--font-head);
    font-size: 17px;
}
#column .note_box p:last-child,
#column .note_box ul:last-child{
    margin-bottom: 0;
}
#column .caption{
    margin-top: -14px;
    margin-bottom: 26px;
    color: #6e6e6e;
    font-size: 13px;
    line-height: 1.8;
}
@media screen and (max-width: 767px) {
    #column .note_box{
        padding: 16px 16px;
    }
    #column .note_box .note_tit{
        font-size: 15px;
    }
    #column .caption{
        font-size: 12px;
    }
}

/*------------------ 記事中CTA --------------------*/
#column .inline_cta{
    box-sizing: border-box;
    margin: 50px 0;
    padding: 34px 36px;
    border-radius: 8px;
    background: #fdf0f4;
    text-align: center;
}
#column .inline_cta .tit{
    margin-bottom: 12px;
    font-family: var(--font-head);
    font-size: 21px;
    line-height: 1.5;
}
#column .inline_cta .txt{
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.9;
}
#column .inline_cta .btn a{
    display: inline-block;
    box-sizing: border-box;
    padding: 0 60px 0 40px;
    width: auto;
    min-width: 300px;
    height: 60px;
    border-radius: 30px;
    background: url(../images/common/ico_arrow01.png)no-repeat center right 25px,linear-gradient(to right,#ee8a9d,#e95e7f);
    color: #fff;
    font-size: 18px;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
}
#column .inline_cta .btn a:hover{
    opacity: .8;
}
@media screen and (max-width: 767px) {
    #column .inline_cta{
        margin: 30px 0;
        padding: 22px 16px;
    }
    #column .inline_cta .tit{
        font-size: 17px;
    }
    #column .inline_cta .txt{
        margin-bottom: 16px;
        font-size: 14px;
    }
    #column .inline_cta .btn a{
        padding: 0 40px 0 20px;
        min-width: 0;
        width: 100%;
        height: 52px;
        font-size: 15px;
        line-height: 52px;
        background-position: center right 15px, 0 0;
    }
}

/*------------------ 監修者プロフィール --------------------*/
#column .supervisor{
    box-sizing: border-box;
    margin-top: 60px;
    padding: 30px 34px 26px;
    border: 1px solid #f0d3db;
    border-radius: 6px;
    background: #fdf7f9;
}
#column .supervisor .supervisor_label{
    position: relative;
    margin-bottom: 22px;
    padding-bottom: 12px;
    color: #cc2b5a;
    font-family: var(--font-head);
    font-size: 18px;
    line-height: 1.4;
}
#column .supervisor .supervisor_label:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 2px;
    background: #e95377;
}
#column .supervisor .supervisor_body{
    display: flex;
    align-items: flex-start;
    gap: 26px;
}
#column .supervisor .supervisor_photo{
    flex: none;
    width: 104px;
}
#column .supervisor .supervisor_photo img{
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}
#column .supervisor .supervisor_dec{
    flex: 1 1 auto;
    min-width: 0;
}
#column .supervisor .supervisor_company{
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}
#column .supervisor .supervisor_name{
    margin-top: 4px;
    font-family: var(--font-head);
    font-size: 21px;
    line-height: 1.4;
}
#column .supervisor .supervisor_role{
    margin-top: 6px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}
/* 保有資格。数が変わっても崩れないよう、札を並べる形にしています */
#column .supervisor .supervisor_license{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}
#column .supervisor .supervisor_license li{
    padding: 5px 14px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #f0d3db;
    color: #cc2b5a;
    font-size: 13px;
    line-height: 1.6;
}
#column .supervisor .supervisor_txt{
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.95;
}
#column .supervisor .supervisor_note{
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #e6b7c4;
    color: #666;
    font-size: 12px;
    line-height: 1.8;
}
@media screen and (max-width: 767px) {
    #column .supervisor{
        margin-top: 35px;
        padding: 20px 16px 18px;
    }
    #column .supervisor .supervisor_label{
        margin-bottom: 16px;
        padding-bottom: 10px;
        font-size: 16px;
    }
    #column .supervisor .supervisor_body{
        gap: 16px;
    }
    #column .supervisor .supervisor_company{
        font-size: 13px;
    }
    #column .supervisor .supervisor_name{
        font-size: 18px;
    }
    #column .supervisor .supervisor_role{
        font-size: 13px;
    }
    #column .supervisor .supervisor_license{
        gap: 6px;
        margin-top: 10px;
    }
    #column .supervisor .supervisor_license li{
        padding: 4px 10px;
        font-size: 12px;
    }
    #column .supervisor .supervisor_txt{
        margin-top: 12px;
        font-size: 13px;
    }
    #column .supervisor .supervisor_note{
        margin-top: 16px;
        padding-top: 12px;
        font-size: 12px;   /* 11px → 12px（2026年8月14日）*/
    }
}

/*------------------ 監修・出典 --------------------*/
#column .article_foot{
    margin-top: 55px;
    padding-top: 28px;
    border-top: 1px solid #ebebeb;
}
#column .article_foot .foot_tit{
    margin-bottom: 10px;
    font-family: var(--font-head);
    font-size: 17px;
}
#column .article_foot p,
#column .article_foot li{
    color: #666;
    font-size: 13px;
    line-height: 1.9;
}
#column .article_foot ul li{
    padding-left: 1em;
    text-indent: -1em;
}
#column .article_foot a{
    color: #cc2b5a;
    word-break: break-all;
    overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
    #column .article_foot{
        margin-top: 35px;
        padding-top: 20px;
    }
    #column .article_foot .foot_tit{
        font-size: 15px;
    }
    #column .article_foot p,
    #column .article_foot li{
        font-size: 12px;
    }
}

/*------------------ 関連記事 --------------------*/
#column .related{
    margin-top: 70px;
}
#column .related .related_tit{
    margin-bottom: 26px;
    font-family: var(--font-head);
    font-size: 24px;
    text-align: center;
}
#column .related .related_list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
#column .related .related_list a{
    display: block;
    box-sizing: border-box;
    padding: 20px 22px;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    background: #fff;
    color: #111;
    font-size: 15px;
    line-height: 1.7;
    text-decoration: none;
    transition: .25s;
}
#column .related .related_list a:hover{
    border-color: #f3c4d1;
    color: #cc2b5a;
    box-shadow: 0 6px 18px rgba(233,83,119,.12);
}
#column .related .related_list .cat{
    display: inline-block;
    margin-bottom: 10px;
    padding: 0 12px;
    height: 24px;
    border-radius: 12px;
    background: #cc2b5a;   /* 白文字とのコントラスト（2026年8月14日）*/
    color: #fff;
    font-size: 12px;   /* 11px → 12px（2026年8月14日）*/
    line-height: 24px;
}
#column .related .related_list .cat_cost .cat{ background: #a9600f; }
#column .related .related_list .cat_area .cat{ background: #377569; }
#column .related .related_list .cat_basic .cat{ background: #4d6ea8; }
@media screen and (max-width: 767px) {
    #column .related{
        margin-top: 40px;
    }
    #column .related .related_tit{
        margin-bottom: 16px;
        font-size: 18px;
    }
    #column .related .related_list{
        grid-template-columns: 1fr;
        gap: 12px;
    }
    #column .related .related_list a{
        padding: 14px 16px;
        font-size: 14px;
    }
}

/*------------------ 一覧へ戻る --------------------*/
#column .back_link{
    margin-top: 55px;
    text-align: center;
}
#column .back_link a{
    display: inline-block;
    box-sizing: border-box;
    padding: 0 40px;
    height: 56px;
    border: 1px solid #e95377;
    border-radius: 28px;
    background: #fff;
    color: #cc2b5a;
    font-size: 16px;
    line-height: 54px;
    text-decoration: none;
    transition: .2s;
}
#column .back_link a:hover{
    background: #e95377;
    color: #fff;
}
@media screen and (max-width: 767px) {
    #column .back_link{
        margin-top: 35px;
    }
    #column .back_link a{
        padding: 0 26px;
        height: 48px;
        font-size: 14px;
        line-height: 46px;
    }
}
