@charset "utf-8";

/*
import
*/
@import url("../../resource/css/basic.css?after");
@import url("../../resource/css/style.css?after");
@import url("../../resource/css/reset.css?after");
@import url("../../resource/css/common.css?after");
@import url("../../resource/css/graph.css?after");
@import url("../../resource/css/ui.css?after");
@import url("../../resource/css/layer.css?after");
@import url("../../resource/css/select.css");
@import url("../../resource/css/sms.css");
@import url("../../resource/css/datepicker.css");
@import url("../../resource/css/clone.css");
@import url("../../resource/css/calendar.css");
@import url("../../resource/css/auto_list.css");
@import url("../../resource/css/fonts/pretendard.css?after");


*{box-sizing: border-box; font-family: var(--font-family); letter-spacing:-0.2px; word-break: keep-all}

.pc-hidden{display: none !important;}
.inner{width:var(--wide-display); box-sizing: border-box; margin: 0 auto}

/* primary color 관련 위치  */
.txt-primary{color:var(--primary);}
.bg-primary{background-color:var(--primary); color: #fff;}
.bg-primary-line{border: 1px solid var(--primary);}
.btn-primary{background-color:var(--primary); color: #fff; border-color:var(--primary);}
.btn-primary:hover{background-color:#fff; color: var(--primary); border-color:var(--primary);}

.btn-line-primary{background-color:#fff; color: var(--primary); border-color:var(--primary);}
.btn-line-primary:hover{background-color:var(--primary); color: #fff;}

/* input 공통사항 */
/* input checkbox */
input[type='checkbox']{width: 0; height: 0; opacity: 0;}
input[type='checkbox'] + label{position: relative; padding-left: 3rem; font-size:1.8rem; }
input[type='checkbox'] + label:before{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: 0.1rem solid #ddd;
    box-sizing: border-box;
}
input[type='checkbox'] + label:after{
    position: absolute;
    left:0.3rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: '\e928';
    font-family: xeicon;
    font-size: 2rem;
    color: #999;
}
input[type='checkbox']:checked + label:before{border-color: #7300FF; background: #7300FF;}
input[type='checkbox']:checked + label:after{color: yellow}

input[type='checkbox']:focus + label{outline: black 2px solid;}
/* input radio */
input[type='radio']{width: 0; height: 0; opacity: 0;}
input[type='radio'] + label{position: relative; padding-left: 3rem; font-size:1.8rem; }
input[type='radio'] + label:before{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 0.1rem solid #ddd;
    box-sizing: border-box;
}
input[type='radio'] + label:after{
    position: absolute;
    left:0.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: '';
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #f5f5f5;
    box-sizing: border-box;
}
input[type='radio']:checked + label:before{border-color: #7300FF;}
input[type='radio']:checked + label:after{background: #7300FF;}
input[type='radio']:focus + label{outline: black 2px solid;}



input[type='text']{
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 9px;
    background: #f5f5f5;
}


input[type='date']{}
input[type='file']{}
input[type='password']{}
input[type='email']{}


.btn{
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: var(--radius-round);
    padding: 0;
    background: var(--bg-dark200);
    border-color: transparent;
    color: #fff;
}

.btn:hover{background: var(--color-text-base); border-color: var(--bg-dark200); color: var(--primary); font-weight: var(--font-weight-bold);}

html {width:100%; font-size:10px; }
body{font-size: 16px; font-family: "Pretendard", sans-serif; }

#wrap{overflow:hidden; position: relative; z-index: 0; width: 100%;}
#container {margin: 0 auto; background: #fff;}
body.login #container,
body.join #container{padding-top: 0}

#header{
    border-bottom: 0.1rem solid #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: block;
    background-color: transparent;/* 투명도 있는 배경색 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* 사파리 대응 */
    box-sizing: border-box;
    transition: all 0.5s;
}
#header div.header_wrap > div.flex{width: 128rem; margin: 0 auto; box-sizing: border-box}
#header h1{width: 180px; height: 33px;}
#header h1 a{
    display: block;
    width: 100%;
    height: 100%;
    background: url('./img/logo.png') center center no-repeat;
    background-size: contain;
}


#header.hide{top:-120px;}

/* 햄버거 버튼 */
.more-menu-area{display: none;}
.more-menu{position: relative; width: 3rem; height: 2rem; transition: all 0.2s; margin-left: 2rem;}
.more-menu span{position: absolute; top: 0; left:0; display: block; width: 100%; height: 0.3rem; background: #222; transition: all 0.2s;}
.more-menu span:nth-child(2){top:50%;}
.more-menu span:last-child{top:100%;}

.more-menu.on span{transform: rotate(45deg); top: 50%;}
.more-menu.on span:nth-child(2){display: none;}
.more-menu.on span:last-child{transform: rotate(-45deg);}

/* gnb */
#gnb{}
#gnb > ul{display: flex; width: 100%;}
#gnb > ul > li{position: relative; margin-left: 20px;}
#gnb > ul > li:first-child{margin-left: 0;}
#gnb > ul > li > a{display: block; height: 100px; line-height: 100px; font-size: var(--font-size-gnb); padding: 0 20px; text-align: center; font-weight: 600;}
#gnb > ul > li > ul{display: none; position:absolute; width: 100%; z-index: 100;}
#gnb > ul > li > ul > li > a{display: block; font-size: 1.6rem; padding: 1.5rem 0; text-align: center; background: #fff; border-top: 1px solid #ddd;}


/* hover 효과 */
#gnb > ul > li:hover > a{color: #fff; font-weight: 600; }
#gnb > ul > li:hover > ul,
#gnb > ul > li:focus-within > ul,
#gnb > ul > li:active > ul{display: block;}
#gnb > ul > li > ul > li:hover > a{background: #ddd;}

#header.plus{background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.0)); border-bottom: 0;}
#header.plus h1 a{background: url('./img/o_logo.png') center center no-repeat;}
#header.plus #gnb > ul > li > a{color: var(--primary);}
#header.plus #gnb > ul > li:hover > a{color: #fff;}


/* 다크모드 */
body.dark,
body.dark #section-wrap{background: var(--bg-dark200);}

body.dark #header{background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.0)); border-bottom: 0;}
body.dark #header h1 a{background: url('./img/o_logo.png') center center no-repeat !important; background-size: contain !important;}
body.dark #header #gnb > ul > li > a{color: var(--primary);}
body.dark #header #gnb > ul > li:hover > a{color: #fff;}

body.dark #gnb{background: var(--bg-dark200)}
body.dark .more-menu span{background: var(--bg-primary);}



/* 서브 페이지 스타일 */
body.sub #gnb > ul > li:hover > a{color: var(--primary);}

/* footer */
#footer{position: relative; background: var(--bg-dark200); padding: 50px 0; box-sizing: border-box; border-top: 1px solid #999;}
.footer_wrap{position: relative; width: 128rem; margin: 0 auto;}

.f-logo{width: 200px; height: 50px; margin: 0 auto}
.f-logo a{display: block; width: 100%; height: 100%; background: url('./img/logo.png') 0 0 no-repeat; background-size: contain; background-position: center center; filter: invert(1);}

ul.f-nav{margin-top: 2rem; justify-content: center}
ul.f-nav li{margin-right: 1rem;}
ul.f-nav li:last-of-type{margin-right: 0;}
ul.f-nav li a,
ul.f-nav li button{display: block; padding: 1rem 2rem; border-radius: 9px; background: var(--bg-dark300); color: #aaa}
ul.f-nav li.on a,
ul.f-nav li.on button{color: var(--primary); font-weight: 700;}

ul.f-nav li a:hover,
ul.f-nav li button:hover{background: rgba(255,255,255,0.2)}

div.f-info{margin-top: 2rem;}
div.f-info .flex{justify-content: center;}
div.f-info p{color: rgba(255,255,255,0.5); line-height: 1.8; padding-right: 3rem;}
div.f-info p:last-of-type{padding-right: 0;}
div.f-info p span{color: var(--primary);}
.copy{color: rgba(255,255,255,0.4); margin-top: 30px; text-align: center}

.bottom-fixed{position: fixed; bottom: 20px; right: 20px; display: flex; flex-wrap: wrap;flex-direction: column; align-items: flex-end;  z-index: 10;}
.bottom-fixed ul li{position: relative; margin-top: 1rem;}
.bottom-fixed ul li a,
.bottom-fixed ul li button{position: relative; width: 50px; height: 50px; border-radius: 50%; box-shadow: rgba(0,0,0,0.3) 5px 5px 5px; }
.bottom-fixed ul li i{width:100%; text-align: center; line-height: 50px; font-size: 30px;}

.bottom-fixed ul li a.call-area{background: var(--secondary);}

.bottom-fixed ul li span{position: absolute; top:50%; right:60px; transform: translateY(-50%); width: max-content; padding: 10px 15px; border-radius: 9px; background: #fff; display: block; box-shadow: rgba(0,0,0,0.3) 5px 5px 5px;}

.goto-top{ background: #fff;}
.goto-top:hover{background: #666; color: #fff;}


/* 개인정보처리방침 */
#privacy .tit{ font-size:28px; font-weight:800; color:#1C2126; letter-spacing:-0.02em; }
#privacy .box{ background:#fff; margin-top: 3rem}
#privacy .box-tit{
    display:flex; align-items:center; gap:12px; margin-bottom:16px;
}
#privacy .box-num{
    flex:none; width:34px; height:34px; border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    background:linear-gradient(150deg,#FFB238,#FF7A3D);
    color:#fff; font-weight:800; font-size:13px;
}
#privacy .box-tit h2{ margin:0; font-size:17px; font-weight:700; color:#1C2126; }
#privacy .stit{
    font-size:13.5px; font-weight:700; color:#1C2126;
    margin:18px 0 8px; padding-left:9px; border-left:3px solid #FF7A3D;
}
#privacy .stit:first-of-type{ margin-top:0; }
#privacy p.desc{ font-size:14px; line-height:1.85; color:#3A414A; margin:0 0 10px; }
#privacy .note{ background:#EEF3F9; color:#1F3A5F; padding:11px 13px; border-radius:8px; font-size:13.3px; }
#privacy ul.item{ list-style:none; padding:0; margin:0 0 12px; display:grid; gap:6px; }
#privacy ul.item.inline{ display:flex; flex-wrap:wrap; }
#privacy ul.item li{
    font-size:13.5px; color:#3A414A; background:#F7F6F2;
    padding:8px 12px; border-radius:7px; display:flex; align-items:flex-start; gap:7px; line-height:1.6;
}
#privacy ul.item li::before{ content:""; flex:none; width:5px; height:5px; margin-top:7px; border-radius:50%; background:#FF7A3D; }
#privacy .info-row{ display:flex; justify-content:space-between; gap:12px; padding:9px 0; border-bottom:1px solid #E6E3DC; font-size:13.5px; }
#privacy .info-row:last-child{ border-bottom:none; }
#privacy .info-row .k{ color:#565D66; font-weight:500; }
#privacy .info-row .v{ color:#1C2126; font-weight:600; text-align:right; }
#privacy .chip{
    display:inline-block; padding:10px 22px; border-radius:999px;
    background:linear-gradient(135deg,#FFB238,#FF7A3D); color:#fff; font-weight:800; font-size:13.5px;
}
#privacy .bg-gray-50{padding: 2rem; border-radius: 15px;}

#service .tit{ font-size:28px; font-weight:800; color:#1C2126; letter-spacing:-0.02em; }
#service .box{ background:#fff; margin-top: 3rem}
#service .box-tit{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
#service .box-num{
    flex:none; width:34px; height:34px; border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    background:linear-gradient(150deg,#FFB238,#FF7A3D);
    color:#fff; font-weight:800; font-size:13px;
}
#service .box-tit h2{ margin:0; font-size:17px; font-weight:700; color:#1C2126; }
#service .stit{
    font-size:13.5px; font-weight:700; color:#1C2126;
    margin:18px 0 8px; padding-left:9px; border-left:3px solid #FF7A3D;
}
#service .stit:first-of-type{ margin-top:0; }
#service p.desc{ font-size:14px; line-height:1.85; color:#3A414A; margin:0 0 10px; }
#service .note{ background:#EEF3F9; color:#1F3A5F; padding:11px 13px; border-radius:8px; font-size:13.3px; }
#service .warn{ background:#FFF1E8; color:#9A3B12; border:1px solid #FFDCC2; padding:11px 13px; border-radius:8px; font-size:13.3px; }
#service ul.item{ list-style:none; padding:0; margin:0 0 12px; display:grid; gap:6px; }
#service ul.item li{
    font-size:13.5px; color:#3A414A; background:#F7F6F2;
    padding:8px 12px; border-radius:7px; display:flex; align-items:flex-start; gap:7px; line-height:1.6;
}
#service ul.item li::before{ content:""; flex:none; width:5px; height:5px; margin-top:7px; border-radius:50%; background:#FF7A3D; }
#service ol.item-num{ list-style:none; padding:0; margin:0 0 12px; display:grid; gap:6px; counter-reset:num; }
#service ol.item-num li{
    counter-increment:num;
    font-size:13.5px; color:#3A414A; background:#F7F6F2;
    padding:8px 12px 8px 34px; border-radius:7px; position:relative; line-height:1.6;
}
#service ol.item-num li::before{
    content:counter(num); position:absolute; left:10px; top:8px;
    font-weight:700; font-size:12px; color:#FF7A3D;
}
#service ol.sub-num{ list-style:none; padding:0; margin:6px 0 10px 12px; display:grid; gap:4px; }
#service ol.sub-num li{ font-size:13px; color:#565D66; display:flex; gap:6px; }
#service .info-row{ display:flex; justify-content:space-between; gap:12px; padding:9px 0; border-bottom:1px solid #E6E3DC; font-size:13.5px; }
#service .info-row:last-child{ border-bottom:none; }
#service .info-row .k{ color:#565D66; font-weight:500; }
#service .info-row .v{ color:#1C2126; font-weight:600; text-align:right; }
#service .chip{
    display:inline-block; padding:10px 22px; border-radius:999px;
    background:linear-gradient(135deg,#FFB238,#FF7A3D); color:#fff; font-weight:800; font-size:13.5px;
}
#service .bg-gray-50{padding: 2rem; border-radius: 15px;}


/* 서브 페이지 공통 */
#section-wrap{margin:20rem 0 20rem;}
#section-wrap .page-tit{font-size: 5.8rem; font-weight: 800; line-height: 1; text-align: center}
#section-wrap .page-sub{font-size: 2.2rem; text-align: center; margin-top: 2rem; margin-bottom: 9rem;}
#section-wrap .page-location span{display: inline-block; padding: 0 1rem; margin-bottom: 4rem;}

#section-body.inner{width: var(--pc-display);}

body.dark #section-wrap .page-tit{color: var(--primary)}

/* 게시판 공동 */
.search{}
.search .btn{line-height: 1; font-size: 1.4rem; font-weight: 500;}

.search .input-box{border-bottom: 0.2rem solid #f5f5f5; margin-right: 2rem; height: 4rem; box-sizing: border-box}
.search .input-box input[type='text']{line-height: 4rem; font-size: 1.6rem; padding-left: 1rem; box-sizing: border-box; width: 100%; border: 0; background: unset}
.search form fieldset dl dt{width: 9%; min-width: 8rem; font-size: 1.4rem;}
.search form fieldset dl dd{width: 91%;}

.search .btn.btn-search{ margin-right: 0; background:#333; color: #fff; width: fit-content; padding: 0 10px;}
.search .btn.btn-search i{font-size: 20px;}

.search .btn.btn-search:hover{background: var(--bg-primary); color: #333;}

.category-tab{margin-bottom: 20px;}
.category-tab li{margin-right: 1rem;}
.category-tab li a{display: block; background: #f5f5f5; color: #999; font-size: 1.6rem; padding: 0.8rem 1.5rem; border: 0.1rem solid #ddd; border-radius: 4rem; width: max-content; box-sizing: border-box;}
.category-tab li a:hover,
.category-tab li.on a{background: #fff; color:var(--primary); border-color: var(--primary);}

body.dark .search .btn.btn-search{color: var(--primary); background: var(--bg-dark100)}
body.dark .search .btn.btn-search:hover{background: var(--bg-primary); color: #333;}

.list{}
.list-top{margin-bottom: 3rem;}
.list-top .left{width: fit-content;}
.list-top .right{}
.list-header{font-size: 1.4rem;}
.list-header > ul > li{text-align: center}
.list-body{font-size: 1.6rem; margin-top: 1rem;}
.list-body > ul > li{margin-bottom: 0.5rem;}
.list-body > ul > li:last-child{margin-bottom: 0;}
.list-body > ul > li > a,
.list-body > ul > li > button{display: block; width: 100%; height: 100%; border: 0.1rem solid #ddd; border-radius: 0.5rem;}
.list-body > ul > li > a > ul > li{padding: 1.5rem 0; box-sizing: border-box; text-align: center}

.list-body > ul > li:hover{background: #f5f5f5}

body.dark .list-top .left{filter:invert(1);}

.pagination{display: flex; justify-content: center}
.pagination ul li{border-radius: 0;}

.no-data{text-align: center;border-top: 0.1rem solid #ddd;  border-bottom: 0.1rem solid #ddd;  padding: 10rem 0; width: 100% !important;}

.view{}
.view-box{border-bottom:0.3rem solid #f5f5f5;}
.view-box .view-info{ padding-bottom: 3rem}
.view-box .view-info p{font-size: 4.6rem; font-weight: 600;}
.view-box .view-info p span{display: block; font-size: 1.8rem; margin: unset;}
.view-box .view-info dl{font-size: 1.6rem; margin-top: 2rem; align-items: center}
.view-box .view-info dl dt{color: #666; padding:0.5rem 1rem; border-radius: 0.5rem; background: #f5f5f5; font-size: 1.4rem;}
.view-box .view-info dl dd{padding: 0 2rem 0 1rem;}
.view-box div.view-content{border-top: 0.3rem solid #f5f5f5;  padding-top: 3rem; min-height: 15rem;}

.view .view-file{padding:1rem 0; box-sizing: border-box; border-top: 0.3rem solid #f5f5f5; }
.view .view-file p{font-size: 1.2rem;}
.view .view-file ul{}
.view .view-file ul li{}
.view .view-file ul li a{text-decoration: underline;}
.view .view-file ul li a strong{}
.view .view-file ul li a span{}
.view .around{}
.view .around ul{display: flex; justify-content: space-between; align-items: center; border-bottom: 0.3rem solid #f5f5f5; margin-bottom: 2rem; padding: 1rem 0}
.view .around ul li{width: 50%;}
.view .around ul li a,
.view .around ul li span{display: flex; width: 100%; padding: 1rem 0rem 1rem; box-sizing: border-box; }
.view .around ul li em{font-style: unset; color: #222}

.view .around ul li.prev{}
.view .around ul li.prev em{margin-right: 1rem;}
.view .around ul li.next a,
.view .around ul li.next span{text-align: right; flex-direction: row-reverse; }
.view .around ul li.next em{margin-left: 1rem;}

.view .around ul li.prev span,
.view .around ul li.next span{color: #999}

.view-footer{display: flex; justify-content: space-between}
.view-footer .left .btn.btn-modify{margin-right: 1rem;}
.view-footer.ver2{padding-top: 3rem; border-top: 0.1rem solid #ddd;}
.view-footer.ver2 .btn:not(:first-of-type){margin-left: 1rem;}



p.dot-list,
ul.dot-list > li{position:relative; padding-left:1rem; margin:0.5rem 0;}
p.dot-list:before,
ul.dot-list > li:before{position:absolute; top:0.8rem; left:0; display:block; content:""; width:0.3rem; height:0.3rem; background:#666; border-radius:50%; }
ul.dot-list > li > ul.dot-list{margin-bottom:10px;}
ul.dot-list > li > ul.dot-list li{padding-left:2rem;}
ul.dot-list > li > ul.dot-list li:before{content:"└"; top:5px;  width:1rem; height:1rem; line-height:1rem; background:none; border-radius:50%;}



@media screen and (max-width:1279px){
    /* 노트북 */
    .inner{width: 100%; min-width: 28rem; padding: 0 4%; box-sizing: border-box;}
    .m-hidden{display: none}
    .pc-hidden{display: block !important;}

    #header{}
    #header div.header_wrap > div.flex{position: relative; width: 100%; padding:1rem 4%; box-sizing: border-box}
    #header div.header_wrap > div.flex:last-of-type{height: 8rem;}
    #header h1 {width: 20rem; height: 100%;}

    #header.plus h1{width: 20rem; height: 100%;}
    #header.plus h1 a{background-size: contain}


    #container{}

    .more-menu-area,
    .more-menu{display: block}

    /* 햄버거 버튼 */
    #header.plus .more-menu span{background: var(--primary); }

    #header.open{background: #fff;}


    #gnb {
        display: block;
        position: absolute;
        width: 100%;
        top: 8rem;
        height: calc(100vh - 8rem);
        background: #fff;
        right: -100%;
        border-top: 0.1rem solid #ddd;
        padding: 0 4% 7rem;
        box-sizing: border-box;
        overflow: scroll;
        transition: all 0.2s;
    }
    #gnb > ul{display: block;}
    #gnb > ul > li{border-bottom: 0.1rem solid #ddd; margin-left: 0;}
    #gnb > ul > li > a{text-align: left; padding: 2rem 4%; height: auto; line-height: 1.3}
    #gnb > ul > li > ul{display: block; position: unset}
    #gnb > ul > li > ul > li > a{text-align: left; padding: 1.5rem 6%;}

    #header.open:before{display: none;}
    #header.open #gnb{right: 0;}

    .footer_wrap{width: 100%; padding: 0 4%; box-sizing: border-box}
    .sns-area{position: unset; margin-top: 2rem;}
    .radi-area{z-index: 10}

    .radi-area a.live:hover{}
    .radi-area a.live:hover .txt-box p:first-child span{display: block;}
    .radi-area a.live:hover .txt-box p:first-child b{display: none}
    .radi-area a.live:hover .txt-box p:last-child{display: none;}


    #section-body{padding:100px 4% 0}
    .lnb{}
    .lnb .inner{padding: 0;}
    .lnb .home{display: none}
    .lnb > .inner > ul:first-of-type{display: none;}
    .lnb > .inner > ul:last-of-type{width: 100%; border-right: 0}
    .lnb > .inner > ul > li a{width: 100%; border-right: 0}
    .lnb ul li ul{width: 100%;}



}
@media screen and (max-width:1203px){
    div.f-info > div.flex{display: block;}
    div.f-info > div.flex p{margin-top: 1rem; word-break: keep-all; text-align: center}


}
@media screen and (max-width:839px){

    #section-wrap{margin-top: 8rem;}
    #section-wrap .page-tit{font-size: 3.6rem;}
    #section-wrap .page-sub{margin-bottom: 4rem; font-size: 1.8rem;}

    .search{}
    .search form{display: block}
    .search .input-box{border-bottom: 0}
    .search form fieldset dl{padding: 10px; border-radius: 100px; border:1px solid #ddd;}
    .search form fieldset dl dt{display: none}
    .search form fieldset dl dd{width: 100% !important;}
    .search form fieldset dl dd div{width: 100%;}
    .search .input-box input[type='text']{height: 40px;}

    .search .btn.btn-search{height: 40px}

    .list-top{margin-bottom: 3rem; flex-wrap: wrap;     flex-direction: column-reverse;}
    .list-top .left{width: 100%; margin-top: 30px;}
    .list-top .right{width: 100%;}

    .list-header{display: none}
    .list-header > ul.flex,
    .list-body > ul > li ul.flex{flex-wrap: wrap;}
    .list-body > ul > li > a{padding:2rem 1rem; box-sizing: border-box}
    .list-body > ul > li > a > ul{flex-wrap: wrap}
    .list-body > ul > li > a > ul > li{padding: 0; text-align: left !important;}
    .list-body > ul > li > a > ul > li.row-no{width: 10% !important;}
    .list-body > ul > li > a > ul > li.row-title{width: 90% !important;}
    .list-body > ul > li > a > ul > li:nth-child(n+3){padding:0.5rem 1rem !important; border-radius: 0.5rem; margin-top: 1rem; margin-right: 2rem; width: fit-content !important; font-size: 1.4rem !important;}


}
@media screen and (max-width:599px){
    .pc-hidden{display: block;}
    .m-hidden{display: none;}
    #header h1,
    #header.plus h1,
    body.dark #header h1,
    body.dark #header.plus h1{width: 10rem}

    .f-logo{margin: 0}

    ul.f-nav{flex-wrap: wrap; justify-content: start}
    ul.f-nav li{margin-bottom: 10px;}
    ul.f-nav li a, ul.f-nav li button{padding: 10px 10px;}

    div.f-info > div.flex p{text-align: left}

    .copy{text-align: left}

    .bottom-fixed{right: 1rem; bottom:1rem;}
    .bottom-fixed ul li:first-child{margin-bottom: 0;}

    .bottom-fixed ul li a,
    .bottom-fixed ul li button{width: 35px; height: 35px;  }
    .bottom-fixed ul li i{ line-height: 35px; font-size: 20px;}

    .bottom-fixed ul li a.call-area{background: var(--secondary);}

    .bottom-fixed ul li span{right:50px;  padding: 6px 10px; font-size: 14px;}


    #section-wrap .page-sub{font-size: 1.4rem;}

    .mypage .view-box{padding: 3rem 0; border-left: 0; border-right: 0;}

    /* 게시판 view */
    .view-box .view-info p{font-size: 2.8rem;}
    .view-box .view-info dl{flex-wrap: wrap;}
    .view-box .view-info dl dt{width: 30%; margin-bottom: 1rem;}
    .view-box .view-info dl dd{width: 70%; margin-bottom: 1rem;}
    .view .around ul{flex-wrap: wrap;}
    .view .around ul li{width: 100%;}
    .view .around ul li a,
    .view .around ul li span{padding: 1rem;}
    .view .around ul li.next{border-top: 0.1rem solid #ddd;}
    .view .around ul li.next a,
    .view .around ul li.next span{flex-direction: unset}
    .view .around ul li.next em{margin-left: 0; margin-right: 1rem;}

    input[type='radio'] + label{font-size: 1.4rem;}
}

@media screen and (max-width:480px){
    .f-logo {width: 100%; height: 30px; }
    .f-logo a{background-position: left center}
    ul.f-nav li a {font-size: 1.4rem;}
    div.f-info > div.flex p{font-size: 1.4rem;}


    /* 게시판 공동 */
    .search{box-sizing: border-box; }
    .search .btn{line-height: 1; font-size: 1.4rem; font-weight: 500; margin-right: 0}

    .search .input-box{margin-right: 2rem; height: 4rem; box-sizing: border-box}
    .search .input-box input{width: 100%; line-height: 4rem; font-size: 1.6rem}
    .search form fieldset dl dd{width: 100%;}

    .search .btn.btn-search{ margin-right: 1rem; background:#333; color: #fff}
    .search .btn.btn-reset{background: #f5f5f5; color: #666}

    .pagination{width: 100%;}
    .pagination ul li{margin-right: 1px;}

}