@charset "UTF-8";
/* ----------------------------------------------------------------
汎用クラスの定義
---------------------------------------------------------------- */

/* 改行 */
.br_sp {
    display: inline;
}
.br_pc {
    display: none;
}
@media print, screen and (min-width: 768px) {
    .br_sp {
        display: none;
    }
    .br_pc {
        display: inline;
    }
}

/* PC・SP　非表示 */
.pcNone {
    display: block;
}
.pcNone_inline {
    display: inline;
}
.spNone {
    display: none;
}
.spNone_inline {
    display: none;
}
@media print, screen and (min-width: 768px) {
    .pcNone {
        display: none;
    }
    .pcNone_inline {
        display: none;
    }
    .spNone {
        display: block;
    }
    .spNone_inline {
        display: inline;
    }
}

/* テキスト揃え */
.textLeft{text-align:left !important;}
.textCenter{text-align:center !important;}
.textRight{text-align:right !important;}
.verticalTop{ vertical-align:top !important;}
.verticalMiddle{ vertical-align:middle !important;}
.verticalBottom{ vertical-align:bottom !important;}

/* インデント */
.textIndent {
    text-indent:1em;
}

/* フォントウェイト */
.fontBold {
    font-weight: bold;
}

/* フォントサイズ */
.font10{font-size: 1rem;}
.font11{font-size: 1.1rem;}
.font12{font-size: 1.2rem;}
.font13{font-size: 1.3rem;}
.font14{font-size: 1.4rem;}
.font15{font-size: 1.5rem;}
.font16{font-size: 1.6rem;}
.font17{font-size: 1.7rem;}
.font18{font-size: 1.8rem;}
.font19{font-size: 1.9rem;}
.font20{font-size: 2rem;}
.font21{font-size: 2.1rem;}
.font22{font-size: 2.2rem;}
.font23{font-size: 2.3rem;}
.font24{font-size: 2.4rem;}
.font25{font-size: 2.5rem;}
.font26{font-size: 2.6rem;}


/* マージン */
.bottommargin0{margin-bottom:0 !important;}
.bottommargin5{margin-bottom:5px !important;}
.bottommargin10{margin-bottom:10px !important;}
.bottommargin15{margin-bottom:15px !important;}
.bottommargin20{margin-bottom:20px !important;}
.bottommargin25{margin-bottom:25px !important;}
.bottommargin30{margin-bottom:30px !important;}
.bottommargin35{margin-bottom:35px !important;}
.bottommargin40{margin-bottom:40px !important;}
.bottommargin45{margin-bottom:45px !important;}
.bottommargin50{margin-bottom:50px !important;}
.bottommargin55{margin-bottom:55px !important;}
.bottommargin60{margin-bottom:60px !important;}
.bottommargin65{margin-bottom:65px !important;}
.bottommargin70{margin-bottom:70px !important;}
.bottommargin75{margin-bottom:75px !important;}
.bottommargin80{margin-bottom:80px !important;}
.bottommargin85{margin-bottom:85px !important;}
.bottommargin90{margin-bottom:90px !important;}
.bottommargin95{margin-bottom:95px !important;}
.bottommargin100{margin-bottom:100px !important;}

.topmargin0{margin-top:0px !important;}
.topmargin5{margin-top:5px !important;}
.topmargin10{margin-top:10px !important;}
.topmargin15{margin-top:15px !important;}
.topmargin20{margin-top:20px !important;}
.topmargin25{margin-top:25px !important;}
.topmargin30{margin-top:30px !important;}
.topmargin35{margin-top:35px !important;}
.topmargin40{margin-top:40px !important;}
.topmargin45{margin-top:45px !important;}
.topmargin50{margin-top:50px !important;}
.topmargin55{margin-top:55px !important;}
.topmargin60{margin-top:60px !important;}
.topmargin65{margin-top:65px !important;}
.topmargin70{margin-top:70px !important;}
.topmargin75{margin-top:75px !important;}
.topmargin80{margin-top:80px !important;}
.topmargin85{margin-top:85px !important;}
.topmargin90{margin-top:90px !important;}
.topmargin95{margin-top:95px !important;}
.topmargin100{margin-top:100px !important;}

.leftmargin0{margin-left:0 !important;}

.rightmargin0{margin-right:0px !important;}


/*  リスト */
.discList {
    padding:0 0 0 1.5em;
}
.discList > li {
    list-style-type:disc;
}

.numberList {
    padding:0 0 0 1.5em;
}
.numberList > li {
    list-style-type: decimal;
}

.blackCircleList {
    padding:0 0 0 1em;
}
.blackCircleList > li:before {
    content: "●";
    display: inline-block;
    text-indent: -1em;
}

/* 折返し */
.breakWord {
    word-wrap: break-word; /* IE11用 */
    overflow-wrap: break-word;
}
