.m_block_section {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 30px;
    /* padding: 18px 14px; */
    border-radius: 10px;
    margin: 0 !important;
}

.m_blk_title {
    color: red;
}

.is-style-m_section {
    background-color: white;
    padding: 20px;
}

.m_block_heading {
    font-weight: 300;
}

.m_block_button a {
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 280px;
    padding: 10px 25px;
    transition: 0.3s ease-in-out;
    font-weight: 300;
}

.m_block_button a:hover {
    transform: scale(0.95, 0.95);
    transition: 1s all;
    color: inherit;
}


/* CTA Section */
.m_block_cta-section {
    text-align: center;
}

.m_block_cta-section .m_block_heading {
    margin-bottom: 14px;
}

.m_block_cta-section .m_block_button {
    margin-top: 30px;
}

/* Box Section */
.m_block_box-section a {
    color: inherit;
}

.m_block_box-section a:hover {
    color: inherit;
}

.m_block_box-section {
    padding: 30px 20px;
    border-radius: 6px;
}

.m_block_box-section h3 {
    font-size: 1.2em;
    font-weight: 600;
}

.m_block_box-section h3:after {
    content: "";
    display: block;
    padding-top: 6px;
    border-bottom: 1px solid var(--main-accent-color);
}

.m_block_box-section p {
    font-size: 0.8em;
}

.m_block_box-section img {
    margin-bottom: 16px;
	width: 100%;
}

/* News Section */
/* m_main_contents > listArticles  */
.m_listArticles_row {
    margin: 16px 0 6px 0;
}

.m_listArticles_row li {
    padding-bottom: 10px;
}

.m_listArticles_row li a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.m_listArticles_row li a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.m_listArticles_row .m_pub_date {
    color: var(--main-font-color);
    font-size: 0.8em;
    flex: 0 0 20%;
    /* 変更 */
    text-align: left;
    /* 追加 */
    margin-right: 10px;
    /* 追加 */
}

.m_listArticles_row .m_title {
    color: var(--main-font-color);
    font-size: 1em;
    font-weight: 500;
    flex: 1;
    /* 追加 */
    text-align: left;
    /* 追加 */
}

/* Img Text Section */
.m_block_img-text-section.img_top {
    display: flex;
}

/* img_bottom */
.m_block_img-text-section.img_bottom {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}

/* img_left */
.m_block_img-text-section.img_left {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.m_block_img-text-section.img_left img {
    width: 50% !important;
}

.m_block_img-text-section.img_left p {
    width: 48% !important;
}


/* img_right */
.m_block_img-text-section.img_right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.m_block_img-text-section.img_right img {
    width: 50% !important;
}

.m_block_img-text-section.img_right p {
    width: 48% !important;
}

/* collor-pallet */

.m_block_collor-pallet {
    width: 100%;
    height: 100px;
    border-radius: 20px;
    display: flex;
}

.m_block_collor-pallet div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.m_block_collor-pallet .color_1 {
    border-radius: 6px 0 0 6px;
}

.m_block_collor-pallet .color_4 {
    border-radius: 0px 6px 6px 0px;
}

/* Biz Hour */
.biz-hour {
    display: block;
    border-collapse: collapse;
    overflow-x: scroll;
}

.biz-hour th,
.biz-hour td {
    vertical-align: middle;
 }

/* Biz Hour01 */
.biz-hour01 th,
.biz-hour01 td {
    padding: 10px;
    text-align: center;
    border: 1px solid #3db2da;
}

.biz-hour01 th {
    background-color: #3db2da;
    font-weight: normal;
}

.biz-hour01 td {
    background-color: white;
}


/* Biz Hour02 */
.biz-hour02 th,
.biz-hour02 td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #3db2da;
}

.biz-hour02 th {
    background-color: #3db2da;
    color: white;
    font-weight: normal;
}

.biz-hour02 td {
    background-color: white;
}


/* Biz Hour03 */
.biz-hour03 th,
.biz-hour03 td {
    padding: 10px;
    text-align: center;
    border: 1px solid #C8C8C8;
}

.biz-hour03 th {
    background-color: #EBE8D9;
    font-weight: normal;
}

.biz-hour03 td {
    background-color: white;
}

.biz-hour03 th.sat {
    color: #3db2da;
}


.biz-hour03 th.sun {
    color: #e66a6a;
}



@media (max-width: 768px) {
    .home .m_block_section {
        /* margin: 14px 14px 10px 14px!important; */
    }

    .home .m_main_contents {
        padding: 0 20px !important;
    }


    .m_listArticles_row .m_pub_date {
        font-size: 0.7em;
        flex: 0 0 23%;
        /* 変更 */
    }

    .m_listArticles_row .m_title {
        font-size: 0.8em;
    }

    .m_listArticles_row {
        margin: 20px 0 20px 0;
    }

    .m_block_section {
        margin: 14px 14px 10px 14px;
    }

    /* img_left */
    .m_block_img-text-section.img_left {
        flex-wrap: wrap;
    }

    .m_block_img-text-section.img_left img {
        width: 100% !important;
    }

    .m_block_img-text-section.img_left p {
        width: 100% !important;
    }


    /* img_right */
    .m_block_img-text-section.img_right {
        flex-wrap: wrap;
    }

    .m_block_img-text-section.img_right img {
        width: 100% !important;
    }

    .m_block_img-text-section.img_right p {
        width: 100% !important;
    }


}


@media (max-width: 576px) {
    .home .m_block_section {
        /* padding: 18px 14px!important; */
    }

    .m_block_section {
        padding: 30px 20px 10px 20px;
    }

    .m_main_contents .m_listArticles_row li a {
        flex-wrap: wrap;

    }

    .m_main_contents .m_news_section .m_block_heading {
        text-align: center;

    }

    .m_main_contents .m_listArticles_row .m_pub_date {
        color: var(--main-font-color);
        font-size: 0.8em;
        flex: 0 0 100%;
        text-align: left;
        margin-right: 0px;
    }

    .m_main_contents .m_listArticles_row .m_title {
        color: var(--main-font-color);
        font-size: 0.9em;
        font-weight: 500;
        flex: 1;
        /* 追加 */
        text-align: left;
    }


    /* Biz Hour */
    .biz-hour {
        font-size: 0.8em;
    }

}