@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');

html{
    font-size: 18px;
    background-color: rgba(220, 255, 235, 0.25);
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
}
ul, li, dt, dd, dl {
    list-style: none;
}
.site_header {
    font-family: 'Quicksand', sans-serif;
    width: 100%;
    height: 60px;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    align-items: center;
    margin: 0;
    z-index: 10;
}
.site_header .logo{
    display: flex;
    justify-content: space-between;
    height: 60px;
    position: relative;
}
.site_header .logo .logo_menu{
    display: none;
    /* position: absolute;
    top: 0;
    left: 0;
    margin: 5px;
    height: 30px; */
}
/* .site_header .logo .logo_menu img{
    height: 30px;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
} */
.site_header .logo .logo_img{
    position: absolute;
    top: 0;
    /* left: 46px; */
    left: 10px;
    margin: 11px;
    height: 20px;
}
.site_header .logo .login{
    position: absolute;
    top: 0;
    /* right: 80px; */
    right: 20px;
    background-color: rgb(220, 40, 40);
    width: 66px;
    height: 28px;
    line-height:28px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 14px;
    text-align : center;
    transform: translate(0,8px)
}
.site_header .logo .logo_cart{
    display: none;
    /* position: absolute;
    top: 5px;
    right: 30px;
    margin: 2px; */
}
/* .site_header .logo .logo_cart img{
    width: 30px;
} */
.site_header .gnav{
    overflow-x: auto;
    width: 100%;
    height: 32px;
    box-sizing: border-box;
    position: fixed;
    top: 42px;
    background: #1c903a;
}
.site_header .gnav .menu {
    display: inline-flex;   
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 0;
    transform: translate(0,2px);
}
.site_header .gnav .menu li {
    flex-basis: auto;
    list-style: none;
    font-size: 12px;
    color: #fff;
    margin: 0 10px;
    white-space: nowrap;
    text-decoration: none !important;
}

@media screen and (min-width: 768px) {
    .site_header .logo{
        margin: 0 auto;
        width: 100%;
        max-width: 1100px;
        height: 60px;
    }
    .site_header .logo .logo_menu{
        display: none;
    }
    .site_header .logo .logo_img{
        left: 0px;
    }
    .site_header .logo .logo_img img{
        height: 24px;
    }
    .site_header .logo .login{
        /* right: 60px; */
        right: 0;
        width: 84px;
        height: 28px;
        line-height:28px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 14px;
        transform: translate(0,8px)
    }
    .site_header .logo .logo_cart{
        display: none;
        /* right: 0; */
    }
    .site_header .gnav{
        width: 100%;
        height: 36px;
        box-sizing: border-box;
        position: fixed;
        top: 44px;
        background: #1c903a;
        margin: 0 auto;
        text-align: center;
    }
    .site_header .gnav .menu {
        display: inline-flex;   
        justify-content: space-between;
        align-items: center;
        text-align: center;
        margin: 0;
        padding: 0;
        transform: translate(0,4px);
        width: 100%;
        max-width: 1090px;
    }
    .site_header .gnav .menu li {
        flex-basis: auto;
        list-style: none;
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        margin: 0 10px;
        white-space: nowrap;
        text-decoration: none !important;
    }
}

a,a:hover,a:visited{
    color: inherit;
    text-decoration: none;
}

.diagnose_container{
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    color: #888;
    box-sizing: border-box;
	width: 100%;
    max-width: 600px;
	text-align: center;
    margin: 0 auto;
    padding: 0;
    margin-top: 100px !important;
}
@media screen and (min-width: 768px) {
    .diagnose_container{
        margin-top: 120px;
    }
}

.diagnose_container section{
    margin: 10px auto;
}

.select_01 p{
    margin-top: 0;
    margin-bottom: 6px;
}
.select_01 .question{
    font-size: 24px;
}
.select_01 hr{
    width: 80px;
    margin-top: 24px;
}
.select_02 .choice_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    height: 90px;
    margin: 0 auto;
    padding: 4px 0;
}
.select_02 .choice_square{
    margin-right: 10px;
}
.select_02 .choice_text{
    text-align: left;
    width: 300px;
}
.select_02 .choice_image{
    text-align: center;
    width: 100px;
    margin-left: 12px;
}
.select_02 .choice_image img{
    text-align: center;
    transform: translate(0,4px)
}
.select_02 hr{
    width: 70%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.btn_back{
    background-color: #fff;
    width: 220px;
    height: 50px;
    line-height:50px;
    color: #888;
    font-size: 20px;
    font-weight: 500;
    border: 1px solid #888;
    border-radius: 16px;
    margin: 10px auto 0;
    text-align : middle;
}
