@charset "UTF-8";

/* ========== ========== ========== ========== ==========
　下層共通パーツ
========== ========== ========== ========== ==========*/
/* ========== ========== FV ========== ==========*/
.lower_fv {
    width: 100%;
    height: 200px;
    margin: 0 auto 40px;
    display: flex;
    position: relative;
    justify-content: space-between;
    background: url("../img/bg_paper.png");
}
.lower_fv .left {
    margin: 15px 30px;
}
.lower_fv .right {
    width: 50%;
    background: url("../img/lower_bg_right.png") no-repeat;
    background-position: right top;
}
.lower_title {
    position: absolute;
    z-index: 1;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    text-align: center;
}
.lower_title h2 {
    font-size: 30px;
    font-weight: bold;
}
.lower_title h2 span {
    display: block;
    font-family: Neonderthaw;
    font-size: 50px;
    color: var(--pink_text);
    font-weight: normal;
    line-height: 0.9em;
}
@media screen and (max-width: 740px) {
    #wrapper {
        margin-top: 60px;
    }
    .lower_fv {
        height: auto;
        margin: 0 auto 20px;
    }
    .lower_fv .left,
    .lower_fv .right {
        display: none;
    }
    .lower_title {
        width: 100%;
        position: relative;
        bottom: auto;
        background: url("../img/lower_bg_right.png") no-repeat;
        background-position: right 0 top -20px;
        background-size: contain;
    }
    .lower_title h2 {
        font-size: 20px;
        margin: 30px 20px 20px;
    }
}
