@charset "UTF-8";
/* CSS Document */

/*header------------------------------*/
header{
    padding-top: 130px;
    padding-bottom: 30px;
    border-bottom: solid 1px #ececec;
}
.small_header{
    display: flex;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}
.small_header h2{
    display: inline-block;
    font-size: 36px;
    letter-spacing: 0.08em;
}
.small_header span{
    display: block;
    font-size: 18px;
    color: #98B188;
    padding-left: 30px;
    letter-spacing: 0.08em;
}


/*------------------------------*/
.space_bottom{
    padding-bottom: 10px;
}
.content_wrapper{
    width: 80%;
    max-width: 780px;
    margin: 0 auto;
    margin-bottom: 140px;
    font-size: 15px;
}
.content_wrapper>p{
    padding-bottom: 30px;
}
.content_wrapper dl{
    margin-bottom: 35px;
}
.content_wrapper dt{
    padding-left: 14px;
    margin-bottom: 5px;
    position: relative;
    font-size: 18px;
}
.content_wrapper dt::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #98B188;
    border-radius: 50%;
}
.content_wrapper dd ul{
    padding-left: 10px;
    padding-top: 5px;
}
.content_wrapper dd ul li{
    font-size: 14px;
    padding-left: 14px;
    position: relative;
}
.content_wrapper dd ul li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    border: solid 1px #98B188;
    border-radius: 50%;
}


@media print, screen and (max-width: 750px) {
    
/*header------------------------------*/
    header{
        padding-top: 110px;
        padding-bottom: 20px;
    }
    .small_header{
        width: 85%;
        max-width: 600px;
    }
    .small_header h2 {
        font-size: 18px;
    }
    .small_header span{
        font-size: 14px;
        padding-left: 15px;
    }


/*------------------------------*/
    .content_wrapper{
        width: 100%;
        max-width: 600px;
        box-sizing: border-box;
        padding: 0 20px;
        margin-bottom: 80px;
    }
    .content_wrapper>p{
        padding-bottom: 20px;
    }
    .content_wrapper dl{
        margin-bottom: 20px;
    }
    .content_wrapper dt{
        margin-bottom: 0;
        font-size: 16px;
    }
    .content_wrapper dd ul{
        padding-top: 5px;
    }



























































































}































































