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

/* interview */

/* kv */
section#kv .bg img {
    display: block;
}
section#kv .text {
    position: absolute;
    top: 20%;
    left: 4.5%;
    text-align: left;
}
section#kv p {
    text-shadow: 1px 1px 10px #ffffff,-1px 1px 10px #ffffff,1px -1px 10px #ffffff,-1px -1px 10px #ffffff;
}
section#kv p.name {
    display: inline-block;
    margin-bottom: 1em;
    border-bottom: 1px solid #231815;
    line-height: 2.0;
    font-size: 2.0vw;
    font-weight: 700;
}
section#kv p.name span {
    font-size: 1.3vw;
}
section#kv p.catch {
    line-height: 1.4;
    font-size: 4.04vw;
    font-weight: 700;
}
@media only screen and (max-width: 750px) {
    section#kv {
        display: flex;
        align-items: center;
        height: 48vw;
        background-repeat: no-repeat;
        background-position: center top;
        background-image: url("../images/interview/kv_sp.jpg");
        background-size: contain;
    }
    section#kv .text {
        position: relative;
        top: 0;
        left: 0;
        margin-left: 4.5%;
    }
    section#kv p.name {
        font-size: 2.933vw;
    }
    section#kv p.name span {
        font-size: 2.053vw;
    }
    section#kv p.catch {
        font-size: 4.8vw;
    }
}


/* contents */
section.contents {
    padding-top: 68px;
    padding-bottom: 60px;
    text-align: left;
}
section.contents.bg {
    background-color: #fafaf0;
}
section.contents .inner {
    width: 85%;
    max-width: 850px;
    padding-left: 0;
    padding-right: 0;
}

section.contents h2 {
    display: inline-block;
    position: relative;
    margin-bottom: 1em;
    font-size: 32px;
    font-weight: 700;
    color: #782c2f;
}
section.contents h2:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 16px;
    background-color: #e87e28;
    opacity: 0.2;
    content: "";
}
section.contents p {
    margin-bottom: 1em;
    font-size: 18px;
    font-weight: 500;
}
section.contents p.bottom {
    margin-bottom: 68px;
}
section.contents figure {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}
section.contents figure.small {
    width: 72%;
    max-width: 600px;
}
section.contents figure figcaption {
    margin-top: 1em;
    font-size: 16px;
    font-weight: 500;
}

@media only screen and (max-width: 750px) {
    section.contents {
        padding-top: 12vw;
        padding-bottom: 8vw;
    }
    section.contents h2 {
        font-size: 5.0vw;
    }
    section.contents h2:after {
        height: 2.666vw;
    }
    section.contents p {
        font-size: 4.2vw;
    }
    section.contents p.bottom {
        margin-bottom: 12vw;
    }
    section.contents figure.small {
        width: 68vw;
        margin-bottom: 6.4vw;
    }
    section.contents figure figcaption {
        font-size: 3.2vw;
    }
}


