/* CSS Document */
#content_wrap  div {
    padding: 30px;
    background: #FFF;
    border: 2px solid #009844;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px; 
    border-radius: 5px;
}

h2 {
    font-size: 18pt;
}

p {
    margin-top: 15px;
}

footer {
    position: absolute;
    bottom: 0;
}

@media screen and (min-width : 896px) {
    #content_wrap {
        margin-top: 220px;
    }
}

/*タブレット*/
@media screen and (max-width : 896px) {
    h2 {
        font-size: 16pt;
    }
}

/*スマホ*/
@media screen and (max-width : 480px) {
    h2 {
        font-size: 14pt;
    }
}