@charset "utf-8";

/* hooms-N1 */
.beyound-header {
  position: fixed !important;
  top: 0;
  z-index: 99;
  width: 100%;
  background: #fff;
  transition: background 0.3s;
}

.beyound-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.12) 60%, rgba(0, 0, 0, 0) 100%);
  transition: opacity 0.3s, visibility 0.3s;
}

.beyound-header.top-menu-active {
  padding-top: 6.7rem;
}

.beyound-header.header-top-active {
  background: transparent;
}

.beyound-header.header-top-active::after {
  opacity: 1;
  visibility: visible;
}

.beyound-header.header-top-active:hover {
  background: #fff;
}

.beyound-header.header-top-active:hover::after {
  opacity: 0;
  visibility: hidden;
}

.beyound-header.header-top-active:hover .header-title img,
.beyound-header.header-top-active:hover .header-utils img {
  filter: invert(0);
}

.beyound-header.header-top-active:hover .header-gnblink span {
  color: #000;
}

.beyound-header.header-top-active:hover .header-gnbitem:hover .header-gnblink span::after {
  background: #000;
}

.beyound-header.header-top-active:hover .header-utils .btn-allmenu .ico-hamburger,
.beyound-header.header-top-active:hover .btn-momenu .ico-hamburger {
  background: #000;
}

.beyound-header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 8rem;
}

.beyound-header .header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

.beyound-header .header-lang {
  position: relative;
}

.beyound-header .header-langbtn {
  position: relative;
  border: none;
  background: none;
}

.beyound-header .header-langlist {
  position: absolute;
  top: 100%;
  left: -50%;
  z-index: 200;
  background: #111111;
}

.beyound-header .header-langitem {
  max-height: 0;
  transition: all 0.5s;
  overflow: hidden;
}

.beyound-header .header-langitem a {
  min-width: 6.4rem;
  padding: 0.6rem 1.6rem;
  color: var(--white);
  opacity: .7;
}

.beyound-header .header-langitem a:hover {
  opacity: 1;
}

.beyound-header .header-lang:hover .header-langbtn::after {
  transform: translateY(-50%) rotate(180deg);
}

.beyound-header .header-lang:hover .header-langitem {
  max-height: 6.8rem;
}

.beyound-header .user-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8rem;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
}

.beyound-header .user-menu li {
  position: relative;
}

.beyound-header .user-menu li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 1.2rem;
  background: #e5e5e5;
}

.beyound-header .user-menu li a {
  padding: 2rem 1.2rem;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.beyound-header .user-menu li:last-child a {
  padding: 2rem 0 2rem 1.2rem;
}

.beyound-header .header-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.beyound-header .header-title {
  margin-bottom: 0;
}

.beyound-header .header-title a {
  height: 3.2rem;
}

.beyound-header .header-title img {
  height: 100%;
  object-fit: contain;
  vertical-align: top;
  transition: filter 0.3s;
}

.beyound-header.header-top-active .header-title img {
  filter: brightness(0) invert(100%);
}

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

.beyound-header .header-gnbitem {
  position: relative;
}

.beyound-header .header-gnblink {
  padding: 2.8rem 3rem;
  height: 100%;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.beyound-header .header-gnblink span {
  position: relative;
  transition: color 0.3s;
}

.beyound-header.header-top-active .header-gnblink span {
  color: #fff;
}

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

.beyound-header .header-sublist {
  position: absolute;
  top: 100%;
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

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

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

.beyound-header.header-top-active .header-gnbitem:hover .header-gnblink span::after {
  background: #fff;
}

.beyound-header .header-subitem {
  overflow: hidden;
  background: #fff;
}

.beyound-header .header-sublink {
  padding: 1rem 2rem;
  width: 100%;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  will-change: color, background;
  white-space: nowrap;
}

.beyound-header .header-sublink:hover {
  background: #111111;
  color: #fff;
}

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

.beyound-header .header-right .header-gnb {
  margin-right: 1.8rem;
}

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

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

.beyound-header .header-utils>ul>li>img {
  width: auto;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: filter 0.3s;
}

.beyound-header.header-top-active .header-utils img {
  filter: invert(100%);
}

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

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

.beyound-header .header-utils .member a {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 0;
}

.beyound-header .header-utils .member img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  vertical-align: top;
}

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

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

.beyound-header .header-utils .btn-allmenu .ico-hamburger,
.beyound-header .btn-momenu .ico-hamburger {
  width: 2.4rem;
  height: 0.2rem;
  background: #000;
  border-radius: 1rem;
  transition: width 0.3s, transform 0.3s, opacity 0.3s;
  will-change: width, transform, opacity;
}

.beyound-header.header-top-active .header-utils .btn-allmenu .ico-hamburger,
.beyound-header.header-top-active .btn-momenu .ico-hamburger {
  background: #fff;
}

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

.beyound-header .btn-momenu {
  display: none;
}

.beyound-header .btn-moclose {
  display: none;
}

.beyound-header .header-fullmenu {
  overflow: hidden;
  position: fixed;
  z-index: 99999;
  padding: 0 2.4rem;
  visibility: hidden;
  background: #000;
  transition: 0.3s;
  opacity: 0;
}

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

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

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

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

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

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

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

.beyound-header .fullmenu-title {
  margin-bottom: 0;
}

.beyound-header .fullmenu-title a {
  height: 4.3rem;
}

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

.beyound-header .fullmenu-member {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.beyound-header .fullmenu-member li {
  position: relative;
}

.beyound-header .fullmenu-member li a {
  padding: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.beyound-header .fullmenu-member li::marker {
  content: "";
}

.beyound-header .fullmenu-member li+li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 1.4rem;
  background: rgba(255, 255, 255, 0.2);
}

.beyound-header .fullmenu-gnblist {
  display: flex;
  justify-content: center;
}

.beyound-header .fullmenu-gnbitem {
  width: 20%;
}

.beyound-header .fullmenu-gnbitem+.fullmenu-gnbitem {
  margin-left: 4rem;
}

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

.beyound-header .fullmenu-gnblink::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.1rem;
  background: #ffffff;
  transition: 0.2s;
}

.beyound-header .fullmenu-gnblink.on::after {
  width: 18rem;
}

.beyound-header .fullmenu-sublist {
  padding-top: 4rem;
}

.beyound-header .fullmenu-subitem+.fullmenu-subitem {
  padding-top: 0.8rem;
}

.beyound-header .fullmenu-sublink {
  position: relative;
  padding-bottom: 5px;
  font-weight: 400;
  color: #a2a2a2;
  transition: 0.3s;
}

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

.beyound-header .fullmenu-sublink:hover {
  color: var(--white);
}

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

.beyound-header .fullmenu-close {
  position: fixed;
  right: 8rem;
  top: 2.4rem;
  padding: 0.5rem;
  width: 4.2rem;
  height: 4.2rem;
  background: transparent;
  border: none;
}

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

@media (max-width: 1120px) {
  .beyound-header .header-gnblink {
    padding: 2.8rem 2.4rem;
  }
}

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

  .beyound-header.block-active.header-top-active {
    background: rgba(0, 0, 0, 0.5);
    transition: none;
  }

  .beyound-header.header-top-active:hover {
    background: inherit;
  }

  .beyound-header.header-top-active:hover::after {
    opacity: 1;
    visibility: visible;
  }

  .beyound-header.block-active.header-top-active:hover {
    background: rgba(0, 0, 0, 0.5);
  }

  .beyound-header.block-active.header-top-active::after {
    opacity: 0;
    visibility: hidden;
  }

  .beyound-header.header-top-active:hover .header-title img,
  .beyound-header.header-top-active:hover .header-utils img {
    filter: invert(100%);
  }

  .beyound-header.header-top-active:hover .header-gnblink span {
    color: #fff;
  }

  .beyound-header.header-top-active:hover .header-gnbitem:hover .header-gnblink span::after {
    background: #fff;
  }

  .beyound-header.header-top-active:hover .header-utils .btn-allmenu .ico-hamburger,
  .beyound-header.header-top-active:hover .btn-momenu .ico-hamburger {
    background: #fff;
  }

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

  .beyound-header.header-top-active .header-gnb {
    background: transparent;
  }

  .beyound-header .header-gnb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    transition: opacity 0.3s, visibility 0.3s;
  }

  .beyound-header.header-top-active .header-gnb::after {
    opacity: 1;
    visibility: visible;
  }

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

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

  .beyound-header .header-top {
    z-index: 10;
    visibility: hidden;
    border: none;
    opacity: 0;
    transition: opacity 0.3s 0.1s, visibilty 0.3s 0.1s;
    will-change: opacity, visibility;
  }

  .beyound-header.block-active .header-top {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }

  .beyound-header .user-menu {
    justify-content: flex-start;
    padding: 0 2.2rem;
  }

  .beyound-header .user-menu li a,
  .beyound-header .user-menu li:last-child a {
    padding: 2.4rem 1.2rem;
  }

  .beyound-header .user-menu li:first-child a {
    padding-left: 0;
  }

  .beyound-header .header-title a {
    width: 12rem;
    height: 2.7rem;
  }
  .beyound-header .header-langitem a {
    min-width: 6rem;
  }
  .beyound-header .header-center {
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    width: 100%;
    height: 0;
  }

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

  .beyound-header .header-gnblink {
    display: flex;
    align-items: flex-end;
    padding: 1.8rem 0;
    width: 100%;
    text-align: left;
    transition: border 0.3s;
    will-change: border;
    border-bottom: 1px solid #e5e5e5;
  }

  .beyound-header.top-menu-active .header-gnbitem:first-child .header-gnblink {
    padding-top: 6.8rem;
  }

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

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

  .beyound-header .header-sublist {
    display: none;
    position: relative;
    padding: 1.8rem 0 2rem 0;
    opacity: 1;
  }

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

  .beyound-header.header-top-active .header-gnbitem.item-active .header-gnblink {
    border-bottom-color: #fff;
  }

  .beyound-header .header-subitem {
    width: 100%;
    background: transparent;
  }

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

  .beyound-header.header-top-active .header-sublink {
    color: #fff;
  }

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

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

  .beyound-header .header-sublink:hover {
    background: transparent;
    color: #111111;
  }

  .beyound-header.header-top-active .header-sublink:hover {
    color: #fff;
    background: transparent;
  }

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

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

  .beyound-header .header-utils .allmenu {
    display: none;
  }

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

  .beyound-header .btn-momenu .ico-hamburger {
    width: 2rem;
  }

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

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

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

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

  .beyound-header .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;
  }

  .beyound-header.header-top-active .header-gnbitem:has(.header-subitem) .header-gnblink::after {
    filter: invert(1);
  }

  .beyound-header.block-active .header-gnblink {
    align-items: center;
    justify-content: space-between;
  }

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

  .beyound-header.block-active .header-member {
    display: flex;
  }

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

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

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

  .beyound-header .header-fullmenu {
    display: none;
  }
}
/* beyound-N1 */
.beyound-N1 {
  overflow: hidden;
  position: relative;
}

.beyound-N1 .contents-container {
  display: flex;
  justify-content: center;
  height: 80rem;
}

.beyound-N1 .slide-area {
  width: 100vw;
  height: 100%;
}

.beyound-N1 .swiper {
  width: 100vw;
  height: 100%;
}

.beyound-N1 .swiper-slide {
  position: relative;
}

.beyound-N1 .contents-backimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.beyound-N1 .textset-tit {
  color: #fff;
}

.beyound-N1 .textset-tit+.textset-desc {
  margin-top: 2.6rem;
  color: #fff;
}

.beyound-N1 .btnset {
  margin-top: 4rem;
}

.beyound-N1 .contents-control {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5rem;
  z-index: 100;
}

.beyound-N1 .swiper-button-prev,
.beyound-N1 .swiper-button-next {
  width: 5.4rem;
  height: 5.4rem;
  background-image: url(../icons/ico_arrow_left_withe.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.8rem;
  background-color: rgba(var(--black-rgb), 0.8);
  border-radius: 50%;
  opacity: 0.5;
  transition: 0.3s;
}

.beyound-N1 .swiper-button-prev {
  left: 8.2rem;
}

.beyound-N1 .swiper-button-next {
  right: 8.2rem;
  transform: rotate(180deg);
}

.beyound-N1 .swiper-button-prev:after,
.beyound-N1 .swiper-button-next:after {
  content: none;
}

.beyound-N1 .swiper-button-prev:hover,
.beyound-N1 .swiper-button-next:hover {
  opacity: 1;
}

.beyound-N1 .swiper-pagination {
  display: flex;
  align-items: center;
  position: relative;
  left: 0;
  bottom: 0;
}

.beyound-N1 .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin: 0 1.2rem 0 0 !important;
  background-color: rgba(var(--white-rgb), 0.3);
  opacity: 1;
}

.beyound-N1 .swiper-pagination-bullet-active {
  background-color: var(--white);
  border: none;
}

.beyound-N1 .swiper-button-play {
  display: none;
}

.beyound-N1 .swiper-button-play,
.beyound-N1 .swiper-button-pause {
  position: relative;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  opacity: 0.5;
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
}

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

.beyound-N1 .swiper-button-play:hover,
.beyound-N1 .swiper-button-pause:hover {
  opacity: 1;
}

@media (max-width: 1200px) {
  .beyound-N1 .slide-area {
    width: 100%;
  }

  .beyound-N1 .swiper {
    margin-left: -4rem;
    width: calc(100% + 8rem);
  }

  .beyound-N1 .contents-slide-group {
    padding: 0 4rem;
  }
}

@media (max-width: 992px) {
  .beyound-N1 .contents-container {
    height: 70rem;
  }

  .beyound-N1 .swiper {
    margin-left: -1.6rem;
    width: calc(100% + 3.2rem);
  }

  .beyound-N1 .contents-slide-group {
    padding: 0 1.6rem;
  }

  .beyound-N1 .textset-tit+.textset-desc {
    margin-top: 2rem;
  }

  .beyound-N1 .btnset {
    margin-top: 3rem;
  }

  .beyound-N1 .swiper-button-next,
  .beyound-N1 .swiper-button-prev {
    display: none;
  }

  .beyound-N1 .contents-control {
    bottom: 4.5rem;
  }

  .beyound-N1 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
  }

  .beyound-N1 .swiper-button-play,
  .beyound-N1 .swiper-button-pause {
    width: 1.6rem;
    height: 1.6rem;
  }

  .beyound-N1 {}
}
/* beyound-N2 */
.beyound-N2 {
  position: relative;
  padding-top: 24rem;
  padding-bottom: 24rem;
  overflow: hidden;
}

.beyound-N2 .contents-inner {
  width: 100%;
}

.beyound-N2 .contents-tit {
  margin-bottom: 6rem;
  text-align: center;
}

.beyound-N2 .swiper-slide {
  min-height: 67.6rem;
}

.beyound-N2 .swiper-slide.swiper-slide-active .cardset-figure {
  height: 60rem;
}

.beyound-N2 .swiper-slide.swiper-slide-next+.swiper-slide .cardset-figure {
  height: 60rem;
}

.beyound-N2 .cardset {
  display: block;
  width: 100%;
  height: 100%;
}

.beyound-N2 .cardset .cardset-figure {
  width: 100%;
  height: 48rem;
  transition: height 0.3s;
}

.beyound-N2 .cardset .cardset-body {
  padding-top: 2rem;
  padding-bottom: 0;
}

.beyound-N2 .swiper-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.4rem;
}

.beyound-N2 .swiper-pagination {
  position: static;
  height: 6px;
  background: #e8e8e8;
}

.beyound-N2 .swiper-btnarea {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.beyound-N2 .swiper-paging {
  display: flex;
  align-items: center;
}

.beyound-N2 .swiper-button-prev,
.beyound-N2 .swiper-button-next {
  position: static;
  width: 2.8rem;
  height: 2.8rem;
  margin: 0;
}

.beyound-N2 .swiper-button-prev::after,
.beyound-N2 .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../icons/ico_basic_arrow_black.svg) no-repeat center/contain;
}

.beyound-N2 .swiper-button-next::after {
  transform: rotate(180deg);
}

.beyound-N2 .swiper-paging-total,
.beyound-N2 .swiper-paging-text {
  color: #666666;
}

.beyound-N2 .swiper-pagination-progressbar-fill {
  background: var(--primary);
}

.board_blank {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 300px;
  background: #ddd;
  align-items: center;
  flex-direction: column;
  font-size: 30px;
}

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

  .beyound-N2 .contents-tit {
    margin-bottom: 3rem;
  }

  .beyound-N2 .swiper-slide {
    min-height: 40rem;
  }

  .beyound-N2 .swiper-slide.swiper-slide-active .cardset-figure,
  .beyound-N2 .swiper-slide.swiper-slide-next+.swiper-slide .cardset-figure {
    height: 36rem;
  }

  .beyound-N2 .cardset .cardset-body {
    padding-top: 1.4rem;
  }

  .beyound-N2 .cardset .cardset-figure {
    height: 26rem;
  }

  .beyound-N2 .swiper-controls {
    gap: 0.8rem;
    margin-top: 2.4rem;
  }

  .beyound-N2 .swiper-btnarea {
    gap: 0.8rem;
  }

  .beyound-N2 .swiper-button-prev,
  .beyound-N2 .swiper-button-next {
    width: 2rem;
    height: 2rem;
  }

  .beyound-N2 .swiper-pagination {
    height: 4px;
  }
}
/* beyound-N3 */
.beyound-N3 {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: var(--primary);
}

.beyound-N3 .contents-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9rem;
}

.beyound-N3 .desc-area .desc strong {
  color: #fff;
  font-weight: var(--fw-bold);
}

.beyound-N3 .desc-area dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem 0.8rem;
  margin-top: 2.5rem;
}

.beyound-N3 .desc-area dl img {
  width: 2.4rem;
  height: 2.4rem;
}

.beyound-N3 .desc dd,
.beyound-N3 .desc dd a {
  align-self: center;
  margin-bottom: 0;
  color: #fff;
}

.beyound-N3 .desc dd a {
  width: 100%;
}

.beyound-N3 .time-area {
  margin-top: 8rem;
}

.beyound-N3 .time-area .tiem-closing {
  color: rgba(146, 136, 134);
}

.beyound-N3 .time-area strong {
  color: #fff;
  font-weight: var(--fw-bold);
}

.beyound-N3 .time-area dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem 2.4rem;
  margin-top: 2.4rem;
}

.beyound-N3 .time-area dt,
.beyound-N3 .time-area dd {
  color: #fff;
}

.beyound-N3 .time-area dt {
  display: flex;
  justify-content: space-between;
}

.beyound-N3 .time-area dd {
  margin-bottom: 0;
}

.beyound-N3 .time-area dd span {
  color: #d8e9ff;
}

.beyound-N3 .notice {
  display: block;
  margin-top: 2.4rem;
  font-weight: var(--fw-medium);
  color: #d8e9ff;
}

.beyound-N3 .notice+.notice {
  margin-top: 0.8rem;
}

.beyound-N3 .map-area {
  height: 100%;
  min-height: 55.9rem;
  position: relative;
}

.beyound-N3 .map-area iframe {
  position: absolute;
  top: -8rem;
  left: 0;
  width: 50vw;
  height: calc(100% + 16rem);
}

@media (max-width: 1200px) {
  .beyound-N3 .map-area iframe {
    width: calc(100% + 8rem);
  }
}

@media (max-width: 992px) {
  .beyound-N3 {
    padding-top: 4rem;
    padding-bottom: 0;
  }

  .beyound-N3 .contents-inner {
    display: block;
  }

  .beyound-N3 .desc-area dl {
    gap: 1rem 0.6rem;
    margin-top: 2.2rem;
  }

  .beyound-N3 .time-area {
    margin-top: 4rem;
  }

  .beyound-N3 .time-area dl {
    margin-top: 2.6rem;
    gap: 1.4rem 2rem;
  }

  .beyound-N3 .notice {
    margin-top: 2rem;
  }

  .beyound-N3 .notice+.notice {
    margin-top: 0.6rem;
  }

  .beyound-N3 .map-area {
    margin: 4rem 0 0 -1.6rem;
    width: calc(100% + 3.2rem);
    height: 54rem;
    min-height: 0;
  }

  .beyound-N3 .map-area iframe {
    position: static;
    width: 100%;
    height: 100%;
  }
}
/* beyound-quick */
.beyound-quick {
  position: fixed;
  right: 6rem;
  bottom: 4rem;
  z-index: 50;
}

body {
  position: relative;
}

.beyound-quick .quick-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.8rem;
  height: 6.8rem;
  color: var(--white);
  border-radius: 50%;
  background: #6C5E5A;
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1);
  transition: background 0.3s;
}

.beyound-quick .quick-menu i {
  display: flex;
  font-style: normal;
}

.beyound-quick .quick-menu i::before {
  font-size: 2.6rem;
  transition: color 0.3s, transform 0.3s;
}

.beyound-quick .quick-menu.active i::before {
  transform: rotate(45deg);
}

.beyound-quick .menu-list {
  position: absolute;
  right: 0;
  bottom: calc(100% + 1.2rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.beyound-quick .menu-list.active {
  opacity: 1;
  visibility: visible;
}

.beyound-quick .menu-list li+li {
  margin-top: 1.2rem;
}

.beyound-quick .menu-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 3.4rem;
  transition: width 0.3s, padding .3s, gap .3s .3s;
  background: #FFFFFF;
  margin-left: auto;
  overflow: hidden;
  box-shadow: 0 .4rem 2rem 0 rgba(0, 0, 0, .1);
}

.beyound-quick .menu-list a:hover {
  width: 100%;
  padding: 1.8rem;
  gap: 1.2rem;
}

.beyound-quick .menu-list a.naver:hover {
  background: #32B44A;
}

.beyound-quick .menu-list a.kakao:hover {
  background: #F9E000;
}

.beyound-quick .menu-list a.youtube:hover {
  background: #FE0000;
}

.beyound-quick .menu-list a.instagram:hover {
  background: linear-gradient(240deg, rgba(193, 26, 123, 1) 0%, rgba(252, 32, 78, 1) 52%, rgba(255, 117, 0, 1) 100%);
}

.beyound-quick .menu-list a:hover span {
  width: auto;
  opacity: 1;
  visibility: visible;
  transition: .3s .4s;
}

.beyound-quick .menu-list span {
  width: 0;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  font-weight: var(--fw-bold);
  color: var(--white);
}

.beyound-quick .menu-list a:hover i {
  filter: brightness(0) invert(1);
}

.beyound-quick .menu-list a.kakao:hover i {
  filter: sepia(85%) saturate(300%) hue-rotate(5deg) brightness(40%) contrast(85%);
}

.beyound-quick .menu-list a i {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  transition: filter 0.3s;
}

.beyound-quick .menu-list a.kakao span {
  color: #111;
}

.beyound-quick .menu-list .ico-instagram {
  background: url(../icons/ico_instargram.svg) no-repeat center/contain;
}

.beyound-quick .menu-list .ico-kakao {
  background: url(../icons/ico_kakao.svg) no-repeat center/contain;
}

.beyound-quick .menu-list .ico-naver {
  background: url(../icons/ico_naver.svg) no-repeat center/contain;
}

.beyound-quick .menu-list .ico-youtube {
  background: url(../icons/ico_youtube.svg) no-repeat center/contain;
}

@media (max-width: 992px) {
  .beyound-quick {
    right: 2.4rem;
    bottom: 2rem;
  }

  .beyound-quick .quick-menu {
    width: 4.8rem;
    height: 4.8rem;
  }

  .beyound-quick .menu-list a {
    width: 4.8rem;
    height: 4.8rem;
  }

  .beyound-quick .menu-list a i {
    wwidth: 2.4rem;
    height: 2.4rem;
  }

  .beyound-quick .menu-list a:hover {
    padding: 1.2rem;
  }

  .beyound-quick .quick-menu i::before {
    font-size: 2.4rem;
  }
}
/* agency-N2 */
.beyound-footer {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 2.8rem;
  background: var(--black) !important;
}

.beyound-footer .footer-top {
  margin-bottom: 4rem;
}

.beyound-footer .footer-logo {
  text-align: center;
}

.beyound-footer .footer-logo img {
  height: 5.6rem;
  object-fit: contain;
}

.beyound-footer .footer-snslist {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.4rem;
}

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

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

.beyound-footer .footer-snslink img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.4rem;
  border-top: 1px solid #2b2a2a;
}

.beyound-footer .footer-menulist {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-p2);
}

.beyound-footer .footer-menulink:first-child a {
  padding-left: 0;
}

.beyound-footer .footer-menulink a {
  padding: 0 1.2rem;
  color: var(--white);
}

.beyound-footer .footer-menulink {
  position: relative;
}

.beyound-footer .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.2);
}

.beyound-footer .footer-txtgroup {
  margin-top: .8rem;
}

.beyound-footer .footer-txtgroup .footer-txt {
  text-align: left;
  justify-content: left;
}

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

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

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

.beyound-footer .footer-txt p {
  position: relative;
}

.beyound-footer .footer-txt p+p {
  margin-left: 0.8rem;
  padding-left: 0.8rem;
}

.beyound-footer .footer-txt p+p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 1.4rem;
  background: rgba(var(--white-rgb), 0.2);
}

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

.beyound-footer .footer-copy {
  margin-top: 2rem;
}

.beyound-footer .footer-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: opacity 0.3s, visibility 0.3s;
  will-change: opacity;
  overflow-y: auto;
  background: rgba(var(--black-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
  opacity: 0;
  visibility: hidden;
}

.beyound-footer .footer-modal.block-active {
  opacity: 1;
  visibility: visible;
}

.beyound-footer .modal-area {
  width: 100%;
  max-width: 92rem;
  background: var(--white);
  border-radius: 0.6rem;
}

.beyound-footer .info-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem;
  border-bottom: 1px solid var(--line-color1);
}

.beyound-footer .modal-close {
  cursor: pointer;
}

.beyound-footer .info-area {
  overflow-y: auto;
}

.beyound-footer .modal-email .info-area {
  max-height: 17rem;
}

.beyound-footer .modal-privacy .info-area {
  max-height: 70.3rem;
}

.beyound-footer .info-group+.info-group {
  margin-top: 2.4rem;
}

.beyound-footer .info-group strong {
  padding-bottom: 1.2rem;
  display: block;
}

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

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

.beyound-footer .info-desc .mtb {
  margin: 2.4rem 0;
}

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

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

.beyound-footer .info-list p {
  padding-left: 1.2rem;
}

@media (max-width: 992px) {
  .beyound-footer {
    padding-top: 4rem;
    padding-bottom: 1.6rem;
  }

  .beyound-footer .footer-menulink a {
    padding: 0 0.8rem;
  }

  .beyound-footer .footer-snslist {
    margin: 1.2rem 0 2.4rem;
  }

  .beyound-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    padding-top: 1.6rem;
    text-align: center;
  }

  .beyound-footer .footer-txt {
    flex-direction: column;
  }

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

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

@media (max-width: 576px) {
  .beyound-footer .footer-menulist {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
/* beyound-N4 */
.beyound-N4 {
  overflow: hidden;
  position: relative;
  padding-top: 20rem;
  padding-bottom: 5rem;
}

.beyound-N4 .contents-inner {
  width: 100%;
}

.beyound-N4 .title-area {
  margin-bottom: 4rem;
  text-align: center;
}

.beyound-N4 .title-area h2 {
  margin-bottom: 4rem;
  color: #111;
}

.beyound-N4 .title-area strong {
  color: #111;
}

.beyound-N4 .title-area p {
  margin-top: 1.2rem;
  color: #666;
}

.beyound-N4 .swiper {
  display: flex;
  align-items: center;
}

.beyound-N4 .swiper-slide {
  height: 50rem;
}

.beyound-N4 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N4 [class*="btn-"] {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  width: 2.6rem;
  height: 6.2rem;
  background: transparent;
}

.beyound-N4 .btn-prev {
  left: 2.4rem;
  transform: rotate(180deg);
}

.beyound-N4 .btn-next {
  right: 2.4rem;
}

.beyound-N4 [class*="btn-"] img {
  width: 100%;
  height: 100%;
}

.beyound-N4 .swiper-pagination {
  position: static;
  margin-top: 2rem;
}

.beyound-N4 .swiper-pagination-bullet {
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 !important;
  background-color: transparent;
  border: 1px solid #111;
  opacity: 1;
}

.beyound-N4 .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-left: 0.8rem !important;
}

.beyound-N4 .swiper-pagination-bullet-active {
  background-color: #111;
  border: none;
}

@media (max-width: 992px) {
  .beyound-N4 {
    padding-top: 10rem;
    padding-bottom: 0rem;
  }

  .beyound-N4 .title-area {
    margin-bottom: 2.4rem;
  }

  .beyound-N4 .title-area h2 {
    margin-bottom: 2.5rem;
  }

  .beyound-N4 .title-area p {
    margin-top: 0.8rem;
  }

  .beyound-N4 .swiper-slide {
    height: 41.6rem;
  }

  .beyound-N4 [class*="btn-"] {
    width: 1.6rem;
    height: 2.5rem;
  }

  .beyound-N4 .btn-prev {
    left: 0.8rem;
  }

  .beyound-N4 .btn-next {
    right: 0.8rem;
  }

  .beyound-N4 .swiper-pagination {
    margin-top: 0.8rem;
  }

  .beyound-N4 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
  }

  .beyound-N4 .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 0.4rem !important;
  }
}
/* beyound-N5 */
.beyound-N5 {
  overflow: hidden;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 24rem;
}

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

.beyound-N5 .title-area {
  margin-bottom: 6rem;
  text-align: center;
}

.beyound-N5 .title-area p {
  margin-top: 2rem;
}

.beyound-N5 .ico-dot {
  width: 1.6rem;
  height: 1.6rem;
  background: url(../icons/ico_diamond.svg) no-repeat center/contain;
}

.beyound-N5 .item {
  display: flex;
  align-items: center;
  gap: 8rem;
}

.beyound-N5 .item-2 {
  padding-left: 13rem;
}

.beyound-N5 .item-3 {
  gap: 13rem;
  padding-right: 24rem;
}

.beyound-N5 .item-4 {
  padding-left: 10rem;
}

.beyound-N5 .item.reverse {
  flex-direction: row-reverse;
}

.beyound-N5 .item-1 .thumb {
  flex: 1 1 76rem;
  aspect-ratio: 19 / 9;
}

.beyound-N5 .item-2 .thumb {
  flex: 1 1 63rem;
  aspect-ratio: 63 / 41;
}

.beyound-N5 .item-3 .thumb {
  flex: 1 1 52rem;
  aspect-ratio: 52 / 41;
}

.beyound-N5 .item-4 .thumb {
  flex: 1 1 66rem;
  aspect-ratio: 11 / 6;
}

.beyound-N5 .item+.item {
  margin-top: 14rem;
}

.beyound-N5 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N5 .text-wrap {
  flex: 1 1 44rem;
}

.beyound-N5 .title {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.beyound-N5 .desc {
  margin-top: 4rem;
}

.beyound-N5 .desc p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  text-overflow: ellipsis;
  margin-top: 1rem;
  color: #767676;
}

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

  .beyound-N5 .title-area {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 3rem;
  }

  .beyound-N5 .ico-dot {
    width: 1.2rem;
    height: 1.2rem;
  }

  .beyound-N5 .item,
  .beyound-N5 .item.reverse {
    flex-direction: column;
    gap: 2.4rem;
    padding: 0;
    width: 100%;
  }

  .beyound-N5 .list-area .item .thumb {
    flex: none;
    width: 100%;
    max-height: 40rem;
    min-height: 20rem;
    aspect-ratio: 82 / 50;
  }

  .beyound-N5 .item+.item {
    margin-top: 6rem;
  }

  .beyound-N5 .text-wrap {
    flex: none;
    width: 100%;
  }

  .beyound-N5 .title {
    gap: 0.4rem;
  }

  .beyound-N5 .desc {
    margin-top: 2.4rem;
  }

  .beyound-N5 .desc p {
    margin-top: 0.8rem;
  }
}
/* beyound-N6 */
.beyound-N6 {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: var(--primary);
}

.beyound-N6 .contents-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9rem;
}

.beyound-N6 .desc-area .desc strong {
  color: #fff;
  font-weight: var(--fw-bold);
}

.beyound-N6 .desc-area dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem 0.8rem;
  margin-top: 2.5rem;
}

.beyound-N6 .desc-area dl img {
  width: 2.4rem;
  height: 2.4rem;
}

.beyound-N6 .desc dd,
.beyound-N6 .desc dd a {
  align-self: center;
  margin-bottom: 0;
  color: #fff;
}

.beyound-N6 .desc dd a {
  width: 100%;
}

.beyound-N6 .time-area {
  margin-top: 8rem;
}

.beyound-N6 .time-area .tiem-closing {
  color: rgba(146, 136, 134);
}

.beyound-N6 .time-area strong {
  color: #fff;
  font-weight: var(--fw-bold);
}

.beyound-N6 .time-area dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem 2.4rem;
  margin-top: 2.4rem;
}

.beyound-N6 .time-area dt,
.beyound-N6 .time-area dd {
  color: #fff;
}

.beyound-N6 .time-area dt {
  display: flex;
  justify-content: space-between;
}

.beyound-N6 .time-area dd {
  margin-bottom: 0;
}

.beyound-N6 .time-area dd span {
  color: #d8e9ff;
}

.beyound-N6 .notice {
  display: block;
  margin-top: 2.4rem;
  font-weight: var(--fw-medium);
  color: #d8e9ff;
}

.beyound-N6 .notice+.notice {
  margin-top: 0.8rem;
}

.beyound-N6 .map-area {
  height: 100%;
  min-height: 55.9rem;
  position: relative;
}

.beyound-N6 .map-area iframe {
  position: absolute;
  top: -8rem;
  left: 0;
  width: 50vw;
  height: calc(100% + 16rem);
}

@media (max-width: 1200px) {
  .beyound-N6 .map-area iframe {
    width: calc(100% + 8rem);
  }
}

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

  .beyound-N6 .contents-inner {
    display: block;
  }

  .beyound-N6 .desc-area dl {
    gap: 1rem 0.6rem;
    margin-top: 2.2rem;
  }

  .beyound-N6 .time-area {
    margin-top: 4rem;
  }

  .beyound-N6 .time-area dl {
    margin-top: 2.6rem;
    gap: 1.4rem 2rem;
  }

  .beyound-N6 .notice {
    margin-top: 2rem;
  }

  .beyound-N6 .notice+.notice {
    margin-top: 0.6rem;
  }

  .beyound-N6 .map-area {
    margin: 4rem 0 0 -1.6rem;
    width: calc(100% + 3.2rem);
    height: 54rem;
    min-height: 0;
  }

  .beyound-N6 .map-area iframe {
    position: static;
    width: 100%;
    height: 100%;
  }
}
/* beyound-N7 */
.beyound-N7 {
  overflow: hidden;
  position: relative;
  background: var(--custom-color-4) !important;
}

.beyound-N7 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.beyound-N7 .contents-inner {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14rem;
  position: relative;
  min-height: 80rem;
}

.beyound-N7 .thumb-area {
  flex: 0 0 46rem;
}

.beyound-N7 .thumb-area .person {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 46rem;
  height: 74rem;
}

.beyound-N7 .thumb-area .logo-bg {
  position: absolute;
  bottom: 10.2rem;
  left: 0;
  transform: translateX(-6rem);
  width: 57.2rem;
}

.beyound-N7 .desc-area {
  flex: 1;
  padding: 6rem 0;
}

.beyound-N7 .desc-area p {
  margin-top: 2rem;
}

.beyound-N7 .desc-area .name {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 3.8rem;
}

@media (max-width: 992px) {
  .beyound-N7 {
    padding-top: 3rem;
    padding-bottom: 2.8rem;
  }

  .beyound-N7 br.pc {
    display: none;
  }

  .beyound-N7 .contents-inner {
    flex-direction: column-reverse;
    gap: 2.7rem;
    min-height: auto;
  }

  .beyound-N7 .thumb-area {
    flex: none;
    position: relative;
    width: 100%;
    height: 28.6rem;
  }

  .beyound-N7 .thumb-area .person {
    left: 0;
    transform: translateY(2.8rem) translateX(6.4rem);
    width: 24rem;
    height: auto;
  }

  .beyound-N7 .thumb-area .logo-bg {
    bottom: 0;
    left: 0;
    transform: none;
    width: 32.4rem;
    height: auto;
  }

  .beyound-N7 .desc-area {
    position: relative;
    flex: none;
    padding: 0;
    width: 100%;
  }

  .beyound-N7 .desc-area p {
    margin-top: 1.6rem;
  }

  .beyound-N7 .desc-area .name {
    gap: .4rem;
    margin-top: 2.4rem;
  }
}
/* beyound-N52 */
.beyound-N52 {
  overflow: hidden;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.beyound-N52 .contents-container {
  padding: 0;
}

.beyound-N52 .loop-area {
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100vw;
  background: var(--white);
}

.beyound-N52 .text-wrap {
  display: flex;
  white-space: nowrap;
}

.beyound-N52 .text-wrap span {
  padding-right: 2rem;
  font-size: 14rem;
  line-height: 20rem;
  font-family: var(--ff-ko3);
  color: #F6F8FC;
}

@media (max-width: 992px) {
  .beyound-N52 .text-wrap span {
    padding-right: 1.2rem;
    font-size: 10rem;
    line-height: 16rem;
  }

  .beyound-N52 {
    padding-top: 0.8rem;
    padding-bottom: 2.8rem;
  }
}
/* beyound-N8 */
.beyound-N8 {
  background: #fff;
  padding-bottom: 6rem;
}

.beyound-N8 .contents-inner {
  display: flex;
  justify-content: center;
  gap: 6rem;
  position: relative;
  width: 100%;
}

.beyound-N8 .thumb-area {
  width: 100%;
  max-width: 50rem;
  height: 48rem;
}

.beyound-N8 .thumb-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N8 .desc-area {
  flex: 1;
  align-self: center;
}

.beyound-N8 .desc-area .name {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.beyound-N8 .desc-area .name span {
  font-weight: var(--fw-medium);
  transform: translateY(-.6rem);
}

.beyound-N8 .history {
  margin-top: 4rem;
}

.beyound-N8 .history strong {
  font-weight: var(--fw-bold);
}

.beyound-N8 .history-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.6rem;
}

.beyound-N8 .history-wrap .item li+li {
  margin-top: .6rem;
}

@media (max-width: 992px) {
  .beyound-N8 {
    padding-bottom: 3rem;
  }

  .beyound-N8 .contents-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .beyound-N8 .thumb-area {
    flex: none;
    align-self: center;
    max-width: 100%;
    height: auto;
    aspect-ratio: 328 / 316;
  }

  .beyound-N8 .desc-area {
    flex: none;
    width: 100%;
  }

  .beyound-N8 .desc-area .name {
    gap: .4rem;
  }

  .beyound-N8 .desc-area .name span {
    transform: translateY(-.4rem);
  }

  .beyound-N8 .history {
    margin-top: 2rem;
  }

  .beyound-N8 .history-wrap {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }

  .beyound-N8 .history-wrap .item li+li {
    margin-top: .2rem;
  }
}
/* beyound-N9 */
.beyound-N9 {
  background: #fff;
  padding-bottom: 24rem;
  padding-top: 6rem;
}

.beyound-N9 .contents-inner {
  display: flex;
  justify-content: center;
  gap: 6rem;
  position: relative;
  width: 100%;
}

.beyound-N9 .thumb-area {
  width: 100%;
  max-width: 50rem;
  height: 48rem;
}

.beyound-N9 .thumb-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N9 .desc-area {
  flex: 1;
  align-self: center;
}

.beyound-N9 .desc-area .name {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.beyound-N9 .desc-area .name span {
  font-weight: var(--fw-medium);
  transform: translateY(-.6rem);
}

.beyound-N9 .history {
  margin-top: 4rem;
}

.beyound-N9 .history strong {
  font-weight: var(--fw-bold);
}

.beyound-N9 .history-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.6rem;
}

.beyound-N9 .history-wrap .item li+li {
  margin-top: .6rem;
}

@media (max-width: 992px) {
  .beyound-N9 {
    padding-bottom: 12rem;
    padding-top: 3rem;
  }

  .beyound-N9 .contents-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .beyound-N9 .thumb-area {
    flex: none;
    align-self: center;
    max-width: 100%;
    height: auto;
    aspect-ratio: 328 / 316;
  }

  .beyound-N9 .desc-area {
    flex: none;
    width: 100%;
  }

  .beyound-N9 .desc-area .name {
    gap: .4rem;
  }

  .beyound-N9 .desc-area .name span {
    transform: translateY(-.4rem);
  }

  .beyound-N9 .history {
    margin-top: 2rem;
  }

  .beyound-N9 .history-wrap {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }

  .beyound-N9 .history-wrap .item li+li {
    margin-top: .2rem;
  }
}
/* beyound-N10 */
.beyound-N10 {
  overflow: hidden;
  position: relative;
  background: url(../images/img_subvisual_02.png) no-repeat center / cover !important;
}

.beyound-N10 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73rem;
}

.beyound-N10 .title-area {
  width: 100%;
  text-align: center;
}

.beyound-N10 .title-area .title {
  position: relative;
  color: #fff;
  font-weight: var(--fw-medium);
}

.beyound-N10 .title-area .title+.title {
  margin-top: .8rem;
}

.beyound-N10 .title-area p {
  margin-top: 2.4rem;
  color: #fff;
  font-weight: var(--fw-ragular);
}

.beyound-N10 .block_overlay {
  position: absolute;
  content: '';
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #372E21FF;
  opacity: 0.2;
}

@media (max-width: 992px) {
  .beyound-N10 {
    background: url(../etc/c86843e2b8fc4848b7e1556565a93dca) no-repeat center / cover !important;
  }

  .beyound-N10 .contents-container {
    height: 48rem;
  }

  .beyound-N10 .title-area {
    text-align: left;
  }

  .beyound-N10 .title-area h2 {
    padding-bottom: 1.4rem;
  }

  .beyound-N10 .title-area h2::after {
    left: 0;
    transform: none;
    width: 4rem;
  }

  .beyound-N10 .title-area p {
    margin-top: 1.2rem;
  }
}
/* beyound-N11 */
.beyound-N11 {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 12rem;
}

.beyound-N11 .contents-inner {
  width: 100%;
}

.beyound-N11 .title-area {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--black);
}

.beyound-N11 .title-area .title {
  margin-bottom: 0.4rem;
}

.beyound-N11 .title-area .breadcrumbs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4rem;
  margin-top: 0.4rem;
}

.beyound-N11 .title-area .breadcrumbs li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.beyound-N11 .title-area .breadcrumbs li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  transform: translateX(2rem);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #d9d9d9;
}

.beyound-N11 .title-area .breadcrumbs li.active a {
  color: var(--black);
}

.beyound-N11 .title-area .breadcrumbs li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #999;
  font-weight: var(--fw-medium);
}

.beyound-N11 .title-area .breadcrumbs li:first-child a {
  padding: 0.7rem 0;
}

.beyound-N11 .title-area .breadcrumbs li a.ff-ico::before {
  display: flex;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
}

.beyound-N11 .desc-area .title {
  margin-bottom: 6rem;
}

.beyound-N11 .desc-area .title p {
  margin-top: 1.2rem;
  color: var(--text-color3);
}

.beyound-N11 .desc-area .thumb {
  margin-bottom: 3.2rem;
  height: 54rem;
}

.beyound-N11 .desc-area .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N11 .desc-area .desc {
  display: flex;
  justify-content: space-between;
}

.beyound-N11 .desc-area .desc strong {
  width: 50%;
}

.beyound-N11 .desc-area .desc p {
  width: calc(50% - 8rem);
}

.beyound-N11 .line {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 8rem;
  height: 20rem;
}

.beyound-N11 .line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0.1rem;
  height: 100%;
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N11 {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }

  .beyound-N11 .title-area {
    padding-bottom: 0.8rem;
  }

  .beyound-N11 .title-area .title {
    margin-bottom: 1.2rem;
  }

  .beyound-N11 .title-area .breadcrumbs {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 2.7rem;
    margin-top: 1.2rem;
  }

  .beyound-N11 .title-area .breadcrumbs li:not(:last-child)::after {
    transform: translateX(1.5rem);
    width: 0.3rem;
    height: 0.3rem;
  }

  .beyound-N11 .title-area .breadcrumbs li a {
    gap: 0.4rem;
  }

  .beyound-N11 .title-area .breadcrumbs li:first-child a {
    padding: 0.8rem 0;
  }

  .beyound-N11 .title-area .breadcrumbs li a.ff-ico::before {
    width: 1.6rem;
    height: 1.6rem;
  }

  .beyound-N11 .desc-area .title {
    margin-bottom: 3rem;
  }

  .beyound-N11 .desc-area .title p {
    margin-top: 0.8rem;
  }

  .beyound-N11 .desc-area .thumb {
    margin-bottom: 2.4rem;
    height: 40rem;
  }

  .beyound-N11 .desc-area .desc {
    display: block;
  }

  .beyound-N11 .desc-area .desc strong {
    display: inline-block;
    width: 100%;
  }

  .beyound-N11 .desc-area .desc p {
    width: 100%;
    margin-top: 1.2rem;
  }

  .beyound-N11 .line {
    margin-top: 4rem;
    height: 10rem;
  }
}
/* beyound-N12 */
.beyound-N12 {
  overflow: hidden;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 6rem;
}

.beyound-N12 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N12 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N12 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.beyound-N12 .desc {
  flex: 1;
}

.beyound-N12 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N12 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N12 {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .beyound-N12 .contents-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .beyound-N12 .thumb {
    height: 24rem;
  }

  .beyound-N12 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N12 .thumb,
  .beyound-N12 .desc {
    flex: none;
    width: 100%;
  }
}
/* beyound-N13 */
.beyound-N13 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 24rem;
}

.beyound-N13 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N13 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N13 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.beyound-N13 .desc {
  flex: 1;
}

.beyound-N13 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N13 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N13 {
    padding-top: 3rem;
    padding-bottom: 12rem;
  }

  .beyound-N13 .contents-inner {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }

  .beyound-N13 .thumb {
    height: 24rem;
  }

  .beyound-N13 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N13 .desc img {
    width: 9rem;
  }

  .beyound-N13 .thumb,
  .beyound-N13 .desc {
    flex: none;
    width: 100%;
  }
}
/* beyound-N14 */
.beyound-N14 {
  overflow: hidden;
  position: relative;
  padding-top: 16rem;
  padding-bottom: 16rem;
  background: url(../images/img_filer_banner.png) no-repeat center / cover !important;
}

.beyound-N14 .contents-inner {
  width: 100%;
}

.beyound-N14 .title-area {
  margin-bottom: 4rem;
  text-align: center;
}

.beyound-N14 .list-area {
  display: flex;
}

.beyound-N14 .list-area li {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  padding: 4rem;
  text-align: center;
}

.beyound-N14 .list-area li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6rem;
  transform: translateY(-50%);
  width: 12rem;
  height: 0.1rem;
  background: #e5e5e5;
}

.beyound-N14 .list-area span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 2.4rem;
  margin: 0 auto;
  width: 7.4rem;
  height: 3.7rem;
  color: #fff;
  font-weight: var(--fw-bold);
  background: var(--primary);
  border-radius: 1.9rem;
}

.beyound-N14 .list-area .thumb {
  margin: 4.8rem 0 2.8rem;
}

.beyound-N14 .list-area .thumb img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
}

.beyound-N14 .list-area .desc strong {
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.beyound-N14 .list-area .desc p {
  margin-top: 1.6rem;
  color: #767676;
  word-break: keep-all;
  text-wrap: pretty;
}

.beyound-N14 .block_overlay {
  position: absolute;
  content: '';
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
}

@media (max-width: 992px) {
  .beyound-N14 {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: url(../images/img_filer_banner.png) no-repeat center / cover !important;
  }

  .beyound-N14 .title-area {
    margin-bottom: 2.4rem;
  }

  .beyound-N14 .list-area {
    flex-direction: column;
    gap: 8rem;
  }

  .beyound-N14 .list-area li {
    align-items: center;
    padding: 2.4rem 0;
  }

  .beyound-N14 .list-area li:not(:last-child)::after {
    top: auto;
    bottom: -8rem;
    right: auto;
    transform: none;
    width: 0.1rem;
    height: 8rem;
  }

  .beyound-N14 .list-area span {
    padding: 0.2rem 1.8rem;
    width: 5.8rem;
    height: 2.8rem;
  }

  .beyound-N14 .list-area .thumb {
    margin: 2.4em 0 1.8rem;
  }

  .beyound-N14 .list-area .thumb img {
    width: 4.6rem;
    height: 4.6rem;
  }

  .beyound-N14 .list-area .desc p {
    margin-top: 1.2rem;
  }
}
/* beyound-N15 */
.beyound-N15 {
  overflow: hidden;
  position: relative;
  padding-top: 24rem;
  padding-bottom: 12rem;
}

.beyound-N15 .contents-inner {
  width: 100%;
}

.beyound-N15 .list-item+.list-item {
  margin-top: 4rem;
}

.beyound-N15 .list-item strong {
  color: #111;
}

.beyound-N15 .list {
  margin-top: 1.2rem;
}

.beyound-N15 .list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  position: relative;
  color: #666;
}

.beyound-N15 .list li+li {
  margin-top: .8rem;
}

.beyound-N15 .list li::before {
  position: relative;
  top: 1rem;
  flex-shrink: 0;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #666;
}

@media (max-width: 992px) {
  .beyound-N15 {
    padding-top: 12rem;
    padding-bottom: 6rem;
  }

  .beyound-N15 .list-item+.list-item {
    margin-top: 2.4rem;
  }

  .beyound-N15 .list {
    margin-top: 0.8rem;
  }

  .beyound-N15 .list li {
    gap: 0.4rem;
  }

  .beyound-N15 .list li::before {
    width: 2px;
    height: 2px;
  }
}
/* beyound-N16 */
.beyound-N16 {
  overflow: hidden;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 24rem;
}

.board_blank {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 300px;
  background: #ddd;
  align-items: center;
  flex-direction: column;
  font-size: 30px;
}

.beyound-N16 .textset {
  margin-bottom: 2.8rem;
}

.beyound-N16 .textset .textset-tit {
  font-weight: var(--fw-bold);
}

.beyound-N16 .textset .textset-tit+.textset-desc {
  margin-top: 1.6rem;
}

.beyound-N16 .textset .textset-desc {
  color: #777;
}

.beyound-N16 .cardset-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.beyound-N16 .cardset .cardset-figure {
  height: 32rem;
}

.beyound-N16 .cardset .cardset-body {
  padding-top: 1.6rem;
  padding-bottom: 0;
}

.beyound-N16 .cardset .cardset-tit {
  font-weight: var(--fw-bold);
}

.beyound-N16 .cardset .cardset-tit+.cardset-desc {
  margin-top: 0.8rem;
}

.beyound-N16 .cardset .cardset-desc {
  display: block;
  color: #777;
}

.pagiset {
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .beyound-N16 {
    padding-top: 6rem;
    padding-bottom: 12rem;
  }

  .beyound-N16 .textset {
    margin-bottom: 2.8rem;
  }

  .beyound-N16 .textset .textset-tit+.textset-desc {
    margin-top: 0.8rem;
  }

  .beyound-N16 .cardset-wrap {
    grid-template-columns: 1fr;
  }

  .beyound-N16 .cardset {
    width: 100%;
  }

  .beyound-N16 .cardset .cardset-figure {
    height: 25rem;
  }
}
/* beyound-N18 */
.beyound-N18 {
  overflow: hidden;
  position: relative;
  background: url(../images/img_subvisual_03.png) no-repeat center / cover !important;
}

.beyound-N18 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73rem;
}

.beyound-N18 .title-area {
  width: 100%;
  text-align: center;
}

.beyound-N18 .title-area .title {
  position: relative;
  color: #fff;
  font-weight: var(--fw-medium);
}

.beyound-N18 .title-area .title+.title {
  margin-top: .8rem;
}

.beyound-N18 .title-area p {
  margin-top: 2.4rem;
  color: #fff;
  font-weight: var(--fw-ragular);
}

.beyound-N18 .block_overlay {
  position: absolute;
  content: '';
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #372E21FF;
  opacity: 0.1;
}

@media (max-width: 992px) {
  .beyound-N18 {
    background: url(../images/img_subvisual_03_m.png) no-repeat center / cover !important;
  }

  .beyound-N18 .contents-container {
    height: 48rem;
  }

  .beyound-N18 .title-area {
    text-align: left;
  }

  .beyound-N18 .title-area h2 {
    padding-bottom: 1.4rem;
  }

  .beyound-N18 .title-area h2::after {
    left: 0;
    transform: none;
    width: 4rem;
  }

  .beyound-N18 .title-area p {
    margin-top: 1.2rem;
  }
}
/* beyound-N19 */
.beyound-N19 {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 12rem;
}

.beyound-N19 .contents-inner {
  width: 100%;
}

.beyound-N19 .title-area {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--black);
}

.beyound-N19 .title-area .title {
  margin-bottom: 0.4rem;
}

.beyound-N19 .title-area .breadcrumbs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4rem;
  margin-top: 0.4rem;
}

.beyound-N19 .title-area .breadcrumbs li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.beyound-N19 .title-area .breadcrumbs li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  transform: translateX(2rem);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #d9d9d9;
}

.beyound-N19 .title-area .breadcrumbs li.active a {
  color: var(--black);
}

.beyound-N19 .title-area .breadcrumbs li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #999;
  font-weight: var(--fw-medium);
}

.beyound-N19 .title-area .breadcrumbs li:first-child a {
  padding: 0.7rem 0;
}

.beyound-N19 .title-area .breadcrumbs li a.ff-ico::before {
  display: flex;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
}

.beyound-N19 .desc-area .title {
  margin-bottom: 6rem;
}

.beyound-N19 .desc-area .title p {
  margin-top: 1.2rem;
  color: var(--text-color3);
}

.beyound-N19 .desc-area .thumb {
  margin-bottom: 3.2rem;
  height: 54rem;
}

.beyound-N19 .desc-area .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N19 .desc-area .desc {
  display: flex;
  justify-content: space-between;
}

.beyound-N19 .desc-area .desc strong {
  width: 50%;
}

.beyound-N19 .desc-area .desc p {
  width: calc(50% - 8rem);
}

.beyound-N19 .line {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 8rem;
  height: 20rem;
}

.beyound-N19 .line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0.1rem;
  height: 100%;
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N19 {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }

  .beyound-N19 .title-area {
    padding-bottom: 0.8rem;
  }

  .beyound-N19 .title-area .title {
    margin-bottom: 1.2rem;
  }

  .beyound-N19 .title-area .breadcrumbs {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 2.7rem;
    margin-top: 1.2rem;
  }

  .beyound-N19 .title-area .breadcrumbs li:not(:last-child)::after {
    transform: translateX(1.5rem);
    width: 0.3rem;
    height: 0.3rem;
  }

  .beyound-N19 .title-area .breadcrumbs li a {
    gap: 0.4rem;
  }

  .beyound-N19 .title-area .breadcrumbs li:first-child a {
    padding: 0.8rem 0;
  }

  .beyound-N19 .title-area .breadcrumbs li a.ff-ico::before {
    width: 1.6rem;
    height: 1.6rem;
  }

  .beyound-N19 .desc-area .title {
    margin-bottom: 3rem;
  }

  .beyound-N19 .desc-area .title p {
    margin-top: 0.8rem;
  }

  .beyound-N19 .desc-area .thumb {
    margin-bottom: 2.4rem;
    height: 40rem;
  }

  .beyound-N19 .desc-area .desc {
    display: block;
  }

  .beyound-N19 .desc-area .desc strong {
    display: inline-block;
    width: 100%;
  }

  .beyound-N19 .desc-area .desc p {
    width: 100%;
    margin-top: 1.2rem;
  }

  .beyound-N19 .line {
    margin-top: 4rem;
    height: 10rem;
  }
}
/* beyound-N20 */
.beyound-N20 {
  overflow: hidden;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 6rem;
}

.beyound-N20 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N20 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N20 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N20 .desc {
  flex: 1;
}

.beyound-N20 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N20 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N20 {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .beyound-N20 .contents-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .beyound-N20 .thumb {
    height: 24rem;
  }

  .beyound-N20 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N20 .thumb,
  .beyound-N20 .desc {
    flex: none;
    width: 100%;
  }
}
/* beyound-N21 */
.beyound-N21 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.beyound-N21 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N21 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N21 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N21 .desc {
  flex: 1;
}

.beyound-N21 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N21 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N21 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .beyound-N21 .contents-inner {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }

  .beyound-N21 .thumb {
    height: 24rem;
  }

  .beyound-N21 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N21 .desc img {
    width: 9rem;
  }

  .beyound-N21 .thumb,
  .beyound-N21 .desc {
    flex: none;
    width: 100%;
  }
}
/* beyound-N22 */
.beyound-N22 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.beyound-N22 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N22 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N22 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N22 .desc {
  flex: 1;
}

.beyound-N22 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N22 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N22 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .beyound-N22 .contents-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .beyound-N22 .thumb {
    height: 24rem;
  }

  .beyound-N22 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N22 .thumb,
  .beyound-N22 .desc {
    flex: none;
    width: 100%;
  }
}
/* beyound-N23 */
.beyound-N23 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.beyound-N23 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N23 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N23 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N23 .desc {
  flex: 1;
}

.beyound-N23 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N23 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N23 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .beyound-N23 .contents-inner {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }

  .beyound-N23 .thumb {
    height: 24rem;
  }

  .beyound-N23 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N23 .thumb,
  .beyound-N23 .desc {
    flex: none;
    width: 100%;
  }
}
/* beyound-N24 */
.beyound-N24 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 12rem;
}

.beyound-N24 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N24 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N24 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N24 .desc {
  flex: 1;
}

.beyound-N24 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N24 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N24 {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }

  .beyound-N24 .contents-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .beyound-N24 .thumb {
    height: 24rem;
  }

  .beyound-N24 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N24 .thumb,
  .beyound-N24 .desc {
    flex: none;
    width: 100%;
  }
}
/* beyound-N26 */
.beyound-N26 {
  overflow: hidden;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.beyound-N26 .contents-inner {
  width: 100%;
}

.beyound-N26 .list-item+.list-item {
  margin-top: 4rem;
}

.beyound-N26 .list-item strong {
  color: #111;
}

.beyound-N26 .list {
  margin-top: 1.2rem;
}

.beyound-N26 .list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  position: relative;
  color: #666;
}

.beyound-N26 .list li+li {
  margin-top: .8rem;
}

.beyound-N26 .list li::before {
  position: relative;
  top: 1rem;
  flex-shrink: 0;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #666;
}

@media (max-width: 992px) {
  .beyound-N26 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .beyound-N26 .list-item+.list-item {
    margin-top: 2.4rem;
  }

  .beyound-N26 .list {
    margin-top: 0.8rem;
  }

  .beyound-N26 .list li {
    gap: 0.4rem;
  }

  .beyound-N26 .list li::before {
    width: 2px;
    height: 2px;
  }
}
/* beyound-N27 */
.beyound-N27 {
  overflow: hidden;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 24rem;
}

.board_blank {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 300px;
  background: #ddd;
  align-items: center;
  flex-direction: column;
  font-size: 30px;
}

.beyound-N27 .textset {
  margin-bottom: 2.8rem;
}

.beyound-N27 .textset .textset-tit {
  font-weight: var(--fw-bold);
}

.beyound-N27 .textset .textset-tit+.textset-desc {
  margin-top: 1.6rem;
}

.beyound-N27 .textset .textset-desc {
  color: #777;
}

.beyound-N27 .cardset-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.beyound-N27 .cardset .cardset-figure {
  height: 32rem;
}

.beyound-N27 .cardset .cardset-body {
  padding-top: 1.6rem;
  padding-bottom: 0;
}

.beyound-N27 .cardset .cardset-tit {
  font-weight: var(--fw-bold);
}

.beyound-N27 .cardset .cardset-tit+.cardset-desc {
  margin-top: 0.8rem;
}

.beyound-N27 .cardset .cardset-desc {
  display: block;
  color: #777;
}

.pagiset {
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .beyound-N27 {
    padding-top: 6rem;
    padding-bottom: 12rem;
  }

  .beyound-N27 .textset {
    margin-bottom: 2.8rem;
  }

  .beyound-N27 .textset .textset-tit+.textset-desc {
    margin-top: 0.8rem;
  }

  .beyound-N27 .cardset-wrap {
    grid-template-columns: 1fr;
  }

  .beyound-N27 .cardset {
    width: 100%;
  }

  .beyound-N27 .cardset .cardset-figure {
    height: 25rem;
  }
}
/* beyound-N28 */
.beyound-N28 {
  overflow: hidden;
  position: relative;
  background: url(../images/img_subvisual_04.png) no-repeat center / cover !important;
}

.beyound-N28 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73rem;
}

.beyound-N28 .title-area {
  width: 100%;
  text-align: center;
}

.beyound-N28 .title-area .title {
  position: relative;
  color: #fff;
  font-weight: var(--fw-medium);
}

.beyound-N28 .title-area .title+.title {
  margin-top: .8rem;
}

.beyound-N28 .title-area p {
  margin-top: 2.4rem;
  color: #fff;
  font-weight: var(--fw-ragular);
}

.beyound-N28 .block_overlay {
  position: absolute;
  content: '';
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0A0A0AFF;
  opacity: 0.2;
}

@media (max-width: 992px) {
  .beyound-N28 {
    background: url(../images/img_subvisual_04_m.png) no-repeat center / cover !important;
  }

  .beyound-N28 .contents-container {
    height: 48rem;
  }

  .beyound-N28 .title-area {
    text-align: left;
  }

  .beyound-N28 .title-area h2 {
    padding-bottom: 1.4rem;
  }

  .beyound-N28 .title-area h2::after {
    left: 0;
    transform: none;
    width: 4rem;
  }

  .beyound-N28 .title-area p {
    margin-top: 1.2rem;
  }
}
/* beyound-N29 */
.beyound-N29 {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 12rem;
}

.beyound-N29 .contents-inner {
  width: 100%;
}

.beyound-N29 .title-area {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--black);
}

.beyound-N29 .title-area .title {
  margin-bottom: 0.4rem;
}

.beyound-N29 .title-area .breadcrumbs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4rem;
  margin-top: 0.4rem;
}

.beyound-N29 .title-area .breadcrumbs li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.beyound-N29 .title-area .breadcrumbs li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  transform: translateX(2rem);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #d9d9d9;
}

.beyound-N29 .title-area .breadcrumbs li.active a {
  color: var(--black);
}

.beyound-N29 .title-area .breadcrumbs li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #999;
  font-weight: var(--fw-medium);
}

.beyound-N29 .title-area .breadcrumbs li:first-child a {
  padding: 0.7rem 0;
}

.beyound-N29 .title-area .breadcrumbs li a.ff-ico::before {
  display: flex;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
}

.beyound-N29 .desc-area .title {
  margin-bottom: 6rem;
}

.beyound-N29 .desc-area .title p {
  margin-top: 1.2rem;
  color: var(--text-color3);
}

.beyound-N29 .desc-area .thumb {
  margin-bottom: 3.2rem;
  height: 54rem;
}

.beyound-N29 .desc-area .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N29 .desc-area .desc {
  display: flex;
  justify-content: space-between;
}

.beyound-N29 .desc-area .desc strong {
  width: 50%;
}

.beyound-N29 .desc-area .desc p {
  width: calc(50% - 8rem);
}

.beyound-N29 .line {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 8rem;
  height: 20rem;
}

.beyound-N29 .line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0.1rem;
  height: 100%;
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N29 {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }

  .beyound-N29 .title-area {
    padding-bottom: 0.8rem;
  }

  .beyound-N29 .title-area .title {
    margin-bottom: 1.2rem;
  }

  .beyound-N29 .title-area .breadcrumbs {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 2.7rem;
    margin-top: 1.2rem;
  }

  .beyound-N29 .title-area .breadcrumbs li:not(:last-child)::after {
    transform: translateX(1.5rem);
    width: 0.3rem;
    height: 0.3rem;
  }

  .beyound-N29 .title-area .breadcrumbs li a {
    gap: 0.4rem;
  }

  .beyound-N29 .title-area .breadcrumbs li:first-child a {
    padding: 0.8rem 0;
  }

  .beyound-N29 .title-area .breadcrumbs li a.ff-ico::before {
    width: 1.6rem;
    height: 1.6rem;
  }

  .beyound-N29 .desc-area .title {
    margin-bottom: 3rem;
  }

  .beyound-N29 .desc-area .title p {
    margin-top: 0.8rem;
  }

  .beyound-N29 .desc-area .thumb {
    margin-bottom: 2.4rem;
    height: 40rem;
  }

  .beyound-N29 .desc-area .desc {
    display: block;
  }

  .beyound-N29 .desc-area .desc strong {
    display: inline-block;
    width: 100%;
  }

  .beyound-N29 .desc-area .desc p {
    width: 100%;
    margin-top: 1.2rem;
  }

  .beyound-N29 .line {
    margin-top: 4rem;
    height: 10rem;
  }
}
/* beyound-N30 */
.beyound-N30 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.beyound-N30 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N30 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N30 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N30 .desc {
  flex: 1;
}

.beyound-N30 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N30 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

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

  .beyound-N30 .contents-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .beyound-N30 .thumb {
    height: 24rem;
  }

  .beyound-N30 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N30 .thumb,
  .beyound-N30 .desc {
    flex: none;
    width: 100%;
  }
}
/* beyound-N31 */
.beyound-N31 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 12rem;
}

.beyound-N31 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N31 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N31 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N31 .desc {
  flex: 1;
}

.beyound-N31 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N31 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N31 {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }

  .beyound-N31 .contents-inner {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }

  .beyound-N31 .thumb {
    height: 24rem;
  }

  .beyound-N31 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N31 .thumb,
  .beyound-N31 .desc {
    flex: none;
    width: 100%;
  }
}
/* beyound-N32 */
.beyound-N32 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.beyound-N32 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N32 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N32 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N32 .desc {
  flex: 1;
}

.beyound-N32 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N32 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N32 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .beyound-N32 .contents-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .beyound-N32 .thumb {
    height: 24rem;
  }

  .beyound-N32 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N32 .thumb,
  .beyound-N32 .desc {
    flex: none;
    width: 100%;
  }
}
/* beyound-N33 */
.beyound-N33 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 12rem;
}

.beyound-N33 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N33 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N33 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N33 .desc {
  flex: 1;
}

.beyound-N33 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N33 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N33 {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }

  .beyound-N33 .contents-inner {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }

  .beyound-N33 .thumb {
    height: 24rem;
  }

  .beyound-N33 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N33 .thumb,
  .beyound-N33 .desc {
    flex: none;
    width: 100%;
  }
}
/* beyound-N35 */
.beyound-N35 {
  overflow: hidden;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.beyound-N35 .contents-inner {
  width: 100%;
}

.beyound-N35 .list-item+.list-item {
  margin-top: 4rem;
}

.beyound-N35 .list-item strong {
  color: #111;
}

.beyound-N35 .list {
  margin-top: 1.2rem;
}

.beyound-N35 .list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  position: relative;
  color: #666;
}

.beyound-N35 .list li+li {
  margin-top: .8rem;
}

.beyound-N35 .list li::before {
  position: relative;
  top: 1rem;
  flex-shrink: 0;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #666;
}

@media (max-width: 992px) {
  .beyound-N35 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .beyound-N35 .list-item+.list-item {
    margin-top: 2.4rem;
  }

  .beyound-N35 .list {
    margin-top: 0.8rem;
  }

  .beyound-N35 .list li {
    gap: 0.4rem;
  }

  .beyound-N35 .list li::before {
    width: 2px;
    height: 2px;
  }
}
/* beyound-N36 */
.beyound-N36 {
  overflow: hidden;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 24rem;
}

.beyound-N36 .textset {
  margin-bottom: 2.8rem;
}

.board_blank {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 300px;
  background: #ddd;
  align-items: center;
  flex-direction: column;
  font-size: 30px;
}

.beyound-N36 .textset .textset-tit {
  font-weight: var(--fw-bold);
}

.beyound-N36 .textset .textset-tit+.textset-desc {
  margin-top: 1.6rem;
}

.beyound-N36 .textset .textset-desc {
  color: #777;
}

.beyound-N36 .cardset-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.beyound-N36 .cardset .cardset-figure {
  height: 32rem;
}

.beyound-N36 .cardset .cardset-body {
  padding-top: 1.6rem;
  padding-bottom: 0;
}

.beyound-N36 .cardset .cardset-tit {
  font-weight: var(--fw-bold);
}

.beyound-N36 .cardset .cardset-tit+.cardset-desc {
  margin-top: 0.8rem;
}

.beyound-N36 .cardset .cardset-desc {
  display: block;
  color: #777;
}

.pagiset {
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .beyound-N36 {
    padding-top: 6rem;
    padding-bottom: 12rem;
  }

  .beyound-N36 .textset {
    margin-bottom: 2.8rem;
  }

  .beyound-N36 .textset .textset-tit+.textset-desc {
    margin-top: 0.8rem;
  }

  .beyound-N36 .cardset-wrap {
    grid-template-columns: 1fr;
  }

  .beyound-N36 .cardset {
    width: 100%;
  }

  .beyound-N36 .cardset .cardset-figure {
    height: 25rem;
  }
}
/* beyound-N37 */
.beyound-N37 {
  overflow: hidden;
  position: relative;
  background: url(../etc/bcae0587504146da939ace801dd18909) no-repeat center / cover !important;
}

.beyound-N37 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73rem;
}

.beyound-N37 .title-area {
  width: 100%;
  text-align: center;
}

.beyound-N37 .title-area .title {
  position: relative;
  color: #fff;
  font-weight: var(--fw-medium);
}

.beyound-N37 .title-area .title+.title {
  margin-top: .8rem;
}

.beyound-N37 .title-area p {
  margin-top: 2.4rem;
  color: #fff;
  font-weight: var(--fw-ragular);
}

.beyound-N37 .block_overlay {
  position: absolute;
  content: '';
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #959596FF;
  opacity: 0.1;
}

@media (max-width: 992px) {
  .beyound-N37 {
    background: url(../etc/dd8af0b0b3ae4927b7a09fdc79ff3a7a) no-repeat center / cover !important;
  }

  .beyound-N37 .contents-container {
    height: 48rem;
  }

  .beyound-N37 .title-area {
    text-align: left;
  }

  .beyound-N37 .title-area h2 {
    padding-bottom: 1.4rem;
  }

  .beyound-N37 .title-area h2::after {
    left: 0;
    transform: none;
    width: 4rem;
  }

  .beyound-N37 .title-area p {
    margin-top: 1.2rem;
  }
}
/* beyound-N38 */
.beyound-N38 {
  overflow: hidden;
  position: relative;
  padding-top: 24rem;
  padding-bottom: 6rem;
}

.beyound-N38#PGm8NthLw6 {
  overflow: hidden;
  position: relative;
  padding-top: 24rem;
  padding-bottom: 6rem;
}

.beyound-N38 .contents-container {
  position: relative;
}

.beyound-N38 .contents-inner {
  width: 100%;
}

.beyound-N38 .textset {
  margin-bottom: 4rem;
  text-align: center;
}

.beyound-N38 .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N38 .contents-swiper {
  overflow: hidden;
}

.beyound-N38 .swiper-slide {
  position: relative;
}

.beyound-N38 .cardset {
  width: 100%;
}

.beyound-N38 .cardset-figure {
  height: 23rem;
}

.beyound-N38 .cardset .cardset-body {
  padding: 1.2rem 0 0;
}

.beyound-N38 .cardset .cardset-tit {
  font-weight: var(--fw-medium);
}

.beyound-N38 .cardset .cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N38 .swiper-control {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.beyound-N38 .swiper-button-prev,
.beyound-N38 .swiper-button-next {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
}

.beyound-N38 .swiper-button-next {
  margin-left: 1.2rem;
}

.beyound-N38 .swiper-button-prev::after,
.beyound-N38 .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../icons/ico_basic_arrow_black.svg) no-repeat center/contain;
}

.beyound-N38 .swiper-button-next::after {
  transform: rotate(180deg);
}

.beyound-N38 .swiper-pagination-progressbar {
  position: relative;
  margin-right: 2rem;
  background: #eee;
}

.beyound-N38 .swiper-pagination-progressbar-fill {
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N38 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .beyound-N38#PGm8NthLw6 {
    padding-top: 10rem;
    padding-bottom: 2rem;
  }

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

  .beyound-N38 .textset-tit+.textset-desc {
    margin-top: 0.6rem;
  }

  .beyound-N38 .cardset .cardset-body {
    padding: 1.2rem 0 0;
  }

  .beyound-N38 .contents-control {
    flex-direction: column;
    margin-top: 2.8rem;
  }

  .beyound-N38 .contents-control .btnset {
    position: relative;
    align-self: flex-end;
    margin-top: 3rem;
  }

  .beyound-N38 .cardset .cardset-desc {
    margin-top: 0.7rem;
  }

  .beyound-N38 .swiper-button-next,
  .beyound-N38 .swiper-button-prev {
    display: none;
  }
}
/* beyound-N39 */
.beyound-N39 {
  overflow: hidden;
  position: relative;
  padding-bottom: 6rem;
}

.beyound-N39 .contents-container {
  position: relative;
}

.beyound-N39 .contents-inner {
  padding-top: 6rem;
  width: 100%;
  border-top: 1px solid #e5e5e5;
}

.beyound-N39 .textset {
  margin-bottom: 4rem;
  text-align: center;
}

.beyound-N39 .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N39 .contents-swiper {
  overflow: hidden;
}

.beyound-N39 .swiper-slide {
  position: relative;
}

.beyound-N39 .cardset {
  width: 100%;
}

.beyound-N39 .cardset-figure {
  height: 23rem;
}

.beyound-N39 .cardset .cardset-body {
  padding: 1.2rem 0 0;
}

.beyound-N39 .cardset .cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N39 .cardset .cardset-tit {
  font-weight: var(--fw-medium);
}

.beyound-N39 .swiper-control {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.beyound-N39 .swiper-button-prev,
.beyound-N39 .swiper-button-next {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
}

.beyound-N39 .swiper-button-next {
  margin-left: 1.2rem;
}

.beyound-N39 .swiper-button-prev::after,
.beyound-N39 .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../icons/ico_basic_arrow_black.svg) no-repeat center/contain;
}

.beyound-N39 .swiper-button-next::after {
  transform: rotate(180deg);
}

.beyound-N39 .swiper-pagination-progressbar {
  position: relative;
  margin-right: 2rem;
  background: #eee;
}

.beyound-N39 .swiper-pagination-progressbar-fill {
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N39 {
    padding-bottom: 2rem;
  }

  .beyound-N39 .contents-inner {
    padding-top: 2rem;
    width: 100%;
    border-top: 1px solid #e5e5e5;
  }

  .beyound-N39 .textset {
    margin-bottom: 4rem;
  }

  .beyound-N39 .textset-tit+.textset-desc {
    margin-top: 0.6rem;
  }

  .beyound-N39 .cardset .cardset-body {
    padding: 1.2rem 0 0;
  }

  .beyound-N39 .contents-control {
    flex-direction: column;
    margin-top: 2.8rem;
  }

  .beyound-N39 .contents-control .btnset {
    position: relative;
    align-self: flex-end;
    margin-top: 3rem;
  }

  .beyound-N39 .cardset .cardset-desc {
    margin-top: 0.7rem;
  }

  .beyound-N39 .swiper-button-next,
  .beyound-N39 .swiper-button-prev {
    display: none;
  }

  .beyound-N39 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem 0 0 !important;
  }
}
/* beyound-N40 */
.beyound-N40 {
  overflow: hidden;
  position: relative;
  padding-bottom: 6rem;
}

.beyound-N40 .contents-container {
  position: relative;
}

.beyound-N40 .contents-inner {
  padding-top: 6rem;
  width: 100%;
  border-top: 1px solid #e5e5e5;
}

.beyound-N40 .textset {
  margin-bottom: 4rem;
  text-align: center;
}

.beyound-N40 .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N40 .contents-swiper {
  overflow: hidden;
}

.beyound-N40 .swiper-slide {
  position: relative;
}

.beyound-N40 .cardset {
  width: 100%;
}

.beyound-N40 .cardset-figure {
  height: 23rem;
}

.beyound-N40 .cardset .cardset-body {
  padding: 1.2rem 0 0;
}

.beyound-N40 .cardset .cardset-tit {
  font-weight: var(--fw-medium);
}

.beyound-N40 .cardset .cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N40 .swiper-control {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.beyound-N40 .swiper-button-prev,
.beyound-N40 .swiper-button-next {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
}

.beyound-N40 .swiper-button-next {
  margin-left: 1.2rem;
}

.beyound-N40 .swiper-button-prev::after,
.beyound-N40 .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../icons/ico_basic_arrow_black.svg) no-repeat center/contain;
}

.beyound-N40 .swiper-button-next::after {
  transform: rotate(180deg);
}

.beyound-N40 .swiper-pagination-progressbar {
  position: relative;
  margin-right: 2rem;
  background: #eee;
}

.beyound-N40 .swiper-pagination-progressbar-fill {
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N40 {
    padding-bottom: 2rem;
  }

  .beyound-N40 .contents-inner {
    padding-top: 2rem;
  }

  .beyound-N40 .textset {
    margin-bottom: 4rem;
  }

  .beyound-N40 .textset-tit+.textset-desc {
    margin-top: 0.6rem;
  }

  .beyound-N40 .cardset .cardset-body {
    padding: 1.2rem 0 0;
  }

  .beyound-N40 .contents-control {
    flex-direction: column;
    margin-top: 2.8rem;
  }

  .beyound-N40 .contents-control .btnset {
    position: relative;
    align-self: flex-end;
    margin-top: 3rem;
  }

  .beyound-N40 .cardset .cardset-desc {
    margin-top: 0.7rem;
  }

  .beyound-N40 .swiper-button-next,
  .beyound-N40 .swiper-button-prev {
    display: none;
  }

  .beyound-N40 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem 0 0 !important;
  }
}
/* beyound-N41 */
.beyound-N41 {
  overflow: hidden;
  position: relative;
  padding-bottom: 6rem;
}

.beyound-N41 .contents-container {
  position: relative;
}

.beyound-N41 .contents-inner {
  padding-top: 6rem;
  width: 100%;
  border-top: 1px solid #e5e5e5;
}

.beyound-N41 .textset {
  margin-bottom: 4rem;
  text-align: center;
}

.beyound-N41 .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N41 .contents-swiper {
  overflow: hidden;
}

.beyound-N41 .swiper-slide {
  position: relative;
}

.beyound-N41 .cardset {
  width: 100%;
}

.beyound-N41 .cardset-figure {
  height: 23rem;
}

.beyound-N41 .cardset .cardset-body {
  padding: 1.2rem 0 0;
}

.beyound-N41 .cardset .cardset-tit {
  font-weight: var(--fw-medium);
}

.beyound-N41 .cardset .cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N41 .swiper-control {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.beyound-N41 .swiper-button-prev,
.beyound-N41 .swiper-button-next {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
}

.beyound-N41 .swiper-button-next {
  margin-left: 1.2rem;
}

.beyound-N41 .swiper-button-prev::after,
.beyound-N41 .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../icons/ico_basic_arrow_black.svg) no-repeat center/contain;
}

.beyound-N41 .swiper-button-next::after {
  transform: rotate(180deg);
}

.beyound-N41 .swiper-pagination-progressbar {
  position: relative;
  margin-right: 2rem;
  background: #eee;
}

.beyound-N41 .swiper-pagination-progressbar-fill {
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N41 {
    padding-bottom: 2rem;
  }

  .beyound-N41 .contents-inner {
    padding-top: 2rem;
  }

  .beyound-N41 .textset {
    margin-bottom: 4rem;
  }

  .beyound-N41 .textset-tit+.textset-desc {
    margin-top: 0.6rem;
  }

  .beyound-N41 .cardset .cardset-body {
    padding: 1.2rem 0 0;
  }

  .beyound-N41 .contents-control {
    flex-direction: column;
    margin-top: 2.8rem;
  }

  .beyound-N41 .contents-control .btnset {
    position: relative;
    align-self: flex-end;
    margin-top: 3rem;
  }

  .beyound-N41 .cardset .cardset-desc {
    margin-top: 0.7rem;
  }

  .beyound-N41 .swiper-button-next,
  .beyound-N41 .swiper-button-prev {
    display: none;
  }

  .beyound-N41 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem 0 0 !important;
  }
}
/* beyound-N42 */
.beyound-N42 {
  overflow: hidden;
  position: relative;
  padding-bottom: 6rem;
}

.beyound-N42 .contents-container {
  position: relative;
}

.beyound-N42 .contents-inner {
  padding-top: 6rem;
  width: 100%;
  border-top: 1px solid #e5e5e5;
}

.beyound-N42 .textset {
  margin-bottom: 4rem;
  text-align: center;
}

.beyound-N42 .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N42 .contents-swiper {
  overflow: hidden;
}

.beyound-N42 .swiper-slide {
  position: relative;
}

.beyound-N42 .cardset {
  width: 100%;
}

.beyound-N42 .cardset-figure {
  height: 23rem;
}

.beyound-N42 .cardset .cardset-body {
  padding: 1.2rem 0 0;
}

.beyound-N42 .cardset .cardset-tit {
  font-weight: var(--fw-medium);
}

.beyound-N42 .cardset .cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N42 .swiper-control {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.beyound-N42 .swiper-button-prev,
.beyound-N42 .swiper-button-next {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
}

.beyound-N42 .swiper-button-next {
  margin-left: 1.2rem;
}

.beyound-N42 .swiper-button-prev::after,
.beyound-N42 .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../icons/ico_basic_arrow_black.svg) no-repeat center/contain;
}

.beyound-N42 .swiper-button-next::after {
  transform: rotate(180deg);
}

.beyound-N42 .swiper-pagination-progressbar {
  position: relative;
  margin-right: 2rem;
  background: #eee;
}

.beyound-N42 .swiper-pagination-progressbar-fill {
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N42 {
    padding-bottom: 2rem;
  }

  .beyound-N42 .contents-inner {
    padding-top: 2rem;
    width: 100%;
    border-top: 1px solid #e5e5e5;
  }

  .beyound-N42 .textset {
    margin-bottom: 4rem;
  }

  .beyound-N42 .textset-tit+.textset-desc {
    margin-top: 0.6rem;
  }

  .beyound-N42 .cardset .cardset-body {
    padding: 1.2rem 0 0;
  }

  .beyound-N42 .contents-control {
    flex-direction: column;
    margin-top: 2.8rem;
  }

  .beyound-N42 .contents-control .btnset {
    position: relative;
    align-self: flex-end;
    margin-top: 3rem;
  }

  .beyound-N42 .cardset .cardset-desc {
    margin-top: 0.7rem;
  }

  .beyound-N42 .swiper-button-next,
  .beyound-N42 .swiper-button-prev {
    display: none;
  }

  .beyound-N42 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem 0 0 !important;
  }
}
/* beyound-N43 */
.beyound-N43 {
  overflow: hidden;
  position: relative;
  padding-bottom: 6rem;
}

.beyound-N43 .contents-container {
  position: relative;
}

.beyound-N43 .contents-inner {
  padding-top: 6rem;
  width: 100%;
  border-top: 1px solid #e5e5e5;
}

.beyound-N43 .textset {
  margin-bottom: 4rem;
  text-align: center;
}

.beyound-N43 .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N43 .contents-swiper {
  overflow: hidden;
}

.beyound-N43 .swiper-slide {
  position: relative;
}

.beyound-N43 .cardset {
  width: 100%;
}

.beyound-N43 .cardset-figure {
  height: 23rem;
}

.beyound-N43 .cardset .cardset-body {
  padding: 1.2rem 0 0;
}

.beyound-N43 .cardset .cardset-tit {
  font-weight: var(--fw-medium);
}

.beyound-N43 .cardset .cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N43 .swiper-control {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.beyound-N43 .swiper-button-prev,
.beyound-N43 .swiper-button-next {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
}

.beyound-N43 .swiper-button-next {
  margin-left: 1.2rem;
}

.beyound-N43 .swiper-button-prev::after,
.beyound-N43 .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../icons/ico_basic_arrow_black.svg) no-repeat center/contain;
}

.beyound-N43 .swiper-button-next::after {
  transform: rotate(180deg);
}

.beyound-N43 .swiper-pagination-progressbar {
  position: relative;
  margin-right: 2rem;
  background: #eee;
}

.beyound-N43 .swiper-pagination-progressbar-fill {
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N43 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .beyound-N43 .contents-inner {
    padding-top: 2rem;
  }

  .beyound-N43 .textset {
    margin-bottom: 4rem;
  }

  .beyound-N43 .textset-tit+.textset-desc {
    margin-top: 0.6rem;
  }

  .beyound-N43 .cardset .cardset-body {
    padding: 1.2rem 0 0;
  }

  .beyound-N43 .contents-control {
    flex-direction: column;
    margin-top: 2.8rem;
  }

  .beyound-N43 .contents-control .btnset {
    position: relative;
    align-self: flex-end;
    margin-top: 3rem;
  }

  .beyound-N43 .cardset .cardset-desc {
    margin-top: 0.7rem;
  }

  .beyound-N43 .swiper-button-next,
  .beyound-N43 .swiper-button-prev {
    display: none;
  }

  .beyound-N43 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem 0 0 !important;
  }
}
/* beyound-N44 */
.beyound-N44 {
  overflow: hidden;
  position: relative;
  padding-bottom: 6rem;
}

.beyound-N44 .contents-container {
  position: relative;
}

.beyound-N44 .contents-inner {
  padding-top: 6rem;
  width: 100%;
  border-top: 1px solid #e5e5e5;
}

.beyound-N44 .textset {
  margin-bottom: 4rem;
  text-align: center;
}

.beyound-N44 .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N44 .contents-swiper {
  overflow: hidden;
}

.beyound-N44 .swiper-slide {
  position: relative;
}

.beyound-N44 .cardset {
  width: 100%;
}

.beyound-N44 .cardset-figure {
  height: 23rem;
}

.beyound-N44 .cardset .cardset-body {
  padding: 1.2rem 0 0;
}

.beyound-N44 .cardset .cardset-tit {
  font-weight: var(--fw-medium);
}

.beyound-N44 .cardset .cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N44 .swiper-control {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.beyound-N44 .swiper-button-prev,
.beyound-N44 .swiper-button-next {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
}

.beyound-N44 .swiper-button-next {
  margin-left: 1.2rem;
}

.beyound-N44 .swiper-button-prev::after,
.beyound-N44 .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../icons/ico_basic_arrow_black.svg) no-repeat center/contain;
}

.beyound-N44 .swiper-button-next::after {
  transform: rotate(180deg);
}

.beyound-N44 .swiper-pagination-progressbar {
  position: relative;
  margin-right: 2rem;
  background: #eee;
}

.beyound-N44 .swiper-pagination-progressbar-fill {
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N44 {
    padding-bottom: 2rem;
  }

  .beyound-N44 .contents-inner {
    padding-top: 2rem;
  }

  .beyound-N44 .textset {
    margin-bottom: 4rem;
  }

  .beyound-N44 .textset-tit+.textset-desc {
    margin-top: 0.6rem;
  }

  .beyound-N44 .cardset .cardset-body {
    padding: 1.2rem 0 0;
  }

  .beyound-N44 .contents-control {
    flex-direction: column;
    margin-top: 2.8rem;
  }

  .beyound-N44 .contents-control .btnset {
    position: relative;
    align-self: flex-end;
    margin-top: 3rem;
  }

  .beyound-N44 .cardset .cardset-desc {
    margin-top: 0.7rem;
  }

  .beyound-N44 .swiper-button-next,
  .beyound-N44 .swiper-button-prev {
    display: none;
  }

  .beyound-N44 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem 0 0 !important;
  }
}
/* beyound-N45 */
.beyound-N45 {
  overflow: hidden;
  position: relative;
  padding-bottom: 24rem;
}

.beyound-N45 .contents-container {
  position: relative;
}

.beyound-N45 .contents-inner {
  padding-top: 6rem;
  width: 100%;
  border-top: 1px solid #e5e5e5;
}

.beyound-N45 .textset {
  margin-bottom: 4rem;
  text-align: center;
}

.beyound-N45 .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N45 .contents-swiper {
  overflow: hidden;
}

.beyound-N45 .swiper-slide {
  position: relative;
}

.beyound-N45 .cardset {
  width: 100%;
}

.beyound-N45 .cardset-figure {
  height: 23rem;
}

.beyound-N45 .cardset .cardset-body {
  padding: 1.2rem 0 0;
}

.beyound-N45 .cardset .cardset-tit {
  font-weight: var(--fw-medium);
}

.beyound-N45 .cardset .cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  color: #777777;
  font-weight: var(--fw-regular);
}

.beyound-N45 .swiper-control {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}

.beyound-N45 .swiper-button-prev,
.beyound-N45 .swiper-button-next {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
}

.beyound-N45 .swiper-button-next {
  margin-left: 1.2rem;
}

.beyound-N45 .swiper-button-prev::after,
.beyound-N45 .swiper-button-next::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../icons/ico_basic_arrow_black.svg) no-repeat center/contain;
}

.beyound-N45 .swiper-button-next::after {
  transform: rotate(180deg);
}

.beyound-N45 .swiper-pagination-progressbar {
  position: relative;
  margin-right: 2rem;
  background: #eee;
}

.beyound-N45 .swiper-pagination-progressbar-fill {
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N45 {
    padding-bottom: 12rem;
  }

  .beyound-N45 .contents-inner {
    padding-top: 2rem;
  }

  .beyound-N45 .textset {
    margin-bottom: 4rem;
  }

  .beyound-N45 .textset-tit+.textset-desc {
    margin-top: 0.6rem;
  }

  .beyound-N45 .cardset .cardset-body {
    padding: 1.2rem 0 0;
  }

  .beyound-N45 .contents-control {
    flex-direction: column;
    margin-top: 2.8rem;
  }

  .beyound-N45 .contents-control .btnset {
    position: relative;
    align-self: flex-end;
    margin-top: 3rem;
  }

  .beyound-N45 .cardset .cardset-desc {
    margin-top: 0.7rem;
  }

  .beyound-N45 .swiper-button-next,
  .beyound-N45 .swiper-button-prev {
    display: none;
  }

  .beyound-N45 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem 0 0 !important;
  }
}
/* beyound-N48 */
.beyound-N48 {
  overflow: hidden;
  position: relative;
  background: url(../images/img_subvisual_06.png) no-repeat center / cover !important;
}

.beyound-N48 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73rem;
}

.beyound-N48 .title-area {
  width: 100%;
  text-align: center;
}

.beyound-N48 .title-area .title {
  position: relative;
  color: #fff;
  font-weight: var(--fw-medium);
}

.beyound-N48 .title-area .title+.title {
  margin-top: .8rem;
}

.beyound-N48 .title-area p {
  margin-top: 2.4rem;
  color: #fff;
  font-weight: var(--fw-ragular);
}

.beyound-N48 .block_overlay {
  position: absolute;
  content: '';
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #042858FF;
  opacity: 0.2;
}

@media (max-width: 992px) {
  .beyound-N48 {
    background: url(../images/img_subvisual_06_m.png) no-repeat center / cover !important;
  }

  .beyound-N48 .contents-container {
    height: 48rem;
  }

  .beyound-N48 .title-area {
    text-align: left;
  }

  .beyound-N48 .title-area h2 {
    padding-bottom: 1.4rem;
  }

  .beyound-N48 .title-area h2::after {
    left: 0;
    transform: none;
    width: 4rem;
  }

  .beyound-N48 .title-area p {
    margin-top: 1.2rem;
  }
}
/* beyound-N49 */
.beyound-N49 {
  overflow: hidden;
  position: relative;
  padding-top: 24rem;
  padding-bottom: 24rem;
}

.board_blank {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 300px;
  background: #ddd;
  align-items: center;
  flex-direction: column;
  font-size: 30px;
}

.beyound-N49 .contents-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  width: 100%;
}

.beyound-N49 .thumb {
  height: 38rem;
}

.beyound-N49 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N49 .desc {
  display: flex;
  flex-direction: column;
}

.beyound-N49 .desc strong {
  margin: 2.4rem 0 .8rem;
  font-weight: var(--fw-bold);
}

.beyound-N49 .desc span {
  color: #777777;
}

.pagiset {
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .beyound-N49 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .beyound-N49 .contents-inner {
    grid-template-columns: 1fr 1fr;
  }

  .beyound-N49 .thumb {
    height: 22rem;
  }

  .beyound-N49 .desc strong {
    margin: 2rem 0 0.8rem;
    font-weight: var(--fw-bold);
  }
}

@media (max-width: 557px) {
  .beyound-N49 .contents-inner {
    grid-template-columns: 1fr;
  }
}
/* beyound-N50 */
.beyound-N50 {
  overflow: hidden;
  position: relative;
  background: url(../images/img_subvisual_07.png) no-repeat center / cover !important;
}

.beyound-N50 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73rem;
}

.beyound-N50 .title-area {
  width: 100%;
  text-align: center;
}

.beyound-N50 .title-area .title {
  position: relative;
  color: #fff;
  font-weight: var(--fw-medium);
}

.beyound-N50 .title-area .title+.title {
  margin-top: .8rem;
}

.beyound-N50 .title-area p {
  margin-top: 2.4rem;
  color: #fff;
  font-weight: var(--fw-ragular);
}

.beyound-N50 .block_overlay {
  position: absolute;
  content: '';
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

@media (max-width: 992px) {
  .beyound-N50 {
    background: url(../images/img_subvisual_07_m.png) no-repeat center / cover !important;
  }

  .beyound-N50 .contents-container {
    height: 48rem;
  }

  .beyound-N50 .title-area {
    text-align: left;
  }

  .beyound-N50 .title-area h2 {
    padding-bottom: 1.4rem;
  }

  .beyound-N50 .title-area h2::after {
    left: 0;
    transform: none;
    width: 4rem;
  }

  .beyound-N50 .title-area p {
    margin-top: 1.2rem;
  }
}
/* beyound-tab */
.beyound-tab {
  position: relative;
  padding-top: 0rem;
}

.beyound-tab .tabset.tabset-solid .tabset-link.active,
.tabset.tabset-solid .tabset-link:hover {
  color: #111;
}

.beyound-tab .tabset.tabset-text .tabset-item+.tabset-item .tabset-link::before {
  content: none;
}

.beyound-tab .tabset.tabset-solid .tabset-link::after {
  background: #111;
}

@media (max-width: 992px) {
  .beyound-tab .tabset .tabset-list {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 2.4rem;
  }

  .beyound-tab .tabset.tabset-text .tabset-item {
    width: auto;
  }

  .beyound-tab .tabset.tabset-text .tabset-link {
    white-space: nowrap;
  }

  .beyound-tab {}
}
/* beyound-N51 */
.beyound-N51 {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 24rem;
}

.board_blank {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 300px;
  background: #ddd;
  align-items: center;
  flex-direction: column;
  font-size: 30px;
}

.beyound-N51 .textset {
  margin-bottom: 2.8rem;
}

.beyound-N51 .textset .textset-tit {
  font-weight: var(--fw-bold);
}

.beyound-N51 .textset .textset-tit+.textset-desc {
  margin-top: 1.6rem;
}

.beyound-N51 .textset .textset-desc {
  color: #777;
}

.beyound-N51 .cardset-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
}

.beyound-N51 .cardset .cardset-figure {
  height: 32rem;
}

.beyound-N51 .cardset .cardset-body {
  padding-top: 1.6rem;
  padding-bottom: 0;
}

.beyound-N51 .cardset .cardset-tit {
  font-weight: var(--fw-bold);
}

.beyound-N51 .cardset .cardset-tit+.cardset-desc {
  margin-top: 0.8rem;
}

.beyound-N51 .cardset .cardset-desc {
  display: block;
  color: #777;
}

.pagiset {
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .beyound-N51 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .beyound-N51 .textset {
    margin-bottom: 2.8rem;
  }

  .beyound-N51 .textset .textset-tit+.textset-desc {
    margin-top: 0.8rem;
  }

  .beyound-N51 .cardset-wrap {
    grid-template-columns: 1fr;
  }

  .beyound-N51 .cardset {
    width: 100%;
  }

  .beyound-N51 .cardset .cardset-figure {
    height: 25rem;
  }
}
/* personal-vbM8MT8W7V */
.beyound-N10 {
  overflow: hidden;
  position: relative;
  background: url(../images/img_subvisual_02.png) no-repeat center / cover !important;
}

.beyound-N10 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73rem;
}

.beyound-N10 .title-area {
  width: 100%;
  text-align: center;
}

.beyound-N10 .title-area .title {
  position: relative;
  color: #fff;
  font-weight: var(--fw-medium);
}

.beyound-N10 .title-area .title+.title {
  margin-top: .8rem;
}

.beyound-N10 .title-area p {
  margin-top: 2.4rem;
  color: #fff;
  font-weight: var(--fw-ragular);
}

.beyound-N10 .block_overlay {
  position: absolute;
  content: '';
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #372E21FF;
  opacity: 0.2;
}

@media (max-width: 992px) {
  .beyound-N10 {
    background: url(../etc/c86843e2b8fc4848b7e1556565a93dca) no-repeat center / cover !important;
  }

  .beyound-N10 .contents-container {
    height: 48rem;
  }

  .beyound-N10 .title-area {
    text-align: left;
  }

  .beyound-N10 .title-area h2 {
    padding-bottom: 1.4rem;
  }

  .beyound-N10 .title-area h2::after {
    left: 0;
    transform: none;
    width: 4rem;
  }

  .beyound-N10 .title-area p {
    margin-top: 1.2rem;
  }
}
/* personal-ZnMAQ6PP30 */
.beyound-N11 {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 12rem;
}

.beyound-N11 .contents-inner {
  width: 100%;
}

.beyound-N11 .title-area {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--black);
}

.beyound-N11 .title-area .title {
  margin-bottom: 0.4rem;
}

.beyound-N11 .title-area .breadcrumbs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4rem;
  margin-top: 0.4rem;
}

.beyound-N11 .title-area .breadcrumbs li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.beyound-N11 .title-area .breadcrumbs li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  transform: translateX(2rem);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #d9d9d9;
}

.beyound-N11 .title-area .breadcrumbs li.active a {
  color: var(--black);
}

.beyound-N11 .title-area .breadcrumbs li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #999;
  font-weight: var(--fw-medium);
}

.beyound-N11 .title-area .breadcrumbs li:first-child a {
  padding: 0.7rem 0;
}

.beyound-N11 .title-area .breadcrumbs li a.ff-ico::before {
  display: flex;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
}

.beyound-N11 .desc-area .title {
  margin-bottom: 6rem;
}

.beyound-N11 .desc-area .title p {
  margin-top: 1.2rem;
  color: var(--text-color3);
}

.beyound-N11 .desc-area .thumb {
  margin-bottom: 3.2rem;
  height: 54rem;
}

.beyound-N11 .desc-area .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N11 .desc-area .desc {
  display: flex;
  justify-content: space-between;
}

.beyound-N11 .desc-area .desc strong {
  width: 50%;
}

.beyound-N11 .desc-area .desc p {
  width: calc(50% - 8rem);
}

.beyound-N11 .line {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 8rem;
  height: 20rem;
}

.beyound-N11 .line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0.1rem;
  height: 100%;
  background: var(--black);
}

@media (max-width: 992px) {
  .beyound-N11 {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }

  .beyound-N11 .title-area {
    padding-bottom: 0.8rem;
  }

  .beyound-N11 .title-area .title {
    margin-bottom: 1.2rem;
  }

  .beyound-N11 .title-area .breadcrumbs {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 2.7rem;
    margin-top: 1.2rem;
  }

  .beyound-N11 .title-area .breadcrumbs li:not(:last-child)::after {
    transform: translateX(1.5rem);
    width: 0.3rem;
    height: 0.3rem;
  }

  .beyound-N11 .title-area .breadcrumbs li a {
    gap: 0.4rem;
  }

  .beyound-N11 .title-area .breadcrumbs li:first-child a {
    padding: 0.8rem 0;
  }

  .beyound-N11 .title-area .breadcrumbs li a.ff-ico::before {
    width: 1.6rem;
    height: 1.6rem;
  }

  .beyound-N11 .desc-area .title {
    margin-bottom: 3rem;
  }

  .beyound-N11 .desc-area .title p {
    margin-top: 0.8rem;
  }

  .beyound-N11 .desc-area .thumb {
    margin-bottom: 2.4rem;
    height: 40rem;
  }

  .beyound-N11 .desc-area .desc {
    display: block;
  }

  .beyound-N11 .desc-area .desc strong {
    display: inline-block;
    width: 100%;
  }

  .beyound-N11 .desc-area .desc p {
    width: 100%;
    margin-top: 1.2rem;
  }

  .beyound-N11 .line {
    margin-top: 4rem;
    height: 10rem;
  }
}
/* bloomcity-N18 */
.beyound-N12 {
  overflow: hidden;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 6rem;
}

.beyound-N12 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N12 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N12 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.beyound-N12 .desc {
  flex: 1;
}

.beyound-N12 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N12 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N12 {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .beyound-N12 .contents-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .beyound-N12 .thumb {
    height: 24rem;
  }

  .beyound-N12 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N12 .thumb,
  .beyound-N12 .desc {
    flex: none;
    width: 100%;
  }
}
/* bloomcity-N19 */
.beyound-N13 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 24rem;
}

.beyound-N13 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11.5rem;
}

.beyound-N13 .thumb {
  flex: 1 1 15.5rem;
  height: 40rem;
}

.beyound-N13 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.beyound-N13 .desc {
  flex: 1;
}

.beyound-N13 .desc strong {
  font-weight: var(--fw-bold);
}

.beyound-N13 .desc p {
  margin-top: 1.6rem;
  color: #666;
}

@media (max-width: 992px) {
  .beyound-N13 {
    padding-top: 3rem;
    padding-bottom: 12rem;
  }

  .beyound-N13 .contents-inner {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }

  .beyound-N13 .thumb {
    height: 24rem;
  }

  .beyound-N13 .desc p {
    margin-top: 0.8rem;
  }

  .beyound-N13 .desc img {
    width: 9rem;
  }

  .beyound-N13 .thumb,
  .beyound-N13 .desc {
    flex: none;
    width: 100%;
  }
}
/* skin-N23 */
.beyound-N14 {
  overflow: hidden;
  position: relative;
  padding-top: 16rem;
  padding-bottom: 16rem;
  background: url(../images/img_filer_banner.png) no-repeat center / cover !important;
}

.beyound-N14 .contents-inner {
  width: 100%;
}

.beyound-N14 .title-area {
  margin-bottom: 4rem;
  text-align: center;
}

.beyound-N14 .list-area {
  display: flex;
}

.beyound-N14 .list-area li {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  padding: 4rem;
  text-align: center;
}

.beyound-N14 .list-area li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6rem;
  transform: translateY(-50%);
  width: 12rem;
  height: 0.1rem;
  background: #e5e5e5;
}

.beyound-N14 .list-area span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 2.4rem;
  margin: 0 auto;
  width: 7.4rem;
  height: 3.7rem;
  color: #fff;
  font-weight: var(--fw-bold);
  background: var(--primary);
  border-radius: 1.9rem;
}

.beyound-N14 .list-area .thumb {
  margin: 4.8rem 0 2.8rem;
}

.beyound-N14 .list-area .thumb img {
  width: 6rem;
  height: 6rem;
  object-fit: cover;
}

.beyound-N14 .list-area .desc strong {
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.beyound-N14 .list-area .desc p {
  margin-top: 1.6rem;
  color: #767676;
  word-break: keep-all;
  text-wrap: pretty;
}

.beyound-N14 .block_overlay {
  position: absolute;
  content: '';
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
}

@media (max-width: 992px) {
  .beyound-N14 {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: url(../images/img_filer_banner.png) no-repeat center / cover !important;
  }

  .beyound-N14 .title-area {
    margin-bottom: 2.4rem;
  }

  .beyound-N14 .list-area {
    flex-direction: column;
    gap: 8rem;
  }

  .beyound-N14 .list-area li {
    align-items: center;
    padding: 2.4rem 0;
  }

  .beyound-N14 .list-area li:not(:last-child)::after {
    top: auto;
    bottom: -8rem;
    right: auto;
    transform: none;
    width: 0.1rem;
    height: 8rem;
  }

  .beyound-N14 .list-area span {
    padding: 0.2rem 1.8rem;
    width: 5.8rem;
    height: 2.8rem;
  }

  .beyound-N14 .list-area .thumb {
    margin: 2.4em 0 1.8rem;
  }

  .beyound-N14 .list-area .thumb img {
    width: 4.6rem;
    height: 4.6rem;
  }

  .beyound-N14 .list-area .desc p {
    margin-top: 1.2rem;
  }
}
/* hooms-N39 */
.beyound-N15 {
  overflow: hidden;
  position: relative;
  padding-top: 24rem;
  padding-bottom: 12rem;
}

.beyound-N15 .contents-inner {
  width: 100%;
}

.beyound-N15 .list-item+.list-item {
  margin-top: 4rem;
}

.beyound-N15 .list-item strong {
  color: #111;
}

.beyound-N15 .list {
  margin-top: 1.2rem;
}

.beyound-N15 .list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  position: relative;
  color: #666;
}

.beyound-N15 .list li+li {
  margin-top: .8rem;
}

.beyound-N15 .list li::before {
  position: relative;
  top: 1rem;
  flex-shrink: 0;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #666;
}

@media (max-width: 992px) {
  .beyound-N15 {
    padding-top: 12rem;
    padding-bottom: 6rem;
  }

  .beyound-N15 .list-item+.list-item {
    margin-top: 2.4rem;
  }

  .beyound-N15 .list {
    margin-top: 0.8rem;
  }

  .beyound-N15 .list li {
    gap: 0.4rem;
  }

  .beyound-N15 .list li::before {
    width: 2px;
    height: 2px;
  }
}
/* campland-N15 */
.beyound-N16 {
  overflow: hidden;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 24rem;
}

.board_blank {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 300px;
  background: #ddd;
  align-items: center;
  flex-direction: column;
  font-size: 30px;
}

.beyound-N16 .textset {
  margin-bottom: 2.8rem;
}

.beyound-N16 .textset .textset-tit {
  font-weight: var(--fw-bold);
}

.beyound-N16 .textset .textset-tit+.textset-desc {
  margin-top: 1.6rem;
}

.beyound-N16 .textset .textset-desc {
  color: #777;
}

.beyound-N16 .cardset-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.beyound-N16 .cardset .cardset-figure {
  height: 32rem;
}

.beyound-N16 .cardset .cardset-body {
  padding-top: 1.6rem;
  padding-bottom: 0;
}

.beyound-N16 .cardset .cardset-tit {
  font-weight: var(--fw-bold);
}

.beyound-N16 .cardset .cardset-tit+.cardset-desc {
  margin-top: 0.8rem;
}

.beyound-N16 .cardset .cardset-desc {
  display: block;
  color: #777;
}

.pagiset {
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .beyound-N16 {
    padding-top: 6rem;
    padding-bottom: 12rem;
  }

  .beyound-N16 .textset {
    margin-bottom: 2.8rem;
  }

  .beyound-N16 .textset .textset-tit+.textset-desc {
    margin-top: 0.8rem;
  }

  .beyound-N16 .cardset-wrap {
    grid-template-columns: 1fr;
  }

  .beyound-N16 .cardset {
    width: 100%;
  }

  .beyound-N16 .cardset .cardset-figure {
    height: 25rem;
  }
}
/* beyound-N8-en */
.beyound-N8-en {
  background: #fff;
  padding-bottom: 6rem;
}

.beyound-N8-en .contents-inner {
  display: flex;
  justify-content: center;
  gap: 6rem;
  position: relative;
  width: 100%;
}

.beyound-N8-en .thumb-area {
  width: 100%;
  max-width: 50rem;
  height: 48rem;
}

.beyound-N8-en .thumb-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N8-en .desc-area {
  flex: 1;
  align-self: center;
}

.beyound-N8-en .desc-area .name {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.beyound-N8-en .desc-area .name span {
  font-weight: var(--fw-medium);
  transform: translateY(-.6rem);
}

.beyound-N8-en .history {
  margin-top: 4rem;
}

.beyound-N8-en .history strong {
  font-weight: var(--fw-bold);
}

.beyound-N8-en .history-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.6rem;
}

.beyound-N8-en .history-wrap .item li+li {
  margin-top: .6rem;
}

@media (max-width: 992px) {
  .beyound-N8-en {
    padding-bottom: 3rem;
  }

  .beyound-N8-en .contents-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .beyound-N8-en .thumb-area {
    flex: none;
    align-self: center;
    max-width: 100%;
    height: auto;
    aspect-ratio: 328 / 316;
  }

  .beyound-N8-en .desc-area {
    flex: none;
    width: 100%;
  }

  .beyound-N8-en .desc-area .name {
    gap: .4rem;
  }

  .beyound-N8-en .desc-area .name span {
    transform: translateY(-.4rem);
  }

  .beyound-N8-en .history {
    margin-top: 2rem;
  }

  .beyound-N8-en .history-wrap {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }

  .beyound-N8-en .history-wrap .item li+li {
    margin-top: .2rem;
  }
}
/* beyound-N9-en */
.beyound-N9-en {
  background: #fff;
  padding-bottom: 24rem;
  padding-top: 6rem;
}

.beyound-N9-en .contents-inner {
  display: flex;
  justify-content: center;
  gap: 6rem;
  position: relative;
  width: 100%;
}

.beyound-N9-en .thumb-area {
  width: 100%;
  max-width: 50rem;
  height: 48rem;
}

.beyound-N9-en .thumb-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beyound-N9-en .desc-area {
  flex: 1;
  align-self: center;
}

.beyound-N9-en .desc-area .name {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}

.beyound-N9-en .desc-area .name span {
  font-weight: var(--fw-medium);
  transform: translateY(-.6rem);
}

.beyound-N9-en .history {
  margin-top: 4rem;
}

.beyound-N9-en .history strong {
  font-weight: var(--fw-bold);
}

.beyound-N9-en .history-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.6rem;
}

.beyound-N9-en .history-wrap .item li+li {
  margin-top: .6rem;
}

@media (max-width: 992px) {
  .beyound-N9-en {
    padding-bottom: 12rem;
    padding-top: 3rem;
  }

  .beyound-N9-en .contents-inner {
    flex-direction: column;
    gap: 1.6rem;
  }

  .beyound-N9-en .thumb-area {
    flex: none;
    align-self: center;
    max-width: 100%;
    height: auto;
    aspect-ratio: 328 / 316;
  }

  .beyound-N9-en .desc-area {
    flex: none;
    width: 100%;
  }

  .beyound-N9-en .desc-area .name {
    gap: .4rem;
  }

  .beyound-N9-en .desc-area .name span {
    transform: translateY(-.4rem);
  }

  .beyound-N9-en .history {
    margin-top: 2rem;
  }

  .beyound-N9-en .history-wrap {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.2rem;
  }

  .beyound-N9-en .history-wrap .item li+li {
    margin-top: .2rem;
  }
}