@charset "utf-8";

/* basic-N1 */
.basic-N1 {
  position: sticky;
  top: 0;
  min-height: auto;
  width: 100%;
  z-index: 200;
  background-color: var(--white);
}

.basic-N1 .header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 8rem;
  z-index: 200;
}

.basic-N1 .header-title {
  margin-bottom: 0;
}

.basic-N1 .header-title a {
  height: 3.3rem;
}

.basic-N1 .header-title img {
  height: 100%;
  object-fit: contain;
}

.basic-N1 .header-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}

.basic-N1 .header-gnblist {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.basic-N1 .header-gnblink {
  padding: 2.8rem 3rem;
  text-align: center;
  white-space: nowrap;
}

.basic-N1 .header-gnblink span {
  position: relative;
}

.basic-N1 .header-gnblink span::after {
  content: "";
  height: 0.2rem;
  width: 100%;
  transition: 0.3s;
  transform: scaleX(0);
}

.basic-N1 .header-sublist {
  min-height: 0;
  position: absolute;
  top: 100%;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.basic-N1 .header-gnbitem:hover .header-sublist {
  min-height: auto;
  opacity: 1;
  overflow: hidden;
  pointer-events: auto;
}

.basic-N1 .header-gnbitem:hover .header-gnblink span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #111111;
  transform: scaleX(1);
}

.basic-N1 .header-subitem {
  width: 14rem;
  background-color: var(--white);
  overflow: hidden;
}

.basic-N1 .header-sublink {
  width: 100%;
  padding: 1rem 2rem;
}

.basic-N1 .header-sublink:hover {
  background-color: #111111;
  color: var(--white);
}

.basic-N1 .header-right {
  display: flex;
  align-items: center;
}

.basic-N1 .header-right button {
  max-width: 3.2rem;
  background: none;
  border: none;
}

.basic-N1 .header-right button img {
  width: auto;
  max-height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.basic-N1 .header-utils>ul {
  display: flex;
  align-items: center;
}

.basic-N1 .header-utils>ul>li {
  margin-left: 1.2rem;
}

.basic-N1 .header-utils>ul>li>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

.basic-N1 .header-utils {
  display: flex;
  align-items: center;
}

.basic-N1 .header-utils .btn-allmenu {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.basic-N1 .header-utils .btn-allmenu:hover .ico-hamburger:nth-child(2) {
  width: 2.4rem;
}

.basic-N1 .header-utils .btn-allmenu .ico-hamburger,
.basic-N1 .btn-momenu .ico-hamburger {
  width: 2.4rem;
  height: 0.2rem;
  background-color: var(--black);
  border-radius: 1rem;
  transition: width 0.3s, transform 0.3s, opacity 0.3s;
  will-change: width, transform, opacity;
}

.basic-N1 .header-utils .btn-allmenu .ico-hamburger:nth-child(even),
.basic-N1 .btn-momenu .ico-hamburger:nth-child(2) {
  width: 1.4rem;
}

.basic-N1 .btn-momenu {
  display: none;
}

.basic-N1 .btn-moclose {
  display: none;
}

.basic-N1 .header-fullmenu {
  position: fixed;
  z-index: 99999;
  padding: 0 2.4rem;
  background-color: var(--black);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.basic-N1 .header-fullmenu.fullmenu-right {
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
}

.basic-N1 .header-fullmenu.fullmenu-left {
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
}

.basic-N1 .header-fullmenu.fullmenu-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
}

.basic-N1 .header-fullmenu.fullmenu-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
}

.basic-N1 .header-fullmenu.fullmenu-active {
  width: 100%;
  height: 100vh;
  opacity: 1;
  visibility: visible;
}

.basic-N1 .fullmenu-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 128rem;
  margin: 0 auto;
}

.basic-N1 .fullmenu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10rem;
}

.basic-N1 .fullmenu-title {
  margin-bottom: 0;
}

.basic-N1 .fullmenu-title-link {
  width: 13.6rem;
  height: 4.3rem;
}

.basic-N1 .fullmenu-title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.basic-N1 .fullmenu-gnblist {
  display: flex;
  justify-content: center;
}

.basic-N1 .fullmenu-gnbitem {
  width: 20%;
}

.basic-N1 .fullmenu-gnbitem+.fullmenu-gnbitem {
  margin-left: 4rem;
}

.basic-N1 .fullmenu-gnblink {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.basic-N1 .fullmenu-gnblink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 0.1rem;
  background-color: var(--white) ff;
  transition: 0.2s;
}

.basic-N1 .fullmenu-gnblink.on::after {
  width: 18rem;
}

.basic-N1 .fullmenu-sublist {
  padding-top: 4rem;
}

.basic-N1 .fullmenu-subitem+.fullmenu-subitem {
  padding-top: 0.8rem;
}

.basic-N1 .fullmenu-sublink {
  color: #a2a2a2;
  position: relative;
  padding-bottom: 5px;
  transition: 0.3s;
}

.basic-N1 .fullmenu-sublink::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  top: 100%;
  right: 0;
  transition: width 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.basic-N1 .fullmenu-sublink:hover {
  color: var(--white);
}

.basic-N1 .fullmenu-sublink:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

.basic-N1 .fullmenu-close {
  position: fixed;
  right: 8rem;
  top: 2.4rem;
  width: 3.2rem;
  height: 3.2rem;
  background-color: transparent;
  border: none;
}

.basic-N1 .fullmenu-close img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .basic-N1 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .basic-N1 .header-container {
    min-height: 6rem;
  }

  .basic-N1 .header-title a {
    width: 12rem;
  }

  .basic-N1 .header-title-link {
    height: 2.6rem;
  }

  .basic-N1 .header-center {
    width: 100%;
    height: 0;
    top: 100%;
    left: 0;
    transform: none;
  }

  .basic-N1 .header-gnb {
    width: 100%;
    height: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    overflow: hidden;
    padding: 0 2.4rem;
    transition: height 0.3s;
    z-index: 9;
  }

  .basic-N1 .header-gnblist {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 0.1s;
  }

  .basic-N1 .header-gnbitem:hover .header-gnblink span {
    border: none;
  }

  .basic-N1 .header-gnbitem:hover .header-gnblink span::after {
    content: none;
  }

  .basic-N1 .header-gnblink {
    display: flex;
    align-items: flex-end;
    width: 100%;
    padding: 2rem 0;
    text-align: left;
  }

  .basic-N1 .header-sublist {
    display: none;
    position: relative;
    opacity: 1;
    padding: 2rem 0 4rem 0;
  }

  .basic-N1 .header-gnbitem.item-active .header-gnblink {
    border-bottom: 1px solid #111111;
  }

  .basic-N1 .header-subitem {
    width: 100%;
  }

  .basic-N1 .header-subitem+.header-subitem {
    padding-top: 0.8rem;
  }

  .basic-N1 .header-sublink {
    padding: 0;
    color: var(--text-color3);
  }

  .basic-N1 .header-sublink:active {
    color: #111111;
  }

  .basic-N1 .header-sublink:hover {
    background-color: var(--white);
    color: #111111;
  }

  .basic-N1 .header-right button,
  .basic-N1 .header-utils .member a {
    width: 2.8rem;
    height: 2.8rem;
  }

  .basic-N1 .header-utils>ul>li {
    margin-left: 0.6rem;
  }

  .basic-N1 .header-utils .utils-btn {
    width: 2.8rem;
    height: 2.8rem;
  }

  .basic-N1 .header-utils .btn-allmenu {
    display: none;
  }

  .basic-N1 .btn-momenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    margin-left: 0.6rem;
  }

  .basic-N1 .btn-momenu .ico-hamburger {
    width: 2rem;
  }

  .basic-N1 .btn-momenu .ico-hamburger:nth-child(2) {
    width: 1.2rem;
  }

  .basic-N1.block-active .header-center {
    pointer-events: auto;
  }

  .basic-N1.block-active .header-title {
    height: 6rem;
    display: flex;
    align-items: center;
  }

  .basic-N1.block-active .header-gnb {
    height: calc(100vh - 6rem);
    padding-bottom: 19rem;
    overflow-y: auto;
  }

  .basic-N1.block-active .header-gnblist {
    opacity: 1;
    visibility: visible;
  }

  .basic-N1 .header-gnbitem:has(.header-subitem) .header-gnblink::after {
    content: "";
    display: flex;
    width: 1.6rem;
    height: 1.6rem;
    background-image: url(../icons/ico_downarrow_black.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transition: transform 0.3s;
    will-change: transform;
  }

  .basic-N1.block-active .header-gnblink {
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
  }

  .basic-N1.block-active .header-gnbitem.item-active .header-gnblink::after {
    content: "";
    transform: rotate(180deg);
  }

  .basic-N1.block-active .btn-momenu .ico-hamburger {
    width: 2.8rem;
  }

  .basic-N1.block-active .btn-momenu .ico-hamburger:nth-child(1) {
    transform: translateY(0.8rem) rotate(45deg);
  }

  .basic-N1.block-active .btn-momenu .ico-hamburger:nth-child(3) {
    transform: translateY(-0.8rem) rotate(-45deg);
  }

  .basic-N1.block-active .btn-momenu .ico-hamburger:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }

  .basic-N1 .header-fullmenu {
    display: none;
  }
}
/* basic-N5 */
:root {
  --width-mjju1302: 0px;
  --height-mjju1302: 600px;
}

.basic-N5 {
  position: relative;
  overflow: hidden;
}

.basic-N5 .contents-container {
  display: block;
  height: 80rem;
}

.basic-N5 .fullscreen {
  height: calc(100vh - 8rem);
  min-height: calc(100vh - 8rem);
}

.basic-N5 .contents-swiper {
  position: relative;
  width: 100vw;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.basic-N5 .swiper-wrapper {
  width: 100%;
}

.basic-N5 .swiper-slide {
  position: relative;
}

.basic-N5 .contents-backimg,
.basic-N5 .contents-backimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.basic-N5 .contents-slide-group {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0 8rem;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.basic-N5 .textset {
  padding: 0;
}

.basic-N5 .textset-tit {
  color: var(--white);
  text-align: center;
  word-break: keep-all;
}

.basic-N5 .textset-desc {
  color: var(--text-color4);
  word-break: keep-all;
}

.basic-N5 .btnset {
  min-width: 18rem;
  margin-top: 10rem;
}

.basic-N5 .contents-control {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: absolute;
  left: 50%;
  bottom: 8rem;
  transform: translateX(-50%);
  z-index: 10;
}

.basic-N5 .contents-deco {
  display: inline-block;
  width: 1.2rem;
  height: 0.2rem;
  background: var(--white);
  opacity: 0.5;
  border-radius: 1rem;
}

.basic-N5 .swiper-button-prev,
.basic-N5 .swiper-button-next {
  position: static;
  flex-shrink: 0;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-top: 0;
  background-image: url(../icons/ico_arrow_withe.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
  transition: 0.3s;
}

.basic-N5 .swiper-button-prev {
  transform: rotate(180deg);
}

.basic-N5 .swiper-button-prev:after,
.basic-N5 .swiper-button-next:after {
  content: none;
}

.basic-N5 .swiper-button-prev:hover,
.basic-N5 .swiper-button-next:hover {
  opacity: 1;
}

.basic-N5 .swiper-pagination {
  display: flex;
  align-items: center;
  position: static;
  gap: 0.8rem;
}

.basic-N5 .swiper-pagination-current {
  font-weight: 500;
  color: var(--white);
}

.basic-N5 .swiper-pagination-total {
  font-weight: 500;
  color: var(--text-color4);
}

.basic-N5 .swiper-button-play,
.basic-N5 .swiper-button-pause {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  opacity: 0.5;
  transition: 0.3s;
  cursor: pointer;
}

.basic-N5 .swiper-button-play img,
.basic-N5 .swiper-button-pause img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.basic-N5 .swiper-button-play:hover,
.basic-N5 .swiper-button-pause:hover {
  opacity: 1;
}

.basic-N5 .swiper-button-play {
  display: none;
}

@media (max-width: 1200px) {
  .basic-N5 .contents-slide-group {
    padding: 0 4rem;
  }
}

@media (max-width: 992px) {
  .basic-N5 .fullscreen {
    height: calc(100vh - 6rem);
    min-height: calc(100vh - 6rem);
  }

  .basic-N5 .contents-slide-group {
    width: 100%;
    padding: 0 1.6rem;
  }

  .basic-N5 .textset .textset-tit+.textset-desc {
    margin-top: 2rem;
  }

  .basic-N5 .btnset {
    min-width: 16rem;
    margin-top: 8rem;
  }

  .basic-N5 .contents-control {
    bottom: 6rem;
  }
}

@media (max-width: 576px) {
  .basic-N5 .textset-desc br {
    display: none;
  }
}
/* basic-N6 */
.basic-N6 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N6 .textset {
  text-align: center;
  margin-bottom: 0;
}

.basic-N6 .textset-desc {
  color: var(--text-color3);
}

@media (max-width: 992px) {
  .basic-N6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N6 .textset .textset-tit+.textset-desc {
    margin-top: 2rem;
  }

  .basic-N6 .textset-desc {
    word-break: keep-all;
  }

  .basic-N6 .textset-desc br {
    display: none;
  }
}
/* basic-N7 */
.basic-N7 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N7 .videoset {
  height: auto;
}

.basic-N7 .videoset-button {
  height: 42rem;
  z-index: 1;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N7 .contents-bottom {
  position: relative;
  width: calc(100% + 3.2rem);
  margin: -21rem -1.6rem 0 -1.6rem;
  padding: 21rem 1.6rem 5rem 1.6rem;
}

.basic-N7 .contents-bottom::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #f7f7fb;
}

.basic-N7 .textset {
  margin-top: 6rem;
}

.basic-N7 .textset .textset-desc {
  color: var(--text-color3);
}

@media (max-width: 992px) {
  .basic-N7 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N7 .contents-bottom {
    padding-bottom: 4rem;
  }

  .basic-N7 .textset {
    margin-top: 4rem;
  }

  .basic-N7 .textset .textset-tit+.textset-desc {
    margin-top: 2rem;
  }

  .basic-N7 .textset .textset-desc {
    word-break: keep-all;
  }

  .basic-N7 .textset .textset-desc br {
    display: none;
  }
}
/* basic-N8 */
.basic-N8 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N8 .cardset {
  width: calc(50% + 4rem);
  padding-bottom: 10rem;
}

.basic-N8 .cardset+.cardset {
  margin-top: 10rem;
  margin-left: -8rem;
  padding-bottom: 0;
}

.basic-N8 .cardset .cardset-body {
  width: calc(100% - 10rem);
  padding: 0;
}

.basic-N8 .cardset .cardset-figure {
  width: 100%;
  height: 44rem;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N8 .cardset .cardset-figure+.cardset-body {
  margin-top: 4rem;
}

.basic-N8 .cardset .cardset-tit+.cardset-desc {
  margin-top: 2rem;
}

.basic-N8 .cardset .cardset-desc {
  display: block;
  color: var(--text-color3);
}

.basic-N8 .textset {
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .basic-N8 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N8 .cardset {
    width: 100%;
    padding-bottom: 0;
  }

  .basic-N8 .cardset+.cardset {
    margin-left: 0;
    margin-top: 4rem;
  }

  .cardset .cardset-figure+.cardset-body {
    margin-top: 3rem;
  }

  .basic-N8 .cardset .cardset-body {
    width: 100%;
  }
}
/* basic-N9 */
.basic-N9 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N9 .contents-inner {
  position: relative;
}

.basic-N9 .textset {
  margin-bottom: 6rem;
}

.basic-N9 .textset .textset-desc {
  margin-top: 1.9rem;
  padding-right: 14.4rem;
  color: var(--text-color3);
}

.basic-N9 .contents-swiper {
  width: calc(100% + 32rem);
}

.basic-N9 .swiper-slide {
  width: calc(100% / 3);
  margin-right: 4rem;
}

.basic-N9 .swiper-slide .cardset .cardset-tit {
  color: var(--white);
}

.basic-N9 .swiper-slide .cardset .cardset-tit+.cardset-desc {
  margin: 1.6rem 0 0 0;
}

.basic-N9 .contents-control {
  position: absolute;
  right: 0;
  bottom: 44rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.basic-N9 .swiper-button-prev,
.basic-N9 .swiper-button-next {
  display: inline-block;
  flex-shrink: 0;
  position: static;
  margin-top: 0;
  width: 6rem;
  height: 6rem;
  background-image: url(../icons/ico_arrow_black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.4rem;
  border-radius: 50%;
  background-color: #f7f7fb;
  opacity: 0.7;
  transition: 0.3s;
}

.basic-N9 .swiper-button-prev {
  transform: rotate(180deg);
}

.basic-N9 .swiper-button-prev::after,
.basic-N9 .swiper-button-next::after {
  content: none;
}

.basic-N9 .contents-bottom .textset-desc {
  padding-right: 0;
}

.basic-N9 .cardset {
  overflow: hidden;
}

.basic-N9 .cardset .cardset-figure {
  height: 38rem;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N9 .cardset .cardset-figure+.cardset-body {
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 100%;
  padding: 3.2rem;
  margin-top: 0;
  background: transparent;
}

.basic-N9 .cardset .cardset-tit {
  color: var(--text-color1);
}

.basic-N9 .cardset .cardset-tit+.cardset-desc {
  margin-top: 1.6rem;
  letter-spacing: -0.1rem;
  margin: 4rem 0;
}

.basic-N9 .cardset .cardset-desc {
  color: var(--text-color3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-top: 0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  border-top: 0 !important;
}

.basic-N9 .cardset-cont {
  padding: 6rem 4rem;
}

@media (max-width: 992px) {
  .basic-N9 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N9 .textset {
    margin-bottom: 4rem;
  }

  .basic-N9 .textset .textset-desc {
    padding-right: 0;
    word-break: keep-all;
  }

  .basic-N9 .textset .textset-desc br {
    display: none;
  }

  .basic-N9 .contents-control {
    position: relative;
    bottom: 0;
    justify-content: flex-end;
    margin-bottom: 4rem;
  }

  .basic-N9 .contents-swiper {
    width: 100%;
  }

  .basic-N9 .swiper-slide {
    width: 100%;
    margin-right: 2rem;
  }

  .basic-N9 .row {
    --th-gutter: 0.2rem;
  }

  .basic-N9 .cardset .cardset-figure+.cardset-body {
    padding: 2rem;
  }

  .basic-N9 .cardset {
    width: 100%;
  }

  .basic-N9 .cardset+.cardset {
    margin-top: 2rem;
  }

  .basic-N9 .cardset .cardset-cont {
    padding: 4rem 2.4rem;
  }

  .basic-N9 .cardset-body {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .basic-N9 .cardset-tit+.cardset-desc br {
    display: none;
  }
}
/* basic-N57 */
.basic-N57 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background: #f7f7fb;
}

.basic-N57 .textset {
  margin-bottom: 8rem;
}

.basic-N57 .cardset {
  overflow: hidden;
}

.basic-N57 .cardset .cardset-figure {
  height: 38rem;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N57 .cardset .cardset-figure+.cardset-body {
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 100%;
  padding: 3.2rem;
  margin-top: 0;
  background: transparent;
}

.basic-N57 .cardset .cardset-tit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-color1);
}

.basic-N57 .cardset .cardset-tit+.cardset-desc {
  margin-top: 1.6rem;
  letter-spacing: -0.1rem;
  margin: 4rem 0;
}

.basic-N57 .cardset .cardset-desc {
  color: var(--text-color3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-top: 0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  border-top: 0 !important;
}

.basic-N57 .cardset-cont {
  padding: 6rem 4rem;
}

.basic-N57 .contents-btn {
  margin-top: 4rem;
  text-align: center;
}

.basic-N57 .contents-btn .btnset {
  min-width: 18rem;
  padding: 0 2rem;
}

.basic-N57 .contents-btn .btnset::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: var(--white);
  background-image: url(../icons/ico_plus_white.svg);
}

@media (max-width: 992px) {
  .basic-N57 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N57 .textset {
    margin-bottom: 4rem;
  }

  .basic-N57 .textset .textset-desc {
    padding-right: 0;
    word-break: keep-all;
  }

  .basic-N57 .textset .textset-desc br {
    display: none;
  }

  .basic-N57 .row {
    --th-gutter: 0.2rem;
  }

  .basic-N57 .cardset .cardset-figure+.cardset-body {
    padding: 2rem;
  }

  .basic-N57 .cardset {
    width: 100%;
  }

  .basic-N57 .cardset+.cardset {
    margin-top: 2rem;
  }

  .basic-N57 .cardset .cardset-cont {
    padding: 4rem 2.4rem;
  }

  .basic-N57 .cardset-body {
    width: 100%;
  }

  .basic-N57 .contents-btn .btnset {
    min-width: 16rem;
    padding: 0 1.6rem;
  }
}

@media (max-width: 576px) {
  .basic-N57 .cardset-tit+.cardset-desc br {
    display: none;
  }
}
/* basic-N4 */
.basic-N4 {
  position: relative;
  background: #111;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  overflow: hidden;
}

.basic-N4 .footer-top {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 1.6rem;
}

.basic-N4 .footer-logo {
  text-align: center;
  margin-bottom: 0;
}

.basic-N4 .footer-logo img {
  height: 3.3rem;
  object-fit: contain;
}

.basic-N4 .footer-menulist {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--fs-p2);
}

.basic-N4 .footer-menulink a {
  padding-right: 1.2rem;
  color: var(--white);
}

.basic-N4 .footer-menulink+.footer-menulink a {
  padding-left: 1.2rem;
}

.basic-N4 .footer-menulink {
  position: relative;
}

.basic-N4 .footer-menulink+.footer-menulink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 1.4rem;
  background: rgba(var(--white-rgb), 0.1);
}

.basic-N4 .footer-snslist {
  display: flex;
  align-items: center;
}

.basic-N4 .footer-snsitem+.footer-snsitem {
  margin-left: 0.8rem;
}

.basic-N4 .footer-snslink {
  width: 3.6rem;
  height: 3.6rem;
  padding: 0.6rem;
}

.basic-N4 .footer-snslink img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.basic-N4 .footer-bottom {
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.basic-N4 .footer-txt {
  display: flex;
  justify-content: center;
}

.basic-N4 .footer-txt+.footer-txt {
  margin-top: 0.3rem;
}

.basic-N4 .footer-txt p,
.basic-N4 .footer-txt span {
  margin-bottom: 0;
  color: var(--text-color3);
}

.basic-N4 .footer-txt p+p {
  margin-left: 0.8rem;
}

.basic-N4 .footer-txt p span+span {
  margin-left: 0.8rem;
}

.basic-N4 .info-area {
  overflow-y: auto;
}

.basic-N4 .info-group+.info-group {
  margin-top: 2.4rem;
}

.basic-N4 .info-group strong {
  padding-bottom: 1.2rem;
  display: block;
}

.basic-N4 .info-desc {
  max-height: 20.7rem;
  padding: 1.6rem;
  background: #f8f8fa;
  border-radius: 1.6rem;
  overflow-y: auto;
  scrollbar-width: none;
}

.basic-N4 .info-desc p.fw-medium {
  font-weight: var(--fw-medium);
}

.basic-N4 .info-desc .mtb {
  margin: 2.4rem 0;
}

.basic-N4 .info-desc em {
  font-style: normal;
  font-weight: 600;
  margin: 2.4rem 0 1rem;
  position: relative;
  display: flex;
  align-items: center;
}

.basic-N4 .info-list em::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: var(--black);
  border-radius: 50%;
  margin-right: 0.8rem;
}

.basic-N4 .info-list p {
  padding-left: 1.2rem;
}

@media (max-width: 992px) {
  .basic-N4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .basic-N4 .footer-top {
    margin-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .basic-N4 .footer-logo a {
    height: 2.6rem;
  }

  .basic-N4 .footer-menulist {
    justify-content: flex-start;
    position: relative;
    left: 0;
    transform: translate(0);
    margin-top: 1.3rem;
  }

  .basic-N4 .footer-menulink a {
    padding-right: 0.8rem;
  }

  .basic-N4 .footer-menulink+.footer-menulink a {
    padding-left: 0.8rem;
  }

  .basic-N4 .footer-snslist {
    margin: 2.4rem 0 1.6rem 0;
    justify-content: center;
  }

  .basic-N4 .footer-bottom {
    text-align: left;
  }

  .basic-N4 .footer-txt {
    flex-direction: column;
  }

  .basic-N4 .footer-txt p+p {
    margin-left: 0;
  }

  .basic-N4 .footer-txt+.footer-txt {
    margin-top: 0.6rem;
  }
}

@media (max-width: 375px) {
  .basic-N4 .footer-menulist {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .basic-N4 .footer-menulink {
    flex-shrink: 0;
  }
}
/* basic-N29 */
.basic-N29[id='bmMin4YQ5D'] {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N29[id='bmMin4YQ5D'] .textset .textset-subtit {
  margin-top: 6rem;
}

.basic-N29[id='bmMin4YQ5D'] .textset .textset-desc {
  margin-top: 2rem;
  color: var(--text-color3);
}

.basic-N29[id='LEmJJsCPaN'] {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N29[id='LEmJJsCPaN'] .textset .textset-subtit {
  margin-top: 6rem;
}

.basic-N29[id='LEmJJsCPaN'] .textset .textset-desc {
  margin-top: 2rem;
  color: var(--text-color3);
}

.basic-N29[id='YamjJsEa13'] {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N29[id='YamjJsEa13'] .textset .textset-subtit {
  margin-top: 6rem;
}

.basic-N29[id='YamjJsEa13'] .textset .textset-desc {
  margin-top: 2rem;
  color: var(--text-color3);
}

.basic-N29[id='TRMin4ZSmA'] {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N29[id='TRMin4ZSmA'] .textset .textset-subtit {
  margin-top: 6rem;
}

.basic-N29[id='TRMin4ZSmA'] .textset .textset-desc {
  margin-top: 2rem;
  color: var(--text-color3);
}

@media (max-width: 992px) {
  .basic-N29[id='bmMin4YQ5D'] {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N29[id='bmMin4YQ5D'] .textset .textset-subtit {
    margin-top: 4rem;
  }

  .basic-N29[id='LEmJJsCPaN'] {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N29[id='LEmJJsCPaN'] .textset .textset-subtit {
    margin-top: 4rem;
  }

  .basic-N29[id='YamjJsEa13'] {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N29[id='YamjJsEa13'] .textset .textset-subtit {
    margin-top: 4rem;
  }

  .basic-N29[id='TRMin4ZSmA'] {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N29[id='TRMin4ZSmA'] .textset .textset-subtit {
    margin-top: 4rem;
  }
}
/* basic-N30 */
.basic-N30 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N30 .contents-container {
  position: relative;
  height: 106.8rem;
}

.basic-N30 .contents-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.basic-N30 .textset {
  width: calc(50% - 6rem);
  padding-top: 8rem;
}

.basic-N30 .textset .textset-tit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.basic-N30 .textset .textset-desc {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-color3);
}

.basic-N30 .imageset {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 4rem);
  height: 76rem;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N30 .imageset+.imageset {
  top: auto;
  left: 0;
  bottom: 0;
  height: 64rem;
  width: calc(50% - 6rem);
}

@media (max-width: 1200px) {
  .basic-N30 .textset {
    width: calc(50% - 2rem);
  }

  .basic-N30 .imageset {
    width: calc(50% - 2rem);
  }

  .basic-N30 .imageset+.imageset {
    width: calc(50% - 2rem);
  }
}

@media (max-width: 992px) {
  .basic-N30 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N30 .contents-container {
    height: auto;
  }

  .basic-N30 .textset {
    width: 100%;
    margin-bottom: 4rem;
    padding-top: 0;
  }

  .basic-N30 .textset .textset-tit+.textset-desc {
    margin-top: 2rem;
  }

  .basic-N30 .imageset {
    position: relative;
    width: 100%;
    height: 48rem;
  }

  .basic-N30 .imageset+.imageset {
    width: 100%;
    height: 48rem;
    margin-top: 2rem;
  }

  .basic-N30 .textset .textset-tit,
  .basic-N30 .textset .textset-desc {
    display: block;
  }
}

@media (max-width: 576px) {
  .basic-N30 .textset .textset-desc br {
    display: none;
  }
}
/* basic-N31 */
.basic-N31 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N31 .textset {
  text-align: center;
}

.basic-N31 .textset .textset-desc {
  margin-top: 4rem;
  color: var(--text-color3);
}

@media (max-width: 992px) {
  .basic-N31 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 576px) {
  .basic-N31 .textset .textset-desc br {
    display: none;
  }
}
/* basic-N32 */
.basic-N32[id='KuMiN4YQGL'] {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N32[id='KuMiN4YQGL'] .container-sm .imageset {
  width: calc(100% + 16rem);
  margin-left: calc(-50% - 16rem);
}

.basic-N32[id='KuMiN4YQGL'] .contents-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.basic-N32[id='KuMiN4YQGL'] .imageset {
  align-self: flex-start;
  width: calc(50% + 26rem);
  height: 64rem;
  margin-left: -32rem;
  border-radius: 0 2rem 2rem 0;
  overflow: hidden;
}

.basic-N32[id='KuMiN4YQGL'] .textset {
  width: 50%;
  margin-left: 4rem;
  margin-bottom: 0;
}

.basic-N32[id='KuMiN4YQGL'] .textset .textset-tit+.textset-desc {
  margin-top: 4rem;
}

.basic-N32[id='KuMiN4YQGL'] .textset .textset-desc {
  color: var(--text-color3);
}

.basic-N32[id='KuMiN4YQGL'] .textset .textset-desc+.textset-desc {
  margin-top: 2rem;
}

.basic-N32[id='rimJJsea13'] {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N32[id='rimJJsea13'] .container-sm .imageset {
  width: calc(100% + 16rem);
  margin-left: calc(-50% - 16rem);
}

.basic-N32[id='rimJJsea13'] .contents-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.basic-N32[id='rimJJsea13'] .imageset {
  align-self: flex-start;
  width: calc(50% + 26rem);
  height: 64rem;
  margin-left: -32rem;
  border-radius: 0 2rem 2rem 0;
  overflow: hidden;
}

.basic-N32[id='rimJJsea13'] .textset {
  width: 50%;
  margin-left: 4rem;
  margin-bottom: 0;
}

.basic-N32[id='rimJJsea13'] .textset .textset-tit+.textset-desc {
  margin-top: 4rem;
}

.basic-N32[id='rimJJsea13'] .textset .textset-desc {
  color: var(--text-color3);
}

.basic-N32[id='rimJJsea13'] .textset .textset-desc+.textset-desc {
  margin-top: 2rem;
}

@media (max-width: 1200px) {
  .basic-N32[id='KuMiN4YQGL'] .container-sm .imageset {
    width: calc(50% + 26rem);
    margin-left: -32rem;
  }

  .basic-N32[id='rimJJsea13'] .container-sm .imageset {
    width: calc(50% + 26rem);
    margin-left: -32rem;
  }
}

@media (max-width: 992px) {
  .basic-N32[id='KuMiN4YQGL'] {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N32[id='KuMiN4YQGL'] .container-sm .imageset {
    width: calc(100% + 1.6rem);
    margin-left: -1.6rem;
  }

  .basic-N32[id='KuMiN4YQGL'] .contents-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .basic-N32[id='KuMiN4YQGL'] .imageset {
    width: calc(100% + 1.6rem);
    height: 56rem;
    margin-left: -1.6rem;
  }

  .basic-N32[id='KuMiN4YQGL'] .textset {
    width: 100%;
    margin-top: 4rem;
    margin-left: 0;
  }

  .basic-N32[id='KuMiN4YQGL'] .textset br.pc-br {
    display: none;
  }

  .basic-N32[id='rimJJsea13'] {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N32[id='rimJJsea13'] .container-sm .imageset {
    width: calc(100% + 1.6rem);
    margin-left: -1.6rem;
  }

  .basic-N32[id='rimJJsea13'] .contents-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .basic-N32[id='rimJJsea13'] .imageset {
    width: calc(100% + 1.6rem);
    height: 56rem;
    margin-left: -1.6rem;
  }

  .basic-N32[id='rimJJsea13'] .textset {
    width: 100%;
    margin-top: 4rem;
    margin-left: 0;
  }

  .basic-N32[id='rimJJsea13'] .textset br.pc-br {
    display: none;
  }
}
/* basic-N27 */
.basic-N27 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N27 .img {
  width: 100%;
}

.basic-N27 .img-mobile {
  display: none;
}

.basic-N27 .contents-container {
  display: block;
  height: 80rem;
}

.basic-N27 .contents-inner {
  height: 100%;
}

.basic-N27 .imageset {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

.basic-N27 .textset {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 8rem;
  text-align: center;
}

.basic-N27 .textset .textset-tit {
  color: var(--white);
}

.basic-N27 .textset .textset-desc {
  color: var(--white);
}

@media (max-width: 1200px) {
  .basic-N27 .textset {
    padding: 0 4rem;
  }
}

@media (max-width: 992px) {
  .basic-N27 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N27 .contents-container {
    height: 60rem;
  }

  .basic-N27 .img-pc {
    display: none;
  }

  .basic-N27 .img-mobile {
    display: block;
  }

  .basic-N27 .textset {
    padding: 0 1.6rem;
  }

  .basic-N27 .textset .textset-tit+.textset-desc {
    margin-top: 2rem;
  }
}
/* wellness-N6 */
.wellness-N6 {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 16rem;
}

.wellness-N6 .contents-inner {
  width: 100%;
}

.wellness-N6 .title-area {
  position: relative;
  margin-bottom: 8rem;
}

.wellness-N6 .title-area h2 {
  position: relative;
  padding-bottom: 4rem;
  font-weight: var(--fw-regular);
}

.wellness-N6 .title-area h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10rem;
  height: 0.4rem;
  background: #111;
}

.wellness-N6 .title-area p {
  margin-top: 2.8rem;
  color: #767676;
}

.wellness-N6 .swiper {
  overflow: visible;
}

.wellness-N6 .swiper-slide {
  width: 100%;
  max-width: 96rem;
}

.wellness-N6 .thumb {
  width: 100%;
  height: 60.5rem;
}

.wellness-N6 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wellness-N6 .desc {
  display: block;
  position: relative;
  opacity: 0;
  visibility: hidden;
  margin: -11rem 0 0 auto;
  padding: 4rem;
  width: 100%;
  max-width: 48.6rem;
  background: #fff;
  transition: opacity 0.4s 0.1s;
}

.wellness-N6 .swiper-slide-active .desc {
  opacity: 1;
  visibility: visible;
}

.wellness-N6 .desc strong {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}

.wellness-N6 .desc p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  margin: 1.3rem 0 2.1rem;
  color: #767676;
}

.wellness-N6 .wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.wellness-N6 .ico-date {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../icons/ico_date.svg) no-repeat center/contain;
  color: var(--text-color1);
}

.wellness-N6 .pagination {
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 96rem;
}

.wellness-N6 .paging-wrap {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  padding-left: 4rem;
  width: 100%;
  max-width: 48.6rem;
}

.wellness-N6 [class*="btn-"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-color1);
}

.wellness-N6 .btn-next {
  transform: rotate(180deg);
}

.wellness-N6 [class*="btn-"] img {
  width: 2.8rem;
  height: 2.8rem;
}

.wellness-N6 .swiper-horizontal>.swiper-pagination-bullets,
.wellness-N6 .swiper-pagination-bullets.swiper-pagination-horizontal,
.wellness-N6 .swiper-pagination-custom,
.wellness-N6 .swiper-pagination-fraction {
  display: flex;
  width: auto;
}

.wellness-N6 .swiper-pagination-bullet-active {
  background: var(--primary);
}

@media (max-width: 992px) {
  .wellness-N6 {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }

  .wellness-N6 .title-area {
    margin-bottom: 3.7rem;
  }

  .wellness-N6 .title-area h2 {
    padding-bottom: 2.5rem;
  }

  .wellness-N6 .title-area h2::after {
    width: 8rem;
  }

  .wellness-N6 .title-area p {
    margin-top: 1.8rem;
  }

  .wellness-N6 .swiper-slide {
    max-width: 32rem;
  }

  .wellness-N6 .thumb {
    height: 30rem;
  }

  .wellness-N6 .desc {
    margin: -8rem 0 0;
    padding: 3.4rem 0 2.2rem;
  }

  .wellness-N6 .slide-area p {
    margin: 0.9rem 0 1.2rem;
  }

  .wellness-N6 .wrap {
    gap: 0.8rem;
  }

  .wellness-N6 .pagination {
    justify-content: center;
    padding-bottom: 7.2rem;
    max-width: 32rem;
  }

  .wellness-N6 .paging-wrap {
    padding: 0;
    gap: 1.8rem;
  }

  .wellness-N6 [class*="btn-"] {
    width: 4rem;
    height: 4rem;
  }

  .wellness-N6 [class*="btn-"] img {
    width: 2rem;
    height: 2rem;
  }
}
/* museum-N6 */
.museum-N6 {
  overflow: hidden;
  position: relative;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.museum-N6 .contents-inner {
  width: 100%;
}

.museum-N6 .cardset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 1.2rem;
}

.museum-N6 .cardset-tit {
  display: inline-block;
}

.museum-N6 .cardset-figure {
  overflow: hidden;
  position: relative;
  height: 52rem;
  border-radius: 2.4rem;
}

.museum-N6 .cardset-figure i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  width: 6rem;
  height: 6rem;
  background: var(--white);
  border-radius: 50%;
  color: var(--black);
  font-size: 1.8rem;
  transition: color 0.3s;
}

.museum-N6 .cardset-figure:hover i {
  color: var(--primary);
}

.museum-N6 .cardset-figure img {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.museum-N6 .cardset-figure:hover img {
  transform: scale(1.05);
}

.museum-N6 .cardset-body {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 4rem;
  border-radius: 2.4rem;
  background: #f2f2f6;
}

.museum-N6 .cardset-wrap {
  width: 100%;
}

.museum-N6 .cardset-desc {
  margin: 1.2rem 0 0 0;
  color: var(--text-color3);
  -webkit-line-clamp: 4;
}

@media (max-width: 992px) {
  .museum-N6 {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }

  .museum-N6 .cardset {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .museum-N6 .cardset-figure {
    height: 30rem;
    grid-row: 2;
  }

  .museum-N6 .cardset-figure i {
    right: 2rem;
    bottom: 2rem;
    width: 4rem;
    height: 4rem;
    font-size: 1.2rem;
  }

  .museum-N6 .cardset-body {
    padding: 2rem;
    min-height: 30rem;
    border-radius: 2rem;
  }
}
/* butti-N5 */
.butti-N5 {
  overflow: hidden;
  position: relative;
  padding-top: 16rem;
  padding-bottom: 8rem;
}

.butti-N5 .contents-inner {
  width: 100%;
}

.butti-N5 .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.butti-N5 .thumb {
  position: relative;
  height: 60rem;
}

.butti-N5 .thumb img {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + 13rem);
  height: 100%;
  object-fit: cover;
}

.butti-N5 .item.reverse .thumb {
  order: 2;
}

.butti-N5 .item.reverse .thumb img {
  right: auto;
  left: 0;
}

.butti-N5 .desc {
  padding-left: 12rem;
}

.butti-N5 .item.reverse .desc {
  padding-left: 0;
  padding-right: 12rem;
}

.butti-N5 .desc p {
  margin: 3rem 0 4rem;
  color: #777777;
}

@media (max-width: 992px) {
  .butti-N5 {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }

  .butti-N5 .item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .butti-N5 .item+.item {
    margin-top: 8rem;
  }

  .butti-N5 .thumb {
    margin-left: -1.6rem;
    width: calc(100% + 1.6rem);
    height: 30rem;
  }

  .butti-N5 .thumb img {
    position: static;
    width: 100%;
  }

  .butti-N5 .item.reverse .thumb {
    order: 0;
    margin-left: 0;
    margin-right: -1.6rem;
  }

  .butti-N5 .desc,
  .butti-N5 .item.reverse .desc {
    padding: 0;
  }

  .butti-N5 .desc p {
    margin: 2.5rem 0 2rem;
  }
}
/* travel-N5 */
.travel-N5 {
  overflow: hidden;
  position: relative;
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.travel-N5 .contents-inner {
  width: 100%;
}

.travel-N5 .textset {
  text-align: center;
}

.travel-N5 .swiper {
  margin-top: 6rem;
  height: 62.4rem;
}

.travel-N5 .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.travel-N5 .swiper-slide-active {
  z-index: 1;
}

.travel-N5 .imageset {
  height: 46.4rem;
}

.travel-N5 .imageset-img {
  border-radius: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.46);
}

.travel-N5 .swiper-slide-active .imageset-img {
  transform: scale(1.34);
  filter: brightness(1);
}

.travel-N5 .swiper-control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  margin: 1.6rem auto 0;
  padding-right: 1.2rem;
}

.travel-N5 .paging {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.travel-N5 .paging .curr {
  font-weight: var(--fw-bold);
}

.travel-N5 .paging .total {
  color: #9f9f9f;
}

.travel-N5 .paging .line {
  width: 0.1rem;
  height: 1rem;
  background: #9f9f9f;
}

.travel-N5 .swiper-control button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--text-color1);
}

.travel-N5 .swiper-progress button {
  display: none;
}

.travel-N5 .swiper-progress button.active {
  display: flex;
}

@media (max-width: 992px) {
  .travel-N5 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .travel-N5 .swiper {
    margin: 3rem 0 0 -1.6rem;
    width: calc(100% + 3.2rem);
    height: 36.4rem;
  }

  .travel-N5 .swiper-slide {
    width: 22rem;
  }

  .travel-N5 .imageset {
    height: 28.6rem;
  }

  .travel-N5 .imageset-img {
    border-radius: 1.2rem;
  }

  .travel-N5 .swiper-slide-active .imageset-img {
    transform: scale(1.27);
  }

  .travel-N5 .swiper-control {
    gap: 0.4rem;
    margin-top: 0.8rem;
    padding-right: 0.8rem;
  }

  .travel-N5 .paging {
    gap: 0.4rem;
  }

  .travel-N5 .swiper-control button {
    width: 1.4rem;
    height: 1.4rem;
    font-size: 1.4rem;
  }
}
/* campland-N8 */
:root {
  --height-minac044: 200px;
}

.campland-N8 {
  overflow: hidden;
  position: relative;
  background: url(../images/seorim_banner.png) no-repeat center / cover;
}

.campland-N8 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18rem;
}

.campland-N8 h2 {
  color: var(--white);
  font-weight: var(--fw-medium);
}

@media (max-width: 992px) {
  .campland-N8 .contents-container {
    height: 40rem;
  }

  .campland-N8 {
    background: url(../images/seorim_banner.png) no-repeat center / cover !important;
  }

  :root {
    --height-minac044: 200px;
  }
}
/* basic-N37 */
.basic-N37 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N37 .contents-inner {
  display: flex;
  width: 100%;
}

.basic-N37 .imageset {
  width: calc(50% - 12rem);
  height: 70.6rem;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N37 .form-group {
  width: calc(50% + 6rem);
  margin-left: 6rem;
}

.basic-N37 .form-group .form-tit {
  margin-bottom: 0.8rem;
}

.basic-N37 .form-group .form-tit+.checkset-wrap {
  margin-top: 1.6rem;
}

.basic-N37 .form-group .form-tit span {
  display: inline-block;
  margin-left: 0.4rem;
  color: #dc0000;
}

.basic-N37 .form-box+.form-box {
  margin-top: 4rem;
}

.basic-N37 .radioset-wrap,
.basic-N37 .checkset-wrap {
  flex-wrap: wrap;
}

.basic-N37 .checkset-wrap .checkset+.checkset {
  margin-top: 0;
}

.basic-N37 .inputset+.inputset {
  margin-top: 4rem;
}

.basic-N37 .inputset .inputset-tit {
  margin-bottom: 0.8rem;
}

.basic-N37 .inputset .inputset-label {
  width: 100%;
}

.basic-N37 .inputset .inputset-input {
  border-bottom: 1px solid var(--border-color);
}

.basic-N37 .inputset .inputset-textarea {
  height: 10rem;
}

.basic-N37 .contents-agree {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  line-height: 1;
}

.basic-N37 .contents-agree .btnset {
  color: var(--text-color3);
}

.basic-N37 .contents-agree .btnset::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url(../icons/ico_chevron_gray.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.basic-N37 .form-btn {
  margin-top: 6rem;
}

.basic-N37 .form-btn .btnset {
  min-width: 18rem;
}

.basic-N37 .info-area {
  overflow-y: auto;
}

.basic-N37 .info-group+.info-group {
  margin-top: 2.4rem;
}

.basic-N37 .info-group strong {
  padding-bottom: 1.2rem;
  display: block;
}

.basic-N37 .info-desc {
  max-height: 20.7rem;
  padding: 1.6rem;
  background: #f8f8fa;
  border-radius: 1.6rem;
  overflow-y: auto;
  scrollbar-width: none;
}

.basic-N37 .info-desc p.fw-medium {
  font-weight: var(--fw-medium);
}

.basic-N37 .info-desc .mtb {
  margin: 2.4rem 0;
}

.basic-N37 .info-desc em {
  font-style: normal;
  font-weight: 600;
  margin: 2.4rem 0 1rem;
  position: relative;
  display: flex;
  align-items: center;
}

.basic-N37 .info-list em::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: var(--black);
  border-radius: 50%;
  margin-right: 0.8rem;
}

.basic-N37 .info-list p {
  padding-left: 1.2rem;
}

@media (max-width: 992px) {
  .basic-N37 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N37 .contents-inner {
    flex-direction: column;
  }

  .basic-N37 .imageset {
    width: 100%;
    height: 40rem;
  }

  .basic-N37 .form-group {
    width: 100%;
    margin-left: 0;
    margin-top: 4rem;
  }

  .basic-N37 .form-box+.form-box {
    margin-top: 2rem;
  }

  .basic-N37 .form-btn {
    margin-top: 2.4rem;
  }

  .basic-N37 .form-btn .btnset {
    min-width: 16rem;
    padding: 0 1.6rem;
    width: 100%;
  }

  .basic-N37 .contents-agree {
    margin-top: 1.2rem;
  }
}
/* basic-N38 */
.basic-N38 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N38 .textset {
  margin-bottom: 4rem;
}

.basic-N38 .contents-map {
  width: 100%;
  height: 40rem;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N38 .contents-map iframe {
  width: 100%;
  height: 100%;
}

.basic-N38 .contents-list {
  display: flex;
  margin-top: 4rem;
}

.basic-N38 .contents-item:first-child {
  width: 50%;
}

.basic-N38 .contents-item {
  width: 25%;
}

.basic-N38 .contents-ico {
  display: flex;
  align-items: center;
}

.basic-N38 .contents-figure {
  display: flex;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.4rem;
  margin-bottom: 0;
}

.basic-N38 .contents-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.basic-N38 .contents-desc {
  margin-top: 1.2rem;
  color: var(--text-color3);
}

@media (max-width: 992px) {
  .basic-N38 .contents-inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N38 .contents-list {
    flex-direction: column;
    gap: 4rem;
  }

  .basic-N38 .contents-item {
    width: 100% !important;
  }
}