@charset "utf-8";

/* base */
html{
    font-size: 100%;
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    color: #24292e;
    /* font-family: "Noto Sans JP"; */
}

a{
    text-decoration: none;
    color: #333;
}

p{
    font-size: 1.3rem;
}

img{
    max-width: 100%;
}

li{
    list-style: none;
    font-size: 1.2rem;
}



/* header */
.header{
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.8);
}

.header-logo{
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 150;
}

.header-logo:hover{
    opacity: 0.5;
}

.header-navlist{
    display: flex;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

.header-item{
    padding: 0 10px;
}

.header-item > a{
    text-align: center;
    padding: 5px;
    font-weight: bold;
    font-size: 1.0rem;
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
}

.header-item > a:hover{
    border-bottom: 2px solid #00a556;
}

.menu-modal-open-button{
    display: none;
    cursor: pointer;
}

.menu-modal-open{
    content: "";
    position: absolute;
    z-index: 999;
    top: 70px;
    right:50px;
    width: 25px;
    display: block; 
}

.menu-modal-open i{
    content: "";
    position: absolute;
    background: #24292e;
    top: calc(50% - 5px);
    width: 100%;
    height: 2px;
}

.menu-modal-open::before{
    content: "";
    position: absolute;
    background: #24292e;
    top: calc(50% - 10px);
    width: 100%;
    height: 2px;
    transition: .25s;
}

.menu-modal-open::after{
    content: "";
    position: absolute;
    background: #24292e;
    top: calc(50% - 0px);
    width: 100%;
    height: 2px;
    transition: .25s;
}

.menu-modal-open.modal-expanded-state i{
    display: none;
}

.menu-modal-open.modal-expanded-state::before{
    background-color: #24292e;
    transform: rotate(45deg);
    transition: .25s;
    top: 0px;
}

.menu-modal-open.modal-expanded-state::after{
    background-color: #24292e;
    transform: rotate(-45deg);
    transition: .25s;
}


.menu-modal-overlay{
    display: none;
    position: fixed;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.menu-modal-container{
    display: none;
    position: absolute;
    padding: 120px 0 20px;
    background-color: #fff;
    width: 100%;
}

.menu-modal-item{
    padding: 20px;
    border-bottom: 1px solid #24292e;
}

.menu-modal-item:hover{
    opacity: 0.5;
}

.menu-modal-item>a{
    display: flex;
    justify-content: space-between;
    color: #24292e;
    font-size: 1.5rem;
    font-weight: 600;
}

.menu-modal-contact{
    margin: 20px 0;
    text-align: center;
}

.menu-modal-contact:hover{
    opacity: 0.5;
}

.menu-modal-contact>a>p{
    margin: 0 auto;
    padding: 5px 0;
    border-radius: 15px;
    width: 80%;
    background-color: #00a556;
    color: #fff;
    font-weight: 600;
}

@media screen and (max-width: 800px) {
    .header-navlist{
        display: none;
    }
    .menu-modal-open-button{
        display: block;
    }    
}

@media screen and (max-width: 480px) {
    html{
        scroll-padding-top: 80px;
    }
    .header{
        height: 80px;
    }
    .header-logo{
        top: 15px;
        width: 200px;
    }
    .menu-modal-open{
        top: 50px;
        right:35px;
    }
}

/* main word */
.main-words{
    position: relative;
    height: 900px;
    text-align: center;
}

.main-words .main-word{
    position: absolute;
    writing-mode: vertical-rl;
    top: 30%;
    left: 50%;
    transform: translate(-50%);
    font-size: 10.0rem;
    color: #fff;
    text-shadow:
    3px 3px 0 #000,
    -3px 3px 0 #000,
    -3px -3px 0 #000,
    3px -3px 0 #000;
}

.main-word span{
    position: relative;
    writing-mode: vertical-rl;
    top: -90px;
    right: 0;
    font-size: 5.0rem;
    color: #fff;
    text-shadow:
    3px 3px 0 #000,
    -3px 3px 0 #000,
    -3px -3px 0 #000,
    3px -3px 0 #000;
}

@media screen and (max-width: 1080px) {
    .main-words .main-word{
        font-size: 7.0rem;
        top: 35%;
    }
    .main-word span{
        top: -50px;
        font-size: 3.0rem;
    }
}

@media screen and (max-width: 800px) {
    .main-words .main-word{
        font-size: 4.0rem;
        top: 40%;
    }
    .main-word span{
        top: -30px;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .main-words .main-word{
        top: 40%;
        font-size: 3.0rem;
    }
    .main-words span{
        top: -20px;
        font-size: 2.0rem;
    }
}

/* base section */
.page-blank{
    height: 120px;
}

.section.white-bg{
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.section.green-bg{
    width: 100%;
    background: rgba(0, 165, 86, 0.9);
    color: #fff;
}

.wrapper{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4% 50px;
    text-align: center;
}

.wrapper.page-title{
    padding-bottom: 20px;
}

.wrapper.page-content{
    padding-top: 20px;
    min-height: 500px;
}

.wrapper.page-content.news-content{
    text-align: start;
}

.wrapper.page-content.left-text{
    text-align: left;
}

.sec-title{
    font-size: 2.5rem;
    padding: 20px 0 0;
}

.sec-sub-title{
    font-size: 1.5rem;
    padding: 0 0 20px;
}

.wrapper.pankuzu{
    padding: 20px;
    text-align: left;
}

.pankuzu a:hover{
    opacity: 0.5;
}

/* background */
.background{
    position: fixed;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
}

.background img{
    width: 100%;
}

@media screen and (max-width: 800px) {
    .background{
        width: 100%;
    }
}

/* section bottom button */
.button{
    display: inline-block;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    padding: 2px 5px;
    border: 2px solid #333;
    border-radius: 15px;
    transition: color,border .25s;
}

.green-bg .button{
    color: #fff;
    border: 2px solid #fff;
    border-radius: 15px;
    transition: color,border .25s;
}

.button:hover{
    color: #666;
    border: 2px solid #666;
}

/* grid */
.grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}

.grid-4 > .grid-item{
    width: 24%;
    transition: all .25s;
}

.grid-item.visible:hover{
    transform: scale(1.05);
}

.grid-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.grid-item.visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 800px) {
    .grid-4 > .grid-item{
        width: 48%;
        margin-bottom: 20px;
    }
}


@media screen and (max-width: 480px) {
    .grid-4 > .grid-item{
        width: 100%;
    }
}

.left-description{
    text-align: left;
}

.introduction-member{
    margin: 10px 0 10px auto;
}

/* news */
.card{
    width: 95%;
    max-width: 250px;
    min-height: 330px;
    margin: 5px auto;
    padding: 0;
    text-align: center;
    background-color: #00a556;
    border-radius: 5px;
    overflow: hidden;
}
/* background-color: #00D378; */

.card-link{
    display: block;
    position: relative;
}

.card-label{
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #333;
    border-radius: 5px;
    display: block;
    padding: 1px 10px;
    font-size: 1.5rem;
    font-weight: bold;
}

.card-image{
    width: 270px;
    height: 195px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 0 auto 10px;
}

.card-tag{
    width: 50%;
    font-size: 0.9rem;
    background-color: #fff;
    color: #00a556;
    font-weight: bold;
    border-radius: 5px;
}

.card-time{
    width: 50%;
    font-size: 0.9rem;
    color: #fff;
}

.card-description{
    width: 95%;
    margin: 0 auto;
    font-size: 1.0rem;
    color: #fff;
    text-align: left;
}

@media screen and (max-width: 1000px) {
    .card{
        min-height: 280px;
    }
}

@media screen and (max-width: 800px) {
    .card{
        min-height: 330px;
    }
}

/* policy */
.policy-image{
    transition: all .10s;
}

.policy-image:hover{
    transform: scale(1.02);
    box-shadow: 0 0 15px #fff;
}

/* member */
.member-description{
    margin-bottom: 10px;
    font-weight: bold;
}

.member-map{
    margin: 0 auto;
    background-color: #fff;
}

.map-none{
    position: relative;
}

.area1,.area2,.area3,.area4,.area5,.area6,.area7,.area8,.area9,.area10,
.area11,.area12,.area13,.area14,.area15,.area16,.area17,.area18,.area19,.area20,
.area21,.area22,.area23,.area24,.area25,.area26,.area27,.area28,.area29,.area30{
    position: absolute;
    top: 50px;
    left: 200px;
    cursor: pointer;
    display: inline-block;
    color: rgba(0, 0, 0, 0);
}

.overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 99;
}

.modal-window-1,.modal-window-2,.modal-window-3,.modal-window-4,.modal-window-5,
.modal-window-6,.modal-window-7,.modal-window-8,.modal-window-9,.modal-window-10,
.modal-window-11,.modal-window-12,.modal-window-13,.modal-window-14,.modal-window-15,
.modal-window-16,.modal-window-17,.modal-window-18,.modal-window-19,.modal-window-20,
.modal-window-21,.modal-window-22,.modal-window-23,.modal-window-24,.modal-window-25,
.modal-window-26,.modal-window-27,.modal-window-28,.modal-window-29,.modal-window-30{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 600px;
    background-color: #fff;
    border-radius: 10px;
    z-index: 150;
    padding: 20px;
    overflow-y: scroll;
}

.member-modal-closed{
    position: absolute;
    width: 40px;
    top: 20px;
    right: 20px;
    border-radius: 50%;
    padding: 5px;
    background-color: #00a556;
}

#member h4{
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.member-list{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}

.member-pf-left{
    width: 50%;
}

.member-pf-image{
    width: 150px;
    border-radius: 10px;
}

.member-pf-right{
    width: 50%;
    padding-top: 30px;
}

.member-position{
    font-size: 1.0rem;
}

.member-name{
    font-size: 1.3rem;
}

.member-sns-icon{
    width: 30px;
    height: 30px;
    border-radius: 5px;
}

.member-box-sp-list{
    display: none;
    margin: 20px auto 0;
    border-spacing: 10px;
}

.member-box-sp-list>tbody>tr>th{
    width: 200px;
    padding: 5px;
    background-color: #00a556;
    color: #fff;
    border-radius: 5px;
    font-size: 1.5rem;
    cursor: pointer;
}

@media screen and (max-width: 819px) {
    .map-none{
        display: none;
    }
    .member-box-sp-list{
        display: inline-block;
    }
    .member-description{
        font-size: 1.0rem;
        font-weight: bold;
    }
}

@media screen and (max-width: 480px) {
    .member-description{
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    .member-box-sp-list>tbody>tr>th{
        font-size: 1.0rem;
    }
    .modal-window-1,.modal-window-2,.modal-window-3,.modal-window-4,.modal-window-5,
    .modal-window-6,.modal-window-7,.modal-window-8,.modal-window-9,.modal-window-10,
    .modal-window-11,.modal-window-12,.modal-window-13,.modal-window-14,.modal-window-15,
    .modal-window-16,.modal-window-17,.modal-window-18,.modal-window-19,.modal-window-20,
    .modal-window-21,.modal-window-22,.modal-window-23,.modal-window-24,.modal-window-25,
    .modal-window-26,.modal-window-27,.modal-window-28,.modal-window-29,.modal-window-30{
        width: 300px;
        height: 400px;
    }
}

.member-description{
    margin-bottom: 10px;
}

.member-page-list{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.member-page-pf-image{
    width: 200px;
    border-radius: 10px;
}

.member-page-sns-icon{
    margin: 0 auto;
}

.member-page-pf-left,.member-page-pf-right{
    width: 40%;
}

.member-page-pf-right{
    text-align: left;
    padding-left: 20px;
}

.member-type{
    font-size: 2.0rem;
    font-weight: 600;
    margin: 40px 0;
}

.member-page-position{
    font-size: 1.2rem;
    font-weight: 600;
    color: #00a556;
    margin: 0 0 10px;
}

.member-page-pf-cat{
    font-size: 1.2rem;
    font-weight: 600;
    margin: 10px 0;
}

@media screen and (max-width: 480px) {
    .member-page-list{
        display: block;
    }
    .member-page-pf-left,.member-page-pf-right{
        width: 100%;
    }
}

/* .form-table tr{} */
.form-table{
    margin: 0 auto;
    border-spacing: 10px;
}

.form-table th{
    padding: 10px;
    text-align: left;
}

.form-table td{
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #24292e;
}

textarea, input {
    width: 100%;
}

.form-button{
    margin-top: 20px;
    text-align: center;
}

@media screen and (max-width: 480px) {

}

/* footer */
.footer{
    padding: 50px 4% 0;
    background-color: #00a556;
}

.footer-list{
    display: flex;
    justify-content: center;
    gap: 10%;
}

.footer-list-content{
    min-width: 40%;
}

.footer-list-content>.footer-map{
    text-align: left;
}

.footer-logo>a>img{
    display: block;
    min-height: 75px;
    margin-bottom: 20px;
}

.footer-logo>a>img:hover{
    opacity: 0.5;
}

.footer-mapaddress{
    font-style: normal;
    padding: 0 0 20px;
}

.footer-mapaddress>a{
    color: #fff;
    font-size: 1.1rem;
}

.footer-tel-fax{
    display: flex;
    justify-content: left;
    gap: 5%;
    color: #fff;
    margin-top: 20px;
    font-size: 1.1rem;
}

.footer-tel-fax>p>a{
    color: #fff;
}

.footer-nav{
    display: flex;
    justify-content: end;
    margin: 5px 20px;
}

.footer-nav-item{
    padding: 5px 5px 5px 20px;
    font-size: 0.8rem;
}

.footer-nav-item a{
    color: #fff;
}

.footer-nav-item:hover{
    opacity: 0.5;
}

.copyright{
    padding: 50px 0 20px;
    text-align: center;
    color: #fff;
}

.copyright>p{
    font-size: 1.0rem;
}

.copyright>p>a{
    color: #fff;
}

@media screen and (max-width: 1080px) {
    .footer-mapaddress>a>span{
        display: block;
    }
    .footer-tel-fax{
        display: block;
    }
    .footer-tel-fax>p{
        padding: 5px 0;
    }
}

@media screen and (max-width: 800px) {
    .footer-list{
        display: block;
    }
    .footer-list-content{
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 480px) {
    .footer-mapaddress>a{
        font-size: 1.0rem;
    }
    .footer-nav{
        display: block;
        text-align: end;
    }
}

/* 党規約 */
.rule-content{
    margin: 20px 10px;
}

.rule-title{
    margin: 20px 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600
}

#rule li{
    font-size: 1.0rem;
}

/* 綱領 */
.gen-plan-content-title{
    margin: 70px 10px 10px;
    padding: 30px 0;
    border: 2px solid #333;
    text-align: center;
}

.gen-plan-content-title p{
    font-size: 1.2rem;
    font-weight: 600;
}

.gen-plan-contents{
    margin: 20px 0;
}

.gen-plan-item{
    font-size: 1.2rem;
    font-weight: 600;
}

#generalPlan li{
    font-size: 1.0rem;
}

/* プライバシーポリシー */

.privpoli-header{
    margin: 10px;
    padding: 10px;
    border: 2px solid #333;
    text-align: center;
}

.privpoli-header p{
    font-size: 1.0rem;
}

.privpoli-contents{
    margin: 20px 0;
}

.privpoli-item{
    font-size: 1.2rem;
    font-weight: 600;
}

#privacyPolicy li{
    font-size: 1.0rem;
}


/* sitemap */

.sitemap-box{
    margin: 10px 0.5%;
    padding: 10px;
    width: 24%;
    background-color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.sitemap-title{
    border-left: 3px solid #00a556;
    margin-bottom: 5px;
    padding-left: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.sitemap-content-item{
    padding: 3px 2px 0;
    font-size: 1.0rem;
    font-weight: 400;
}

.sitemap-title:hover,.sitemap-content-item:hover{
    opacity: 0.5;
}

.sitemap-content-item::before{
    content: "> ";
    font-weight: 400;
}

@media screen and (max-width: 800px) {
    .grid-4 > .sitemap-box{
        width: 48%;
        margin-bottom: 20px;
    }
}


@media screen and (max-width: 480px) {
    .grid-4 > .sitemap-box{
        width: 100%;
    }
}
