@charset "utf-8";
.sectionInner {
    margin: 0 auto;
    padding: 5% 0 18%;
}

.tac {
    text-align: center;
}

.tal {
    text-align: left;
}

.tar {
    text-align: right;
}

.dispFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.j-cont-sb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.j-cont-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.a-items-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.a-items-fe {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.a-items-s {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}
.flex-wrap{ -ms-flex-wrap:wrap; flex-wrap:wrap;}

.pcNone {
    display: none;
}

.spNone {
    display: block;
}

@media screen and (min-width:600px) {
    .pcNone {
        display: block;
    }
    .spNone {
        display: none;
    }
}