:root {
    --blue: #2b4eb3;
    --red: #d33a38;
    --placeholder: #9e9e9e;
    --border: #d2d2d2;
    --fontColor: #191919;
}

.wrap {
    width: 700px;
    margin: 0 auto;
    position: relative;
}

.wrap:has(.fixed) {
    padding-top: 100px;
}

/* common {*/
.preEB {
    font-family: "preEB", 'Noto Sans KR', sans-serif !important;
}

.flex {
    display: flex;
}

.flex_1 {
    flex: 1;
}

.al_c {
    align-items: center;
}

.jc_sb {
    justify-content: space-between;
}

.btn_blue {
    background-color: var(--blue);
}

.btn_gray {
    background-color: #aaa;
}

.btn_deep_gray {
    background-color: #666;
}

.checkbox,
.radio {
    cursor: pointer;
    position: relative;
    display: inline-flex;
}

.checkbox input,
.radio input {
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 0;
    ;
}

.checkbox input:checked~b {
    background-color: #2647a4;
    border-color: #2647a4;
    position: relative;
}

.checkbox input:checked~b::after {
    content: "";
    display: block;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
}

.checkbox b {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 1px solid var(--border);
    margin-right: 5px;

}

.checkbox span,
.radio span {
    font-size: 16px;
}

.radio b {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #fff;
    margin-right: 5px;
    border-radius: 50%;
    position: relative;
    border: 1px solid var(--border);
}

.radio input:checked~b {
    border-color: var(--blue);
}

.radio input:checked~b::after {
    content: "";
    display: block;
    position: absolute;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background-color: var(--blue);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.radio input:disabled~b {
    border-color: #ddd;
}

.radio input:disabled~b::after {
    background-color: #ddd;
}

.radio input:disabled~span {
    color: #666;
}

/* } common  */
/* login {  */
#login_layer {
    height: 100vh;
    width: 100%;
    background: linear-gradient(to left top, #234092, #345fd9);
    /* background-color: var(--blue); */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.login_title_box {
    text-align: center;
    color: #fff;
}

.login_title_box p {
    color: #fff;
}

.login_title_box p:first-child {
    font-size: 62px;
    font-family: 'GSM', sans-serif;
    margin: 1rem 0 1.1rem;
}

.login_title_box p:last-child {
    font-size: 17px;
    font-family: 'AGLT', sans-serif;
}

.login_box {
    margin: 18px auto 0;
    max-height: 500px;
    text-align: center;
    position: relative;
    background-image: url(../img/user/login_bg_v2.png);
    background-size: cover;
    background-position: center;
    aspect-ratio: 1 / 1.11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 10% 0 13%;
    background-repeat: no-repeat;
}

.login_box .login_form .logo {
    margin: 0 auto 10px;
    ;
}

.login_box .login_form .logo img {
    width: 82%;
}

.login_box .login_form input,
.login_box .login_form button {
    height: 35px;
    border-radius: 20px;
    padding-left: 20px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 8px;
    border: 1px solid var(--border);
}

.login_box .login_form button {
    color: #fff;
    background-color: #000;
    padding-left: 0;
    border: 0;
}

.login_box .login_form input::placeholder {
    color: var(--placeholder);
}

.login_box .login_bg {
    width: 100%;
}

.login_info {
    display: flex;
    justify-content: center;

    text-align: center;
}

.login_info a {
    font-size: 0.88rem;
    color: #8c8c8c;
    display: inline-block;
    padding: 0 0.5rem;
    position: relative;
}

.login_info a::after {
    content: "|";
    position: absolute;
    right: 0;
    top: 53%;
    transform: translatey(-50%);
    font-size: 0.6rem;
    display: block;
}

.login_info a:last-child::after {
    display: none;
}

.bottom_logo {
    position: absolute;
    right: 5%;
    bottom: 3%;

}

/* } login */

/* layer { */
#header {
    height: 136px;
    background-color: var(--blue);
    position: relative;
    text-align: center;
}

#header::before {
    content: "";
    display: block;
    position: absolute;
    border-bottom: 136px solid transparent;
    border-top: 136px solid var(--red);
    border-left: 0 solid var(--red);
    border-right: 200px solid transparent;
}

#header .menu_btn {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
}

#header .menu_btn i {
    display: block;
    width: 100%;
    height: 7px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 5px;
}

#header .menu_btn i:last-child {
    margin-bottom: 0;
}

.header_wrap {
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    -webkit-transition-duration: 0.2s;
    -webkit-transition-timing-function: ease;

}

#header.fixed {
    height: auto;
    background-color: transparent;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
}

#header.fixed .header_wrap {
    background-color: var(--blue);
    max-width: 700px;
    margin: 0 auto;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
}

#header.fixed::before {
    display: none;
}

#header .logo {
    color: #fff;
    font-weight: bold;
    font-size: 36px;
}

.content {
    border-radius: 25px 25px 0 0;
    background-color: #fff;
    margin-top: -46px;
    position: relative;
    min-height: calc(100vh - 90px);
    padding: 50px 40px;
}

.back_bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 6;
    left: 0;
    top: 0;
}

.modal_bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 5;
    left: 0;
    top: 0;
}

.side_menu_layer {
    width: 60%;
    left: -60%;
    top: 0;
    height: 100%;
    z-index: 9;
    position: fixed;
    background-color: #fff;
    padding: 32px;
}

.side_user_box {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.side_user_box p {
    text-align: right;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 12px;
}

.side_user_links {
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
}

.side_user_links a {
    display: inline-block;
    width: calc(50% - 2px);
    text-align: center;
    border: 1px solid var(--border);
    height: 34px;
    line-height: 32px;
    color: #8c8c8c;
    font-size: 1rem;

}

.side_user_links a img {
    margin-right: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.side_menu {
    padding: 30px 5px;
    border-bottom: 1px solid var(--border);
}

.side_menu ul li {
    margin-bottom: 15px;
    padding: 8px 10px;
}

.side_menu ul li .on {
    display: none;
}

.side_menu ul li.active {
    background-color: var(--blue);
    border-radius: 50px;
    ;
}

.side_menu ul li.active .on {
    display: block;
}

.side_menu ul li.active .off {
    display: none;
}

.side_menu ul li.active a span {
    color: #fff;
}

.side_menu ul li:last-child {
    margin-bottom: 0;
}

.side_menu ul li a {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--blue);
    font-weight: bold;
    font-size: 20px;
}

.side_menu ul li a span {
    color: var(--blue);
}

.side_menu ul li a span:first-child {
    margin-right: 10px;
    display: inline-block;
    width: 40px;
}

.side_bottom {
    padding-top: 30px;
    text-align: right;
}

.in_back_btn {
    position: absolute;
    left: 20px;
    top: 52px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 12px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.in_back_btn img {
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-right: 3px;
}

.in_back_btn span {
    color: #797979;
}

/* } layer  */

/* content { */
#user_form .profile_input_box {
    position: relative;
    margin: 0 auto;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;

}

#user_form .profile_input_box #file {
    display: none;
}

#user_form .profile_input_box .profile_preview {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border);
}

#user_form .profile_input_box .profile_preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#user_form .profile_input_box .file_btn {
    border-radius: 50%;
    width: 34px;
    height: 34px;
    background-color: #b2b2b2;
    position: absolute;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
}

#user_form .profile_input_box .file_upload_btn {
    background-image: url('../img/user/camera_ico.png');
}

#user_form .profile_input_box .file_reset_btn {
    display: none;
    background-image: url('../img/common/x_ico.png');
}

.page_title {
    margin-bottom: 44px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.page_title2 {
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: -0.5px;
    padding-top: 30px;
}

.page_title2 b {
    font-weight: bold;
}

.input_wrap .input_box {
    margin-bottom: 10px;
}

.input_wrap .input_verf_box {
    margin-bottom: 5px;
}

.input_wrap>*:last-child {
    margin-bottom: 0;
}

.input_box {
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.input_box.readonly_box {
    background-color: #f1f1f1;
}

.input_box.readonly_box input {
    background-color: #f1f1f1;
    color: #999;
}

.input_box.readonly_box input:focus {
    outline: 0;
}

.input_box.readonly_box .email_box .direct_email {
    display: block;
}

.input_box.readonly_box .radio span {
    color: #999;
}

.input_box.readonly_box .email_box span {
    color: #999;
}

.cert_num_box input {
    width: 100%;
}

.cert_num_box {
    position: relative;
    padding-right: 50px;
}

.cert_num_box .timer {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.input_box>*:last-child {
    flex: 1;
}

.input_box .tit {
    font-weight: bold;
    font-size: 16px;
    width: 130px;
    padding: 0 15px;
    position: relative;
    margin-right: 10px;
}

.input_box .ico {
    width: 45px;
    text-align: center;
}

.input_box .tit::after {
    content: "";
    height: 12px;
    width: 1px;
    display: block;
    position: absolute;
    right: 0;
    background-color: var(--border);
    top: 50%;
    transform: translateY(-50%);
}

.input_box .email_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input_box .email_box span {
    width: 20px;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}

.input_box .email_box input {
    width: 30%;
}

.input_box .email_box select {
    border: 0;
    height: 35px;
    flex: 1;
    font-size: 15px;
}

.input_box .email_box .direct_email {
    display: none;
    flex: 1;

}

.input_box .email_box .direct_email>div {
    display: flex;
    align-items: center;
}

.input_box .email_box .direct_email>div input {
    flex: 1;
}

.email_change_btn {
    display: none;
    width: 18px;
    height: 18px;
    background-color: #666;
    border-radius: 50%;
    background-image: url("../img/common/x_ico.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px;
    margin-right: 5px;
}

.input_box .email_box .email_chk_btn {
    border: 1px solid var(--blue);
    color: var(--blue);
    height: 35px;
    font-size: 14px;
    width: 70px;
}

.input_box input[type=text],
.input_box input[type=password],
.input_box input[type=number],
.input_box input[type=tel] {
    height: 35px;
    padding: 0 10px;
    font-size: 15px;
}

.verf_txt {
    font-size: 13px;
    padding-left: 50px;
    margin-top: 5px;
    margin-bottom: 10px;
    display: none;
}

.verf_txt.fail {
    color: var(--red);
}

.verf_txt.success {
    color: var(--blue);
}

.input_box .input_info {
    font-size: 11px;
    color: #666;
    padding: 0 10px;
}

.input_box .radio_wrap {
    height: 35px;
}

.radio_wrap {
    display: flex;
    align-items: center;
}

.radio_wrap>* {
    margin-right: 10px;
}

.radio_wrap>*:last-child {
    margin-right: 0px;
}

.private_box {
    margin-top: 25px;
}

.private_box>p {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
}

.private_box .private_txt {
    border: 1px solid var(--border);
    height: 350px;
    overflow-y: auto;
    padding: 10px;
    line-height: 1.5;
    font-size: 14px;
}

.private_box label {
    margin-top: 15px;
    padding-left: 10px;
}

#user_form #submit_btn {
    background-color: var(--blue);
    color: #fff;
    font-size: 18px;
    width: 100%;
    height: 40px;
    margin: 20px 0;
}

#user_form .mini_submit_btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#user_form .back_btn {
    border: 1px solid #767676;
    height: 40px;
    font-size: 18px;
    color: #767676;
}

#user_form .mini_submit_btn #submit_btn,
#user_form .mini_submit_btn .back_btn {
    width: 140px;
    margin: 0;
    display: block;
}

#user_form .mini_submit_btn>#submit_btn {
    margin-right: 10px;
}

#user_form .check_form_info {
    font-weight: bold;
    font-size: 16px;
    color: var(--blue);
}

#user_form #submit_btn img {
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
    top: -2px;
}

#user_form .back_btn img {
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
    top: -2px;
}

.info_input_box {
    display: flex;
    align-items: center;
    position: relative;
}

.info_input_box input {
    flex: 1;
}

.modal_layer {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #000;
    padding: 25px;
    z-index: 9;
}

.modal_btns {
    display: flex;
    margin-top: 20px;
}

.modal_btns.center {
    justify-content: center;
}

.modal_btns button {
    width: 80px;
    height: 28px;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
    line-height: 26px;
}

.modal_btns a {
    width: 80px;
    height: 28px;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
    line-height: 26px;
    text-align: center;
}

.modal_btns>*:first-child {
    margin-right: 5px;
}

.modal_btns>*:last-child {
    margin-right: 0;
}

.text_modal {
    padding: 30px 20px;
    width: 300px;
}

.modal_txt {
    text-align: center;
    font-size: 15px;
    line-height: 1.3;
}

.modal_txt .modal_var {
    color: var(--blue);
    font-weight: bold;
}

.cert_btns {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.cert_btns button {
    width: 80px;
    height: 30px;
    font-size: 14px;
}

.cert_btns .re_send_btn {
    border: 1px solid #767676;
    color: #767676;
    margin-right: 8px;
}

.cert_btns .cert_ok_btn {
    border: 1px solid var(--blue);
    color: var(--blue);
}

.cert_box {
    display: none;
}

.my_pg_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.my_pg_menu li {
    border: 1px solid var(--border);
}

.my_pg_menu li a {
    text-align: center;
    display: block;
    padding: 30px 0;

}

.my_pg_menu li a .mp_tit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

.my_pg_menu li a .mp_tit p {
    color: #767676;
    margin-left: 8px;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.my_pg_menu li a .count {
    font-size: 30px;
    font-family: "preEB", 'Noto Sans KR', sans-serif;
    ;
}

.survey_box {
    margin-top: 20px;
    padding: 20px 25px;
    border: 1px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.survey_box .mp_tit2 span {
    color: var(--blue);
    font-size: 25px;
    margin-left: 10px;
}

.survey_box .count {
    font-size: 30px;
    font-family: "preEB", 'Noto Sans KR', sans-serif;
    ;
    margin-right: 14px;
}

.survey_box>div {
    display: flex;
    align-items: center;
}

.my_pg_btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    margin-top: 100px;
}

.my_pg_btns>a {
    width: calc(33% - 5px);
    height: 50px;
    font-size: 20px;
    line-height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.my_pg_btns>a img {
    margin-right: 10px;
}

.my_pg_btns>a.my_pg_btn1 {
    background-color: var(--blue);
    border: 1px solid var(--blue);
}

.my_pg_btns>a.my_pg_btn1 span {
    color: #fff;
}

.my_pg_btns>a.my_pg_btn2 {
    background-color: #fff;
    border: 1px solid var(--blue);
}

.my_pg_btns>a.my_pg_btn2 span {
    color: var(--blue);
}

.my_pg_btns>a.my_pg_btn3 {
    background-color: #fff;
    border: 1px solid #767676;
}

.my_pg_btns>a.my_pg_btn3 span {
    color: #767676;
}

.sample_img {
    width: 100%;
}

.graph_date_box {
    margin-bottom: 20px;
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-content: center;
    height: 65px;
    margin-top: 40px;
}

.data_detail_wrap>* {
    margin-bottom: 20px;

}

.data_detail {
    border: 1px solid var(--border);
    height: 245px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data_detail_wrap>*:last-child {
    margin-bottom: 0;
}

.data_detail_2 {
    display: flex;
    align-items: baseline;
}

.data_detail_2>li:first-child {
    margin-right: 10px;
}

.data_detail_2>li {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    padding: 20px 0;
}

.data_detail_2>li>* {
    flex: 1;
    text-align: center;
}

.data_detail_2>li .ico_box {}

.data_detail_2>li .ico_box p {
    font-weight: bold;
    font-size: 14px;
    color: #767676;
    margin-top: 5px;
}

.data_detail_2>li .data_number {
    font-family: "preEB";
    font-size: 18px;
}

.graph_date_box span {
    color: #fff;
    margin: 0 20px;
    line-height: 60px;
    font-size: 22px;
}

#heart_rate {
    background-image: url('../img/user/heart_bg_full.png');
    background-position: center;
    background-repeat: no-repeat;

}

#heart_rate>div {
    text-align: center;
}

#heart_rate>div p {
    margin-top: 8px;
    font-size: 16px;
    color: #a5a5a5;
    letter-spacing: -1px;
}

#heart_rate>div span {
    font-size: 20px;
}

#heart_rate>div span b {
    font-weight: bold;
    font-size: 30px;
}

#heart_rate .ave {
    padding-left: 10px;
    margin-left: 131px;
    margin-right: 65px
}

#heart_rate .ave span {
    color: var(--blue);
}

#heart_rate .ave span b {
    color: var(--blue);
}

#heart_status_list {
    width: 100%;

}

#heart_status_list ul {
    width: 100%;
    max-width: 400px;
}

#heart_status_list li {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 10px;
}

#heart_status_list li:last-child {
    margin-bottom: 0;
}

#heart_status_list .hs_graph_div {
    flex: 1;
}

#heart_status_list .hs_graph_div .hs_graph {
    height: 13px;
    background-color: #e4e4e4;
    display: block;
    border-radius: 0 20px 20px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

#heart_status_list .hs_graph_div .hs_tit {
    text-align: center;
    font-size: 12px;
    margin-bottom: 8px;
    color: #aaa;
}

#heart_status_list .hs_graph_div .hs_graph span {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--red);
    display: block;
}

#heart_status_list .hs_time_div {
    width: 150px;
    text-align: center;
    font-size: 15px;
}

#heart_status_list .hs_time_div b {
    font-size: 13px;
    color: #666;
}

.detail_s_table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;

}

.detail_s_table td {
    border: 1px solid var(--border);
    padding: 30px 20px;
    vertical-align: middle;
}

.detail_s_table td.center {
    text-align: center;
}

.detail_s_table .unit_txt {
    font-size: 18px;
    letter-spacing: -0.5px;
}

.detail_s_table .unit_txt b {
    font-size: 25px;
    font-weight: bold;
}

.detail_s_table .unit_top_txt {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
}

.detail_s_table .unit_txt.red {
    color: var(--red);
}

.detail_s_table .unit_txt.red b {
    color: var(--red);
}

.detail_s_table .unit_txt.blue {
    color: var(--blue);
}

.detail_s_table .unit_txt.blue b {
    color: var(--blue);
}

.detail_s_table .ico_tit {
    font-size: 16px;
    color: #a5a5a5;

}

.detail_s_table .unit_txt+.ico_tit {
    margin-top: 5px;
}

.detail_s_table .ico_tit+.unit_txt {
    margin-top: 5px;
}

.detail_s_table .detail_s_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail_s_table .detail_s_flex>div:first-child {
    margin-right: 18px;
}

.data_graph_detail {
    padding: 20px 25px;
    border: 1px solid var(--border);
}

.data_detail_tit {
    padding-left: 10px;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.oxygen_ave {
    width: 170px;
    text-align: left;
    display: inline-block;
}

.tm_out_circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background-color: #fff;
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 24px);
    transform: translateY(-50%);
}

.tm_layout {
    margin-top: 18px;
    padding-left: 52px;
    position: relative;
    padding-bottom: 50px;
}

.tm_out {
    border: 1px solid var(--border);
    height: 40px;
    width: 100%;
    flex: 1;
    border-left: 0;
    background-color: #fff;
    position: relative;
    padding: 8px;
    padding-left: 0;
    border-radius: 0 50px 50px 0;
}

.tm_in {
    width: 100%;
    height: 100%;
    background-color: #ebebeb;
    border-radius: 0 50px 50px 0;
    position: relative;
    top: 0.8px;
    height: 20px;
}

.tm_in::after {
    content: "";
    display: block;
    border-radius: 0 30px 30px 0;
    background-color: var(--blue);
    position: absolute;
    height: 100%;
    width: 10px;
    left: 0;
    top: 0;
}

.tm_in span {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--blue);
    display: block;
    border-radius: 0 20px 20px 0;

}

.tm_in span::after {
    content: "";
    display: block;
    height: 20px;
    background-color: var(--blue);
    width: 20px;
    left: -20px;
    top: 0;
    position: absolute;
}

.tm_out_circle::after {
    content: "";
    width: 66%;
    height: 66%;
    display: block;
    background-color: var(--blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    position: absolute;
}

.tm_number_box {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding-left: 54px;
    padding-right: 10px;
}

.tm_number_box ul {
    display: flex;
    justify-content: space-between;
}

.tm_number_box li {
    flex: 1;
    height: 16px;
    position: relative;
}

.tm_number_box li::after {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    position: absolute;
    left: 0;
    background-color: #66615c;
}

.tm_number_box li span {
    display: block;
    width: 1px;
    height: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #66615c;

}

.tm_number_box li:first-child,
.tm_number_box li:last-child {
    padding-bottom: 40px;
}

.tm_number_box li:first-child b {
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    bottom: 0;
}

.tm_number_box li:last-child b {
    position: absolute;
    right: 0;
    transform: translateX(50%);
    bottom: 0;
}

.tm_number_box li:last-child::before {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    position: absolute;
    right: 0;
    background-color: #66615c;
}

#skin_table td {
    padding: 30px 50px;
}

.bc_wrap {
    width: 100%;
    border: 1px solid var(--border);
}

.bc_title_box {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.bc_title_box .unit {
    font-size: 18px;
}

.bc_title_box .unit b {
    font-weight: bold;
    font-size: 26px;
    margin-left: 5px;
}

.bc_title_box .updown_txt {
    font-size: 15px;
}

.bc_title_box .updown_txt img {
    margin-right: 4px;
}

.bc_title_box .updown_txt.up {
    color: #ed5654;
}

.bc_title_box .updown_txt.down {
    color: #436cdb;
}

.bc_graph_box {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 30px;
    height: 16px;
    margin-top: 10px;
    background-color: #ececec;
}

.bc_graph_box p {
    flex: 1;
    position: relative;
    border-right: 1px solid #fff;
}

.bc_graph_box p:last-child {
    border-right: 0;
}

.bc_graph_box p span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.bc_graph_box p.row span {
    background-color: #85dac3;
}

.bc_graph_box p.normal span {
    background-color: #436cdb;
}

.bc_graph_box p.hight span {
    background-color: #f07472;
}

.bc_unit_box {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.bc_unit_box p {
    width: 33.333%;
    position: relative;
}

.bc_unit_box p span {
    font-size: 13px;
    color: #b3b3b3;
}

.bc_unit_box p span:last-child {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(50%);
}

.bc_unit_box p span:first-child {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-50%);
}

.bc_wrap {
    border: 1px solid var(--border);
    padding: 30px 30px 40px;
}

.survey_list li {
    border: 1px solid var(--border);
    margin-bottom: 10px;
}

.survey_list li:last-child {
    margin-bottom: 0;
}

.survey_list {
    width: 100%;
    table-layout: fixed;
}

.survey_list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    border: 1px solid var(--border);
    margin-bottom: 10px;
}

.survey_list tr:last-child a {
    margin-bottom: 0;
}

.survey_list a span {
    color: #767676;
    font-size: 18px;
}

.survey_list a p {
    flex: 1;
    padding-bottom: 2px;
    padding-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
}

.paging_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.paging_wrap li {
    display: inline-block;
    width: 25px;
    text-align: center;
    height: 25px;
    line-height: 23px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.paging_wrap li {
    border: 1px solid var(--blue);
    color: var(--blue);
    margin: 0 1px;
}

.paging_wrap li:not(.first, .previous, .next, .last) a {
    color: var(--blue);
    font-weight: normal;
}

.paging_wrap li.active {
    background-color: var(--blue);
    color: #fff;
    margin: 0 1px;
}

.paging_wrap li.active>a {
    color: #fff;
}

.board_wrap {
    min-height: calc(100vh - 264px);
    position: relative;
    padding-bottom: 46px;
}

.board_wrap .paging_wrap {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.bo_cate {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.bo_cate>* {
    display: inline-block;
    font-size: 20px;
    padding: 0 15px;
    position: relative;
}

.bo_cate>*.active {
    font-weight: bold;
    color: var(--blue);
}

.bo_cate>*::before {
    content: "|";
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fontColor);
}

.bo_cate>*:last-child::after {
    content: "|";
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fontColor);

}

.bo_view {
    border-top: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
}

.bo_view_tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 25px 20px;
    border-bottom: 1px solid var(--border);
}

.bo_view_tit .tit {
    flex: 1;
    line-height: 1.2;
    word-break: keep-all;
    font-weight: bold;
    font-size: 20px;
}

.bo_view_tit .info {
    color: #767676;
    font-size: 14px;
}

.bo_view_tit .info b {
    font-size: 14px;
    position: relative;
    top: -2px;
    margin: 0 5px;
}

.bo_view_content {
    padding: 30px 25px;
}

.bo_view_content>* {
    max-width: 100%;
}

.bo_video {
    position: relative;
    aspect-ratio: 16/9;
}

.bo_video>* {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.bo_list_btns {
    margin-top: 30px;
}

.bo_list_btns>div {
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.bo_list_btns>div span {
    padding: 0 20px;
    border-right: 1px solid var(--border);
    font-size: 18px;
    color: #767676;
}

.bo_list_btns>div span img {
    margin-right: 10px;
    position: relative;
    top: -2px;
}

.bo_list_btns>div a {
    flex: 1;
    font-size: 18px;
    color: #767676;
    padding: 15px 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.bo_gb_btns {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    justify-content: center;
}

.bo_gb_btns button {
    border: 1px solid var(--border);
    width: 120px;
    height: 36px;
}

.bo_gb_btns button img {
    vertical-align: middle;
    margin-right: 5px;
}

.good_btn {
    font-size: 15px;
    margin-right: 6px;
}

.bo_gb_btns button .on {
    display: none;
}

.bo_gb_btns button.active .on {
    display: inline-block;
}

.bo_gb_btns button.active .off {
    display: none;
}

.good_btn span {
    color: var(--red);
}

.bad_btn span {
    color: #4b4b4b;
}

.good_btn.active {
    background-color: var(--red);
    border-color: var(--red);
}

.good_btn.active span {
    color: #fff;
}

.bad_btn.active {
    background-color: #4b4b4b;
    border-color: #4b4b4b;
}

.bad_btn.active span {
    color: #fff;
}

.bo_view_btns {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.bo_view_layer {
    padding-bottom: 80px;
}

.bo_view_btns>a {
    display: inline-block;
    height: 50px;
    text-align: center;
    line-height: 48px;
    width: 120px;
    border: 1px solid #767676;
    background-color: #fff;
    font-size: 20px;
    color: #767676;
}

.bo_view_btns>a img {
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.bo_view_btns>a.prev img {
    margin-right: 3px;
}

.bo_view_btns>a.next img {
    margin-left: 3px;
}

.bo_view_btns>a.list {
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff;
    width: 156px;
    margin: 0 10px;
}

.user_step_form {
    margin-top: 40px;
}

.input_with_title {
    position: relative;
}

.input_with_title input:not(input[type=radio], input[type=checkbox]) {
    width: 100%;
    border: 1px solid var(--border);
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
}

.input_with_title .tit {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: bold;
}

.input_with_title .input_info {
    position: absolute;
    right: 10px;
    bottom: 5px;
    display: inline-block;
    color: #888888;
    font-size: 10px;

}

.input_with_title .radio_wrap {
    border: 1px solid var(--border);
    height: 40px;
    padding: 0 25px;
}

.input_with_title:has(.input_info) input {
    padding-bottom: 5px;
}

.input_with_title .radio_wrap>*:first-child {
    margin-right: 50px;
}

.input_with_title .radio span {
    font-weight: bold;
}

.user_step_box:not(:first-child) {
    margin-top: 15px;
    display: none;
}

.user_step_box>div {
    margin-top: 10px;
}

.user_step_box>div:first-child {
    margin-top: 0;
}

.input_flex_box {
    display: flex;
}

.input_flex_box>div:first-child {
    margin-right: 5px;
    width: 52%;
}

.input_flex_box>div:last-child {
    flex: 1;
}

.input_with_title .input_unit {
    font-weight: bold;
    font-size: 13px;
    position: absolute;
    right: 10px;
    bottom: 14px;
}

.input_with_title:has(.input_unit) input:not(input[type=radio], input[type=checkbox]) {
    padding-right: 30px;
}

#user_form .result_txt {
    font-size: 30px;
    line-height: 1.5;
    padding: 100px 0;
    text-align: center;
}

#user_form .result_txt b {
    font-weight: bold;
}

.user_step_box .verf_txt {
    padding-left: 0;
}

#user_form.user_step_form #submit_btn {
    display: none;
}

.home_lists>a {
    background-color: var(--blue);
    border-radius: 10px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-top: 10px;
}

.home_lists>a:first-child {
    margin-top: 0;
}

.home_lists>a>.title {
    display: flex;
    align-items: center;
}

.home_lists>a>.title img {
    margin-right: 15px;
}

.home_lists>a>.title>div p:first-child {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
}

.home_lists>a>.title>div p:last-child {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.home_lists>a>.point {
    font-weight: 900;
    color: #fff;
    font-size: 30px;
}

.home_lists>a>.point span {
    color: inherit;
}

.home_btn_lists {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.home_btn_lists>a {
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    aspect-ratio: 1/0.8;
}

.home_btn_lists>a>p:first-child span {
    font-weight: 900;
    font-size: 25px;
    letter-spacing: -0.8px;
}

.home_btn_lists>a>p:first-child {
    font-size: 14px;
}

.home_btn_lists>a>p:last-child {
    color: var(--blue);
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}

.home_btn_lists>a>p:last-child img {
    vertical-align: middle;
    margin-right: 4px;
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.home_section_tit {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.home_graph_box .graph {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    padding: 20px;
}

.home_form_btn {
    border-radius: 10px;
    border: 1px solid var(--border);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    margin-top: 15px;
}

.home_form_btn>span:first-child {
    font-weight: bold;
    font-size: 20px;
}

.home_form_btn>span:first-child img {
    vertical-align: middle;
    margin-right: 8px;
    width: 20px;
    position: relative;
    top: -1px;
}


.home_form_btn>span:last-child {
    font-size: 20px;
    font-weight: bold;
}

.home_form_btn>span:last-child img {
    vertical-align: middle;
    margin-left: 8px;
    width: 20px;
    position: relative;
    top: -1px;
}

.home_board {
    border-top: 2px solid var(--blue);
}

.home_board li {
    border-bottom: 1px solid var(--border);
}

.home_board li a {
    padding: 10px;
    display: block;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}

.home_board li a .date {
    font-size: 13px;
    color: #666;
}

.home_gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.home_gallery li {
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 15px;
}

.home_gallery li .thumb img {
    width: 100%;
    aspect-ratio: 1/0.7;
    object-fit: cover;
}

.home_gallery li .title {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.home_youtube {
    background-color: var(--blue);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.home_youtube:last-child {
    margin-bottom: 0;
}

.home_youtube .video_bar {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.home_youtube .video_bar .video_btns {
    margin-right: 15px;
}

.home_youtube .video_bar .video_btns button {
    margin-right: 7px;
}

.home_youtube .video_bar .video_btns button:last-child {
    margin-right: 0;
}

.home_youtube .video_bar .video_btns img {
    width: 15px;
}

.home_youtube .video_bar p {
    flex: 1;
    color: #fff;
    font-size: 16px;
    text-align: center;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.home_youtube .video {
    position: relative;
    padding-bottom: 56.6%;
}

.home_youtube .video>* {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.home_layout>div:not(:first-child) {
    margin-top: 30px;
}

.survey_progress {
    padding: 15px 0px 0;
    position: relative;
    margin: 0 5px;
    margin-bottom: 15px;
}

.survey_progress .count {
    text-align: right;
    margin-bottom: 10px;
}

.survey_progress .count span {
    font-weight: bold;
    font-size: 16px;
    font-family: "preEB";
    color: #797979;
}

.survey_progress .bar {
    display: flex;
    border-radius: 3px;
    border: 1px solid var(--border);
    height: 15px;
}

.survey_progress .bar span {
    flex: 1;
    border-right: 1px solid var(--border);
    position: relative;
}

.survey_progress .bar span:last-child {
    border-right: 0;
}

.survey_progress .bar span.full {
    background-color: var(--blue);
}

.survey_progress .percent {
    background-color: #fff;
    border: 1px solid var(--blue);
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
    color: var(--blue);
    font-weight: bold;
    font-size: 15px;
    position: absolute;
    bottom: 25px;
    left: 0;
    transform: translateX(-50%);
}

.survey_progress .percent::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    border-width: 8px 6px 0 6.5px;
    border-color: var(--blue) transparent;
    border-style: solid;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;

}

.survey_progress .percent::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    border-width: 8px 6px 0 6.5px;
    border-color: #fff transparent;
    border-style: solid;
    left: 50%;
    transform: translateX(-50%);
    bottom: -7px;
    z-index: 1;


}

.survey_content {
    padding: 0 20px;
}

.survey_content .survey_tit {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    word-break: keep-all;
    padding-left: 25px;
    line-height: 1.5;
}

.survey_content .survey_tit b {
    position: absolute;
    left: 0;
    top: 0;

}

.check_list .checkbox input:disabled~b {
    background-color: #eee;
}

.check_list .checkbox input:checked~b {
    background-color: #fff;
    border-width: 2px;
}

.check_list .checkbox input:checked~b::after {
    border-color: var(--blue);
    left: 4px;
    top: 1px;
}

.check_circle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.check_circle input {
    display: none;
}

.check_circle span {
    border: 2px solid var(--border);
    font-size: 14px;
    color: var(--border);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    position: relative;
    background-color: #fff;
}

.check_circle input:checked~span {
    background-color: var(--blue);
    font-size: 0;
}

.check_circle input:checked~span::after {
    content: "";
    display: block;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
}

.survey_check_box {
    position: relative;
    padding: 3px 20px;
    border-right: 2px solid var(--border);
    border-left: 2px solid var(--border);
}

.survey_check_box::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--border);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.survey_check_txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 16px;
}

.survey_btns {
    display: flex;
    margin-top: 25px;
}

.survey_btns>* {
    flex: 1;
    color: #fff;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
}

.check_list>label {
    margin-bottom: 14px;
    display: block;
}

.check_list>label:last-child {
    margin-bottom: 0;
}

.survey_text {
    width: 100%;
    resize: none;
    border: 1px solid var(--border);
    height: 130px;
    padding: 15px;
    font-size: 14px;
}

.survey_text::placeholder {
    color: #acacac;
}

.stress_category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stress_category a {
    border: 1px solid var(--border);
    text-align: center;
    aspect-ratio: 1 / 0.75;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stress_category a p {
    font-size: 18px;
    margin-top: 10px;
}

.stress_category a img {
    width: 40%;
}

.board_search_box {
    display: flex;
    margin-bottom: 20px;
}

.board_search_box input {
    flex: 1;
    border: 1px solid var(--border);
    height: 35px;
    font-size: 15px;
    padding: 0 10px;
}

.board_search_box button {
    height: 35px;
    border: 1px solid var(--blue);
    color: var(--blue);
    font-size: 16px;
    width: 70px;
    margin-left: 5px;
}

.board_category {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.board_category>* {
    padding: 0 10px;
    font-size: 16px;
    position: relative;
    line-height: normal;
}

.board_category>*::after {
    content: '';
    width: 1px;
    height: 12px;
    display: block;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 7px;
}

.board_category>*:last-child::before {
    content: '';
    width: 1px;
    height: 12px;
    display: block;
    background-color: #000;
    position: absolute;
    right: 0;
    top: 7px;
}

.board_category>.active {
    color: var(--blue);
    font-weight: bold;
}

.gallery_board ul {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.gallery_board ul li a {
    display: block;
}

.gallery_board ul li {
    border: 1px solid var(--border);
    padding: 10px;
}

.gallery_board ul li .thumb {
    aspect-ratio: 1 / 0.6;
}

.gallery_board ul li .title {
    margin-top: 10px;
    font-size: 15px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
}

.gallery_board ul li .thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.no_list {
    text-align: center;
    line-height: 100px;
    font-size: 16px;
    color: #999;
}

.list_board {
    table-layout: fixedx;
    width: 100%;
    border-top: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
}

.list_board td {
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
    padding: 15px 5px;
}

.list_board td a {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;

}

.list_board td a.notice {
    color: var(--blue);
}

.list_board td a.notice span {
    color: #fff;
    background-color: var(--blue);
    display: inline-block;
    padding: 2px 4px;
    font-weight: normal;
    font-size: 13px;
}

.list_board td.date {
    color: #767676;
    font-size: 12px;
    letter-spacing: -0.5px;
}

.list_board td .list_info {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.list_board td .list_info span {
    margin-right: 10px;
    font-size: 0;
}

.list_board td .list_info span:last-child {
    margin-right: 0;
}

.list_board td .list_info span img {
    margin-right: 5px;
    vertical-align: middle;
    position: relative;
    top: 1px;
}

.list_board td .list_info span b {
    font-size: 12px;
    color: #767676;
    vertical-align: middle;
}

.board_btns {
    text-align: right;
    margin-top: 20px;
}

.board_btns a {
    width: 100px;
    line-height: 35px;
    background-color: var(--blue);
    color: #fff;
    display: inline-block;
    text-align: center;
    font-size: 15px;
}

.board_info {
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: end;
}

.board_info span {
    margin-right: 10px;
    font-size: 0;
}

.board_info span b {
    font-size: 12px;
    color: #767676;
    vertical-align: middle;
}

.board_info span img {
    margin-right: 5px;
    vertical-align: middle;
    position: relative;
    top: 1px;
}

#write_form .write_form_txt {
    font-weight: bold;
    font-size: 14px;
    color: var(--blue);
    margin-bottom: 10px;
}

#write_form input {
    width: 100%;
    padding: 0 10px;
    border: 1px solid var(--border);
    height: 35px;
}

#write_form textarea {
    border: 1px solid var(--border);
    width: 100%;
    height: 150px;
    resize: none;
    padding: 10px;
    margin: 10px 0;
}

#write_form textarea::placeholder,
#write_form input::placeholder {
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

#write_form .form_btns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

#write_form .form_btns>* {
    width: 100px;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    font-size: 15px;
    text-align: center;
}

#write_form .form_btns>*:first-child {
    margin-right: 7px;
}

#write_form .form_btns>*.submit_btn {
    background-color: var(--blue);
    color: #fff;
}

#write_form .form_btns>*.cancle_btn {
    background-color: #b1b1b1;
    color: #fff;
}

.bo_comment_box {
    border: 1px solid var(--border);
    position: relative;
}

.bo_comment {
    padding: 0 10px;
    position: relative;
    overflow-y: auto;
    height: calc(100% - 170px);
}

.bo_comment_tit {
    padding: 15px;
    display: flex;
    align-items: center;
}

.bo_comment_tit img {
    margin-right: 7px;
}

.bo_comment_tit span {
    font-size: 15px;
    font-weight: bold;
    color: var(--blue);
}

.bo_comment>ul>li {
    border-bottom: 1px solid var(--border);
    padding: 12px 10px 12px;
}

.bo_comment>ul>li:last-child {
    border-bottom: 0;
}

.bo_comment>ul>li:first-child {
    border-top: 1px solid var(--border);
}

.bo_comment_write {
    padding: 14px 24px 14px;
    border-top: 1px solid var(--border);
    padding: 10px;
}

.bo_comment_write>p {
    color: var(--black1);
    font-size: 14px;
    margin-bottom: 14px;
    font-weight: 500;
}

.bo_comment_write .comment_write_input {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bo_comment_write .comment_write_input input {
    flex: 1;
    border: 1px solid var(--border);
    background-color: #fff;
    padding-left: 10px;
    font-size: 12px;
    height: 30px;
}

.bo_comment_write .comment_write_input button {
    color: #fff;
    background-color: var(--blue);
    width: 75px;
    height: 30px;
    font-size: 14px;
    font-weight: bold;
}

.bo_comment .comment_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.bo_comment .comment_info .comment_modify_box {
    position: absolute;
    right: 0;
    bottom: -30px;
    background-color: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    display: none;
}

.bo_comment .comment_info .comment_modify_box span {
    background-color: var(--border);
    display: inline-block;
    width: 1px;
    height: 13px;
    margin: 0 2px;
    position: relative;
    top: 1px;
}

.bo_comment .comment_info .comment_modify_box button {
    font-size: 12px;
    color: #4b4b4b;
    width: 60px;
    height: 25px;
}

.bo_comment .comment_info .user_id {
    font-weight: bold;
    font-size: 13px;
}

.bo_comment .comment_info .write_date {
    font-size: 12px;
    display: inline-block;
    margin-left: 5px
}

.bo_comment .comment_info_btn {
    padding: 0 10px;
}

.bo_comment .comment_info_btn i {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #878686;
    display: block;
    margin-bottom: 3px;
}

.bo_comment .comment_info_btn i:last-child {
    margin-bottom: 0;
}

.bo_comment .comment_content {
    margin-top: 7px;

}

.bo_comment .cc_good_bad_btns {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.bo_comment .cc_good_bad_btns button {
    border: 1px solid var(--border);
    width: 60px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.bo_comment .cc_good_bad_btns button img {
    vertical-align: middle;
    margin-right: 5px;
    width: 12px;
    height: 12px;
    object-fit: contain;
}

.bo_comment .comment_content .cc_tit {
    display: flex;
    justify-content: space-between;
}

.bo_comment .comment_content .cc_tit p {
    color: var(--black1);
    font-size: 12px;
}

.bo_comment .comment_content .cc_tit button {
    color: #919191;
    font-size: 11px;
    padding: 0 10px;

}

.bo_comment .reply_box {
    padding-left: 5px;
}

.bo_comment .reply_box ul {
    margin-top: 10px;
}

.bo_comment .reply_box ul li {
    position: relative;
    padding-left: 20px;
    padding-top: 5px;
    margin-bottom: 8px;
}

.bo_comment .reply_box ul li:last-child {
    margin-bottom: 0;
}

.bo_comment .reply_box ul li .reply_ico {
    position: absolute;
    left: 0;
    top: 0;
}

.bo_comment .reply_box ul li .reply_ico img {
    width: 9px;
    height: 9px;
    object-fit: contain;
}

.bo_comment .reply_box .user_id {
    font-size: 13px;
}

.bo_comment .reply_box .write_date {
    font-size: 12px
}

.bo_comment .reply_box .cc_tit p {
    font-size: 12px;
}

.bo_comment .reply_box .reply_input_box {
    display: flex;
}

.bo_comment .reply_box .reply_input_box input {
    height: 25px;
    background-color: #f1f1f1;
    flex: 1;
    padding-left: 10px;
    font-size: 12px;
}

.bo_comment .reply_box .reply_input_box button {
    background-color: var(--blue);
    color: #fff;
    height: 25px;
    width: 45px;
    font-size: 12px;
    font-weight: 500;
}

.bo_comment .reply_box .reply_input_box span {
    margin-right: 10px;
}

.bo_comment .reply_box .reply_input_box span img {
    width: 9px;
    height: 9px;
    object-fit: contain;
}

.bo_comment .reply_box .reply_more_btn {
    text-align: right;
    margin-bottom: 10px;
    margin-top: 15px;
}

.bo_comment .reply_box .reply_more_btn button {
    width: 65px;
    height: 24px;
    font-size: 12px;
    border: 1px solid #b2b2b2;
    color: #b2b2b2;
}

.bo_comment .reply_write_box {
    display: none;
    margin-top: 10px;
}


.bo_modify_box {
    position: absolute;
    right: 0;
    top: 60px;
    background-color: #fff;
    border: 1px solid var(--blue);
    display: flex;
    display: none;
    align-items: center;
    font-size: 0;
}

.bo_modify_box span {
    background-color: var(--blue);
    display: inline-block;
    width: 1px;
    height: 13px;
    margin: 0 2px;
    position: relative;
    top: 1px;
}

.bo_modify_box button {
    font-size: 12px;
    color: var(--blue);
    width: 60px;
    height: 25px;
}

.bo_info_btn {
    padding: 0 10px;
    margin-left: 10px;
}

.bo_info_btn i {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #878686;
    display: block;
    margin-bottom: 3px;
}

/*} content  */
@media(max-width: 700px) {
    .wrap {
        width: 100%;
    }

    .page_title {
        font-size: 22px;
    }

    .in_back_btn {
        top: 48px;
    }

    .bo_view_tit {
        display: block;
        position: relative;
        padding: 15px 10px;
    }

    .bo_view_tit .tit {
        font-size: 15px;
    }

    .bo_view_tit .info {
        display: block;
        margin-top: 10px;
        font-size: 12px;
    }

    .bo_info_btn {
        padding: 0 10px;
        position: absolute;
        right: 0;
        top: 18px;
    }

    .bo_modify_box {
        top: 40px;
    }

    .gallery_board ul li .title {
        font-size: 14px;
    }

    .data_detail_2 li {
        padding: 20px 0px;
    }

    .data_detail_2 li .ico_box img {
        height: 30px;
    }
}

@media(max-width: 600px) {
    .my_pg_btns>a {
        height: 40px;
        font-size: 16px;
    }

    .my_pg_btns>a img {
        width: 12px;
    }

    #heart_rate>div span b {
        font-size: 25px;
    }

    #heart_rate>div p {
        font-size: 14px;
    }

    #heart_rate {
        background-size: 230px;
    }

    #heart_rate .ave {
        margin-left: 110px;
        margin-right: 53px;
    }
}

@media(max-width: 500px) {
    html {
        font-size: 14px;
    }

    .content {
        min-height: calc(100vh - 50px);
        padding: 30px 20px 20px;
    }

    .login_title_box p:first-child {
        font-size: 42px;
        margin: 6px 0 8px;
    }

    .login_title_box p:last-child {
        font-size: 14px;
    }

    .login_box .login_form {
        /* padding: 15px 20px ; */
    }

    .login_box .login_form input,
    .login_box .login_form button {
        height: 30px;
        padding-left: 10px;
    }

    .login_box .login_form input {
        margin-bottom: 4px;
    }

    .login_box .login_form button {
        padding: 0;
    }

    .login_box {
        width: 100%;
        overflow: hidden;
        padding: 0px 14% 0 17%;
    }

    .login_box .login_bg {}

    .bottom_logo img {
        width: 100px;
        ;
    }

    .header_wrap {
        height: 50px;
    }

    #header {
        height: 96px;
    }

    #header.fixed {
        height: 50px;
    }

    #header .logo {
        font-size: 22px;
    }

    #header .menu_btn {
        width: 25px;
        height: 25px;
        left: 20px;
    }

    #header .menu_btn img {
        width: 100%;
    }

    #header .menu_btn i {
        height: 3px;
    }

    .side_user_box p {
        font-size: 18px;
    }

    .side_menu_layer {
        padding: 20px 12px;
    }

    .side_user_links a {
        font-size: 12px;
        height: 30px;
        line-height: 28px;
    }

    .side_user_box {
        padding-bottom: 20px;
    }

    .side_menu ul li a {
        font-size: 16px;
    }

    .side_menu ul li {
        padding: 4px 8px;
    }

    .side_menu ul li a span:first-child {
        width: 30px;
        margin-right: 0;
    }

    .side_menu ul li a span:first-child img {
        vertical-align: middle;
        width: 22px;
        object-fit: contain;
        height: 22px;
        object-position: center;
    }

    .side_menu {
        padding: 20px 5px;
    }

    .side_bottom {
        padding-top: 20px;
    }

    .input_box .tit {
        font-size: 12px;
        width: 90px;
        padding: 0 6px;
        margin-right: 5px;
    }

    .page_title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .info_input_box .input_info {
        position: absolute;
        bottom: 2px;
        right: 0;
        padding: 0 5px;
        font-size: 9px;
    }

    .input_box .email_box .email_chk_btn {
        font-size: 12px;
    }

    .checkbox span,
    .radio span {
        font-size: 13px;
    }

    .radio b {
        width: 14px;
        height: 14px;
    }

    .private_box .private_txt {
        height: 200px;
    }

    .checkbox b {
        width: 14px;
        height: 14px;
    }

    #user_form .check_form_info {
        font-size: 14px;

    }

    .checkbox input:checked~b::after {
        left: 4px;
        top: 0px;
        width: 3px;
    }

    #user_form #submit_btn {
        font-size: 16px;
    }

    #user_form .mini_submit_btn #submit_btn,
    #user_form .mini_submit_btn .back_btn {
        width: 120px;
        font-size: 16px;
    }

    .verf_txt {
        padding-left: 30px;
        font-size: 11px;
    }

    .input_box .ico {
        width: 25px;
    }

    .input_box .ico img {
        width: 12px;
        height: auto;
    }

    .input_box input[type=text],
    .input_box input[type=password],
    .input_box input[type=number],
    .input_box input[type=tel] {
        font-size: 12px;
    }

    .input_box .email_box select {
        font-size: 12px;
    }

    .input_box .email_box span {
        font-size: 12px;
    }

    .input_box .radio_wrap {
        margin-left: 10px;
    }

    .my_pg_btns {
        padding: 0;
        margin-top: 70px;
    }

    .my_pg_btns>a {
        width: calc(33.333% - 2px);
        font-size: 13px;
    }

    .my_pg_btns>a:last-child {
        margin-bottom: 0;
    }

    .my_pg_btns>a img {
        margin-right: 3px;
    }

    .my_pg_menu li a {
        padding: 20px 0;
    }

    .my_pg_menu li a .count {
        font-size: 22px;
    }

    .my_pg_menu {
        gap: 10px;
    }

    .my_pg_menu li a .mp_tit p {
        font-size: 13px;
        letter-spacing: -0.8px;
        word-break: keep-all;
    }

    .my_pg_menu li a .mp_tit {
        margin-bottom: 10px;
    }

    .my_pg_menu li a .mp_tit img {
        width: 14px;
    }

    .survey_box .mp_tit2 span {
        font-size: 16px;
    }

    .survey_box .count {
        font-size: 20px;
    }

    .survey_box .mp_tit2 img {
        width: 14px;
    }

    .survey_box .count+img {
        width: 20px;
    }

    .survey_box {
        margin-top: 10px;
        padding: 10px 15px;
    }

    .in_back_btn {
        top: 0;
        left: 0;
        margin-bottom: 15px;
        font-size: 11px;
        height: 25px;
        padding: 0 8px;
        position: relative;
    }

    .in_back_btn img {
        width: 5px;
    }


    #heart_rate {
        background-size: 160px;
    }

    #heart_rate>div span b {
        font-size: 20px;
    }

    #heart_rate>div p {
        font-size: 12px;
        margin-top: 5px;
    }

    #heart_rate>div span {
        font-size: 12px;
    }

    #heart_rate .ave {
        margin-left: 72px;
        margin-right: 38px;
    }

    #heart_status_list {
        padding: 0 20px;
    }

    #heart_status_list .hs_time_div {
        font-size: 13px;
        width: 100px;
    }

    #heart_status_list .hs_graph_div .hs_tit {
        margin-bottom: 5px;
        font-size: 10px;
    }

    .data_detail {
        height: 150px;
    }

    .graph_date_box {
        height: 40px;
        margin-top: 20px;
    }

    .graph_date_box span {
        line-height: 40px;
        font-size: 15px;
    }

    .graph_date_box button img {
        width: 20px;
    }

    .data_detail_tit {
        font-size: 15px;
        margin-bottom: 10px;
        padding-left: 0;
    }

    .detail_s_table td {
        padding: 15px 10px;
    }

    .detail_s_table .unit_txt b {
        font-size: 18px;
    }

    .detail_s_table .unit_txt {
        font-size: 15px;
    }

    .detail_s_table .ico_tit {
        font-size: 12px;
    }

    .data_graph_detail {
        padding: 10px 15px;
    }

    .detail_s_table .unit_top_txt {
        font-size: 15px;
    }

    .oxygen_ave {
        width: 140px;
    }

    .detail_s_table .detail_s_flex>div:first-child {
        margin-right: 10px;
    }

    .oxygen_ico_img img {
        width: 30px;
    }

    .oxygen_ico_full_img img {
        width: 25px;
    }

    #skin_table td {
        padding: 15px 20px;
    }

    .tm_out_circle {
        width: 38px;
        height: 38px;
    }

    .tm_out {
        height: 26px;
        padding: 4px;
    }

    .tm_in {
        height: 14px;
    }

    .tm_layout {
        padding-left: 32px;
        padding-bottom: 37px;
        margin-top: 10px;
    }

    .tm_in span::after {
        height: 14px;
    }

    .tm_number_box {
        padding-left: 34px;
    }

    .tm_number_box li::after {
        height: 10px;
    }

    .tm_number_box li span {
        height: 6px;
    }

    .tm_number_box li:last-child::before {
        height: 10px;
    }

    .tm_number_box li {
        font-size: 12px;
    }

    .tm_number_box li:first-child,
    .tm_number_box li:last-child {
        padding-bottom: 30px;
    }

    .tm_out_circle {
        top: calc(50% - 18px);
    }

    .bc_title_box .unit b {
        font-size: 16px;
    }

    .bc_title_box .unit {
        font-size: 13px;
    }

    .bc_title_box .updown_txt {
        font-size: 12px;
    }

    .bc_unit_box p span {
        font-size: 11px;
    }

    .bc_wrap {
        padding: 20px 20px 30px;
    }

    .bc_title_box .updown_txt img {
        width: 10px;
    }

    .bc_graph_box {
        height: 12px;
    }

    .temper_img img {
        width: 18px;
    }

    .temper_ave_img img {
        width: 20px;
    }

    .board_wrap {
        min-height: calc(100vh - 150px);
    }

    .survey_list a p {
        font-size: 14px;
    }

    .survey_list a span {
        font-size: 12px;
    }

    .survey_list a {
        padding: 15px 10px;
    }

    .paging_wrap li {
        width: 20px;
        height: 20px;
        line-height: 18px;
    }

    .bo_cate {
        margin-bottom: 20px;
    }

    .bo_cate>* {
        font-size: 14px;
        padding-left: 12px;
        padding-right: 10px;
    }

    .bo_cate>*::before {
        font-size: 10px;
    }

    .bo_cate>*:last-child::after {
        font-size: 10px;
    }

    .bo_gb_btns {
        margin-bottom: 30px;
    }

    .bo_gb_btns button {
        font-size: 13px;
        height: 30px;
        width: 100px;
    }

    .bo_gb_btns button img {
        width: 14px;
        margin-right: 5px;
    }

    .bo_view_btns>a {
        font-size: 15px;
        line-height: 33px;
        height: 35px;
    }

    .bo_view_btns>a img {
        vertical-align: middle;
        position: relative;
        top: -1.5px;
        width: 5px;
    }

    .bo_view_content {
        padding: 20px 10px;
    }

    .bo_view_tit .info b {
        font-size: 9px;
        top: -1px;
    }

    .bo_list_btns>div a {
        font-size: 12px;
        padding: 10px;
    }

    .bo_list_btns>div span {
        font-size: 12px;
        padding: 0 10px;
    }

    .bo_list_btns>div span img {
        width: 9px;
        margin-right: 7px;
    }

    .bo_view_btns>a {
        width: 80px;
    }

    .bo_view_btns>a.list {
        width: 100px;
    }

    .board_list_wrap {
        min-height: calc(100vh - 190px);
    }

    .page_title2 {
        font-size: 25px;
        padding-top: 20px;
    }

    #user_form .result_txt {
        font-size: 20px;
        line-height: 1.5;
        padding: 100px 0 70px;
        text-align: center;
        word-break: keep-all;
    }

    .home_btn_lists {
        grid-template-columns: repeat(2, 1fr);
    }

    .home_lists>a {
        padding: 20px 25px;
    }

    .home_lists>a>.point {
        font-size: 22px;
    }

    .home_lists>a>.title img {
        width: 30px;
    }

    .home_lists>a>.title>div p:last-child {
        font-size: 16px;
    }

    .home_lists>a>.title>div p:first-child {
        font-size: 12px;
    }

    .home_section_tit {
        font-size: 18px;
    }

    .home_gallery li .title {
        font-size: 14px;
    }

    .home_board li a span.title {
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        overflow: hidden;
        -webkit-box-orient: vertical;
        flex: 1;
        font-size: 14px;
    }

    .home_board li a span.date {
        font-size: 11px;
    }

    .home_gallery li {
        padding: 10px;
    }

    .home_form_btn {
        padding: 15px 20px;
    }

    .home_form_btn>span:first-child {
        font-size: 18px;
    }

    .home_form_btn>span:last-child {
        font-size: 18px;
    }

    .home_form_btn>span:last-child img {
        top: -2px;
    }

    .home_btn_lists>a {
        aspect-ratio: 1/0.6;
    }

    .survey_check_box {
        padding: 2px 8px;
    }

    .survey_content .survey_tit {
        font-size: 16px;
    }

    .survey_check_box {
        padding: 0px 5px;
    }

    .survey_check_txt {
        font-size: 14px;
    }

    .survey_progress .percent {
        padding: 2px 5px;
        font-size: 12px;
    }

    .survey_progress .count span {
        font-size: 14px;
    }

    .survey_content {
        padding: 0 5px;
    }

    .check_list .checkbox input:checked~b::after {
        height: 5px;
        width: 2px;
        left: 3px;
        top: 1px;
    }
}