@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Tangerine:wght@400;700&display=swap');



/* ---------------------------------------
共通スタイル
--------------------------------------- */

html {
    font-size: 62.5%;
}

body {
    color: #353835;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.6rem;
}

a {
    display: inline-block;
    cursor: pointer;
    transition: .3s
}

a:hover {
    color: #91c47e;
}

.flex {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
}

.flex-start {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.inner {
    width: 88%;
    max-width: 1160px;
    margin: auto;
}

@media screen and (min-width: 1280px) {
    .sp {
        display: none;
    }
}

@media screen and (max-width: 1279px) {
    .pc {
        display: none !important;
    }

}

@media screen and (max-width: 560px) {
    html {
        font-size: 50%;
    }

    body {
        font-size: 1.8rem;
    }

    .flex {
        display: block;
    }

    .inner {
        width: 90%;
        margin: auto;
    }
}


/* ---------------------------------------

ヘッダー

--------------------------------------- */

header {
    height: 124px;
}

.header_contents {
    padding-top: 30px;
    position: relative;
}

.header_cont-ttl {
    height: 64px;
    padding: 7px 0;
    padding-left: 6%;
}

.header_cont-ttl img {
    height: 54px;
}


@media screen and (max-width: 560px) {
    header {
        height: 80px;
        position: relative;
        z-index: 1000;
    }

    .header_contents {
        display: flex;
        padding: 15px 0;
    }

    .header_cont-ttl {
        height: 50px;
        padding: 0;
        padding-left: 2%;
    }

    .header_cont-ttl img {
        height: 40px;
        margin: 5px 10px;
    }
}


/*  
メニュー
--------------------------------*/

/*PC用メニュー*/

.header_cont-menu {
    background-color: hsla(0, 0%, 100%, .8);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 64px;
    padding-right: 6%;
    position: fixed;
    right: 0;
    z-index: 999;
}

.pc_menu-gnav {
    padding-left: 25px;
    padding-right: 25px;
}

.pc_menu-gnav > li {
    padding: 0 18px;
    position: relative;
}

.pc_menu-gnav li a {
    display: block;
    line-height: 64px;
    font-weight: 600;
}


/* ドロップダウンメニュー */
.pc_menu-dropdown {
    display: block;
    position: relative;
}

.pc_menu-dropdown .sub-menu {
    display: none;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #91c47e;
    border-radius: 5px;
    position: absolute;
    top: 64px;
    left: calc(50% - 90px);
    width: 180px;
    z-index: 1;
    overflow: hidden;
}

.pc_menu-dropdown .sub-menu li:not(:last-child) {
    border-bottom: 1px solid #91c47e;
}

.pc_menu-dropdown .sub-menu li a {
    color: #353835;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 15px 15px;
    position: relative;
}

.pc_menu-gnav li.pc_menu-dropdown .sub-menu a {
    line-height: 1.2;
}

.pc_menu-dropdown .sub-menu li a:hover {
    background: #ecf6e8;
    color: #353835;
}


@media screen and (max-width: 1279px) {}

@media screen and (max-width: 560px) {
    .header_cont-menu {
        background-color: transparent;
        padding-right: 2%
    }
}


/*  
レスポンシブメニュー
--------------------------------*/
.sp_menu-btn {
    cursor: pointer;
    background: #91c47e;
    box-shadow: 0px 5px 15px 0px rgba(106, 134, 135, 0.35);
    border-radius: 20px;
    width: 120px;
    height: 40px;
    position: relative;
    z-index: 1000;
    text-align: right;
}

.sp_btn-text {
    color: #ffffff;
    font-weight: 500;
    line-height: 42px;
    letter-spacing: 1px;
    padding-right: 18px;
}

.sp_btn-line span {
    position: absolute;
    left: 18px;
    width: 24px;
    height: 2px;
    background: #ffffff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: 1000;
}

.sp_btn-line span:nth-child(1) {
    top: 12px;
}

.sp_btn-line span:nth-child(2) {
    top: 20px;
}

.sp_btn-line span:nth-child(3) {
    top: 28px;
}

/* ナビ開いてる時のボタン */
.sp_menu-btn.active .sp_btn-line span:nth-child(1) {
    background: #ffffff;
    top: 12px;
    transform: translateY(6px) rotate(-135deg);
}

.sp_menu-btn.active .sp_btn-line span:nth-child(2) {
    opacity: 0;
}

.sp_menu-btn.active .sp_btn-line span:nth-child(3) {
    background: #ffffff;
    top: 24px;
    transform: translateY(-6px) rotate(135deg);
}


@media screen and (max-width: 560px) {
    .sp_menu-btn {
        top: 15px;
    }
}


/* SPメニューのレイアウト */
.sp_menu-wrap {
    display: none;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    z-index: 999;
}

.sp_menu-cont {
    position: relative;
    width: 90%;
    margin: auto;
}

.sp_menu-ttl {
    text-align: center;
    margin: 80px 0;
}

.sp_menu-ttl img {
    height: 60px;
}

.sp_menu-gnav .flex {
    align-items: flex-start;
}

.sp_menu-main {
    min-width: 20%;
}

.sp_menu-main > a {
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
}

.sp_menu-main > a::before {
    content: '>';
    font-weight: 500;
    font-size: 1.4rem;
    color: #91c47e;
    position: absolute;
    right: -22px;
    top: 1px;
    z-index: 2;
}

.sp_menu-main > a::after {
    content: '';
    background: #fff;
    border: 2px solid #91c47e;
    width: 26px;
    height: 26px;
    border-radius: 26px;
    position: absolute;
    top: -1px;
    right: -30px;
    z-index: 1;
}

.sp_menu-main > a:hover::before {
    color: #fff;
    transition: 0.3s
}

.sp_menu-main > a:hover::after {
    background: #91c47e;
    transition: 0.3s
}

.sp_menu-main .sub-menu {
    margin: 15px 5px;
}

.sp_menu-main .sub-menu li {
    border-left: 1px solid #000;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 8px 1em;
}

.sp_menu-main .sub-menu li a {
    word-break: break-all;
}


.sp_menu-foot {
    background: #91c47e;
    border-radius: 10px;
    margin-top: 60px;
    padding: 20px 30px;
}

.sp_menu-foot ul li a {
    font-size: 1.4rem;
    padding: 0 14px;
    margin-right: 7px;
    position: relative;
}

.sp_menu-foot ul li a::before {
    content: '';
    border: 1px solid #000;
    border-left: 0;
    border-bottom: 0;
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 6px;
    transform: translateX(-25%) rotate(45deg);
}

.sp_menu-foot ul li a:hover {
    color: #353835;
    text-decoration: underline;
}


.sp_menu-foot .btn_form {
    background: #fff;
    border-radius: 5px;
    padding: 1em 2em;
}

.sp_menu-foot .btn_form:hover {
    background: #ecf6e8;
    color: #353835;
}


@media screen and (max-width: 560px) {
    .sp_menu-wrap {
        overflow: scroll;
    }


    .sp_menu-ttl {
        margin: 20px 0 40px;
        text-align: left;
    }

    .sp_menu-ttl img {
        height: 40px;
    }

    .sp_menu-main {
        margin-bottom: 20px;
    }

    .sp_menu-main > a::before {
        font-size: 1.5rem;
        right: -20px;
        top: 0px;
    }

    .sp_menu-main > a::after {
        width: 20px;
        height: 20px;
        top: 0;
        right: -25px;
    }

    .sp_menu-main .sub-menu li {
        font-size: 1.7rem;
    }

    .sp_menu-foot {
        margin: 40px 0;
        padding: 20px 30px;
    }

    .sp_menu-foot ul li a {
        font-size: 1.6rem;
    }

    .sp_menu-foot .btn_form {
        width: 100%;
        margin: 20px auto 0;
        text-align: center;

    }
}


/*メインビジュアル*/
.mv_content {
    position: relative;
}

.mv_cont-slider {
    width: 88%;
    max-width: 1240px;
    border-radius: 30px;
    overflow: hidden;
    margin: auto;
}

.mv_content .mv_cont-mark {
    width: 240px;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - 120px);
    margin: auto;
    z-index: 2;
}

.mv_cont-copy::before {
    content: url(../img/bg_top-mv.png);
    position: absolute;
    left: -40%;
    bottom: -240px;
    z-index: -1;
    height: 780px;
    width: 1000px;
    max-width: 1000px;
}

.mv_cont-slider li {
    width: 100%;
    height: 580px;
}

.mv_cont-slider li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media screen and (max-width: 560px) {
    .mv_cont-slider li {
        width: 100%;
        height: 240px;
    }

    .mv_content .mv_cont-mark {
        width: 100px;
        top: calc(50% - 50px);
    }

}



/* ---------------------------------------

トップページ

--------------------------------------- */

/*  
共通部分
--------------------------------*/

#Top h2 {
    font-size: 3.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-bottom: 1em;
    text-align: center;
}

#Top h2.ttl_line-rihgh {
    display: inline-block;
    font-size: 2.2rem;
    text-align: left;
    letter-spacing: 1px;
    padding-left: 1.5em;
    position: relative;
}

#Top h2.ttl_line-rihgh::before {
    content: "";
    background-color: #91c47e;
    border-radius: 2px;
    width: 1em;
    height: 4px;
    position: absolute;
    left: 0;
    top: calc(50% - 4px);
}

main section {
    margin: 80px auto 120px;
}

main section p {
    line-height: 1.7;
}


@media screen and (max-width: 560px) {
    main section {
        margin: 40px auto 80px;
    }

    h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2em;
    }

    .ttl_group span {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
}


/*  
お知らせ
--------------------------------*/
.info_content.flex {
    align-items: flex-start;
}

.info_cont-news {
    width: 70%;
}

.info_cont-sns {
    width: 27%;
}

/*

@media screen and (max-width: 1279px) {
    .news_ttl {
        width: 25%;
    }

    .news_list {
        width: 74%;
    }
}
*/



@media screen and (max-width: 560px) {
    .info_cont-news {
        width: 100%;
        margin-bottom: 40px;
    }

    .info_cont-sns {
        width: 100%;
    }
}


/*新着情報*/
.news_ttl a {
    display: block;
}

.news_list li {
    display: flex;
    align-items: center;
    background: #ecf6e8;
    border-radius: 10px;
    font-size: 1.5rem;
    margin-bottom: 10px;
    padding: 15px 20px;
}

.news_list-cate {
    background: #91c47e;
    border-radius: 6px;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 15px;
    padding: 5px;
    width: 8em;
}

.news_list-cate:hover {
    color: #fff;
}

@media screen and (max-width: 560px) {
    .news_ttl {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        width: 100%;
    }

    #Top .news_ttl h2 {
        margin-bottom: 0;
    }

    .news_list {
        width: 100%;
    }

    .news_list li {
        display: block;
        padding: 10px 1em;
        font-size: 1.7rem;
    }

    .news_list time {
        font-size: 1.4rem;
    }

    .news_list-ttl {
        width: 100%;
        margin-top: 10px;
    }
}



/* 公式SNS */
.sns_list li {
    width: 30%;
}

.sns_list li a {
    display: block;
    height: 100px;
    border: 2px solid #91c47e;
    border-radius: 12px;
    box-shadow: rgba(10, 100, 10, 0.1) 0px 10px 15px -3px, rgba(10, 100, 10, 0.05) 0px 4px 6px -2px;
    font-size: 1.3rem;
    line-height: 1;
    text-align: center;
    padding: 20px 0;
}

.sns_list li a:hover {
    background: #ecf6e8;
    color: #353835;
    box-shadow: none;
}

.sns_list li img {
    display: block;
    width: 36px;
    height: 36px;
    margin: 0px auto 12px;
}

.sns_comment {
    background: #91c47e;
    border-radius: 10px;
    color: #fff;
    font-size: 1.3rem;
    text-align: center;
    margin-top: 25px;
    padding: 10px;
    position: relative
}

.sns_comment::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-style: solid;
    border-width: 0 12px 18px 12px;
    border-color: transparent transparent #91c47e;
    translate: -50% -100%;
}

@media screen and (max-width: 560px) {
    .sns_list {
        display: flex;
    }

}



/*  
基本理念
--------------------------------*/
.topic_cont-ttl {
    position: relative;
    margin-bottom: 40px;
}

.topic_cont-ttl span {
    color: rgba(160, 202, 144, 0.2);
    font-size: 6rem;
    font-weight: 600;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.topic_cont-list {
    align-items: flex-start;
}

.topic_cont-list > li {
    width: 31%;
}

.topix_list-img {
    width: 100%;
    height: 250px;
}

.topix_list-img img {
    border-radius: 24px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*テキスト部分のスタイル*/
.topic_cont-list dl {
    position: relative;
}

.topic_cont-list dt {
    background: #fff;
    border-top-right-radius: 20px;
    color: #91c47e;
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1;
    height: 54px;
    width: 50%;
    position: absolute;
    top: -54px;
    padding-top: 20px;
}

.topic_cont-list dd {
    padding: 10px 0;
}

.topic_cont-list dd ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 2px solid #91c47e;
    position: relative;
    vertical-align: middle;
}

.topic_cont-list dd ul li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.topic_cont-list dd ul li a::after {
    right: 5px;
    width: 8px;
    height: 8px;
    border-top: 3px solid #91c47e;
    border-right: 3px solid #91c47e;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


@media screen and (max-width: 1279px) {}

@media screen and (max-width: 820px) {
    .topic_cont-list > li {
        width: 100%;
        margin-bottom: 40px;
    }

}


/*  
部会
--------------------------------*/
section.network {
    background-image: url(../img/bg_top-network.png);
    background-size: cover;
    background-position: 50% 0%;
    margin: 0;
    padding: 100px 0;
}

.network_cont-ttl {
    position: relative;
    margin-bottom: 40px;
}

.network_cont-ttl h2 {
    color: #fff;
    position: relative;
    z-index: 1;
}

.network_cont-ttl span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 6rem;
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.network_cont-list li {
    width: 48%;
}

.network_cont-list li a {
    display: table;
    width: 100%;
    height: 160px;
    border: 4px solid #fff;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    font-size: 2rem;
    font-weight: 600;
    line-height: 160px;
    padding: 0 30px;
    position: relative;
}

.network_cont-list li a::after {
    content: "";
    width: 16px;
    height: 16px;
    border-top: 3px solid #91c47e;
    border-right: 3px solid #91c47e;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto;
    vertical-align: middle;
}

.network_cont-list li a:hover {
    border: 4px solid #91c47e;
}

.network_list-img {
    display: table-cell;
    width: 75px;
    position: relative;
}

.network_list-img::before {
    content: "";
    background: #91c47e;
    border-radius: 30px;
    height: 60px;
    width: 60px;
    position: absolute;
    left: 0;
    top: calc(50% - 32px);
    z-index: 1;
}

.network_list-img img {
    width: 36px;
    position: absolute;
    top: calc(50% - 20px);
    left: 12px;
    z-index: 2;
}

.network_list span {
    display: table-cell;
    vertical-align: middle;
}


@media screen and (max-width: 1279px) {}

@media screen and (max-width: 820px) {
    .network_cont-list li {
        width: 100%;
        margin-bottom: 20px;
    }

    .network_cont-list li a {
        height: 80px;
        border: 2px solid #fff;
        border-radius: 15px;
        font-size: 2rem;
        line-height: 1.2;
        padding: 30px 20px;
    }

    .network_list-img {
        width: 50px;
    }

    .network_list-img::before {
        height: 40px;
        width: 40px;
        position: absolute;
        left: 0;
        top: calc(50% - 20px);
        z-index: 1;
    }

    .network_list-img img {
        width: 24px;
        top: calc(50% - 12px);
        left: 8px;
        z-index: 2;
    }

}



/*  
構成団体
--------------------------------*/
section.group {
    background-image: url(../img/bg_top-group.png);
    background-size: cover;
    background-position: 50% 50%;
    margin: 0;
    padding: 120px 0;
}

.group_cont-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    background: #ecf6e8;
    border: 3px solid #91c47e;
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 20px 28px;
}

.group_box-list {
    margin: 5px 0;
    width: 24%;
}

.group_box-list a {
    margin-bottom: 5px;
}

.group_box-list a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1279px) {}

@media screen and (max-width: 560px) {
    section.group {
        background-position: 50% 50%;
        padding: 80px 0;
    }

    .group_cont-box {
        padding: 18px;
    }

    .group_box-list {
        margin: 5px 0;
        width: 48%;
    }


}


/* ---------------------------------------
フッター
--------------------------------------- */
footer {
    background-color: #353835;
    color: #fff;
}

.footer_wrap {
    padding: 40px 0;
}

.footer_contents {
    align-items: flex-start;
    border-bottom: 1px solid #666;
    padding-bottom: 40px;
}

.footer_cont-about img {
    width: 200px;
}

.footer_cont-about dt {
    font-size: 1.7rem;
    font-weight: 500;
    margin: 10px 0;
}

.footer_cont-about dd {
    font-size: 1.5rem;
    margin-bottom: 5px;
}


/*フッターメニュー*/

.footer_cont-menu {
    text-align: right;
}

.footer_menu-main {
    width: 620px;
    margin-bottom: 20px;
}

.footer_menu-main li a {
    font-weight: 500;
    padding-left: 1.1em;
    position: relative;
}

.footer_menu-main li a::before {
    content: "●";
    color: #91c47e;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 2px;
}

.footer_menu-sub {
    width: 300px;
    margin-left: auto;
    font-size: 1.4rem;
}

.footer_cont-menu img {
    width: 240px;
    margin-top: 100px;
}

.footer_copyright {
    color: #ccc;
    font-size: 1.3rem;
    text-align: center;
    padding-top: 20px;
}


@media screen and (max-width: 560px) {
    .footer_wrap {
        padding: 40px 0;
    }

    /*フッターメニュー*/

    .footer_cont-menu {
        text-align: center;
    }

    .footer_menu-sub {
        display: flex;
        justify-content: space-between;
        font-size: 1.6rem;
        text-align: left;
        width: 80%;
        margin: 40px auto 20px;
    }

    .footer_cont-menu img {
        width: 200px;
        margin-top: 0;
    }

    .footer_copyright {
        font-size: 1.4rem;
        padding-top: 20px;
    }

}



/* ---------------------------------------

固定ページ

--------------------------------------- */

main#Page {
    background-image: linear-gradient(#ffffff, #ecf6e8 50%);
}

/*  
ページタイトル
--------------------------------*/
.page_ttl-wrap {
    background: #91c47e;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    color: #fff;
    width: 96%;
    height: 300px;
    margin-left: auto;
    margin-bottom: 60px;
    position: relative;
}

.page_ttl-cont {
    padding-left: 8%;
    padding-top: 100px;
    position: relative;
    z-index: 2;
}

.page_ttl h1 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.page_ttl-bg {
    height: 300px;
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
}

.page_ttl-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.page_ttl-bg::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0, #91c47e 100%);
    position: absolute;
    top: 0;
    left: 0;
}



@media screen and (max-width: 560px) {
    .page_ttl-wrap {
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        height: 120px;
        margin-bottom: 40px;
    }

    .page_ttl-cont {
        padding-left: 5%;
        padding-top: 30px;
    }

    .page_ttl h1 {
        font-size: 2.8rem;
        margin-bottom: 5px;
    }

    .page_ttl-bg {
        height: 120px;
        width: 40%;
    }
}


/*パンくずリスト*/
.page_ttl-breadcrumbs {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
}

.page_ttl-breadcrumbs a {
    color: #fff;
    text-decoration: underline;
}

@media screen and (max-width: 560px) {
    .page_ttl-breadcrumbs {
        font-size: 1.5rem;
        margin-bottom: 0px;
    }
}


/*  
ページレイアウト
--------------------------------*/
#Page .single_contents,
#Page .page_contents {
    background-image: url(../img/bg_top-group.png);
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 20px 0 120px;
}


#Page section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    font-size: 1.8rem;
    margin: auto;
    padding: 50px 10%;
}


@media screen and (max-width: 560px) {

    #Page .single_contents,
    #Page .page_contents {
        padding: 20px 0 80px;
    }

    #Page section {
        width: 100%;
        margin: 0;
        padding: 20px 5% 60px;
    }
}

/*  
ページ本文
--------------------------------*/

#Page section h2 {
    border-top: 2px solid #91c47e;
    border-bottom: 2px solid #91c47e;
    color: #91c47e;
    font-weight: 600;
    font-size: 2.5rem;
    padding: 18px 0;
    margin: 2.5em 0 1.5em;
}

#Page section h3 {
    background: #ecf6e8;
    border-radius: 8px;
    font-size: 2.2rem;
    font-weight: 600;
    padding: 15px 20px;
    margin: 2.5em 0 1.5em;
}

#Page section h4 {
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    padding: 5px 20px;
    margin: 2.5em 0 1.5em;
}

#Page section h4::before {
    content: "";
    background-color: #91c47e;
    border-radius: 3px;
    width: 5px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 2px;
}

#Page section h5 {
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 1px solid #999;
    padding-bottom: 5px;
    margin: 1.5em 0 1em;
}

#Page section a {
    word-break: break-all;
}

#Page section p {
    margin-bottom: 1em;
}

#Page section ul,
#Page section ol:not(form ol) {
    margin: 1.5em 1em;
}

#Page section ul li,
#Page section ol:not(form ol) li {
    line-height: 1.5;
    padding: 5px 1.2em;
    position: relative;
}

#Page section ul li::before {
    content: '';
    background-color: #91c47e;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 12px;
}

#Page section ol:not(form ol) {
    counter-reset: number;
}

#Page section ol:not(form ol) li {
    padding-left: 2em;
}

#Page section ol:not(form ol) li::before {
    counter-increment: number;
    content: counter(number);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    background-color: #91c47e;
    border-radius: 20px;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
}


#Page section ul.small_list {
    margin: 1em 0.5em;
}

#Page section ul.small_list li {
    line-height: 1.5;
    padding-right: 5px;
    font-size: 1.5rem;
}


#Page section strong {
    font-weight: 600;
}

#Page section a {
    text-decoration: underline;
}

#Page section .no-margin {
    margin-top: 0;
}

#Page section .page_btn a {
    display: block;
    border: 2px solid #91c47e;
    border-radius: 50px;
    background: #91c47e;
    color: #fff;
    font-weight: 500;
    width: 360px;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}

#Page section .page_btn a:hover {
    background: #fff;
    color: #91c47e;
}

#Page section .wp-block-image img {
    border-radius: 10px;
}

#Page section .no-radius img {
    border-radius: 0px;
}

.wp-block-image :where(figcaption) {
    font-size: 1.3rem;
    text-align: center;
    margin: 10px 0 20px;
}


.wp-block-group,
.has-background {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
}


/* テーブルデザイン */
#Page section .table-design1 {
    border-collapse: collapse;
}

#Page section .table-design1 td {
    border: none;
    border-bottom: 3px solid #ccc;
    padding: 1em;
}

#Page section .table-design1 th {
    border: none;
    border-bottom: 3px solid #91c47e;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    width: 25%;
    min-width: 5em;
}

#Page section .table-design2 {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.6rem;
}

#Page section .table-design2 th {
    color: #fff;
    font-weight: 500;
    padding: 10px;
    background: #91c47e;
    border: solid 1px #353835;
}

#Page section .table-design2 td {
    text-align: left;
}

#Page section .table-design2 thead {
    border: solid 1px #353835;
}

#Page section .table-design3 {
    margin: 40px 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1.5rem;
}

#Page section .table-design3 tr {
    border-bottom: 2px solid #91c47e;
}

#Page section .table-design3 th {
    background: #ecf6e8;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    padding: 20px 0;
    width: 30%;
}

#Page section .table-design3 td {
    padding: 20px 25px;
}


@media screen and (max-width: 560px) {
    #Page section h2 {
        font-size: 2.2rem;
        padding: 10px 0;
        margin: 2em 0 1.5em;
    }

    #Page section h3 {
        border-radius: 5px;
        font-size: 1.8rem;
        padding: 10px 15px;
        margin: 2em 0 1.5em;
    }

    #Page section h4 {
        font-size: 1.8rem;
        padding: 5px 20px;
        margin: 2em 0 1.5em;
    }

    #Page section h4::before {
        height: 24px;
        top: 3px;
    }

    #Page section ol:not(form ol) li::before {
        font-size: 1.4rem;
        line-height: 20px;
        border-radius: 3px;
        width: 20px;
        height: 20px;
        top: 0;
    }

    #Page section .page_btn a {
        width: auto;
        padding: 10px;
    }

    #Page section .no-margin {
        margin-top: 1em;
    }
}


/*  
投稿ページレイアウト
--------------------------------*/

#Page .single_contents .flex {
    align-items: flex-start;
}

#Page .single_contents article {
    width: 75%;
    margin: 0;
    margin-right: auto;
}

#Page .single_contents section {
    padding: 40px 8%;
}

.single_header {
    margin: 20px 0 50px;
}

.single_header h1 {
    font-size: 3.2rem;
    font-weight: 500;
}

.single_header-ttl {
    line-height: 1;
    margin-bottom: 15px;
}

.single_header-ttl a {
    background: #91c47e;
    border-radius: 4px;
    color: #fff;
    font-size: 1.5rem;
    padding: 5px 10px;
    margin-right: 10px;
}

.single_header-date {
    color: #91c47e;
}

.single_footer {
    margin: 60px 0 40px;
}

.single_footer a {
    display: block;
    border: 2px solid #91c47e;
    border-radius: 50px;
    background: #91c47e;
    color: #fff;
    font-weight: 500;
    width: 360px;
    margin: auto;
    text-align: center;
    padding: 15px;
}

.single_footer a:hover {
    background: #fff;
    color: #91c47e;
}


.kansyajo-cate {
    background: #91c47e;
    border-radius: 4px;
    color: #fff;
    font-size: 1.5rem;
    padding: 5px 10px;
    margin-right: 10px;
}

@media screen and (max-width: 560px) {
    #Page .single_contents article {
        width: 100%;
        margin: 0;
    }

    #Page .single_contents section {
        padding: 20px 5% 60px;
    }

    .single_header h1 {
        font-size: 2.4rem;
    }

    .single_footer a {
        width: 90%;
    }

}


/*サイドメニュー*/

#Page .single_cont-category {
    width: 20%;
}

.single_cont-category span {
    display: block;
    border: 2px solid #91c47e;
    border-radius: 8px;
    color: #91c47e;
    font-weight: 500;
    font-size: 2rem;
    padding: 5px 10px;
    margin-bottom: 1.2em;
}

.single_cont-category ul {
    padding-left: 1em;
}

.single_cont-category ul li a {
    display: block;
    font-weight: 500;
    padding: 8px 0;
}

@media screen and (max-width: 560px) {
    #Page .single_cont-category {
        width: 100%;
    }
}



/*  
アーカイブレイアウト
--------------------------------*/

#archive {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 50px;
}

#archive .archive_main {
    width: 75%;
}

#archive .news_list {
    width: 100%;
}

#archive .news_list li {
    background: #fff;
    font-size: 1.6rem;
}

@media screen and (max-width: 560px) {
    #archive {
        display: block;
        padding: 20px 0 50px;
    }

    #archive .archive_main {
        width: 100%;
    }
}


/*ページャー*/
.single_archive-pager ul {
    display: flex;
    justify-content: center;
    padding-bottom: 120px;
}

.single_archive-pager ul li {
    margin: 0 5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #ddd;
    border-radius: 5px;
    text-align: center;
}


.single_archive-pager ul li span {
    display: block;
    background: #91c47e;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
}

.single_archive-pager ul li a {
    display: block;
}

.single_archive-pager ul li a:hover {
    color: #fff;
}



/* ---------------------------------------

メールフォーム

--------------------------------------- */

.smf-progress-tracker {
    margin-bottom: 40px;
}

.smf-item__col--label {
    margin: 5px 0;
}

.smf-item:has([data-validations~="required"]) .smf-item__label__text::after {
    content: "必須";
    display: inline-block;
    padding: 5px 6px;
    color: #fff;
    background-color: #91c47e;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    margin-left: 1em;
    border-radius: 4px;
}

.snow-monkey-form input[type=text],
.snow-monkey-form input[type=email] {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
}

.snow-monkey-form input::placeholder {
    color: #999
}

.smf-action .smf-button-control__control {
    background: #91c47e;
    border: solid 1px #91c47e;
    border-radius: 5px;
    color: #fff;
    width: 200px;
    height: 40px;
}

@media screen and (max-width: 560px) {
    .smf-action .smf-button-control__control{
        width: 120px;
    }
}


/*地域木づかい県民会議*/

.area-list {
    align-items: flex-start;
}

.area-list > li {
    width: 32%;
    margin-bottom: 40px;
}

.area-list li img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.area_list-ttl {
    font-weight: 600;
    font-size: 1.7rem;
    margin: 10px;
}

.area_list-cate li {
    color: green;
    background: #fff;
    border: 1px solid green;
    border-radius: 5px;
    padding: 2px 10px;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 560px) {
    .area-list > li {
        width: 100%;
        margin-bottom: 20px;
    }
}

.pamphlet {
    text-align: center;
    font-weight: 500;
}


/*既存の修正*/
.wp-block-image img {
    margin-bottom: 10px;
}


.wp-block-group {
    margin-bottom: 30px;


    #Page section .position_center a {
        margin: auto
    }
