@charset "UTF-8";

/*-------------------------------------------*/
/*メインイメージ*/
/*-------------------------------------------*/
body {
    overflow-x: hidden;
}

.mainimg {
    position: relative;
    margin-top: 97px;
}

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

.text_img {
    position: absolute;
    top: 50px;
    right: 0;
    left: 11px;
    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;
        padding-right: 0;
    }

    .text_img {
        left: 0;
    }

}

/*-------------------------------------------*/
/*会員規約*/
/*-------------------------------------------*/
section.terms .maxWid {
    max-width: 800px;
}

section.terms {
    margin-top: 178px;
    margin-bottom: 120px;
}

.terms_item {
    margin-bottom: 60px;
}


.terms_item .terms_heading {
    border-bottom: 1px solid #b1409b;
    padding-bottom: 5px;
    margin-bottom: 13px;
}

.terms_item .terms_heading h3 {
    font-size: 2.0rem;
    color: #000;
}

.terms_item p {
    font-size: 1.5rem;
}

@media screen and (max-width: 480px) {
    section.terms {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .terms_item .terms_heading {
        padding-bottom: 9px;
        margin-bottom: 9px;
    }

    .terms_item .terms_heading h3 {
        font-size: 1.4rem;
    }

    .terms_item p {
        font-size: 1.3rem;
    }
}