@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
/*반응형*/
@media (min-width: 415px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Helvetica Neue", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    letter-spacing: -0.05em;
  }
}

html {
  --White: #fff;
  --Gray-Pale: #f6f7f9;
  --Gray-Lightest: #f3f4f5;
  --Gray-Border: #d5dbe0;
  --Gray-Light: #9ea3ab;
  --Gray-Lighter: #c5c9d0;
  --Gray-Mid: #6f737a;
  --Gray-Dark: #252d3a;
  --Black: #000;
  --Yellow: #fdd000;
  --Orange: #ff7900;
  --Red-color: #fe5f57;
  --Green-color: #009944;
  --Main-color: #036eb8;
  --Main-light: #00b4e3;
  --Mint-blue: #00c2d5;
  --Blue: #1c61a6;
  --Main-gra: linear-gradient(to left, #1da3ec, #036eb8);
  --Main-gra-rev: linear-gradient(to right, #1da3ec, #036eb8);
  --Width: 1200px;
  --Input-rect: 18px;
  --Input-h: 36px;
  --Cell-h: 50px;
  --Font-size: 14px;
  --Top-h: 80px;
  --Map-color: #f6f7f9;
  --Won: "₩";
  --Input-h: 60px;
  --Input-rect: 20px;
}

/*공통*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: -0.03em;
  -webkit-overflow-scrolling: touch;
}
img {
  border: none;
  vertical-align: top;
  max-width: 100%;
}
html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Helvetica Neue", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  height: 100%;
  color: var(--Gray-Dark);
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-size: var(--Font-size);
  overflow-x: hidden;
  font-size: 16px;
}

input,
select,
td,
th {
  font-size: var(--Font-size12);
}
span {
  font-size: inherit;
}
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
  font-size: inherit;
}
textarea {
  border: 1px solid #ddd;
  width: 100%;
  height: 6em;
  padding: 15px;
  font-size: 1rem;
}
*::placeholder {
  color: var(--Gray-Lighter);
}
/*----------checkbox----------*/
input[type="text"],
input[type="password"],
input[type="number"] {
  height: var(--Input-h);
  border: 1px solid var(--Gray-Border);
  padding: 0 24px;
  border-radius: 6px;
  width: 100%;
}
input[type="text"]::placeholder {
  color: var(--Gray-Light);
}
h1 {
  font-size: 48px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}

select {
  padding: 0 30px 0 24px;
  font-size: var(--Font-size12);
  -webkit-appearance: none;
  background: url(../images/icon/select.svg) no-repeat center right 15px;
  height: var(--Input-h);
  border: 1px solid var(--Gray-Border);
  border-radius: 6px;
  width: 100%;
}
select.focus {
  background: #fff;
}
select.focus option {
  padding: 5px 0;
}
textarea {
  border-radius: 6px;
}
input[type="button"] {
  -webkit-appearance: none;
  border: 1px solid var(--Gray-Dark);
  text-align: center;
  color: var(--Gray-Dark);
  border-radius: 6px;
  background-color: #fff;
  height: var(--Input-h);
  padding: 0 10px;
}
input {
  -webkit-appearance: none;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  cursor: pointer;
  position: relative;
  line-height: var(--Input-rect);
  overflow: hidden;
}
label + input[type="checkbox"] + label:before {
  margin-left: 15px;
  content: "";
  display: inline-block;
}
input[type="checkbox"] + label:before {
  content: "";
  display: inline-block;
  width: var(--Input-rect);
  height: var(--Input-rect);
  line-height: var(--Input-rect);
  vertical-align: middle;
  background-color: transparent;
  border-radius: 3px;
  border: 1px solid var(--Gray-Border);
  box-sizing: border-box;
  margin-right: 5px;
  background-color: #fff;
}
input[type="checkbox"]:checked + label:before {
  background: url(../images/icon/checked.svg) no-repeat center;
  background-size: auto 40%;
  border: none;
  transition: 0.2s;
  background-color: var(--Main-color);
}
/*disabled*/
input[type="checkbox"]:disabled + label:before,
input[type="radio"]:disabled + label:before {
  background-color: var(--Gray-Pale);
}
input[type="checkbox"]:disabled + label:after,
input[type="radio"]:disabled + label:after {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--Gray-Border);
  transform-origin: center center;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: -2px;
}
input[type="radio"]:disabled + label:after {
  width: 18px;
  left: 0;
}
.ui-datepicker {
  z-index: 20 !important;
}
.datepicker,
.datepicker-all {
  background: url(../images/icon/calendar.svg) no-repeat right 10px center;
  background-size: auto 18px;
}
/*라디오*/
input[type="radio"] {
  display: none;
}
input[type="radio"] + label {
  cursor: pointer;
  position: relative;
  line-height: var(--Input-rect);
  box-sizing: border-box;
}
input[type="radio"]:disabled + label,
input[type="checkbox"]:disabled + label {
  color: var(--Gray-Border);
}
input[type="radio"]:disabled + label:before,
input[type="checkbox"]:disabled + label:before,
input[type="radio"]:disabled + label + div,
input[type="checkbox"]:disabled + label + div {
}
input[type="radio"] + label:before {
  content: "";
  display: inline-block;
  width: var(--Input-rect);
  height: var(--Input-rect);
  line-height: var(--Input-rect);
  vertical-align: middle;
  background-color: transparent;
  border-radius: 50%;
  margin-right: 5px;
  border: 1px solid var(--Gray-Border);
  box-sizing: border-box;
  background-color: #fff;
}
input[type="radio"]:checked + label:before {
  border: 5px solid var(--Main-color);
  transition: 0.3s;
  box-sizing: border-box;
  background-color: #fff;
}
input + label {
  margin-right: 20px;
}
/*토글스위치*/
.switch {
  display: inline-block;
  width: 40px;
  height: 8px;
  position: relative;
}
.switch:before {
  display: block;
  width: 40px;
  height: 8px;
  opacity: 0.3;
  background-color: var(--Main-color);
  border-radius: 8px;
  position: relative;
  transition: 0.3s;
  content: "";
  display: block;
}
.switch:after {
  position: absolute;
  width: var(--Input-rect);
  height: var(--Input-rect);
  left: 0;
  top: -6px;
  content: "";
  display: block;
  background-color: var(--Main-color);
  border-radius: 50%;
  transition: 0.3s;
}
.switch.on:before,
.switch.on:after {
  background-color: #f40223;
}
.switch.on:after {
  left: var(--Input-rect);
}
table {
  width: 100%;
  border-top: 1px solid var(--Gray-Dark);
  text-align: left;
  border-spacing: 0;
  border-collapse: collapse;
}
table th,
td {
  vertical-align: top;
  padding: 24px 0;
  border-bottom: 1px solid var(--Gray-Border);
  line-height: 1.6;
  width: fit-content;
}
table th {
  font-weight: bold;
  white-space: nowrap;
  width: 1%;
  padding-right: 20px;
}
table tr.with-dd td,
table tr.with-dd th {
  border-bottom: 0;
  padding-bottom: 0;
}
table td.dd {
  font-size: 14px;
  color: var(--Gray-Light);
  padding-top: 20px;
}
table td.dd a {
  font-weight: bold;
  text-decoration: underline;
}
table td.with-btn {
  padding: 14px 0;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.select {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(-1 * var(--Top-h));
  background-color: #fff;
  z-index: 20;
  border: 1px solid var(--Gray-Dark);
  border-radius: 10px;
}
.select li {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 0.8em;
}
.form {
}

.inputs {
  display: flex;
  flex-wrap: wrap;
  min-height: var(--Input-h);
}
.inputs.full > input,
.inputs.full > select {
  flex-grow: 1;
  flex-shrink: 1;
}
.form table td {
  padding-top: 7px;
  padding-bottom: 7px;
  padding-right: 0;
}
.form table td.price {
  vertical-align: bottom;
  padding-bottom: 15px;
}

.form table td .inputs input[type="checkbox"] + label,
.form table td .inputs input[type="radio"] + label {
  line-height: var(--Input-h);
  height: var(--Input-h);
}
.form table td .inputs input[type="checkbox"] + label:before,
.form table td .inputs input[type="radio"] + label:before {
  line-height: var(--Input-h);
}
.form table td.price {
  padding-top: 15px;
}

p.noti {
  font-size: 14px;
  color: var(--Gray-Light) !important;
  margin-top: 20px;
}
p.noti a {
  color: var(--Gray-Dark);
  text-decoration: underline;
}

/* 탭 */
.tabs {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: var(--Width);
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.tabs::-webkit-scrollbar {
  display: none;
}
.tabs a {
  font-size: 30px;
  font-weight: bold;
  color: var(--Gray-Lighter);
  margin-right: 30px;
  position: relative;
  transition: 0.4s;
}
.tabs a:hover {
  color: var(--Gray-Dark);
}
.tabs a.active {
  color: var(--Gray-Dark);
}
.tabs a::after {
  content: "";
  border-top: 10px solid var(--Main-light);
  opacity: 0.7;
  display: block;
  margin-top: -10px;
  z-index: 0;
  position: relative;
  mix-blend-mode: multiply;
  width: 0;
  transition: 0.5s;
}
.tabs a.active::after {
  width: 100%;
}
/* 폴딩 */
.accordion {
  position: relative;
  border: 1px solid var(--Gray-Border);
  border-radius: 10px;
}
.accordion > li {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  padding: 0 20px;
}
.accordion > li + li {
  border-top: 1px solid var(--Gray-Border);
}

.accordion > li:after {
  content: "";
  position: absolute;
  background: url(../images/icon/select.svg) no-repeat;
  width: 16px;
  height: 10px;
  top: 28px;
  right: 20px;
  transition: 0.2s;
  transform-origin: center;
  pointer-events: none;
}
.accordion > li h2 {
  font-size: 1em;
  font-weight: normal;
  line-height: var(--Input-rect);
  display: flex;
  align-items: center;
}
.accordion > li h2 a {
  flex-grow: 1;
  padding: 24px 0;
}
.accordion > li h2 input + label {
  margin-right: 5px;
}
.accordion > li.active h2 {
  font-weight: bold;
}
.accordion table + * {
  margin-top: 20px;
}
.accordion th,
.accordion td {
  border: 1px solid var(--Gray-Border);
  padding: 20px;
  font-size: 0.85em;
}
.accordion th {
  background-color: var(--Gray-Pale);
}

.accordion > li.active:after {
  transform: rotate(180deg);
}
/* .accordion > li .descript { padding: 15px; background-color: var(--Gray-Pale); border-radius: 3px; margin-top: 10px;} */

.accordion > li .pull {
  /*transform: scaleY(0); height: 0;*/
  overflow: hidden;
  display: none;
}
.accordion > li.active .pull {
  /*transform: scaleY(1); height: auto;*/
  padding-bottom: 20px;
}

.accordion > li.active .pull > h3 {
  margin-bottom: 10px;
  margin-top: 30px;
}
.accordion > li .pull h3 {
  font-size: 1.2em;
}
.accordion > li.active .pull > h3:first-of-type {
  margin-top: 0;
}

.visual {
  position: fixed;
  width: 100%;
  /* height: calc(100% + 15px); */
  height: 720px;
  left: 0;
  top: 0;

  background-size: cover;
  width: 100%;
  color: #fff;
  text-align: center;
}

.visual .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) url(../images/img/overlay.gif);
  z-index: 1;
  top: 0;
  left: 0;
}
.visual .swiper-slide {
  background: #fff url(../images/img/main-visual2.jpg) no-repeat right center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .visual::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 60px;
  background: url(../images/icon/sroll.svg) no-repeat center bottom;
  z-index: 1;
  bottom: 20px;
  left: 0;
} */

.visual .ment {
  position: relative;
  z-index: 2;
}
.visual h1 {
  font-size: 36px;
}
.visual h2 {
  font-size: 48px;
  position: relative;
}
.visual span {
  position: relative;
  color: var(--Main-light);
}
/* .visual span::before {
	content: "";
	position: absolute;
	border-top: 8px solid var(--Main-light);
	bottom: 2px;
	width: 100%;
	z-index: -1;
} */
.visual p {
  margin-top: 15px;
  font-size: 18px;
}
.visual .player {
  background-color: #000;
  position: relative;
}

/*GNB*/
.gnb {
  position: fixed;
  width: 100%;
  z-index: 10;
  transition: 0.2s;
  top: 0;
  left: 0;
  z-index: 30;
}
.gnb .menu li {
  cursor: pointer;
}
.gnb:after {
  display: none;
}
.gnb .menu {
  max-width: var(--Width);
  margin: auto;
  display: flex;
  align-items: center;
  font-weight: bold;
  height: var(--Top-h);
  flex-wrap: nowrap;
  flex-direction: row;
}
.gnb .menu .menus {
  justify-self: center;
  flex-grow: 1;
  font-size: 18px;
  text-align: center;
  color: white;
  flex-grow: 1;
  display: flex;
}
.gnb .menu .menus .menu-n {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
}
.gnb .menu .menus .menu-n li {
  padding: 0 20px;
}
.gnb .menu li.logo {
  margin-left: 0;
  height: 100%;
  background: url(../images/logo/logo-w.svg) no-repeat left center;
  background-size: auto 40px;
  position: relative;
  flex-grow: 0;
  width: 15%;
}
.gnb .menu .mirihae-menu {
  width: 15%;
}
.gnb .menu .mirihae-menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gnb .menu li.member {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: url(../images/icon/user-w.svg) no-repeat center;
  background-size: auto 22px;
  position: relative;
}
.gnb .menu li.member.logout {
  background-image: url(../images/icon/logout.svg);
  background-size: auto 24px;
}
.gnb .menu li.ch {
  background: url(../images/icon/kakao-channel-w.svg) no-repeat center;
  background-size: auto 22px;
  width: 26px;
  height: 26px;
  margin-left: 20px;
}
.gnb .menu li.logo > a {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
}
.gnb .menu li.logo > a img {
  max-height: 30px;
}
.gnb .menu li.logo > img {
  display: none;
}
.gnb .menu a {
  display: inline-block;
  vertical-align: middle;
}
.gnb .menu > {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.gnb .menu a img {
  vertical-align: middle;
}
.gnb .menu a:hover {
  color: var(--Main-light);
}
.scrolled .gnb .menu a:hover,
.scrolled .gnb .menu li.active,
.sub .gnb .menu li.active {
  color: var(--Main-color);
}
.gnb .menu li.active,
.gnb .menu a:hover {
  color: var(--Main-light);
}
.gnb .menu .menus .menu-n {
  display: flex;
}
.gnb .menu .menus .menu-n li.linkage .icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 1px;
}
.gnb .menu .menus .menu-n li.linkage .icon::before,
.gnb .menu .menus .menu-n li.linkage .icon::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  box-sizing: border-box;
  transition: 0.5s;
}
.gnb .menu .menus .menu-n li.linkage .icon::after {
  right: 0;
  bottom: 0;
}
.gnb .menu .menus .menu-n li.linkage + li.member {
  margin-left: 20px;
}
.gnb .menu .menus .menu-n li.linkage.unlink .icon::before,
.gnb .menu .menus .menu-n li.linkage.unlink .icon::after {
  opacity: 0.3;
}
.gnb .menu .menus .menu-n li.linkage.unlink .icon::after {
  width: 8px;
  height: 8px;
}
.gnb .menu .menus .menu-n li.linkage.unlink::before {
  content: "LINK";
  padding: 5px 10px;
  border-radius: 30px;
  background-color: var(--Main-light);
  font-size: 10px;
  line-height: 1;
  position: absolute;
  z-index: 2;
  top: -70%;
  left: -12px;
  letter-spacing: 0;
  color: #fff !important;
}
.gnb .menu .menus .menu-n li.linkage.unlink::after {
  position: absolute;
  border: 6px solid transparent;
  border-top: 8px solid var(--Main-light);
  border-bottom: 0;
  content: "";
  top: 0px;
  left: 4px;
  z-index: 2;
}
.sub .gnb {
  background-color: #fff;
}
.scrolled .gnb {
  background-color: #fff;
  color: var(--Gray-Dark);
}
.scrolled .gnb:after {
  content: "";
  width: 100%;
  height: 1px;
  transform-origin: left top;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
}
.scrolled .gnb .menus,
.sub .gnb .menus {
  color: var(--Gray-Dark);
}
.scrolled .gnb .menu a:hover,
.scrolled .gnb .menu a.active {
  color: var(--Main-color);
}
.scrolled .gnb .menu li.logo,
.sub .gnb .menu li.logo {
  background-image: url(../images/logo/logo.svg);
}
.scrolled .gnb .menu li.member,
.sub .gnb .menu li.member {
  background-image: url(../images/icon/user-b.svg);
}
.scrolled .gnb .menu li.member.logout,
.sub .gnb .menu li.member.logout {
  background-image: url(../images/icon/logout.svg);
}
.scrolled .gnb .menu li.linkage .icon::before,
.scrolled .gnb .menu li.linkage .icon::after {
  border-color: var(--Gray-Dark);
}
.scrolled .gnb .menu li.ch,
.sub .gnb .menu li.ch {
  background-image: url(../images/icon/kakao-channel-b.svg);
}







.scrolled .has-tab .article {
  height: 50px;
}
.scrolled .contents .article .tabs {
  position: fixed;
  background-color: #fff;
  top: var(--Top-h);
  z-index: 10;
  margin: 0 auto 0;
  left: 0;
  right: 0;
  overflow: visible;
  align-items: flex-start;
}
.scrolled .contents .article .tabs::after {
  content: "";
  border-bottom: 1px solid var(--Gray-Dark);
  display: block;
  position: absolute;
  width: 200%;
  left: -50%;
  bottom: 0;
}
.scrolled .contents .article .tabs a {
  font-size: 1.2em;
  padding-top: 8px;
}
.scrolled .contents .article .tabs a.active {
  color: var(--Main-color);
  font-weight: bold;
}
.scrolled .contents .article .tabs a.active::after {
  margin-top: 12px;
  border-top-width: 4px;
  border-color: var(--Main-color);
  opacity: 1;
}
.scrolled .contents .article .tabs::before {
  content: "";
  position: absolute;
  height: 100%;
  display: block;
  left: -50%;
  width: 200%;
  background-color: #fff;
  z-index: -1;
}








.paging {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
}
.paging i {
  font-size: 1.5em;
}
.paging a {
}
.paging .active {
  font-weight: bold;
  color: var(--Main-color);
}
.sub #map .section {
  padding-bottom: 0;
}

.wrap {
  letter-spacing: -0.3em;
  min-height: 100%;
  background-color: white;
  word-break: keep-all;
  position: relative;
  top: 720px;
  z-index: 2;
}
/* 본문 */
.section {
  width: var(--Width);
  margin: auto;
  padding: 80px 0;
}
.section .overview {
  display: flex;
  margin-top: 20px;
}
.section .overview .subscript {
  width: 55%;
}
.section h2 {
  position: relative;
  z-index: 2;
}
.section h2 span {
  position: relative;
  z-index: 1;
}
.section h2 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  border-top: 10px solid var(--Main-light);
  width: 100%;
  z-index: -1;
  opacity: 0.6;
}
.section .overview .img {
  text-align: right;
  flex-grow: 1;
  align-self: flex-end;
}
.section h2 + p,
.section .addr + p {
  margin-top: 12px;
}
.section p.addr {
  color: var(--Gray-Light);
  margin-top: 0;
}
.section p {
  color: var(--Gray-Mid);
  line-height: 1.5;
}
.section .head h3 + .with-btn {
  margin-top: 10px;
}
.section .head .with-btn {
  display: flex;
}
.section .head .with-btn .p {
  flex-grow: 1;
}
p + .overview-mm,
p + .option {
  margin-top: 30px;
}
.overview-mm th {
  width: 10%;
}
.overview-mm td {
  width: calc(90% / 5);
}
.overview-mm td,
.overview-mm th {
  border: 0;
  padding: 24px 0;
}
.overview-mm h6 {
  color: var(--Gray-Light);
}
.overview-mm p {
  font-size: 1.45em;
  font-weight: 200;
}

.overview-mm p.ext {
  font-size: 0.75em;
  font-weight: normal;
}
.overview-mm p span.dimen {
  font-size: 0.8em;
}
.section .overview .subscript dl {
  display: flex;
  margin-top: 40px;
}
.section .overview .subscript dl dt {
  font-weight: bold;
}
.section .overview .subscript dl p {
  font-size: 14px;
  margin-top: 0;
  line-height: 27px;
}
.section .overview .subscript dl dt p {
  color: var(--Gray-Dark);
}
.section .overview .subscript dl dd p {
  text-indent: 20px;
}
.btns {
  margin-top: 30px;
}
.list .full-split .info .btns .btn.price-btn {
  transition: 0s;
}
.price-popup {
  position: absolute;
  background-color: #fff;
  z-index: 20;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 60%;
  border: 1px solid var(--Gray-Dark);
  border-radius: 12px;
  left: 260px;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.btn.on {
  font-size: 0;
}
.btn.on::before {
  font-size: 14px;
  content: "닫기";
  transition: 0;
}
.btn.on + .price-popup {
  pointer-events: all;
  opacity: 1;
}
.price-popup .title {
  display: flex;
  align-items: center;
  padding: 30px 20px 20px 30px;
}
.price-popup .title a.close {
  padding: 10px;
}
.price-popup .title a.close img {
  height: 18px;
}
.price-popup h2 {
  flex-grow: 1;
}
.price-popup .price-table {
  max-height: 470px;
  overflow-y: auto;
  padding: 0px 30px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.price-popup .price-table .sect .overview-mm {
  margin-top: 30px;
}
.price-popup .price-table .sect .overview-mm th,
.price-popup .price-table .sect .overview-mm td {
  padding: 20px 0;
}
.btn {
  min-width: 116px;
  display: inline-block;
  height: 42px;
  line-height: 42px;
  background-color: var(--Gray-Dark);
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 42px;
  font-size: 14px;
  transition: 0.5s;
  padding: 0 20px;
}
.btn.gray {
  background-color: var(--Gray-Light);
}
.btn:hover {
  background-color: var(--Main-color);
}
/* 리스트 */
.ul p {
  padding-left: 10px;
  position: relative;
}
.ul p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--Gray-Dark);
  opacity: 0.3;
}
.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list.all > li + li {
  margin-top: 100px;
}
.list .full-split {
  width: var(--Width);
}
.list .full-split .info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.list .full-split .info > div {
  width: 50%;
}
.list .full-split .info .subscr > p {
  font-size: 1em;
  color: var(--Gray-Dark);
}
.list .full-split .info .ul p {
  font-size: 0.9em;
}
.list .full-split .info .btns {
  display: flex;
  gap: 10px;
}
.list .full-split .info .head {
  width: 100%;
  margin-bottom: 20px;
}
#leisure .list.vertical {
  padding: 0 16px;
}

.list.vertical.circle li:nth-child(4) {
  justify-self: center;
  width: 45%;
  margin-left: 5%;
}
.list.vertical.circle li:nth-child(5) {
  justify-self: center;
  width: 45%;
  margin-right: 5%;
}
.list.vertical.circle li {
  text-align: center;
  align-items: center;
  width: 280px;
  margin-bottom: 120px;
}

.list.vertical li {
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.list.vertical li .thumb {
  background: no-repeat center right;
  background-size: cover;
  margin-bottom: 40px;
}
.list.vertical.circle li .thumb {
  display: inline-block;
  width: 280px;
  height: 280px;
  border-radius: 50%;
}

.list.vertical.circle li .info {
  width: 280px;
}
.list li h4.category {
  color: var(--Main-color);
  margin-bottom: 5px;
}
.list.vertical li h2 {
  margin-bottom: 12px;
}
.list.vertical.circle li {
  justify-content: center;
}
.list.vertical li .price {
  display: flex;
}
.list.vertical.circle li .price {
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 38px;
}
.list.vertical li .price dt {
  font-weight: normal;
  margin-right: 5px;
  color: var(--Gray-Dark);
}
.list.vertical li .price dd {
  font-weight: bold;
  color: var(--Main-color);
  text-align: left;
  flex-grow: 0;
}
.list.vertical li .price dd + dt {
  margin-left: 20px;
}
.list.vertical li.full {
  width: 100%;
}
.list .img {
  background-size: cover;
  background-position: center;
}
.list li.full .img {
  height: 400px;
  margin-bottom: 48px;
}
.list li.full > .info {
  display: flex;
}
.list li.full > .info .head {
  flex-grow: 1;
}
.list li.full > .info .list {
  flex-grow: 0;
}
#rent .list li.full .head p {
  width: 450px;
}
#rent .list li.full .head .ext {
  font-size: 0.85em;
  color: var(--Gray-Light);
  margin-top: 12px;
}
#rent .list .info .head + .list {
  width: calc(50% - 20px);
}
#rent .list .info .head + .list .info {
  flex-grow: 1;
}
.list .info .head + .list li {
  margin-bottom: 40px;
  border-bottom: none;
  padding: 0;
}
.list.horizon li {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
  width: 100%;
}
.list.horizon li .thumb {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
}
.list.horizon li .thumb + .info {
  margin-left: 30px;
}
.list.horizon li .info {
  padding-right: 30px;
  flex-grow: 1;
}
.list.horizon li .info h4 {
  margin-bottom: 10px;
}
#rent .list.vertical {
  margin-top: 120px;
}
#rent .list.vertical li {
  width: calc(50% - 20px);
}
#rent .list.vertical li .thumb {
  height: 310px;
}
#rent #education.list.vertical li {
  width: 100%;
}
#rent #education.list.vertical li .thumb {
  width: 100%;
}
.my .list.horizon li .info {
  gap: 3px;
  display: flex;
  flex-direction: column;
}
.my .list.horizon li .info h3 {
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 1.2em;
}
.my .list.horizon li .info h5 {
  margin-bottom: 0;
  font-size: 0.85em;
  color: var(--Gray-Light);
}
.my .list.horizon li .info p {
  font-size: 0.85em;
}
.my .list.horizon li .info p strong {
  margin-right: 6px;
}
.my .list.horizon li .info .price {
  color: var(--Main-color);
  font-size: 1.2em;
}
.my .list.horizon li .info .price::before {
  content: var(--Won);
}
.list.horizon li .btnset {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  text-align: center;
  color: var(--Gray-Dark);
}

.list.horizon li .btnset .icon {
  margin-bottom: 15px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list.horizon li .btnset .icon img {
  max-height: 27px;
}
.list.horizon li .btnset p {
  color: var(--Gray-Dark) !important;
}
.sub.my .detail .detail-contents .sect.schedule {
  margin-bottom: 30px;
}
.sub.my .detail .detail-contents .sect:last-child {
  padding-top: 60px;
}

.my .sect.schedule > h3 {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.my .sect.schedule h3.complete {
  background: var(--Main-gra);
  color: transparent;
  -webkit-background-clip: text;
  flex-grow: 0;
}
.my .sect.schedule h3.complete span {
  background: var(--Main-gra-rev);
  color: #fff;
  margin-left: 10px;
  border: 0;
}
.my .sect.schedule h3 span {
  font-size: 0.5em;
  color: var(--Gray-Mid);
  border: 2px solid var(--Gray-Mid);
  padding: 8px 12px;
  border-radius: 30px;
  margin-left: 10px;
}
.sub.my .list.horizon li {
  padding-top: 10px;
}
.sub.my .list.horizon li + li {
  padding: 30px 0;
}
.my .sect.schedule h3.cancel {
  text-decoration: line-through;
  color: var(--Red-color);
}
.my .sect.schedule h3.cancel + .list .info {
  text-decoration: line-through;
}
.my .sect.schedule h3.cancel + .list {
  filter: grayscale(0.7);
}
.my .sect.schedule h3.cancel span {
  color: var(--Red-color);
  border-color: var(--Red-color);
}
.sub.my .detail .detail-contents {
  width: var(--Width);
  border-top: 1px solid var(--Gray-Dark);
}

/* 면허 */
#license .img {
  background: url(../images/img/visual-license@2x.jpg) center right;
  background-size: cover;
  height: 400px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#license .img > * {
  width: var(--Width);
}

.section .split {
  display: flex;
  justify-content: space-between;
}
.section .split li {
  flex-grow: 0;
  width: calc(50% - 50px);
}
.section h3 + p {
  margin-top: 10px;
  padding-right: 50px;
}
.section .split li table {
  margin-top: 30px;
}
.option table td {
  width: 1%;
  white-space: nowrap;
  padding-right: 20px;
}
.option table td:last-child {
  width: 80%;
  padding-right: 0;
}
dl.price {
  display: flex;
  flex-wrap: wrap;
}
.option dl.price {
  justify-content: flex-end;
}
dl.price dt {
  margin-right: 5px;
  font-weight: bold;
  color: var(--Gray-Dark);
}
dl.price dd + dt {
  margin-left: 20px;
}
dl.price dd {
  flex-grow: 0;
  color: var(--Main-color);
  font-weight: bold;
}
.holyday dl.price dd {
  color: var(--Orange);
}
.process {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.process li {
  flex-grow: 0;
  flex-shrink: 0;
  width: calc(var(--Width) / 5 + 30px);
  height: calc(var(--Width) / 5 + 30px);
  margin-left: -30px;
  color: #002470;
  text-align: center;
  padding-top: 50px;
  position: relative;
  border-radius: 50%;
}
.process li:first-child {
  margin-left: 0;
}
.process li:last-child {
  box-shadow: -30px 0 30px rgba(23, 104, 207, 0.4);
  color: #fff;
}
.process li:last-child p {
  color: #fff;
}
.process li h4:nth-of-type(2) {
  margin-top: 20px;
}
.process li::after {
  content: "";
  background-color: rgba(23, 104, 207, 1);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: 0;
}
.process li:first-child::after {
  opacity: 0.1;
}
.process li:nth-child(2)::after {
  opacity: 0.2;
}
.process li:nth-child(3)::after {
  opacity: 0.3;
}
.process li:nth-child(4)::after {
  opacity: 0.4;
}

.process li > * {
  position: relative;
  z-index: 1;
}
.process li h4 {
  font-size: 20px;
  margin-bottom: 5px;
}
.process li p + h5,
.process li h5 + h5 + h5 {
  margin-top: 15px;
}
.process li p {
  color: #002470;
  opacity: 0.6;
  line-height: 1.4;
}
.schedule {
  margin-top: 30px;
}
.schedule ol {
  display: flex;
  border-top: 1px solid var(--Gray-Dark);
}
.schedule ol li {
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: space-between;
  width: calc(100% / 12);
  border-bottom: 1px solid var(--Gray-Border);
  border-left: 1px solid var(--Gray-Border);
  text-indent: 20px;
}
.schedule ol li > div {
}
.schedule ol li > h4 {
}
.schedule ol li:first-child {
  padding-left: 0;
}
.schedule ol li:nth-last-child(1),
.schedule ol li:nth-last-child(2) {
  background-color: var(--Gray-Pale);
  position: relative;
  overflow: visible;
  border-left: 1px solid var(--Gray-Border);
}
.schedule ol li:nth-last-child(2) .date::after {
  content: "1,2월은 안전교육만 실시";
  position: absolute;
  left: 0;
  bottom: -40px;
  white-space: nowrap;
  font-size: 0.85em;
}
.schedule ol li:first-child {
  border-left: 0;
  text-indent: 0;
}
.schedule ol li:nth-last-child(1) > *,
.schedule ol li:nth-last-child(2) > * {
  background-color: var(--Gray-Pale);
}

.schedule ol li h4 {
  padding: 20px 0;
  position: relative;
  border-bottom: 1px solid var(--Gray-Border);
}
.schedule ol li h4 span.year {
  position: absolute;
  font-size: 0.6em;
  top: 6px;
  left: 0;
}
.schedule ol li .date {
  padding-top: 20px;
  padding-bottom: 20px;
}
.schedule ol li .date p {
  color: var(--Gray-Dark);
}
.extra {
  margin-top: 20px;
}
.extra .ext {
  font-size: 0.85em;
  color: var(--Gray-Light);
}
/* 풋터 */
.footer {
  border-top: 1px solid var(--Gray-Border);
  background-color: #fff;
  padding: 30px 0;
  margin-top: 80px;
}
.footer .in {
  width: var(--Width);
  margin: auto;
  color: var(--Gray-Light);
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.5;
  position: relative;
}
.footer .in .legal {
  color: var(--Gray-Mid);
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 12px;
}
.footer .in .legal a {
  margin-right: 30px;
}
.footer .in .slogo {
  position: absolute;
  right: 0;
  bottom: 0;
}
.facility {
  overflow: hidden;
  margin-top: 40px;
}
.facility .swiper-slide {
  height: 470px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

#map {
  margin-top: 80px;
  position: relative;
  background-color: #fff;
}
#map .map-area {
  height: 500px;
  overflow: hidden;
}
#map::before {
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
}
#map .section {
  padding-top: 50px;
}
#map .section:last-of-type {
  padding-bottom: 0;
}
#map .section .head {
  line-height: 1.7;
}
#map .section .head h3 img {
  height: 24px;
  width: auto;
  vertical-align: text-top;
  margin-left: 5px;
}
#map .section .head h3 span {
  font-weight: normal;
}
#map .section .head h4 {
  font-weight: normal;
}
#map .list.horizon {
  margin-top: 50px;
  border-top: 1px solid var(--Gray-Border);
}
.list.horizon li {
  padding: 26px 0;
  border-bottom: 1px solid var(--Gray-Border);
  position: relative;
  cursor: pointer;
}
.list.horizon li .category {
  font-weight: bold;
  color: var(--Gray-Dark);
  margin-right: 10px;
}
.list.horizon li .title {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list.horizon li .date {
  color: var(--Gray-Light);
  font-size: 0.85em;
}
.list.horizon li.new::before {
  content: "●";
  position: absolute;
  left: -15px;
  color: var(--Red-color);
  font-size: 0.5em;
}
.schedule ol li:nth-last-child(2) .date::after {
  bottom: -35px;
  text-indent: 10px;
}
/* 예약화면 */
.wrap.sub {
  top: 0;
}
.wrap.sub .contents {
  padding-top: var(--Top-h);
  position: relative;
}
.sub .contents .article {
  width: var(--Width);
  margin: 40px auto;
}
.sub .contents .article .header {
  margin: 40px 0 40px 0;
}
.sub .contents .article .header h1 {
  font-size: 32px;
  width: 45%;
}
.sub .contents .article .header.nav {
  margin: 40px 0;
}
.sub .contents .article .header p {
  line-height: 1.4;
  color: var(--Gray-Mid);
}
.sub .contents .article .header h1 + p {
  margin-top: 20px;
}
.sub .contents .article .header.nav h1 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub .contents .article .header.nav img {
  height: 30px;
}
.sub .contents .images .swiper-slide {
  height: 385px;
  background-size: cover;
  background-position: center;
}
.swiper-container.images {
  overflow: visible;
  position: relative;
}
.swiper-container.images .swiper-pagination-progressbar {
  background-color: var(--Gray-Border);
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--Main-color);
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  position: relative;
  height: 1px;
  width: var(--Width);
  margin: 30px auto;
}
.visual.swiper-container-horizontal > .swiper-pagination-progressbar,
.visual.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  background-color: rgba(255, 255, 255, 0);
  margin: 0;
  margin-top: -5px;
  z-index: 10;
  height: 6px;
  width: 100%;
}
.visual .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--Main-light);
}
.sub .detail {
  width: var(--Width);
  margin: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.sub .detail .detail-contents .item {
  display: flex;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--Gray-Border);
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.sub .detail .detail-contents .item .thumb {
  flex-grow: 0;
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}
.sub .detail .detail-contents .item .infos {
  padding-left: 30px;
  flex-grow: 1;
}
.sub .detail .detail-contents .item .infos h4 {
  color: var(--Main-color);
  margin-bottom: 8px;
}
.sub .detail .detail-contents .item .infos h3 {
  margin-bottom: 8px;
}
.sub .detail .detail-contents .item .infos p {
  color: var(--Gray-Mid);
}
.sub .detail .detail-contents .agreement {
  margin-bottom: 20px;
}

.sub .detail .detail-contents .overview {
  display: flex;
  gap: 60px;
  height: 105px;
  padding-top: 10px;
}
.sub .detail .detail-contents .overview h6 {
  color: var(--Gray-Light);
  margin-bottom: 5px;
}
.price {
  color: var(--Main-color) !important;
}
.price.holy {
  color: var(--Orange) !important;
}
.sub .detail .detail-contents .overview p {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 0;
}
.sub .detail .detail-contents .overview .price::before {
  content: var(--Won);
}
.sub .detail .detail-contents {
  width: 870px;
  position: relative;
  z-index: 1;
}
.options-complex {
}
.options-complex .option {
  flex-grow: 1;
  margin-top: 30px;
}
.options-complex .option + .option {
  margin-top: 40px;
}
.option h4 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.option h4 + p {
  padding-bottom: 16px;
  margin-top: -10px;
}
.option li {
  display: flex;
  overflow: visible;
  height: 74px;
  position: relative;
  align-items: center;
  gap: 10px;
}
.option li h5 {
  display: flex;
  align-items: center;
}
.option .reserv-day {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--Gray-Light);
  color: var(--Gray-Light);
  font-size: 0.8em;
  display: flex;
  align-items: center;
  padding-right: 8px;
  font-weight: bold;
}
.option .reserv-day span {
  background-color: var(--Gray-Light);
  color: #fff;
  font-weight: bold;
  padding: 6px 8px;
  margin-right: 5px;
}
.option .reserv-day.itday {
  padding-right: 0;
  border-color: var(--Red-color);
  background-color: var(--Red-color);
}
.option .reserv-day.itday span {
  margin-right: 0;
  background-color: var(--Red-color);
}

.sub .detail .detail-contents .sect .option li p {
  flex-grow: 0;
}
.option li dl.price {
  flex-grow: 1;
  text-align: right;
  justify-content: flex-end;
}
.option li dl.price dd {
  flex-grow: 0;
}
.option li p span + span {
  margin-left: 10px;
}
.option li::after,
.overview-mm tr::after {
  content: "";
  border-bottom: 1px solid var(--Gray-Dark);
  width: 100%;
  transform-origin: left bottom;
  transform: scaleY(0.3);
  opacity: 0.3;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.overview-mm tr {
  position: relative;
}
.option li:first-of-type::before {
  content: "";
  border-bottom: 1px solid var(--Gray-Dark);
  width: 100%;
  transform-origin: left bottom;
  transform: scaleY(0.5);
  opacity: 1;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.sub .detail .detail-contents .overview p.ext {
  font-size: 0.8em;
  font-weight: normal;
}
.sub .detail .detail-contents .overview.small {
  height: auto;
}
.sub .detail .detail-contents .overview.small p {
  color: var(--Main-color);
}
.option li p {
  flex-grow: 1;
  color: var(--Gray-Mid);
}
.option li p span.bk {
  /* color: var(--Gray-Dark); */
}
.option li p.price {
  flex-grow: 0;
  color: var(--Main-color);
}
/* .option {
  display: table;
}
.option li {
  display: table-row;
}
.option li > * {
  display: table-cell;
} */
.option dl.price dt,
.option dl.price dd {
  font-weight: normal;
}
.option li h5 span.bk {
}
.option li.unable h5 {
  color: var(--Gray-Mid);
}
.sub .detail .detail-contents .sect .option li.unable p {
  color: var(--Gray-Light);
}
.option li h5 span.bk::after {
  content: "";
  border-right: 1px solid var(--Gray-Border);
  margin-right: 16px;
  padding-right: 16px;
}
.sub .detail .detail-contents .sect {
  margin-bottom: 100px;
}
.sub .detail .detail-contents .sect .form dt {
  font-weight: bold;
  margin-bottom: 10px;
}
.sub .detail .detail-contents .sect .form .guidance.split {
  display: flex;
  margin-top: 24px;
  justify-content: space-between;
}

.sub .detail .detail-contents .sect .form .guidance.split > div {
  width: 42%;
}
.sub .detail .detail-contents .sect .form .guidance.split > div h5 {
  margin-bottom: 10px;
}
.sub .detail .detail-contents .sect .form .guidance.split > div p {
  font-size: 0.88em;
}
.sub .detail .detail-contents .sect .form .guidance.split > div .btn {
  margin-top: 20px;
}
.sub .detail .detail-contents .sect .form dd + dt {
  margin-top: 24px;
}
.sub .detail .detail-contents .sect .noti {
  font-size: 1em;
  margin-top: 20px;
}
.sub .detail .detail-contents .sect .noti.with-btn {
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 30px;
}
.sub .detail .detail-contents .sect .noti.with-btn p {
  color: var(--Gray-Dark);
  font-size: 1em;
}
.sub .detail .detail-contents .sect .noti.with-btn .qr {
  margin-right: 20px;
}
.sub .detail .detail-contents .sect .noti.with-btn .qr img {
  height: 100px;
}
.sub .detail .detail-contents .sect .noti .print {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--Gray-Pale);
  transition: 0.4s;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sub .detail .detail-contents .sect .noti .print img {
  margin-bottom: 5px;
}
.sub .detail .detail-contents .sect .noti .print:hover {
  background-color: var(--Gray-Lighter);
}
.sub .detail .detail-contents .sect .noti .p {
  flex-grow: 1;
}
.sub .detail .detail-contents .sect .noti p {
  padding-left: 12px;
  position: relative;
}
.sub .detail .detail-contents .sect .noti p::before {
  content: "•";
  position: absolute;
  opacity: 0.5;
  left: 0;
}
.sub .detail .detail-contents .sect h3 {
  padding-bottom: 15px;
}

.sub .detail .detail-contents .sect p {
  color: var(--Gray-Mid);
  line-height: 1.4;
  letter-spacing: 0;
}

.sub .detail .detail-contents .sect .ul strong {
  font-size: 1.1em;
  margin-bottom: 5px;
  display: block;
}
.sub .detail .detail-contents .sect .split {
  display: flex;
  gap: 100px;
}

.sub .detail .detail-contents .sect .map {
  border-radius: 10px;
  overflow: hidden;
}
.sub .detail .detail-contents .sect.shop-info h3 {
  margin-top: 30px;
  margin-bottom: 5px;
  line-height: 1.6;
}
.sub .detail .detail-contents .sect.shop-info h4 {
  font-weight: normal;
  line-height: 1.6;
}
.sub .detail .detail-contents .sect.shop-info .introduction {
  margin-top: 15px;
}
.sub .detail .detail-contents .sect:last-child {
  padding-bottom: 0;
  margin-bottom: 40px;
}
.sub .detail .vouch {
  display: flex;
  width: 100%;
  gap: 20px;
}
.sub .detail .vouch .qr {
  height: fit-content;
  text-align: center;
}
.sub .detail .vouch .qr .code {
  border: 1px solid var(--Gray-Border);
  border-radius: 10px;
  padding: 20px;
}
.sub .detail .vouch .qr .code > * {
  width: 150px;
  height: auto;
}
.sub .detail .vouch .qr p {
  margin-top: 10px;
  font-weight: bold;
  color: #000;
}
.sub .detail .voucher {
  border: 1px solid var(--Gray-Border);
  border-radius: 10px;
  flex-grow: 1;
}
.sub .detail .voucher table {
  border-top: 0;
}
.sub .detail .voucher table th {
  white-space: nowrap;
  width: 1%;
  padding: 20px;
  position: relative;
}
.sub .detail .voucher table td {
  padding: 20px;
  color: var(--Gray-Mid);
}
.sub .detail .voucher table th::before {
  content: "";
  width: 1px;
  height: 30%;
  position: absolute;
  right: 0;
  top: 35%;
  background-color: var(--Gray-Border);
  display: block;
}
.sub .detail .voucher table tr:last-child > * {
  border: none;
}
.sub .detail .detail-contents .reserv-ui {
  display: none;
}
.sub .detail .reserv-ui {
  width: 300px;
  flex-grow: 0;
  flex-shrink: 0;
  border: 1px solid var(--Gray-Border);
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}
.sub .detail .reserv-ui.with-season dl.input.class-pick,
.sub .detail .reserv-ui.with-season dl.input.date-time-pick,
.sub .detail .reserv-ui.with-season dl.input.grade-pick,
.sub .detail .reserv-ui.with-season dl.input.age-pick,
.sub .detail .reserv-ui.with-season dl.age-sim-pick {
  display: none;
}
.sub .detail .reserv-ui .choose .head .upcoming {
  margin-top: 16px;
  display: flex;
  align-items: center;
}
.sub .detail .reserv-ui .choose .head .upcoming .ment {
  font-size: 0.9em;
  animation-name: today_blink;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.sub .detail .reserv-ui .choose .head .upcoming .ment i {
  margin-right: 5px;
  font-size: 1.2em;
  align-items: center;
  vertical-align: middle;
}
@keyframes today_blink {
  0% {
    color: var(--Gray-Dark);
  }
  50% {
    color: var(--Gray-Light);
  }
  100% {
    color: var(--Gray-Dark);
  }
}
.sub .detail .reserv-ui.active {
  z-index: 10;
}

.date-time-pick-mode .cal-huge-full {
  opacity: 1;
  visibility: visible;
  z-index: 430 !important;
  width: 100%;
  pointer-events: all;
}
.date-time-pick-mode {
  overflow: hidden;
}
.cal-huge-full {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 200;
  overflow: hidden;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  width: 0;
  pointer-events: none;
}
.cal-huge-full .mask {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.cal-huge.ui-widget.ui-widget-content {
  margin-top: 0;
  width: 870px;
  width: 1200px;
  display: block;
  transition: 0.2s;
  top: 90px;
  margin-left: 0;
  left: calc((100% - 1200px) / 2);
  position: fixed;
  height: calc(100vh - 110px);
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  z-index: 2;
}
.cal-huge.ui-widget.ui-widget-content .focus {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.cal-huge.ui-widget.ui-widget-content .cal-btns {
  height: 60px;
  line-height: 60px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
}
.cal-huge.ui-widget.ui-widget-content .cal-btns a.cancel {
  width: 80px;
  background-color: var(--Gray-Dark);
  color: #fff;
}
.cal-huge.ui-widget.ui-widget-content .cal-btns a.select-complete {
  color: #fff;
  transition: 0.5s;
  display: block;
  background-color: var(--Gray-Light);
  flex-grow: 1;
}
.cal-huge.ui-widget.ui-widget-content .cal-btns a.select-complete span {
  opacity: 0.6;
  display: none;
}
.cal-huge.ui-widget.ui-widget-content .cal-btns a.select-complete.ed span {
  display: inline;
}
.cal-huge.ui-widget.ui-widget-content .cal-btns a.select-complete::after {
  content: "이용하실 날짜와 시간을 선택하세요";
}
.cal-huge.ui-widget.ui-widget-content .cal-btns a.select-complete.ed {
  background-color: var(--Main-color);
}
.cal-huge.ui-widget.ui-widget-content .cal-btns a.select-complete.ed::after {
  content: "선택완료";
}
.cal-huge.ui-widget.ui-widget-content .ui-body {
  overflow-y: auto;
  margin: 0 -1px;
  max-height: calc(100vh - 226px);
}
.cal-huge.ui-widget.ui-widget-content .ui-body table {
  border-collapse: collapse;
  table-layout: fixed;
  margin: 0;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td,
.cal-huge.ui-widget.ui-widget-content .ui-body table th {
  border: 1px solid var(--Gray-Border);
  text-align: left;
  width: calc(100% / 7);
}

.cal-huge.ui-widget.ui-widget-content .ui-body table th {
  padding: 10px;
  color: var(--Gray-Dark);
}

.cal-huge.ui-widget.ui-widget-content .ui-body table td,
.cal-huge.ui-widget.ui-widget-content .ui-body table td > * {
  height: auto;
  line-height: 1.3;
  text-align: left;
}

.cal-huge.ui-widget.ui-widget-content .ui-body table td .times {
  font-size: 14px;
}
.cal-huge.ui-widget.ui-widget-content .ui-state-disabled,
.cal-huge.ui-widget.ui-widget-content .times li.disable {
  background-color: #ededed;
}
.cal-huge.ui-widget.ui-widget-content .ui-state-default,
.cal-huge.ui-widget.ui-widget-content .ui-widget-content .ui-state-default {
  padding: 10px;
  font-weight: bold;
}
.cal-huge.ui-widget.ui-widget-content .ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  color: inherit;
}

.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li {
  padding: 8px;
  border: 1px solid var(--Gray-Border);
  border-radius: 0;
  cursor: pointer;
  margin: -1px;
  transition: 0.3s;
  margin: 0 5px 5px 5px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li p {
  color: var(--Gray-Mid);
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li p:first-child {
  display: flex;
  color: var(--Gray-Dark);
  font-size: 1em;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td .event {
  padding: 8px;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td.event-day .event + div {
  margin-top: 10px;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td.event-day a {
  color: var(--Main-color);
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td.event-day .event {
  color: var(--Main-color);
  font-weight: bold;
  font-size: 1.1em;
  padding-top: 0;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td.event-day .event > div > p {
  white-space: normal;
  word-break: break-all;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li p + p {
  margin-top: 5px;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td.event-day .event.reserv-day .event-name {
  color: var(--Red-color);
  font-weight: bold;
  font-size: 1em;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td.event-day .event.reserv-day p {
  font-weight: normal;
  color: var(--Gray-Dark);
  font-size: 0.9em;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td.event-day .event .d-day {
  font-size: 0.85em;
  color: #fff;
  background-color: var(--Red-color);
  border-radius: 3px;
  display: inline-block;
  padding: 4px 8px;
  font-weight: bold;
  margin-bottom: 5px;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td.event-day.ui-state-disabled .event,
/* .cal-huge.ui-widget.ui-widget-content .ui-body table td.event-day.ui-datepicker-unselectable .event {
  color: var(--Gray-Mid);
} */
.cal-huge.ui-widget.ui-widget-content .ui-body table td.event-day .event i {
  margin-right: 3px;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li p:first-child::before {
  content: "\ea0e";
  font-family: "xeicon";
  margin-right: 5px;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li.disable,
.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li.disable p:first-child,
.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li.disable p {
  text-decoration: line-through;
  color: var(--Gray-Light);
  pointer-events: none;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li.selected {
  color: #fff;
  background-color: var(--Main-color);
  border-color: var(--Main-color);
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li.selected p {
  color: #fff;
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li.selected p:first-child::before {
  content: "\e92e";
  font-family: "xeicon";
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td .times li.disable p:first-child::before {
  content: "\e927";
  font-family: "xeicon";
}
.cal-huge.ui-widget.ui-widget-content .ui-body table td {
  padding: 0;
}

.cal-huge.ui-widget.ui-widget-content .ui-widget-header,
.cal-huge.ui-widget.ui-widget-content .ui-datepicker .ui-datepicker-header {
  border-bottom: 1px solid var(--Gray-Border);
  margin-bottom: -1px;
}
.sub .detail .reserv-ui dl {
  border-bottom: 1px solid var(--Gray-Border);
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.sub .detail .reserv-ui dl.disable {
  background-color: var(--Gray-Pale);
}
.sub .detail .reserv-ui dl.disable dd > * {
  opacity: 0.4;
}
.sub .detail .reserv-ui.active .choose {
  padding-left: 900px;
  margin-left: -900px;
}
.sub .detail .reserv-ui dl dt {
  color: var(--Gray-Light);
  font-size: 12px;
  font-weight: bold;
  padding-left: 24px;
  display: flex;
}
.sub .detail .reserv-ui dl dt a.modify {
  flex-grow: 1;
  text-align: right;
  padding-right: 20px;
  text-decoration: underline;
  color: var(--Gray-Dark);
  font-size: 0;
}
.sub .detail .reserv-ui dl dt a.modify::before {
  content: "수정";
  font-size: 12px;
}
.sub .detail .reserv-ui dl dt a.modify.ok {
  color: var(--Main-color);
}
.sub .detail .reserv-ui dl dt a.modify.ok::before {
  content: "완료";
}
.sub .detail .reserv-ui dl dd {
  margin-top: 5px;
}
.sub .detail .reserv-ui dl.head {
  padding: 24px;
  min-height: 105px;
}

.sub .detail .reserv-ui dl.head dt {
  padding-left: 0;
}
.sub .detail .reserv-ui dl.head dd {
  font-size: 30px;
  font-weight: 200;
}
.sub .detail .reserv-ui dl.head dd::before {
  content: var(--Won);
}
.sub .detail .reserv-ui dd input,
.sub .detail .reserv-ui dd select {
  width: 100%;
  border: none;
  display: block;
  padding: 0;
  outline: 0;
  height: auto;
  padding: 0 24px;
  background-color: transparent;
}

.sub .detail .reserv-ui dd ul.total {
  padding: 0 24px;
}
.sub .detail .reserv-ui dd ul.total li {
  display: flex;
}
.sub .detail .reserv-ui dd ul.total li.discount,
.sub .detail .reserv-ui dd ul.total li.discount * {
  color: var(--Red-color) !important;
  font-weight: bold;
}
.sub .detail .reserv-ui dd ul.total li p {
  flex-grow: 1;
  font-size: 12px;
  line-height: 1.8;
}
.sub .detail .reserv-ui dd ul.total li p.price {
  color: var(--Gray-Dark);
  text-align: right;
}
.sub .detail .reserv-ui dd ul.total li p.price::before {
  content: var(--Won);
}
.sub .detail .reserv-ui ul.total.pay {
  display: flex;
  align-items: center;
  border-top: 1px dashed var(--Gray-Border);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 14px;
}
.sub .detail .reserv-ui ul.total.pay p {
  font-size: 14px;
}
.sub .detail .reserv-ui ul.total.pay > * {
  flex-grow: 1;
  font-size: 14px;
  font-weight: bold;
  color: var(--Gray-Dark);
}
.sub .detail .reserv-ui ul.total.pay p:last-child {
  text-align: right;
}
.sub .detail .reserv-ui ul.total.pay p:last-child::before {
  content: var(--Won);
}
.sub .detail .reserv-ui a.submit,
.sub .detail .reserv-ui a.pay {
  display: block;
  background: var(--Main-gra-rev);
  color: #fff;
  text-align: center;
  height: 60px;
  line-height: 60px;
  margin: -1px;
  border-radius: 0 0 10px 10px;
  position: relative;
  transition: 0.5s ease-in-out;
  overflow: hidden;
  font-weight: bold;
  z-index: 10;
}
.sub.complete .detail .reserv-ui a.submit {
  background: var(--Gray-Dark);
}
.sub.complete .detail .reserv-ui dl.total-payment dd {
  margin-top: 0;
}
.sub.complete .detail .reserv-ui ul.total.pay {
  margin-top: 0;
  padding-top: 0;
  border: none;
}

.sub .detail .reserv-ui .submit::before {
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
  height: 100%;
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
/* .sub .detail .reserv-ui dl.selecting {
  border: 1px solid var(--Gray-Dark);
  margin: -1px -1px 0 -1px;
  z-index: 2;
} */
.sub .detail .reserv-ui .submit:hover::before {
  width: 200%;
  transition: 1s;
  pointer-events: none;
}

.sub .detail .reserv-ui dd .selector {
  background: url(../images/icon/select.svg) no-repeat right 10px center;
  padding-left: 24px;
  display: flex;
}
.sub .detail .reserv-ui dd .selector,
.sub .detail .reserv-ui dd select,
.sub .detail .reserv-ui dd .datepicker {
  background-position: center right 20px;
  color: var(--Gray-Dark);
  opacity: 1;
}
.sub .detail .reserv-ui dd select:disabled,
.sub .detail .reserv-ui dd .selector:disabled,
.sub .detail .reserv-ui dd .datepicker:disabled {
  background: none;
}
.sub .detail .reserv-ui .selection a.ok {
  display: block;
  text-align: center;
  background-color: var(--Main-color);
  border-radius: 6px;
  width: 100%;
  color: #fff;
  font-weight: bold;
  padding: 15px 0;
}
.sub .detail .reserv-ui dd .selection {
  position: absolute;
  background-color: #fff;
  border: 1px solid var(--Gray-Dark);
  border-radius: 10px;
  z-index: 12;
  left: -320px;
  top: 0;
  width: 300px;
}
.sub .detail .reserv-ui dd .selector .selection li:first-child:nth-last-child(1),
.sub .detail .reserv-ui dd .selector .selection li:first-child:nth-last-child(1) ~ li {
  padding-top: 0;
  padding-bottom: 0;
}
.sub .detail .reserv-ui dd .selection li {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  flex-wrap: nowrap;
}
.sub .detail .reserv-ui dd .selection li dd .selection li {
  padding: 0 24px;
}
.sub .detail .reserv-ui dd .selection li > div {
  flex-grow: 1;
}
.sub .detail .reserv-ui dd .selection li .quantity {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.sub .detail .reserv-ui dd .selection li .quantity a {
  width: 36px;
  height: 36px;
  background-color: var(--Gray-Pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  font-weight: bold;
  transition: 0.3s;
}
.sub .detail .reserv-ui dd .selection li .quantity a.disable {
  color: var(--Gray-Light);
}
.sub .detail .reserv-ui dd .selection li .quantity a:hover {
  background-color: var(--Gray-Dark);
  color: #fff;
}
.sub .detail .reserv-ui dd .selection li .quantity input {
  text-align: center;
  width: 50px;
  padding: 0;
}
.sub .detail .reserv-ui .selecting .selection {
  opacity: 1;
  visibility: visible;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.15);
}
.sub .detail .reserv-ui dd .selection {
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.sub .detail .reserv-ui dd .selection.option > li {
  flex-wrap: wrap;
  padding: 20px 20px 10px 20px;
}
.sub .detail .reserv-ui dd .selection.option > li + li {
  border-top: 1px solid var(--Gray-Border);
}
.sub .detail .reserv-ui dd .selection.option li .option-item {
  width: 100%;
}
.sub .detail .reserv-ui dd .selection.option .name {
  font-size: 12px;
  font-weight: bold;
  color: var(--Gray-Light);
}
.sub .detail .reserv-ui dd .selection.option li .option-item li {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}
.sub .detail .reserv-ui dd .selection.option li .option-item li .quantity {
  text-align: right;
  flex-grow: 1;
}

.ui-fix .sub .detail .reserv-ui {
  position: fixed;
  top: calc(var(--Top-h) + 30px);
  right: calc(50% - 600px);
  background-color: #fff;
}
.ui-fix .sub .detail .reserv-ui .choose {
  max-height: calc(100vh - var(--Top-h) - 120px);
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: visible;
}
.ui-fix .sub .detail .reserv-ui .choose * {
  pointer-events: all;
}
/* 데이트피커 */
.ui-widget.ui-widget-content {
  border: 1px solid var(--Gray-Dark);
  width: 300px;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
  margin-left: -330px;
  margin-top: -60px;
}
.ui-datepicker th {
  color: var(--Gray-Light);
  font-size: 12px;
  text-align: center;
  padding: 10px 0;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  color: initial;
  border: none;
  text-align: center;
  background-color: transparent;
  height: calc(298px / 7);
  line-height: calc(298px / 7);
  padding: 0;
  font-size: 14px;
}
html .ui-button.ui-state-disabled:active {
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  color: var(--Main-color);
}
.ui-state-active,
.ui-widget-content .ui-state-active {
  background-color: var(--Gray-Dark);
  color: #fff;
  border-radius: 100px;
}
.ui-widget-header,
.ui-datepicker .ui-datepicker-header {
  background-color: transparent;
  border: none;
  padding: 10px;
  height: 56px;
}
.ui-widget-header a {
  background-color: var(--Gray-Pale);
  border-radius: 50%;
  top: 10px;
  display: inline-block;
}
.ui-datepicker .ui-datepicker-title {
  line-height: 36px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 10px;
  top: 10px;
  width: 36px;
  height: 36px;
  background: var(--Gray-Pale) url(../images/icon/arrow-left.svg) no-repeat center;
}
.ui-datepicker .ui-datepicker-next {
  right: 10px;
  top: 10px;
  width: 36px;
  height: 36px;
  background: var(--Gray-Pale) url(../images/icon/arrow-right.svg) no-repeat center;
}
.ui-datepicker table {
  border: none;
}
.ui-widget-header a:hover {
  border: none;
}
/* 에러 */

.error-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100%;
}
.error-container .message {
  flex-grow: 0;
  padding: 50px 0;
}
.error-container .message h1 {
  color: var(--Red-color);
  font-size: 4em;
  line-height: 1.2;
}
.error-container .message h2 {
  color: var(--Red-color);
  font-size: 2em;
  line-height: 1.4;
}
.error-container .message h3 {
  color: var(--Gray-Mid);
  font-size: 1em;
  margin-top: 10px;
}
.error-container .btn {
  flex-grow: 0;
  padding: 50px 0;
}
.error-container .btn a {
  background-color: var(--Gray-Dark);
  border-radius: 30px;
  padding: 15px 25px;
  color: #fff;
  font-weight: bold;
  transition: 0.2s;
}
.error-container .btn a:hover {
  background-color: var(--Main-color);
}
.error-container .img {
  flex-grow: 1;
  background: url(../images/img/error.svg) no-repeat center;
  width: 100%;
  background-size: auto 80%;
}
.cs #map {
  margin-top: 0;
}
.board {
  width: var(--Width);
  margin: auto;
}
.board.view .head {
  margin: 40px 0;
}
.board.view .head h2 {
  display: flex;
  gap: 10px;
  align-items: center;
}
.board.view .head h2 img {
  height: 30px;
}
.board.view .head h2 + p {
}
.board.view .in {
  font-size: 1.2em;
  line-height: 1.6;
  color: var(--Gray-Mid);
}
.board.view .btn-area {
  border-top: 1px solid var(--Gray-Border);
  margin-top: 50px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.board.view .btn-area p {
  color: var(--Gray-Mid);
  font-style: italic;
}
/* 로딩 */
.loading {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  animation-name: loading-baloon;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  display: none;
}
.loading .img {
  width: 120px;
  padding-top: 120px;
  background: url(../images/img/loading-face.svg) no-repeat center top;
  position: relative;
  animation-name: loading-blink;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.loading .img:before {
  width: 180px;
  height: 180px;
  content: "";
  background: url(../images/img/loading-rotate.svg) no-repeat center top;
  position: absolute;
  left: -30px;
  top: -30px;
  animation-name: loading-rotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center;
}

@keyframes loading-rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes loading-blink {
  0% {
    background-image: url(../images/img/loading-face.svg);
  }
  98% {
    background-image: url(../images/img/loading-face.svg);
  }
  100% {
    background-image: url(../images/img/loading-face-close.svg);
  }
}
@keyframes loading-baloon {
  0% {
    padding-top: 15px;
  }
  50% {
    padding-top: 0;
  }
  100% {
    padding-top: 15px;
  }
}

@supports (-webkit-backdrop-filter: none) {
  .scrolled .gnb,
  .loading {
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.8);
  }
}

/* 모달팝업 */
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  flex-direction: column;
  overflow: hidden;
  height: 0;
}
.modal .dimed {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.4s;
  opacity: 0;
}
.modal .modal-popup {
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
  border-radius: 20px;
  transition: 0.2s;
  z-index: 2;
  box-shadow: 60px 60px 90px rgba(0, 0, 0, 0.2);
}
.modal .modal-popup .popup-content {
  overflow-y: auto;
  max-height: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  background-color: #fff;
  line-height: 1.5;
}
.modal .modal-popup .popup-content li {
  padding: 30px;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal .modal-popup .popup-content li:last-of-type {
  border-bottom: 0;
}
.modal .modal-popup .popup-content .descript .img-set {
  overflow: hidden;
  margin: 20px 0;
  display: flex;
  gap: 10px;
}
.modal .modal-popup .popup-content .descript .img-set img {
  height: 150px;
}
.modal .modal-popup h1 {
  font-size: 1.75em;
}
.modal .modal-popup.cert h1.certificated {
  color: var(--Main-color);
  display: flex;
  align-items: center;
}
.modal .modal-popup.cert h1.certificated::after {
  content: "인증완료";
  color: #fff;
  font-size: 0.5em;
  background-color: var(--Main-color);
  border-radius: 5px;
  padding: 9px 12px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  line-height: 1;
  animation-name: certok;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transform-origin: center;
}
@keyframes certok {
  0% {
    background-color: var(--Main-color);
  }
  100% {
    background-color: var(--Main-light);
  }
  100% {
    background-color: var(--Main-color);
  }
}

.modal .modal-popup h2 {
  color: var(--Gray-Mid);
  font-size: 1em;
  font-weight: normal;
}
.modal .modal-popup h2 span {
  font-weight: bold;
  color: var(--Main-color);
}
.modal .btn-set {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.modal .btn-set a {
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: var(--Gray-Mid);
  width: 100%;
  transition: 0.3s;
}
.modal .btn-set a.submit {
  background-color: var(--Main-color);
}
.modal .btn-set a img {
  vertical-align: middle;
}
.modal .btn-set a:hover {
  background-color: var(--Gray-Dark);
}
.modal .btn-set a.submit:hover {
  background-color: var(--Main-light);
}
.modal .no {
  margin-top: 20px;
  color: var(--Gray-Mid);
  font-weight: bold;
  transition: 0.3s;
  z-index: 2;
  position: relative;
}
.modal .no:hover {
  color: #fff;
}
.modal-on {
  overflow: hidden;
}
.modal-on .modal.on {
  height: 100%;
}
.modal-on .modal .dimed {
  opacity: 1;
}
.modal-on .wrap {
  filter: blur(30px);
  transition: 0.5s;
}

.modal.system {
}
.modal.system .popup-content {
  max-height: calc(100% - var(--Input-h));
}
.modal.system .modal-popup {
  box-shadow: 60px 60px 60px rgba(0, 0, 0, 0.5);
}
.modal.system .btn-set a {
  height: var(--Input-h);
  line-height: var(--Input-h);
}

/* LINK모달 */
.modal .filebox input {
  border-radius: 5px 0 0 5px;
  border-right: 0;
}
.modal .filebox label {
  font-weight: bold;
  border: none;
  background-color: var(--Gray-Light);
  color: #fff;
  padding: 0 15px;
  flex-shrink: 0;
}

.modal.linkage .thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.modal.linkage .modal-popup h1 {
  line-height: 1;
}
.modal.linkage .logo {
  max-width: 120px;
  max-height: 42px;
}
.modal.linkage .descript h3,
.modal.linkage .descript h4 {
  font-weight: normal;
  color: var(--Gray-Dark);
}
.modal.linkage .descript h3 span {
  font-weight: bold;
}
.modal.linkage .descript h3 {
  font-size: 1.4em;
}
.modal.linkage .descript h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

/* 플로팅 */
.floating {
  position: absolute;
  width: 140px;
  top: 100px;
  left: calc(55% + var(--Width) / 2);
  padding: 20px;
  display: none;
  bottom: auto;
  cursor: pointer;
}
.floating .icon {
  background-size: 50% auto;
  background: no-repeat top left;
  height: 90px;
}
.floating.certification .icon {
  background-image: url(../mypage/images/img/online-cert-yj.svg);
}
.floating .title {
  margin-bottom: 5px;
}
.floating h1 {
  font-size: 13px;
  line-height: 1.4;
}
.floating p {
  font-size: 10px;
  line-height: 1.4;
  color: var(--Gray-Mid);
}
.floating p span {
  color: var(--Main-color);
}
.scrolled .main .floating,
.scrolled .sub .floating {
  top: 100px;
  position: fixed;
  transition: 0;
}
.main .floating {
  top: 100px;
}
.sub .floating {
  top: 100px;
}

/*file*/
.filebox {
  display: flex;
  margin-bottom: 5px;
  overflow: hidden;
  position: relative;
}
.filebox input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.filebox label {
  display: inline-block;
  line-height: var(--Input-h);
  height: var(--Input-h);
  border: 1px solid var(--Gray-Border);
  padding: 0 10px;
  vertical-align: top;
  margin-left: 0;
  border-radius: 0 5px 5px 0;
  margin: 0;
}
.sub-detail .sect:first-of-type {
  margin-top: 20px;
}
.sub .detail .detail-contents .sect.notice-area {
  margin-top: 0;
  margin-bottom: 40px;
  position: relative;
}
.notice-area .swiper-pagination-fraction {
  position: absolute;
  top: 24px;
  right: 20px;
  left: initial;
  text-align: right;
  opacity: 0.5;
  font-size: 0.8em;
  height: auto;
  width: auto;
}

.notice-area li {
  border-radius: 8px;
  background-color: var(--Gray-Pale);
  padding: 24px;
}
.notice-area li h4 {
  margin-bottom: 10px;
  font-size: 1em;
}
.notice-area li h4::before {
  content: "\e9ab";
  margin-right: 5px;
  font-size: 1.2em;
  font-weight: normal;
  vertical-align: middle;
  margin-top: -2px;
  display: inline-block;
  font-family: "xeicon";
}
.sub .detail .detail-contents .sect.notice-area p {
  padding-left: 0;
  font-size: 0.8em;
}
.notice-area li p::before {
  display: none;
}
.sub .detail .detail-contents .sect.notice-area li + li {
  margin-top: 10px;
}
.sub .detail .detail-contents .sect.notice-area li.swiper-slide + li.swiper-slide {
  margin-top: 0;
}
.sub .detail .detail-contents .sect.notice-area .swiper-wrapper {
  box-sizing: border-box;
}
.sub .detail .detail-contents .sect.notice-area li .red {
  color: var(--Red-color);
}
.sub .detail .detail-contents .sect.notice-area .swiper-nav {
  position: absolute;
  right: 20px;
  top: 24px;
  font-size: 1em;
  z-index: 22;
  display: flex;
  opacity: 0.7;
  gap: 10px;
}
.sub .detail .detail-contents .sect.notice-area .swiper-nav .swiper-pagination-fraction {
  position: static;
  opacity: 1;
  gap: 2px;
  font-size: 0.7em;
}
.sub .detail .detail-contents .sect.notice-area .swiper-nav > div {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sub .detail .detail-contents .sect.notice-area .swiper-nav .swiper-button-disabled {
  opacity: 0.2;
}
/* named upload */
.filebox .upload-name {
  flex-grow: 1;
  border-right: 0;
  border-radius: 5px 0 0 5px;
}

@keyframes new_blink {
  0% {
    color: #fff;
  }
  50% {
    color: var(--Red-color);
  }
  100% {
    color: #fff;
  }
}

/*반응형*/
@media (max-width: 475px) {
  html {
    --Width: 100%;
    --Top-h: 50px;
    --Input-h: 50px;
    --spector: 10px solid var(--Gray-Lightest);
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 14px;
  }
  body,
  input {
    font-size: 14px;
  }
  .wrap {
    top: 100vw;
  }
  .visual {
    height: 100vw;
  }
  .gnb {
    padding: 0 0 0 20px;
  }
  .gnb .menu li.logo {
    flex-grow: 1;
    background-size: auto 30px;
  }
  .gnb .menu .menus .menu-n {
    display: block;
  }
  .gnb .coll {
    width: 50px;
    height: var(--Top-h);
    display: block;
    text-align: center;
    line-height: var(--Top-h);
    padding: 20px 15px;
    z-index: 2;
    position: relative;
  }
  .gnb .coll:before {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    height: 12px;
    content: "";
    display: block;
  }
  .gnb .coll:after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    top: calc(50% + 2px);
    background-color: #fff;
    right: 15px;
  }
  .scrolled .gnb,
  .sub .gnb {
    background-color: #fff;
  }
  .scrolled .gnb .menu {
    height: var(--Top-h);
  }
  .scrolled .gnb:after {
    width: 300%;
    transform: scale(0.34);
  }
  .scrolled .gnb .coll:before,
  .sub .gnb .coll:before {
    border-top: 2px solid var(--Gray-Dark);
    border-bottom: 2px solid var(--Gray-Dark);
  }
  .scrolled .gnb .coll:after,
  .sub .gnb .coll:after {
    background-color: var(--Gray-Dark);
  }
  .gnb .menu li.menus {
    display: block;
    position: absolute;
    flex-direction: column;
    height: 100vh;
    padding-top: calc(20px + var(--Top-h));
    top: 0;
    right: -100%;
    z-index: 1;
    background-color: var(--Gray-Dark);
    color: #fff;
    transition: 0.2s;
    width: 50%;
    text-align: left;
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.2);
  }
  .gnb.active .menu li.menus {
    right: 0;
  }
  .gnb .menu .mirihae-menu ul {
  }
  .gnb.active .coll {
    background-color: transparent;
  }
  .gnb.active .coll::before {
    border-color: #fff;
  }
  .gnb.active .coll::after {
    background-color: #fff;
  }
  .gnb .menu .menus .menu-n li {
    display: block;
    margin-left: 0;
    padding: 5px 30px;
  }
  .gnb .menu {
    height: 50px;
  }
  .gnb .menu li.logo img {
    height: 25px;
  }
  .gnb .menu .menus .menu-n li.member {
    background: none !important;
    width: 100%;
    height: inherit;
  }
  .gnb .menu .mirihae-menu {
    width: initial;
    margin-top: 30px;
    color: var(--Gray-Light);
    font-size: 14px;
  }
  .gnb .menu .mirihae-menu ul {
    display: block;
  }
  .gnb .menu .mirihae-menu ul li {
    width: auto;
    height: auto;
    padding: 5px 30px;
  }
  .gnb .menu .mirihae-menu ul li.ch,
  .gnb .menu .mirihae-menu ul li.member {
    background: none;
    margin-left: 0;
  }
  .gnb .menu .mirihae-menu li.ch::before {
    content: "카카오톡채널";
  }
  .gnb .menu .mirihae-menu li.member::before {
    content: "로그인";
  }
  .scrolled .gnb .menu a.active {
    color: var(--Main-light);
  }

  .gnb .menu .menus .menu-n li.linkage {
    position: absolute;
    top: 3px;
    right: 30px;
    transform-origin: center center;
    transform: scale(0.7);
  }
  .scrolled .gnb .menu .menus .menu-n li.linkage .icon::before,
  .scrolled .gnb .menu .menus .menu-n li.linkage .icon::after {
    border-color: #fff;
  }
  .gnb .menu .menus .menu-n li.linkage + li.member {
    margin-left: 0;
  }
  .gnb .menu .menus .menu-n li.linkage.unlink::before {
    content: "LINK";
    padding: 5px 10px;
    border-radius: 30px;
    background-color: var(--Main-light);
    font-size: 10px;
    line-height: 1;
    position: absolute;
    z-index: 2;
    top: 80%;
    left: 8px;
    letter-spacing: 0;
    color: #fff !important;
  }
  .gnb .menu li.mirihae-menu ul {
    display: none;
  }
  .gnb.active .menu li.mirihae-menu ul {
    display: flex;
    position: absolute;
    z-index: 10;
    left: calc(50% + 30px);
    /* transform-origin: left center;
    transform: scale(0.8); */
    top: 20px;
  }
  .gnb.active .menu li.mirihae-menu ul li.member,
  .gnb.active .menu li.mirihae-menu ul li.ch {
    background: none;
    color: var(--Gray-Light);
    font-weight: bold;
  }
  .gnb.active .menu li.mirihae-menu ul li.member::before {
    content: "로그인";
  }
  .gnb.active .menu li.mirihae-menu ul li.member + .ch {
  }
  .gnb.active .menu li.mirihae-menu ul li.member + .ch::before {
    content: "카카오채널";
  }
  .scrolled .gnb.active .menu li.mirihae-menu ul {
  }
  /* 본문 */
  .visual .ment {
    padding: 0 40px;
    word-break: keep-all;
  }
  .visual h1 {
    font-size: 16px;
  }
  .visual h2 {
    font-size: 32px;
    margin-top: 5px;
    line-height: 1.2;
  }
  .visual p {
    font-size: 12px;
    line-height: 1.5;
  }

  .btn {
    font-size: 10px;
    height: auto;
    line-height: initial;
    min-width: initial;
    padding: 10px 20px;
    display: inline-block;
  }
  .section {
    padding: 30px 0;
  }
  .section p {
    line-height: 1.4;
  }
  .section .overview {
    margin-top: 10px;
    display: block;
    position: relative;
  }
  .section .overview .subscript {
    width: initial;
    padding: 0 24px;
  }
  .section h2 span::before {
    content: "\A";
    display: block;
  }
  .section .overview .img {
    margin-top: 40px;
    padding: 0 24px;
    padding-bottom: 380px;
  }
  .section .overview .subscript dl {
    border-top: 1px solid var(--Gray-Border);
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    width: calc(100% - 48px);
  }
  .section .overview .subscript dl p {
    font-size: 12px;
    line-height: 1;
    line-height: 4;
    border-bottom: 1px solid var(--Gray-Border);
  }
  .section .overview .subscript dl dd {
    flex-grow: 1;
  }
  .section .overview .subscript dl dd p {
    text-indent: 10px;
  }
  #leisure .list.vertical {
    padding: 0 24px;
  }
  .list.vertical.circle li {
    width: initial;
    flex-direction: row;
    text-align: left;
    margin-bottom: 50px;
    align-items: flex-start;
  }
  .list.vertical.circle li .thumb {
    width: calc(35vw - 2.5vw - 12px);
    height: calc(35vw - 2.5vw - 12px);
    margin-bottom: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    flex-grow: 0;
  }
  .list.vertical li h2 {
    font-size: 18px;
    margin-bottom: 0;
  }
  .list li h4.category {
    font-size: 12px;
    margin-bottom: 5px;
    display: none;
  }
  .list.vertical.circle::before {
    content: "종합운동장";
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    display: block;
  }
  #leisure .list.vertical.circle {
    display: block;
  }
  .list.vertical.circle li .info {
    flex-grow: 1;
    flex-shrink: 0;
  }
  .list.vertical.circle .info {
    width: initial !important;
    flex-grow: 0 !important;
    flex-shrink: 1 !important;
  }
  .list.vertical.circle li .info p {
    font-size: 12px;
    margin-top: 5px;
    white-space: inherit;
  }
  .list.vertical.circle li .price {
    justify-content: flex-start;
    margin: 10px 0 15px 0;
    flex-wrap: nowrap;
  }
  .list.vertical.circle li:nth-child(4),
  .list.vertical.circle li:nth-child(5) {
    width: initial;
    margin-left: 0;
  }
  #license .img {
    padding: 0 24px;
    height: 200px;
    background-position: center;
    position: relative;
  }
  #license .img > * {
    position: relative;
    z-index: 1;
  }
  #license .section {
    padding-left: 24px;
    padding-right: 24px;
  }
  #license .img::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
    z-index: 0;
    position: absolute;
  }
  .section .split li table {
    margin-top: 20px;
  }
  .section .split {
    flex-direction: column;
  }
  .section .split li {
    width: initial;
  }
  .section .split li + li {
    margin-top: 60px;
  }

  p.noti {
    font-size: 12px;
    word-break: break-all;
  }
  table th,
  td {
    padding: 20px 0;
    line-height: initial;
    /* font-size: 12px; */
  }
  table td.dd {
    font-size: 12px;
  }

  .section h3 + p {
    padding-right: 0;
  }
  #license .section .split:first-child li:first-child th {
    font-size: 1.2em;
  }
  .section .split li:first-child tr {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--Gray-Border);
  }
  .section .split li:first-child th,
  .section .split li:first-child td {
    display: block;
    border: none;
    padding-bottom: 0;
    padding-top: 5px;
  }
  .section .split li:first-child td:last-child p {
    margin-right: 30px;
    display: inline-block;
  }
  .section .split li:first-child th {
    padding-bottom: 0;
  }
  table td.with-btn {
    padding: 0;
    vertical-align: middle;
    height: 56px;
  }
  table td.dd {
    padding-top: 0px;
  }
  .rental .list .info .head + .list li {
    align-items: flex-end;
  }
  .rental .list.horizon li .info dl.price {
    line-height: 1.6;
  }
  .rental .list.horizon li .info dl.price dd {
    width: 60%;
    flex-grow: 1;
    font-weight: normal;
  }
  .rental .list.horizon li .info dl.price dt {
    font-weight: normal;
  }
  .rental .list.horizon li .info dl.price dd + dt {
    margin-left: 0;
  }

  .schedule ol li .date p {
    line-height: 1.8;
    font-size: 12px;
  }
  .schedule ol li .date {
    padding: 20px 0;
  }
  .schedule ol {
    flex-wrap: wrap;
  }
  .schedule ol li {
    width: calc(100% / 6);
    text-align: center;
    text-indent: 0;
    text-align: center;
  }
  .schedule ol li:nth-child(7) {
    border-left: 0;
  }
  .schedule ol li:nth-last-child(1) > *,
  .schedule ol li:nth-last-child(2) > * {
    text-indent: 0;
  }
  .section .head .with-btn {
    display: block;
  }
  .section .head .with-btn .btn {
    margin-top: 10px;
  }
  .schedule ol li h4 span.year {
    text-align: center;
    width: 100%;
    top: 7px;
  }
  .schedule ol li h4 {
    padding: 20px 0 20px 0;
    font-size: 14px;
  }
  #rent .list.vertical {
    display: block;
  }
  .list li.full > .info {
    padding-left: 24px;
    padding-right: 24px;
  }
  #rent .list.vertical li .thumb {
    height: 200px;
    margin-bottom: 30px;
  }
  #rent .list.vertical li .info {
    width: initial;
    padding: 0 24px;
  }
  #rent .list li h4.category {
    display: block;
  }
  #rent .list.vertical li + li {
    margin-top: 60px;
  }
  .process {
    flex-wrap: wrap;
    margin-left: 24px;
    margin-top: 20px;
  }
  .process li {
    width: calc(100vw / 2 - 12px);
    height: calc(100vw / 2 - 12px);
    flex-shrink: 0;
    flex-grow: 0;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: -10px;
  }
  .process li h4 {
    font-size: 16px;
  }
  .process li:last-child {
  }
  .process li p {
    line-height: 1.4;
    font-size: 0.86em;
  }
  .process li:first-child {
    margin-left: -24px;
  }
  .process li h4:nth-of-type(2) {
    margin-top: 10px;
  }
  #rent .list.vertical li {
    width: initial;
  }
  .list li.full .img {
    height: 200px;
    background-position: center;
    margin-bottom: 30px;
  }
  .list.horizon li .info {
    padding-right: 10px;
  }
  .list .info .head + .list {
    margin-top: 30px;
    border-top: 1px solid var(--Gray-Dark);
  }
  .list .info .head + .list li {
    margin-bottom: 0;
    padding: 24px 0;
    border-bottom: 1px solid var(--Gray-Border);
  }
  #rent .list li.full .head p {
    width: initial;
  }
  .list li.full > .info {
    display: block;
    padding-bottom: 30px;
  }
  #rent .list .info .head + .list {
    width: initial;
  }
  #rent .list.vertical {
    margin-top: 30px;
  }
  .rental {
    padding-top: 30px;
  }
  #map {
    margin-top: 30px;
  }
  #map .section {
    padding: 30px 24px;
  }
  #map .section .head {
    line-height: 1.4;
  }
  #map .section .head h4 {
    font-size: 14px;

    margin-bottom: 10px;
  }
  #map .map-area {
    height: 300px;
  }
  #map .map-area iframe {
    margin-top: -250px !important;
  }
  .list.horizon li .date {
    display: none;
  }
  .list.horizon li {
    padding: 20px 0;
  }
  .list.horizon li.new::before {
    transform: scale(0.6);
  }
  #map .list.horizon {
    margin-top: 30px;
  }

  .footer {
    margin-top: 30px;
    padding: 30px 24px;
    background-color: var(--Gray-Pale);
  }
  .footer .in .legal {
    white-space: nowrap;
    width: 100%;
  }
  .footer .in .legal a {
    margin-right: 10px;
  }
  .footer .in .slogo {
    display: block;
    position: relative;
    margin-top: 20px;
    height: 30px;
  }
  .footer .in .slogo img {
    height: 100%;
  }
  .gnb .menu li.mirihae-menu {
    display: block;
    width: initial;
  }
  /* 모달 */
  .modal-on .modal.on {
    padding: 5px;
  }
  .modal .modal-popup .popup-content li {
    padding: 30px 20px;
  }
  .modal .modal-popup h2 {
    font-size: 12px;
  }
  .modal .modal-popup {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
  }
  .modal .modal-popup .popup-content {
    max-height: calc(100% - 50px);
  }
  .modal .btn-set a {
    line-height: 50px;
    height: 50px;
  }
  .modal .filebox label,
  .modal .filebox input {
    font-size: 12px;
  }
  .modal .no {
    padding-bottom: 10px;
  }
  .modal .btn-set a {
    height: 60px;
    line-height: 60px;
  }
  /* 서브 */
  .tabs {
    padding: 0 24px;
  }
  .tabs a {
    font-size: 20px;
    white-space: nowrap;
    margin-right: 20px;
  }
  .tabs a::after {
    border-top-width: 8px;
  }
  .sub .contents .article {
    margin: 20px 0;
  }
  .sub .contents .article .header h1 {
    font-size: 24px;
    width: initial;
    padding: 0 24px;
  }
  .sub .contents .article .header.nav {
    margin: 20px 0;
  }
  .sub .contents .article .header.nav h1 {
    font-size: 24px;
  }
  .sub .contents .article .header.nav img {
    height: 24px;
  }
  .sub .contents .article .header {
    margin: 40px 0 50px 0;
  }

  .sub .contents .images .swiper-slide {
    height: 200px;
  }
  .sub .detail .detail-contents .sect .form .guidance.split {
    display: block;
  }
  .sub .detail .detail-contents .sect .form .guidance.split > div {
    width: initial;
  }
  .sub .detail .detail-contents .sect .form .guidance.split > div .btn {
    margin-top: 10px;
  }
  .sub .detail .detail-contents .sect .form .guidance.split > div + div {
    margin-top: 20px;
    border-top: 1px solid var(--Gray-Border);
    padding-top: 20px;
  }
  .sub .detail .detail-contents .sect .noti,
  .sub .detail .detail-contents .sect .form .guidance.split > div p {
    font-size: 1em;
  }
  .sub .detail .detail-contents .sect .noti p + p {
    margin-top: 3px;
  }
  .sub .detail .detail-contents .item {
    margin: 10px 20px 20px 20px;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .sub .detail .detail-contents .item .thumb {
    width: 100px;
    height: 100px;
  }
  .sub .detail .detail-contents .item .infos {
    padding-left: 20px;
    padding-right: 10px;
  }
  .sub .detail .detail-contents .item .infos h4 {
    margin-bottom: 3px;
    font-size: 14px;
  }
  .sub .detail .detail-contents .item .infos h3 {
    margin-bottom: 3px;
  }
  .sub .detail .detail-contents .item .infos p {
    font-size: 12px;
  }
  .accordion th,
  .accordion td {
    font-size: 12px;
    word-break: break-all;
    word-wrap: break-word;
    padding: 10px;
  }
  .accordion > li {
    padding: 0 15px;
  }
  .accordion > li h2 a {
    padding: 20px 0;
  }
  .accordion > li h2 {
    font-size: 14px;
  }
  select,
  input[type="text"],
  input[type="password"],
  input[type="number"] {
    padding: 0 20px;
    font-size: 14px;
  }
  .sub .detail .reserv-ui {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    top: initial;
    z-index: 30;
  }
  .sub .detail .pay-overview {
    border-bottom: var(--spector);
    margin-bottom: 30px;
  }
  .sub .detail .pay-overview .reserv-ui {
    position: static;
    border: none;
  }
  .sub .detail .pay-overview .reserv-ui dl {
    border: none;
    border-top: var(--spector);
  }
  .sub .detail .pay-overview .reserv-ui dl + dl {
    border-top: 1px dashed var(--Gray-Border);
    border-bottom: 0;
  }

  .sub .detail .pay-overview .reserv-ui dl.total-payment {
    border-top: var(--spector);
  }
  .swiper-container.images .swiper-pagination-progressbar {
    margin: 24px;
    width: initial;
  }
  .sub .detail .reserv-ui a.submit,
  .sub .detail .reserv-ui a.pay {
    font-size: 16px;
    font-weight: bold;
    border-radius: 0;
    border-radius: 0;
  }
  .ui-fix .sub .detail .reserv-ui {
    top: initial;
    right: initial;
    display: flex;
    flex-direction: column;
    bottom: 0;
    border: none;
    border-radius: 0;
  }
  .ui-fix .sub .detail .reserv-ui input,
  .ui-fix .sub .detail .reserv-ui select {
    font-size: 16px;
  }
  .sub .detail .reserv-ui .choose {
    display: none;
    background: #fff;
  }
  .ui-fix .sub .detail .reserv-ui .choose {
    display: none;
    background-color: #fff;
    position: relative;
    z-index: 50;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    pointer-events: all;
  }
  .paying {
    overflow: hidden;
  }
  .paying .wrap .reserv-ui::before {
    position: fixed;
    /* content: ""; */
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
  }
  .paying .sub .detail .reserv-ui dl.selecting .selector {
    background-image: url(../images/icon/close.svg);
  }
  .paying .sub .detail .reserv-ui dl.selecting {
    margin: -1px 0;
    border-left: 0;
    border-right: 0;
    /* background-color: var(--Gray-Pale); */
  }
  .paying .sub .detail .reserv-ui {
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    z-index: 40;
  }
  .sub .detail .reserv-ui dd .selection {
    font-size: 16px;
    width: initial;
    position: static;
    border: none;
    box-shadow: none;
    height: 0;
    overflow: hidden;
  }
  .sub .detail .reserv-ui dl.selecting .selection {
    padding-top: 20px;
    height: auto;
    background: transparent;
    box-shadow: none;
  }
  .ui-widget.ui-widget-content {
    margin-left: 24px;
    margin-top: 10px;
    z-index: 120 !important;
    width: calc(100vw - 48px);
    top: 10px !important;
    position: fixed !important;
  }
  .cal-huge.ui-widget.ui-widget-content {
    width: 100%;
    left: 0;
    height: calc(100% - 107px);
    margin-left: 0;
    margin-top: 0;
    border-radius: 0;
    top: 49px !important;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table tr td.ui-state-disabled {
    display: none;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table tr td.ui-state-disabled.event-day {
    display: block;
  }
  .cal-huge.ui-widget.ui-widget-content.ui-datepicker .ui-datepicker-title {
    line-height: 36px;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body {
    max-height: calc(100% - 110px);
    margin: 0;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table tr {
    display: block;
    width: 100%;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table tr td {
    display: block;
    width: 100%;
    border: 0;
    border-top: 1px solid var(--Gray-Border);
    border-bottom: 8px solid var(--Gray-Pale);
    padding: 10px;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table td:nth-child(1) a:first-of-type:after {
    content: "일요일";
    margin-left: 5px;
    display: inline-block;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table td:nth-child(2) a:first-of-type:after {
    content: "월요일";
    margin-left: 5px;
    display: inline-block;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table td:nth-child(3) a:first-of-type:after {
    content: "화요일";
    margin-left: 5px;
    display: inline-block;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table td:nth-child(4) a:first-of-type:after {
    content: "수요일";
    margin-left: 5px;
    display: inline-block;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table td:nth-child(5) a:first-of-type:after {
    content: "목요일";
    margin-left: 5px;
    display: inline-block;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table td:nth-child(6) a:first-of-type:after {
    content: "금요일";
    margin-left: 5px;
    display: inline-block;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table td:nth-child(7) a:first-of-type:after {
    content: "토요일";
    margin-left: 5px;
    display: inline-block;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table tr th {
    display: none;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table tr td .times {
    display: flex;
    flex-wrap: wrap;
  }
  .cal-huge.ui-widget.ui-widget-content .ui-body table tr td .times li {
    width: calc(50% - 10px);
  }
  .sub .detail .detail-contents .sect .noti p {
    font-size: 0.88em;
  }
  .sub .detail .reserv-ui dl.head::before {
    content: "";
    height: 30px;
    display: block;
    background: url(../images/icon/select.svg) no-repeat center center;
    opacity: 0.4;
    background-size: auto 14px;
    margin-top: -10px;
  }
  .paying .gnb {
    z-index: 3;
  }
  .ui-datepicker .ui-datepicker-title {
    font-size: 16px;
    margin: 0;
    line-height: inherit;
  }
  .sub .detail .reserv-ui input,
  .sub .detail .reserv-ui select {
    font-size: 16px;
  }
  .sub .detail .reserv-ui input:disabled,
  .sub .detail .reserv-ui input .select:disabled {
    color: var(--Gray-Dark);
  }
  .sub .detail .reserv-ui .choose .total-payment dt,
  .sub .detail .reserv-ui .choose .total-payment .total {
    display: none;
  }
  .sub .detail .reserv-ui .choose .total-payment .total.pay {
    display: block;
    border: none;
    margin: 0;
    font-size: 16px;
    padding-top: 0;
    padding-bottom: 5px;
  }
  .sub .detail .detail-contents {
    width: initial;
  }
  .sub.reservation {
    padding-bottom: 68px;
  }
  .sub .detail .detail-contents .overview {
    height: auto;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 20px 30px 24px;
  }
  .sub .detail .detail-contents .overview h6 {
    font-size: 12px;
  }
  .sub .detail .detail-contents .overview p {
    font-size: 18px;
  }
  .option {
    border-bottom: var(--spector);
    border-top: 0;
  }
  .sub .detail .detail-contents .sect .option {
    border: 0;
    margin-bottom: 0;
    margin-top: 20px;
  }
  .option .reserv-day {
    display: inline-block;
  }
  .sub .detail .detail-contents .sect .option li {
    margin: 0;
  }
  .option li h5 span.bk::after {
    margin-right: 8px;
    padding-right: 8px;
  }
  .option li {
    display: block;
    line-height: 1.8;
    padding: 16px 0;
    margin: 0 24px;
    height: auto;
  }
  .option::before {
  }
  .option li:last-child {
    border: none;
  }
  .sub .detail .detail-contents .sect,
  .sub .detail .detail-contents .sect .option,
  .sub .detail .detail-contents,
  .sub .detail,
  .sub {
    overflow-x: hidden;
  }
  .sub .detail .detail-contents .sub-detail {
  }
  .sub .detail .detail-contents .overview.small {
    padding: 0;
    margin: 0;
  }
  .sub .detail .detail-contents .sect .map iframe {
    height: calc(170vw - 48px);
    margin-top: -50px;
  }
  .sub .detail .detail-contents .sect {
    margin-bottom: 30px;
    padding: 0 24px 24px 24px;
    border-bottom: var(--spector);
  }
  .sub .detail .detail-contents .sect .split {
    flex-direction: column;
    gap: 30px;
  }
  .sub .detail .detail-contents .sect.shop-info h4 {
    line-height: 1.3;
    width: 60%;
  }
  .sub .detail .detail-contents .sect.shop-info h4 + h4 {
    margin-top: 5px;
  }
  .sub .detail .detail-contents .sect:last-child {
    margin-bottom: 20px;
    border: none;
  }
  .option li dl.price {
    font-size: 14px;
    justify-content: flex-start;
    margin-top: 5px;
  }

  .sub .detail .detail-contents .sect table {
    display: block;
    border-top: 0;
  }
  .sub .detail .detail-contents .sect table tr {
    display: block;
  }
  .sub .detail .detail-contents .sect table tr th {
    border: none;
    padding-bottom: 0;
  }
  .sub .detail .detail-contents .sect table tr:first-child th {
    padding-top: 0;
  }
  .sub .detail .detail-contents .sect > .overview-mm tr:first-child {
    border-top: 1px solid var(--Gray-Dark);
  }
  .sub .detail .detail-contents .sect > .overview-mm tr:first-child th {
    padding-top: 20px;
  }
  .sub .detail .detail-contents .sect table tr td {
    padding-top: 0;
  }
  .sub .detail .detail-contents .sect table tr th,
  .sub .detail .detail-contents .sect table tr td {
    display: block;
    border: none;
    font-size: 1em;
  }
  .sub .detail .detail-contents .sect .overview-mm tr,
  .sub .detail .detail-contents .sect table tr {
    border-bottom: 1px solid var(--Gray-Border);
  }
  .overview-mm h6 {
    font-size: 11px;
  }
  .sub .detail .detail-contents .sect .overview-mm p {
    font-size: 1.1em;
  }
  .sub .detail .detail-contents .sect .overview-mm p.ext {
    font-size: 0.8em;
    margin-top: 0;
  }

  .sub .detail .detail-contents .sect .overview-mm tbody {
    display: block;
  }
  .sub .detail .detail-contents .sect .overview-mm tr {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    position: relative;
  }
  .sub .detail .detail-contents .sect .overview-mm tr th {
    width: 100%;
  }
  .sub .detail .detail-contents .sect .overview-mm tr td {
  }
  .sub .detail .detail-contents .sect .overview-mm tr td:last-child {
    display: block;
    position: absolute;
    display: flex;
    align-items: center;
    right: 0;
    top: 20px;
  }
  .sub .detail .detail-contents .sect .overview-mm tr td:last-child * {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--Gray-Mid);
  }
  .sub .detail .detail-contents .sect .overview-mm tr td:last-child h6 {
    margin-right: 3px;
  }
  .sub .detail .detail-contents table tr td p + p {
    margin-top: 5px;
  }
  .sub .detail .detail-contents table tr td.with-btn {
    height: auto;
    padding-bottom: 20px;
  }
  .sub .detail .detail-contents table tr td.with-btn a.btn {
    margin-top: -10px;
  }
  .sub .detail .detail-contents table tr th {
    margin-bottom: 10px;
  }
  .voucher table th,
  .voucher table td {
    font-size: 12px;
  }
  .sub.complete .detail .voucher table th {
    padding-right: 0;
  }
  .sub.complete .detail .voucher table th::before {
    display: none;
  }
  .sub .detail .detail-contents .sect .noti.with-btn {
    display: block;
  }
  .sub .detail .detail-contents .sect .noti.with-btn .qr {
    text-align: center;
    margin-bottom: 20px;
  }
  .sub .detail .detail-contents .sect .noti.with-btn .qr img {
    height: auto;
    width: 40%;
  }
  .sub .detail .detail-contents .sect .noti .print {
    margin-top: 15px;
    flex-direction: row;
    width: initial;
    height: initial;
    background: none;
    border: 1px solid var(--Gray-Border);
    border-radius: 5px;
    padding: 15px 0;
  }
  .sub .detail .detail-contents .sect .noti .print img {
    height: 18px;
    margin-right: 5px;
    margin-bottom: 0;
  }
  .sub .detail .detail-contents .item::before {
    width: 80px;
    height: 80px;
    top: 10px;
    margin-top: 0;
    right: initial;
    left: 10px;
    mix-blend-mode: difference;
  }
  /* 플로팅 */
  .floating {
    position: fixed;
    width: 50%;
    height: auto;
    background-color: transparent;
    top: auto;
    left: auto;
    padding: 0;
    border: 0;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.15);
    bottom: 0;
    right: -100%;
    cursor: pointer;
    z-index: 280;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px;
  }
  .floating.active {
    right: 0;
    /* background-color: rgba(0, 0, 0, 0.3); */
    transition: 0.6s;
  }
  .modal .modal-popup .popup-content .descript .img-set img {
    margin: 0 3px;
    height: auto;
    max-width: calc(33.3% - 6px);
  }
  .floating .icon {
    background: no-repeat top center;
    height: 36px;
    width: 36px;
    z-index: -1;
    background-size: auto 100%;
    display: inline-block;
    float: right;
  }
  .floating .title {
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    color: #fff;
    display: inline-block;
  }
  .floating h1 {
  }
  .floating p {
    font-size: 10px;
    line-height: 1.4;
    color: var(--Gray-Mid);
    white-space: normal;
    color: var(--Gray-Light);
  }
  .floating p span {
    color: var(--Main-light);
  }
  .scrolled .main .floating,
  .scrolled .sub .floating {
    top: auto;
    position: fixed;
  }
  .main .floating {
    top: auto;
  }
  .sub .floating {
    top: auto;
  }

  .floating + .gnb .menu .menus .menu-n li.ch {
    bottom: 120px;
  }
  .sub.my .list.horizon li {
    display: block;
  }
  .sub.my .list.horizon li .thumb + .info {
    margin-left: 0;
  }
  .sub.my .list.horizon li .thumb {
    margin-bottom: 20px;
    width: initial;
    height: 150px;
  }
  .my .sect.schedule > h3 {
    font-size: 18px;
    background-size: auto 16px;
  }
  .list.horizon li .btnset {
    margin-top: 30px;
    gap: 40px;
  }
  .list.horizon li .btnset a {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .list.horizon li .btnset .icon {
    margin-bottom: 0;
  }
  .list.horizon li .btnset .icon img {
    max-height: 18px;
    max-width: 20px;
  }
  .sub.my .detail .detail-contents .sect.schedule {
    margin-bottom: 0;
  }
  .sub.my .list.horizon li {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .my .sect.schedule h3 span {
    padding: 5px 12px;
  }
  .sub.my .contents .article .header p {
    padding: 0 24px;
  }
  .sub.my .contents .article .header p + p {
    margin-top: 5px;
  }
  .sub.my .detail .detail-contents {
    border-top: var(--spector);
  }
  .sub.reservation.my {
    padding-bottom: 0;
  }
  .board {
    padding: 0 24px;
  }
  .board img {
    margin: 0 -24px;
    max-width: calc(100% + 48px);
  }
  .list .full-split .info {
    flex-direction: column;
  }
  .list .full-split .info > div {
    width: 100%;
  }
  .list .full-split .info .head,
  .list .full-split .info .subscr,
  .list .full-split .info .ul {
    padding: 0 24px;
  }
  .list .full-split .info .ul {
    margin-top: 30px;
  }
  .list.all > li + li {
    margin-top: 30px;
  }
  .list .full-split .info .subscr > p {
    font-size: 0.9em;
  }
  .list .full-split .info .ul > p {
    font-size: 0.8em;
  }
  .list .full-split .info .head {
    margin-bottom: 10px;
  }
  .list .full-split .info .btns {
    margin-top: 20px;
    gap: 6px;
  }
  .list .full-split .info .btns .btn {
    font-size: 0.9em;
    padding: 12px 24px;
  }
  .list .full-split .info .btns .btn.on {
    font-size: 0;
  }
  .list .full-split .swiper-pagination {
    margin: 20px;
    width: initial;
  }
  .facility .swiper-slide {
    height: 60vw;
  }
  .price-popup {
    left: 0;
    width: 100%;
  }
  .price-popup .title {
    padding: 20px;
    padding-right: 10px;
  }
  .price-popup .price-table {
    padding: 0;
  }
  .price-popup .price-table .sect > p,
  .price-popup .price-table .sect > h3 {
    padding: 0 24px;
  }
  .price-popup .price-table .sect .overview-mm td p {
    font-size: 1em;
  }
  .price-popup .price-table .sect .overview-mm td h6 {
    font-size: 0.7em;
  }
  .price-popup .price-table .sect .overview-mm th h5 {
    font-size: 0.7em;
    padding-left: 10px;
  }
  .price-popup .price-table {
    gap: 0;
  }
  .price-popup .price-table .sect + .sect {
    border-top: 8px solid var(--Gray-Pale);
    padding-top: 30px;
  }
  .price-popup .price-table .sect > p {
    font-size: 0.85em;
  }
  .price-popup .price-table .sect .overview-mm td p.ext {
    font-size: 0.7em;
  }
  .sub .detail .detail-contents .reserv-ui {
    display: block;
  }
  .option li p {
    font-size: 0.85em;
  }
  .sub .detail .detail-contents .sect h3 {
    padding-bottom: 10px;
  }
  .notice-area li {
    padding: 20px;
  }
  .sub .detail .detail-contents .sect.notice-area {
    padding: 0;
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
    border: 0;
  }

  .notice-area {
    overflow: hidden;
  }
  .sub .detail .detail-contents .sect.notice-area .swiper-nav .swiper-pagination-fraction {
    display: none;
  }
  .sub .detail .detail-contents .sect.notice-area .swiper-nav {
    gap: 5px;
    top: 20px;
    height: 18px;
    right: 10px;
  }
}


.descript {font-size: 12px; color: #6F737A; margin-top: 20px; font-weight: normal;}

/* 모달팝업 */
.modal {position: fixed; width: 100%; height: 100%;  display: flex; align-items: center; justify-content: center; z-index: 200; flex-direction: column; overflow: hidden; height: 0;  }
.modal .dimed {z-index: 1; position: absolute; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); transition: .4s; opacity: 0; left:0px;top:0px}
.modal .modal-popup { max-width: 90%; max-height: 90%; overflow: hidden; border-radius: 20px;  transition: .2s; z-index: 2; box-shadow: 60px 60px 90px rgba(0,0,0,0.2);}
.modal .modal-popup .popup-content{overflow-y: auto; max-height: calc(100% - 70px); display: flex; flex-direction: column; background-color: #fff; border-radius: 20px 20px 0 0; background-color: #fff;}
.modal .modal-popup .popup-content li {padding: 30px; border-bottom: 1px solid #ddd;}
.modal .modal-popup .popup-content li:last-of-type {border-bottom: 0;}
.modal .modal-popup .popup-content .descript .img-set {overflow: hidden; margin: 15px -10px;}
.modal .modal-popup .popup-content .descript .img-set img {max-width:calc(33.3% - 20px);margin: 0 10px; float: left; height: 158px;}
.modal .modal-popup h1 {font-size: 1.75em; margin-bottom: 10px;}
.modal .modal-popup.cert h1.certificated {color: #1C61A6; display: flex; align-items: center;}
.modal .modal-popup.cert h1.certificated::after {content: "인증완료"; color: #fff; font-size: .5em; background-color: #1C61A6; border-radius: 5px; padding: 9px 12px; display: inline-block; margin-left: 10px; vertical-align: middle; line-height: 1; animation-name: certok; animation-duration: 1s; animation-iteration-count: infinite; animation-timing-function:linear; transform-origin: center;}
@keyframes certok { 0% {background-color: #1C61A6; } 100% { background-color: #1DA3EC; } 100% { background-color: #1C61A6; }}


/* 플로팅 */
.floating {position: absolute;width: 140px;background-color: #fff;top: 700px;left: calc(56% + 1024px / 2);padding: 20px; border:1px solid #d5dbe0;box-shadow: 20px 20px 30px rgba(0,0,0,0.15);bottom: auto;cursor: pointer;}
.floating .icon {background-size: 50% auto; background: no-repeat top center; height: 90px;}
.floating.online-cert .icon {background-image: url(https://cache.mirihae.com/camping/goldsilver/images/img/online-cert-yj.svg);}
.floating .title {margin-bottom: 5px;}
.floating h1 {font-size: 13px; line-height: 1.4;}
.floating p {font-size: 10px; line-height: 1.4; color: #6F737A;}
.floating p span {color: #1C61A6;}
.scrolled .main .floating, .scrolled .sub .floating {top:110px;position: fixed;transition: 0;}
.main .floating {top: 820px;}
.sub .floating {top: 330px;}


.floating.online-cert .icon{background-image:url(/reservation/camping/goldsilver/images/img/online-cert-yj.svg)}

.modal-popup.cert .subList table td, .modal-popup.cert .subList table th{word-break: keep-all;padding:0px 5px}
.subList + .subList{margin-top:20px}
.modal .modal-popup .popup-content td > ul.slist{margin:5px 0px}
.modal .modal-popup .popup-content td > ul.slist > li{position:relative;padding:0px;padding-left:10px;border-bottom: 0px;}
.modal .modal-popup .popup-content td > ul.slist > li + li{margin-top:2px}
.modal .modal-popup .popup-content td > ul.slist > li:before{content:'-';position:absolute;top:0px;left:0px}