@charset "UTF-8";
/* --------------------------------
記事・動画詳細
----------------------------------- */
.detail_Wrap{
    width: 96%;
    max-width: 1150px;
    margin: 0 auto;
    padding-top: 50px;
}
.detail_Wrap .inner{
    flex-wrap: nowrap;
}
#article_Box{
    width: 70%;
    max-width: 800px;
}
#article_Box .article-ttl{
    margin-bottom: 10px;
}
#article_Box .article-ttl .date{
    font-size: var(--f14px);
    color: var(--gray);
}
#article_Box .article-ttl h2{
    margin-top: 10px;
    font-size: var(--f24px);
    line-height: 1.2;
    font-weight: bold;
}
#article_Box .article-ttl h2 span.new-tag{
    display: inline-block;
    background: var(--red);
    margin-right: 5px;
    padding: 4px 6px;
    font-size: var(--f14px);
    vertical-align: top;
    color: #fff;
}
#article_Box .tag_Wrap {
    margin-top: 10px;
    align-items: flex-start;
}
#article_Box .tag_Wrap .category-tag a{
    display: block;
    color: #fff;
    border: var(--blue) 1px solid;
    background: var(--blue);
    padding: 4px 6px;
    font-size: var(--f14px);
    margin-right: 5px;
}
/* 各カテゴリー */
#article_Box .tag_Wrap .category-tag a.jinji{
    background: var(--jinji);
    border-color: var(--jinji);
}
#article_Box .tag_Wrap .category-tag a.soumu{
    background: var(--soumu);
    border-color: var(--soumu);
}
#article_Box .tag_Wrap .category-tag a.houmu{
    background: var(--houmu);
    border-color: var(--houmu);
}
#article_Box .tag_Wrap .category-tag a.kaikei{
    background: #fff;
    border-color: var(--blue);
    color: var(--blue);
}
#article_Box .tag_Wrap .category-tag a.law{
    background: #fff;
    border-color: var(--houmu);
    color: var(--houmu);
}
#article_Box .tag_Wrap .category-tag a:hover{
    opacity: 0.7;
}
#article_Box .tag_Wrap .category-tag a.sub{
    color: var(--blue);
    border: var(--blue) 1px solid;
    background: #fff;
    cursor: unset;
}
#article_Box .tag_Wrap .category-tag a.main:hover{
    background: #fff;
    color: var(--blue);
}
#article_Box .tag_Wrap .sns_Wrap{
    justify-content: flex-end;
    align-items: center;
}
#article_Box .tag_Wrap .sns_Wrap li {
    padding: 0 4px;
}
#article_Box .tag_Wrap .sns_Wrap li a {
    display: block;
    width: 30px;
}
#article_Box .tag_Wrap .sns_Wrap li a img {
    display: block;
    width: 30px;
    height: auto;
}
#article_Box .tag_Wrap .sns_Wrap li a:hover{
    opacity: 0.7;
}
#article_Box .tag_Wrap .sns_Wrap li.linkcopy a{
    width: 30px;
    height: 30px;
    background: #f9f9f9;
    border: var(--gray3) 1px solid;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#article_Box .tag_Wrap .sns_Wrap li.linkcopy a img{
    width: 13px;
}

/* .article-main > *{
    margin-bottom: 30px;
} */
/* サムネイル */
#article_Box .thumbnail{
    width: 100%;
    margin-bottom: 10px;
}
/* 記事内画像 */
#article_Box .outline p img {
    max-width: 100%;
}
/* 動画 */
#article_Box .movie_Box{
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
#article_Box .movie_Box .movie{
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9 ;
    top: 0;
    left: 0;
    cursor: pointer;
}
#article_Box .movie_Box span.play_btn{
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
}
/* 目次 */
#article_Box .article-menu{
    padding: 25px;
    background: var(--lightblue2);
    margin-bottom: 30px;
}
#article_Box .article-menu .ttl{
    position: relative;
    font-size: var(--f18px);
    font-weight: bold;
    color: var(--blue);
    cursor: pointer;
}
#article_Box .article-menu .ttl::before,
#article_Box .article-menu .ttl::after{
    position: absolute;
    content: "";
    width: 14px;
    height: 2px;
    background: var(--blue);
    top: 35%;
    right: 0%;
    transition: 0.3s;
}
#article_Box .article-menu .ttl::before{
    transform: rotate(0);
}
#article_Box .article-menu .ttl.close::before{
    transform: rotate(90deg);
}
#article_Box .article-menu .ttl .list-icon{
    display: inline-block;
    width: 15px;
    height: auto;
    margin-right: 5px;
}
#article_Box .article-menu .menu_Box{
    margin-top: 20px;
}
#article_Box .article-menu .menu_Box.close{
    display: none;
}
#article_Box .article-menu .menu_Box a.anchr-link{
    display: block;
    width: 100%;
    font-size: var(--f16px);
    line-height: 1.2;
    padding: 0 5px 10px;
    border-bottom: var(--gray3) 1px solid;
    margin-bottom: 10px;
}
#article_Box .article-menu .menu_Box a.anchr-link:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
#article_Box .article-menu .menu_Box a.anchr-link:hover{
    opacity: 0.7;
}
/* 本文 */
#article_Box .article-main p{
    font-size: var(--f16px);
    line-height: 1.6;
    margin-bottom: 15px;
}
#article_Box .article-main .outline p{
    font-size: var(--f16px);
    line-height: 1.4;
}
/* 注釈 */
#article_Box .article-main p.notes{
    position: relative;
    font-size: var(--f12px);
    color: gray;
    padding-left: 1em;
}
#article_Box .article-main p.notes::before{
    position: absolute;
    content: "※";
    font-size: var(--f12px);
    color: gray;
    top: 0;
    left: 0;
}
/* テキストリンク */
#article_Box .article-main p a{
    color: var(--blue);
    text-decoration: underline;
}
#article_Box .article-main p a:hover{
    text-decoration: none;
    opacity: 0.7;
}
/* 強調 */
#article_Box .article-main strong{
    font-weight: bold;
}
/* 見出し（h2） */
#article_Box .article-main h2[id]{
    margin-top: -50px;
    padding-top: 80px;
    margin-bottom: 25px;
}
#article_Box .article-main h2 span{
    display: block;
    font-size: var(--f20px);
    font-weight: bold;
    padding: 8px 0 8px 0.5em;
    border-left: var(--blue) 10px solid;
}
/* 見出し（h3） */
#article_Box .article-main h3{
    font-size: var(--f18px);
    font-weight: bold;
    margin-bottom: 15px;
}
/* 見出し（h4） */
#article_Box .article-main h4{
    position: relative;
    font-size: var(--f16px);
    font-weight: bold;
    margin-bottom: 12px;
    padding-left: 1.2em;
    color: var(--blue);
}
#article_Box .article-main h4::before{
    position: absolute;
    content: "◯";
    color: var(--blue);
    font-size: var(--f16px);
    top: 0;
    left: 0;
}
/* 見出し番号 */
#article_Box .article-main .head-number{
    display: inline-block;
    background: var(--blue);
    font-size: 100%;
    line-height: 1;
    color: #fff;
    text-align: center;
    width: 20px;
    height: 20px;
    padding: 3px;
    margin-right: 3px;
}
/* 箇条書きリスト、番号リスト */
#article_Box .article-main .point-List,
#article_Box .article-main .number-List{
    margin-bottom: 30px;
}
#article_Box .article-main .point-List li,
#article_Box .article-main .number-List li{
    position: relative;
    font-size: var(--f16px);
    line-height: 1.2;
    padding-left: 1em;
    margin-bottom: 8px;
}
#article_Box .article-main .point-List li::before{
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: var(--blue);
    border-radius: 50%;
    top: 0.3em;
    left: 0;
}
#article_Box .article-main .number-List li{
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 10px;
}
#article_Box .article-main .number-List li::before{
    position: absolute;
    display: inline-block;
    background: var(--blue);
    font-size: var(--f16px);
    line-height: 1.1;
    color: #fff;
    text-align: center;
    width: 15px;
    height: 15px;
    padding: 3px;
    margin-right: 5px;
    vertical-align: middle;
    top: 0;
    left: 0;
}
#article_Box .article-main .number-List li:nth-child(1)::before{ content: "1";}
#article_Box .article-main .number-List li:nth-child(2)::before{ content: "2";}
#article_Box .article-main .number-List li:nth-child(3)::before{ content: "3";}
#article_Box .article-main .number-List li:nth-child(4)::before{ content: "4";}
#article_Box .article-main .number-List li:nth-child(5)::before{ content: "5";}
#article_Box .article-main .number-List li:nth-child(6)::before{ content: "6";}
#article_Box .article-main .number-List li:nth-child(7)::before{ content: "7";}
#article_Box .article-main .number-List li:nth-child(8)::before{ content: "8";}
#article_Box .article-main .number-List li:nth-child(9)::before{ content: "9";}
#article_Box .article-main .number-List li:nth-child(10)::before{ content: "10";}

/* 枠囲み */
.waku_Box{
    border: var(--blue) 2px solid;
    padding: 20px;
    margin-bottom: 30px;
}

/* ボタンリンク */
#article_Box .article-main .Btn-link{
    display: block;
    width: 90%;
    max-width: 400px;
    border: var(--blue) 2px solid;
    background: #fff;
    color: var(--blue);
    text-align: center;
    font-size: var(--f16px);
    padding: 18px 0;
    border-radius: 30px;
    margin-bottom: 30px;
}
#article_Box .article-main .Btn-link:hover{
    background: var(--blue);
    color: #fff;
}
/* 挿入画像 */
#article_Box .article-main .article-img{
    width: 100%;
    margin: 0 auto 30px;
}
#article_Box .article-main .article-img img{
    border: 1px solid #eee;
}
#article_Box .article-main .article-img figcaption{
    padding-top: 10px;
    text-align: center;
    font-size: var(--f14px);
    line-height: 1.2;
    color: #555;
}
/* 区切り線 */
div.hr-line{
    width: 100%;
    height: 1px;
    background: var(--gray3);
    margin-bottom: 30px;
}
/* 引用 */
#article_Box .article-main .quote{
    padding: 25px;
    background: var(--gray2);
    border: var(--gray3) 1px solid;
    border-radius: 3px;
    color: #555;
    font-size: var(--f16px);
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 30px;
}
/* ブログカード */
.blogcard{
    background: var(--lightblue2);
    border: var(--bluegray) 1px solid;
    border-radius: 3px;
    padding: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}
.blogcard:hover{
    opacity: 0.7;
}
.blogcard figure{
    width: 30%;
}
.blogcard .txt_Box{
    width: 68%;
}
.blogcard .txt_Box .ttl{
    font-size: var(--f18px);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
}
.blogcard .txt_Box .date{
    position: relative;
    font-size: var(--f14px);
    color: #888;
    padding-left: 1.4em;
}
.blogcard .txt_Box .date::before{
    position: absolute;
    content: "";
    background: url(../img/time-icon.svg) center center no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    top: 0.2em;
    left: 0;
}
/* 講師プロフィール */
#article_Box .profile{
    background: var(--lightblue2);
    padding: 25px;
    align-items: center;
}
#article_Box .profile .profile-img{
    width: 20%;
}
#article_Box .profile .profile-img img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
#article_Box .profile .txt_Box{
    width: 78%;
}
#article_Box .profile .txt_Box .teacher{
    font-size: var(--f18px);
    margin-bottom: 10px;
    font-weight: 600;
}
#article_Box .profile .txt_Box a{
    color: var(--blue);
    text-decoration: underline;
}
#article_Box .profile .txt_Box a:hover{
    opacity: 0.7;
}
#article_Box .profile .txt_Box .txt{
    font-size: var(--f16px);
    line-height: 1.4;
    color: #555;
    margin-bottom: 10px;
}
#article_Box .profile .txt_Box .sns-List{
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}
#article_Box .profile .txt_Box .sns-List li{
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}
#article_Box .profile .txt_Box .sns-List li a{
    display: block;
    width: 100%;
}
#article_Box .profile .txt_Box .sns-List li a:hover{
    opacity: 0.7;
}

/* テーブル */
#article_Box .article-main table{
    margin-bottom: 30px;
}
#article_Box .article-main table,
#article_Box .article-main td,
#article_Box .article-main th {
    border: 1px solid #ccc;
    border-collapse: collapse;
    padding: 7px 12px;
    font-size: var(--f16px);
    line-height: 1.4;
    vertical-align: middle;
}
#article_Box .article-main th{
    background: var(--lightblue2);
    font-weight: 600;
}

/* 強調CTA */
.attention_cta .attention{
    text-align: center;
}
.attention_cta .attention span{
    position: relative;
    font-weight: bold;
    color: var(--blue);
}
.attention_cta .attention span::before,
.attention_cta .attention span::after{
    display: inline-block;
    position: absolute;
    content: "";
    width: 3px;
    height: 20px;
    top: 50%;
    background: var(--blue);
}
.attention_cta .attention span::before{
    left: -25px;
    transform: translateY(-50%) rotate(-30deg);
}
.attention_cta .attention span::after{
    right: -25px;
    transform: translateY(-50%) rotate(30deg);
}
.attention_cta{
    margin-bottom: 30px;
}
.attention_cta a{
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 10px auto;
    border: #fff 2px solid;
    background: var(--blue);
    color: #fff;
    text-align: center;
    font-size: var(--f16px);
    padding: 18px 0;
    border-radius: 30px;
    transition: 0.3s;
}
.attention_cta a:hover{
    border-color: var(--blue);
    color: var(--blue);
    background: #fff;
}

/* この記事を書いた人 */
.author_Box{
    border: 10px solid var(--lightblue);
    padding: 20px 15px;
    margin-bottom: 30px;
}
.author_Box figure{
    width: 20%;
}
.author_Box figure img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    /* object-position: center -8px; */
}
.author_Box .txt_Box{
    width: 78%;
}
.author_Box .author_detail{
    margin-bottom: 10px;
}
#article_Box .article-main .author_Box .author_detail p.author_ttl{
    font-size: var(--f14px);
    color: var(--gray);
    margin-bottom: 0;
}
#article_Box .article-main .author_Box .author_detail p.author_name{
    font-size: var(--f20px);
    font-weight: 600;
    margin-bottom: 0;
}
.author_Box .author_detail .author_link{
    display: block;
    margin-bottom: 8px;
}
.author_Box .author_detail .author_link a{
    color: var(--blue);
    text-decoration: underline;
    transition: .3s;
}
.author_Box .author_detail .author_link a:hover{
    text-decoration: none;
    opacity: 0.7;
}
.author_Box .author_detail .author_sub{
    font-size: var(--f14px);
}

/* 求人例 */
#article_Box .article-main .job_Box{
    border: 3px solid var(--lightblue);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px;
}
#article_Box .article-main .job_Box .job_ttl{
    position: relative;
    font-size: var(--f20px);
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 1.3em;
}
#article_Box .article-main .job_Box .job_ttl::before{
    position: absolute;
    content: "■";
    color: var(--blue);
    font-size: var(--f20px);
    top: 0;
    left: 0;
}
#article_Box .article-main .job_Box dl.job_Box_item{
    margin-bottom: 20px;
}
#article_Box .article-main .job_Box dl.job_Box_item:last-child{
    margin-bottom: 0;
}
#article_Box .article-main .job_Box dl.job_Box_item dt{
    font-size: var(--f16px);
    font-weight: 600;
    padding: 5px 0 5px 10px;
    border-left: 10px solid var(--lightblue);
    margin-bottom: 5px;
}
#article_Box .article-main .job_Box dl.job_Box_item dd{
    font-size: var(--f16px);
    line-height: 1.5;
    padding-left: 3px;
}

.ad_Area{
    width: 300px;
}

.recommend_Wrap{
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0 0;
}
.recommend_Wrap .category-contents{
    margin-bottom: 80px;
}
.recommend_Wrap .category-contents .ttl_Box .ttl h4{
    margin-left: 0;
    padding: 0 5px 7px;
}
.recommend_Wrap .category-contents .ttl_Box .ttl h4::before{
    content: none;
}
.recommend_Wrap .category-contents .content_Box > [class*=slider_] .slick-track {
    left: 25px;
    margin-right: auto;
    margin-left: 0;
}

/* この記事を読んだ方にオススメ！ */
.recommend.article {
    margin-block: 1.6rem;
}
.recommend.article p {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    background-color: var(--blue);
    color: #fff;
    display: inline;
    padding: 4px 10px 4px 35px;
    line-height: 0;
    border-radius: 3px 3px 0 0;
    position: relative;
}
.recommend.article p:before {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    background: url(/img/common/news_ic01.svg) no-repeat center center / contain;
    content: "";
    top: 0.35em;
    left: 12px;
}
.recommend.article ul {
    padding: 1.2rem 25px 1.5rem;
    border: solid 1px #ddd;
    border-radius: 0 3px 3px 3px;
    margin-top: 3px;
}
.recommend.article ul li {
    padding: 0 0 0 17px;
    position: relative;
    list-style: none;
    line-height: 1.5rem;
}
.recommend.article ul li:nth-of-type(n+2) {
    margin: 1rem 0 0;
}
.recommend.article ul li:after {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 100vw;
    position: absolute;
    top: 0.5em;
    left: 3px;
    background: var(--blue);
    content: "";
}
.recommend.article ul li a {
    border: none;
    text-decoration: underline;
    font-size: 15px;
    color: #333;
}
@media screen and (max-width: 480px) {
    .recommend.article ul {
        padding: 1rem 1rem 1.2rem;
    }
    .recommend.article ul li {
        padding: 0 0 0 12px;
    }
    .recommend.article ul li a {
        font-size: 0.9rem;
    }
}

/* ==============================================================
PC(1600px~)
============================================================== */
@media screen and (min-width: 1600px) {

}

/* ==============================================================
PC(~1050px)
============================================================== */
@media screen and (max-width:1100px) {

    /* 広告箇所 */
    #article aside.ad_Area{
        margin-top: 50px;
    }

}

/* ==============================================================
TAB(769px~1100px)
============================================================== */
@media screen and (min-width:769px) and (max-width:1100px) {

    .detail_Wrap .inner{
        flex-wrap: wrap;
    }
    #article_Box {
        width: 100%;
        max-width: none;
        padding-right: 0;
    }

    /* この記事を書いた人 */
    .author_Box figure {
        width: 16%;
    }
    .author_Box .txt_Box {
        width: 83%;
    }
    .author_Box figure img {
        width: 120px;
        height: 120px;
    }

    aside.ad_Area{
        width: 100%;
        display: flex;
    }
	aside.ad_Area div.ad{
        margin-bottom: 0;
    }
	aside.ad_Area div.ad:not(:last-child){
		margin-right: 2%;
	}
    .recommend_Wrap .category-contents .content_Box > [class*=slider_] .slick-track{
        left: 0;
    }
    .movie_Box .slider-item{
        margin: 0 10px 0 0;
    }
}

/* ==============================================================
SP(~768px)
============================================================== */
@media screen and (max-width:768px) {

    .detail_Wrap{
        width: 90%;
        padding-top: 20px;
    }
    .detail_Wrap .inner{
        flex-wrap: wrap;
        justify-content: center;
    }
    #article_Box {
        width: 100%;
        padding-right: 0;
    }
    #article_Box .article-ttl h2{
        font-size: var(--f20px);
    }
    #article_Box .article-ttl h2 span.new-tag{
        padding: 3px 5px;
    }
    #article_Box .tag_Wrap{
        align-items: center;
    }
    #article_Box .tag_Wrap .category-tag{
        justify-content: flex-start;
    }
    #article_Box .tag_Wrap .category-tag a{
        margin-bottom: 5px;
    }
    #article_Box .article-menu {
        padding: 15px;
    }
    #article_Box .tag_Wrap .sns_Wrap{
        margin-top: 5px;
    }
    #article_Box .tag_Wrap .sns_Wrap li {
        padding: 0 7px 0 0;
    }
    #article_Box .article-menu .menu_Box {
        margin-top: 15px;
    }
    #article_Box .article-main .outline p {
        font-size: var(--f14px);
        line-height: 1.2;
    }
    /* 見出し（h2） */
    #article_Box .article-main h2[id] {
        margin-top: -80px;
        margin-bottom: 20px;
    }
    #article_Box .article-main h2 span{
        line-height: 1.2;
    }
    /* #article_Box .article-menu .menu_Box a.anchr-link{
        font-size: var(--f14px);
    }
    #article_Box .article-main p{
        font-size: var(--f14px);
    } */
    /* ブログカード */
    .blogcard{
        padding: 10px;
    }
    .blogcard figure {
        width: 100%;
        margin-bottom: 10px;
    }
    .blogcard .txt_Box {
        width: 100%;
    }
    /* 講師プロフィール */
    #article_Box .profile {
        padding: 15px;
        flex-direction: column;
    }
    #article_Box .profile .profile-img {
        width: 150px;
    }
    #article_Box .profile .txt_Box {
        width: 100%;
        margin-top: 10px;
    }
    #article_Box .profile .txt_Box .teacher {
        font-size: var(--f16px);
        text-align: center;
    }
    #article_Box .profile .txt_Box .txt,
    #article_Box .profile .txt_Box a{
        font-size: var(--f14px);
    }
    /* 強調CTA */
    .attention_cta a{
        font-size: var(--f14px);
        padding: 15px 5px;
    }
    /* この記事を書いた人 */
    .author_Box{
        flex-direction: column;
        align-items: center;
        padding: 10px 15px;
        border-width: 5px;
    }
    .author_Box figure {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .author_Box .txt_Box {
        width: 100%;
    }
    .author_Box .author_detail{
        text-align: center;
        margin-bottom: 15px;
    }

    #article_Box .article-main .author_Box .author_detail p.author_ttl {
        font-size: var(--f12px);
        margin-bottom: 5px;
    }
    #article_Box .article-main .author_Box .author_detail .author_name {
        font-size: var(--f18px);
    }
    .author_Box .author_detail .author_link {
        font-size: var(--f14px);
    }
    #article_Box .article-main .author_Box .txt{
        font-size: var(--f14px);
    }

    .recommend_Wrap {
        padding: 50px 0 0;
    }
    .recommend_Wrap .category-contents {
        margin-bottom: 50px;
    }
    .recommend_Wrap .category-contents .content_Box > [class*=slider_] .slick-track{
        left: 0;
    }

    #article_Box .article-main .job_Box{
        padding: 20px;
    }
    #article_Box .article-main .job_Box .job_ttl {
        font-size: var(--f18px);
        margin-bottom: 15px;
    }
    #article_Box .article-main .job_Box .job_ttl::before {
        font-size: var(--f18px);
    }
    #article_Box .article-main .job_Box dl.job_Box_item {
        margin-bottom: 10px;
    }
    #article_Box .article-main .job_Box dl.job_Box_item dt {
        font-size: var(--f14px);
        padding: 3px 0 3px 7px;
        border-left-width: 7px;
        margin-bottom: 5px;
    }
    #article_Box .article-main .job_Box dl.job_Box_item dd {
        font-size: var(--f14px);
        padding-left: 1em;
    }
    /* テーブル */
    #article_Box .article-main table,
    #article_Box .article-main td,
    #article_Box .article-main th{
        font-size: var(--f13px);
    }
    #article_Box .table-wrap {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 30px;
    }
    #article_Box .table-wrap table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 10px;
    }
    #article_Box .table-wrap th,
    #article_Box .table-wrap td {
        white-space: nowrap;    /* 折り返しせず横に並べる */
    }

}

/* ==============================================================
SP(~430px)
============================================================== */
@media screen and (max-width:430px) {

    #article_Box .article-main .Btn-link{
        margin: 0 auto 30px;
        max-width: none;
    }
    #article_Box .article-main .article-img{
        width: 100%;
    }
}

/* =========
Bdash Banner
==========*/
#learning_article_banner1_box {
    text-align: center;
}