/* reset */
@import url("https://use.fontawesome.com/d00b556be3.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/pretendard/1.3.9/static/pretendard.css");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
*::after {
  box-sizing: border-box;
}
*::before {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
address {
  border: 0;
  font-size: inherit;
  font-style: normal;
  vertical-align: top;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: 0;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

a,
button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* global */
:root {
  --defaultFont: AppleSDGothicNeo-Regular, Malgun Gothic, dotum, sans-serif;
  --webFont: Pretendard, AppleSDGothicNeo-Regular, Malgun Gothic, dotum,
      sans-serif;
  --black: #000;
  --red: #9c000d;
  --orange: #d64c00;
  --brown: #e78d05;
  --green: #4ae61a;
  --blue: #0123b4;
  --textColor: #222;
  --primaryColorL: #602b23;
  --primaryColor: #42070c;
  --primaryColorB: #240205;
  --secondaryColorL: #b80e1c;
  --secondaryColor: #9c000d;
  --secondaryColorB: #75020b;
  --tertiaryColorL: #ee5807;
  --tertiaryColor: #d64c00;
  --tertiaryColorB: #be4300;
  --gray100: #f5f5f5;
  --gray200: #e0e0e0;
  --gray300: #d4d4d4;
  --gray400: #b7b7b7;
  --tBasic: 14px;
  --spaceS: 10px;
  --spaceM: 25px;
  --spaceL: 65px;
  --spaceXL: 120px;
  --btnHeight: 44px;
  --btnRadius: 8px;
  --btnPadding: 15px;
  --scrollWidth: 9px;
}

.col_scrollbar {
  width: var(--scrollWidth) !important;
  padding: 0 !important;
  border-left: 0 !important;
}

body {
  font-family: var(--webFont);
  line-height: 1.4;
  color: var(--textColor);
  font-weight: 400;
  font-size: var(--tBasic);
  background: #fff;
}

input:not([type=checkbox], [type=radio], [type=submit]),
textarea,
select {
  height: var(--btnHeight);
  line-height: var(--btnHeight);
  background: #fff;
  text-indent: 0;
  padding: 0 var(--btnPadding);
  border-radius: var(--btnRadius);
  border: 1px solid var(--gray400);
  width: 100%;
  font-size: 14px;
}

input:not([type=checkbox], [type=radio], [type=submit], :-moz-read-only):focus {
  border-color: var(--primaryColor);
}

input:not([type=checkbox], [type=radio], [type=submit], :read-only):focus,
textarea:focus {
  border-color: var(--primaryColor);
}

input:not([type=checkbox], [type=radio], [type=submit])::-moz-placeholder, textarea::-moz-placeholder {
  color: #b6b6b6;
}

input:not([type=checkbox], [type=radio], [type=submit])::placeholder,
textarea::placeholder {
  color: #b6b6b6;
}

select {
  background: #fff url(../img/arrow01.png) no-repeat right 12px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

textarea {
  height: 80px;
  padding: var(--btnPadding);
  line-height: 1.4;
}

input.line {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}
input.half {
  width: 50%;
}
input.short {
  width: 110px;
}
input#captcha {
  width: 120px;
}
input.date {
  width: 140px;
  background: url(../img/icon_calendar.png) no-repeat right 10px center;
}
input.sm {
  height: calc(var(--btnHeight) - 9px);
  padding: 0 9px;
}

label.check {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
label.check input {
  position: absolute;
  opacity: 0;
}
label.check input + i {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid var(--gray400);
  background: #fff;
}
label.check input:checked + i {
  border-color: var(--primaryColor);
  background: var(--primaryColor);
  position: relative;
}
label.check input:checked + i::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: -2px -1px;
}
label.check span {
  white-space: nowrap;
}

img {
  max-width: 100%;
}

strong,
b,
th,
dt {
  font-weight: 600;
}

.ibtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 1;
  height: var(--btnHeight);
  border: 1px solid transparent;
  border-radius: var(--btnRadius);
  padding: 0 20px;
  font-size: var(--tBasic);
  font-weight: 500;
}
.ibtn.primary {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
}
.ibtn.primaryL {
  background-color: var(--primaryColorL);
  border-color: var(--primaryColorL);
  color: #fff;
}
.ibtn.primary-line {
  border-color: var(--primaryColor);
  color: var(--primaryColor);
}
.ibtn.secondary {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
  color: #fff;
}
.ibtn.secondary-line {
  border-color: var(--secondaryColor);
  color: var(--secondaryColor);
}
.ibtn.tertiary {
  background-color: var(--tertiaryColor);
  border-color: var(--tertiaryColor);
  color: #fff;
}
.ibtn.tertiaryB {
  background-color: var(--tertiaryColorB);
  border-color: var(--tertiaryColorB);
  color: #fff;
}
.ibtn.tertiary-line {
  border-color: var(--tertiaryColor);
  color: var(--tertiaryColor);
}
.ibtn.default {
  background-color: #fff;
  border-color: #000;
  color: #000;
}
.ibtn.red {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff;
}
.ibtn.redL {
  background-color: var(--redL);
  border-color: var(--redL);
  color: #fff;
}
.ibtn.red-line {
  border-color: var(--red);
  color: var(--red);
}
.ibtn.blue {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.ibtn.blue-line {
  border-color: var(--blue);
  color: var(--blue);
}
.ibtn.blueL {
  background-color: var(--blueL);
  border-color: var(--blueL);
  color: #fff;
}
.ibtn.gray {
  background-color: #ccc;
  border-color: #ccc;
  color: #fff;
}
.ibtn.lg {
  font-size: 1.1em;
  height: calc(var(--btnHeight) + 12px);
  border-radius: 8px;
  padding: 0 40px;
}
.ibtn.sm {
  font-size: 0.9em;
  padding: 0 7px;
  height: calc(var(--btnHeight) - 9px);
  border-radius: 4px;
  font-weight: 400;
}
.ibtn.xs {
  font-size: 0.85em;
  padding: 0 5px;
  height: calc(var(--btnHeight) - 12px);
  border-radius: 4px;
  font-weight: 400;
}
.ibtn.full {
  width: 100% !important;
}

span.space {
  display: inline-block;
  width: 10px;
}

.succession {
  margin-top: var(--spaceM);
}

.successionS {
  margin-top: var(--spaceS);
}

.successionL {
  margin-top: var(--spaceL);
}

.successionXL {
  margin-top: var(--spaceXL);
}

.paragraph {
  margin-bottom: var(--spaceXL);
}

.txt_black {
  color: var(--textColor);
}

.txt_red {
  color: var(--red);
}

.txt_blue {
  color: var(--primaryColor);
}

.txt_gray {
  color: var(--gray400);
}

.txt_primary {
  color: var(--primaryColor);
}

.txt_l {
  font-size: 1.15em;
}

.txt_s {
  font-size: 0.95em;
  letter-spacing: -0.5px;
}

.btn_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: var(--spaceL);
}
.btn_area p {
  width: 100%;
  text-align: center;
  margin-bottom: var(--spaceS);
}

.overflow_y {
  overflow-y: scroll;
}

.overflow_x {
  overflow-x: auto;
}
.overflow_x > * {
  width: -moz-max-content;
  width: max-content;
}

table.fixed {
  table-layout: fixed;
}

th,
td {
  vertical-align: middle;
}

.td50 {
  width: 50px;
}

.td60 {
  width: 60px;
}

.td70 {
  width: 70px;
}

.td80 {
  width: 80px;
}

.td90 {
  width: 90px;
}

.td100 {
  width: 100px;
}

.td110 {
  width: 110px;
}

.td120 {
  width: 120px;
}

.td130 {
  width: 130px;
}

.td150 {
  width: 150px;
}

.td170 {
  width: 170px;
}

.td180 {
  width: 180px;
}

.td200 {
  width: 200px;
}

.td250 {
  width: 250px;
}

.td280 {
  width: 280px;
}

.td300 {
  width: 300px;
}

.align_left {
  text-align: left !important;
}

.align_center {
  text-align: center !important;
}

.align_right {
  text-align: right !important;
}

.pc_no,
.mobile_only {
  display: none;
}

:root {
  --siteWidth: 1200px;
}

#header,
#contents,
#footer {
  min-width: var(--siteWidth);
}

.wrap {
  width: var(--siteWidth);
  margin: 0 auto;
}

/***** Header *****/
#header .logo {
  font-size: 2em;
  padding: 30px 0;
}
#header .gnb {
  background: var(--primaryColor);
  color: #fff;
}
#header .gnb ul {
  display: flex;
  gap: 80px;
}
#header .gnb a {
  display: flex;
  align-items: center;
  height: 60px;
  font-size: 1.3em;
  font-weight: 500;
  gap: 10px;
}
#header .gnb a::before {
  content: "";
  width: 26px;
  height: 26px;
  background: url(../img/icon_home.png) no-repeat center;
}
#header .gnb .depth1:nth-of-type(2) a::before {
  background-image: url(../img/icon_evol.png);
}
#header .gnb .depth1:nth-of-type(3) a::before {
  background-image: url(../img/icon_comm.png);
}

/***** Footer *****/
#footer .gnb {
  background: var(--gray100);
  border-top: 1px solid var(--gray300);
  border-bottom: 1px solid var(--gray300);
}
#footer .gnb ul {
  display: flex;
  gap: 50px;
}
#footer .gnb a {
  display: flex;
  align-items: center;
  height: 50px;
}
#footer p {
  padding: 40px 0;
  font-size: 1.7em;
  font-weight: 700;
}

/***** Contents *****/
#contents {
  padding: 20px 0 60px 0;
}
#contents .wrap {
  display: flex;
  gap: 10px;
}
#contents #aside {
  flex: 0 0 320px;
  float: none;
  margin: 0;
}
#contents #aside .banner img {
  margin-top: 10px;
}
#contents #aside.no_side {
  display: none;
}
#contents #aside.no_side + #main {
  display: none;
}
#contents #main {
  flex: 1 1 100%;
}

.btn_favor {
  display: inline-flex;
  font-size: 0;
  width: 21px;
  height: 27px;
  background-color: #999;
  -webkit-mask-image: url(../img/icon_favo.png);
          mask-image: url(../img/icon_favo.png);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.btn_favor.on {
  background-color: #000;
}

.room_list {
  margin-top: 20px;
}
.room_list .room_list_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--gray300);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.room_list .room_list_header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primaryColor);
}
.room_list .room_list_header .btn_view_favor,
.room_list .room_list_header .btn_view_random {
  font-size: 18px;
  font-weight: 600;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}
.room_list .room_list_header .btn_view_favor::before,
.room_list .room_list_header .btn_view_random::before {
  content: "";
  width: 13px;
  height: 17px;
  background: #999;
  -webkit-mask-image: url(../img/icon_favo.png);
          mask-image: url(../img/icon_favo.png);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.room_list .room_list_header .btn_view_favor.on,
.room_list .room_list_header .btn_view_random.on {
  color: var(--secondaryColor);
}
.room_list .room_list_header .btn_view_favor.on::before,
.room_list .room_list_header .btn_view_random.on::before {
  background: var(--secondaryColor);
}
.room_list .room_list_header .btn_view_random::before {
  width: 20px;
  height: 17px;
  -webkit-mask-image: url(../img/icon_random.png);
          mask-image: url(../img/icon_random.png);
}
.room_list .room_list_header .ibtn {
  height: 30px;
  border-radius: 15px;
  border: 2px solid var(--secondaryColor);
  padding: 0 15px;
  font-size: 1.05em;
  font-weight: 700;
  color: var(--secondaryColor);
}
.room_list .room_list_header .btn_view_all {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  height: 40px;
  background: var(--primaryColor);
  color: #fff;
  padding: 0 14px 0 14px;
  line-height: 1;
  gap: 5px;
}
.room_list .room_list_header .btn_view_all::before {
  content: "";
  width: 19px;
  height: 19px;
  background-color: #fff;
  -webkit-mask-image: url(../img/icon_all.png);
          mask-image: url(../img/icon_all.png);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.room_list .room_list_header .align_right {
  flex-grow: 1;
}
.room_list .room_list_header .btn_search {
  height: calc(var(--btnHeight) - 9px);
  border-radius: var(--btnRadius) !important;
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
  font-weight: 500;
}
.room_list .room_list_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
}
.room_list .room_list_ul li {
  flex: 0 0 calc((100% - 30px) / 3);
}
.room_list .room_list_ul li .img {
  background: url(../img/room_bg.png) no-repeat center/contain;
  aspect-ratio: 390/133;
  border-radius: 6px;
  overflow: hidden;
}
.room_list .room_list_ul li .img p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 0 0 15px;
}
.room_list .room_list_ul li .img p::before {
  content: "";
  width: 12px;
  height: 16px;
  background: url(../img/icon_evol.png) no-repeat center/contain;
}
.room_list .room_list_ul li .con {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
}
.room_list .room_list_ul li .con a {
  flex-shrink: 0;
}
.room_list .room_list_ul li .con > div {
  flex-grow: 1;
}
.room_list .room_list_ul li .subject {
  font-size: 20px;
  font-weight: 600;
}
.room_list .room_list_ul li .subject strong {
  font-weight: 700;
  color: var(--secondaryColor);
}
.room_list .room_list_ul li .date {
  color: #999;
}
.room_list .room_list_ul li .date strong {
  font-weight: 700;
  color: #000;
}
.room_list .room_list_ul li .ibtn {
  height: 35px;
  border-radius: 17px;
  border: 2px solid var(--secondaryColor);
  background-color: var(--secondaryColor);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0 15px;
}
.room_list .room_list_ul li .ibtn.line {
  background-color: #fff !important;
  color: var(--secondaryColor);
}
.room_list .room_list_ul li.tertiary .subject strong {
  color: var(--tertiaryColor);
}
.room_list .room_list_ul li.tertiary .ibtn {
  border: 2px solid var(--tertiaryColor);
  background-color: var(--tertiaryColor);
}
.room_list .room_list_ul li.tertiary .ibtn.line {
  color: var(--tertiaryColor);
}
.room_list .room_list_ul li.primary .subject strong {
  color: var(--primaryColorL);
}
.room_list .room_list_ul li.primary .ibtn {
  border: 2px solid var(--primaryColorL);
  background-color: var(--primaryColorL);
}
.room_list .room_list_ul li.primary .ibtn.line {
  color: var(--primaryColorL);
}
.room_list.inc {
  background: var(--gray100);
  padding: 15px 13px 25px 13px;
  border-radius: 10px;
  margin-top: 0;
}
.room_list.inc .room_list_header {
  border-bottom: 0;
  padding-bottom: 15px;
  margin-bottom: 0;
}
.room_list.inc .room_list_header h2 {
  font-size: 22px;
  padding-left: 15px;
  padding-right: 30px;
}
.room_list.inc .room_list_ul {
  gap: 28px 11px;
}
.room_list.inc .room_list_ul li {
  flex: 0 0 calc((100% - 22px) / 3);
}
.room_list.inc .room_list_ul li .img p {
  font-size: 13.5px;
  padding: 10px 0 0 10px;
}
.room_list.inc .room_list_ul li .img p::before {
  width: 9px;
  height: 11px;
}
.room_list.inc .room_list_ul li .con {
  margin-top: 13px;
  gap: 6px;
}
.room_list.inc .room_list_ul li .subject {
  font-size: 14px;
}
.room_list.inc .room_list_ul li .date {
  font-size: 11px;
}
.room_list.inc .room_list_ul li .ibtn {
  height: 26px;
  border-radius: 13px;
  font-size: 12px;
  padding: 0 10px;
}
.room_list.inc .btn_favor {
  width: 15px;
  height: 19px;
}
.room_list.history .room_list_header h2 {
  color: var(--secondaryColor);
}
.room_list.history .room_list_ul .date {
  font-size: 20px;
}

.favor_ul .room_list_header h2 {
  color: var(--secondaryColor);
}
.favor_ul .date {
  font-size: 20px;
}
.favor_ul > li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed var(--gray400);
}
.favor_ul > li:last-of-type {
  border: 0;
  padding: 0;
}
.favor_ul > li:nth-child(2) .room_list_header h2 {
  color: var(--tertiaryColor);
}
.favor_ul > li:nth-child(2) .room_list_header .ibtn {
  border-color: var(--tertiaryColor);
  color: var(--tertiaryColor);
}
.favor_ul > li:nth-child(2) .room_list_ul .ibtn {
  background-color: var(--tertiaryColor);
  border-color: var(--tertiaryColor);
}
.favor_ul > li:nth-child(3) .room_list_header h2 {
  color: var(--primaryColorL);
}
.favor_ul > li:nth-child(3) .room_list_header .ibtn {
  border-color: var(--primaryColorL);
  color: var(--primaryColorL);
}
.favor_ul > li:nth-child(3) .room_list_ul .ibtn {
  background-color: var(--primaryColorL);
  border-color: var(--primaryColorL);
}

#main .bbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
#main .bbs > div {
  flex: 1 1 45%;
  float: none;
  background: var(--gray100);
  border-radius: 10px;
  padding: 25px 25px 15px 25px;
  margin-bottom: 0 !important;
  min-height: 240px;
}
#main .bbs .lat_title {
  line-height: 1;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
#main .bbs .lat_title a {
  color: var(--secondaryColor);
}
#main .bbs .lt_more {
  color: #444;
  font-weight: 500;
  width: auto;
  line-height: 1;
  top: 27px;
  right: 25px;
  font-size: 15px;
}
#main .bbs .lat li {
  line-height: 1;
  border-bottom: 1px solid var(--gray300);
  margin: 0;
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
}
#main .bbs .lat li .catg {
  color: var(--secondaryColor);
  font-weight: 500;
  margin-right: 3px;
}
#main .bbs .lat li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #000;
}
#main .bbs .lat li:last-of-type {
  border: 0;
}
#main .bbs .lat li .lt_info {
  display: none;
}
#main .bbs .lat li .fa-download {
  width: 22px;
  height: 22px;
  background: url(../img/icon_pic.png) no-repeat center/contain;
  font-size: 0;
  position: absolute;
  right: 0;
}
#main .bbs .lt_cmt {
  color: var(--secondaryColor);
  font-size: 0.8em;
  font-weight: 400;
  padding: 0;
  height: auto;
  background: transparent;
  margin-left: 3px;
}
#main .bbs .lt_cmt::before {
  content: "[";
}
#main .bbs .lt_cmt::after {
  content: "]";
}
#main .bbs > div:nth-child(even) .lat_title a,
#main .bbs > div:nth-child(even) .catg,
#main .bbs > div:nth-child(even) .lt_cmt {
  color: var(--tertiaryColor);
}
#main .bbs .pic_lt ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#main .bbs .pic_lt ul .galley_li {
  flex: 0 0 calc((100% - 20px) / 3);
  float: none;
  width: auto;
  padding: 0;
}
#main .bbs .pic_lt ul .galley_li .lt_info {
  display: none;
}
#main .bbs .pic_lt ul .galley_li a {
  color: #000;
  font-weight: 500;
}

#main .snb {
  margin-top: 10px;
  background-color: var(--gray100);
  border-radius: 10px;
  padding: 17px 30px;
}
#main .snb ul {
  display: flex;
  gap: 8px;
}
#main .snb ul a {
  display: flex;
  height: 36px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid #8d8d8d;
  font-weight: 600;
  font-size: 16px;
  align-items: center;
  background-color: #fff;
  color: #444;
}
#main .snb ul a.on {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
  color: #fff;
}
#main .snb.depth2 {
  margin-top: 0;
  background-color: #fff;
}
#main .snb.depth2 a {
  color: #777;
}
#main .snb.depth2 a.on {
  background-color: var(--tertiaryColor);
  border-color: var(--tertiaryColor);
  color: #fff;
}

:root {
  --topHeight: 159px;
}

#snb {
  position: absolute;
  left: 0;
  top: var(--topHeight);
  width: 100%;
  background-color: var(--gray100);
}
#snb ul {
  width: var(--siteWidth);
  margin: 0 auto;
  display: flex;
  gap: 50px;
}
#snb ul a {
  display: flex;
  align-items: center;
  font-size: 1.3em;
  height: 60px;
  font-weight: 600;
  color: #848484;
  gap: 10px;
}
#snb ul a.all::before {
  content: "";
  width: 22px;
  height: 22px;
  background-color: #848484;
  -webkit-mask-image: url(../img/icon_all.png);
          mask-image: url(../img/icon_all.png);
  -webkit-mask-position: left;
          mask-position: left;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
#snb ul a.favor::before {
  content: "";
  width: 16px;
  height: 22px;
  background-color: #848484;
  -webkit-mask-image: url(../img/icon_favo.png);
          mask-image: url(../img/icon_favo.png);
  -webkit-mask-position: left;
          mask-position: left;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
#snb ul a.on {
  color: var(--secondaryColor);
}
#snb ul a.on::before {
  background-color: var(--secondaryColor);
}
#snb ul.room_num {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(10, 1fr);
  margin-top: 1px;
}
#snb ul.room_num a {
  font-size: 15px;
  font-weight: 500;
  height: 40px;
  border: 1px solid var(--gray300);
  justify-content: center;
  margin: -1px 0 0 -1px;
}
#snb ul.room_num a.on {
  position: relative;
  z-index: 1;
  border-color: var(--secondaryColor);
  background-color: var(--secondaryColor);
  color: #fff;
}
#snb ul.room_num a.null {
  pointer-events: none;
}

.grow {
  flex-grow: 1;
}

/***** Modal *****/
.pop_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 90;
  background: rgba(0, 0, 0, 0.1);
}
.pop_bg .pop_layer {
  width: 400px;
  background: #fff;
  border-radius: 20px;
  padding: 37px;
  padding-bottom: 40px;
  border: 1px solid var(--gray300);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.pop_bg .pop_layer .pop_header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.pop_bg .pop_layer .pop_header h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: -5px;
}
.pop_bg .pop_layer .pop_header .btn_close {
  width: 18px;
  height: 18px;
  display: block;
  background: url(../img/btn_close.png);
  background-size: contain;
  font-size: 0;
  position: absolute;
  right: -10px;
  top: -10px;
}
.pop_bg .pop_layer .pop_header.btn_only {
  margin: 0;
}

/** Customizing **/
#mb_confirm p {
  border: 0;
  padding: 0;
}
#mb_confirm p strong {
  color: var(--primaryColor);
  font-size: 1.2em;
  margin-bottom: 10px;
}

#mb_confirm .confirm_id {
  font-size: 1em;
  display: block;
  text-align: center;
}

#mb_confirm_id {
  margin: 5px 0 15px 0;
  text-align: center;
  font-size: 1.25em;
}

#mb_confirm .btn_confirm {
  margin-top: 10px;
  display: flex;
  gap: 5px;
  align-items: center;
}
#mb_confirm .btn_confirm * {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  font-size: 1.05em;
  border-radius: 6px;
}
#mb_confirm .btn_confirm .btn_submit {
  margin-top: 0;
  font-weight: 500;
}
#mb_confirm .btn_confirm .btn_close {
  background: #999;
  border: 0;
  color: #fff;
  font-weight: 500;
}

#reg_result {
  padding: 0;
  background: transparent;
  border: 0;
}
#reg_result .reg_result_p {
  font-size: 1.4em;
  font-weight: 700;
  color: var(--primaryColor);
}

.required,
textarea.required {
  background-image: none !important;
}

#ctt {
  border: 1px solid var(--gray300);
  margin: 0;
  padding: 30px;
  border-radius: 10px;
  min-height: 180px;
}

.ctt_admin {
  display: none;
}

#bo_gall .gall_now .gall_text_href a {
  color: var(--secondaryColor);
}

#bo_v_title .bo_v_tit {
  font-size: 17.5px;
  font-weight: 600;
}

#bo_v_info .sv_member {
  font-size: 1.1em;
  font-weight: 600;
}

#bo_v_info .profile_info .profile_info_ct {
  padding: 0;
  line-height: 1.55;
}
#bo_v_info .profile_info .profile_info_ct i {
  vertical-align: 0;
  margin-right: 3px;
}
#bo_v_info .profile_info .profile_info_ct .hit {
  color: var(--secondaryColor);
  font-weight: 600;
  margin-right: 15px;
}
#bo_v_info .profile_info .profile_info_ct .good {
  color: var(--tertiaryColor);
  font-weight: 600;
  margin-right: 15px;
}

#bo_v_info .profile_info {
  margin: 20px 0;
}

#bo_v_top ul,
.btn_bo_user li {
  background: transparent;
}

.btn_bo_user li i {
  vertical-align: 0;
}

.more_opt li {
  background: #fff;
}

#bo_v_share {
  display: none;
}

#bo_v_atc {
  background: #fff;
  border: 1px solid #8d8d8d;
  padding: 30px;
}

.bo_v_com {
  margin-top: 30px;
}

#bo_v_act .bo_v_good {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 18px;
  width: 86px;
  border-color: #696969;
  background: #696969;
  color: #fff;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  gap: 3px;
}
#bo_v_act .bo_v_good i {
  font-size: 0;
  width: 17px;
  height: 15px;
  background-color: #fff;
  -webkit-mask-image: url(../img/icon_good.png);
          mask-image: url(../img/icon_good.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
#bo_v_act .bo_v_good strong {
  display: none;
}
#bo_v_act .bo_v_good:hover {
  border-color: #696969;
  background: #696969;
  color: #fff;
}

.cmt_btn {
  display: none;
}

#bo_vc {
  border: 1px solid #8d8d8d;
  background-color: #fff;
  margin-top: 10px;
  padding: 0 30px;
}

#bo_vc article {
  border-color: var(--gray300);
  padding: 10px 0;
  margin: 10px 0;
}
#bo_vc article:last-of-type {
  border: 0;
}

#bo_vc .cmt_contents {
  padding: 0;
  line-height: 1.5;
}

#bo_vc header {
  margin-bottom: 5px;
}
#bo_vc header .member {
  font-size: 1.1em;
  font-weight: 600;
}
#bo_vc header i {
  vertical-align: 0;
}
#bo_vc header .bo_vc_hdinfo {
  margin: 0 10px;
}
#bo_vc header .bo_vc_good {
  color: var(--secondaryColor);
}
#bo_vc header .bo_vc_good i {
  font-size: 0;
  width: 12px;
  height: 12px;
  background: url(../img/icon_heart.png) no-repeat center;
  vertical-align: -1px;
  margin-right: 3px;
}
#bo_vc header .bo_vc_good i::before {
  display: none;
}

#bo_vc .bo_vl_opt {
  top: 20px;
  right: -10px;
}

.bo_vc_w textarea {
  box-shadow: none;
  padding: 15px;
}

.bo_vc_w_info {
  margin: 5px 0;
}

#bo_w,
#bo_v {
  border-radius: 10px;
  background-color: var(--gray100);
  padding: 25px;
  margin-top: 10px;
}

#bo_w #wr_password,
#bo_w #wr_homepage {
  margin-left: 0;
}

#bo_gall #gall_ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: 15px 10px;
}

#bo_gall .gall_li {
  flex: 0 0 calc((100% - 40px) / 5);
  margin: 0;
  padding: 0;
}

#bo_gall .gall_box {
  margin: 0;
  border-radius: 0;
}

#bo_gall .gall_img {
  border: 1px solid var(--gray300);
  background-color: #fff;
}

#bo_gall .gall_img a {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

#bo_gall .bo_tit {
  font-size: 15px;
  line-height: 1.2;
}

#bo_gall .gall_text_href a {
  font-weight: 500;
}

#bo_gall .bo_cnt {
  display: none;
}

#bo_gall .gall_text_href {
  margin-bottom: 3px;
}

#bo_gall .gall_info .gall_view,
#bo_gall .gall_info .gall_good {
  margin: 0;
  font-weight: 600;
}
#bo_gall .gall_info .gall_view i,
#bo_gall .gall_info .gall_good i {
  vertical-align: 0;
}

#bo_gall .gall_info .gall_view {
  color: var(--secondaryColor);
}

#bo_gall .gall_info .gall_good {
  color: var(--tertiaryColor);
  margin-left: 10px;
}

.gall_box .chk_box input[type=checkbox] + label span {
  top: 0;
  left: 0;
}

#gall_allchk {
  float: left;
}

.chk_box input[type=checkbox] + label {
  position: relative;
}

.chk_box input[type=checkbox] + label span {
  top: 0;
  left: 0;
}

.chk_box input[type=checkbox] + label:hover {
  color: inherit;
}

#bo_list tbody tr {
  border-left: 0 !important;
}

#bo_list .fa-download {
  width: 22px;
  height: 22px;
  background: url(../img/icon_pic.png) no-repeat center/contain;
  font-size: 0;
}

.sch_word {
  padding: 0;
  background: none;
  margin: 0;
  color: var(--secondaryColor);
  text-decoration: underline;
  line-height: normal;
}

.bo_sch_wrap {
  padding: 17px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.bo_sch_wrap .ibtn {
  height: 36px;
  border-radius: 18px;
  padding: 0 20px;
  border: 1px solid #8d8d8d;
  color: #777;
  font-size: 15px;
}
.bo_sch_wrap .ibtn.on {
  background-color: var(--tertiaryColor);
  border-color: var(--tertiaryColor);
  color: #fff;
}
.bo_sch_wrap .sch_bar {
  position: relative;
  margin-left: 24px;
}
.bo_sch_wrap .sch_bar input {
  height: 36px;
  line-height: 34px;
  border-radius: 18px;
  font-size: 15px;
  padding-right: 50px;
  border-color: #8d8d8d;
  width: 380px;
}
.bo_sch_wrap .sch_bar .sch_btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 36px;
  background: url(../img/icon_search.png) no-repeat center;
  font-size: 0;
}
.bo_sch_wrap a.btn_b01 {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--secondaryColor);
}

.tbl_wrap table {
  background: transparent;
  border-color: var(--gray300);
}

.tbl_head01 td,
.tbl_head01 thead th {
  border-color: var(--gray300);
  color: #444;
  height: 49px;
  padding: 14px 0;
  font-size: 15px;
}

.tbl_head01 thead th {
  font-weight: 600;
}

#bo_list .td_chk {
  border-color: var(--gray300);
}

#fboardlist {
  border-radius: 10px;
  background-color: var(--gray100);
  padding: 30px 25px 40px 25px;
}
#fboardlist .pg_wrap {
  margin-top: 30px;
}

.bo_tit {
  font-weight: 500;
}

#bo_list .cnt_cmt,
#bo_gall .bo_tit .cnt_cmt {
  background: none;
  color: var(--tertiaryColor);
  font-size: inherit;
  vertical-align: top;
  font-size: 0.8em;
  font-weight: 400;
}

#bo_list .td_num2,
#bo_list .td_num {
  width: 60px;
}

#bo_list .td_name {
  width: 100px;
}

#bo_btn_top {
  margin: 0 0 10px;
}
#bo_btn_top .btn_bo_user li {
  background: transparent;
}
#bo_btn_top .btn_bo_user .btn {
  height: auto;
  line-height: 1;
}
#bo_btn_top .btn_bo_user .more_opt {
  top: 30px;
}

.bo_fx {
  display: none;
}

.tbl_head01 {
  margin: 0;
}

#bo_list_total {
  display: none;
}

.pg_wrap {
  float: none;
  display: block;
  text-align: center;
  margin-top: 50px;
}

.pg_current {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
}

#bo_w .btn_submit,
#bo_w .btn_cancel {
  height: var(--btnHeight);
  line-height: var(--btnHeight);
  font-size: 1.1em;
  padding: 0 25px;
  border-radius: var(--btnRadius);
}

#bo_w .bo_w_link label,
#bo_w .bo_w_flie .lb_icon {
  height: var(--btnHeight);
  line-height: var(--btnHeight);
}
#bo_w .bo_w_link label .fa,
#bo_w .bo_w_flie .lb_icon .fa {
  height: var(--btnHeight);
  line-height: var(--btnHeight);
}

#bo_w .bo_w_flie .file_wr {
  height: var(--btnHeight);
}

#bo_w .bo_w_flie .file_wr {
  border: 0;
  padding: 0;
}

#bo_w .bo_w_flie .frm_file {
  margin-top: 0;
}

.new_icon {
  display: none !important;
}

.cate_div {
  margin: 0 0 50px !important;
  padding: 0 !important;
}
.cate_div .fl {
  float: none;
  display: flex;
  justify-content: center;
}
.cate_div .fl li {
  float: none !important;
  margin: 0 !important;
}
.cate_div .fl li a {
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 40px;
  color: #bbb;
  font-size: 1em;
  border-bottom: 2px solid #ddd;
  font-weight: 500;
  font-size: 1em;
}
.cate_div .fl li #bo_cate_on {
  color: #222;
  font-weight: 500;
}

#captcha #captcha_info {
  display: none;
}

#bo_cate {
  text-align: center;
}

#bo_cate a {
  color: var(--gray500);
  background: none;
  border: 0;
  transition: none;
}

#bo_cate #bo_cate_on,
.reg_btn_submit {
  background: none;
  box-shadow: none;
  border: 0;
  color: var(--primaryColor);
}

@media (hover: hover) {
  #bo_cate a:focus,
  #bo_cate a:hover,
  #bo_cate a:active {
    background: none;
    border-color: 0;
    color: var(--gray500);
  }
}
.login_if_lpl {
  display: none;
}

.btn_submit {
  background: var(--secondaryColor);
}

@media (hover: hover) {
  .btn_submit:hover {
    background: var(--secondaryColor);
  }
}
#find_info p {
  font-size: 1.05em;
  font-weight: 500;
}
#find_info .win_btn {
  margin-top: 30px;
}
#find_info .new_win_con {
  background: transparent;
  width: 400px;
  margin: 0 auto;
  padding: 0 30px;
}
#find_info .btn_confirm {
  margin-top: 25px;
  display: flex;
  gap: 5px;
  align-items: center;
}
#find_info .btn_confirm * {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  font-size: 1.05em;
  border-radius: 6px;
}
#find_info .btn_confirm .btn_submit {
  margin-top: 0;
  font-weight: 500;
}
#find_info .btn_confirm .btn_close {
  background: #999;
  border: 0;
  color: #fff;
  font-weight: 500;
}

.fregister_agree input[type=checkbox]:checked + label span,
.chk_box input[type=checkbox]:checked + label span {
  background-color: var(--primaryColorL);
  border-color: var(--primaryColorL);
}

@media (hover: hover) {
  .fregister_agree input[type=checkbox] + label:hover {
    color: var(--primaryColorL);
  }
}
#register_form li.chk_box {
  display: flex;
  align-items: center;
}

#register_form li.chk_box label {
  margin-bottom: 0;
}

#register_form li.chk_box .tooltip_icon {
  display: none;
}

#register_form .chk_li {
  margin: 0 0 0 5px;
  padding: 0;
  display: inline-block;
}

#mb_confirm h1 {
  display: none;
}

#fregister p {
  padding: 15px;
  line-height: 1.4;
  height: auto;
  word-break: keep-all;
  background-color: #444;
}
#fregister p i {
  display: none;
}
#fregister section {
  border: 0;
}
#fregister h2 {
  border: 0;
  padding: 15px 0 10px 0;
}
#fregister textarea {
  height: 100px;
  border: 0 !important;
}
#fregister .btn_confirm {
  display: flex;
  gap: 5px;
  align-items: center;
}
#fregister .btn_confirm * {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  font-size: 1.05em;
  border-radius: 6px;
}
#fregister .btn_confirm .btn_submit {
  margin-top: 0;
  font-weight: 500;
}
#fregister .btn_confirm .btn_close {
  background: #999;
  border: 0;
  color: #fff;
  font-weight: 500;
}

.fregister_agree input[type=checkbox] + label span {
  top: 17px;
  right: 3px;
}

#fregister_private div {
  border-radius: 10px;
}

#fregister_chkall {
  border: 1px solid var(--secondaryColor);
  background: #fff;
  border-radius: 10px;
}

.fregister_agree input[type=checkbox] + label {
  font-size: 1.05em;
  font-weight: 600;
  color: var(--secondaryColor);
}

.fregister_agree.chk_all input[type=checkbox] + label span {
  top: 17px;
  right: 15px;
}

#register_form,
.register_form_inner {
  background: transparent;
  margin: 0;
}

.register_form_inner {
  border: 0;
}
.register_form_inner label {
  font-size: 13px;
  margin-bottom: 5px;
}

.register .btn_confirm {
  display: flex;
  gap: 5px;
  align-items: center;
}
.register .btn_confirm * {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  font-size: 1.05em;
  border-radius: 6px;
}
.register .btn_confirm .btn_submit {
  margin-top: 0;
  font-weight: 500;
}
.register .btn_confirm .btn_close {
  background: #999;
  border: 0;
  color: #fff;
  font-weight: 500;
}

.register_form_inner ul {
  padding: 0;
}
.register_form_inner ul li {
  display: flex;
  gap: 5px;
  align-items: center;
}
.register_form_inner ul li .btn_confirm {
  flex: 0 0 90px;
  padding: 0;
}
.register_form_inner ul li::after {
  display: none;
}

.form_01 li {
  margin-bottom: 15px;
}

#fregisterform .captcha legend {
  display: none;
}

#reg_result {
  padding-top: 0;
}

#reg_result .result_txt {
  word-break: keep-all;
}

.reg_result_p i,
.reg_result_p br {
  display: none;
}

#reg_mb_icon,
#reg_mb_img {
  float: none;
  width: 100%;
}

#bo_list tbody .even td {
  background: none;
}

#bo_list .td_datetime {
  width: 100px;
}

#bo_w .bo_w_tit #btn_autosave,
#bo_w .cke_sc {
  display: none;
}

.btn_bo_user .btn_b01 {
  color: #444;
}

#bo_v_share .btn {
  font-size: 0.9em;
}

#bo_v_img {
  text-align: center;
}

#bo_list .td_name {
  text-align: center;
}

.chk_label input:checked + i {
  border-color: var(--primaryColorL);
  background-color: var(--primaryColorL);
  padding: 0;
}

.chk_label input:checked + i:before {
  border: 0;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  width: 10px;
  height: 7px;
  left: 50%;
  top: 50%;
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: -2px -1px;
  background: none;
  border-radius: 0;
}

.bo_vc_w .btn_submit {
  background-color: #8d8d8d;
}

#fregister_private table {
  font-size: 0.95em;
}

.pg_page {
  font-size: 0.9em;
}

#footer #top_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1em;
}