@charset "UTF-8";

/*---------------------------
  1.コンテンツ
    1.1 ly_content（mainのレイアウト）
    1.2 背景

  2.トップページ
    2.1 TOP：MV
    2.2 TOP：よくある悩み_Problem
    2.3 TOP：SERVICE
    2.4 TOP：COLUMN
 

  3.サブページ
    3.1　SUB：サブ全般
    3.2  SUB：脱炭素経営スタートサービス
    3.3  SUB：お問い合わせ
    3.4  SUB：コラム：記事一覧（アーカイブ）
    3.5  SUB：コラム：記事詳細（投稿記事）
    3.6  SUB：お役立ち資料：記事一覧（アーカイブ）
    3.7  SUB：お役立ち資料：ダウンロードページ（投稿記事）
    3.8  SUB：お役立ち資料：thanksページ（固定ページ）
    3.9  SUB：お知らせ：記事一覧（アーカイブ、コラムベース）
    3.10：　SUB:会社紹介

　4.記事（一部記事と同体裁のサブページ）
    4.1　見出し
    4.2　表
    4.3　リンクカード
    4.4 目次
    4.5 要約
    4.6 リード文
    4.7 CTA
---------------------------*/
/*=======================================================

  1.コンテンツ

=======================================================*/
/* --------------------------------------------- 
    1.1 ly_content（mainのレイアウト）
 --------------------------------------------- */
.ly_content {
    width: 100%;
}

.bl_content_inner {
    height: auto;
    margin: 0 auto;
    width: 90%;
}

.bl_content_inner.bl_content_inner__1000 {
    width: 90%;
    max-width: 1000px;
    text-align: center;
}

.bl_content_inner.bl_content_inner__1220 {
    width: 90%;
    max-width: 1220px;
}

.bl_content_inner.bl_content_inner__full {
    max-width: 100%;
}

/* 2カラム（記事詳細） */
.ly_content.ly_content__col>.bl_content_inner {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.ly_content_main {
    margin-right: 0;
    margin-bottom: 60px;
}

/* 2カラム（記事詳細） */
.ly_content.ly_content__col>.bl_content_inner {
    margin-top: 8%;
}

.ly_content_side {
    display: none;
}

/* 1カラム記事（記事詳細）ニュースはじめ、サイドなしの1カラム記事はこちら */
.bl_content_inner.bl_content_inner__article {
    margin-top: 90px;
    margin-bottom: 90px;
}



/* ——————————————————600px以上に適用—————————————————— */
@media screen and (min-width: 600px) {
    .bl_column .bl_content_inner.bl_content_inner__full {
        width: 100%;
    }
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .bl_content_inner {
        max-width: 1100px;
        height: auto;
        margin: 0 auto;
    }

    .bl_content_inner.bl_content_inner__full {
        width: 100%;
    }
}

/* ——————————————————1025px以上に適用—————————————————— */
@media screen and (min-width: 1025px) {

    /* 2カラム（記事詳細） */
    .ly_content.ly_content__col>.bl_content_inner {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        margin-top: 90px;
        flex-wrap: wrap;
    }

    .ly_content_main {
        flex: 1;
        margin-right: 54px;
    }

    .ly_content_side {
        display: block;
        flex: 0 0 286px;
    }
}

/* ——————————————————1200px以上に適用—————————————————— */
@media screen and (min-width: 1200px) {

    /* PC用レイアウト 1200px以上の範囲に収めるデザインはこの中に記述 */
    .bl_content_inner {
        width: 100%;
    }
}

/* --------------------------------------------- 
    1.2 背景
 --------------------------------------------- */
.bl_content_background__green {
    background-color: #189F61;
}

.bl_content_background__white {
    background-color: #FFF;
}

.bl_content_background__gray {
    background-color: #F0F0F0;
}

/* サブページ背景下部の三角 */
.el_triangle {
    width: 100%;
    position: relative;
    padding: 45px 0 45px;
}

.el_triangle::after {
    width: 0;
    height: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    margin: 0 0 0 -36px;
    border: 36px solid transparent;
    content: '';
    z-index: 99;
}

.bl_content_background__green.el_triangle::after {
    border-top-color: #189F61;
}

.bl_content_background__white.el_triangle::after {
    border-top-color: #FFF;
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .el_triangle {
        padding: 66px 0 76px;
    }

    .bl_service_about .el_triangle {
        padding: 66px 0 56px;
    }
}

/*=======================================================

  2.トップページ

=======================================================*/
/* --------------------------------------------- 
　2.1 TOP：MV
 --------------------------------------------- */
.un_mainVisual {
    background: url(../img/mv_bg_sp.jpg) no-repeat center top;
    background-size: 100%;
    width: 100%;
    padding-top: 104.42%;
    /* 画像の高さ分の余白%; */
    /* z-index: 99; */
    position: relative;
}

.un_mainVisual_copyWrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    top: -26px;
    flex-direction: column;
    padding: 0 15%;
    justify-content: center;
}

.un_mainVisual_img {
    margin-bottom: 9%;
    width: 80%;
    max-width: 72.39%;
    position: relative;
}

.un_mainVisual_copyWrapper div {
    text-align: center;
    width: 100%;
}

.un_mainVisual_text {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.un_mainVisual_text span {
    margin-bottom: 30px;
    display: inline-block;
    font-size: 2.6rem;
    letter-spacing: 4px;
    line-height: 1.4;
}

/* ——————————————————480px以上に適用—————————————————— */
@media screen and (min-width: 480px) {
    .un_mainVisual_text br.sm_only {
        display: none;
    }

    .un_mainVisual {
        background: url(../img/mv_bg_sp.jpg) no-repeat center bottom;
        padding-top: 90%;
        background-size: 100%;
    }
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .un_mainVisual {
        background: url(../img/mv_bg.jpg) no-repeat center top;
        background-size: 100%;
        padding-top: 39%;
        /* 画像の高さ分の余白%; */
    }

    .un_mainVisual_copyWrapper {
        padding: 0;
        top: -1%;
    }

    .un_mainVisual_img {
        margin-bottom: 9%;
        width: 72%;
        max-width: 71.076%;
    }

    .un_mainVisual_copyWrapper div {
        padding: 0 30%;
    }

    .un_mainVisual_text {
        font-size: 1.6rem;
    }

    .un_mainVisual_text span {
        margin-bottom: 10px;
        font-size: 3rem;
        letter-spacing: 10px;
        line-height: 1.6;
    }
}

/* ——————————————————1025px以上に適用—————————————————— */
@media screen and (min-width: 1025px) {

    /* PC用レイアウト 1025px以上の範囲に収めるデザインはこの中に記述 */
    .un_mainVisual_copyWrapper {
        top: -2%;
    }

    .un_mainVisual_text {
        font-size: 1.429vw;
    }

    .un_mainVisual_text span {
        font-size: 2.857vw;
    }
}

/* --------------------------------------------- 
 2.2 TOP：よくある悩み_Problem
 --------------------------------------------- */
.bl_cardUnit.bl_cardUnit__col3.bl_cardUnit__Problem {
    padding-bottom: 36px;
}

.bl_cardUnit__col3.bl_cardUnit__Problem>.bl_card {
    margin-bottom: 26px;
    background-color: #FFF;
    padding-bottom: 10px;
}

.bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_body {
    display: flex;
    align-items: center;
}

.bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_imgWrapper {
    padding: 7px 0px 0 13px;
    width: 36%;
}

.bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_ttl {
    margin: 0;
    padding: 18px 16px 0px 7px;
    line-height: 1.5;
    text-align: left;
    font-size: 1.6rem;
    width: 64%;
    letter-spacing: 0px;
}

/* お悩みカードのボタン */
.bl_card_btn {
    background: url(../img/bl_card_btn_bg_sp.png) no-repeat center 100%;
    height: 124px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.bl_card_btn p {
    letter-spacing: 0;
    line-height: 1.2;
    padding-left: 105px;
    font-size: 23px;
    color: #189F61;
    font-weight: 700;
    text-align: left;
    padding: 0px 16px 0px 44%;
    line-height: 1.1;
}

.bl_card_btn a {
    color: #189F61;
}

.bl_card_btn .bl_card_btn__long {
    padding-left: 43%;
}

.bl_card_btn span {
    font-size: 44px;
    letter-spacing: -1px;
}

.bl_card_btn:hover {
    background: url(../img/bl_card_btn_bg_sp__hover.png) no-repeat center 100%;
    transition: 0.5s;
}

/* ——————————————————480px以上に適用—————————————————— */
@media screen and (min-width: 480px) {
    .bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_imgWrapper {
        padding: 7px 0px 0 13px;
        width: 28%;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_ttl {
        margin: 0;
        padding: 0 10px 0px 10px;
        line-height: 1.5;
        text-align: left;
        font-size: 1.6rem;
        width: 64%;
        letter-spacing: 0px;
    }
}

@media screen and (min-width: 600px) {

    /* タブレット用レイアウト 600px以上の範囲に収めるデザインはこの中に記述 */
    /* --- 3カラム --- */
    .bl_cardUnit__col3.bl_cardUnit__Problem>.bl_card {
        width: 32%;
        margin-right: 1%;
        margin-bottom: 30px;
        background-color: #FFF;
        display: flex;
        padding-bottom: 0;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem>.bl_card:nth-child(3n) {
        margin-right: 0;
    }

    .bl_cardUnit.bl_cardUnit__col3.bl_cardUnit__Problem {
        padding-bottom: 10px;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem>.bl_card {
        margin-bottom: 30px;
        background-color: #FFF;
        /* padding: 23px 23px 23px; */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_imgWrapper {
        padding: 10px 10px 0;
        width: 100%;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_img {
        width: 78%;
        margin: 0 auto;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_body {
        display: block;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_ttl {
        font-size: 1.4rem;
        margin: 10px 0 0px;
        width: 100%;
    }

    /* お悩みカードのボタン */
    .bl_card_btn {
        background: url(../img/bl_card_btn_bg.png) no-repeat 100% center;
        height: 110px;
        margin: 0 3px 3px 0px;
        background-size: 96%;
    }

    .bl_card_btn p {
        font-size: 16px;
        padding: 0 0 0 40%;
        line-height: 1.2;
    }

    .bl_card_btn .bl_card_btn__long {
        padding-left: 40%;
    }

    .bl_card_btn span {
        font-size: 28px;
        letter-spacing: -2px;
    }

    .bl_card_btn:hover {
        background: url(../img/bl_card_btn_bg__hover.png) no-repeat 100% center;
        background-size: 96%;
    }
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .bl_cardUnit.bl_cardUnit__col3.bl_cardUnit__Problem {
        padding-bottom: 56px;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem>.bl_card {
        flex-direction: column;
        justify-content: space-between;
        width: 30%;
        margin-right: 3%;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_imgWrapper {
        padding: 24px 24px 0;
        width: 100%;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_img {
        width: unset;
        margin: 0 auto;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_body {
        display: block;
    }

    .bl_cardUnit__col3.bl_cardUnit__Problem .bl_card_ttl {
        font-size: 1.8rem;
        margin: 10px 0 0px;
        padding: 4px 20px 0px 30px;
        line-height: 1.5;
        text-align: left;
        width: 100%;
        letter-spacing: 0;
    }

    /* お悩みカードの影 */
    .el_card_shadow {
        position: relative;
    }

    .el_card_shadow:before,
    .el_card_shadow:after {
        content: "";
        position: absolute;
    }

    .el_card_shadow:after {
        width: 100%;
        height: 86px;
        top: 100%;
        left: 0;
        background: rgba(0, 0, 0, .2);
        transform: skew(292deg, 0);
        transform-origin: 0 0 0;
    }

    /* お悩みカードのボタン */
    .bl_card_btn {
        background: url(../img/bl_card_btn_bg.png) no-repeat 100% center;
        background-size: contain;
        height: 149px;
        padding: 0 0 0 8px;
        margin: 0 2px 0 6px;
    }

    .bl_card_btn .bl_card_btn__long {
        padding-left: 36%;
    }

    .bl_card_btn span {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .bl_card_btn:hover {
        background: url(../img/bl_card_btn_bg__hover.png) no-repeat 100% center;
    }
}

/* ——————————————————1025px以上に適用—————————————————— */
@media screen and (min-width: 1025px) {

    /* PC用レイアウト 1025px以上の範囲に収めるデザインはこの中に記述 */
    /* お悩みカードのボタン */
    .bl_card_btn {
        background: url(../img/bl_card_btn_bg.png) no-repeat 100% center;
        padding: 0 0 0 30px;
        margin: 0 auto 18px;
        width: 280px;
    }

    .bl_card_btn p {
        letter-spacing: 0;
        line-height: 1.2;
        font-size: 23px;
        color: #189F61;
        font-weight: 700;
        text-align: left;
        padding: 0 0 0 36%;
    }

    .bl_card_btn .bl_card_btn__long {
        padding-left: 32%;
    }

    .bl_card_btn span {
        font-size: 44px;
        letter-spacing: -1px;
    }

    .bl_card_btn:hover {
        background: url(../img/bl_card_btn_bg__hover.png) no-repeat 100% center;
    }
}

/* --------------------------------------------- 
 2.3 TOP：SERVICE
 --------------------------------------------- */
.bl_service {
    padding: 36px 0 60px;
}

.bl_service_body_title span {
    background-color: #189F61;
    border-radius: 50px;
    display: inline-block;
    color: #FFF;
    height: 40px;
    padding: 7px 0;
    font-size: 1.6rem;
    margin-bottom: 17px;
    font-weight: 700;
    width: 98%;
    text-align: center;
    letter-spacing: 0;
}

.bl_service_body_title span:last-child {
    margin-right: 0px;
}

.bl_service_body_title {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.bl_service_box {
    display: flex;
}

.bl_service_imageWrapper img {
    width: 127px;
}

.bl_service_bodyWrapper {
    width: 62%;
    height: 100%;
}

.bl_service_bodyWrapper.sm_only {
    width: 100%;
}

.bl_service_body_text {
    font-size: 1.6rem;
    margin-bottom: 23px;
    letter-spacing: 0;
    line-height: 2;
    margin-top: 30px;
    margin-top: 25px;
    font-weight: 700;
}

/* ——————————————————480px以上に適用—————————————————— */
@media screen and (min-width: 480px) {
    .bl_service_box {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bl_service_body_title span {
        width: 80%;
    }

    .bl_service_body_title span:last-child {
        margin-bottom: 0;
    }

    .bl_service_imageWrapper {
        width: 40%;
        text-align: center;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .bl_service_bodyWrapper {
        width: 60%;
    }

    .bl_service_imageWrapper img {
        width: 160px;
    }

    .bl_service_body_title {
        align-items: center;
    }
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .bl_service {
        padding: 70px 0 90px;
    }

    .bl_service_body_title span {
        min-height: 55px;
        height: auto;
        margin-right: 1%;
        margin-bottom: 20px;
        width: auto;
        letter-spacing: 1px;
        line-height: 1.4;
        font-size: clamp(15px, 1.6vw, 1.8rem);
        padding: 16px 5% 12px;
    }

    .bl_service_body_title span:last-child {
        margin-right: 0px;
        margin-bottom: auto;
    }

    .bl_service_body_title {
        display: block;
        margin-top: 5px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .bl_service_box {
        position: relative;
        margin-top: 4%;
    }

    .bl_service_imageWrapper {
        width: 30%;
        margin-right: 40px;
        top: 0;
        height: 100%;
        flex-direction: column;
        align-items: center;
    }

    .bl_service_imageWrapper img {
        position: absolute;
        margin-left: -20%;
        width: auto;
        max-width: 48%;
    }

    .bl_service_bodyWrapper {
        width: 70%;
        height: 100%;
    }

    .bl_service_body_text {
        font-size: 1.6rem;
        margin-bottom: 10px;
        margin-top: 0;
        letter-spacing: 0.2px;
        line-height: 2;
        font-weight: 700;
    }
}

/* ——————————————————1025px以上に適用—————————————————— */
@media screen and (min-width: 1025px) {
    .bl_service_body_title span {
        margin-bottom: 40px;
        font-size: 1.8rem;
    }

    .bl_service_body_text {
        font-size: 1.8rem;
    }

    .bl_service_body_text {
        margin-bottom: 30px;
    }

    .bl_service_imageWrapper img {
        margin-left: -12%;
    }
}

/* ——————————————————1920px以上に適用—————————————————— */
@media screen and (min-width: 1920px) {
    /* PC用レイアウト 1920px以上の範囲に収めるデザインはこの中に記述 */
}

/* --------------------------------------------- 
  2.4 TOP：COLUMN
 --------------------------------------------- */
.bl_column {
    padding: 36px 0 56px;
    background: #189F61;
}

.bl_cardUnit__col3.bl_cardUnit__column .bl_card_body {
    margin-bottom: 36px;
    background-color: #FFF;
    padding: 23px 23px 18px;
    font-size: 1.4rem;
}

.bl_cardUnit__col3.bl_cardUnit__column .bl_card_date {
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0;
    margin-bottom: 2%;
}

.bl_cardUnit__col3.bl_cardUnit__column .bl_card_txt {
    font-weight: 700;
}

/* スワイパー */
.bl_column .swiper-wrapper {
    height: auto;
    display: block;
}

.bl_cardUnit_swiper {
    margin-bottom: 16px;
}

.el_swiper_btn_wrapper {
    display: none;
}

/* ——————————————————600px以上に適用—————————————————— */
@media screen and (min-width: 600px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .bl_column {
        padding: 40px 0 46px;
    }

    .bl_cardUnit__col3.bl_cardUnit__column .bl_card_body {
        padding: 23px;
        flex: 1;
    }

    .bl_cardUnit__col3.bl_cardUnit__column .bl_card_date {
        margin-bottom: 0;
        margin-top: 10px;
        display: inline-block;
        font-size: 1.2rem;
    }

    .bl_cardUnit__col3.bl_cardUnit__column .bl_card_txt {
        font-size: 1.4rem;
        line-height: 1.4;
        text-align: left;
        overflow: hidden;
    }

    /* スワイパー */
    .bl_column .swiper-wrapper {
        height: 100%;
        display: flex;
    }

    .bl_cardUnit_swiper {
        position: relative;
        margin-bottom: 0;
    }

    .bl_cardUnit_swiper .bl_card {
        display: flex;
    }

    .bl_cardUnit_swiper .bl_card a {
        display: flex;
        flex-direction: column;
    }

    .swiper-button-prev {
        margin-top: -280px;
        left: 10.5%;
        color: #FFF;
    }

    .swiper-button-next {
        margin-top: -280px;
        right: 10.5%;
        color: #FFF;
    }

    .el_swiper_btn_wrapper {
        display: block;
    }
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {
    .swiper-button-prev {
        margin-top: -320px;
    }

    .swiper-button-next {
        margin-top: -320px;
    }
}

/* ——————————————————1025px以上に適用—————————————————— */
@media screen and (min-width: 1025px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .bl_cardUnit__col3.bl_cardUnit__column .bl_card_date {
        font-size: 1.8rem;
    }

    .bl_cardUnit__col3.bl_cardUnit__column .bl_card_date {
        font-size: 1.4rem;
    }
}

/* ——————————————————1920px以上に適用—————————————————— */
@media screen and (min-width: 1920px) {
    .swiper-button-prev {
        margin-top: -350px;
        left: 28%;
    }

    .swiper-button-next {
        margin-top: -350px;
        right: 28%;
    }
}

/*=======================================================

  3.サブページ

=======================================================*/
/* --------------------------------------------- 
 3.1 SUB：サブ全般
 --------------------------------------------- */
/* --- SUB:タイトル背景 --- */
.un_service {
    background-image: url(../img/sub/service/bl_pageTitle_bg__service_tab_left.png), url(../img/sub/bl_pageTitle_bg_sp_right.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 40%, 61%;
    background-position: left bottom, right center;
}

.un_contact {
    background-image: url(../img/sub/contact/bl_pageTitle_bg__contact_tab_left.png), url(../img/sub/bl_pageTitle_bg_sp_right.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 28%, 60%;
    background-position: 9% bottom, right center;
}

.un_column {
    background-image: url(../img/sub/column/bl_pageTitle_bg__column_tab_left.png), url(../img/sub/bl_pageTitle_bg_sp_right.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 36%, 61%;
    background-position: 4% bottom, right center;
}

.un_download {
    background-image: url(../img/sub/download/bl_pageTitle_bg__download_tab_left.png), url(../img/sub/bl_pageTitle_bg_sp_right.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 28%, 66%;
    background-position: 4% bottom, right center;
}

/* --- SUB:ページタイトル --- */
.bl_pageTitle {
    background-color: #6BC199;
}

.bl_pageTitle_wrapper {
    display: flex;
    width: 90%;
    margin: 0 auto;
    padding-top: 28%;
    justify-content: flex-end;
}

.bl_pageTitle_text {
    font-size: clamp(10px, 2.6vw, 1.8rem);
    padding: 0px 7% 0px 0%;
    text-align: center;
}

.un_service .bl_pageTitle_text {
    width: 52%;
    margin-top: -22%;
}

.un_contact .bl_pageTitle_text {
    width: 49%;
    margin-top: -20%;
}

.un_column .bl_pageTitle_text {
    width: 52%;
    margin-top: -22%;
    font-weight: 700;
}

.un_download .bl_pageTitle_text {
    width: 51%;
    margin-top: -22%;
    font-weight: 700;
    padding-right: 12%;
}

/* 検索結果・404テキスト */
.bl_nf {
    text-align: center;
    margin: 0 auto 7%;
    width: 100%;
}

/* ——————————————————480px以上に適用—————————————————— */
@media screen and (min-width: 480px) {

    /* タブレット用レイアウト 480px以上の範囲に収めるデザインはこの中に記述 */
    /* --- SUB:タイトル背景 --- */
    .un_service {
        background-image: url(../img/sub/service/bl_pageTitle_bg__service_tab_left.png), url(../img/sub/bl_pageTitle_bg_tab_right.png);
        background-size: 37%, contain;
    }

    .un_contact {
        background-image: url(../img/sub/contact/bl_pageTitle_bg__contact_tab_left.png), url(../img/sub/bl_pageTitle_bg_tab_right.png);
        background-size: 22%, 87%;
        background-position: 3% 80%, 82% center;
    }

    .un_column {
        background-image: url(../img/sub/column/bl_pageTitle_bg__column_tab_left.png), url(../img/sub/bl_pageTitle_bg_tab_right.png);
        background-size: 33%, 80% 84%;
    }

    .un_download {
        background-image: url(../img/sub/download/bl_pageTitle_bg__download_tab_left.png), url(../img/sub/bl_pageTitle_bg_tab_right.png);
        background-size: contain, 86% 82%;
        background-position: 4% bottom, 80% center;
    }

    /* --- SUB:ページタイトル --- */
    .bl_pageTitle_wrapper {
        width: 98%;
        height: 190px;
        align-items: center;
        padding-top: 0;
    }

    .bl_pageTitle_text {
        font-size: clamp(16px, 2.6vw, 1.8rem);
        justify-content: flex-end;
        letter-spacing: 0px;
        margin-top: 0;
    }

    .un_service .bl_pageTitle_text {
        width: 60%;
        margin-top: 0;
    }

    .un_contact .bl_pageTitle_text {
        width: 66%;
        margin-top: 0;
    }

    .un_column .bl_pageTitle_text {
        width: 57%;
        margin-top: 0;
    }

    .un_download .bl_pageTitle_text {
        width: 64%;
        margin-top: 0;
    }
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    /* --- SUB:タイトル背景 --- */
    .un_service {
        background-image: url(../img/sub/service/bl_pageTitle_bg__service.png);
    }

    .un_contact {
        background-image: url(../img/sub/contact/bl_pageTitle_bg__contact.png);
    }

    .un_column {
        background-image: url(../img/sub/column/bl_pageTitle_bg__column.png);
    }

    .un_download {
        background-image: url(../img/sub/download/bl_pageTitle_bg__download.png);
    }



    /* --- SUB:ページタイトル --- */
    .bl_pageTitle {
        background-color: #6BC199;
    }

    .bl_pageTitle_wrapper {
        background-size: 730px;
        background-repeat: no-repeat;
        background-position: bottom;
        background-position-x: center;
        width: 740px;
        height: 170px;
        padding: 0;
    }

    .bl_pageTitle_text {
        font-size: clamp(22px, 1.8vw, 2rem);
        display: flex;
        padding: 0px 28px 0 0%;
        letter-spacing: 0px;
        align-items: center;
        width: 454px;
        padding: 0px 28px 0 0%;
        text-align: center;
        font-size: 1.8rem;
        justify-content: flex-start;
    }

    .un_contact .bl_pageTitle_text {
        width: 54%;
    }

    .un_download .bl_pageTitle_text {
        width: 58%;
        margin-top: 0;
        padding-right: 4%;
    }

    /* --- SUB:見出し（モディファイのみ・ベースはcommonに） --- */
    /* h2*/
}

/* ——————————————————1025px以上に適用—————————————————— */
@media screen and (min-width: 1025px) {

    /* PC用レイアウト 1025px以上の範囲に収めるデザインはこの中に記述 */
    /* --- SUB:ページタイトル --- */
    .bl_pageTitle_wrapper {
        width: 905px;
        margin: 0 auto;
        height: 210px;
        padding: 0;
        background-size: auto;
    }

    .bl_pageTitle_text {
        font-size: clamp(22px, 1.8vw, 2rem);
        display: flex;
        width: 550px;
        padding: 0px 28px 0 0%;
        letter-spacing: 0px;
        text-align: center;
        align-items: center;
    }

    /* --- SUB:見出し（モディファイのみ・ベースはcommonに） --- */
    /* h2*/
}

/* --------------------------------------------- 
 3.2 SUB：脱炭素経営スタートサービス
 --------------------------------------------- */
/* 見出し */
.el_h3__service, .el_h3__serviceFlow, .el_h3__serviceStart, .el_h3__serviceContact {
    color: #FFF;
    font-size: 2.4rem;
    text-align: center;
    letter-spacing: 0px;
    text-align: center;
}

.el_h3__serviceStart {
    margin: 20px auto;
}

.el_h3__serviceFlow {
    margin: 20px auto;
}

.el_h3__serviceFlow img.sm_only {
    margin-bottom: 30px;
}

.el_h3__green {
    color: #189F61;
}

.el_h3__service span, .el_h3__serviceFlow span {
    font-size: 1.8rem;
    display: block;
}

.el_h3__serviceContact {
    margin: 20px auto 0;
}

/* fv説明 */
.bl_service_about p {
    text-align: left;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 40px;
    line-height: 2;
}

/* 3つのメリット */
.bl_cardUnit__col3.bl_cardUnit__service {
    margin-top: 20px;
}

.bl_cardUnit__col3.bl_cardUnit__service>.bl_card {
    background-color: #FFF;
    position: relative;
    padding: 0 1rem 6px 1rem;
    margin-top: 26px;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 156px;
    justify-content: space-evenly;
    font-weight: 700;
    letter-spacing: -1px;
    flex-wrap: wrap;
    flex-direction: row;
}

.bl_cardUnit__col3.bl_cardUnit__service>.bl_card.el_badge__merit::before {
    position: absolute;
    top: -40px;
    left: 50%;
    width: 84px;
    height: 42px;
    line-height: 5px;
    transform: translateX(-50%);
    border-radius: 100px 100px 0 0;
    border-bottom: transparent;
    padding: 25px 1rem 0 1rem;
    background: #FFF;
    color: #189F61;
    font-size: 1.6rem;
    text-align: center;
    text-transform: uppercase;
    content: 'メリット';
    font-weight: 700;
}

.bl_cardUnit__col3.bl_cardUnit__service .bl_card_imgWrapper {
    position: relative;
}

.bl_card_img_meritNo {
    z-index: 1;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.bl_card_img_meritNo img {
    width: 27px;
    margin: 0 auto;
}

.bl_card_img_meritImg {
    width: 128px;
}

.bl_cardUnit__col3.bl_cardUnit__service .bl_card_txt {
    font-size: 2rem;
    padding: 0 0 0 20px;
    text-align: left;
    /* min-height: 116px; */
    line-height: 1.5;
}

.bl_cardUnit__col3.bl_cardUnit__service .bl_card_body {
    width: 56%;
}

/* メディア（画像：テキスト） */
.bl_media__service .bl_media_imgWrapper {
    text-align: center;
}

.bl_media__service .bl_media_txt {
    font-weight: 700;
    margin-top: 20px !important;
    margin-bottom: 36px;
    line-height: 1.8;
    letter-spacing: 0;
}

.bl_media__service .bl_media_imgWrapper img {
    width: 300px;
}

/* フロー */
.bl_flow {
    margin-top: 25px;
}

.bl_flow_item {
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    max-width: 560px;
    display: flex;
    align-items: center;
}

.bl_flow_item.one {
    padding-top: 0;
}

.bl_flow_item_number {
    position: relative;
    width: 11%;
    margin-right: 5%;
}

.bl_flow_item_number span {
    position: relative;
    /* margin-right: 20px; */
    border-radius: 50%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: #FFF;
    color: #189F61;
    font-size: 2.4rem;
    font-family: futura-pt-bold, sans-serif;
    font-weight: 700;
    display: block;
    z-index: 1;
}

.bl_flow_item_number_line {
    position: absolute;
    top: -40%;
    left: 21px;
    /* 丸42pxの半分 */
    transform: translate(-50%, -50%);
    width: 4px;
    height: 110px;
    background: #FFF;
}

.bl_flow_item_title {
    /* flex-basis: 568px; */
    background-color: #FFF;
    /* height: 62px; */
    width: 100%;
    font-size: 1.8rem;
    padding: 9px 20px 4px;
    font-weight: 700;
    letter-spacing: 0;
}

/* serviceお問合せフォーム */
.el_h3__serviceCont {
    font-size: 3rem;
}

.bl_service_contact {
    padding: 50px 0 40px;
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* 各見出し */
    .el_h3__service, .el_h3__serviceFlow, .el_h3__serviceStart {
        font-size: 3.8rem;
        line-height: 1.9;
        letter-spacing: 1.6px;
    }

    .el_h3__service, .el_h3__serviceFlow {
        margin: 70px 0 0;
    }

    .el_h3__serviceStart {
        margin: 30px auto 50px;
    }

    .el_h3__serviceFlow {
        margin: 50px 0 40px;
        line-height: 1.7;
    }

    .el_h3__serviceFlow span {
        font-size: 2.5rem;
    }

    .el_h3__serviceFlow img.mdLg_only {
        display: inline-block;
        margin: 10px 0 20px;
    }

    .el_h3__service span, .el_h3__serviceFlow span {
        font-size: 2.5rem;
        display: block;
    }

    .el_h3__flow img.sm_only {
        display: none;
    }

    .el_h3__serviceContact {
        font-size: 3rem;
        margin: 40px 0 50px;
    }

    /* fv説明 */
    .bl_service_about p {
        text-align: center;
        font-size: 1.8rem;
        margin-top: 40px;
    }

    /* 3つのメリット */
    .bl_cardUnit__col3.bl_cardUnit__service {
        margin-top: 0;
    }

    .bl_cardUnit__col3.bl_cardUnit__service>.bl_card {
        position: relative;
        padding: 0 1rem 2rem;
        margin-top: 60px;
        display: flex;
        align-items: stretch;
        min-height: 340px;
        justify-content: space-around;
        font-weight: 700;
        letter-spacing: -1px;
        align-content: space-between;
    }

    .bl_cardUnit__col3.bl_cardUnit__service>.bl_card.el_badge__merit::before {
        position: absolute;
        top: -60px;
        left: 50%;
        width: 120px;
        height: 60px;
        line-height: 5px;
        transform: translateX(-50%);
        border-radius: 100px 100px 0 0;
        border-bottom: transparent;
        padding: 45px 1rem 0 1rem;
        background: #FFF;
        color: #189F61;
        font-size: 1.6rem;
        text-align: center;
        text-transform: uppercase;
        content: 'メリット';
        font-weight: 700;
    }

    .bl_cardUnit__col3.bl_cardUnit__service .bl_card_imgWrapper {
        position: relative;
    }

    .bl_cardUnit__col3.bl_cardUnit__service .bl_card_imgWrapper img {
        width: 208px;
    }

    .bl_cardUnit__col3.bl_cardUnit__service .bl_card_txt {
        font-size: 2.6rem;
        padding: 1rem;
        text-align: center;
        margin-top: 0 !important;
        min-height: auto;
    }

    .bl_cardUnit__col3.bl_cardUnit__service .bl_card_body {
        width: 100%;
    }

    .bl_card_img_meritNo img {
        width: 38px;
        margin: 0 auto;
        margin: 4px auto 0;
    }

    .bl_card_img_meritImg:first-child {
        margin-top: -5px;
    }

    .bl_cardUnit__col3.bl_cardUnit__service>.bl_card.el_badge__merit::before {
        position: absolute;
        top: -46px;
        left: 50%;
        width: 106px;
        height: 28px;
        line-height: 5px;
        transform: translateX(-50%);
        border-radius: 100px 100px 0 0;
        border-bottom: transparent;
        padding: 32px 1rem 0 1rem;
        background: #FFF;
        color: #189F61;
        font-size: 1.6rem;
        text-align: center;
        text-transform: uppercase;
        content: 'メリット';
        font-weight: 700;
    }

    /* 始め方 media*/
    .bl_media__service .bl_media_txt {
        margin-top: 0 !important;
        margin-bottom: 20px;
        letter-spacing: 0;
        line-height: 2;
    }

    .bl_media__service .bl_media_imgWrapper img {
        width: 286px;
    }

    /* フロー */
    .bl_flow_item {
        margin-left: auto;
        margin-right: auto;
        padding-top: 18px;
        padding-bottom: 18px;
        max-width: 650px;
    }

    .bl_flow_item_number {
        margin-right: 2%;
    }

    .bl_flow_item_number span {
        width: 62px;
        height: 62px;
        line-height: 62px;
        font-size: 3.4rem;
    }

    .bl_flow_item_number_line {
        left: 31px;
        /* 丸62pxの半分 */
        height: 62px;
    }

    .bl_flow_item_title {
        font-size: 2.2rem;
        padding: 15px 20px 12px;
    }

    .bl_service_contact {
        padding: 50px 0 60px;
    }
}

/* ——————————————————1025px以上に適用—————————————————— */
@media screen and (min-width: 1025px) {
    .bl_media__service.bl_media__rev .bl_media_body {
        padding-right: 40px;
    }
}

/* --------------------------------------------- 
    3.3  SUB：お問い合わせ
 --------------------------------------------- */
.bl_contact {
    box-sizing: border-box;
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .bl_contact {
        box-sizing: border-box;
        margin-bottom: 75px;
    }

    .bl_contact_catch {
        font-size: 3.3rem;
        text-align: center;
        margin: 60px 0 20px;
        letter-spacing: 1.5px;
    }

    .bl_contact_text {
        font-size: 2.1rem;
        text-align: center;
        color: #FFF;
        margin-bottom: 60px;
    }
}

/* --------------------------------------------- 
    3.4  SUB：コラム：記事一覧（アーカイブ）
 --------------------------------------------- */
.bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column {
    margin-bottom: 30px;
}

.bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card {
    margin-bottom: 40px;
}

.bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card a {
    display: flex;
}

.bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card a:hover img {
    opacity: 0.8;
}

.bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card_imgWrapper {
    flex: 1;
    margin-right: 4%;
}

.bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card_body {
    padding: 0;
    flex: 10%;
    margin-bottom: 0;
}

.bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card_txt {
    font-size: 1.2rem;
}

.bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card_date {
    font-size: 1rem;
}

/* ——————————————————600px以上に適用—————————————————— */
@media screen and (min-width: 600px) {
    .bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card a {
        display: block;
    }

    .bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card_imgWrapper {
        margin-right: 0;
    }

    .bl_cardUnit.bl_cardUnit__col3.bl_cardUnit__column::after {
        content: "";
        display: block;
        width: 30%;
    }
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column {
        margin-top: 65px;
        margin-bottom: 0;
    }

    .bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card_txt {
        font-size: 1.4rem;
    }

    .bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card_date {
        margin: 20px 0;
        font-size: 1.4rem;
    }
}

/* ——————————————————1025x以上に適用—————————————————— */
@media screen and (min-width: 1025px) {
    .bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card {
        margin-bottom: 100px;
    }

    .bl_column__sub .bl_cardUnit__col3.bl_cardUnit__column .bl_card_txt {
        font-size: 1.8rem;
    }
}

/* --------------------------------------------- 
    3.5  SUB：コラム：記事詳細（投稿記事）
 --------------------------------------------- */
.bl_media.bl_media__writerProfile {
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    flex-wrap: wrap;
}

.bl_article .bl_media.bl_media__writerProfile h2 {
    font-size: 1.8rem;
    width: 100%;
    margin-bottom: 10px;
    letter-spacing: 0;
    border: none;
}

.bl_media.bl_media__writerProfile .bl_media_imgWrapper {
    flex: unset;
    margin-right: 3%;
}

.bl_media.bl_media__writerProfile .bl_media_imgWrapper>img {
    width: 100%;
}

.bl_media.bl_media__writerProfile .bl_media_body {
    flex: 1;
}

.bl_media.bl_media__writerProfile .bl_media_body>*:last-child {
    margin-bottom: 0;
}

.bl_media.bl_media__writerProfile .bl_media_ttl {
    margin-bottom: 0;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 0;
}

.bl_media.bl_media__writerProfile .bl_media_ttl::before {
    content: '';
    display: block;
    width: auto;
    height: auto;
    margin: auto;
    font-size: inherit;
}

.bl_media.bl_media__writerProfile .bl_media_ttl span {
    font-size: 1.2rem;
    display: block;
    margin-right: 30px;
}

.bl_media.bl_media__writerProfile .bl_media_txt {
    font-size: 1.2rem;
}

/* 追従お問い合わせボタン */
.el_sticky_btn {
    display: none;
}

/* ——————————————————480px以上に適用—————————————————— */
@media screen and (min-width: 480px) {
    .bl_media.bl_media__writerProfile .bl_media_ttl span {
        display: inline-block;
    }
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* 追従お問い合わせボタン */


    .el_sticky_btn {
        display: block;
        position: relative;
        backface-visibility: hidden;
        /* hover時ちらつき防止 */
    }

    #el_sticky_btn_link__column, #el_sticky_btn_link__top {
        position: fixed;
        right: 0;
        z-index: 98;
        backface-visibility: hidden;
    }

    #el_sticky_btn_link__top {
        /* トップページの問い合わせボタン縦位置 */
        bottom: 10px;
        width: 20%;
        max-width: 220px;

    }

    #el_sticky_btn_link__top img a {
        width: 100%;
        border: 2px solid #FFF;
        border-right: none;
    }

    /* 追従お問い合わせボタン */
    /* 2503：FVに固定バナー追加,、画面幅によってバナー大きくする */
    #el_sticky_btn_link__fv {
        position: absolute;
        right: 0;
        z-index: 999;
        width: 20%;
        max-width: 220px;
        padding-top: 6%;
    }

    #el_sticky_btn_link__fv img {
        width: 100%;
        border: 2px solid #FFF;
        border-right: none;
    }

    #el_sticky_btn_link__column {
        /* コラムのDLバナー縦位置 */
        top: 74%;
    }

    .el_sticky_btn a img:hover {
        opacity: 1;
    }

    .el_sticky_btn:hover img:first-of-type {
        opacity: 0;
        transition: 0.5s;
    }

    .el_sticky_btn a img:last-of-type {
        position: absolute;
        right: 0;
        opacity: 0;
    }

    .el_sticky_btn:hover img:last-of-type {
        opacity: 1;
    }


    /* トップフローティングバナー閉じるボタン */
    .el_sticky_closeBtn {
        position: absolute;
        top: 5px;
        right: 4px;
        z-index: 99;
        /* padding: 4px 2px; */
        border: none;
        background-color: #fff;
        border-radius: 30px;
        cursor: pointer;
        /* -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%); */
        /* box-shadow: 0 0 5px rgb(0 0 0 / 29%); */
        width: 22px;
        height: 22px;
        /* border: 1px solid #bbb; */
        text-align: center;
        color: #999;
    }

    .el_sticky_closeBtn img {
        width: 12px;
        padding-top: 3.5px;
    }
}

/* ——————————————————1025px以上に適用—————————————————— */
@media screen and (min-width: 1025px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .bl_cardUnit__aside .bl_card {
        margin-bottom: 40px;
    }

    .bl_cardUnit__aside .bl_card a {
        display: flex;
    }

    /* .bl_cardUnit__aside .bl_card .bl_card_img {
        height: 87px; 現在等倍、デザイン通りにする場合設定
    } */

    .bl_cardUnit__aside .bl_card a:hover img {
        opacity: 0.8;
    }

    .bl_cardUnit__aside .bl_card_imgWrapper {
        flex: 1;
        margin-right: 3%;
    }

    .bl_cardUnit__aside .bl_card_body {
        padding: 0;
        flex: 10%;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .bl_cardUnit__aside .bl_card_txt {
        font-size: 1rem;
    }

    .bl_cardUnit__aside .bl_card_date {
        font-size: 1rem;
    }

    /* 追従お問い合わせボタン */
    #el_sticky_btn_link__top {
        /* トップページの問い合わせボタン縦位置 */
        bottom: 10px;
        max-width: 280px;
        padding-top: 5.5%;

    }

    /* 2503：FVに固定バナー追加,、画面幅によってバナー大きくする */
    #el_sticky_btn_link__fv {
        width: 22%;
        max-width: 280px;
        padding-top: 5.5%;
    }

    #el_sticky_btn_link__fv img {
        width: 100%;

    }


    #el_sticky_btn_link__column {
        /* コラムのDLバナー縦位置 */
        top: 68%;
    }

    /* トップフローティングバナー閉じるボタン */
    .el_sticky_closeBtn {
        top: 21%;
        right: 2%;
    }
}

/* ——————————————————1400px以上に適用・使用はここだけ—————————————————— */
@media screen and (min-width: 1400px) {

    /* 追従お問い合わせボタン */
    #el_sticky_btn_link__top {
        /* トップページの問い合わせボタン縦位置 */
        width: 16%;
        max-width: 340px;

    }

    /* 2503：FVに固定バナー追加,、画面幅によってバナー大きくする */
    #el_sticky_btn_link__fv {
        width: 21%;
        max-width: 460px;
        padding-top: 6%;
        right: 2%;
    }

    #el_sticky_btn_link__fv img {
        width: 100%;
        border: 4px solid #FFF;
        border-right: 4px solid #FFF;
    }

    /* トップフローティングバナー閉じるボタン */
    .el_sticky_closeBtn {
        top: 24%;
    }
}

/* --------------------------------------------- 
    3.6  SUB：お役立ち資料：記事一覧（アーカイブ）
 --------------------------------------------- */
.bl_download {
    background-color: #f0f0f0;
    padding-bottom: 70px;
}

.bl_download .el_h2__sub {
    margin-bottom: 36px;
}

.bl_cardUnit.bl_cardUnit__download {
    margin: 0 auto;
    justify-content: center;
}

.bl_cardUnit__download a.bl_card_link {
    /* カード全体をリンク */
    margin-right: 0;
    padding: 30px;
    background-color: #FFF;
    border: 1px solid #BECACA;
    margin-bottom: 50px;
}

.bl_cardUnit__download a.bl_card_link:first-child {
    margin-bottom: 50px;
}

.bl_cardUnit__download a.bl_card_link:hover img {
    /* カードhover時表紙画像半透明にする */
    opacity: 0.7;
}

.bl_cardUnit__download.bl_cardUnit__col2>.bl_card {
    max-width: 400px;
    margin-right: 0;
    padding: 50px;
    background-color: #FFF;
}

.bl_cardUnit__download .bl_card_txt {
    font-size: 1.6rem;
    margin: 30px auto 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.bl_cardUnit__download .bl_card_body {
    margin: auto;
    width: 100%;

}

.bl_cardUnit__download .bl_card_body .el_btn {
    margin: auto;
    max-width: 252px;
    font-size: 1.6rem;

}

/* カードホバー時、ボタン緑
.bl_cardUnit__download a.bl_card_link:hover .bl_card_body .el_btn {
    border-color: transparent;
    background-color: #189F61;
    color: #FFF;
} */


.bl_cardUnit__download .bl_card_body .el_btn.el_btn__iconDl {
    background-image: url(../img/el_btn__iconDl.png);
    background-repeat: no-repeat;
    background-position: center right 22%;
    padding-right: 50px;
    padding-top: 14px;
    background-size: 22px;
}

.bl_cardUnit__download .bl_card_body .el_btn.el_btn__iconDl:hover {
    background-image: url(../img/el_btn__iconDl_hover.png);
    background-size: 22px;
}


.bl_cardUnit__download .bl_card_imgWrapper img {
    box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.2);
}


/* 202505：横長サムネflex対応 */
.bl_cardUnit__download a.bl_card_link {
    display: flex;
}

.bl_cardUnit__download a.bl_card_link .bl_card {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {
    .bl_download {
        padding-bottom: 150px;
    }

    .bl_download .el_h2__sub {
        margin-bottom: 75px;
    }

    .bl_cardUnit.bl_cardUnit__download {
        max-width: 860px;
        justify-content: space-between;
    }

    .bl_download_service .bl_cardUnit.bl_cardUnit__download a:last-child {
        /* サービス資料が2つ以上になったら削除する */
        flex: 0 0 100%;
        /* ↑768直後、ホワペの2カラム幅と合わせるなら削除 */
        margin: auto;
    }

    .bl_cardUnit__download a.bl_card_link {
        /* カード全体をリンク */
        width: calc(100% / 2 - 20px);
        max-width: 400px;

    }

    /* .bl_cardUnit__download a.bl_card_link:first-child {
        margin-bottom: 0;
    } */

    .bl_cardUnit__download a.bl_card_link:hover img {
        /* カードhover時表紙画像半透明にする */
        opacity: 0.7;
    }

    .bl_cardUnit__download.bl_cardUnit__col2>.bl_card {
        width: calc(100% / 2 - 5px);
        max-width: 400px;
        margin-right: 0;
        padding: 50px;
        background-color: #FFF;
    }

    .bl_cardUnit__download .bl_card_txt {
        font-size: 1.8rem;
        margin: 30px auto 20px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .bl_cardUnit__download .bl_card_body .el_btn {
        margin: auto;
        max-width: 252px;
        font-size: 1.8rem;
        height: 54px;
    }


    .bl_cardUnit__download .bl_card_imgWrapper img {
        box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, 0.2);
    }

    .bl_download_whitePaper .el_h2__sub {
        margin-top: 180px;
    }
}

/* --------------------------------------------- 
    3.7  SUB：お役立ち資料：ダウンロードページ（投稿記事）
 --------------------------------------------- */
.bl_download_info {
    /* max-width: 450px; */
    margin-right: 0;
    padding: 30px 28px;
    background-color: #FFF;
    border: 1px solid #BECACA;
}

.bl_download_title,
.bl_download_form_title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.bl_download_point {
    background-color: #D0F2E5;
    padding: 20px;
    margin-bottom: 20px;
}

p.bl_download_pointTitle {
    margin: 0 0 20px;
    color: #169F60;
    font-weight: 700;
    font-size: 1.4rem;

}

.bl_download_point ul {
    margin-bottom: 0;
}

.bl_download_point ul>li {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.bl_download_form {
    margin-top: 30px;

}

.bl_download_form .bl_form {
    background: none;
    margin: 0;
    width: 100%;
    /* max-width: 550px; */
}





.bl_download_form .bl_form_policy_notes {
    margin-top: 40px;
}

/* .bl_download_form .bl_form_notes.bl_form_notes__mail {
    width: 240px;
} */

.bl_download_form .bl_form_item {
    align-items: center;
}

.bl_download_form input[type=submit].el_btn.el_btn__form {
    max-width: 310px;
    width: 310px;
    font-feature-settings: "palt";
}

.bl_download_form .bl_form_selectWrapper_notes {
    margin: 0 0 0 3rem;
}


.bl_form_textarea textarea::placeholder {
    color: #BECACA;
    font-size: 1.6rem;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
    padding-top: 4px;
}

.bl_download_title br {
    display: block;
}

/* ——————————————————480px以上に適用—————————————————— */
@media screen and (min-width: 480px) {
    .bl_download_form {
        margin-top: 10%;

    }

    .bl_download_title br {
        display: none;
    }

    .bl_download_form_title br {
        display: none;
    }
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {
    .bl_download_info {
        max-width: 100%;
        margin-right: 0;
        padding: 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .bl_download_title,
    .bl_download_form_title {
        font-size: 2.4rem;
        font-size: clamp(18px, 2vw, 2.4rem);
        font-weight: 700;
        margin-bottom: 30px;
        width: 100%;
    }

    .bl_download_title br {
        display: none;
    }



    .bl_download_point {
        margin-bottom: 0;
        flex: 1;
        height: auto;
        margin-right: 4%;
    }

    p.bl_download_pointTitle {
        margin: 0 0 20px;
        color: #169F60;
        font-weight: 700;
        font-size: 2rem;

    }

    .bl_download_point ul {
        margin-bottom: 0;
    }

    .bl_download_point ul>li {
        margin-bottom: 5px;
        font-size: 1.4rem;
    }


    .bl_download_form .bl_form {
        background: none;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .bl_download_form .bl_form_policy_notes {
        margin-top: 40px;
    }

    /* .bl_download_form .bl_form_notes.bl_form_notes__mail {
        width: 240px;
    } */

    .bl_download_form .bl_form_item {
        align-items: center;
    }

    .bl_download_form input[type=submit].el_btn.el_btn__form {
        font-feature-settings: "palt";
    }


    .bl_download_form input[type=submit].el_btn.el_btn__form,
    .bl_thanks_dlBtn .el_btn.el_btn__bcGreen {
        max-width: 420px;
        width: 420px;
        height: 80px;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bl_download_form .bl_form_selectWrapper_notes {
        margin: 0 0 0 3rem;
    }

    .bl_form_textarea textarea::placeholder {
        color: #BECACA;
        font-size: 1.6rem;
        font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
        padding-top: 4px;
    }



    .bl_download .hp_fx0,
    .bl_download .hp_mob_fx0 {
        flex: unset !important;
    }

    .bl_download .ly_grid {
        display: block;
    }
}

/* ——————————————————1025px以上に適用—————————————————— */
@media screen and (min-width: 1025px) {
    .bl_download_info {
        max-width: 450px;
    }

    .bl_download_point {
        width: 100%;
        padding: 25px;
        margin-bottom: 30px;
        margin-right: 0;
    }


    .bl_download_form .bl_form {
        background: none;
        margin: 0;
        width: 100%;
        max-width: 550px;
    }

    .bl_download .hp_fx0,
    .bl_download .hp_mob_fx0 {
        flex: 1 0 !important;
    }

    .bl_download .ly_grid {
        display: flex;
    }

    .bl_download_form {
        margin-top: 0;
    }

    .bl_download_form .bl_form_notes.bl_form_notes__mail {
        width: 240px;
    }

    .bl_download_title br {
        display: block;
    }



}


/* --------------------------------------------- 
    3.8  SUB：お役立ち資料：thanksページ（固定ページ）
 --------------------------------------------- */
.bl_thanks_dlBtn {
    margin: 45px auto 75px;
}

.bl_thanks_dlBtn .el_btn.el_btn__bcGreen {
    max-width: 100%;
    min-height: 54px;
    padding-top: 13px;
    letter-spacing: 1px;
    width: 264px;
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {
    .bl_thanks_dlBtn {
        margin: 80px auto 200px;
    }

    .bl_thanks_dlBtn .el_btn.el_btn__bcGreen {
        max-width: 420px;
        width: 420px;
        height: 80px;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 2px;
    }
}

/* --------------------------------------------- 
    3.9 SUB：お知らせ：記事一覧（アーカイブ、コラムベース）
 --------------------------------------------- */
.bl_news_link {
    width: 100%;
    margin: 0 auto 15px;
    /* ↓増えたら調整 */
    width: 58%;
}

.bl_news_link .bl_horizBtnList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.bl_news_link .bl_horizBtnList .el_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 6px 6px;
    height: 24px;
    font-size: 1.1rem;
    letter-spacing: 0;
}

.bl_news_link .bl_horizBtnList>li {
    margin: 0 auto 10px;
}

/* ——————————————————480px以上に適用—————————————————— */
@media screen and (min-width: 480px) {
    .bl_news_link .bl_horizBtnList .el_btn {
        padding: 8px 8px;
        height: 24px;
        font-size: 1.2rem;
    }
}

/* ——————————————————600px以上に適用—————————————————— */
@media screen and (min-width: 600px) {

    .bl_news_link .bl_horizBtnList .el_btn {
        padding: 8px 5px;
        height: 28px;
    }

    .bl_news_link .bl_horizBtnList>li {
        margin: 0 30px 0 0;
    }

    .bl_news_link .bl_horizBtnList>li:last-child {
        margin-right: 0;
    }
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {



    .bl_news_link .bl_horizBtnList .el_btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 8px 5px;
        height: 28px;
        font-size: 1.4rem;
        letter-spacing: 0;
    }

    .bl_news_link .bl_horizBtnList>li {
        margin: 0 10px 0 0;
    }
}

/* ——————————————————1025px以上に適用—————————————————— */
@media screen and (min-width: 1025px) {

    .bl_news_link .bl_horizBtnList {
        width: 80%;
        margin: 0 auto;
    }

    .bl_news_link .bl_horizBtnList .el_btn {
        padding: 12px 10px 10px;
        height: 40px;
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

}

/* --------------------------------------------- 
    3.10 SUB：会社紹介
 --------------------------------------------- */

.bl_companyProfile_table {
    border: none;
    font-size: 1.4rem;
    letter-spacing: 0.4px;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    min-width: 80%;
    padding-bottom: 70px;

}

.bl_companyProfile_table table {
    width: 100%;

}

.bl_companyProfile_table th {
    background-color: unset;
    border-bottom: none;
    padding: 0px 30px 2px;
    text-align: left;
    font-weight: 700;
    background-color: #FFF;
    width: 100%;
    /* padding-top: 14px; */
    display: block;
}

/* .bl_companyProfile_table tr th::after {
    content: '';
    position: absolute;
    left: 50%;
    display: inline-block;
    width: 120px;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #189F61;
} */

.bl_companyProfile_table tr:first-child th {

    padding: 30px 30px 2px;

}

.bl_companyProfile_table td {
    display: block;

    border-right: none;
    border-bottom: none;
    padding: 0.5px 2px 0.5px 10px;
    line-height: 1.8;
    padding: 0px 30px 22px;
    background-color: #FFF;

}

.bl_companyProfile_table tr:last-child td {
    padding-bottom: 30px;
}




/* タイムライン */
.timeline {
    width: 96%;
    max-width: 800px;
    margin: 28px auto 0;

}

.timeline-list-item {
    display: flex;
    line-height: 1.5;
    font-size: 16px;
}

.timeline-list-item .date {
    width: 16%;
    padding: 0 0 0 0;
    margin-top: -3px;
}



.timeline-list-item .content {
    position: relative;
    width: 84%;
    padding: 0 20px 40px 50px;
    border-left: 1px solid #aaaaaa;
}

.timeline-list-item .content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    /* //widthの半分の値を指定 */
    width: 16px;
    height: 16px;
    background-color: #169F60;
    border-radius: 10px;

}

.timeline-list-item .content span {
    margin-top: -3px;
    display: block;
}

.timeline-list-item:last-child .content {
    border-left: none;
    padding-bottom: 0;
}

/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .bl_companyProfile {
        padding: 5% 0;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .bl_companyProfile_table table {
        display: table-cell;
    }


    .bl_companyProfile_table {
        width: 650px;
        margin: 0 auto 0;
        font-feature-settings: normal;
        max-width: none;
        min-width: auto;
        padding-bottom: 76px;
    }

    .bl_companyProfile_table tr {
        font-size: 1.6rem;

    }

    .bl_companyProfile_table tr:first-child th {
        padding: unset;
    }

    .bl_companyProfile_table th {
        border-right: 1px solid #189F61;
        background-color: unset;
        border-bottom: none;
        padding: 0;
        width: 20%;
        text-align: left;
        font-weight: normal;
        display: table-cell;

        border-right: 1px solid #189F61;
        background-color: unset;
        border-bottom: none;
        padding: 0;
        width: 20%;
        text-align: left;
        font-weight: normal;
    }

    .bl_companyProfile_table th {
        padding: 0 30px 0 0;
        width: 20%;
        /* text-align: right;
        margin-bottom: 20px; */
        width: 150px;
    }

    .bl_companyProfile_table td {
        display: table-cell;

        border-right: none;
        border-bottom: none;
        padding: 10px 5px 8px 30px;
        line-height: 1.6;

        /* border-right: none;
        border-bottom: none;
        padding: 0.5px 2px 0.5px 10px;
        line-height: 2.4; */
        background-color: unset;
    }

    .bl_companyProfile_table tr:last-child td {
        padding: 10px 5px 8px 30px;
    }
}

/* ——————————————————1025px以上に適用—————————————————— */
@media screen and (min-width: 1025px) {

    /* PC用レイアウト 1025px以上の範囲に収めるデザインはこの中に記述 */
    .bl_companyProfile {
        padding: 5% 0 0;
    }

    .bl_companyProfile_table {
        width: 780px;
    }
}

/*=======================================================

　4.記事（一部記事と同体裁のサブページ）

=======================================================*/

.bl_article p {
    margin: 0 0 2rem;
}

/* .bl_article a {
    color: #189F61;
} */

/* 2504：離脱防止の為、参考の外部リンクテキストを黒に変更。内部リンクは緑のまま。↓に設定あり。リードは別途緑設定追加 */
.bl_article a {
    color: #231815;
}

.bl_article a:hover {
    color: #189F61;
    text-decoration: underline;
}

/* 2504：https://hello-green.jp/ で始まるリンク（内部リンク）のテキストカラー設定 */
.bl_article a[href^="https://hello-green.jp/"],
.bl_article .wp-element-caption a[href^="https://hello-green.jp/"] {
    color: #17aed4;
}

/* 【テスト環境用】2504：http://dev-hg4.local/ で始まるリンク（内部リンク）のテキストカラー設定 */
.bl_article a[href^="http://dev-hg4.local/"] {
    color: #17aed4;
}

/* 引用テキストの色が＃555なので、引用内のリンクも#231815から＃555に変更 */
.bl_article .wp-element-caption a {
    color: #555;
}

/* --------------------------------------------- 
4.1 見出し
 --------------------------------------------- */
.bl_article h1,
.bl_article h2,
.bl_article h3,
.bl_article h4,
.bl_article h5 {
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.6;
}

.bl_article h1, .bl_article h2 {
    letter-spacing: 2px;
}

.bl_article h1 {
    font-size: 2.4rem;
    margin: 0 0 30px;
}

.bl_article h2 {
    font-size: 2.2rem;
    margin: 60px 0 20px;
    border-bottom: 3px solid #169F60;
    line-height: 1.2;
}

.bl_article h2:before {
    /* 目次クリック時、h2へのページ内ジャンプ位置調整：スマホ */
    content: "";
    display: block;
    height: 80px;
    /* 調整したい高さ（固定ヘッダーの高さ） */
    margin-top: -80px;
    /* heightと同じ分のネガティブマージン */
    visibility: hidden;
}

.bl_article>h3 {
    font-size: 2rem;
    margin: 60px 0 20px;
    text-indent: -20px;
    padding-left: 20px;
}

.bl_article h3::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 25px;
    background-color: #189F61;
    margin: 0 10px -2px 0;
    font-size: 2rem;
}

.bl_article h4 {
    border-bottom: solid 2px #BECACA;
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.bl_article h5 {
    margin: 60px 0 30px;
}

.bl_article h5::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #189F61;
    margin: 0 10px -2px 0;
    font-size: 2rem;
}

.bl_article_info {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.bl_article_date {
    font-size: 1.6rem;
    font-family: futura-pt, sans-serif;
    line-height: 1;
}

.bl_article_date__update {
    margin-left: 15px;

}

.bl_article_date__update span {
    width: 12px;
    display: inline-block;
    margin-right: 5px;
}

.bl_article_category {
    display: inline-block;
    background-color: #189F61;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 15px;

}

.bl_article .bl_article_category a {
    display: block;
    color: #FFF;
    padding: 2px 1em;
    height: 22px;
    text-decoration: none;
    border: #189F61 1px solid;
}

.bl_article .bl_article_category :hover {
    color: #189F61;
    background-color: #FFF;
    border: #189F61 1px solid;
    text-decoration: none;
}


.bl_article_tmb_wrapper {
    margin-bottom: 30px;
}



/* ——————————————————768px以上に適用—————————————————— */
@media screen and (min-width: 768px) {

    /* タブレット用レイアウト 768px以上の範囲に収めるデザインはこの中に記述 */
    .bl_article h1 {
        font-size: 3rem;
    }

    .bl_article p {
        margin: 0 0 3rem;
    }

    .bl_article h2, .bl_article h3, .bl_article h4, .bl_article h5 {
        line-height: 1.6;
    }

    .bl_article h2 {
        font-size: 3rem;
        margin: 80px 0 20px;
    }

    .bl_article h2:before {
        /* 目次クリック時、h2へのページ内ジャンプ位置調整：PC */
        height: 120px;
        /* 調整したい高さ（固定ヘッダーの高さ） */
        margin-top: -120px;
        /* heightと同じ分のネガティブマージン */
    }

    .bl_article h3 {
        font-size: 2.6rem;
        margin: 60px 0 20px;
    }

    .bl_article h4 {
        font-size: 2.4rem;
        margin: 60px 0 20px;
    }

    .bl_article h5 {
        font-size: 2rem;
        margin: 60px 0 20px;
    }

    .bl_article_date {
        font-size: 1.8rem;
    }

    .bl_article_date__update {
        margin-left: 20px;

    }

    .bl_article_date__update span {
        width: 14px;
        margin-right: 5px;

    }

    .bl_article_category {
        margin-right: 20px;

    }
}

/* --------------------------------------------- 
4.2 表
 --------------------------------------------- */
/* .bl_article table {
    width: 100%;
    margin-bottom: 50px;
}

.bl_article table tr {
    border: 1px solid #ddd;
}

.bl_article table td {
    border: 1px solid #ddd;
    padding: 1em;
}

.bl_article table th {
    background-color: #F2F5F5;
    font-weight: 700;
    padding: 1em;
    border: 1px solid #ddd;
} */
.bl_article table {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.bl_article table td {
    padding: 8px 10px 4px;
    background-color: #F2F5F5;
    border: 3px solid #FFF;
}

.bl_article table th {
    background-color: #DEE4E4;
    font-weight: 700;
    padding: 8px 10px 4px;
    border: 3px solid #FFF;
}

/* ——————————————————1025px以上に適用—————————————————— */
/* @media screen and (min-width: 1025px) {
    .bl_article h2:first-child {
        margin: 0 0 20px;
    }
} */
/* --------------------------------------------- 
4.3 リンクカード
 --------------------------------------------- */
.bl_cardUnit__linkCard {
    margin: 2em 0;
}

.bl_cardUnit__linkCard .bl_card a {
    display: flex;
    border: 1px solid #BECACA;
    text-decoration: none;
    color: #231815;
    align-items: center;
    flex-direction: column;
}

.bl_cardUnit__linkCard .bl_card a:hover {
    opacity: .8;
    text-decoration: none;
    color: #189F61;
}

.bl_cardUnit__linkCard .bl_card_imgWrapper {
    width: 100%;
}

.bl_cardUnit__linkCard .bl_card_body {
    width: 100%;
    padding: 20px 20px 10px;
}

.bl_cardUnit__linkCard .bl_card_ttl {
    margin-bottom: 6px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    /* 制限したい行数 */
    overflow: hidden;
    font-size: 1.4rem;
    margin-top: 0;
    letter-spacing: 0;
}

.bl_cardUnit__linkCard .bl_card_ttl::before {
    content: '';
    display: block;
    width: auto;
    height: auto;
    margin: auto;
    font-size: inherit;
}

.bl_cardUnit__linkCard .bl_card_txt {
    margin-bottom: 1em;
    display: block;
    font-size: 0.8em;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    max-height: 1.55em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.bl_cardUnit__linkCard .bl_card_date {
    font-size: 1.2rem;
    font-family: futura-pt, sans-serif;
}

/* ——————————————————600x以上に適用—————————————————— */
@media screen and (min-width: 600px) {
    .bl_cardUnit__linkCard .bl_card a {
        display: flex;
        border: 1px solid #BECACA;
        text-decoration: none;
        color: #231815;
        align-items: center;
        flex-direction: row;
    }

    .bl_cardUnit__linkCard .bl_card_imgWrapper {
        width: 32%;
    }

    .bl_cardUnit__linkCard .bl_card_body {
        width: 68%;
        padding: 10px 20px 0px;
    }

    .bl_cardUnit__linkCard .bl_card_ttl {
        font-size: 1.6rem;
    }
}

/* --------------------------------------------- 
4.4 目次
 --------------------------------------------- */
/* 目次 */
.bl_article .bl_article_toc {
    border: 3px solid #BECACA;
    padding: 0;
    margin: 46px 0;
}

.bl_article .bl_article_toc_title {
    background-color: #BECACA;
    color: #FFF;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1rem;
    height: 35px;
    padding: 4px 0 0;
}

.bl_article .bl_article_toc_list {
    padding: 26px 26px 20px 26px;
    margin-bottom: 0;
}

.bl_article .bl_article_toc_list>li::before {
    content: none;
}

.bl_article .bl_article_toc_list>li {
    padding-left: 10px;
    margin-bottom: 14px;
}

.bl_article .bl_article_toc_list li {
    margin-bottom: 10px;
    font-weight: 700;
    padding: 0;
    font-size: 1.4rem;
}

.bl_article .bl_article_toc_list li a {
    color: #231815;
}

.bl_article .bl_article_toc_list li a:hover {
    text-decoration: none;
}

.bl_article .bl_article_toc_list li:last-child {
    margin-bottom: 0;
}

/* ——————————————————768x以上に適用—————————————————— */
@media screen and (min-width: 768px) {
    .bl_article .bl_article_toc_title {
        font-size: 2rem;
        height: 45px;
        padding: 6px 0 0;
    }

    .bl_article .bl_article_toc_list li {
        font-size: 1.6rem;
    }
}

/* --------------------------------------------- 
4.5 要約
 --------------------------------------------- */
.bl_article_point {
    background-color: #D0F2E5;
    padding: 26px;
    font-weight: 700;
    margin-bottom: 50px;
    margin-top: 50px;
}

.bl_article_point_title {
    color: #189F61;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.bl_article .bl_article_point_list {
    margin-bottom: 0;
}

ul.bl_article_point_list>li {
    margin-bottom: 14px;
    font-size: 1.4rem;
}

ul.bl_article_point_list>li::before {
    background-color: #189F61;
}

/* ——————————————————768x以上に適用—————————————————— */
@media screen and (min-width: 768px) {
    .bl_article_point_title {
        font-size: 2rem;
    }

    ul.bl_article_point_list>li {
        font-size: 1.6rem;
    }
}

/* --------------------------------------------- 
4.6 リード文
 --------------------------------------------- */
.bl_article_lead {
    margin-top: 1rem;
}

.bl_article_lead a {
    color: #17aed4;
}

.bl_article_lead a:hover {
    color: #17aed4;
    text-decoration: underline;
}


/* --------------------------------------------- 
4.7 CTA
 --------------------------------------------- */
.bl_cta {
    padding: 30px 30px 35px;
    text-align: center;
    width: 100%;
    background-color: #169F60;
}

.bl_cta>*:last-child {
    margin-bottom: 0;
}

.bl_cta_ttl {
    color: #FFF;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}




.bl_horizBtnList>li {
    max-width: 280px;
    margin: 0 auto;
    margin-top: 15px;
}

.bl_horizBtnList .el_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 16px 1em 12px;
}

.bl_horizBtnList .el_btn:hover {
    border: #FFF 1px solid;
}

/* ——————————————————600x以上に適用—————————————————— */
@media screen and (min-width: 600px) {
    .bl_cta {
        padding: 50px;
    }

    .bl_cta_ttl {
        font-size: 2.2rem;

    }

    .bl_horizBtnList {
        display: flex;
        justify-content: center;
    }

    .bl_horizBtnList>li {
        flex: 1 1 0;
        margin: 0 40px 0 0;
    }


    .bl_horizBtnList>*:last-child {
        margin-right: 0;
    }
}