@charset "UTF-8";
@import url("https://fonts.cdnfonts.com/css/abhaya-libre-2");
:root {
  --vh: calc(var(--vh, 1vh) * 100);
  /* 기본 값 설정 */
}

.font-700 {
  font-weight: 700 !important;
}

.font-weight-200 {
  font-weight: 200;
}

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

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

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

.vertical-top {
  vertical-align: top !important;
}

.text-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin-top: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: transparent;
  overflow: hidden;
  opacity: 0;
}

.text-underline {
  text-decoration: underline;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.ellipsis-2 {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}

.ellipsis-3 {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
}

.width-full {
  width: 100% !important;
}

.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-wrap.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-wrap.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-wrap.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-wrap.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-wrap.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-wrap.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-wrap.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.max-width-260 img {
  max-width: 26rem !important;
}

/* 확대된 상태에서 원래 크기로 축소 */
@-webkit-keyframes scaleDown {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleDown {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes bottomScroll {
  0% {
    bottom: 10rem;
  }
  50% {
    bottom: 8rem;
  }
  100% {
    bottom: 10rem;
  }
}

@keyframes bottomScroll {
  0% {
    bottom: 10rem;
  }
  50% {
    bottom: 8rem;
  }
  100% {
    bottom: 10rem;
  }
}

@keyframes bottomScroll {
  0% {
    bottom: 10rem;
  }
  50% {
    bottom: 8rem;
  }
  100% {
    bottom: 10rem;
  }
}

@-webkit-keyframes sub-line {
  0% {
    height: 0;
  }
  100% {
    height: 8rem;
  }
}

@keyframes sub-line {
  0% {
    height: 0;
  }
  100% {
    height: 8rem;
  }
}

@-webkit-keyframes premium-thumb {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes premium-thumb {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

/* ***** reset.scss ***** */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-style: normal;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  word-break: break-word;
  list-style-type: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: -apple-system, "Apple SD Gothic Neo", "Pretendard", Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  color: #000;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
}

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

strong {
  font-weight: 700;
}

caption, legend {
  visibility: hidden;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -999rem;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a:hover, a:active, a:focus, a:visited {
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

th, td {
  vertical-align: middle;
  background-clip: padding-box;
}

label {
  cursor: pointer;
}

label.link {
  pointer-events: auto;
}

input, select, button, textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  font-family: -apple-system, "Apple SD Gothic Neo", "Pretendard", Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: normal;
  color: #222;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
}

button {
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

textarea {
  overflow: auto;
  resize: none;
}

select::-ms-expand {
  display: none;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PretendardVariable.woff2") format("woff2-variations");
}

.font-abhaya {
  font-family: 'Abhaya Libre', sans-serif;
}

.accordion-wrap {
  border: 1px solid #000;
}

.accordion-wrap ul li {
  border-top: 1px solid #000;
}

.accordion-wrap ul li:nth-of-type(1) {
  border-top: 0;
}

.accordion-wrap ul li .accordion-trigger {
  position: relative;
  display: block;
  width: 100%;
  line-height: 4rem;
  text-align: left;
  padding: 0 1rem;
  background: #ddd;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.accordion-wrap ul li .accordion-trigger:after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.accordion-wrap ul li .accordion-content {
  display: none;
  padding: 1rem 1rem;
}

.accordion-wrap ul li.active .accordion-trigger {
  background-color: #000;
  color: #fff;
}

.accordion-wrap ul li.active .accordion-trigger:after {
  content: "-";
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-wrap.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-wrap.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-wrap.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.btn {
  display: inline-block;
  min-width: 14rem;
  height: 7.4rem;
  line-height: 7.4rem;
  text-align: center;
  background: #fff;
  color: #000;
  padding: 0 2.4rem;
  border-radius: 1.2rem;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.btn-save {
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  color: #fff;
  background-color: #3B2C2E;
  border-color: #3B2C2E;
}

.btn-save:hover {
  background-color: #2f2325;
  border-color: #2f2325;
}

.btn-save:active {
  background-color: #241b1c;
  border-color: #241b1c;
}

@media (min-width: 280px) and (max-width: 1279px) {
  .btn {
    font-size: 2rem;
    height: 4.8rem;
    line-height: 4.6rem;
  }
}

input, select, textarea {
  scroll-margin-top: 100px;
  /* 헤더 높이보다 약간 크게 설정 */
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"] {
  height: 4.4rem;
  font-size: 2rem;
  color: #3b2c2e;
  background-color: #fff;
  border: 1px solid #F0EEEE;
  padding: 0 1.2rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: -0.4px;
  border-radius: 1rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

input[type="text"]:hover, input[type="text"]:focus,
input[type="password"]:hover,
input[type="password"]:focus,
input[type="number"]:hover,
input[type="number"]:focus,
input[type="email"]:hover,
input[type="email"]:focus {
  border-color: #333;
}

input[type="text"].x-small,
input[type="password"].x-small,
input[type="number"].x-small,
input[type="email"].x-small {
  width: 15rem;
}

input[type="text"].x-large,
input[type="password"].x-large,
input[type="number"].x-large,
input[type="email"].x-large {
  width: 80rem;
}

input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="email"]:disabled {
  border-color: #f5f5f5;
  background-color: #f5f5f5;
  color: #ddd;
}

input[type="text"]:-moz-read-only, input[type="password"]:-moz-read-only, input[type="number"]:-moz-read-only, input[type="email"]:-moz-read-only {
  border-color: #f5f5f5;
  background-color: #f5f5f5;
}

input[type="text"]:read-only,
input[type="password"]:read-only,
input[type="number"]:read-only,
input[type="email"]:read-only {
  border-color: #f5f5f5;
  background-color: #f5f5f5;
}

input::-webkit-input-placeholder {
  color: rgba(59, 44, 46, 0.6);
}

input::-moz-placeholder {
  color: rgba(59, 44, 46, 0.6);
}

input:-ms-input-placeholder {
  color: rgba(59, 44, 46, 0.6);
}

input::-ms-input-placeholder {
  color: rgba(59, 44, 46, 0.6);
}

input::placeholder {
  color: rgba(59, 44, 46, 0.6);
}

input:-ms-input-placeholder {
  color: rgba(59, 44, 46, 0.6) !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  border: 1px solid #ddd;
  margin: 0;
  border: 0;
  background-image: url(../images/icon_checkbox_off.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

input[type="checkbox"]:checked {
  background-image: url(../images/icon_checkbox_on.png);
}

input[type="checkbox"]:focus {
  outline: 1px dashed #333;
}

input[type="radio"] {
  width: 2rem;
  height: 2rem;
  margin: 0;
  background-image: url(../images/icon_unchecked.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

input[type="radio"]:checked {
  background-image: url(../images/icon_checked.png);
}

input[type="radio"]:focus {
  outline: 1px dashed #333;
}

textarea {
  width: 100%;
  height: 200px;
  font-size: 2rem;
  background-color: #fff;
  border: 1px solid #333;
  padding: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: -0.4px;
  border-radius: 1rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

textarea:hover, textarea:focus {
  border-width: 1px;
}

textarea:disabled {
  border-color: #eee;
  background-color: #fafafa;
  color: #888;
}

textarea::-webkit-input-placeholder {
  color: rgba(59, 44, 46, 0.6);
}

textarea::-moz-placeholder {
  color: rgba(59, 44, 46, 0.6);
}

textarea:-ms-input-placeholder {
  color: rgba(59, 44, 46, 0.6);
}

textarea::-ms-input-placeholder {
  color: rgba(59, 44, 46, 0.6);
}

textarea::placeholder {
  color: rgba(59, 44, 46, 0.6);
}

textarea:-ms-input-placeholder {
  color: rgba(59, 44, 46, 0.6) !important;
}

select {
  height: 4.4rem;
  font-size: 2rem;
  padding: 0 2.4rem 0 1.2rem;
  border-radius: 1rem;
  background-color: #fff;
  border: 1px solid #F0EEEE;
  cursor: pointer;
  background-image: url(../../assets/images/icon_select_01.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 2.4rem auto;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}

select:invalid {
  color: #999;
}

select:hover, select:focus {
  border-width: 1px;
  border-color: #333;
  outline: none;
}

select:disabled {
  border-color: #000;
  background-color: #000;
}

.form-wrap .form-check input[type="checkbox"] {
  display: none;
}

.form-wrap .form-check input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  line-height: 2rem;
  font-weight: 400;
}

.form-wrap .form-check input[type="checkbox"] + label:before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon_checkbox_off.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2rem auto;
  vertical-align: top;
  margin-right: 0.6rem;
}

.form-wrap .form-check input[type="checkbox"]:checked + label {
  font-weight: 700;
}

.form-wrap .form-check input[type="checkbox"]:checked + label:before {
  background-image: url(../images/icon_checkbox_on.png);
}

.form-wrap .form-check input[type="checkbox"].check-all:checked + label:before {
  background-image: url(../images/icon_checkbox_on_full.png);
}

.form-wrap .form-check input[type="radio"] {
  display: none;
}

.form-wrap .form-check input[type="radio"] + label {
  position: relative;
  display: inline-block;
  min-width: auto;
  line-height: 2rem;
  font-weight: 400;
}

.form-wrap .form-check input[type="radio"] + label:before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(../images/icon_radio_off.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2rem auto;
  vertical-align: top;
  margin-right: 0.6rem;
}

.form-wrap .form-check input[type="radio"]:checked + label {
  font-weight: 700;
}

.form-wrap .form-check input[type="radio"]:checked + label:before {
  background-image: url(../images/icon_radio_on.png);
}

.address-group .address-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.address-group .address-top button {
  min-width: 10rem;
  padding: 0 1.2rem;
  margin-left: 0.8rem;
}

.address-group .address-bottom {
  margin-top: 1rem;
}

.address-group .address-bottom input[type="text"] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-top: 0.8rem;
}

.address-group .address-bottom input[type="text"]:nth-of-type(1) {
  margin-top: 0;
}

.popup-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-transform: translate(0, -200%);
  transform: translate(0, -200%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: transform 3.5s ease-in-out;
  -webkit-transition: -webkit-transform 3.5s ease-in-out;
  transition: -webkit-transform 3.5s ease-in-out;
  transition: transform 3.5s ease-in-out;
  transition: transform 3.5s ease-in-out, -webkit-transform 3.5s ease-in-out;
}

.popup-wrap.active {
  -webkit-transform: none;
  transform: none;
}

.popup-wrap .popup-dimmed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.popup-wrap .popup-inner {
  position: relative;
  width: 50vw;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

.popup-wrap .popup-inner .popup-close {
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  font-size: 3.2rem;
  text-align: center;
  margin: 0 auto 1.5rem;
  color: #fff;
}

.popup-wrap .popup-inner .popup-contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 1rem;
  padding: 56.25% 0 0 0;
}

.popup-wrap .popup-inner .popup-contents iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup-wrap .popup-inner .popup-footer {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 1rem;
}

.popup-wrap .popup-inner .popup-footer .popup-check {
  text-align: center;
}

.popup-wrap .popup-inner .popup-footer .popup-check label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 1rem;
}

.popup-wrap .popup-inner .popup-footer .popup-check label input[type="checkbox"] {
  background-image: url(../images/icon_layer_chk_off.png);
}

.popup-wrap .popup-inner .popup-footer .popup-check label input[type="checkbox"]:checked {
  background-image: url(../images/icon_layer_chk_on.png);
}

.popup-wrap .popup-inner .popup-footer .popup-check label p {
  color: #fff;
}

.layer-dimmed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 998;
  -webkit-transform: translate(0, -200%);
  transform: translate(0, -200%);
  -webkit-transition: transform 3.5s ease-in-out;
  -webkit-transition: -webkit-transform 3.5s ease-in-out;
  transition: -webkit-transform 3.5s ease-in-out;
  transition: transform 3.5s ease-in-out;
  transition: transform 3.5s ease-in-out, -webkit-transform 3.5s ease-in-out;
}

.layer-dimmed.active {
  -webkit-transform: none;
  transform: none;
}

.layer-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  -webkit-transform: translate(0, -200%);
  transform: translate(0, -200%);
  -webkit-transition: transform 3.5s ease-in-out;
  -webkit-transition: -webkit-transform 3.5s ease-in-out;
  transition: -webkit-transform 3.5s ease-in-out;
  transition: transform 3.5s ease-in-out;
  transition: transform 3.5s ease-in-out, -webkit-transform 3.5s ease-in-out;
}

.layer-container.active {
  -webkit-transform: none;
  transform: none;
}

.layer-container .layer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.layer-container .layer-inner .layer-body {
  max-width: 38rem;
}

.layer-container .layer-inner .layer-body .coffee-wrap .coffee-image {
  font-size: 0;
}

.layer-container .layer-inner .layer-body .coffee-wrap .coffee-image img {
  width: 100%;
}

.layer-container .layer-inner .layer-body .coffee-wrap .coffee-link a {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.4rem;
  text-align: center;
  padding: 2.2rem 2rem;
  color: #fff;
  background-color: #053D27;
}

.layer-container .layer-inner .layer-body .coffee-wrap .coffee-link a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}

.layer-container .layer-inner .layer-body .coffee-wrap .coffee-link a span:after {
  content: '';
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../images/icon_event_link.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.layer-container .layer-inner .layer-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 2rem;
  background-color: #ECE4D1;
}

.layer-container .layer-inner .layer-footer .layer-check {
  text-align: center;
}

.layer-container .layer-inner .layer-footer .layer-check label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 0.6rem;
}

.layer-container .layer-inner .layer-footer .layer-check label input[type="checkbox"] {
  background-image: url(../images/icon_checkbox_off.png);
}

.layer-container .layer-inner .layer-footer .layer-check label input[type="checkbox"]:checked {
  background-image: url(../images/icon_checkbox_on.png);
}

.layer-container .layer-inner .layer-footer .layer-check label .layer-close,
.layer-container .layer-inner .layer-footer .layer-check label p {
  font-weight: 500;
  line-height: 3.4rem;
  color: #3B2C2E;
}

@media (min-width: 280px) and (max-width: 1279px) {
  .popup-wrap .popup-inner {
    width: 90vw;
  }
  .popup-wrap .popup-inner .popup-close {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  .layer-container .layer-inner {
    padding: 0 1.6rem;
  }
}

.pagination-wrap {
  text-align: center;
  margin-top: 4rem;
}

.pagination-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}

.pagination-wrap ul li {
  border-radius: 8px;
}

.pagination-wrap ul li span,
.pagination-wrap ul li a {
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  line-height: 3.8rem;
  font-size: 1.6rem;
  color: #333;
  -webkit-transition: color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out;
}

.pagination-wrap ul li.current {
  background-color: #3B2C2E;
}

.pagination-wrap ul li.current span,
.pagination-wrap ul li.current a {
  font-weight: 600;
  color: #fff;
}

.pagination-wrap ul li.first a, .pagination-wrap ul li.prev a, .pagination-wrap ul li.next a, .pagination-wrap ul li.last a {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 3.2rem auto;
  color: transparent;
}

.pagination-wrap ul li.first a {
  background-image: url(../images/icon_page_first.png);
}

.pagination-wrap ul li.prev a {
  background-image: url(../images/icon_page_prev.png);
}

.pagination-wrap ul li.next a {
  background-image: url(../images/icon_page_next.png);
}

.pagination-wrap ul li.last a {
  background-image: url(../images/icon_page_last.png);
}

@media (min-width: 280px) and (max-width: 1279px) {
  .pagination-wrap {
    margin-top: 2rem;
  }
  .pagination-wrap ul li span,
  .pagination-wrap ul li a {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
    line-height: 3rem;
  }
  .pagination-wrap ul li.first a, .pagination-wrap ul li.prev a, .pagination-wrap ul li.next a, .pagination-wrap ul li.last a {
    width: 2rem;
    height: 2rem;
    background-size: 2rem auto;
  }
}

table {
  border-top: 1px solid #3b2c2e;
}

table colgroup.is-pc {
  display: table-column-group;
}

table tbody th,
table tbody td {
  font-size: 2rem;
  text-align: left;
  padding: 1rem 2rem;
  border-bottom: 1px solid #939598;
  color: #3b2c2e;
}

table tbody th {
  background-color: rgba(105, 80, 79, 0.1);
}

table.x-small tbody tr th {
  font-size: 1.6rem;
  padding: 1.4rem 2rem;
}

table.x-small tbody tr td {
  font-size: 1.4rem;
  padding: 1.4rem 2rem;
}

@media (min-width: 280px) and (max-width: 1279px) {
  .wrap table colgroup.is-mobile {
    display: table-column-group;
  }
}

.tabs-wrap {
  margin-top: 10rem;
}

.tabs-wrap.circle .tabs-header ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.8rem;
}

.tabs-wrap.circle .tabs-header ul li {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.tabs-wrap.circle .tabs-header ul li.active a {
  color: #fff;
}

.tabs-wrap.circle .tabs-header ul li a {
  min-width: 8rem;
  line-height: 3.4rem;
  border: 0.1rem solid #000;
  border-radius: 5rem;
}

.tabs-wrap.circle .tabs-header ul li a:before {
  content: none;
}

.tabs-wrap.circle .tabs-contents .tab-item {
  padding-top: 1.6rem;
}

.tabs-wrap .tabs-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tabs-wrap .tabs-header ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.tabs-wrap .tabs-header ul li a {
  position: relative;
  display: block;
  line-height: 6.4rem;
  padding: 0 1rem;
  font-size: 2rem;
  color: #3B2C2E;
  background-color: rgba(59, 44, 46, 0.04);
  text-align: center;
  -webkit-transition: font-size 0.2s, background-color 0.3s ease-in-out;
  transition: font-size 0.2s, background-color 0.3s ease-in-out;
}

.tabs-wrap .tabs-header ul li.active a {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  background-color: #3B2C2E;
  color: #fff;
}

.tabs-wrap .tabs-contents {
  margin-top: 4rem;
}

.tabs-wrap .tabs-contents .tab-item {
  display: none;
}

.tabs-wrap .tabs-contents .tab-item.active {
  display: block;
}

.tabs-wrap .tabs-contents .tab-item .tabs-title {
  font-size: 3.6rem;
  line-height: 5rem;
  font-weight: 600;
  text-align: center;
  padding: 10rem 0 2rem;
}

@media (min-width: 280px) and (max-width: 1279px) {
  .tabs-wrap {
    margin-top: 4rem;
  }
  .tabs-wrap .tabs-header ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -2rem;
    margin-right: -2rem;
    border-top: 1px solid #ddd;
  }
  .tabs-wrap .tabs-header ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .tabs-wrap .tabs-header ul li:nth-of-type(even) {
    border-right: 0;
  }
  .tabs-wrap .tabs-header ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -moz-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -moz-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    min-height: 5.4rem;
    padding: 0.8rem 0;
    font-size: 1.4rem;
    line-height: 1.9rem;
  }
  .tabs-wrap .tabs-header ul li a:before {
    content: none;
  }
  .tabs-wrap .tabs-header ul li.active a {
    font-size: 1.6rem;
    color: #fff;
  }
  .tabs-wrap .tabs-contents .tab-item .tabs-title {
    font-size: 2.6rem;
    line-height: 3.1rem;
    padding: 4rem 0 1rem;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  overflow: hidden;
  background: #3B2C2E;
  z-index: 99;
}

header:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8rem;
  width: 100%;
  height: 0.1rem;
  background-color: #3B2C2E;
}

header:hover {
  height: auto;
  background: #fff;
}

header:hover .section-inner .logo a {
  color: #3B2C2E;
}

header:hover .section-inner .logo a img {
  display: none;
}

header:hover .section-inner .logo a .over {
  display: block;
}

header:hover .section-inner .nav > ul > li > a {
  color: #3B2C2E;
}

header:hover .section-inner .nav > ul > li .second-depth ul li a:hover {
  font-weight: 600;
}

header:hover .section-inner .array-list .schedule {
  color: #fff;
  background: #3B2C2E;
}

header .section-inner {
  max-width: 128rem;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
}

header .section-inner .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  line-height: 8rem;
  color: #fff;
}

header .section-inner .logo a span {
  font-size: 2rem;
  font-weight: 700;
}

header .section-inner .logo a img {
  width: 14.2rem;
  margin-right: 0.8rem;
}

header .section-inner .logo a .over {
  display: none;
}

header .section-inner .menu-dimmed {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(0, 0, 0, 0.6);
  z-index: 12;
}

header .section-inner .menu-dimmed.active {
  display: block;
}

header .section-inner .nav-top {
  display: none;
  height: 6.4rem;
  padding: 0 1.6rem;
}

header .section-inner .nav-top .nav-logo {
  width: 8rem;
  font-size: 0;
}

header .section-inner .nav-top .nav-logo img {
  width: 100%;
}

header .section-inner .nav-top .btn-menu-close {
  position: absolute;
  top: 2rem;
  right: 1.6rem;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../images/btn_close.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2.4rem auto;
  background-color: #fff;
}

header .section-inner .nav-top .btn-menu-close span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin-top: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: transparent;
  overflow: hidden;
  opacity: 0;
}

header .section-inner .nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4rem;
}

header .section-inner .nav > ul > li {
  position: relative;
}

header .section-inner .nav > ul > li:hover .second-depth {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

header .section-inner .nav > ul > li > a {
  position: relative;
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 8rem;
  color: #fff;
  padding: 0 2.2rem;
  text-align: center;
  z-index: 10;
}

header .section-inner .nav .second-depth {
  padding: 3rem 0;
}

header .section-inner .nav .second-depth ul li {
  padding-top: 3rem;
}

header .section-inner .nav .second-depth ul li:nth-of-type(1) {
  padding-top: 0;
}

header .section-inner .nav .second-depth ul li.active a {
  color: #fff;
  font-weight: 600;
}

header .section-inner .nav .second-depth ul li a {
  display: block;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #3B2C2E;
  text-align: center;
  white-space: nowrap;
}

header .section-inner .array-list {
  min-width: 32rem;
  height: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 2rem;
}

header .section-inner .array-list .btn-call {
  display: block;
  width: 16.5rem;
  height: 3.2rem;
  line-height: 3.2rem;
  padding: 0 2.4rem;
  overflow: hidden;
  color: #3B2C2E;
  border: 1px solid #3B2C2E;
  font-weight: 600;
  border-radius: 1.6rem;
  background-color: #fff;
  background-image: url(../images/icon_tell_off.png);
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 2rem auto;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

header .section-inner .array-list .btn-call span {
  font-size: 1.6rem;
  margin-right: 0.6rem;
}

header .section-inner .array-list .schedule {
  display: none;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 3.2rem;
  color: #3B2C2E;
  padding: 0 2.4rem;
  text-align: center;
  background-color: #fff;
  border-radius: 1.6rem;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

header .btn-menu {
  display: none;
  position: absolute;
  top: 2rem;
  right: 1.6rem;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../images/btn_menu.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2.4rem auto;
}

header .btn-menu span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin-top: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: transparent;
  overflow: hidden;
  opacity: 0;
}

@media (min-width: 280px) and (max-width: 1279px) {
  header {
    height: 6.4rem;
    overflow: inherit;
  }
  header:before {
    display: none;
  }
  header:hover {
    height: 6.4rem;
    background: #3B2C2E;
  }
  header:hover .section-inner .logo a img {
    display: block;
  }
  header:hover .section-inner .logo a .over {
    display: none;
  }
  header:hover .section-inner .array-list {
    height: 100%;
  }
  header .section-inner {
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 0 1.6rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .section-inner .btn-menu {
    display: block;
  }
  header .section-inner .logo a img {
    width: 8rem;
  }
  header .section-inner .logo a span {
    display: none;
  }
  header .section-inner .array-list {
    min-width: auto;
    margin-right: 3.6rem;
  }
  header .section-inner .array-list .schedule {
    display: none;
  }
  header .section-inner .nav {
    visibility: hidden;
    position: fixed;
    top: -200%;
    left: 0;
    right: 0;
    z-index: 13;
    background-color: #fff;
    -webkit-transition: top 0.3s ease-in-out;
    transition: top 0.3s ease-in-out;
  }
  header .section-inner .nav .nav-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -moz-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -moz-justify-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  header .section-inner .nav > ul {
    display: block;
  }
  header .section-inner .nav > ul > li {
    text-align: center;
    cursor: pointer;
  }
  header .section-inner .nav > ul > li.active:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  header .section-inner .nav > ul > li.active > .second-depth {
    display: block;
  }
  header .section-inner .nav > ul > li:last-child > a:after {
    content: none;
  }
  header .section-inner .nav > ul > li.block a {
    display: block;
  }
  header .section-inner .nav > ul > li.block:after {
    content: none;
  }
  header .section-inner .nav > ul > li:after {
    content: '';
    position: absolute;
    top: 2rem;
    right: 1.6rem;
    width: 2.4rem;
    height: 2.4rem;
    background-image: url(../images/icon_nav_arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transition: 0.3s -webkit-transform;
    transition: 0.3s -webkit-transform;
    transition: 0.3s transform;
    transition: 0.3s transform, 0.3s -webkit-transform;
  }
  header .section-inner .nav > ul > li > a {
    display: inline-block;
    line-height: 6.4rem;
    padding: 0;
    background-color: #fff;
    color: #3B2C2E;
    font-weight: 600;
  }
  header .section-inner .nav > ul > li > a:after {
    content: '';
    display: block;
    width: 1.4rem;
    height: 0.1rem;
    margin: 0 auto;
    background-color: #d5d5d5;
  }
  header .section-inner .nav > ul > li > a span {
    position: relative;
  }
  header .section-inner .nav > ul > li > .second-depth {
    display: none;
    position: static;
    -webkit-transform: none;
    transform: none;
    padding: 1rem 0 0;
  }
  header .section-inner .nav > ul > li > .second-depth ul {
    padding: 1rem 0;
    background-color: #F8F8F8;
    border-radius: 0;
  }
  header .section-inner .nav > ul > li > .second-depth ul li {
    padding: 0;
  }
  header .section-inner .nav > ul > li > .second-depth ul li.active a {
    color: #5D4442;
    font-weight: 400;
  }
  header .section-inner .nav > ul > li > .second-depth ul li a {
    font-size: 1.6rem;
    padding: 1.4rem 0;
    color: #5D4442;
  }
  header .section-inner .nav > ul > li > .second-depth ul li a:hover {
    color: #5D4442;
  }
  header.active .section-inner .nav {
    visibility: visible;
    top: 0;
    right: 0%;
  }
}

footer {
  background-color: #3B2C2E;
}

footer .section-inner {
  width: 128rem;
  margin: 0 auto;
  padding: 6rem 0;
  color: #fff;
}

footer .host-text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4rem;
}

footer .host-text ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: rgba(255, 255, 255, 0.2);
}

footer .host-text ul li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

footer .host-text ul li p:before {
  content: '';
  display: inline-block;
  width: 0.1rem;
  height: 1.4rem;
  background-color: rgba(255, 255, 255, 0.2);
  margin-left: 1rem;
  margin-right: 1rem;
}

footer .host-list {
  display: none;
}

footer .host-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4rem;
}

footer .host-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}

footer .host-list ul li:nth-of-type(3) {
  margin-left: -2rem;
}

footer .host-list ul li:nth-of-type(3) span {
  display: none;
}

footer .host-list ul li span {
  font-size: 2rem;
  font-weight: 600;
}

footer .company-info {
  padding-top: 2rem;
}

footer .company-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}

footer .company-info dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1.4rem;
  color: rgba(255, 255, 255, 0.2);
}

footer .company-info dl dd:nth-of-type(1):before {
  content: none;
}

footer .company-info dl dd:before {
  content: '';
  display: inline-block;
  width: 0.1rem;
  height: 1.4rem;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 1rem;
}

footer .company-info p {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4rem;
  color: rgba(255, 255, 255, 0.2);
  padding-top: 0.6rem;
}

footer .explan-wrap {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4rem;
  padding-top: 4rem;
  text-align: center;
}

footer .explan-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.1rem;
  background-color: rgba(255, 255, 255, 0.6);
}

footer .copyright {
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 2rem;
  text-align: center;
}

@media (min-width: 280px) and (max-width: 1279px) {
  footer.active .section-inner {
    padding: 4rem 1.6rem;
  }
  footer .section-inner {
    width: 100%;
    padding: 4rem 1.6rem 8.8rem;
  }
  footer .section-inner .host-text ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  footer .section-inner .host-text ul li {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  footer .section-inner .host-list ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
  }
  footer .section-inner .host-list ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    gap: 4rem;
  }
  footer .section-inner .host-list ul li:nth-of-type(3) {
    margin-left: 0;
  }
  footer .section-inner .host-list ul li:nth-of-type(3) span {
    opacity: 0;
    display: block;
  }
  footer .section-inner .host-list ul li span {
    font-size: 1.4rem;
  }
  footer .section-inner .host-list ul li img {
    width: 14rem;
  }
  footer .section-inner .company-info dl {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 1rem;
  }
  footer .section-inner .company-info dl dd {
    font-size: 1rem;
    line-height: 1.2rem;
  }
  footer .section-inner .company-info dl dd:before {
    height: 1rem;
    margin-top: 0.2rem;
  }
  footer .section-inner .company-info dl dd:nth-of-type(1), footer .section-inner .company-info dl dd:nth-of-type(2) {
    width: 100%;
  }
  footer .section-inner .company-info dl dd:nth-of-type(1):before, footer .section-inner .company-info dl dd:nth-of-type(2):before, footer .section-inner .company-info dl dd:nth-of-type(3):before {
    content: none;
  }
  footer .section-inner .company-info dl dd:nth-of-type(3):before {
    padding-right: 0.8rem;
  }
  footer .section-inner .company-info dl dd:nth-of-type(4) {
    margin-right: 0.8rem;
  }
  footer .section-inner .company-info p {
    font-size: 1rem;
    line-height: 1.2rem;
    padding-top: 0;
  }
  footer .section-inner .explan-wrap {
    margin-top: 2rem;
    padding-top: 2rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  footer .section-inner .copyright {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

/* 전체 인트로 오버레이 */
#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3B2C2E;
  /* 초기 배경색 */
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  /* 처음에는 완전히 덮여 있음 */
  mask-image: radial-gradient(circle, black 0%, black 100%);
  -webkit-mask-image: radial-gradient(circle, black 0%, black 100%);
}

/* ELBAON 텍스트 */
#intro-text {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1.2rem;
  margin-left: -7.1rem;
  width: 14.2rem;
  height: 2.4rem;
  background-image: url(../images/img_logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  font-size: 0;
  color: white;
  font-weight: 700;
  opacity: 0;
  /* 초기 상태: 숨김 */
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  /* 약간 작게 시작 */
  z-index: 1100;
}

/* 좌우 확장 배경 */
.intro__background {
  position: absolute;
  top: 0;
  background-color: black;
  width: 50%;
  height: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.intro__background--left {
  left: 0;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.intro__background--right {
  left: 50%;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.main-visual {
  position: relative;
  height: 100vh;
  color: #fff;
  overflow: hidden;
  -webkit-transition: clip-path 1.5s;
  transition: clip-path 1.5s;
  clip-path: circle(0%);
}

.main-visual.ani1 {
  clip-path: circle(23%);
}

.main-visual.ani2 {
  clip-path: circle(100%);
  -webkit-transition: clip-path 3s;
  transition: clip-path 3s;
}

.main-visual .icon-scroll {
  position: absolute;
  left: 50%;
  bottom: 10rem;
  width: 6rem;
  height: 6rem;
  opacity: 0;
  background-image: url(../images/icon_scroll.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 100% auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: opacity 1.2s ease-out;
  transition: opacity 1.2s ease-out;
  z-index: 10;
  -webkit-animation: bottomScroll 2s infinite;
  animation: bottomScroll 2s infinite;
}

.main-visual .icon-scroll.end {
  opacity: 0.4;
}

.main-visual .section-inner {
  position: relative;
  height: 100%;
  padding: 29.3rem 0 0;
}

.main-visual .section-inner h2 {
  position: absolute;
  top: 28rem;
  overflow: hidden;
  font-size: 6.8rem;
  line-height: 8.2rem;
  color: #573A34;
  letter-spacing: -1.44px;
}

.main-visual .section-inner h2 strong {
  font-weight: 600;
}

.main-visual .section-inner h2 span {
  display: block;
  text-align: center;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.8s ease-out;
  transition: -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out;
  transition: transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.main-visual .section-inner h2 em {
  display: block;
  font-size: 3.2rem;
  line-height: 3.8rem;
  color: #3F3B3C;
  padding-top: 2rem;
}

.main-visual .section-inner h2 i {
  color: #000;
  font-weight: 400;
}

.main-visual .pc-visual {
  height: 100%;
}

.main-visual .pc-visual .swiper-wrapper .swiper-slide .bg {
  height: 100%;
  background-image: url(../images/img_visual_01.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
}

.main-visual .pc-visual .swiper-wrapper .swiper-slide .bg.type-01 {
  background-image: url(../images/img_visual_01.png);
}

.main-visual .pc-visual .swiper-wrapper .swiper-slide .bg.type-02 {
  background-position: center center;
  background-image: url(../images/img_visual_02.png);
}

.main-visual .pc-visual .swiper-wrapper .swiper-slide .bg.type-02 h2 {
  text-align: right;
  font-size: 6rem;
  line-height: 7.2rem;
}

.main-visual .mobile-visual {
  display: none;
  position: relative;
  height: 100%;
}

.main-visual .mobile-visual.end .mobile-text img {
  -webkit-transform: none;
  transform: none;
}

.main-visual .mobile-visual figure {
  width: 100%;
  font-size: 0;
}

.main-visual .mobile-visual figure img {
  width: 100%;
}

.main-visual .mobile-visual .mobile-text {
  position: absolute;
  top: 20.9%;
  left: 50%;
  font-size: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  overflow: hidden;
}

.main-visual .mobile-visual .mobile-text img {
  width: 100%;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
  transition: transform 1s ease-out, -webkit-transform 1s ease-out;
}

.swiper-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.swiper-wrap .left {
  width: 50%;
  position: relative;
}

.swiper-wrap .right {
  width: 50%;
}

.swiper-wrap .swiper-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.swiper-wrap figure {
  width: 100%;
  font-size: 0;
}

.swiper-wrap figure img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-wrap .swiper-container .swiper-wrapper .swiper-slide {
  text-align: center;
}

.swiper-wrap .swiper-container .swiper-wrapper .swiper-slide .swiper-title {
  font-size: 4.8rem;
  line-height: 5.7rem;
  color: #fff;
}

.swiper-wrap .swiper-container .swiper-wrapper .swiper-slide .swiper-title strong {
  display: block;
  padding-top: 1rem;
}

.swiper-wrap .swiper-container .swiper-wrapper .swiper-slide .swiper-desc {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #3B2C2E;
  border-radius: 0.8rem;
  background-color: #fff;
  padding: 2rem 2.4rem;
  margin-top: 4rem;
}

.swiper-wrap .swiper-container .swiper-button-prev,
.swiper-wrap .swiper-container .swiper-button-next {
  width: 3.6rem;
  height: 3.6rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.swiper-wrap .swiper-container .swiper-button-prev {
  left: 50%;
  right: auto;
  margin-left: -17rem;
  background-image: url(../images/icon_main_swiper_arrow_l.png);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.swiper-wrap .swiper-container .swiper-button-next {
  left: auto;
  right: 50%;
  margin-right: -17rem;
  background-image: url(../images/icon_main_swiper_arrow_r.png);
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.swiper-wrap .swiper-container .swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  margin-top: 6rem;
}

.swiper-wrap .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 5rem;
  height: 0.4rem;
  border-radius: 0;
  background-color: #775B5E;
  opacity: 1;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.swiper-wrap .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FFD5A4;
}

.swiper-wrap .slide-image {
  height: 100%;
  overflow-y: auto;
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
  /* 스크롤 스냅 적용 */
  scroll-behavior: smooth;
  /* 스크롤을 부드럽게 이동 */
  scrollbar-width: none;
  /* 스크롤바 숨기기 (Firefox) */
  -ms-overflow-style: none;
  /* IE/Edge 스크롤바 숨기기 */
}

.swiper-wrap .slide-image:-webkit-scrollbar {
  display: none;
}

.swiper-wrap .slide-image ul {
  position: relative;
  height: 100%;
}

.swiper-wrap .slide-image ul li {
  position: relative;
  scroll-snap-align: start;
  /* 스냅 위치 설정 */
  height: 100%;
  /* 한 화면에 하나의 슬라이드만 표시 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.swiper-wrap .slide-image ul li.active {
  overflow: hidden;
}

.belt-wrap {
  text-align: center;
  padding: 6.45rem 0;
  background-image: url(../images/img_belt_02.png);
  background-repeat: no-repeat;
  background-position: center 0%;
  background-size: cover;
  background-attachment: scroll;
}

.belt-wrap .belt-title ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.belt-wrap .belt-title ul li {
  position: relative;
  font-size: 4.8rem;
  line-height: 5.7rem;
  font-weight: 600;
  color: #fff;
  margin-left: 3rem;
  padding-left: 3rem;
}

.belt-wrap .belt-title ul li:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.2rem;
  height: 3.6rem;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.belt-wrap .belt-title ul li:nth-of-type(1) {
  margin: 0;
  padding: 0;
}

.belt-wrap .belt-title ul li:nth-of-type(1):before {
  content: none;
}

.belt-wrap .belt-desc {
  display: inline-block;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #fff;
  padding: 1rem 4rem;
  margin-top: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.belt-wrap .belt-desc strong {
  color: #FFD5A4;
  font-weight: 600;
}

.elbaon-card {
  position: relative;
  color: #fff;
  background-color: #1A222C;
  padding: 10rem 0;
}

.elbaon-card .bg {
  position: absolute;
  left: 50%;
  font-size: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.elbaon-card .bg img {
  width: 100%;
}

.elbaon-card .bg.type-01 {
  top: 1.8rem;
  width: 23.3rem;
  margin-left: -52.5rem;
}

.elbaon-card .bg.type-02 {
  top: 5.5rem;
  width: 12.9rem;
  margin-left: 64rem;
}

.elbaon-card .bg.type-03 {
  top: 39rem;
  width: 26.7rem;
  margin-left: 50.5rem;
}

.elbaon-card .card-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
}

.elbaon-card .card-list ul li {
  font-family: 'Abhaya Libre', sans-serif;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 28rem;
  border-radius: 1rem;
  overflow: hidden;
}

.elbaon-card .card-list ul li.e1 .card-bg {
  background-image: url(../images/img_elbaon_list_01.png);
}

.elbaon-card .card-list ul li.e2 .card-bg {
  background-image: url(../images/img_elbaon_list_02.png);
}

.elbaon-card .card-list ul li.e3 .card-bg {
  background-image: url(../images/img_elbaon_list_03.png);
}

.elbaon-card .card-list ul li.e4 .card-bg {
  background-image: url(../images/img_elbaon_list_04.png);
}

.elbaon-card .card-list ul li.e5 .card-bg {
  background-image: url(../images/img_elbaon_list_05.png);
}

.elbaon-card .card-list ul li.e6 .card-bg {
  background-image: url(../images/img_elbaon_list_06.png);
}

.elbaon-card .card-list ul li:hover .card-bg span {
  opacity: 1;
}

.elbaon-card .card-list ul li:hover .card-info dl dt span {
  color: #FFD5A4;
  -webkit-transform: none;
  transform: none;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.elbaon-card .card-list ul li:hover .card-info dl dt p {
  max-width: 100%;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.elbaon-card .card-list ul li:hover .card-info dl dt p em {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.elbaon-card .card-list ul li:hover .card-info dl dd span {
  -webkit-transform: none;
  transform: none;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.elbaon-card .card-list ul li .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.elbaon-card .card-list ul li .card-bg span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.elbaon-card .card-list ul li .card-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.elbaon-card .card-list ul li .card-info dl {
  position: relative;
  z-index: 1;
  margin-bottom: -4.7rem;
}

.elbaon-card .card-list ul li .card-info dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2.8rem;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.elbaon-card .card-list ul li .card-info dl dt span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: scale(4.64286);
  transform: scale(4.64286);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.elbaon-card .card-list ul li .card-info dl dt p {
  overflow: hidden;
  max-width: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.elbaon-card .card-list ul li .card-info dl dt p em {
  display: block;
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  text-wrap: nowrap;
}

.elbaon-card .card-list ul li .card-info dl dd {
  color: #fff;
  line-height: 1.7rem;
  margin-top: 1rem;
  text-align: center;
  overflow: hidden;
}

.elbaon-card .card-list ul li .card-info dl dd span {
  display: block;
  -webkit-transform: translate(0, 110%);
  transform: translate(0, 110%);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.infra-info {
  text-align: center;
  padding-top: 12rem;
}

.infra-info .top-figure {
  width: 21rem;
  margin: 0 auto;
}

.infra-info .top-figure img {
  width: 100%;
}

.infra-info .badge-list {
  padding-top: 2rem;
}

.infra-info .badge-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
}

.infra-info .badge-list ul li {
  padding: 1.6rem 2rem;
  border-radius: 0.8rem;
  background-color: #232F3E;
}

.infra-info .badge-list ul li span {
  font-size: 2rem;
  line-height: 2.4rem;
}

.infra-info .badge-list ul li span:after {
  content: '';
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  vertical-align: top;
  margin-left: 0.2rem;
  background-color: #ffd5a4;
  border-radius: 100%;
}

.infra-info .infra-title {
  font-size: 4.8rem;
  font-weight: 600;
  padding-top: 2rem;
}

.infra-info .infra-box {
  padding-top: 4rem;
}

.infra-info .infra-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}

.infra-info .infra-box ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 3rem 3rem;
  background-color: #232F3E;
  border-radius: 1rem;
  text-align: left;
  letter-spacing: -0.64px;
}

.infra-info .infra-box ul li figure {
  width: 4rem;
}

.infra-info .infra-box ul li figure img {
  width: 100%;
}

.infra-info .infra-box ul li .box-title {
  font-size: 2.4rem;
  line-height: 2.9rem;
  padding-top: 2rem;
}

.infra-info .infra-box ul li .box-title strong {
  font-weight: 600;
}

.infra-info .infra-box ul li .box-desc {
  padding-top: 2rem;
  font-size: 1.6rem;
  color: #C7DAF1;
  line-height: 1.9rem;
}

.infra-info .infra-box ul li .box-desc dl dd {
  padding-top: 1rem;
}

.contact-wrap {
  padding: 12rem 0;
  background-image: url(../images/bg_contact_us.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.contact-wrap .contact-title {
  font-size: 4.8rem;
  line-height: 5.7rem;
  font-weight: 700;
  color: #3B2C2E;
  text-align: center;
}

.contact-wrap .contact-map {
  padding-top: 6rem;
}

.contact-wrap .contact-map ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4rem;
}

.contact-wrap .contact-map ul li .map-title {
  font-size: 2.4rem;
  line-height: 2.9rem;
  color: #fff;
  background-color: #3B2C2E;
  padding: 1.6rem;
  text-align: center;
  border-radius: 2rem 2rem 0 0;
}

.contact-wrap .contact-map ul li figure {
  width: 100%;
  border-radius: 0 0 2rem 2rem;
  border: 1px solid #BFC0C0;
  font-size: 0;
  background-color: #fff;
  overflow: hidden;
}

.contact-wrap .contact-map ul li figure img {
  width: 100%;
}

@media (min-width: 280px) and (max-width: 1279px) {
  article .section-inner {
    width: 100%;
    padding: 0 1.6rem;
  }
  .main-visual .pc-visual .swiper-wrapper .swiper-slide {
    background-position: right bottom;
  }
  .main-visual .pc-visual .swiper-wrapper .swiper-slide h2 {
    position: absolute;
    top: calc(50% - 10rem);
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .main-visual .pc-visual .swiper-wrapper .swiper-slide .bg {
    -webkit-transition-duration: 3s !important;
    transition-duration: 3s !important;
    -webkit-transition-property: background-position !important;
    transition-property: background-position !important;
  }
  .main-visual .pc-visual .swiper-wrapper .swiper-slide .bg.type-01 {
    background-position: 50% bottom;
  }
  .main-visual .pc-visual .swiper-wrapper .swiper-slide .bg.type-01 em {
    display: none;
    opacity: 0;
  }
  .main-visual .pc-visual .swiper-wrapper .swiper-slide .bg.type-02 {
    background-position: 0 center;
  }
  .main-visual .pc-visual .swiper-wrapper .swiper-slide .bg.type-02 h2 {
    font-size: 3.6rem;
    line-height: 4.3rem;
  }
  .main-visual .pc-visual .swiper-wrapper .swiper-slide.swiper-slide-active .bg.type-01 {
    background-position: 65% bottom;
  }
  .main-visual .pc-visual .swiper-wrapper .swiper-slide.swiper-slide-active .bg.type-02 {
    background-position: 30% center;
  }
  .main-visual .section-inner {
    width: 100%;
    padding: 0;
  }
  .main-visual .section-inner h2 {
    font-size: 3.6rem;
    line-height: 4.3rem;
    padding: 0 1.6rem;
    letter-spacing: -0.72px;
  }
  .swiper-wrap .swiper-container .swiper-wrapper .swiper-slide .swiper-title {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
  .swiper-wrap .swiper-container .swiper-wrapper .swiper-slide .swiper-title strong {
    padding-top: 0.4rem;
  }
  .swiper-wrap .swiper-container .swiper-wrapper .swiper-slide .swiper-desc {
    font-size: 1.6rem;
    line-height: 1.9rem;
    margin-top: 2rem;
  }
  .swiper-wrap .swiper-container .swiper-button-prev {
    margin-left: -11rem;
  }
  .swiper-wrap .swiper-container .swiper-button-next {
    margin-right: -11rem;
  }
  .swiper-wrap .swiper-container .swiper-pagination {
    margin-top: 2rem;
  }
  .swiper-wrap .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 2.5rem;
    height: 0.2rem;
  }
  .belt-wrap {
    padding: 4rem 0;
  }
  .belt-wrap .belt-title ul li {
    font-size: 2.4rem;
    line-height: 2.9rem;
    margin-left: 1.4rem;
    padding-left: 1.4rem;
  }
  .belt-wrap .belt-title ul li:before {
    width: 0.1rem;
    height: 2rem;
  }
  .belt-wrap .belt-desc {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  .belt-wrap .belt-desc strong {
    display: block;
  }
  .elbaon-card {
    padding: 4rem 0;
  }
  .elbaon-card .card-list ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.4rem;
  }
  .elbaon-card .card-list ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 0.7rem);
    flex: 0 0 calc(50% - 0.7rem);
    height: 22rem;
  }
  .elbaon-card .card-list ul li:hover .card-info dl {
    margin-bottom: 0;
  }
  .elbaon-card .card-list ul li .card-info dl dt {
    font-size: 1.9rem;
  }
  .elbaon-card .card-list ul li .card-info dl dd {
    font-size: 1.2rem;
  }
  .elbaon-card .infra-info {
    padding-top: 8rem;
  }
  .elbaon-card .infra-info .top-figure {
    width: 14rem;
  }
  .elbaon-card .infra-info .badge-list ul {
    gap: 0.6rem;
  }
  .elbaon-card .infra-info .badge-list ul li {
    padding: 1.2rem 1.6rem;
  }
  .elbaon-card .infra-info .badge-list ul li span {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  .elbaon-card .infra-info .badge-list ul li span:after {
    margin-right: -0.6rem;
  }
  .elbaon-card .infra-info .infra-title {
    font-size: 2.8rem;
    line-height: 3.3rem;
  }
  .elbaon-card .infra-info .infra-box ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.4rem;
  }
  .elbaon-card .infra-info .infra-box ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 0.7rem);
    flex: 0 0 calc(50% - 0.7rem);
    padding: 1.6rem 1.6rem;
  }
  .elbaon-card .infra-info .infra-box ul li figure {
    width: 3.2rem;
  }
  .elbaon-card .infra-info .infra-box ul li .box-title {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .elbaon-card .infra-info .infra-box ul li .box-desc {
    font-size: 1.4rem;
    padding-top: 1rem;
  }
  .contact-wrap {
    padding: 4rem 0;
  }
  .contact-wrap .contact-title {
    font-size: 2.8rem;
    line-height: 3.3rem;
  }
  .contact-wrap .contact-map {
    padding-top: 2rem;
  }
  .contact-wrap .contact-map ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .contact-wrap .contact-map ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .contact-wrap .contact-map ul li .map-title {
    font-size: 1.6rem;
    line-height: 1.9rem;
    padding: 1.6rem 1rem;
  }
}

@media (min-width: 280px) and (max-width: 767px) {
  .swiper-wrap .swiper-container .swiper-button-next,
  .swiper-wrap .swiper-container .swiper-button-prev {
    opacity: 0;
  }
  .swiper-wrap .swiper-container .swiper-pagination {
    margin-top: 1rem;
  }
  .swiper-wrap .swiper-container .swiper-wrapper .swiper-slide .swiper-title {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .swiper-wrap .swiper-container .swiper-wrapper .swiper-slide .swiper-desc {
    font-size: 1.4rem;
    line-height: 1.7rem;
    padding: 1rem 1.2rem;
    margin-top: 1rem;
  }
}

@media (min-width: 280px) and (max-width: 673px) {
  .main-visual {
    height: 100%;
  }
  .main-visual .pc-visual {
    display: none;
  }
  .main-visual .mobile-visual {
    display: block;
  }
}

@media (min-width: 1920px) {
  .main-visual .pc-visual .swiper-wrapper .swiper-slide .bg {
    background-position: center center;
  }
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin-top: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: transparent;
  overflow: hidden;
  opacity: 0;
}

.is-pc {
  display: block;
}

.utility-wrap {
  position: fixed;
  top: 20rem;
  left: 0;
  z-index: 5;
}

.utility-wrap ul li {
  width: 8rem;
  height: 26.4rem;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.utility-wrap ul li:nth-of-type(1) {
  border-top-right-radius: 2rem;
}

.utility-wrap ul li:nth-of-type(2) {
  border-bottom-right-radius: 2rem;
  background-color: #5D4442;
}

.utility-wrap ul li:nth-of-type(2) a {
  color: #fff;
  padding-top: 6rem;
}

.utility-wrap ul li:nth-of-type(2) a:after {
  bottom: 6rem;
  background-image: url(../images/icon_arrow_link_02.png);
}

.utility-wrap ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  color: #3B2C2E;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 600;
  text-align: center;
  padding: 4rem 2.8rem;
}

.utility-wrap ul li a:after {
  content: '';
  position: absolute;
  bottom: 4rem;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../images/icon_arrow_link_01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  border-radius: 100%;
}

.sub-wrap {
  padding-top: 8rem;
}

.sub-wrap .section-top {
  height: 20.9rem;
  padding: 6rem 0;
  background-image: url(../images/bg_section_top_01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.sub-wrap .section-top .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.sub-wrap .section-top .navigation ul li {
  font-size: 2rem;
  line-height: 2.4rem;
  color: #7b7b7b;
}

.sub-wrap .section-top .navigation ul li:nth-of-type(1)::before {
  content: none;
}

.sub-wrap .section-top .navigation ul li:before {
  content: ">";
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.sub-wrap .section-top .section-title {
  font-size: 4.8rem;
  line-height: 5.7rem;
  font-weight: 600;
  color: #3B2C2E;
}

.sub-wrap .section-top .section-desc {
  font-size: 2rem;
  line-height: 2.4rem;
  color: #3B2C2E;
  padding-top: 0.8rem;
}

.sub-wrap .section-contents .section-inner {
  padding: 12rem 0;
}

.sub-wrap .section-contents .terms-wrap fieldset h4:nth-of-type(1) {
  margin-top: 0;
}

.sub-wrap .section-contents .terms-wrap .terms-title {
  font-size: 2.8rem;
  line-height: 3.4rem;
  color: #3B2C2E;
  font-weight: 600;
  margin-top: 6rem;
}

.sub-wrap .section-contents .terms-wrap .terms-desc {
  font-size: 1.6rem;
  line-height: 1.9rem;
  padding-top: 1rem;
}

.sub-wrap .section-contents .terms-wrap .terms-box {
  max-height: 30rem;
  overflow: auto;
  font-size: 1.6rem;
  line-height: 1.9rem;
  padding: 2rem 2rem;
  margin-top: 2rem;
  border: 1px solid #F0EEEE;
}

.sub-wrap .section-contents .terms-wrap .check {
  font-size: 1.6rem;
  line-height: 1.9rem;
  margin-top: 6rem;
  padding: 2.2rem 2rem;
  background-color: rgba(105, 80, 79, 0.1);
}

.sub-wrap .section-contents .terms-wrap .check + .check {
  margin-top: 1rem;
}

.sub-wrap .section-contents .terms-wrap .check dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sub-wrap .section-contents .terms-wrap .check dl .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 4rem;
}

.sub-wrap .section-contents .terms-wrap .check dl .input-group span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.sub-wrap .section-contents .terms-wrap .check dl .input-group span label {
  margin-left: 0.6rem;
}

.sub-wrap .section-contents .terms-wrap .table-wrap {
  margin-top: 2rem;
}

.sub-wrap .section-contents .terms-wrap .check-group,
.sub-wrap .section-contents .terms-wrap .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2rem;
}

.sub-wrap .section-contents .terms-wrap .check-group li,
.sub-wrap .section-contents .terms-wrap .radio-group li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 4.4rem;
}

.sub-wrap .section-contents .terms-wrap .check-group li label,
.sub-wrap .section-contents .terms-wrap .radio-group li label {
  margin-left: 0.6rem;
}

.sub-wrap .section-contents .terms-wrap .btn-wrap {
  margin-top: 6rem;
}

.sub-wrap .section-contents .terms-wrap .juso-select select {
  width: 15rem;
  color: #222;
}

.sub-wrap .board-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -2rem;
  margin-top: -2rem;
}

.sub-wrap .board-list ul li {
  position: relative;
  width: calc(25% - 2rem);
  min-height: 36rem;
  margin-left: 2rem;
  margin-top: 2rem;
}

.sub-wrap .board-list ul li.no-news {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10rem 0;
  margin: 0;
  font-size: 2rem;
  line-height: 2.4rem;
  min-height: auto;
  text-align: center;
}

.sub-wrap .board-list ul li a {
  display: block;
  padding: 3rem 2rem;
  border: 1px solid #f0eeee;
  border-radius: 2rem;
}

.sub-wrap .board-list ul li .list-thumb {
  max-height: 18rem;
  padding-top: 2.6rem;
  border-radius: 1rem;
  overflow: hidden;
  font-size: 0;
}

.sub-wrap .board-list ul li .list-thumb img {
  width: 100%;
  border-radius: 1rem;
}

.sub-wrap .board-list ul li .list-company {
  display: none;
  position: absolute;
  top: 3rem;
  right: 2rem;
  font-size: 1.2rem;
  line-height: 2.6rem;
  font-weight: 600;
  color: #3B2C2E;
  padding: 0 1.4rem;
  border-radius: 1.4rem;
  background-color: #f0eeee;
}

.sub-wrap .board-list ul li .list-date {
  color: #999;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.sub-wrap .board-list ul li .list-date strong {
  display: block;
  font-size: 3.2rem;
  line-height: 3.8rem;
  font-weight: 400;
  color: #3B2C2E;
}

.sub-wrap .board-list ul li .list-title {
  min-height: 6.8rem;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 600;
  color: #3B2C2E;
  padding-top: 2rem;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}

.sub-wrap .board-list ul li .list-desc {
  min-height: 4.8rem;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: rgba(59, 44, 46, 0.6);
  padding-top: 1rem;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}

.sub-wrap .overview-wrap .left .swiper-container .swiper-wrapper .swiper-slide {
  font-size: 0;
}

.sub-wrap .overview-wrap .left .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
}

.sub-wrap .overview-wrap .left .swiper-container .swiper-button-prev,
.sub-wrap .overview-wrap .left .swiper-container .swiper-button-next {
  width: 4.2rem;
  height: 4.2rem;
  margin-top: -2.1rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.sub-wrap .overview-wrap .left .swiper-container .swiper-button-prev {
  left: 0;
  background-image: url(../images/icon_swiper_arrow_l.png);
}

.sub-wrap .overview-wrap .left .swiper-container .swiper-button-next {
  right: 0;
  background-image: url(../images/icon_swiper_arrow_r.png);
}

.sub-wrap .overview-wrap .left .swiper-target {
  margin-top: 2rem;
  width: 100%;
}

.sub-wrap .overview-wrap .left .swiper-target ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.sub-wrap .overview-wrap .left .swiper-target ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 2rem;
}

.sub-wrap .overview-wrap .left .swiper-target ul li:nth-of-type(1) {
  margin-left: 0;
}

.sub-wrap .overview-wrap .left .swiper-target ul li.active a:before {
  content: '';
  background-color: transparent;
}

.sub-wrap .overview-wrap .left .swiper-target ul li a {
  position: relative;
  display: block;
  font-size: 0;
}

.sub-wrap .overview-wrap .left .swiper-target ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.sub-wrap .overview-wrap .left .swiper-target ul li a img {
  width: 100%;
}

.sub-wrap .overview-wrap .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 4rem;
  margin-top: 2rem;
}

.sub-wrap .overview-wrap .right .bottom,
.sub-wrap .overview-wrap .right .top {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sub-wrap .overview-wrap .right ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-bottom: 1px solid #D5D5D5;
  padding: 1rem 0;
}

.sub-wrap .overview-wrap .right ul li .overview-title {
  min-width: 8rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.4rem;
  color: #3B2C2E;
}

.sub-wrap .overview-wrap .right ul li .overview-desc {
  font-size: 2rem;
  line-height: 2.4rem;
  padding-left: 1rem;
  color: #3B2C2E;
}

.sub-wrap .brand-wrap + .premium-wrap {
  padding-top: 12rem;
}

.sub-wrap .brand-wrap .brand-logo {
  width: 25rem;
  margin: 0 auto;
  font-size: 0;
}

.sub-wrap .brand-wrap .brand-logo img {
  width: 100%;
}

.sub-wrap .brand-wrap .brand-title {
  font-size: 4.8rem;
  line-height: 5.8rem;
  padding-top: 2rem;
  text-align: center;
  color: #3B2C2E;
}

.sub-wrap .brand-wrap .brand-title strong {
  font-weight: 600;
}

.sub-wrap .brand-wrap .brand-desc {
  font-size: 2rem;
  line-height: 2.4rem;
  color: #69504F;
  text-align: center;
  padding-top: 2rem;
}

.sub-wrap .brand-wrap .brand-list {
  margin-top: 12rem;
}

.sub-wrap .brand-wrap .brand-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -2rem;
  margin-left: -2rem;
}

.sub-wrap .brand-wrap .brand-list ul li {
  position: relative;
  width: calc(25% - 2rem);
  height: 23.6rem;
  border-radius: 2rem;
  overflow: hidden;
  margin-left: 2rem;
  margin-top: 2rem;
}

.sub-wrap .brand-wrap .brand-list ul li.flex-2 {
  width: calc(50% - 2rem);
}

.sub-wrap .brand-wrap .brand-list ul li figure {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  font-size: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.sub-wrap .brand-wrap .brand-list ul li figure img {
  width: 100%;
}

.sub-wrap .brand-wrap .brand-list ul li .list-title {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.9rem;
  padding: 1.4rem 0;
  color: #fff;
  text-align: center;
  background-color: #3B2C2E;
  z-index: 2;
  margin-top: 18.9rem;
}

.sub-wrap .brand-wrap .brand-list ul li .list-title strong {
  font-weight: 600;
}

.sub-wrap .brand-wrap .brand-comment {
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #69504F;
  padding-top: 2rem;
}

.sub-wrap .brand-wrap .brand-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12rem;
  margin-top: 6rem;
}

.sub-wrap .brand-wrap .brand-info .right {
  position: relative;
}

.sub-wrap .brand-wrap .brand-info .right:before {
  content: '';
  position: absolute;
  left: -6rem;
  top: 0;
  width: 0.1rem;
  height: 100%;
  background-color: #D5D5D5;
}

.sub-wrap .brand-wrap .brand-info figure {
  width: 16.4rem;
  margin: 0 auto;
}

.sub-wrap .brand-wrap .brand-info figure img {
  width: 100%;
}

.sub-wrap .brand-wrap .brand-info .info-title {
  font-size: 3.2rem;
  line-height: 3.8rem;
  font-weight: 600;
  color: #3B2C2E;
  text-align: center;
  padding-top: 4rem;
}

.sub-wrap .brand-wrap .brand-info .info-desc {
  font-size: 2rem;
  line-height: 2.4rem;
  text-align: center;
  color: #69504F;
  padding-top: 1.4rem;
}

.sub-wrap .brand-wrap .brand-theme {
  padding-top: 2rem;
}

.sub-wrap .brand-wrap .brand-theme .brand-inner {
  padding-top: 4rem;
}

.sub-wrap .brand-wrap .brand-theme figure {
  max-width: 63rem;
  margin: 0 auto;
}

.sub-wrap .brand-wrap .brand-theme figure.flex-wrap {
  width: calc(50% - 1rem);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sub-wrap .brand-wrap .brand-theme figure.flex-wrap img {
  margin-left: 2rem;
}

.sub-wrap .brand-wrap .brand-theme figure.flex-wrap img:nth-of-type(1) {
  margin-left: 0;
}

.sub-wrap .brand-wrap .brand-theme figure img {
  width: 100%;
}

.sub-wrap .brand-wrap .brand-theme .info-title {
  font-size: 3.6rem;
  line-height: 4.3rem;
  font-weight: 600;
  text-align: center;
  color: #307252;
  padding-top: 2rem;
}

.sub-wrap .brand-wrap .brand-theme .info-title.type2 {
  color: #3B2C2E;
}

.sub-wrap .brand-wrap .brand-theme .info-desc {
  font-size: 2rem;
  line-height: 2.4rem;
  padding-top: 1.4rem;
  color: #5D8873;
  text-align: center;
  letter-spacing: -0.4px;
}

.sub-wrap .brand-wrap .brand-theme .info-desc.type2 {
  color: #69504F;
}

.sub-wrap .brand-wrap .brand-theme .info-comment {
  padding-top: 4rem;
  font-size: 2.4rem;
  font-weight: 600;
  color: #3B2C2E;
  text-align: center;
}

.sub-wrap .map-wrap .map-list + .map-list {
  margin-top: 4.8rem;
  padding-top: 6rem;
}

.sub-wrap .map-wrap .map-list figure {
  width: 64rem;
  overflow: hidden;
  margin: 0 auto;
  font-size: 0;
  border: 1px solid #BFC0C0;
  border-radius: 2rem;
}

.sub-wrap .map-wrap .map-list figure img {
  width: 100%;
}

.sub-wrap .map-wrap .map-list .map-info {
  width: 64rem;
  margin: 0 auto;
  padding: 0.2rem 2rem 0;
}

.sub-wrap .map-wrap .map-list .map-info img {
  width: 1.6rem;
}

.sub-wrap .map-wrap .map-list .map-info table {
  border-top: 0;
}

.sub-wrap .map-wrap .map-list .map-info table tbody tr th,
.sub-wrap .map-wrap .map-list .map-info table tbody tr td {
  line-height: 2.9rem;
  padding: 1.8rem 0;
  border-color: #D5D5D5;
}

.sub-wrap .premium-wrap .premium-thumb-title {
  font-size: 4.4rem;
  line-height: 5.3rem;
  font-weight: 500;
  color: #35272A;
  text-align: center;
}

.sub-wrap .premium-wrap .premium-thumb-desc {
  font-size: 6.4rem;
  line-height: 7.6rem;
  font-weight: 700;
  color: #35272A;
  text-align: center;
  padding-bottom: 6rem;
}

.sub-wrap .premium-wrap .premium-thumb {
  position: relative;
}

.sub-wrap .premium-wrap .premium-thumb img {
  width: 100%;
}

.sub-wrap .premium-wrap .premium-box {
  text-align: center;
  border-radius: 2rem;
  padding: 14.7rem 0;
  background-image: url(../images/img_premium_01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.sub-wrap .premium-wrap .premium-box .premium-title {
  width: 22rem;
  margin: 0 auto;
  font-size: 0;
}

.sub-wrap .premium-wrap .premium-box .premium-title img {
  width: 100%;
}

.sub-wrap .premium-wrap .premium-box .premium-desc {
  font-size: 2.8rem;
  line-height: 3.4rem;
  color: #fff;
  padding-top: 4rem;
}

.sub-wrap .premium-wrap .premium-box .premium-desc dl dd {
  padding-top: 3.4rem;
}

.sub-wrap .premium-wrap .premium-box .premium-desc dl dd:nth-of-type(1) {
  padding-top: 0;
}

.sub-wrap .premium-wrap .premium-list {
  padding-top: 8rem;
}

.sub-wrap .premium-wrap .premium-list .list-title {
  font-size: 2.4rem;
  line-height: 2.9rem;
  text-align: center;
  font-weight: 700;
  color: #35272A;
}

.sub-wrap .premium-wrap .premium-list .card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 3rem;
}

.sub-wrap .premium-wrap .premium-list .card-list li figure {
  border-radius: 2rem;
  overflow: hidden;
  font-size: 0;
}

.sub-wrap .premium-wrap .premium-list .card-list li figure img {
  width: 100%;
}

.sub-wrap .premium-wrap .premium-list .card-list li .card-title {
  font-family: 'Abhaya Libre';
  font-size: 4rem;
  line-height: 4rem;
  font-weight: 700;
  color: #000;
  padding-top: 2rem;
}

.sub-wrap .premium-wrap .premium-list .card-list li .card-desc {
  font-size: 2.4rem;
  line-height: 2.9rem;
  padding-top: 1rem;
  color: #5A4241;
}

.sub-wrap .environment-wrap .environment-title {
  font-size: 4.4rem;
  line-height: 5.3rem;
  color: #35272A;
  text-align: center;
}

.sub-wrap .environment-wrap .environment-title strong {
  font-weight: 600;
}

.sub-wrap .environment-wrap .map-top {
  margin-top: 8rem;
}

.sub-wrap .environment-wrap .map-top figure {
  font-size: 0;
}

.sub-wrap .environment-wrap .map-top figure img {
  width: 100%;
}

.sub-wrap .environment-wrap .map-danger {
  margin-top: 8rem;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #3B2C2E;
}

.sub-wrap .environment-wrap .magnifier-wrap {
  position: relative;
  margin: 0 auto;
  padding-top: 8rem;
}

.sub-wrap .environment-wrap .magnifier-wrap .mgnifier-target img {
  width: 100%;
}

.sub-wrap .environment-wrap .magnifier-wrap .img-magnifier-glass {
  position: absolute;
  border: 2px solid #eee;
  cursor: none;
  opacity: 0;
  border-radius: 500px;
  width: 380px;
  height: 380px;
  -webkit-box-shadow: 0 0 0 7px #3b2c2e, 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 20px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 7px #3b2c2e, 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 20px 2px rgba(0, 0, 0, 0.25);
}

.sub-wrap .environment-wrap .environment-premium {
  padding-top: 8rem;
}

.sub-wrap .environment-wrap .environment-premium .environment-title {
  font-size: 5.6rem;
  line-height: 6.7rem;
  font-weight: 700;
  color: #35272A;
  text-align: center;
}

.sub-wrap .environment-wrap .environment-premium .infra-info {
  padding-top: 1rem;
}

.sub-wrap .environment-wrap .environment-premium .infra-info .infra-title {
  font-size: 2.8rem;
  line-height: 3.3rem;
  color: #5A4241;
  padding-top: 0;
}

.sub-wrap .environment-wrap .environment-premium .infra-info .infra-box {
  padding-top: 2rem;
}

.sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4rem;
}

.sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 2rem);
  flex: 0 0 calc(50% - 2rem);
  padding: 0;
  background-color: #fff;
  gap: 4rem;
}

.sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul li .box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -moz-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2rem;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 3.8rem;
  color: #3B2C2E;
}

.sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul li .box-title strong {
  font-weight: 600;
}

.sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul li .box-desc {
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #5A4241;
  padding-top: 1rem;
}

.sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul li .box-thumb {
  padding-top: 1rem;
}

.sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul li .box-thumb img {
  width: 100%;
}

.sub-wrap .promotion-wrap .tabs-wrap {
  margin: 0;
}

.sub-wrap .promotion-wrap .text-comment {
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #3B2C2E;
  padding-top: 1rem;
}

.sub-wrap .video-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.sub-wrap .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 280px) and (max-width: 1279px) {
  .wrap .is-pc {
    display: none;
  }
  .wrap .is-mobile {
    display: block;
  }
  .utility-wrap {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
  }
  .utility-wrap ul li {
    width: 14rem;
    height: 6.8rem;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .utility-wrap ul li a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2.4rem;
    padding: 0;
  }
  .utility-wrap ul li a:after {
    position: static;
    width: 2.2rem;
    height: 2.2rem;
    margin-left: 1rem;
  }
  .utility-wrap ul li:nth-of-type(1), .utility-wrap ul li:nth-of-type(2) {
    width: 100%;
    border-radius: 0;
  }
  .utility-wrap ul li:nth-of-type(2) {
    display: none;
  }
  .sub-wrap {
    padding-top: 6.4rem;
  }
  .sub-wrap .section-top {
    height: auto;
    padding: 4rem 0;
    background-image: url(../images/bg_section_top_02.png);
  }
  .sub-wrap .section-top .navigation ul li {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .sub-wrap .section-top .section-title {
    font-size: 2.8rem;
    line-height: 3.3rem;
  }
  .sub-wrap .section-top .section-desc {
    font-sizez: 1.6rem;
    line-height: 1.9rem;
  }
  .sub-wrap .section-contents .section-inner {
    padding: 6rem 1.6rem;
  }
  .sub-wrap .section-contents .overview-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sub-wrap .section-contents .overview-wrap .left {
    width: 100%;
  }
  .sub-wrap .section-contents .overview-wrap .left .swiper-container .swiper-button-next,
  .sub-wrap .section-contents .overview-wrap .left .swiper-container .swiper-button-prev {
    width: 2.8rem;
    height: 2.8rem;
  }
  .sub-wrap .section-contents .overview-wrap .left .swiper-target {
    margin-top: 1rem;
  }
  .sub-wrap .section-contents .overview-wrap .left .swiper-target ul li {
    margin-left: 1rem;
  }
  .sub-wrap .section-contents .overview-wrap .left .swiper-target ul li:nth-of-type(1) {
    margin-left: 0;
  }
  .sub-wrap .section-contents .overview-wrap .right {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }
  .sub-wrap .section-contents .overview-wrap .right .top,
  .sub-wrap .section-contents .overview-wrap .right .bottom {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .sub-wrap .section-contents .overview-wrap .right ul li .overview-title {
    font-size: 1.4rem;
  }
  .sub-wrap .section-contents .overview-wrap .right ul li .overview-desc {
    font-size: 1.4rem;
  }
  .sub-wrap .section-contents .brand-wrap + .premium-wrap {
    padding-top: 6rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-title {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-desc {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-list {
    margin-top: 4rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-list ul {
    max-width: 64rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    gap: 1.4rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-list ul li {
    width: calc(50% - 0.7rem);
    height: auto;
    margin: 0;
  }
  .sub-wrap .section-contents .brand-wrap .brand-list ul li.flex-2 {
    width: 100%;
  }
  .sub-wrap .section-contents .brand-wrap .brand-list ul li figure {
    position: static;
    -webkit-transform: none;
    transform: none;
  }
  .sub-wrap .section-contents .brand-wrap .brand-list ul li .list-title {
    font-size: 1.2rem;
    line-height: 1.4rem;
    padding: 1.2rem 1rem;
    margin: 0;
  }
  .sub-wrap .section-contents .brand-wrap .brand-comment {
    font-size: 1.2rem;
    line-height: 1.4rem;
    padding-top: 1rem;
    text-align: center;
  }
  .sub-wrap .section-contents .brand-wrap .brand-info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 3rem;
    gap: 0;
  }
  .sub-wrap .section-contents .brand-wrap .brand-info .left,
  .sub-wrap .section-contents .brand-wrap .brand-info .right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .sub-wrap .section-contents .brand-wrap .brand-info .right {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-info .right:before {
    left: 50%;
    top: 0;
    width: 50%;
    height: 0.1rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .sub-wrap .section-contents .brand-wrap .brand-info figure {
    width: 50%;
    max-width: 14rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-info .info-title {
    font-size: 2.4rem;
    line-height: 2.9rem;
    padding-top: 1rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-info .info-desc {
    font-size: 1.4rem;
    line-height: 1.7rem;
    padding-top: 1rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-theme {
    padding-top: 0;
  }
  .sub-wrap .section-contents .brand-wrap .brand-theme .brand-inner {
    padding-top: 4rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-theme figure.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  .sub-wrap .section-contents .brand-wrap .brand-theme figure.flex-wrap img {
    margin: 1.4rem 0 0;
  }
  .sub-wrap .section-contents .brand-wrap .brand-theme .info-title {
    font-size: 2.4rem;
    line-height: 2.9rem;
    padding-top: 1rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-theme .info-desc {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  .sub-wrap .section-contents .brand-wrap .brand-theme .info-comment {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .sub-wrap .section-contents .map-wrap .map-list {
    max-width: 64rem;
    margin: 0 auto;
  }
  .sub-wrap .section-contents .map-wrap .map-list + .map-list {
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .sub-wrap .section-contents .map-wrap .map-list figure {
    width: 100%;
  }
  .sub-wrap .section-contents .map-wrap .map-list .map-info {
    width: 100%;
    padding: 0;
  }
  .sub-wrap .section-contents .map-wrap .map-list .map-info img {
    width: 1.4rem;
  }
  .sub-wrap .section-contents .map-wrap .map-list .map-info table tbody tr th,
  .sub-wrap .section-contents .map-wrap .map-list .map-info table tbody tr td {
    font-size: 1.6rem;
    line-height: 1.9rem;
    padding: 1rem 0;
  }
  .sub-wrap .section-contents .board-wrap .board-list ul {
    margin-left: -1.4rem;
    margin-top: -1.4rem;
  }
  .sub-wrap .section-contents .board-wrap .board-list ul li {
    width: calc(33.3% - 1.4rem);
    min-height: auto;
    margin-left: 1.4rem;
    margin-top: 1.4rem;
  }
  .sub-wrap .section-contents .board-wrap .board-list ul li a {
    padding: 1.6rem 1.6rem;
  }
  .sub-wrap .section-contents .board-wrap .board-list ul li .list-company {
    top: 1.6rem;
  }
  .sub-wrap .section-contents .board-wrap .board-list ul li .list-thumb {
    padding-top: 2rem;
  }
  .sub-wrap .section-contents .board-wrap .board-list ul li .list-title {
    font-size: 1.6rem;
    line-height: 1.9rem;
    padding-top: 1rem;
    min-height: 4.8rem;
  }
  .sub-wrap .section-contents .board-wrap .board-list ul li .list-desc {
    font-size: 1.4rem;
    line-height: 1.7rem;
    min-height: 4.4rem;
  }
  .sub-wrap .section-contents .terms-wrap .terms-title {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-top: 3rem;
  }
  .sub-wrap .section-contents .terms-wrap .terms-desc {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .sub-wrap .section-contents .terms-wrap .terms-box {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .sub-wrap .section-contents .terms-wrap .radio-group {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .sub-wrap .section-contents .terms-wrap .radio-group li {
    height: 2.4rem;
  }
  .sub-wrap .section-contents .terms-wrap .check {
    font-size: 1.2rem;
    line-height: 1.4rem;
    margin-top: 3rem;
    padding: 1.5rem 1rem;
  }
  .sub-wrap .section-contents .terms-wrap .check dl {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .sub-wrap .section-contents .terms-wrap .table-wrap tbody tr th,
  .sub-wrap .section-contents .terms-wrap .table-wrap tbody tr td {
    font-size: 1.2rem;
    padding: 1rem 1rem;
  }
  .sub-wrap .section-contents .terms-wrap .table-wrap tbody tr th select,
  .sub-wrap .section-contents .terms-wrap .table-wrap tbody tr th input[type="number"],
  .sub-wrap .section-contents .terms-wrap .table-wrap tbody tr th input[type="text"],
  .sub-wrap .section-contents .terms-wrap .table-wrap tbody tr td select,
  .sub-wrap .section-contents .terms-wrap .table-wrap tbody tr td input[type="number"],
  .sub-wrap .section-contents .terms-wrap .table-wrap tbody tr td input[type="text"] {
    height: 3.6rem;
    font-size: 1.2rem;
  }
  .sub-wrap .premium-wrap .premium-thumb-title {
    font-size: 2.4rem;
    line-height: 5.3rem;
  }
  .sub-wrap .premium-wrap .premium-thumb-desc {
    font-size: 3.6rem;
    line-height: 4.3rem;
    padding-bottom: 3rem;
  }
  .sub-wrap .premium-wrap .premium-thumb:before {
    height: 3rem;
    margin: 0 auto 3rem;
  }
  .sub-wrap .premium-wrap .premium-box {
    padding: 5rem 2rem;
  }
  .sub-wrap .premium-wrap .premium-box .premium-title {
    width: 17rem;
  }
  .sub-wrap .premium-wrap .premium-box .premium-desc {
    font-size: 1.6rem;
    line-height: 1.9rem;
    padding-top: 3rem;
  }
  .sub-wrap .premium-wrap .premium-box .premium-desc dl dd {
    padding-top: 1.6rem;
  }
  .sub-wrap .premium-wrap .premium-list {
    padding-top: 4rem;
  }
  .sub-wrap .premium-wrap .premium-list .list-title {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .sub-wrap .premium-wrap .premium-list .card-list {
    margin-top: 2rem;
    gap: 2rem;
  }
  .sub-wrap .premium-wrap .premium-list .card-list li .card-title {
    font-size: 2.4rem;
    line-height: 2.9rem;
    padding-top: 1.4rem;
  }
  .sub-wrap .premium-wrap .premium-list .card-list li .card-desc {
    font-size: 1.4rem;
    line-height: 1.7rem;
    padding-top: 0.5rem;
  }
  .sub-wrap .environment-wrap .environment-title {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .sub-wrap .environment-wrap .map-top {
    margin-top: 4rem;
  }
  .sub-wrap .environment-wrap .map-danger {
    margin-top: 4rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .sub-wrap .environment-wrap .magnifier-wrap {
    width: 100%;
    padding-top: 4rem;
  }
  .sub-wrap .environment-wrap .magnifier-wrap .img-magnifier-glass {
    width: 20rem;
    height: 20rem;
  }
  .sub-wrap .environment-wrap .environment-premium {
    padding-top: 4rem;
  }
  .sub-wrap .environment-wrap .environment-premium .environment-title {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
  .sub-wrap .environment-wrap .environment-premium .infra-info .badge-list ul {
    gap: 0.6rem;
  }
  .sub-wrap .environment-wrap .environment-premium .infra-info .badge-list ul li {
    padding: 1.2rem 1.4rem;
  }
  .sub-wrap .environment-wrap .environment-premium .infra-info .badge-list ul li span {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  .sub-wrap .environment-wrap .environment-premium .infra-info .badge-list ul li span:after {
    margin-right: -0.6rem;
  }
  .sub-wrap .environment-wrap .environment-premium .infra-info .infra-title {
    font-size: 2.4rem;
    line-height: 2.9rem;
  }
  .sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul {
    gap: 1.4rem;
  }
  .sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul li {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 0.7rem);
    flex: 0 0 calc(50% - 0.7rem);
    padding: 0;
  }
  .sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul li figure {
    width: 2.4rem;
  }
  .sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul li .box-title {
    font-size: 2rem;
    line-height: 2.4rem;
    padding-top: 0;
    gap: 1.4rem;
  }
  .sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul li .box-desc {
    font-size: 1.4rem;
    line-height: 1.7rem;
    padding-top: 1rem;
  }
  .sub-wrap .phone-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -moz-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -moz-justify-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .sub-wrap .juso-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -moz-align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -moz-justify-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .sub-wrap .promotion-wrap .text-comment {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}

@media (min-width: 280px) and (max-width: 767px) {
  .sub-wrap .section-contents .board-wrap .board-list ul {
    margin-left: -1.4rem;
    margin-top: -1.4rem;
  }
  .sub-wrap .section-contents .board-wrap .board-list ul li {
    width: calc(100% - 1.4rem);
    min-height: auto;
    margin-left: 1.4rem;
    margin-top: 1.4rem;
  }
  .sub-wrap .section-contents .board-wrap .board-list ul li .list-thumb {
    max-height: none;
  }
  .sub-wrap .premium-wrap .premium-list .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-wrap .environment-wrap .environment-premium .infra-info .infra-box ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

.is-mobile {
  display: none;
}

.wrap.main article {
  background-color: #3B2C2E;
}

.wrap.main header {
  -webkit-transform: translateY(-200%);
  transform: translateY(-200%);
}

.wrap.main header.end {
  -webkit-transform: translateY(0%) !important;
  transform: translateY(0%) !important;
}

.wrap.main .utility-wrap {
  opacity: 0 !important;
  -webkit-transition: 1s;
  transition: 1s;
}

.wrap.main .utility-wrap.end {
  opacity: 1 !important;
}

article {
  width: 100%;
  overflow: hidden;
}

article .section-inner {
  width: 128rem;
  margin: 0 auto;
}

@media (min-width: 280px) and (max-width: 1279px) {
  article .section-inner {
    width: 100%;
    padding: 0 1.6rem;
  }
}

@keyframes scaleDown {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    /* 시작 크기 */
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    /* 최종 크기 */
  }
}
