@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;
}


/*------------------------------*/
.content_wrapper{
    width: 80%;
    max-width: 780px;
    margin: 0 auto;
    margin-bottom: 160px;
}
.content_wrapper ul li{
    margin: 20px 0;
}
.content_wrapper ul li a{
    color: #222;
    font-size: 24px;
    display: inline-block;
    padding: 12px 0 12px 30px;
    position: relative;
    transition: .4s;
    font-weight: 100;
}
.content_wrapper ul li a::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: solid 1px #98B188;
    border-radius: 50%;
}
.content_wrapper ul li a:hover{
    opacity: .6;
}


@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: 24px;
    }
    .small_header span{
        font-size: 14px;
        padding-left: 20px;
    }


/*------------------------------*/
    .content_wrapper{
        width: 86%;
        max-width: 600px;
        margin-bottom: 80px;
    }
    .content_wrapper ul li{
        margin: 15px 0;
    }
    .content_wrapper ul li a{
        font-size: 18px;
        padding: 10px 0 10px 17px;
    }
    .content_wrapper ul li a::before{
        width: 5px;
        height: 5px;
    }




























































































}

