@charset "UTF-8";

/* CSS Document */

.inner-future {
    width: 100%;
    position: relative;
}
.inner-future h1 {
    width: 100%;
}
.inner-future h2 {
    width: 90%;
    border-left: 10px solid #538fcb;
    margin: 20px auto;
    padding: .2em 1em;
}
.inner-future .inner-item {
    width: 90%;
    margin: 20px auto;
}
.inner-future .inner-item p {
    margin-bottom: 1.5em;
}
.inner-future .inner-item ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.inner-future .inner-item ul li {
    width: 48%;
    background-color: #EEE;
}
.inner-future .inner-item ul li p {
    font-size: 90%;
    line-height: 160%;
    padding: 1.5em 1.5em 0;
}
.inner-future .inner-item p small {
    display: block;
    color: #999;
    line-height: 140%;
    margin-bottom: 1.5em;
}
.inner-future img {
    width: 100%;
	max-width: 100%;
	height: auto;
}

@media only screen and (min-width:1px) and (max-width: 768px) {
    
    .inner-future {
        width: 100%;
        position: relative;
    }
    .inner-future h1 {
        width: 100%;
    }
    .inner-future h2 {
        width: 90%;
        border-left: 10px solid #538fcb;
        margin: 4% auto;
        padding: .2em 1em;
    }
    .inner-future .inner-item ul {
        width: 100%;
        display: block;
    }
    .inner-future .inner-item ul li {
        width: 100%;
        background-color: #EEE;
    }
    .inner-future .inner-item ul li p {
        font-size: 90%;
        line-height: 160%;
        padding: 1.5em;
    }
    .inner-future p {
        margin-bottom: 1.5em;
    }
}


