/*------------------------------
 パターン2（見出しの左側に太い線・下に細い線のパターン）
------------------------------*/
#mainImg {
    background-size: 45% 35%;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background-image: url(../img/contents/flow-bil-bg-l.png), url(../img/contents/flow-bil-bg-r.png);
    background-position: left bottom, right bottom;
    background-repeat: no-repeat;
}
#mainImg h1 {
    text-align: center;
    /*text-shadow: 2px 2px 0px #ffffff, -2px 2px 0px #ffffff, 2px -2px 0px #ffffff, -2px -2px 0px #ffffff, 2px 0px 0px #ffffff, 0px 2px 0px #ffffff, -2px 0px 0px #ffffff, 0px -2px 0px #ffffff;*/
}
h1 {
    position:relative;
}
h1:after {
    content: "";
    position:absolute;
    background: url(../img/icon/policy-title-icon.png);
    transform: rotate(-9deg);
    top: -10px;
    right: -50px;
    width: 40px;
    height: 40px;
}
 
#main .describe-text {
    padding: 0;
    margin-bottom: 10px;
    width: 100%;
}

#main .describe-text dd {
    border: none;
    margin: 0;
    padding: 10px 0 20px 10px;
    line-height: 1.8em;
    text-align: left;
    vertical-align: top;
}

#main .describe-text p {
    line-height: 1.8em;
}

#main .describe-text ol,
#main .describe-text ul {
    margin-bottom: 5px;
}

#main .describe-text ol li {
    margin-bottom: 5px;
    list-style-type: decimal;
    margin-left: 20px;
}

#main .describe-text dt:before {
    background: #f00;
    content: "";
    background: #ff0;
    height: 1em;
    transform: skew(-20deg);
    width: 1em;
    display: inline-block;
    margin-right: 10px;
    /*filter: drop-shadow(6px 6px rgba(0, 0, 0, 1));*/
    box-shadow: 5px 5px 0px 0px #000;
}

#main .describe-text dt {
    text-align: left;
    border-bottom: 1px solid #000;
    /* padding: 3px 10px 3px 10px; */
    font-weight: 700;
    font-size: 20px;
}

#main .describe-text dt p {
    margin-bottom: 0;
}

#main .describe-text ul li {
    background: none;
    list-style: disc outside;
    margin-bottom: 5px;
    margin-left: 20px;
}

/* 1264px以上 */
@media screen and (min-width: 79em) {
    #mainImg {
       background-size: auto;
   }
 }
 
 /* 767px以下 */
@media screen and (max-width: 767px) {
    #main h1 {
        display: flex;
        align-items: center;
    }
}
