@charset "UTF-8";

/*-------------------------------------------*/
/*メインイメージ*/
/*-------------------------------------------*/
.mainimg {
    position: relative;
    margin-top: 97px;
}

.bgimg img {
    width: 100%;
    object-fit: cover;
    max-height: 252px;
    min-height: 252px;
}

.text_img {
    position: absolute;
    top: 53px;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.symbol_wrap {
    position: relative;
}

.symbol {
    position: absolute;
    top: -60px;
    right: 0;
    left: 0;
    bottom: 0;
}

.symbol img {
    margin: 0 auto;
}




@media screen and (max-width: 768px) {

    .mainimg {
        margin-top: 72px;
    }
}

@media screen and (max-width: 480px) {
    .mainimg {
        margin-top: 58px;
    }

    .bgimg img {
        min-height: 200px;
    }

    .text_img img {
        max-height: 80px;
    }

    .symbol img {
        max-width: 80px;
    }

}

/*-------------------------------------------*/
/*メイン*/
/*-------------------------------------------*/
section.main {
    padding-top: 130px;
    padding-bottom: 120px;
}

.text_area {
    text-align: center;
    margin-bottom: 30px;
}

.text_area h3 {
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "游ゴシック", sans-serif;
}

.text_area span {
    font-size: 2.0rem;
    line-height: 1.7;
    display: block;
    color: #333;
}

.btn_area a {
    display: block;
    max-width: 270px;
    width: 100%;
    margin: 0 auto;
}

.btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    background-color: #d01c97;
    color: #fff;
    max-width: 270px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
}

@media screen and (max-width: 768px) {
    section.main {
        padding-top: 130px;

        padding-bottom: 80px;
    }


    .text_area h3 {
        font-size: 2.4rem;
    }

    .text_area span {
        font-size: 1.5rem;
    }

    .btn_wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
        background-color: #d01c97;
        color: #fff;
        max-width: 200px;
        width: 100%;
        margin: 0 auto;
        padding: 15px 0;
    }

    .btn_area a {
        max-width: 200px;
    }
}

@media screen and (max-width: 480px) {
    section.main {
        padding-top: 100px;
    }
}