@import url('https://fonts.googleapis.com/css2?family=Exo+2&display=swap');


html,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'scoredream', 'Exo 2', sans-serif;
    letter-spacing: -1px;
}

a {
    color: #333;
}

img {
    width: 100%;
    height: auto;
}

.color {
    color: #DF1F1C;
}

button {
    border: 0;
    background: none;
    text-align: unset;
}

button:focus,
select:focus {
    border: none;
    outline: none !important;
}

input:focus,
textarea:focus {
    outline: none;
}


header {
    width: 100%;
    max-width: 1000px;
    height: 55px;
    line-height: 55px;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0 auto;
    z-index: 1;
    /*
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
*/
}

header {
    background: #fff;
}

header li {
    margin: 0 20px 0 0;
    font-size: 16px;
    font-weight: 600;
}

header li:last-child {
    margin: 0;
}

header li > a,
header li > a:link,
header li > a:visited {
    color: #333;
}

header.pc {
    display: flex;
/*    border-bottom: 1px solid #eee;*/
}

header.mo {
    display: none;
    border-bottom: 0;
}

header > a {
    /*
    width: 100%;
*/
    font-size: 18px;
    font-weight: 600;
}

header img {
    width: auto;
    height: 25px;
}

header .ic_back img {
    margin: 0 10px 0 0;
}

.b_menu > a {
    line-height: 1em;
    text-align: center;
    width: 100%;
}

.b_menu > a.on {
    color: #D50B24;
}

.b_menu {
    width: 100%;
    height: 80px;
    line-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0px -5px 20px rgba(0, 0, 53, 0.05);
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 995;
    padding: 0 ;
    display: none;
}

.b_menu > a {
    line-height: 1em;
    text-align: center;
    width: 100%;
}

.b_menu > a.on {
    color: #D50B24;
}

.b_menu img {
    display: block;
    width: 40px;
    margin: 0 auto 6px;
}

.b_btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 0;
    z-index: 999;
}

.b_btn > a.btn {
    border-radius: 0;
    height: 60px;
    line-height: 60px
}

.b_btn img {
    display: block;
    width: 40px;
    margin: 0 auto 6px;
}

#board_list .b_menu {
    display: none;
}

@media (max-width:1300px) {

    header {
        padding: 0 5%;
    }
}

@media(max-width:1023px) {

    .b_menu {
        width: 100%;
        height: 80px;
        line-height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff;
        box-shadow: 0px -5px 20px rgba(0, 0, 53, 0.16);
        position: fixed;
        bottom: 0;
        z-index: 999;

        padding: 0;
        left: 50%;
        transform: translateX(-50%);
    }


    #guide_wrap .b_menu {
        z-index: -1;
    }

}

@media (max-width:800px) {
    header > a {
        position: unset;
        display: flex;
        align-items: center;
        transform: unset;
    }

    header.pc {
        display: none;
    }

    header.mo {
        display: flex;
        position: fixed;
    }
    header {
        padding: 0 5%;
    }

    .container {
        max-width: 800px;
    }

    .b_btn {
        max-width: 800px;
        left: 50%;
        transform: translateX(-50%);
    }

    #board_list .b_menu {
        display: flex;
    }
}

#content {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 0 0 100px;
}

.container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.mobile_container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

#register_wrap .container {
    max-width: 500px;
    overflow: hidden;
}

@media (max-width:800px) {
    #content{
        padding: 55px 0 100px;
    }
}

#join_wrap #content {
    height: auto;
    padding: 50px 0;
}

#join_wrap .container {
    max-width: 500px;
    height: 100%;
}

#push_wrap #content {
    padding: 0;
}
@media(max-width:800px){
    #push_wrap #content{
        padding: 55px 0 0;
    }
}

.today_meeting {
    text-align: center;
    font-size: 18px;
    margin: 40px auto;
    padding: 20px 5%;
    position: relative;
    width: 100%;
    max-width: 600px;
}

.today_meeting::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: url(../img/main/main_today01.png) no-repeat;
    background-size: contain;
    z-index: -1;
}

.today_meeting::after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 5%;
    top: 0;
    width: 50%;
    height: 100%;
    background: url(../img/main/main_today02.png) no-repeat;
    background-size: contain;
    background-position: right;
    z-index: -1;
}

.today_meeting h1 {
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 10px;
}

.today_meeting .counting_wrap {
    position: relative;
    display: inline-block;
}

.today_meeting .counter {
    color: #fff;
    width: auto;
    height: 100%;
    text-align: right;
    line-height: 37px;
    position: relative;
    display: inline-block;
    letter-spacing: 16px;
    padding: 0 0 0 16px;
}

.today_meeting .counter::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 37px;
    border-radius: 10px;
    line-height: 37px;
    background: #302D2C;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
    z-index: -1;
}

.banner_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.banner_wrap > a {
    width: 50%;
/*    height: 237.5px;*/
    margin: 0 5% 0 0;
    color: #fff;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.banner_wrap .match {
    background: #ff1655;
}

.banner_wrap .coach {
    background: #161616;
    margin: 0;
}
.banner_wrap .main_b_ic{
    width: auto;
    height: 50px;
    display: block;
    margin: 0 0 15px;
}


.banner_wrap .tit {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    /*    margin: 0 0 50px;*/
}

.banner_wrap i {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 3px;
    right: 0;
}

.banner_wrap i img {
    position: absolute;
    width: 100%;
    height: auto;
}

.banner_wrap p {
    font-size: 12px;
    word-break: keep-all;
    color: #fff;
    line-height: 1em;
}

#howtouse #content {
    padding: 0;
}

#howtouse .img_con {
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 60px;
}

@media (max-width:1024px) {
    .banner_wrap > a {
        padding: 5%;
    }

    .banner_wrap p {
        line-height: 1.5em;
    }
}

#join_wrap {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: #FFF8F9;
}

#join_wrap .tit_wrap {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 20px;
}

#join_wrap .img_wrap {
    width: 80%;
    margin: 0 auto;
}

.button_wrap {
    margin: 20px 0 0;
    width: 100%;
}

a.btn,
button.btn{
    width: 100%;
    display: block;
    line-height: 50px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    background: #302D2C;
}
a.btn.st2{
    background: #fff;
    color: #333;
    border:1px solid #aaa;
}

a.btn.back_color {
    background: #D50B24;
}

a.btn:focus,
a.btn:active,
a.btn:link,
a.btn:visited,
a.btn:hover,
button.btn:focus,
button.btn:active,
button.btn:link,
button.btn:visited,
button.btn:hover{
    color: #fff;
}
a.btn.st2:focus,
a.btn.st2:active,
a.btn.st2:link,
a.btn.st2:visited,
a.btn.st2:hover {
    color: #333;
}


#join_wrap p {
    font-size: 14px;
    margin: 10px 0 0;
    text-align: center;
    color: #777;
}

#join_wrap p > a {
    font-weight: 600;
}



#login_wrap .container {
    max-width: 500px;
    margin: 50px auto 0;
    /*
    display: flex;
    flex-direction: column;
    justify-content: center;
*/
}

#login_wrap .logo {
    width: 150px;
    margin: 0 auto 50px
}

#login_wrap p {
    margin: 10px 0 0;
    color: #999;
    font-size: 14px;
}

.input_wrap {
    margin: 10px 0 20px;
    position: relative;
}

.input_box {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    padding: 0 20px;
    line-height: 50px;
    margin: 0 0 10px;
    background: #fff;
    color: #666;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.input_box[type=date] {
    width: 100%;
    height: 40px;
    appearance: none;
}

.input_box[type="date"]::before {
    content: attr(data-placeholder);
    width: 100%;
}

.input_box[type="date"]:focus::before,
.input_box[type="date"]:valid::before {
    display: none
}

textarea.input_box {
    color: #666;
    font-size: 14px;
    font-family: 'scoredream', 'Exo 2', sans-serif;
    height: 400px;
    line-height: 1.5em;
    margin: 0;
    overflow-y: scroll;
    padding: 20px;
}

@media (max-width:800px) {
    .input_box {
        padding: 0 20px;
    }

    textarea.input_box {
        padding: 5%;
        height: 250px;
    }
}

.check_wrap {
    display: flex;
    flex-direction: column;
    /*    margin: 10px 0;*/
}

.check_wrap li {
    font-size: 14px;
    font-weight: 600;
    line-height: 2em;
    /*    border-bottom: 1px solid #eee;*/
}

.check_wrap li:last-child {
    border-bottom: 0;
}

.check_wrap li input {
    margin: 0;
    position: relative;
    top: -40px;
    left: -200px;
}

.check_wrap li input + label {
    font-weight: 400;
    margin: 0;
    position: absolute;
    left: 0;
    padding: 0 0 0 25px;
    background: url(../img/common/ic_check.png) no-repeat;
    background-size: auto 20px;
    background-position: 0 center;
}

.check_wrap li input:checked + label {
    background: url(../img/common/ic_check_on.png) no-repeat;
    background-size: auto 20px;
    background-position: 0 center;
}

.btnMore {
    position: absolute;
    right: 0;
    color: #999;
    font-weight: 400;
    font-size: 12px;
}

.check_wrap li .agreTxt {
    background: #F9F9F9;
    padding: 10px 5%;
    margin: 0 0 20px;
    /*    border-radius: 20px;*/
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5em;
    color: #999;
}

.agree_btn {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    padding: 0;
    margin: 0;
    border: 0;
    /*    border-bottom: 1px solid #ccc;*/
    color: #333;

}

.agree_btn input {
    margin: 0;
    position: relative;
    top: -40px;
    left: -200px;
}

.agree_btn input:checked + label {
    background: url(../img/common/ic_check_on.png) no-repeat;
    background-size: auto 20px;
    background-position: 0 center;
}

.agree_btn input + label {
    margin: 0;
    position: absolute;
    left: 0;
    padding: 0 0 0 25px;
    background: url(../img/common/ic_check.png) no-repeat;
    background-size: auto 20px;
    background-position: 0 center;
}


.upload_wrap {
    display: flex;
}

.upload_wrap .box {
    width: 100%;
    color: #999;
    font-size: 14px;
    font-weight: 300;
    padding: 2.5px 5%;
    line-height: 40px;
    margin: 0 10px 10px 0;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
}

.upload_wrap .box:last-child {
    margin-right: 0;
    border: 0;
}

.upload_wrap button.box {
    background: #aaa;
    color: #fff;
    text-align: center;
}

.title_wrap {
    margin: 20px 0 0;
}

.title_wrap h1 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3em;
}

.input_wrap .box_wrap {
    position: relative;
    width: 100%;
    display: flex;
}

.input_wrap .unit {
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

.input_wrap select {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    padding: 0 20px;
    line-height: 50px;
    margin: 0 0 10px;
    border-radius: 10px;
    background: #fff url(../img/common/ic_down.png) no-repeat;
    background-size: auto 15px;
    background-position: calc(100% - 20px) center;
    color: #666;
    border: 1px solid #ddd;
    font-family: 'scoredream';
    appearance: none;
}

@media (max-width:800px) {
    .input_wrap select {
        padding: 0 5%;
    }
}

.input_wrap .thumb_wrap {
    width: 100%;
    display: flex;
}

.input_wrap .thumb_wrap .img {
    margin: 0 5% 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.input_wrap .thumb_wrap .add_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #999;
}

.input_wrap .thumb_wrap .img_area {
    width: 100%;
    height: 100%;
}

.input_wrap .thumb_wrap .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.input_wrap .thumb_wrap .img:last-child {
    margin: 0;
}

.input_wrap .thumb_wrap .thumb_del {
    position: absolute;
    top: 15px;
    right: 15px;
    width: auto;
    height: 25px;
    padding: 0 15px;
    border-radius: 15px;
    color: #D50B24;
    border: 1px solid #D50B24;
    background: #fff;
    /*
    background: rgba(0, 0, 0, 0.5) url(../img/common/ic_close_white.png) no-repeat center;
    background-size: 60% auto;
*/
}


.nav {
    position: unset;
    top: 0;
    left: 0;
    border: 0;
    margin: 20px 0;
}

.nav > li {
    width: calc(50% - 5px);
    font-size: 14px;
    font-weight: 300;
    padding: 0;
    /*    line-height: 50px;*/
    margin: 0 10px 0 0;
    border-radius: 10px;
    overflow: hidden;
    border: 0;
    background: #bbb;
    color: #fff;
}

.nav > li:last-child {
    margin: 0;
}

.nav > li.active {
    font-weight: 600;
    background: #302D2C;
}

.nav > li > a {
    border: 0 !important;
    background: none !important;
    color: #fff;
    padding: 0;
    margin: 0;
    text-align: center;
    line-height: 50px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    color: #fff;
}

.main_slide {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
}

.main_slide .control {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 20px;
    z-index: 2;
}

.main_slide .pagination {
    /*
    position: absolute;
    right: 0;
    bottom: 0;
*/
    color: #fff;
    margin: 0;
    text-align: right;
    width: auto;
    border-radius: 0;
    padding: 0 15px;
    line-height: 1.8em;
    background: rgba(0, 0, 0, 0.4);
    float: right;
    font-family: 'Play';
    letter-spacing: 0.5px;
}

.main_slide img {
    display: inline-block !important;
    width: 100%;
    height: auto;
}


#board_list {
    background: #F9F9F9;
    position: relative;
}

#board_list #content {}

#board_list .tit_wrap {
    text-align: center;
    font-size: 2em;
    font-weight: 500;
    margin: 50px 0;
}

#board_list .list_wrap {
    display: flex;
    flex-wrap: wrap;
}

#board_list .list_wrap > li {
    width: calc(25% - 15px);
    background: #fff;
    border-radius: 5px;
    margin: 0 20px 20px 0;
    padding: 20px;
}

#board_list .list_wrap > li:nth-child(4n) {
    margin-right: 0;
}

#board_list .list_wrap a {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#board_list .list_wrap .thumb {
    width: 100%;
    height: 200px;
    margin: 0 0 10px 0;
    border-radius: 5px;
    overflow: hidden;
}

#board_list .list_wrap .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#board_list .list_wrap .text_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 0;
    font-size: 1.2em;
}

#board_list .list_wrap .text_wrap h3 {
    font-size: 1.1em;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin: 0 0 5px;
    color: #222;


    line-height: 1.2;
    max-height: 2.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#board_list .list_wrap .text_wrap h3 > img {
    width: auto;
    height: 8px;
    margin: 0 5px 0 0;
}

#board_list .list_wrap .text_wrap ul.text_row li {
    padding: 0 4px 0 0;
    margin: 0 4px 0 0;
    position: relative;
}

#board_list .list_wrap .text_wrap ul.text_row li::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 2px;
    right: 0;
    /*    transform: translateY(-50%);*/
    width: 1px;
    height: 70%;
    background: #eee;
}

#board_list .list_wrap .text_wrap ul.text_row li:last-child {
    margin: 0;
}

#board_list .list_wrap .text_wrap ul.text_row li:last-child::after {
    display: none;
}

#board_list .list_wrap .text_wrap dl {
    margin: 0 0 3px
}

#board_list .list_wrap .text_wrap dl:last-of-type {
    margin: 0;
}



@media (max-width:800px) {
    #board_list .tit_wrap {
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        margin: 20px 0;
    }

    #board_list .list_wrap > li {
        width: 100%;
        margin: 0 0 10px;
        border-radius: 5px;
        padding: 10px;
    }

    #board_list .list_wrap > li.noimg .thumb {
        display: none;
    }

    #board_list .list_wrap a {
        flex-direction: row;
    }

    #board_list .list_wrap .thumb {
        width: calc(50% - 10px);
        height: 180px;
        margin: 0 10px 0 0;
    }

    #board_list .list_wrap .text_wrap {
        width: 100%;
        font-size: 1em;
    }

    #board_list .b_menu {
        position: fixed;
    }
}


.text_row {
    display: flex;
}

#board_list .list_wrap .text_wrap .text_row {
    word-break: keep-all;
}

#board_list .list_wrap .text_wrap .text_row dt {
    margin: 0 5px 0 0;
    color: #222;
}

#board_list .list_wrap .text_wrap .text_row dd {
    display: flex;
    align-items: center;
    color: #555;
}

#board_list .list_wrap .text_wrap .text_row dd.small {
    font-size: 11px;
    letter-spacing: -1px;
}

#board_list .list_wrap .text_wrap .text_row dd > b {
    font-weight: 500;
}

.text_col {
    display: flex;
    flex-direction: column;
}

#board_list .list_wrap .text_wrap .text_col dd > strong {
    display: block;
}


#board_list .list_wrap .text_wrap .text_col dt {
    margin: 0 5px 0 0;
    color: #222;
}

#board_list .list_wrap .text_wrap .text_col dd {
    color: #555;

    line-height: 1.2;
    max-height: 3.6em;
    overflow: hidden;

    text-overflow: ellipsis;
    text-align: left;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media (max-width:400px) {
    /*
    #board_list .list_wrap .text_wrap .text_row{
        flex-direction: column;
    }
    #board_list .list_wrap .text_wrap ul.text_row dt{
        margin: 0 5px 0 0;
    }
    #board_list .list_wrap .text_wrap ul.text_row dl{
        flex-direction: row;
    }
    #board_list .list_wrap .text_wrap ul.text_row li::after{
        display: none;
    }
*/
}





.score {
    display: flex;
    justify-content: center;
    align-items: center;
}

.score > img {
    margin: 0 3px 0 0;
}

.score > img:last-child {
    margin: 0;
}

.text_wrap .score {
    height: auto;
    margin: 0 5px 0 0;
}

.text_wrap .score img {
    width: auto;
    height: 12px;
    display: inline-block
}

#board_view {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #fff;
}
#board_view.review{
    background: #F9F9F9;
}

#board_view header {}

#board_view #content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 auto;
    position: relative;
    min-height: auto;
    background: #F9F9F9;
/*    max-width: 1000px;*/
}

#board_view .container {
    width: 50%;
    padding: 0 2.5%;
}

#board_view .img_wrap {
    width: 50%;
    height: calc(100vh - 135px);
}

#board_view .img_wrap > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#board_view .text_wrap {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

#board_view .text_wrap h1 {
    font-size: 30px;
    font-weight: 600;
}

#board_view .text_wrap h3 {
    font-size: 14px;
    margin: 10px 0 0;
    display: flex;
    align-items: center;
}

#board_view .text_wrap h3 img {
    width: auto;
    height: 8px;
    margin: 0 5px 0 0;
}

#board_view .b_btn {
    position: relative;
    width: 100%;
/*    max-width: 1000px;*/
    margin: 0 auto;
}

#board_view .b_btn > a.btn {
    border-radius: 0;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
}


#board_view .text_wrap dl {
    margin: 20px 0 0;
    display: inline-block;
}

#board_view .text_wrap dt {
    font-size: 18px;
    font-weight: 600;
}

#board_view .text_wrap dd {
    font-size: 15px;
    margin: 5px 0 0;
    display: flex;
}

#board_view .no_image{
    height: 100%;
}
#board_view .no_image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width:800px) {
    #board_view header {
        position: absolute;
        top: 0;
        background: transparent;
        position: fixed;
    }

    #board_view #content {
        min-height: 100vh;
        flex-direction: column;
        padding: 0 0 100px;
    }

    #board_view .container {
        width: 90%;
        padding: 0;
    }

    #board_view .img_wrap {
        width: 100%;
        height: 370px;
    }

    #board_view .text_wrap {
        display: flex;
        flex-direction: column;
        margin: 20px 0;
    }

    #board_view .text_wrap h1 {
        font-size: 20px;
    }

    #board_view .text_wrap h3 {
        font-size: 14px;
        margin: 10px 0 0;
    }

    #board_view .text_wrap dl {
        font-size: 1em;
    }

    #board_view .text_wrap dt {
        font-size: 16px;
    }

    #board_view .text_wrap dd {
        font-size: 13px;
        margin: 5px 0 0;
    }

    #board_view .b_btn {
        position: fixed;
        width: 100%;
    }

    #board_view .b_btn > a.btn {
        border-radius: 0;
        font-size: 18px;
        height: 60px;
        line-height: 60px;
    }

#board_view .no_image {
    line-height: 370px;
}

}

.text_wrap .detail_review {
    background: #fff;
    border: 1px solid #C11920;
    color: #C11920;
    border-radius: 12px;
    padding: 0 10px;
    line-height: 20px;
    display: inline-block;
    font-size: 11px;
}

.text_wrap .detail_review img {
    width: auto;
    height: 0.8em;
    padding: 0 0 0 5px;
}

#board_view .text_wrap .score img {
    height: 18px;
}

#board_view.review {
    padding: 20px 0 0;
}

#board_view.review .container {
    background: #fff;
    padding: 50px 5%;
    box-shadow: 0 5px 10px rgba(241, 241, 241, 1);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
}

#board_view.review .tit_wrap {
    text-align: center;
}

#board_view.review .tit_wrap .reveiw_num {
    background: #fff;
    border: 1px solid #C11920;
    color: #C11920;
    border-radius: 12px;
    padding: 0 10px;
    line-height: 20px;
    display: table;
    margin: 0 auto;
    font-size: 13px;
}

#board_view.review .tit_wrap h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin: 10px 0;
}

#board_view.review .tit_wrap h1 > img {
    width: auto;
    height: 12px;
    padding: 0 10px;
}

#board_view.review .tit_wrap p {
    color: #999;
}

#board_view.review .con_wrap {
    margin: 20px 0;
}

#board_view.review .con_wrap .img {
    margin: 0 0 20px;
}

#board_view.review .con_wrap p {
    font-size: 14px;
    line-height: 1.8em;
    color: #777;
    text-align: center;
}

#board_view #introduce_view .text_row {
    display: flex;
    justify-content: space-between;
}

#board_view #introduce_view .text_wrap > .text_row:first-child {
    margin: 0 0 30px;
}

#board_view #introduce_view .text_row p {
    font-size: 12px;
    color: #999;
    margin: 5px 0 0;
}

#board_view #introduce_view .text_row > h3 {
    width: auto;
    margin: 0;
}

#board_view #introduce_view .text_row > h3 > i {
    margin: 0 3px 0 0;
}

#board_view #introduce_view .text_row > h3 > i > img {
    width: auto;
    height: 15px;
}

#board_view #introduce_view .text_wrap dl {
    margin: 10px 0 0;
    display: flex;
    justify-content: space-between;
}

#board_view #introduce_view .text_wrap dd {
    color: #555;
}

#board_view #introduce_view .text_wrap h6 {
    margin: 30px 0;
    color: #999;
    font-size: 12px;
}

@media (max-width:800px) {
    #board_view.review .container {
        width: 90%;
    }
}


#reivew_wrap .box_wrap {
    width: 100%;
    padding: 5%;
    background: #F9F9F9;
    border-radius: 10px;
    text-align: center;
}

#reivew_wrap .box_wrap h1 {
    font-family: 'Exo 2';
    font-size: 35px;
    font-weight: 600;
    color: #222;
}

#reivew_wrap .box_wrap .score {
    margin: 10px 0;
}

#reivew_wrap .score img {
    height: 15px;
    width: auto;
    display: inline-block;
}

#reivew_wrap .review_wrap {
    margin: 10px 0;
}

#reivew_wrap .review_wrap li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

#reivew_wrap .review_wrap .top {
    display: flex;
    font-family: 'Exo 2';
}

#reivew_wrap .review_wrap .top span {
    font-size: 13px;
    font-weight: 600;
    margin: 0 5px 0 0;
}

#reivew_wrap .review_wrap .top .score img {
    height: 12px;
}

#reivew_wrap .review_wrap .mid {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

#reivew_wrap .review_wrap .bot {
    font-size: 12px;
    color: #999;
    font-family: 'Exo 2';
}


#push_wrap,
#introduce_wrap {
    width: 100%;
    height: 100%;
    background: #F9F9F9;
}

#introduce_wrap #content {
    padding: 0 0 50px;
}

#push_wrap .list_wrap,
#introduce_wrap .list_wrap {
    margin: 20px 0;
}

#push_wrap .list_wrap li,
#introduce_wrap .list_wrap li {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 10px #F1F1F1;
    margin: 0 0 10px;
    padding: 20px;
    position: relative;
}

#introduce_wrap .list_wrap li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#introduce_wrap .list_wrap li a > img {
    width: 8px;
    height: auto;
}

#push_wrap .list_wrap li h1 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px;
    color: #333;
}

#introduce_wrap .list_wrap li h1 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 5px;
    color: #333;
}

#push_wrap .list_wrap li p,
#introduce_wrap .list_wrap li p {
    font-size: 12px;
    color: #999;
}

#introduce_wrap .list_wrap li h3 {
    font-size: 12px;
    font-weight: 400;
}

#introduce_wrap .list_wrap li h3 i {
    margin: 0 3px 0 0;
}

#introduce_wrap .list_wrap li h3 i > img {
    width: auto;
    height: 15px;
}

#push_wrap .list_wrap li .off{
    display: inline;
    font-size: 11px;
    padding: 5px;
    margin: 0 5px 0 0;
    text-align: center;
    line-height: 20px;
    color: #fff;
    background: #999;
    border-radius: 5px;
}
#push_wrap .list_wrap li .on{
    display: inline;
    font-size: 11px;
    padding: 5px;
    margin: 0 5px 0 0;
    text-align: center;
    line-height: 20px;
    color: #fff;
    background: #D50B24;
    border-radius: 5px;
}


@media(max-width:800px) {

    #push_wrap .list_wrap li,
    #introduce_wrap .list_wrap li {
        padding: 5%;
    }
}

#mypage {
    padding: 40px 0;
}

#mypage .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#mypage .profile .thumb_img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 0 5px;
}

#mypage .profile .thumb_img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#mypage .profile h1 {
    font-size: 18px;
    margin: 10px 0;
}

#mypage .profile .modify {
    background: #fff;
    border: 1px solid #aaa;
    color: #777;
    border-radius: 12px;
    padding: 0 10px;
    line-height: 20px;
    margin: 0 auto;
    font-size: 12px;
}

#mypage .profile .modify > img {
    width: auto;
    height: 10px;
    padding: 0 0 0 5px;
}

#mypage .menu_wrap {
    width: 100%;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

#mypage .menu_wrap li {
    width: calc(50% - 5px);
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 10px #F1F1F1;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin: 0 10px 10px 0;
    overflow: hidden;
    padding: 20px;
}

#mypage .menu_wrap li:nth-child(2n) {
    margin-right: 0;
}

#mypage .menu_wrap li a {
    display: flex;
}

#mypage .menu_wrap li i {
    line-height: 1em;
    display: inline-block;
    margin: 0 10px 0 0;
}

#mypage .menu_wrap li i > img {
    width: auto;
    height: 16px;
}

@media (max-width : 800px) {
    #mypage .menu_wrap {
        flex-direction: column;
    }

    #mypage .menu_wrap li {
        width: 100%;
        margin: 0 0 10px;
        padding: 20px 5%;
    }
}


#qna {
    /*    padding: 20px 0;*/
}

#qna_wrap #content {
    padding: 0;
}
@media (max-width:800px){
    #introduce_wrap #content,
    #qna_wrap #content {
        padding: 55px 0 0;
    }
}

#qna .notice_wrap {
    background: #F9F9F9;
    padding: 30px 5%;
    text-align: center;
    font-size: 13px;
    line-height: 1.8em;
    color: #646464;
    word-break: keep-all;
}

#qna.contact {
    background: #F9F9F9;
    min-height: 100vh;
}

.shipFaq {
    width: 1300px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

.shipFaq dl {
    margin: 0 auto;
}

.shipFaq dl dt {
    position: relative;
    line-height: 20px;
    font-size: 17px;
    border-top: 1px solid #eee;
}

.shipFaq dl dt:first-of-type {
    border: 0;
}

.shipFaq dl dt a {
    padding: 20px;
    padding-left: 40px;
}

.shipFaq dl dt a > img {
    width: auto;
    height: 12px;
    margin: 0 10px 0 0;
}

.shipFaq dl dt a .tit {
    vertical-align: middle;
    display: inline-block;
}

.shipFaq dl dt a .sub_tit {
    display: block;
    font-size: 14px;
    color: #aeaba4;
    font-weight: 300;
}

.shipFaq dl dt::after {
    content: '';
    position: absolute;
    top: 22px;
    right: 5%;
    font-size: 16px;
    font-weight: 600;
    color: #999;
    background: url(../img/common/ic_down.png) no-repeat;
    background-size: cover;
    width: 12px;
    height: 12px;
}

.shipFaq dl dt.on::after {
    background: url(../img/common/ic_up.png) no-repeat;
    background-size: cover;
}

.shipFaq dl dt a {
    display: block;
    line-height: 1.3em;
    font-weight: 500;
    color: #333;
    background: url(../img/common/ic_q.png) no-repeat;
    background-size: auto 13px;
    background-position: 0 center;
}

.shipFaq dl dd {
    display: none;
    padding: 0 40px 20px;
    font-size: 13px;
    font-weight: 400;
    color: #777;
}

@media (max-width:800px) {
    .shipFaq {
        width: 100%;
        margin: 0;
        word-break: keep-all;
    }

    .shipFaq dl dt a {
        padding: 5% 40px;
        padding-left: calc(5% + 20px);
        background-position: 5% center;
    }

    .shipFaq dl dd {
        padding: 0 40px 5%;

    }
}

.check_wrap.st2 {
    margin: 0 0 10px;
    background: #F9F9F9;
    border-radius: 10px;
    padding: 20px;
}

@media (max-width:800px) {
    .check_wrap.st2 {
        padding: 5%;
    }
}

.check_wrap.st2 h1 {
    /*    color: #666;*/
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3em;
}

.check_wrap.st2 ul {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0 0;
}

.check_wrap.st2 li {
    /*    width: 33.33%;*/
    position: relative;
    overflow: hidden;
    margin: 0 5px 5px 0;
}

.check_wrap.st2 li span {
    /*    display: flex;*/
}

.check_wrap.st2 li input {
    margin: 0;
    position: absolute;
    top: -40px;
    left: -200px;
}

.check_wrap.st2 li input + label {
    font-weight: 400;
    margin: 0;
    position: relative;
    left: 0;
    padding: 0 10px;
    border-radius: 15px;
    color: #666;
    border: 1px solid #eee;
    background: #fff;
    line-height: 2em;
}

.check_wrap.st2 li input:checked + label {
    color: #D50B24;
    border: 1px solid #D50B24;
    background: #fff;
}

.check_wrap st2 .err_box {}



#guide_wrap #content {
    padding: 0;
}

#guide_wrap #content {
    width: 550px;
    margin: 0 auto;
}

#guide_wrap header {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 5%;
}

#guide_wrap header > a {
    position: relative;
    left: 0;
    transform: unset;
}

.guide_bg {
    position: relative;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    overflow: hidden;
    margin: 0 auto;
}

.guide_img {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 997;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
}

.guide_img .head > img {}

.guide_img .guide01 {
    position: absolute;
    top: 13px;
    left: 5%;
    width: 60.46%;
    height: auto;
}

.guide_img .guide02 {
    position: absolute;
    top: 13px;
    right: 5%;
    width: 62.12%;
    height: auto;
}

.guide_img .bottom > img {
    width: 100%;
    bottom: 10px;
}

.guide_img .guide03 {
    position: absolute;
}

.guide_img .guide04 {
    position: absolute;
}

.guide_img .guide05 {
    position: absolute;
}

#guide_wrap .b_menu {
    display: flex;
    max-width: 500px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

#guide_wrap .close_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    padding: 20px 5%;
    z-index: 999;
    cursor: pointer;
}

#guide_wrap .close_btn > img {
    width: 15px;
    height: auto;
    margin: 0 0 0 5px;
}

@media(max-width:800px) {
    #guide_wrap #content {
        width: 100%;
    }
}

#find_info h3{
    text-align: center;
    font-size: 1.6em;
    line-height: 1.5em;
    color: #444;
    margin: 0 0 50px;
    word-break: keep-all;
}
#find_info .lst{
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #efefef;
    border-radius: 10px;
}
#find_info input[type='radio']{
    margin: 0 5px 0 0;
}
#find_info label{
    font-weight: 500;
    color: #666;
}

.btn_wrap{
    display: flex;
    margin: 50px 0;
}
.btn_wrap .btn{
    margin: 0 10px 0 0;
    width: calc(50% - 5px);
}
.btn_wrap .btn:last-child{
    margin: 0;
}

#find_modal .modal-dialog,
#reviewModal .modal-dialog,
#myQnaModal .modal-dialog{
    width: 80%;
    max-width: 500px;
    margin: 100px auto;
}
#find_modal .modal-header h5,
#reviewModal .modal-header h5,
#myQnaModal .modal-header h5{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
#find_modal #select_id{
    text-align: center;
    padding: 20px;
    background: #f7dade;
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}
#reviewModal .rating-container{
    text-align: center;
    padding: 20px;
    background: #fff;
    display: block;
    margin: 0;
    font-weight: 600;
}

#reviewModal textarea{
    width: 100%;
    height: 100px;
    padding: 20px;
    border: 1px solid #efefef;
    border-radius: 15px;
}
#find_modal .btn_wrap,
#reviewModal .btn_wrap,
#myQnaModal .btn_wrap{
    margin: 0;
}

#myQnaModal .modal-content{
    box-shadow: none;
}

#myQnaModal .modal-body{}
#myQnaModal .modal-body .text_row{
    justify-content: space-between;
}
#myQnaModal .modal-body .text_row dt{
    font-size: 14px;
}
#myQnaModal .modal-body .text_row dd{
    color: #555;
}
#myQnaModal .modal-body h3{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3em;
    color: #666;
    margin: 10px 0;
}
#myQnaModal .modal-body .answer_wrap{
    background: #eee;
    padding: 5%;
    border-radius: 10px;
}

.place_wrap{
    margin: 40px 0;
    
}
.place_wrap img{
    border-radius: 5px;
    overflow: hidden;
    height: 210px;
    object-fit: cover;
}
.place_wrap h6{
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2em;
    margin: 20px 0 10px;
}
.place_wrap h6 > i > img{
    width: auto;
    height: 14px;
}
.place_wrap h3{
    font-size: 16px;
    font-size: 600;
    margin: 0 0 10px;
}
.place_wrap p{
    display: inline-block;
    word-break: break-word;
    font-size: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    
    white-space: normal;
    line-height: 1.5;
    max-height: 4.5em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.register_pop .modal-header{
	position: relative;
}
.register_pop .modal-title{
	font-size: 1.8em;
	font-weight: 600;
	color: #222;
}
#modal01 .btn_close{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2em;
	font-weight: 500;
}
.register_pop .modal-body p{
	font-size: 1.2em;
	word-break: keep-all;
}