@import url("cssreset.css");
@import url("base.css");
@import url("header.css");

/* contents */

/* common */

/* section */
section {
    width:100%;
}
section .inner {
    position:relative;
    width:94%;
    max-width:1000px;
    margin:0 auto;
    padding: 80px 0;
    text-align:left;
}

section h2 {
    position: relative;
    margin-bottom: 1em;
    border-bottom: 3px solid #aacd06;
    line-height: 1.8;
    font-size: 1.8em;
    font-weight: 700;
}
section h2 span {
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 1.0;
    font-family: "Roboto", sans-serif;
    font-size: 1.8em;
    color: #aacd06;
    opacity: 0.3;
}
section h3 {
    margin-bottom: 0.5em;
    font-size: 1.2em;
    font-weight: bold;
}
section h4 {
    font-weight: bold;
}


/* flex box */
.wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}



/* - 750px */
/*-----------------------------------------------------------*/
@media only screen and (max-width:750px) {

section .inner {
    width: 90%;
    padding: 16vw 0;
}

.wrap {
    flex-direction: column;
}


}
/* - 750px end */




