.pg-regulation {
    padding-top: 200px;
    width: 100vw;
    line-height: 2.6em;
}

.pg-regulation .content_top_left {
    width: min(1300px, 90vw);
    margin: 0 auto 100px;
    font-size: 16px;
}

.pg-regulation .regulation_h2 {
    padding: 80px 0;
    font-size: 70px;
    text-align: left;
    font-weight: bold;
    line-height: 1.2em;
    font-family: 'Noto Sans Japanese',"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

.pg-regulation h5 {
    background-color: #333;
    color: #FFF;
    font-weight: bold;
    padding: 0.5em 1em;
    margin: 40px 0 20px;
}

.pg-regulation h4 {
    border-bottom: 2px solid #EA0015;
    font-size: 20px;
    font-weight: bold;
    padding: .5em 0;
    margin: 20px 0;
}
.pg-regulation h3 {
    background-color: #EA0015;
    color: #FFF;
    font-weight: bold;
    text-align: left;
    padding: 0.5em 1em;
    margin: 40px 0 20px;
}

.pg-regulation p {
    text-align: left;
}

.pg-regulation dt {
    border-bottom: 1px solid #EA0015;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.pg-regulation dd {
    text-align:left;
    padding: 10px;
}

/* (1)タイプのリスト */
.pg-regulation .brackets-list{
    margin-left: 2em; /* サイトに合せて調整 */
    list-style: none;
    text-align: left;
    counter-reset: cnt;
}
    
.pg-regulation .brackets-list>li {
    position: relative;
    counter-increment: cnt;
}

.pg-regulation .brackets-list>li:before {
    content: "(" counter(cnt) ")";
    display: inline-block;
    margin-left: -2em;
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
}
/* (1)タイプのリストここまで */

/* 1.タイプのリスト */
.pg-regulation .dot-list{
    margin-left: 1.5em; /* サイトに合せて調整 */
    list-style: none;
    text-align: left;
}
    
.pg-regulation .dot-list>li {
    position: relative;
    padding-bottom: 2em;
    counter-increment: cnt;
}

.pg-regulation .dot-list>li:before {
    content: counter(cnt) ".";
    display: inline-block;
    margin-left: -1.5em;
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
}
/* 1.タイプのリストここまで */

/* 1 タイプのリスト */
.pg-regulation .nomal-list{
    margin-left: 1.5em; /* サイトに合せて調整 */
    list-style: none;
    text-align: left;
    counter-reset: number;
}
    
.pg-regulation .nomal-list>li {
    position: relative;
    padding-bottom: 1em;
}

.pg-regulation .nomal-list>li:before {
    counter-increment: number;
    content: counter(number);
    display: inline-block;
    margin-left: -1.5em;
    text-align: right;
    position: absolute;
    top: 0;
    left: 0;
}
/* 1 タイプのリストここまで */

/* 自由形のリスト（番号なし） */
.pg-regulation ul{
    list-style: none;
    text-align: left;
}
    
.pg-regulation ul>li {
    padding-bottom: 1em;
}
/* 自由形のリスト（番号なし）ここまで */




@media screen and (max-width:767px) {
    .pg-regulation {
        padding-top: 100px;
    }
    .pg-regulation .regulation_h2 {
        padding: 50px 0;
        font-size: 40px;
        line-height: 1.2em;
    }
}