@charset "UTF-8";

/* CSS Document */

.inner-voice {
    width: 100%;
    position: relative;
}
.inner-voice h1 {
    width: 100%;
}
.inner-voice h2 {
    width: 90%;
    border-left: 10px solid #538fcb;
    margin: 20px auto;
    padding: .2em 1em;
}
.inner-voice dl {
    width: 90%;
    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;
    
    margin: 0 auto;
}
.inner-voice dl:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.inner-voice dl dt {
    width: 46%;
}
.inner-voice dl dd {
    width: 50%;
}
.inner-voice dl dd p {
    margin-bottom: 1.5em;
}
.inner-voice dl dd p.right {
    text-align: right;
}
.inner-voice dl dd small {
    display: block;
    color: #999;
    line-height: 140%;
    margin-bottom: 1.5em;
}
.inner-voice .add-photo {
    width: 90%;
    margin: 20px auto 0;
}
.inner-voice img {
    width: 100%;
	max-width: 100%;
	height: auto;
}

@media only screen and (min-width:1px) and (max-width: 768px) {
    
    .inner-voice {
        width: 100%;
        position: relative;
    }
    .inner-voice h1 {
        width: 100%;
    }
    .inner-voice h2 {
        width: 90%;
        border-left: 10px solid #538fcb;
        margin: 4% auto;
        padding: .2em 1em;
    }
    .inner-voice dl {
        width: 90%;
        display: block;

        margin: 0 auto;
    }
    .inner-voice dl dt {
        width: 100%;
    }
    .inner-voice dl dd {
        width: 100%;
        margin-top: 5%;
    }
    .inner-voice dl dd p {
        margin-bottom: 1.5em;
    }
}


