body {
    -webkit-text-size-adjust: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.3rem;
    color: #2f2f2f;
    background-image: linear-gradient(0deg, #ecf5ec, #d9f5aa);
}

#container {
    display: flex;
    justify-content: center;
}

/*　Navigation　*/

.cont_t {
    text-align:center ;
}
.cont_t img {
    width: 200px;
    height: 170px;
}

#nav-menu {
    width: 200px;
    height: 100%;
    min-height: 800px;
    background-image: linear-gradient(90deg, #36d299, #1ea091);
    list-style: none;
}

#nav-menu li {
    display:table;/*display: table-cell親要素*/
}

#nav-menu li a {
    display: table-cell; /*vertical-align適応のため*/
    height: 60px;
    padding: 3px 15px;
    text-decoration: none;
    color:#FFF;
    width: 200px; 
    text-align: left;
    font-size: 1rem;
    font-weight: 300;
    vertical-align: middle;
}

#nav-menu li a:hover {
    background-color: #02a955;
}

main {
    max-width: 800px;
    flex: 1;
    line-height: 1.7rem;
}



.top_img img {
    width: 100%;
}

/*　新着情報　*/

.information {
    width: 95%;
    margin:0 auto;
    margin-bottom: 20px;
}

.new {
    width: 130px;
    height: 38px;
}
.new img {
    width: 130px;
    height: 38px;
}

.topics {
    text-align: left;
}

.topics dl {
    padding: 12px 0;
}

.topics dt {
    font-weight: 600;
    color: #366627;
    padding-bottom: 6px;
    position: absolute;
}

.topics dd {
    margin-left: 100px;
}

.topics a:hover {
    text-decoration: underline;
}
.topics a {
    color: #981b27;
}

.jimukyoku {
    width: 95%;  
    color: #000000;
    padding: 5px 0px 20px 0px;
    margin-left: 20px;
}
.jim_t {
    font-size: 1.2rem;
    color: #366627;
    font-weight: 700;
    margin-top: 10px;
}

.jimukyoku p {
    margin-bottom: 5px;
    line-height: 1.4rem;
}

.jimukyoku p a:hover {
    text-decoration: underline;
}

/*　footer　*/

#site-footer {
    background-color: #3bbc9e;
    width: 100%;
    height: 100px;
}

#copyright {
    color: #fff;
    text-align: center;
    padding-top: 20px;
}

#drawer_toggle {
    display: none;
}

/*　text　*/

.Red_Bold {
    font-weight: 700;
    color: #F00;
}

/*  ダウンロードボタン　*/
.PDF_DL {
	font-size: 1.1rem;
	width: 80%;
	background-color: #d03d3d;
	color: #FFF;
	font-weight: 700;
	text-align: center;
	margin: 20px auto;
	padding: 2px;
	border-radius: 4px;
}
.PDF_DL a {
	display: block;
	text-decoration: none;
	color: #FFF;
    padding: 7px;
}
.PDF_DL :hover {
	background-color: #f84450;
}

@media all and (max-width:600px) {

    #nav-menu {
        box-sizing: border-box;
        position: fixed;
        top: 0px;
        width: 65%;
        height: 100%;
        background-image: linear-gradient(90deg, #0a7b52, #1ea091);
        opacity: 0.9;
        display: block;
        left: -100%;
        transition: left .5s;
        padding-top: 100px;
        z-index: 100;
    }
    
    #nav-menu.sp_open {
        left: 0;
    }

    #nav-menu ul {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #nav-menu li a {
        display: block;
        text-align: left;
        height: 50px;
        width: 100%;
        color: rgb(255, 255, 255);
        font-size: 1rem;
        text-decoration: none;
        padding-top: 5px;

    }

    #nav-menu li {
        display:block;/*display: table-cell親要素*/
    }

    #nav-menu li a:hover {
        background-color: #02a955;
    }
    
    #nav-menu li:hover a {
        color: #fff;
    }

    #drawer_toggle {
        z-index: 200;
        box-sizing: border-box;
        position: absolute;
        top: 0;
        right: 0;
        display: inline-block;
        width: 60px;
        height: 60px;
        background-color: #caf3d9;
        opacity: 0.8;
        border-radius: 3px;
        margin: 3px;
    }
    #drawer_toggle span {
        position: absolute;
        top: 19px;
        left: 17px;
        display: inline-block;
        width: 30px;
        height: 3px;
        border-radius: 2px;
        background-color: rgb(3, 65, 21);
        vertical-align: top;
    }
    #drawer_toggle span:nth-child(2) {
        margin-top: 10px;
    }
    #drawer_toggle span:last-child {
        margin-top: 20px;
    }
    #drawer_toggle.open span {
        top: 29px;
        left: 14px;
        width: 35px;
        margin: 0;
    }
    #drawer_toggle.open span:first-child {
        transform: rotate(45deg);
    }
    #drawer_toggle.open span:nth-child(2) {
        display: none;
    }
    #drawer_toggle.open span:last-child {
        transform: rotate(-45deg);
    } 

    .cont_t img {
        display: none;
    }

    .topics dt {
        position: relative;
    }
    
    .topics dd {
        margin-left: 0px;
    }

    main {
        width: 100%;
    }

    .jimukyoku {
        margin-left: 10px;
    }

    #site-footer {
        height: 50px;
    }
    #copyright {
        padding-top: 10px;
    }
}