@charset "utf-8";

#greeting p {
    text-indent: 1em;
    text-align: justify;
    padding-right: 1em;
    padding-left: 1em;
}

#greeting h3 {
    clear: both;
    /*
    background-color: #f7f7f7;
    border-radius: 3px;
    padding: 15px 15px;
    */
    padding: 10px 15px;
}
#greeting h3 span {
    border-left: 5px #a62430 solid;
    padding-left: 10px;
}
#greeting h3~h3 {
    margin-top: 40px;

}
#greeting ol {
    margin-left: 2em;
    padding-left: 1em;
}
.sign {
    margin-top: 60px;
    text-align: right;
    font-size: 1.2rem;
}

/*概要*/
.overview {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.overview-txt {
    flex: 1;
}
.overview-map {
    width: 500px;
    margin-left: 30px;
}

.tbl-overview {
    width: 100%;
    border-collapse: collapse;
    border: 1px #ddd solid;
}
.tbl-overview th {
    width: 160px;
    padding: 10px 5px;
    background-color: #f5f5f5;
    border-bottom: 1px #ddd solid;
    line-height: 160%;
}
.tbl-overview td {
    padding: 10px 10px;
    border-bottom: 1px #ddd solid;
    line-height: 160%;
}

/*案内図*/
.map {
    height: 600px;
}
.map iframe {
    width: 100%;
    height: 100%;
    border-width: 0;
} 

/*活動内容*/
.items {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 40px);
    margin-left: -40px;
}
.items .item {
   width: calc((100% / 3) - 40px);
   margin-left: 40px;
   margin-bottom: 30px;
}
.items .item .item-img {}

.items .item .item-img img {
    border-radius: 5px;
    display: block;
}
.items .item .item-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 15px;
}


.cut02 {
    float: right;
    margin: 30px 0 30px 60px;
    width: 100%;
    max-width: 220px;
}



/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 980px) {
    #greeting p {
        padding-right: 0em;
        padding-left: 0em;
    }
    #greeting ol {
        margin-left: 1em;
        padding-left: 0em;
    }
    .sign {
        margin-top: 40px;
        font-size: 1.1rem;
    }

    .overview-txt {
        width: 100%;
        margin-bottom: 20px;
    }
    .overview-map {
        width: 100%;
        margin-left: 0;
    }
    .map {
        height: 400px;
    }

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

    .items {
        width: calc(100% + 20px);
        margin-left: -20px;
    }
    .items .item {
        width: calc((100% / 2) - 20px);
        margin-left: 20px;
     }
     .items .item .item-title {
        font-size: 1.1rem;
    }
    .tbl-overview th {
        width: 120px;
    }
    .cut02 {
        max-width: 120px;
    }
}
@media screen and (max-width: 580px) {
}

@media screen and (max-width: 380px) {
    .tbl-overview {
        border-width: 0;
    }
    .tbl-overview th {
        width: 100%;
        padding: 0 10px;
        background-color: transparent;
        border-bottom-width: 0;
        line-height: 140%;
        display: block;
        text-align: left;
    }
    .tbl-overview td {
        width: 100%;
        padding: 5px 10px;
        margin-bottom: 20px;
        border-bottom: 1px #ddd solid;
        line-height: 140%;
        display: block;
    }

    .items {
        width: 100%;
        margin-left: 0;
    }
    .items .item {
        width: 100%;
        margin-left: 0;
     }

     .cut02 {
        display: none;
    }
    .sign {
       font-size: 1rem;
    }
}
