@charset "UTF-8";

.under_title_area {
    width: 100%;
    height: 20vh;
    background-color: #f5f5f5;
}

.under_title_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    height: 20vh;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.under_title {
    font-size: 4.2rem;
    text-align: center;
}

.under_title span {
    display: block;
    font-size: 1.6rem;
}

.contents_title {
    font-size: 2.6rem;
    text-align: center;
    margin: 40px 0 24px 0;
}

@media screen and (min-width:768px) {
    .under_title_area {
        height: 30vh;
    }

    .under_title_inner {
        height: 30vh;
    }

    .under_title {
        font-size: 6.2rem;
    }

    .under_title span {
        font-size: 2rem;
    }

    .contents_title {
        font-size: 3.6rem;
        margin: 120px 0 72px 0;
    }
}

/*===========min-width:768px===========*/