@charset "utf-8";

/**********************************************/
/*環境教育*/
/**********************************************/


/*プログラム一覧*/
.product dl {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.product dt {
    margin: 0;
    width: 300px;
    background-color: #dbe3f5;
    padding: 10px;
    font-weight: bold;
    font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.product dd {
    margin: 0;
    flex: 1;
    background-color: #f8f8f8;
    padding: 10px 20px;
}



/*資料*/
.material li b {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
}
.material li {
    margin-bottom: 15px;
}


/*ダウンロードボタン*/
.download {
    padding: 30px;
}
.download a {
    display: inline-block;
    text-decoration: none;
    font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
    font-weight: bold;
    line-height: 100%;
    text-align: center;
    background:url("../img/icon_arrow_w.png") no-repeat 14px center;
	background-size: 26px;
    background-color: #0b2c5c;
    
    color:#fff !important;
    border-radius: 50px;
    padding: 12px 30px 12px 50px;
}
.download a:hover {
    transition: all .5s;
    background-color: #039393;
}






/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1480px) {
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 980px) {
}

@media screen and (max-width: 780px) {
    .product dl {
        flex-direction: column;
        margin-bottom: 10px;
        padding: 10px;
    }

    .product dt {
        width: 100%;
        background-color: transparent;
        padding: 0;
        display: block;
        /*
        background-color: #dbe3f5;
        padding: 10px;
        font-weight: bold;
        font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
        */
     }
    .product dd {
        background-color: transparent;
        padding: 0;
        margin: 10px 0 0 1em;
    }


    .material ul {
        margin-left: 20px;
        padding-left: 0;
    }
}

@media screen and (max-width: 580px) {
}

@media screen and (max-width: 380px) {
}


