:root {
  --main-color: #FE0000;
  --bg-color: #F9F9F9;
  --black-color: #3A3A3A;
  --sub-txt-color-01: #555555;
  --sub-txt-color-02: #777777;
  --border-color: #D9D9D9;
}
* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
*::-webkit-scrollbar-thumb {
  height: 10%;
  background: var(--main-color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, .1);
}
html {
  scroll-behavior : smooth;
}
body {
  font-family: "Pretendard", "Open Sans";
  position: relative;
}

/*Scorll Down*/
.scroll-downs {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-downs p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 300;
}
.mousey {
  width: 2px;
  padding: 2px 6px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  opacity: 0.75;
  box-sizing: content-box;
  margin: 0 auto 8px;
}
.scroller {
  width: 2px;
  height: 6px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0;}
}

/*Pagination*/
.pagination {
  position: relative;
  margin-top: 48px;
}
.pagination.board {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination.mt-60 {
  margin-top: 60px;
}
.pagination.mt-24 {
  margin-top: 24px;
}
.pagination.mt-12 {
  margin-top: 12px;
}
.pagination > a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination li {
  width: 36px;
  height: 36px;
}
.pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--black-color);
}
.pagination li a:not(.arrow):hover {
  color: var(--main-color);
  text-decoration: underline;
}
.pagination li.on {
  color: var(--main-color) !important;
  text-decoration: underline;
}
.pagination li.on a {
  color: var(--main-color) !important;
}
.pagination li a img {
  height: 10px;
  object-fit: cover;
}

/*공통*/
.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.wrap-sm {
    width: 100%;
    max-width: 800px;
    margin: 0 auto; 
}
.wrap-xs {
    width: 100%;
    max-width: 700px;
    margin: 0 auto; 
}
.bg-wrap {
    width: 100%;
    padding: 100px 0;
    background-color: var(--bg-color);
}
.main-gap {
    margin-top: 100px;
}
.floating-btn {
    position: fixed;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.floating-btn > span, .floating-btn > a {
    width: 70px;
    height: 70px;
    flex-direction: column;
    gap: 6px;
}
.floating-btn > span span, .floating-btn > a span {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.floating-btn > a span {
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .6;
    }
}
.blog-link {
    width: 50px;
    height: 50px;
    border-radius: 3px;
    background-color: #42D31A;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
}
.blog-link img {
    width: 24px;
}
.top-btn {
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  background-color: #000;
  cursor: pointer;
  z-index: 98;
}
.top-btn img {
  width: 24px;
}
main {
  min-height: calc(100dvh - 100px);
}

/*header*/

.ham {
    display: none;
}
#ham_btn {
    display: none;
}
#ham_btn + label {
    position: relative;
    display: block;
    width: 36px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}
#ham_btn + label > span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black-color);
    border-radius: 5px;
    transition: all 300ms;
}
#ham_btn + label > span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}
#ham_btn + label > span:nth-child(3) {
    bottom: 0;
    background-color: var(--main-color) !important;
}


.header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #fff;
}
.header-wrap::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    background-color: #fff;
}
.header-wrap:hover::after {
    height: 130px;
}
.header-wrap.main {
    background-color: transparent;
}
.header-wrap.on {
    border-bottom: 1px solid var(--border-color);
    background-color: #fff !important;
}
.header-wrap:hover {
    border-bottom: 1px solid var(--border-color);
    background-color: #fff !important;
}
.header-wrap.on .gnb > li > a {
    color: var(--black-color) !important;
}
.header-wrap:hover .gnb > li > a {
    color: var(--black-color) !important;
}
.header-wrap.on .gnb > li > a:hover {
    color: var(--main-color) !important;
}
.header-wrap:hover .gnb > li:hover > a {
    color: var(--main-color) !important;
}
.header-wrap:hover {
    color: var(--main-color) !important;
}
.header-wrap.on .logo-box {
    color: var(--black-color) !important;
}
.header-wrap:hover .logo-box {
    color: var(--black-color) !important;
}
.header-wrap.on .tel-box a {
    color: var(--sub-txt-color-01) !important;
    border: 1px solid var(--border-color) !important;
}
.header-wrap:hover .tel-box a {
    color: var(--sub-txt-color-01) !important;
    border: 1px solid var(--border-color) !important;
}
.header-wrap .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
}
.header-wrap.main .logo-box {
    color: #fff;
}
.logo-box .img-box {
    display: flex;
    align-items: center;
    gap: 4px;
}
.logo-box .img-box .box {
    width: 114px;
    height: 114px;
}
.logo-box .img-box .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gnb-wrap {
    display: flex;
    height: 100%;
}
.gnb-box {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
.gnb {
    height: 100%;
    display: flex;
    align-items: center;
}
.header-wrap.main .gnb > li > a {
    color: #fff;
}
.gnb > li {
    width: 90px;
    height: 100%;
}
.gnb > li > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-weight: 500;
    color: var(--black-color);
}
.header-wrap.main .gnb > li > a:hover {
    color: var(--main-color);
}
.gnb > li > a:hover {
    color: var(--main-color);
}
.tel-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.tel-box a {
    width: 120px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: transparent;
    border: 1px solid var(--border-color);
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-01);
}
.header-wrap.main .tel-box a {
    color: #fff;
    border: 1px solid #fff;
}
.tel-box a:hover {
     background-color: var(--bg-color);
}
.header-wrap.main .tel-box a:hover {
    background-color: transparent;
    color: var(--main-color);
}

.header-wrap:hover .sub-gnb {
    display: block;
}
.sub-gnb {
    display: none;
}
.sub-gnb > li {
    text-align: center;
}
.sub-gnb > li > a {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: var(--sub-txt-color-01);
    text-align: center;
}
.sub-gnb > li:not(:last-child) {
    margin-bottom: 12px;
}
.sub-gnb > li > a:hover {
    color: var(--main-color) !important;
}

/*footer*/
footer {
    margin-top: 100px;
}
.footer-wrap {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    padding: 36px 0;
}
.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-wrap .tp {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
}
.fnb {
    display: flex;
    align-items: center;
    gap: 24px;
}
.fnb li a {
    font-weight: 500;
    color: var(--black-color);
}
.fnb li a:hover {
    color: var(--main-color);
}
.map-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 200px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6px;
    color: var(--black-color);
}
.map-link:hover {
    color: var(--sub-txt-color-02);
}
.map-link:hover > img {
    transform: rotate(-45deg);
}
.map-link > img {
    width: 20px;
    transition: .2s ease-in-out;
}

.footer-wrap .bt {
    padding-top: 36px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}
.footer-wrap .bt .info {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-wrap .bt .info > p {
    color: var(--black-color);
}
.footer-wrap .bt .info .info-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}
.footer-wrap .bt .info .info-box span {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.footer-wrap .bt .info .info-box span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: var(--border-color);
    margin: 0 0 0 12px;
}
.footer-wrap .bt .copy {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}

/*메인*/
.main-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 450px;
    overflow: hidden;
    margin-bottom: 16px;
}
.main-banner .bg {
    width: 100%;
    height: 100%;
    position: relative;
}
.main-banner .bg::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.main-banner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-banner .content {
    width: 100%;
    position: absolute;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-top: 80px;
}
.main-banner .content .tit {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}
.main-banner .content .txt {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 16px;
    white-space: pre-line;
    word-break: keep-all;
}

.main-tit {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 16px;
}
.main-tit > a:first-child {
    font-size: 28px;
    font-weight: 600;
    color: var(--black-color);
}
.main-tit p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
}
.main-product {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.main-product .item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.main-product .item .img-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 4px;
}
.main-product .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-in-out;
    scale: 1;
}
.main-product .item:hover .img-box img {
        transition: .2s ease-in-out;
    scale: 1.1;
}
.main-product .item .cate {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.main-product .item .name {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
    margin-bottom: 8px;
}
.main-product .item .box {
    display: flex;
    gap: 12px;
}
.main-product .item .box span {
    font-size: 14px;
    line-height: 1.3;
    display: inline-block;
}
.main-product .item .box span.dong-name {
    display: flex;
    align-items: center;
    color: var(--black-color) !important;
    font-weight: 700 !important;
}
.main-product .item .box span.dong-name::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--border-color);
    margin: 0 8px 0 0;
}
.main-product .item .box span:first-child {
    font-weight: 500;
    color: var(--black-color);
    white-space: nowrap;
}
.main-product .item .box span:nth-child(2) {
    font-weight: 400;
    color: var(--sub-txt-color-02);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.main-product .item .box span:nth-child(2) b {
    font-weight: 500;
    color: var(--black-color);
    white-space: nowrap;
}
.main-product .item .box span.mc-txt {
    color: var(--main-color);
}
.main-product .item .basic-info {
    font-size: 14px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    display: flex;
    align-items: center;
}
.main-product .item .basic-info span {
    display: flex;
    align-items: center;
}
.main-product .item .basic-info span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--border-color);
    margin: 0 12px;
}

.view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
}
.view-more a {
    background-color: var(--main-color);
    border-radius: 100px;
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
.view-more a:hover {
    opacity: .8;
}
.main-type {
    margin-top: 100px;
}

.flex-box {
    display: flex;
    gap: 4px;
}
.flex-box a {
    height: 550px;
    display: block;
    flex: 1;
    overflow: hidden;
    position: relative;
    transition: .3s ease-in-out;
}
.flex-box a:hover {
    flex: 2.5;
    transition: .3s ease-in-out;
}
.flex-box a::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
.flex-box a .img-box {
    width: 100%;
    height: 100%;
}
.flex-box a .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flex-box a .txt {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.main-news {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.main-news-list {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--black-color);
    border-bottom: 2px solid var(--black-color);
}
.main-news-list.mw-100 {
    max-width: 100%;
}
.main-news-list li.empty {
    text-align: center;
}
.main-news-list li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.main-news-list li {
    padding: 36px 12px;
}
.main-news-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.main-news-list li a .tit {
    font-size: 18px;
    font-weight: 400;
    color: var(--black-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.main-news-list li a:hover .tit {
    opacity: .8;
}
.main-news-list li a .category {
    font-weight: 600;
    color: var(--main-color);
    margin-right: 12px;
}
.main-news-list li a .date {
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}
.main-news-list li a .date img {
    width: 14px;
}

.diary-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
}
.diary-list .item.empty {
    grid-column: 1 / 4;
    text-align: center;
    padding: 48px 16px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.diary-list .item {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}
.diary-list .item .img-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #eee;
}
.diary-list .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-in-out;
}
.diary-list .item:hover .img-box img {
    scale: 1.1;
    transition: .2s ease-in-out;
}
.diary-list .item .tit {
    margin-bottom: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
}
.diary-list .item .date {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}


.sub-banner {
    margin-top: 124px;
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}
.sub-banner .img-box {
    width: 100%;
    height: 100%;
}
.sub-banner .img-box::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.sub-banner .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sub-banner .txt {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    margin-top: 48px;
}
.tab-menu a {
    width: 150px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--sub-txt-color-02);
    padding-bottom: 8px;
}
.tab-menu a.on {
    color: var(--main-color);
    padding-bottom: 6px;
    border-bottom: 2px solid var(--main-color);
}


.page-area {
    padding-top: 60px;
}
.about-area {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.about-area .item {
    display: flex;
    align-items: center;
    gap: 48px;
}
.about-area .item.reverse {
    flex-direction: row-reverse;
}
.about-area .item .img-box {
    flex: 1;
}
.about-area .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about-area .item .txt {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-area .item .txt p:first-child {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    line-height: 1.3;
}
.about-area .item .txt p:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
    line-height: 1.3;
    word-break: keep-all;
}

.sign {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sign img {
    width: 36px;
}

.map-area {
    display: flex;
    align-items: center;
}
.map-area .map-box {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
}
.map-area .map-box::after {
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    background-color: var(--border-color);
    margin: 0 24px;
}
.map-area .map-box .root_daum_roughmap {
    width: 100% !important;
    height: 100% !important;
}
.root_daum_roughmap .wrap_map {
    height: 100% !important;
}

.map-area .map-info {
    flex: 1;
}
.map-area .map-info > p {
    font-size: 24px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 12px;
}
.map-area .map-info .dt {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.map-area .map-info .dt p {
    font-size: 16px;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.map-area .map-info .kakao-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: var(--black-color);
}
.map-area .map-info .kakao-link img {
    width: 16px;
    transition: .2s ease-in-out;
}
.map-area .map-info:hover .kakao-link img {
    transform: rotate(-45deg);
    transition: .2s ease-in-out;
}

.search-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}
.search-box form {
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-box select {
    width: 150px;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    color: var(--black-color);
    border: 1px solid var(--border-color);
    margin-right: 6px;
}
.search-box input {
    width: 250px;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    color: var(--black-color);
    border: 1px solid var(--border-color);
}
.search-box button {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
}
.search-box button img {
    width: 20px;
}
.view-area {
    border-top: 2px solid var(--black-color);
    border-bottom: 1px solid var(--border-color);
}
.view-area .tit-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}
.view-area .tit-box .tit {
    font-size: 24px;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.3;
}
.view-area .tit-box .info {
    display: flex;
    align-items: center;
}
.view-area .tit-box .info span {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--sub-txt-color-02);
}
.view-area .tit-box .info span:first-child::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: var(--border-color);
    margin: 0 12px;
}

.editor-area {
    padding: 48px 24px;
    min-height: 250px;
    white-space: pre-line;
    line-height: 1.3;
}

.type-area {
    position: relative;
}
.sticky-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    margin-bottom: 48px;
    position: sticky;
    top: 100px;
    background-color: #fff;
}
.sticky-tab a {
    width: 200px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    color: var(--sub-txt-color-01);
}
.sticky-tab a:hover {
    background-color: var(--bg-color);
}

.content-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.content-list .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.content-list .item .tit {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
}
.content-list .item .tit.lg {
    font-size: 24px;
    font-weight: 500;
    color: var(--main-color);
    gap: 4px;
}
.content-list .item .tit.lg span {
    font-size: 16px;
}
.content-list .item .tit::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--main-color);
    display: inline-block;
    margin-right: 6px;
}
.content-list .item .txt-box {
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--sub-txt-color-01);
    line-height: 1.3;
}

.table-box {
    width: 100%;
}
.table-box table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border-color);
}
.table-box table.border-thick {
    border: 2px solid var(--black-color) !important;
}
.table-box table.border-thick th {
    border: 2px solid var(--black-color) !important;
}
.table-box table.border-thick tr {
    border: 2px solid var(--black-color) !important;
}
.table-box table.border-thick td {
    border: 2px solid var(--black-color) !important;
}
.table-box table th, .table-box table td {
    border: 1px solid var(--border-color);
    vertical-align: middle;
    padding: 12px;
    font-size: 14px;
    line-height: 1.3;
    word-break: keep-all;
}
.table-box table tr {
    border-bottom: 1px solid red;
}
.table-box.center table {
    border: none;
    border-top: 2px solid var(--black-color);
    border-bottom: 2px solid var(--black-color);
}
.table-box.center table tr {
    border-bottom: 1px solid var(--border-color);
}
.table-box.center table th, .table-box.center table td {
    text-align: center;
    cursor: pointer;
    border: none;
}
.table-box table th {
    text-align: center;
    font-weight: 500;
    color: var(--sub-txt-color-01);
    background-color: var(--bg-color);
    width: 120px;
}
.table-box table td {
    text-align: left;
    font-weight: 400;
    color: var(--sub-txt-color-02);
}
.table-box table td.empty {
    cursor: auto !important;
}
.table-box table td.mc-txt {
    color: var(--main-color);
}
.table-box table td.lg {
    font-size: 16px;
}

.category-tab {
    padding-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 36px;
    margin-bottom: 48px;
}
.category-tab .item {
    display: flex;
    gap: 48px;
}
.category-tab .item .tit {
    font-weight: 500;
    color: var(--sub-txt-color-01);
    white-space: nowrap;
}
.category-tab .item .detail {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 0;
}
.category-tab .item .detail a {
    display: flex;
    align-items: center;
    color: var(--sub-txt-color-02);
}
.category-tab .item .detail a.on {
    color: var(--main-color);
}
.category-tab .item .detail a:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 14px;
    display: inline-block;
    background-color: var(--border-color);
    margin: 0 24px;
}

.swiper-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.gallery-slider .swiper-slide {
  position: relative;
}
.gallery-slider .swiper-slide a {
  position: relative;
}
.gallery-slider .swiper-slide .img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border-color);
}
.gallery-slider .swiper-slide .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slider .pager {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  width: 65px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.gallery-slider .pager .swiper-pagination-total {
  color: #bbb;
}

.gallery-thumb-slider {
  overflow: hidden;
  margin-bottom: 24px;
}
.gallery-thumb-slider .swiper-slide .img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-thumb-slider .swiper-slide .img-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  overflow: hidden;
}
.gallery-thumb-slider .swiper-slide.swiper-slide-thumb-active .img-box::after {
  background-color: rgba(0, 0, 0, 0.0);
}
.gallery-thumb-slider .swiper-slide .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.product-list {
    border-top: 2px solid var(--black-color);
    border-bottom: 2px solid var(--black-color);
}
.product-list li.empty {
    padding: 36px 12px;
    text-align: center;
    color: var(--black-color);
}

.blue-badge {
    display: inline-block;
    padding: 2px 4px;
    background-color: #5293c9;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    border-radius: 3px;
}
.red-badge {
    display: inline-block;
    padding: 2px 4px;
    background-color: var(--main-color);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    border-radius: 3px;
}
.orange-badge {
    display: inline-block;
    padding: 2px;
    background-color: #f8b153;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    border-radius: 3px;
}

.more {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    animation: blink-opacity 2s infinite;
    cursor: pointer;
}

@keyframes blink-opacity {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.map-box {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.map-box .map-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}
.map-box .map-item .expl-box {
    background-color: var(--black-color);
    border: 1px solid var(--border-color);
    padding: 16px;
    text-align: center;
    line-height: 1.3;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.map-box .map-item .img-box {
    display: flex;
    flex-direction: column;
}
.map-box .map-item .img-box a {
    display: block;
    width: 100%;
    cursor: pointer;
}
.map-box .map-item .img-box img {
    width: 100%;
}
.map-box .map-item .img-box iframe {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.map-editor table {
    width: 100% !important;
}
.map-editor iframe {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
}
.greetings-area {
    line-height: 3 !important;
    word-break: keep-all !important;
}