@charset "utf-8";

/* basic-N2 */
.basic-N2 {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  transition: 0.3s;
  background: var(--white);
}

.basic-N2 .header-container {
  display: flex;
  justify-content: space-between;
  min-height: 8rem;
}

.basic-N2 .header-left {
  display: flex;
  align-items: center;
}

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

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

.basic-N2 .header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

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

.basic-N2 .header-lang {
  position: relative;
}

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

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

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

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

.basic-N2 .header-langitem a {
  padding: 0.6rem 1.6rem;
  color: var(--white);
  opacity: 0.7;
}

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

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

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

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

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

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

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

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

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

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

.basic-N2 .header-gnblist {
  display: flex;
}

.basic-N2 .header-gnbitem {
  position: relative;
}

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

.basic-N2 .header-gnbitem:hover .header-gnblink span::after,
.basic-N2 .header-gnbitem.item-active .header-gnblink span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--primary);
  transform: scaleX(1);
}

.basic-N2 .header-gnblink {
  padding: 2.4rem 3rem;
  line-height: 2.6rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.basic-N2 .header-gnbitem:last-child .header-gnblink {
  padding-right: 0;
}

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

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

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

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

.basic-N2 .header-sublink {
  width: 100%;
  padding: 1rem 2rem;
  transition: color 0.2s, background 0.2s;
  will-change: color, background;
}

.basic-N2 .header-sublink:hover {
  background: transparent;
  color: var(--black);
}

.basic-N2 .btn-momenu .ico-hamburger {
  width: 2.4rem;
  height: 0.2rem;
  background-color: #111;
  border-radius: 1rem;
  transition: width 0.3s, transform 0.3s, opacity 0.3s;
  will-change: width, transform, opacity;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1200px) {
  .basic-N2 .header-container {
    align-items: center;
  }
}

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

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

  .basic-N2.momenu-active .header-right {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

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

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

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

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

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

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

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

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

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

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

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

  .basic-N2 .header-container::before {
    content: none;
  }

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

  .basic-N2 .header-gnb {
    width: 100%;
    height: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    overflow: hidden;
    transition: height 0.3s;
    z-index: 9;
  }

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

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

  .basic-N2 .header-gnbitem:hover,
  .basic-N2 .header-gnbitem.item-active {
    background-color: transparent;
  }

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

  .basic-N2 .header-gnbitem:hover .header-gnblink span::after,
  .basic-N2 .header-gnbitem.item-active .header-gnblink span::after {
    content: none;
  }

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

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

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

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

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

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

  .basic-N2 .header-lang:hover .header-langitem {
    max-height: 0;
  }

  .basic-N2 .header-lang.lang-active .header-langitem {
    max-height: 6.8rem;
  }

  .basic-N2 .header-lang:hover .header-langbtn::after {
    transform: translateY(-50%) rotate(0);
  }

  .basic-N2 .header-lang.lang-active .header-langbtn::after {
    transform: translateY(-50%) rotate(180deg);
  }

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

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

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

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

  .basic-N2 .btn-momenu .ico-hamburger {
    width: 2rem;
  }
}
/* basic-N29 */
.basic-N29 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

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

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

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

  .basic-N29 .textset .textset-subtit {
    margin-top: 4rem;
  }
}
/* basic-N33 */
.basic-N33 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N33 .cardset .cardset-inner {
  position: relative;
}

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

.basic-N33 .cardset+.cardset .cardset-figure {
  height: 52rem;
}

.basic-N33 .cardset .cardset-figure+.cardset-body {
  margin-top: 0;
}

.basic-N33 .cardset .cardset-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 3.2rem;
  background-color: transparent;
}

.basic-N33 .cardset .cardset-tit {
  color: var(--white);
}

.basic-N33 .cardset .btnset {
  flex-shrink: 0;
  min-width: auto;
  width: 4.8rem;
  height: 4.8rem;
  padding: 0;
  border-radius: 0.6rem;
  background-color: rgba(var(--white-rgb), 0.1);
  border: 0;
  background-image: url(../icons/ico_btnset_arrow_white_sm.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.4rem;
}

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

  .basic-N33 .cardset+.cardset {
    width: 100%;
    margin-top: 0;
  }

  .basic-N33 .cardset .cardset-body {
    padding: 2rem;
  }

  .basic-N33 .cardset .cardset-figure,
  .basic-N33 .cardset+.cardset .cardset-figure {
    height: 48rem;
  }

  .basic-N33 .cardset .btnset {
    width: 4rem;
    height: 4rem;
  }
}
/* basic-N4 */
.basic-N4 {
  position: relative;
  background: #111;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .basic-N4 .footer-menulink {
    flex-shrink: 0;
  }
}
/* basic-N30 */
.basic-N30 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.basic-N32 .container-sm .imageset {
  width: calc(100% + 16rem);
  margin-left: calc(-50% - 16rem);
}

.basic-N32 .contents-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.basic-N32 .textset {
  width: 50%;
  margin-left: 4rem;
  margin-bottom: 0;
}

.basic-N32 .textset .textset-tit+.textset-desc {
  margin-top: 4rem;
}

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

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

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

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

  .basic-N32 .container-sm .imageset {
    width: calc(100% + 1.6rem);
    margin-left: -1.6rem;
  }

  .basic-N32 .contents-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .basic-N32 .imageset {
    width: calc(100% + 1.6rem);
    height: 56rem;
    margin-left: -1.6rem;
  }

  .basic-N32 .textset {
    width: 100%;
    margin-top: 4rem;
    margin-left: 0;
  }

  .basic-N32 .textset br.pc-br {
    display: none;
  }
}
/* basic-N25 */
.basic-N25 {
  position: relative;
  overflow: hidden;
}

.basic-N25 .container-lg .contents-slide-group {
  max-width: calc(1440px + 16rem);
}

.basic-N25 .container-md .contents-slide-group {
  max-width: calc(1280px + 16rem);
}

.basic-N25 .container-sm .contents-slide-group {
  max-width: calc(1024px + 16rem);
}

.basic-N25 .contents-container {
  display: block;
  height: 80rem;
  position: relative;
}

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

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

.basic-N25 .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.basic-N25 .swiper-slide .content-link {
  position: static;
}

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

.basic-N25 .contents-control {
  width: calc(100% - 16rem);
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

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

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

.basic-N25 .textset .textset-desc {
  color: var(--text-color4);
}

.basic-N25 .btnset {
  margin-top: 6rem;
  background-color: var(--white);
  color: var(--text-color1);
}

.contents-control-top {
  position: relative;
}

.basic-N25 .swiper-scrollbar {
  position: relative;
  left: 0;
  bottom: 0;
  max-width: 69rem;
  background-color: rgba(var(--white-rgb), 0.4);
}

.basic-N25 .swiper-scrollbar-drag {
  width: calc(100% / 4);
  background-color: var(--white);
}

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

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

.basic-N25 .swiper-button-prev:after {
  content: none;
}

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

.basic-N25 .swiper-pagination {
  margin: 1rem 0 2.4rem 0;
  display: flex;
  align-items: center;
  position: static;
  gap: 0.8rem;
}

.basic-N25 .swiper-pagination-bullet {
  border-radius: 0;
  width: 17rem;
  height: auto;
  margin: 0;
  text-align: left;
  opacity: 0.4;
  color: var(--white);
  background: transparent;
}

.basic-N25 .swiper-pagination-bullet-active {
  color: var(--white);
  opacity: 1;
}

.basic-N25 .swiper-button-play,
.basic-N25 .swiper-button-pause {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.4rem;
  opacity: 0.5;
  cursor: pointer;
  border-radius: 0.4rem;
  background-color: rgba(var(--white-rgb), 0.4);
}

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

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

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

@media (max-width: 1200px) {
  .basic-N25 .contents-control {
    width: calc(100% - 8rem);
  }

  .basic-N25 .contents-slide-group {
    padding: 0 4rem;
  }
}

@media (max-width: 992px) {
  .basic-N25 .contents-container {
    height: 74rem;
  }

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

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

  .basic-N25 .contents-slide-group {
    padding: 0 1.6rem;
  }

  .basic-N25 .contents-control {
    width: calc(100% - 3.2rem);
  }

  .basic-N25 .textset .textset-tit {
    font-size: 4rem;
  }

  .basic-N25 .btnset {
    margin-top: 4rem;
  }

  .basic-N25 .swiper-scrollbar {
    max-width: 36rem;
  }

  .basic-N25 .swiper-pagination {
    align-items: flex-start;
  }

  .basic-N25 .swiper-pagination-bullet {
    width: 8.2rem;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}

@media (max-width: 340px) {
  .basic-N25 .contents-control {
    bottom: 10%;
  }

  .basic-N25 .swiper-pagination-bullet {
    width: auto;
    text-align: center;
  }
}
/* basic-N26 */
.basic-N26 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

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

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

.basic-N26 .textset .textset-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.4rem;
  margin-top: 2rem;
}

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

.basic-N26 .textset .btnset {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 18rem;
  background-color: #f7f7fb;
  border-color: #f7f7fb;
  color: var(--text-color1);
}

.basic-N26 .textset .btnset::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../icons/ico_btnset_arrow_right_black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.basic-N26 .row {
  --th-gutter: 0.5rem;
}

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

.basic-N26 .cardset .cardset-figure+.cardset-body {
  margin-top: 0;
}

.basic-N26 .cardset .cardset-body {
  position: absolute;
  bottom: 0;
  z-index: 10;
  padding: 3.2rem;
  margin-top: 0;
  background-color: transparent;
}

.basic-N26 .cardset .cardset-tit {
  color: var(--white);
}

.basic-N26 .cardset .cardset-tit+.cardset-desc {
  margin-top: 1.6rem;
}

.basic-N26 .cardset .cardset-desc {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
  letter-spacing: -0.05rem;
  color: var(--line-color1);
}

.basic-N26 .cardset .btnset {
  flex-shrink: 0;
  min-width: auto;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 0.6rem;
  background-color: rgba(var(--white-rgb), 0.1);
  border: 0;
  padding: 0;
  background-image: url(../icons/ico_btnset_arrow_white_sm.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.4rem;
}

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

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

  .basic-N26 .textset .textset-group {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.2rem;
  }

  .basic-N26 .textset .btnset {
    min-width: 16rem;
    padding: 0 1.6rem;
  }

  .basic-N26 .cardset .cardset-figure {
    height: 30rem;
  }

  .basic-N26 .cardset .cardset-body {
    padding: 2rem;
  }

  .basic-N26 .cardset .btnset {
    width: 4rem;
    height: 4rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.basic-N28 .textset {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.4rem;
  margin-bottom: 4rem;
}

.basic-N28 .textset .btnset {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 18rem;
  color: var(--text-color1);
}

.basic-N28 .textset .btnset::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../icons/ico_btnset_arrow_right_black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.basic-N28 .row {
  --th-gutter: 0.5rem;
}

.basic-N28 .cardset {
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N28 .cardset .cardset-cont {
  padding: 3.2rem;
  background-color: var(--white);
  text-align: center;
}

.basic-N28 .cardset .cardset-figure {
  height: 32rem;
}

.basic-N28 .cardset .cardset-cont .cardset-tit+.cardset-desc {
  margin-top: 2.4rem;
  padding-top: 0;
  border-top: 0;
}

.basic-N28 .cardset .cardset-desc {
  display: block;
  letter-spacing: -0.08rem;
  color: var(--text-color3);
}

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

  .basic-N28 .textset {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .basic-N28 .cardset .cardset-figure {
    height: 30rem;
  }

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

@media (max-width: 576px) {
  .basic-N28 .cardset-desc br {
    display: none;
  }
}
/* basic-N1 */
.basic-N1 {
  position: sticky;
  top: 0;
  min-height: auto;
  width: 100%;
  z-index: 200;
  background-color: var(--white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.basic-N10 .contents-container {
  position: relative;
}

.basic-N10 .contents-inner {
  width: calc(100% + 8rem);
  height: 62rem;
  margin-left: -4rem;
}

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

.basic-N10 .contents-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  padding: 0 8rem;
}

.basic-N10 .textset {
  margin-bottom: 0;
}

.basic-N10 .textset .textset-tit {
  color: var(--white);
  text-align: center;
}

@media (max-width: 1200px) {
  .basic-N10 .contents-inner {
    width: calc(100% + 8rem);
    margin-left: -4rem;
  }

  .basic-N10 .contents-body {
    padding: 0 4rem;
  }
}

@media (max-width: 992px) {
  .basic-N10 .contents-inner {
    width: calc(100% + 3.2rem);
    height: 60rem;
    margin-left: -1.6rem;
  }

  .basic-N10 .contents-body {
    padding: 0 1.6rem;
  }
}
/* basic-N55 */
.basic-N55 {
  border-bottom: 1px solid var(--border-color);
}
/* basic-N23 */
.basic-N23 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

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

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

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

.basic-N23 .imageset {
  height: 46rem;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N23 .contents-list {
  margin-top: 4rem;
}

.basic-N23 .contents-item+.contents-item {
  padding-left: 10rem;
}

.basic-N23 .contents-item strong {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.basic-N23 .contents-item p {
  color: var(--text-color3);
}

.basic-N23 .contents-item p+p {
  margin-top: 0.4rem;
}

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

  .basic-N23 .contents-list {
    margin-top: 2rem;
  }

  .basic-N23 .contents-item {
    width: 100%;
  }

  .basic-N23 .contents-item+.contents-item {
    width: 100%;
    margin-top: 4rem;
    padding-left: 0;
  }
}
/* basic-N24 */
.basic-N24 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N24 .contents-inner {
  width: 100%;
  padding: 10rem 4rem;
  border-radius: 2rem;
  background: #f7f7fb;
}

.basic-N24 .textset {
  margin-bottom: 4rem;
  text-align: center;
}

.basic-N24 .form-box {
  max-width: 96rem;
  margin: 0 auto;
}

.basic-N24 .form-box+.form-box {
  margin-top: 2.4rem;
}

.basic-N24 .form-tit {
  margin-bottom: 1.2rem;
}

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

.basic-N24 .contents-agree {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3rem auto 0;
  max-width: 96rem;
  line-height: 1;
}

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

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

.basic-N24 .form-btn {
  margin: 4rem auto 0;
  max-width: 96rem;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

  .basic-N24 .contents-inner {
    padding: 8rem 2.4rem;
  }

  .basic-N24 .contents-agree {
    margin-top: 1.2rem;
  }

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

  .basic-N24 .form-btn {
    margin-top: 2rem;
  }

  .basic-N24 .form-btn .btnset {
    min-width: 16rem;
    padding: 0 1.6rem;
    width: 100%;
  }
}
/* basic-N22 */
.basic-N22 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

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

.basic-N22 .contents-form {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.basic-N22 .selectset {
  width: 12.4rem;
}

.basic-N22 .selectset.active .selectset-toggle {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.basic-N22 .selectset .selectset-toggle {
  border-radius: 0.6rem;
}

.basic-N22 .selectset .selectset-toggle::after {
  font-size: 2rem;
}

.basic-N22 .inputset {
  width: 30rem;
}

.basic-N22 .inputset .inputset-input {
  border-radius: 0.6rem;
}

.basic-N22 .contents-group {
  margin-bottom: 4rem;
}

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

.basic-N22 .cardset .cardset-cont .cardset-tit+.cardset-desc {
  margin: 4rem 0;
  padding-top: 0;
  border-top: 0;
}

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

.basic-N22 .cardset .cardset-desc {
  color: var(--text-color3);
}

.basic-N22 .cardset .cardset-txt {
  color: var(--text-color3);
}

.basic-N22 .pagiset .pagiset-link {
  border-radius: 0.6rem;
}

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

  .basic-N22 .contents-form {
    flex-direction: column;
  }

  .basic-N22 .selectset,
  .basic-N22 .inputset {
    width: 100%;
  }

  .basic-N22 .inputset.inputset-icon.icon-right .icon {
    right: 1.2rem;
  }

  .basic-N22 .inputset.inputset-icon .inputset-input {
    padding-right: calc(1.2rem + 1.6rem + 1.2rem);
  }

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

  .basic-N22 .pagiset .pagiset-link {
    width: 3.2rem;
    height: 3.2rem;
  }
}
/* basic-N20 */
.basic-N20 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

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

.basic-N20 .cardset {
  width: 50%;
}

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

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

.basic-N20 .cardset .cardset-body {
  padding: 0;
}

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

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

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

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

  .basic-N20 .cardset+.cardset {
    margin-top: 2rem;
    margin-left: 0;
  }

  .basic-N20 .cardset .cardset-figure+.cardset-body {
    margin-top: 3rem;
  }
}
/* basic-N21 */
.basic-N21 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N21 .imageset {
  height: 42rem;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 8rem;
}

.basic-N21 .row {
  flex-wrap: nowrap;
  gap: 10rem;
}

.basic-N21 .col {
  flex: 0 1 auto;
}

.basic-N21 .cardset .cardset-figure {
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  overflow: hidden;
}

.basic-N21 .cardset .cardset-figure+.cardset-body {
  margin-top: 2rem;
}

.basic-N21 .cardset .cardset-body {
  padding: 0;
}

.basic-N21 .cardset .cardset-tit+.cardset-desc {
  margin-top: 1.6rem;
}

.basic-N21 .cardset .cardset-desc {
  color: var(--text-color3);
  letter-spacing: -0.05rem;
}

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

  .basic-N21 .row {
    flex-wrap: wrap;
    gap: 0;
  }

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

  .basic-N21 .cardset+.cardset {
    margin-top: 4rem;
  }
}
/* basic-N19 */
.basic-N19 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N19 .cardset {
  margin-bottom: 4rem;
}

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

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

.basic-N19 .cardset .cardset-body {
  padding: 0;
  text-align: center;
}

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

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

.basic-N19 .pagiset .pagiset-link {
  border-radius: 0.6rem;
}

.basic-N19 .pagiset .pagiset-link.active-fill {
  background: #111;
}

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

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

  .basic-N19 .cardset {
    margin-bottom: 0;
  }

  .basic-N19 .cardset .cardset-figure {
    height: 40rem;
  }

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

  .basic-N19 .pagiset {
    margin-top: 4rem;
  }

  .basic-N19 .pagiset .pagiset-link {
    width: 3.2rem;
    height: 3.2rem;
  }
}
/* basic-N15 */
.basic-N15 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

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

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

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

.basic-N15 .textset .textset-tit {
  font-size: 4rem;
  line-height: 6rem;
  font-weight: 700;
}

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

.basic-N15 .cardset .cardset-figure+.cardset-body {
  margin-top: 6rem;
}

.basic-N15 .cardset .cardset-tit {
  word-break: keep-all;
}

.basic-N15 .cardset .cardset-body {
  padding: 0;
}

.basic-N15 .cardset .cardset-desc {
  display: block;
  margin-top: 4rem;
  word-break: keep-all;
  color: var(--text-color3);
}

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

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

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

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

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

  .basic-N15 .cardset .cardset-desc br {
    display: none;
  }
}
/* basic-N16 */
.basic-N16 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N16 .contents-inner {
  width: 100%;
}

.basic-N16 .contents-banner {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 46rem;
}

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

@media (max-width: 992px) {
  .basic-N16 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
/* basic-N17 */
.basic-N17 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N17 .textset {
  display: flex;
  margin-bottom: 10rem;
}

.basic-N17 .textset .textset-tit {
  width: 50%;
  margin-right: 10rem;
}

.basic-N17 .textset .textset-body {
  width: 50%;
}

.basic-N17 .textset .textset-desc {
  margin-top: 0;
  color: var(--text-color3);
}

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

.basic-N17 .imageset {
  border-radius: 2rem;
  overflow: hidden;
}

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

  .basic-N17 .textset {
    flex-direction: column;
    margin-bottom: 8rem;
  }

  .basic-N17 .textset .textset-tit {
    width: 100%;
    margin-right: 0;
  }

  .basic-N17 .textset .textset-body {
    width: 100%;
    margin-top: 4rem;
  }
}
/* basic-N18 */
.basic-N18 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: #f7f7fb;
  overflow: hidden;
}

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

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

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

.basic-N18 .cardset .cardset-body {
  padding: 0;
  background: transparent;
}

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

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

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

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

  .basic-N18 .cardset .cardset-figure {
    height: 30rem;
  }

  .basic-N18 .cardset .cardset-figure+.cardset-body {
    margin-top: 3rem;
  }
}
/* basic-N34 */
.basic-N34 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N34 .textset {
  margin-bottom: 0;
}

.basic-N34 .textset .textset-tit+.textset-desc {
  margin-top: 0.8rem;
}

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

@media (max-width: 992px) {
  .basic-N34 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
/* basic-N35 */
.basic-N35 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

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

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

.basic-N35 .cardset+.cardset {
  margin-top: 10rem;
}

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

.basic-N35 .cardset+.cardset .cardset-figure {
  height: 40rem;
}

.basic-N35 .cardset .cardset-body {
  padding: 0;
}

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

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

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

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

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

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

  .basic-N35 .cardset+.cardset {
    margin-top: 8rem;
  }

  .basic-N35 .cardset .cardset-figure {
    height: 48rem;
  }
}

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

.basic-N36 .cardset {
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N36 .cardset .cardset-figure {
  height: 32rem;
}

.basic-N36 .cardset .cardset-cont .cardset-tit+.cardset-desc {
  margin-top: 2.4rem;
  margin-bottom: 0;
  padding-top: 0;
  border-top: 0;
}

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

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

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

@media (max-width: 576px) {
  .basic-N36 .cardset-desc br {
    display: none;
  }
}
/* basic-N3 */
.basic-N3 {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  transition: 0.3s;
  background: var(--white);
}

.basic-N3.header-menuactive .header-gnblist {
  position: absolute;
  top: calc(100% + 12rem);
  left: 50%;
  transform: translateX(-50%);
}

.basic-N3.header-menuactive .header-utils .header-btn {
  display: none;
}

.basic-N3.header-menuactive .header-utils .btn-close {
  display: block;
}

.basic-N3 .header-container {
  display: flex;
  justify-content: space-between;
  min-height: 8rem;
}

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

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

.basic-N3 .header-left {
  display: flex;
  align-items: center;
  gap: 8.5rem;
}

.basic-N3 .header-mobile-top {
  display: none;
}

.basic-N3 .header-gnblist {
  display: flex;
  align-items: center;
}

.basic-N3 .header-gnbitem {
  position: relative;
}

.basic-N3 .header-gnbitem:hover .header-gnblink span::after,
.basic-N3 .header-gnbitem.item-active .header-gnblink span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--primary);
  transform: scaleX(1);
}

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

.basic-N3 .header-gnbitem+.header-gnbitem .header-gnblink {
  padding-left: 3rem;
}

.basic-N3 .header-gnbitem:last-child .header-gnblink {
  padding-right: 0;
}

.basic-N3 .header-gnblink {
  padding: 2.8rem 3rem 2.8rem 0;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

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

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

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

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

.basic-N3 .header-sublink {
  width: 100%;
  padding: 1rem 2rem;
  transition: color 0.2s, background 0.2s;
  will-change: color, background;
}

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

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

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

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

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

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

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

.basic-N3 .header-utils .member a,
.basic-N3 .header-utils .cart a {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 0;
  display: block;
}

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

.basic-N3 .header-utils .cart .badge {
  right: -0.4rem;
  bottom: -0.4rem;
  text-align: center;
  color: var(--white);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.basic-N3 .fullmenu-title a {
  width: 13.6rem;
  height: 4.3rem;
}

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

.basic-N3 .fullmenu-member {
  display: flex;
}

.basic-N3 .fullmenu-member li {
  position: relative;
}

.basic-N3 .fullmenu-member li a {
  padding: 1.2rem;
  color: var(--white);
}

.basic-N3 .fullmenu-member li+li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1rem;
  height: 1.4rem;
  background-color: rgba(var(--white-rgb), 0.2);
}

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

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

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

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

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

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

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

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

.basic-N3 .fullmenu-sublink {
  position: relative;
  color: #a2a2a2;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .basic-N3 .header-fullmenu {
    display: none;
  }

  .basic-N3 .header-container {
    align-items: center;
    min-height: 6rem;
    padding: 0 1.6rem;
  }

  .basic-N3 .header-left {
    gap: 0;
  }

  .basic-N3 .header-title a {
    width: 12rem;
    height: 2.6rem;
  }

  .basic-N3 .header-gnb {
    width: 100%;
    height: 0;
    position: fixed;
    top: 100%;
    left: 0;
    background-color: var(--white);
    overflow: hidden;
    transition: height 0.3s;
    z-index: 999;
  }

  .basic-N3 .header-gnblist {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .basic-N3 .header-gnbitem {
    width: 100%;
  }

  .basic-N3 .header-gnbitem:hover,
  .basic-N3 .header-gnbitem.item-active {
    background-color: #f7f7fb;
  }

  .basic-N3 .header-gnbitem:hover .header-gnblink span::after,
  .basic-N3 .header-gnbitem.item-active .header-gnblink span::after {
    content: none;
  }

  .basic-N3 .header-gnblink {
    display: flex;
    width: 100%;
    padding: 1.4rem 2rem;
    font-weight: 500;
    text-align: left;
  }

  .basic-N3 .header-sublist {
    display: none;
    position: relative;
    opacity: 1;
    padding: 1.8rem 2rem 2rem 2rem;
    background-color: var(--white);
  }

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

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

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

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

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

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

  .basic-N3 .header-utils .btn-allmenu,
  .basic-N3 .header-utils .btn-user {
    display: none;
  }

  .basic-N3 .btn-momenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    margin-left: 0.6rem;
  }
}
/* basic-N45 */
.basic-N45 {
  position: relative;
  overflow: hidden;
}

.basic-N45 .contents-container {
  display: block;
  position: relative;
  height: 70rem;
}

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

.basic-N45 .contents-visual {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
  overflow: hidden;
}

.basic-N45 .contents-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.basic-N45 .contents-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16rem);
  z-index: 1;
}

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

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

@media (max-width: 1200px) {
  .basic-N45 .contents-body {
    width: calc(100% - 8rem);
  }
}

@media (max-width: 992px) {
  .basic-N45 .contents-container {
    height: 62rem;
  }
}
/* basic-N53 */
.basic-N53 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N53 .accordset {
  border-top-color: var(--line-color1);
}

.basic-N53 .accordset .accordset-a {
  color: var(--text-color1);
}

.basic-N53 .accordset .accordset-content {
  padding: 2rem 2rem 2rem 2.4rem;
  background-color: #fafafa;
  color: var(--text-color3);
}

.basic-N53 .pagiset {
  margin-top: 6rem;
}

.basic-N53 .pagiset .pagiset-link {
  border-radius: 0.6rem;
}

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

  .basic-N53 .pagiset .pagiset-link {
    width: 3.2rem;
    height: 3.2rem;
  }
}
/* basic-N51 */
.basic-N51 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N51 .contents-inner {
  display: flex;
  justify-content: space-between;
}

.basic-N51 .contents-left {
  width: 50%;
}

.basic-N51 .contents-thumbnail {
  width: 100%;
  height: 64rem;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N51 .contents-thumblist {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  overflow-x: auto;
}

.basic-N51 .contents-thumbitem {
  flex-shrink: 0;
  width: 12rem;
  height: 12rem;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.basic-N51 .contents-thumbitem+.contents-thumbitem {
  margin-left: 2rem;
}

.basic-N51 .contents-thumbimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.basic-N51 .contents-right {
  width: calc(50% - 10rem);
  margin-top: 4.2rem;
}

.basic-N51 .contents-btn {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background-color: transparent;
}

.basic-N51 .contents-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

.basic-N51 .contents-right-group {
  padding-bottom: 2rem;
}

.basic-N51 .contents-right-group:first-child {
  border-bottom: 1px solid var(--line-color3);
}

.basic-N51 .contents-right-group+.contents-right-group {
  padding-top: 2rem;
}

.basic-N51 .contents-right-group+.contents-right-group+.contents-right-group {
  border-top: 1px solid var(--border-color);
}

.basic-N51 .contents-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.basic-N51 .contents-brand a {
  color: var(--text-color3);
}

.basic-N51 .contents-brand-group {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.basic-N51 .contents-brand-group.like-on .btn-like-line {
  display: none;
}

.basic-N51 .contents-brand-group.like-on .btn-like-fill {
  display: block;
}

.basic-N51 .contents-brand .btn-like-fill {
  display: none;
}

.basic-N51 .contents-right .textset {
  margin: 1.6rem 0 2rem 0;
}

.basic-N51 .contents-right .textset .textset-desc {
  margin-top: 0.6rem;
  color: var(--text-color3);
}

.basic-N51 .contents-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.basic-N51 .badge {
  min-height: 2.8rem;
  max-width: 20rem;
  padding: 0.4rem 1.2rem;
  border-radius: 0.6rem;
  color: var(--text-color3);
}

.basic-N51 .contents-right-item {
  display: flex;
  justify-content: space-between;
}

.basic-N51 .contents-right-item+.contents-right-item {
  margin-top: 0.8rem;
}

.basic-N51 .contents-right-item strong {
  display: inline-block;
  width: 40%;
  color: var(--text-color3);
}

.basic-N51 .contents-right-item span {
  display: inline-block;
  width: 60%;
  text-align: right;
}

.basic-N51 .contents-amount {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.6rem;
  width: 50%;
}

.basic-N51 .contents-amount .contents-btn {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}

.basic-N51 .contents-amount .contents-btn:hover,
.basic-N51 .contents-amount .contents-btn:active {
  border-color: var(--line-color3);
}

.basic-N51 .contents-total {
  display: flex;
  justify-content: space-between;
  margin-top: 2.4rem;
}

.basic-N51 .contents-total strong {
  display: inline-block;
  width: 40%;
}

.basic-N51 .contents-total .contents-price {
  width: 60%;
  text-align: right;
}

.basic-N51 .contents-btn-group {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.basic-N51 .contents-btn-group .btnset {
  min-width: auto;
  width: 50%;
}

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

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

  .basic-N51 .contents-left {
    width: 100%;
  }

  .basic-N51 .contents-thumbnail {
    height: 50rem;
  }

  .basic-N51 .contents-right {
    width: 100%;
  }

  .basic-N51 .contents-total {
    margin-top: 2rem;
  }
}
/* basic-N52 */
.basic-N52 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N52 .tabset {
  position: relative;
  width: calc(100% + 3.2rem);
  margin-left: -1.6rem;
  margin-bottom: 4rem;
}

.basic-N52 .tabset::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100vw;
  height: 1px;
  background-color: var(--border-color);
}

.basic-N52 .tabset.tabset-fluid .tabset-list {
  background-color: transparent;
}

.basic-N52 .imageset {
  height: 108rem;
  border-radius: 2rem;
  overflow: hidden;
}

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

  .basic-N52 .imageset {
    height: 80rem;
  }

  .basic-N52 .tabset.tabset-fluid .tabset-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .basic-N52 .tabset.tabset-fluid .tabset-item {
    flex-shrink: 0;
    width: auto;
  }

  .basic-N52 .tabset.tabset-fluid .tabset-link {
    min-width: 9rem;
    padding: 1.8rem 3rem;
    font-size: 1.6rem;
  }

  .basic-N52 .tabset.tabset-fluid .tabset-link::after {
    height: 0.3rem;
  }
}
/* basic-N37 */
.basic-N37 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .basic-N38 .contents-item {
    width: 100%;
  }
}
/* basic-N5 */
.basic-N5 {
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 576px) {
  .basic-N57 .cardset-tit+.cardset-desc br {
    display: none;
  }
}
/* temhabank-N1 */
.temhabank-N1 {
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
  background: #fff;
}

.temhabank-N1.top-menu-active {
  padding-top: 6.7rem;
}

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

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

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

.temhabank-N1 .user-menu li {
  position: relative;
}

.temhabank-N1 .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;
}

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

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

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

.temhabank-N1 .header-title {
  display: flex;
  margin-bottom: 0;
}

.temhabank-N1 .header-title a {
  height: 2.3rem;
}

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

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

.temhabank-N1 .header-gnbitem {
  position: relative;
}

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

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

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

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

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

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

.temhabank-N1 .header-subitem {
  overflow: hidden;
  width: 14rem;
  background: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.temhabank-N1 .fullmenu-title a {
  height: 2.3rem;
}

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

.temhabank-N1 .fullmenu-member {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.temhabank-N1 .fullmenu-member li {
  position: relative;
}

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

.temhabank-N1 .fullmenu-member li::marker {
  content: "";
}

.temhabank-N1 .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);
}

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

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

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

.temhabank-N1 .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);
}

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

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

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

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

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

.temhabank-N1 .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);
}

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

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

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

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

@media (max-width: 1120px) {
  .temhabank-N1 .header-title a {
    height: 2.4rem;
  }

  .temhabank-N1 .header-gnblink {
    padding: 2.8rem 2.4rem;
  }
}

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

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

  .temhabank-N1 .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.12) 60%, rgba(0, 0, 0, 0) 100%);
    transition: opacity 0.3s, visibility 0.3s;
  }

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

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

  .temhabank-N1 .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;
  }

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

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

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

  .temhabank-N1 .user-menu li:first-child a {
    padding-left: 0;
  }

  .temhabank-N1 .header-title a {
    width: 14rem;
    height: 1.6rem;
  }

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

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

  .temhabank-N1 .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;
  }

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

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

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

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

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

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

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

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

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

  .temhabank-N1 .header-sublink:hover {
    background: #ffff;
    color: #111111;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .temhabank-N1 .header-fullmenu {
    display: none;
  }
}
/* temhabank-N3 */
.temhabank-N3 {
  position: relative;
  overflow: hidden;
  background: url(../images/temhabank_N3_01.png) no-repeat center/cover;
}

.temhabank-N3 .contents-container {
  height: 60rem;
}

.temhabank-N3 .contents-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.temhabank-N3 .textset {
  text-align: center;
}

.temhabank-N3 .textset .textset-tit {
  margin-bottom: 3.3rem;
  color: var(--white);
}

.temhabank-N3 .textset .textset-subtit {
  margin-bottom: 0;
  color: var(--white);
}

@media (max-width: 992px) {
  .temhabank-N3 {
    background: url(../images/temhabank_N3_02.png) no-repeat center/cover;
  }

  .temhabank-N3 .textset .textset-subtit+.textset-tit {
    margin-top: 0.8rem;
  }

  .temhabank-N3 .btn-wrap {
    bottom: 4rem;
  }
}
/* temhabank-N4 */
.temhabank-N4 {
  overflow: hidden;
  transform: translateY(-6.4rem);
  position: relative;
  padding-bottom: 6rem;
}

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

.temhabank-N4 .tabset {
  margin-bottom: 6rem;
}

.temhabank-N4 .tabset.tabset-brick .tabset-list {
  background: linear-gradient(to right, rgba(var(--primary-rgb), 0.9), rgba(var(--secondary-rgb), 0.9));
}

.temhabank-N4 .tabset.tabset-brick .tabset-list .tabset-link {
  gap: 0.8rem;
  border: none;
  color: var(--white);
}

.temhabank-N4 .tabset.tabset-brick .tabset-item {
  width: calc(100% / 3);
}

.temhabank-N4 .tabset .tabset-item:not(:last-child) {
  border-right: 1px solid rgba(var(--white-rgb), 0.5);
}

.temhabank-N4 .tabset .tabset-item:hover {
  border-color: transparent;
}

.temhabank-N4 .tabset.tabset-brick .tabset-list.tabset-fill .tabset-link.active,
.temhabank-N4 .tabset.tabset-brick .tabset-list.tabset-fill .tabset-link:hover {
  background: var(--white);
  border: none;
  color: var(--black);
}

.temhabank-N4 .tabset .tabset-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.temhabank-N4 .tab-cont {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
}

.temhabank-N4 [class*="col-"] {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  min-height: 33.6rem;
}

.temhabank-N4 .col-left {
  display: none;
  grid-template-columns: repeat(2, 1fr);
}

.temhabank-N4 .col-left.active {
  display: grid;
}

.temhabank-N4 .menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  height: 100%;
  text-align: center;
}

.temhabank-N4 .primary {
  background: #4075bd;
}

.temhabank-N4 .primary-alpha {
  background: #80aec0;
}

.temhabank-N4 .secondary {
  background: #1a937d;
}

.temhabank-N4 .secondary-alpha {
  background: #83b4ab;
}

.temhabank-N4 .gray {
  background: #e9e9e9;
}

.temhabank-N4 .gray-alpha {
  background: #f9f9f9;
}

.temhabank-N4 .menu-item img {
  width: 6.8rem;
  height: 5.8rem;
  object-fit: contain;
}

.temhabank-N4 .menu-item span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--white);
  font-weight: var(--fw-bold);
}

.temhabank-N4 .menu-wrap .menu-item span {
  color: var(--black);
}

.temhabank-N4 .col-center {
  display: none;
  flex-direction: column;
}

.temhabank-N4 .col-center.active {
  display: flex;
}

.temhabank-N4 .col-center>div {
  flex: 1;
}

.temhabank-N4 .notice {
  padding: 2rem 3rem;
  background: var(--white);
}

.temhabank-N4 .col-center .notice {
  padding: 0 3rem;
}

.temhabank-N4 .col-center .title {
  padding-top: 2rem;
}

.temhabank-N4 .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.temhabank-N4 .title strong {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.temhabank-N4 .notice-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.temhabank-N4 .notice-list span {
  flex-shrink: 0;
}

.temhabank-N4 .notice-list p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.temhabank-N4 .notice-list a+a {
  padding-top: 1.5rem;
}

.temhabank-N4 .menu-wrap {
  grid-row: span 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.temhabank-N4 .menu-wrap.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.temhabank-N4 .col-right {
  padding: 3rem;
  background: #454b57;
}

.temhabank-N4 .col-right .title {
  grid-row: span 2;
}

.temhabank-N4 .col-right .title strong {
  color: var(--white);
}

.temhabank-N4 .btn-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.temhabank-N4 .btn-wrap [class*="btn-"] {
  background: none;
  border: none;
  color: var(--white);
}

.temhabank-N4 .btn-play,
.temhabank-N4 .btn-pause {
  display: none;
}

.temhabank-N4 .btn-play.active,
.temhabank-N4 .btn-pause.active {
  display: block;
}

.temhabank-N4 .swiper {
  width: 100%;
}

.temhabank-N4 .swiper-slide {
  min-height: 22.7rem;
  aspect-ratio: 306 / 227;
}

.temhabank-N4 .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

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

@media (max-width: 992px) {
  .temhabank-N4 {
    transform: translateY(-5.6rem);
    padding-bottom: 0;
  }

  .temhabank-N4 .tabset {
    margin: 0;
  }

  .temhabank-N4 .tab-cont {
    grid-template-columns: 1fr;
  }

  .temhabank-N4 .tabset.tabset-brick .tabset-list {
    padding: 0;
  }

  .temhabank-N4 .tabset.tabset-brick .tabset-item {
    flex: 1;
    margin: 0;
    width: auto;
    border: none;
  }

  .temhabank-N4 .tabset .tabset-item:not(:last-child) {
    border-right: 1px solid rgba(var(--white-rgb), 0.5);
  }

  .temhabank-N4 .menu-item a {
    gap: 1rem;
  }

  .temhabank-N4 .menu-item img {
    width: 6rem;
    height: 5.1rem;
  }

  .temhabank-N4 .col-center .notice {
    padding: 0;
  }

  .temhabank-N4 .title {
    margin-bottom: 2rem;
  }

  .temhabank-N4 .col-right {
    padding: 2.5rem 1.5rem;
  }

  .temhabank-N4 .swiper-slide {
    height: 22.7rem;
    align-self: unset;
  }

  .temhabank-N4 .swiper-slide a {
    text-align: center;
  }

  .temhabank-N4 .swiper-slide img {
    width: 30rem;
    object-fit: contain;
  }
}
/* temhabank-N5 */
.temhabank-N5 {
  overflow: hidden;
  position: relative;
  padding-bottom: 6rem;
}

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

.temhabank-N5 h2 {
  margin-bottom: 3rem;
}

.temhabank-N5 .link-area {
  display: flex;
  border: 1px solid var(--border-color);
}

.temhabank-N5 .link {
  flex: 1;
}

.temhabank-N5 .link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  padding: 3.5rem;
}

.temhabank-N5 .link:not(:first-child) a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.1rem;
  height: calc(100% - 7rem);
  background: var(--border-color);
}

.temhabank-N5 .thumb {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 6.5rem;
  background: #e9e9e9;
  border-radius: 50%;
  transition: background .3s;
}

.temhabank-N5 .link a:hover .thumb {
  background: var(--primary);
}

.temhabank-N5 .thumb img {
  width: 4.1rem;
  height: 4.1rem;
  object-fit: contain;
  transition: filter .3s;
}

.temhabank-N5 .link a:hover img {
  filter: invert(1) brightness(2);
}

.temhabank-N5 .desc strong {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: color .3s;
}

.temhabank-N5 .link a:hover strong {
  color: var(--primary);
}

.temhabank-N5 .desc span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: var(--text-color3);
  font-weight: var(--fw-bold);
}

.temhabank-N5 .link i {
  display: none;
  margin-left: auto;
}

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

  .temhabank-N5 h2 {
    text-align: center;
  }

  .temhabank-N5 .link-area {
    flex-direction: column;
  }

  .temhabank-N5 .link a {
    justify-content: flex-start;
    padding: 1.5rem;
  }

  .temhabank-N5 .link+.link {
    border-top: 1px solid var(--border-color);
  }

  .temhabank-N5 .link:not(:first-child) a::before {
    content: none;
  }

  .temhabank-N5 .thumb {
    width: 4.5rem;
    height: 4.5rem;
  }

  .temhabank-N5 .thumb img {
    width: 3.1rem;
    height: 3.1rem;
  }

  .temhabank-N5 .link i {
    display: block;
  }
}
/* temhabank-N6 */
body:has(.fullmenu-active) .temhabank-N6 {
  display: none;
}

.temhabank-N6 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.temhabank-N6 .btn-open {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 7rem;
  height: 8.2rem;
  background: var(--black);
  color: var(--white);
}

.temhabank-N6 .menu-list {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.temhabank-N6 .menu-list.active {
  display: block;
}

.temhabank-N6 .item {
  width: 16rem;
  height: 13.4rem;
}

.temhabank-N6 .black {
  background: var(--black);
  height: 10.1rem;
}

.temhabank-N6 .primary {
  background: #4075bd;
}

.temhabank-N6 .primary-alpha {
  background: #6fa0b3;
}

.temhabank-N6 .secondary {
  background: #1a937d;
}

.temhabank-N6 .gray {
  background: #9aabbe;
}

.temhabank-N6 .btn-close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  height: 100%;
  color: var(--white);
  background: transparent;
  border: none;
}

.temhabank-N6 .item .btn-close span {
  margin-top: 0;
}

.temhabank-N6 .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: var(--white);
  text-align: center;
}

.temhabank-N6 .item span {
  display: block;
  margin-top: 1.5rem;
}

@media (max-width: 992px) {
  .temhabank-N6 {
    display: none;
  }
}
/* temhabank-N2 */
.temhabank-N2 {
  position: relative;
  background: #111111;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.temhabank-N2 .footer-container {
  display: flex;
  justify-content: space-between;
}

.temhabank-N2 .footer-left {
  display: flex;
}

.temhabank-N2 .footer-content {
  width: 100%;
  margin-left: 4rem;
}

.temhabank-N2 .footer-logo {
  margin-bottom: 0;
}

.temhabank-N2 .footer-logo img {
  height: 1.8rem;
  object-fit: contain;
}

.temhabank-N2 .footer-menulist {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: var(--fs-p2);
}

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

.temhabank-N2 .footer-menulink+.footer-menulink a {
  padding-left: 1.2rem;
}

.temhabank-N2 .footer-menulink {
  position: relative;
}

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

.temhabank-N2 .footer-txtgroup {
  margin-top: 1.2rem;
}

.temhabank-N2 .footer-sns {
  display: flex;
  align-items: center;
}

.temhabank-N2 .footer-snslist {
  display: flex;
  align-items: center;
}

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

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

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

.temhabank-N2 .selectset .btn {
  display: inline-flex;
  align-items: center;
}

.temhabank-N2 .footer-bottom {
  margin-top: 1.2rem;
}

.temhabank-N2 .footer-txt {
  display: flex;
}

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

.temhabank-N2 .footer-txt p {
  margin-bottom: 0;
  color: var(--text-color3);
}

.temhabank-N2 .footer-txt p+p {
  margin-left: 0.8rem;
}

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

.temhabank-N2 .footer-txt span {
  color: var(--text-color3);
}

.temhabank-N2 .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(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
  opacity: 0;
  visibility: hidden;
}

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

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

.temhabank-N2 .info-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem;
  border-bottom: 1px solid #e5e5e5;
}

.temhabank-N2 .modal-close {
  cursor: pointer;
}

.temhabank-N2 .info-area {
  overflow-y: auto;
}

.temhabank-N2 .modal-email .info-area {
  max-height: 17rem;
}

.temhabank-N2 .modal-privacy .info-area {
  max-height: 70.3rem;
}

.temhabank-N2 .info-group+.info-group {
  margin-top: 2.4rem;
}

.temhabank-N2 .info-group strong {
  padding-bottom: 1.2rem;
  display: block;
}

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

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

.temhabank-N2 .info-desc .mtb {
  margin: 2.4rem 0;
}

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

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

.temhabank-N2 .info-list p {
  padding-left: 1.2rem;
}

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

  .temhabank-N2 .footer-container {
    flex-direction: column;
  }

  .temhabank-N2 .footer-left {
    flex-direction: column;
  }

  .temhabank-N2 .footer-content {
    flex-direction: column;
    margin: 2.4rem 0 1.2rem;
  }

  .temhabank-N2 .footer-txt {
    flex-direction: column;
  }

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

  .temhabank-N2 .footer-txt p+p {
    margin-left: 0;
  }
}
/* basic-N50 */
.basic-N50 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N50 .textset {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.basic-N50 .contents-btn {
  width: 2.4rem;
  height: 2.4rem;
  background-color: transparent;
  border: 0;
}

.basic-N50 .contents-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

.basic-N50 .btn-filter {
  display: none;
}

.basic-N50 .contents-body {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.basic-N50 .contents-left {
  flex-shrink: 0;
  width: 25rem;
  background-color: var(--white);
}

.basic-N50 .contents-filter-header,
.basic-N50 .contents-filter-footer {
  display: none;
}

.basic-N50 .contents-right {
  width: 100%;
  overflow: hidden;
}

.basic-N50 .contents-sort {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line-color3);
  border-bottom: 1px solid var(--border-color);
}

.basic-N50 .contents-sort-total span {
  font-weight: 700;
  color: var(--text-color1);
}

.basic-N50 .contents-sort-sel {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.basic-N50 .contents-sort .tabset .tabset-list {
  justify-content: flex-start;
}

.basic-N50 .contents-sort .tabset .tabset-item {
  width: auto;
}

.basic-N50 .contents-sort .tabset .tabset-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 0.4rem;
  color: var(--text-color3);
}

.basic-N50 .contents-sort .tabset .tabset-link.active {
  gap: 2px;
  color: var(--text-color1);
}

.basic-N50 .contents-sort .tabset .tabset-item .tabset-link.active::before {
  content: "\ea77";
  font-family: var(--ff-ico);
  width: auto;
  height: auto;
  font-size: 1.6rem;
  background-color: transparent;
}

.basic-N50 .contents-sort .tabset .tabset-item .tabset-link::before {
  position: relative;
  left: 0;
  transform: translateX(0);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--text-color3);
}

.basic-N50 .contents-sort .selectset {
  width: auto;
  min-width: 14rem;
  max-width: 14rem;
}

.basic-N50 .contents-sort .selectset .selectset-toggle {
  height: 4rem;
  letter-spacing: -0.05rem;
  border-radius: 0.6rem;
  color: var(--black);
}

.basic-N50 .contents-sort .selectset .selectset-toggle::after {
  color: var(--text-color4);
}

.basic-N50 .contents-sort .selectset.active .selectset-toggle {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.basic-N50 .accordset .accordset-body {
  border-top: 0;
}

.basic-N50 .accordset .accordset-content {
  display: block;
  padding: 2.4rem 2rem 2rem 2.4rem;
}

.basic-N50 .checkset .checkset-input.input-round+.checkset-label::after {
  font-size: 2.4rem;
}

.basic-N50 .contents-list {
  margin-top: 2rem;
  margin-bottom: 2em;
}

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

.basic-N50 .cardset .cardset-body {
  margin-top: 1.6rem;
  padding: 0;
}

.basic-N50 .cardset .cardset-name {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--text-color3);
}

.basic-N50 .cardset .cardset-tit+.cardset-desc {
  margin-top: 0.8rem;
}

.basic-N50 .cardset .cardset-desc b {
  font-weight: 700;
}

.basic-N50 .pagiset .pagiset-link {
  border-radius: 0.6rem;
}

.basic-N50 .contents-dim {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.7);
}

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

  .basic-N50.filter-active .contents-left {
    width: calc(100% - 10rem);
    top: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .basic-N50.filter-active .contents-dim {
    display: block;
  }

  .basic-N50 .textset .textset-tit {
    max-width: calc(100% - 2.4rem);
  }

  .basic-N50 .contents-filter-header,
  .basic-N50 .contents-filter-footer {
    display: block;
  }

  .basic-N50 .contents-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 1.6rem 1.6rem 2rem;
  }

  .basic-N50 .contents-filter-header .btn-close {
    width: 2.8rem;
    height: 2.8rem;
  }

  .basic-N50 .contents-filter-body {
    overflow-y: auto;
    height: 100%;
    padding-bottom: 22rem;
  }

  .basic-N50 .contents-filter-body .accordset {
    border-top: 0;
  }

  .basic-N50 .contents-filter-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.4rem;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 1.6rem;
    box-shadow: 0 0 3rem 0 rgba(var(--black-rgb), 0.1);
    background-color: var(--white);
  }

  .basic-N50 .btn-filter {
    display: block;
  }

  .basic-N50 .contents-left {
    position: fixed;
    right: -100%;
    opacity: 0;
    visibility: visible;
    width: 0;
    height: 100%;
    transition: 0.4s;
    z-index: 300;
  }

  .basic-N50 .contents-sort {
    margin-bottom: 4rem;
  }

  .basic-N50 .contents-sort-sel {
    flex-wrap: wrap;
    width: 100%;
  }

  .basic-N50 .contents-sort .selectset {
    width: 100%;
    max-width: 100%;
  }

  .basic-N50 .contents-sort .selectset .btn {
    padding: 0 1.6rem;
  }

  .basic-N50 .contents-sort .selectset .selectset-toggle {
    height: 4rem;
    padding-right: calc(1.2rem + 2rem + 1.2rem);
  }

  .basic-N50 .contents-list {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .basic-N50 .cardset .cardset-figure {
    height: 15rem;
  }

  .basic-N50 .pagiset {
    margin-top: 4rem;
  }

  .basic-N50 .pagiset .pagiset-link {
    width: 3.2rem;
    height: 3.2rem;
  }
}
/* campland-N18 */
.campland-N18 {
  overflow: hidden;
  position: relative;
  background-color: #fafafa;
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.campland-N18 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 65.7rem;
}

.campland-N18 .iconset {
  width: 8rem;
  height: 8rem;
  text-align: center;
}

.campland-N18 .iconset .iconset-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.campland-N18 .textset {
  margin-top: 6rem;
  text-align: center;
}

.campland-N18 .textset .textset-tit {
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.campland-N18 .textset .textset-tit+.textset-desc {
  margin-top: 2.8rem;
}

.campland-N18 .textset-tit+.textset-desc {
  margin-top: 2rem;
}

.campland-N18 .btnset {
  margin-top: 6rem;
  font-weight: var(--fw-medium);
}

@media (max-width: 992px) {
  .campland-N18 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .campland-N18 .contents-inner {
    height: 36rem;
  }

  .campland-N18 .iconset {
    width: 5.2rem;
    height: 5.2rem;
  }

  .campland-N18 .textset-tit+.textset-desc {
    margin-top: 1.6rem;
  }

  .campland-N18 .btnset {
    margin-top: 4rem;
  }
}
/* campland-N2 */
.campland-N2 {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  background: #252525;
}

.campland-N2 .footer-top {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2.4rem;
}

.campland-N2 .footer-logo {
  margin-bottom: 0;
  text-align: center;
}

.campland-N2 .footer-logo img {
  height: 3.2rem;
  object-fit: contain;
}

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

.campland-N2 .footer-menulink {
  position: relative;
}

.campland-N2 .footer-menulink a {
  padding: 0 1.2rem;
  font-size: var(--fs-p2);
  color: #fff;
}

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

.campland-N2 .footer-snslist {
  display: flex;
  align-items: center;
}

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

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

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

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

.campland-N2 .footer-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-p3);
}

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

.campland-N2 .footer-txt p {
  margin-bottom: 0;
  color: var(--text-color3);
}

.campland-N2 .footer-txt p+p {
  margin-left: 0.8rem;
}

.campland-N2 .footer-txt p span {
  color: var(--text-color3);
}

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

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

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

.campland-N2 .modal-area {
  width: 100%;
  max-width: 92rem;
  background: #fff;
  border-radius: 0.6rem;
}

.campland-N2 .info-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem;
  border-bottom: 1px solid #e5e5e5;
}

.campland-N2 .modal-close {
  cursor: pointer;
}

.campland-N2 .info-area {
  overflow-y: auto;
}

.campland-N2 .modal-email .info-area {
  max-height: 17rem;
}

.campland-N2 .modal-privacy .info-area {
  max-height: 70.3rem;
}

.campland-N2 .info-group+.info-group {
  margin-top: 2.4rem;
}

.campland-N2 .info-group strong {
  display: block;
  padding-bottom: 1.2rem;
}

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

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

.campland-N2 .info-desc .mtb {
  margin: 2.4rem 0;
}

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

.campland-N2 .info-list em::before {
  content: "";
  margin-right: 0.8rem;
  width: 0.4rem;
  height: 0.4rem;
  background: #000;
  border-radius: 50%;
}

.campland-N2 .info-list p {
  padding-left: 1.2rem;
}

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

  .campland-N2 .footer-logo a {
    height: 2.6rem;
  }

  .campland-N2 .footer-top {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .campland-N2 .footer-menulist {
    position: relative;
    left: 0;
    transform: translate(0);
    margin-top: 2.4rem;
  }

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

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

  .campland-N2 .footer-snslist {
    justify-content: center;
    margin: 1.2rem 0 2.4rem 0;
  }

  .campland-N2 .footer-bottom {
    text-align: center;
  }

  .campland-N2 .footer-txt {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

@media (max-width: 576px) {
  .campland-N2 .footer-menulist {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .campland-N2 .footer-menulink:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
  }

  .campland-N2 .footer-menulink+.footer-menulink:nth-child(odd)::after {
    content: none;
  }
}
/* butti-N1 */
.butti-N1 {
  width: 100%;
  min-height: 6rem;
  background: rgba(0, 0, 0, 0.7);
  will-change: background, height;
  transition: background 0.3s, min-height 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.butti-N1::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;
}

.butti-N1.top-menu-active {
  padding-top: 6.7rem;
}

.butti-N1.header-top-active {
  background: transparent;
}

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

.butti-N1.header-top-active:hover {
  background: rgba(0, 0, 0, 0.7);
}

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

.butti-N1.gnb-active {
  min-height: 28rem;
}

.butti-N1.top-menu-active.gnb-active {
  min-height: calc(28rem + 6.6rem);
}

.butti-N1.block-active {
  background: #000;
}

.butti-N1 .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 8rem;
  box-sizing: border-box;
}

.butti-N1.top-menu-active .header-container {
  padding-top: 6.7rem;
}

.butti-N1 .header-top {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #111;
}

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

.butti-N1 .user-menu li {
  position: relative;
}

.butti-N1 .user-menu li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 1.2rem;
  background: #767676;
}

.butti-N1 .user-menu li a {
  padding: 2rem 1.2rem;
  color: #e5e5e5;
  text-align: center;
  white-space: nowrap;
}

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

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

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

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

.butti-N1 .header-title img {
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

.butti-N1 .header-gnb {
  position: relative;
}

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

.butti-N1 .header-gnbitem {
  position: relative;
}

.butti-N1 .header-gnblink {
  height: 100%;
  padding: 2.8rem 3rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  font-weight: var(--fw-medium);
}

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

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

.butti-N1 .header-sublist {
  width: 100%;
  position: absolute;
  top: 100%;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.butti-N1 .header-gnb:hover .header-sublist {
  opacity: 1;
  overflow: hidden;
  pointer-events: auto;
  transition: opacity 0.3s 0.3s;
}

.butti-N1 .header-gnbitem:hover .header-gnblink span::after {
  background: #fff;
  transform: scaleX(1);
}

.butti-N1 .header-subitem {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.butti-N1 .header-subitem:hover {
  color: #fff;
}

.butti-N1 .header-sublink {
  width: 100%;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s, background 0.2s;
  will-change: color, background;
}

.butti-N1 .header-sublink:hover {
  color: #fff;
}

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

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

.butti-N1 .header-lang {
  position: relative;
}

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

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

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

.butti-N1 .header-langitem a {
  padding: 0.6rem 1.6rem;
  color: var(--white);
  opacity: 0.7;
}

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

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

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

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

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

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

.butti-N1 .header-utils img {
  filter: invert(1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.butti-N1 .fullmenu-title a {
  height: 4.3rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1120px) {
  .butti-N1 .header-title a {
    height: 2.4rem;
  }

  .butti-N1 .header-gnblink {
    padding: 2.8rem 2.4rem;
  }
}

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

  .butti-N1.header-top-active:hover {
    background: transparent;
  }

  .butti-N1.top-menu-active .header-container {
    padding-top: 0;
  }

  .butti-N1.gnb-active,
  .butti-N1.top-menu-active.gnb-active {
    min-height: auto;
  }

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

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

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

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

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

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

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

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

  .butti-N1 .user-menu li:first-child a {
    padding-left: 0;
  }

  .butti-N1 .header-title a {
    width: 8.2rem;
    height: 2.6rem;
  }

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

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

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

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

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

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

  .butti-N1 .header-sublist {
    display: none;
    height: auto;
    position: relative;
    opacity: 1;
    padding: 1.8rem 0 2rem 0;
  }

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

  .butti-N1 .header-subitem {
    width: 100%;
    text-align: left;
  }

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

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

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

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

  .butti-N1 .header-lang:hover .header-langitem {
    max-height: 0;
  }

  .butti-N1 .header-lang.lang-active .header-langitem {
    max-height: 6.8rem;
  }

  .butti-N1 .header-lang:hover .header-langbtn::after {
    transform: translateY(-50%) rotate(0);
  }

  .butti-N1 .header-lang.lang-active .header-langbtn::after {
    transform: translateY(-50%) rotate(180deg);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .butti-N1 .header-fullmenu {
    display: none;
  }

  .butti-N1 .header-subitem+.header-subitem {
    padding-top: 0.8rem;
  }

  .butti-N1 .header-utils>ul>li {
    margin-left: 0.6rem;
  }
}
/* butti-N10 */
.butti-N10 {
  position: relative;
  overflow: hidden;
  background: url(../profile/mainBack.jpg) no-repeat center/cover;
}

.butti-N10 .contents-container {
  display: flex;
  align-items: center;
  height: 80rem;
}

.butti-N10 .title-area {
  width: 100%;
}

.butti-N10 .title-area h2 {
  color: var(--white);
}

@media (max-width: 992px) {
  .butti-N10 .contents-container {
    height: 62rem;
  }
}
/* butti-N11 */
.butti-N11 {
  position: relative;
}

.butti-N11 .tabset .tabset-item {
  flex: 1;
}

.butti-N11 .tabset.tabset-text .tabset-item+.tabset-item .tabset-link::before {
  content: none;
}
/* butti-N25 */
.butti-N25 {
  overflow: hidden;
  position: relative;
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.butti-N25 .contents-inner {
  width: 100%;
}

.butti-N25 .title-area {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.btnset-icon .title-area span {
  font-weight: var(--fw-bold);
}

.butti-N25 .inputset {
  flex-basis: 40rem;
  display: flex;
  align-items: center;
  position: relative;
}

.butti-N25 .inputset.inputset-line .inputset-input {
  border-bottom-color: var(--border-color);
}

.butti-N25 .title-area .inputset-input {
  padding-right: 3rem;
}

.butti-N25 .title-area .btnset-icon {
  position: absolute;
  right: 0;
  background: none;
  min-width: 2.4rem;
  padding: 0;
}

.butti-N25 .btnset.btnset-icon.ico-left::before {
  color: #111;
}

.butti-N25 .butti-N25 .tableset {
  text-align: center;
}

.butti-N25 .tableset .tableset-table>colgroup>.width-120 {
  width: 120px;
}

.butti-N25 .tableset .tableset-table>thead.thead-light>*>* {
  background: var(--white);
}

.butti-N25 .tableset .tableset-table>thead.thead-border-top>*>* {
  border-top: 1px solid #111;
  border-bottom: 0;
  text-align: center;
}

.butti-N25 .tableset .tableset-table> :not(caption):not(colgroup)>*>* {
  text-align: center;
}

.butti-N25 .tableset .tableset-table>tbody>*>td.text-left {
  text-align: left;
}

.butti-N25 .tableset tbody {
  border-top: 1px solid var(--border-color);
}

.butti-N25 .tableset tbody tr:hover {
  background-color: #fafafa;
}

.butti-N25 .tableset tbody td.date {
  color: #bbbbbb;
}

.butti-N25 .pagiset {
  margin-top: 8rem;
}

.butti-N25 .pagiset .pagiset-ctrl .pagiset-first::after,
.butti-N25 .pagiset .pagiset-ctrl .pagiset-prev::after,
.butti-N25 .pagiset .pagiset-ctrl .pagiset-next::after,
.butti-N25 .pagiset .pagiset-ctrl .pagiset-last::after {
  font-size: var(--fs-p1);
}

.butti-N25 .pagiset .pagiset-link.active-fill {
  background: var(--black);
}

@media (max-width: 992px) {
  .butti-N25 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .butti-N25 .title-area {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .butti-N25 .inputset {
    flex: none;
    width: 100%;
  }

  .butti-N25 .textset {
    margin-bottom: 2rem;
  }

  .butti-N25 .tableset-table {
    min-width: auto;
  }

  .butti-N25 .tableset-table .tableset-tit a {
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .butti-N25 .tableset.tableset-fract .tableset-table {
    display: block;
  }

  .butti-N25 .tableset.tableset-fract thead {
    display: none;
  }

  .butti-N25 .tableset.tableset-fract tbody {
    display: block;
    border-top: 1px solid #111;
  }

  .butti-N25 .tableset.tableset-fract tbody tr {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 1.6rem 0.8rem;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .butti-N25 .tableset.tableset-fract tbody tr td {
    padding: 0;
    border: 0;
  }

  .butti-N25 .tableset.tableset-fract .tableset-table td.tableset-mobile {
    display: none;
  }

  .butti-N25 .tableset.tableset-fract .tableset-table td.tableset-tit {
    width: 100%;
    max-width: 100%;
    max-height: 2.4rem;
  }

  .butti-N25 .tableset.tableset-fract .tableset-table td.tableset-order01 {
    order: 1;
  }

  .butti-N25 .tableset.tableset-fract .tableset-table td.tableset-order02 {
    order: 2;
  }

  .butti-N25 .tableset.tableset-fract .tableset-table td.tableset-order03 {
    order: 3;
  }

  .butti-N25 .tableset.tableset-fract .tableset-table td.tableset-order04 {
    order: 4;
  }

  .butti-N25 .tableset.tableset-fract .tableset-table td.tableset-order05 {
    order: 5;
  }

  .butti-N25 .tableset.tableset-fract .tableset-table td.tableset-order06 {
    order: 6;
  }

  .butti-N25 .pagiset {
    margin-top: 4rem;
  }

  .butti-N25 .pagiset.pagiset-line .pagiset-ctrl .pagiset-link::after {
    font-size: 1.2rem;
  }
}
/* butti-N3 */
.butti-N3 {
  overflow: hidden;
  position: relative;
  padding-top: 12rem;
  padding-bottom: 12rem;
  background: url(../profile/img_footer.png) no-repeat center/cover;
  background-attachment: fixed;
}

.butti-N3 .footer-content {
  width: 100%;
  margin-left: 4rem;
}

.butti-N3 .footer-logo {
  margin-bottom: 0;
  text-align: center;
}

.butti-N3 .footer-logo img {
  height: 3.3rem;
  object-fit: contain;
}

.butti-N3 .footer-gnb {
  display: flex;
  justify-content: center;
  margin-top: 7rem;
}

.butti-N3 .gnb-item {
  position: relative;
  width: 20%;
}

.butti-N3 .gnb-item a {
  color: var(--white);
  background-size: cover;
}

.butti-N3 .gnb-item+.gnb-item {
  padding-left: 4rem;
}

.butti-N3 .gnb-item+.gnb-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 13.8rem;
  background: rgba(255, 255, 255, 0.1);
}

.butti-N3 .footer-sublist {
  margin-top: 1.6rem;
}

.butti-N3 .footer-sublist a {
  width: 100%;
  color: #cccc;
}

.butti-N3 .sub-item {
  transition: color 0.3s;
  will-change: color;
}

.butti-N3 .sub-item:hover a {
  color: var(--white);
}

.butti-N3 .sub-item+.sub-item {
  margin-top: 0.4rem;
}

.butti-N3 .footer-snslist {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.butti-N3 .footer-snsitem+.footer-snsitem {
  margin-left: 0.8rem;
}

.butti-N3 .footer-snslink {
  width: 2.4rem;
  height: 2.4rem;
}

.butti-N3 .footer-snslink img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.butti-N3 .footer-menulist {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.butti-N3 .footer-menulist a {
  color: var(--white);
}

.butti-N3 .footer-menulink a {
  color: var(--white);
  padding-right: 1.2rem;
  text-align: center;
  font-size: var(--fs-p3);
}

.butti-N3 .footer-menulink+.footer-menulink a {
  padding-left: 1.2rem;
}

.butti-N3 .footer-menulink {
  position: relative;
}

.butti-N3 .footer-menulink+.footer-menulink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 1.4rem;
  background: rgba(255, 255, 255, 0.1);
}

.butti-N3 .footer-txtgroup {
  margin-top: 1.2rem;
}

.butti-N3 .footer-txt {
  display: flex;
  justify-content: center;
}

.butti-N3 .footer-txt+.footer-txt {
  margin-top: 0.3rem;
  color: #cccc;
}

.butti-N3 .footer-txt p {
  margin-bottom: 0;
  color: #fff;
}

.butti-N3 .footer-txt .copy {
  color: rgba(255, 255, 255, 0.5);
}

.butti-N3 .footer-txt p+p {
  margin-left: 0.8rem;
}

.butti-N3 .footer-txt p span+span {
  margin-left: 0.8rem;
}

.butti-N3 .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(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
  opacity: 0;
  visibility: hidden;
}

.butti-N3 .footer-modal.block-active {
  opacity: 1;
  visibility: visible;
}

.butti-N3 .modal-area {
  width: 100%;
  max-width: 92rem;
  background: var(--white);
  border-radius: 0.6rem;
}

.butti-N3 .info-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem;
  border-bottom: 1px solid #e5e5e5;
}

.butti-N3 .modal-close {
  cursor: pointer;
}

.butti-N3 .info-area {
  overflow-y: auto;
}

.butti-N3 .modal-email .info-area {
  max-height: 17rem;
}

.butti-N3 .modal-privacy .info-area {
  max-height: 70.3rem;
}

.butti-N3 .info-group+.info-group {
  margin-top: 2.4rem;
}

.butti-N3 .info-group strong {
  padding-bottom: 1.2rem;
  display: block;
}

.butti-N3 .info-desc {
  max-height: 20.7rem;
  padding: 1.6rem;
  background: #f8f8fa;
  border-radius: 1.6rem;
  overflow-y: auto;
  scrollbar-width: none;
}

.butti-N3 .info-desc p.fw-medium {
  font-weight: var(--fw-medium);
}

.butti-N3 .info-desc .mtb {
  margin: 2.4rem 0;
}

.butti-N3 .info-desc em {
  font-style: normal;
  font-weight: 600;
  margin: 2.4rem 0 1rem;
  position: relative;
  display: flex;
  align-items: center;
}

.butti-N3 .info-list em::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: var(--black);
  border-radius: 50%;
  margin-right: 0.8rem;
}

.butti-N3 .info-list p {
  padding-left: 1.2rem;
}

.butti-N3 .gnb-item+.gnb-item {
  padding-left: 4rem;
}

.butti-N3 .gnb-item+.gnb-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 13.8rem;
  background: rgba(255, 255, 255, 0.1);
}

.butti-N3 .sub-item+.sub-item {
  margin-top: 0.4rem;
}

.butti-N3 .footer-snsitem+.footer-snsitem {
  margin-left: 0.8rem;
}

.butti-N3 .footer-menulink+.footer-menulink a {
  padding-left: 1.2rem;
}

.butti-N3 .footer-menulink+.footer-menulink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 1.4rem;
  background: rgba(255, 255, 255, 0.1);
}

.butti-N3 .footer-txt+.footer-txt {
  margin-top: 0.3rem;
  color: #cccc;
}

.butti-N3 .footer-txt p+p {
  margin-left: 0.8rem;
}

.butti-N3 .footer-txt p span+span {
  margin-left: 0.8rem;
}

.butti-N3 .info-group+.info-group {
  margin-top: 2.4rem;
}

@media (max-width: 992px) {
  .butti-N3 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .butti-N3 .footer-gnb {
    display: none;
  }

  .butti-N3 .footer-snslist {
    margin-top: 2.4rem;
  }

  .butti-N3 .footer-menugroup {
    margin-top: 2.4rem;
  }

  .butti-N3 .footer-txt {
    flex-direction: column;
    align-items: center;
  }

  .butti-N3 .footer-txt p+p {
    margin-left: 0;
  }

  .butti-N3 .footer-txt p+p {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .butti-N3 .footer-menulist {
    display: grid;
    grid-template-columns: auto auto;
    text-align: center;
  }

  .butti-N3 .footer-menulink:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
  }

  .butti-N3 .footer-menulink+.footer-menulink:nth-child(odd):after {
    content: none;
  }

  .butti-N3 .footer-menulink+.footer-menulink:nth-child(odd):after {
    content: none;
  }
}
/* campland-N1 */
.campland-N1 {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  background: #fff;
  transition: background 0.3s;
}

.campland-N1.top-menu-active {
  padding-top: 6.7rem;
}

.campland-N1.header-top-active {
  background: transparent;
}

.campland-N1 .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 8rem;
}

.campland-N1 .header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

.campland-N1 .user-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8rem;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
}

.campland-N1 .user-menu li {
  position: relative;
}

.campland-N1 .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;
}

.campland-N1 .user-menu li a {
  padding: 2rem 1.2rem;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.campland-N1 .user-menu li:last-child a {
  padding: 2rem 0 2rem 1.2rem;
}

.campland-N1 .header-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.campland-N1 .header-title {
  margin-bottom: 0;
}

.campland-N1 .header-title a {
  height: 3.9rem;
}

.campland-N1 .header-title img {
  height: 100%;
  object-fit: contain;
  vertical-align: top;
  transition: filter 0.1s;
}

.campland-N1.header-top-active .header-title img {
  filter: brightness(0) invert(1);
}

.campland-N1 .header-gnblist {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.campland-N1 .header-gnbitem {
  position: relative;
}

.campland-N1 .header-gnblink {
  padding: 2.8rem 3rem;
  height: 100%;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.campland-N1 .header-gnblink span {
  position: relative;
  transition: color 0.3s;
}

.campland-N1.header-top-active .header-gnblink span {
  color: #fff;
}

.campland-N1 .header-gnblink span::after {
  content: "";
  transform: scaleX(0);
  width: 100%;
  height: 0.2rem;
  transition: 0.3s;
}

.campland-N1 .header-sublist {
  position: absolute;
  top: 100%;
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.campland-N1 .header-gnbitem:hover .header-sublist {
  overflow: hidden;
  min-height: auto;
  opacity: 1;
  pointer-events: auto;
}

.campland-N1 .header-gnbitem:hover .header-gnblink span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 100%;
  transform: scaleX(1);
  background-color: #111111;
}

.campland-N1.header-top-active .header-gnbitem .header-gnblink span::after {
  background: var(--white);
}

.campland-N1 .header-subitem {
  overflow: hidden;
  width: 14rem;
  background: #fff;
}

.campland-N1 .header-sublink {
  padding: 1rem 2rem;
  width: 100%;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  will-change: color, background;
}

.campland-N1 .header-sublink:hover {
  background: var(--primary);
  color: #fff;
}

.campland-N1 .header-right {
  display: flex;
  align-items: center;
}

.campland-N1 .header-right .header-gnb {
  margin-right: 1.8rem;
}

.campland-N1 .header-utils>ul {
  display: flex;
  align-items: center;
}

.campland-N1 .header-utils>ul>li {
  margin-left: 1.2rem;
}

.campland-N1 .header-utils>ul>li>img {
  width: auto;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: filter 0.3s;
}

.campland-N1.header-top-active .header-utils img {
  filter: invert(1);
}

.campland-N1 .header-right button {
  max-width: 3.2rem;
  background: none;
  border: none;
}

.campland-N1 .header-right button img {
  width: auto;
  max-height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.campland-N1 .header-utils .member a {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 0;
}

.campland-N1 .header-utils .member img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.campland-N1 .header-utils .btn-allmenu {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.campland-N1 .header-utils .btn-allmenu:hover .ico-hamburger:nth-child(2) {
  width: 2.4rem;
}

.campland-N1 .header-utils .btn-allmenu .ico-hamburger,
.campland-N1 .btn-momenu .ico-hamburger {
  width: 2.4rem;
  height: 0.2rem;
  background: #111;
  border-radius: 1rem;
  transition: width 0.3s, transform 0.3s, opacity 0.3s;
  will-change: width, transform, opacity;
}

.campland-N1.header-top-active .header-container .ico-hamburger {
  background: #fff;
}

.campland-N1 .header-utils .btn-allmenu .ico-hamburger:nth-child(even),
.campland-N1 .btn-momenu .ico-hamburger:nth-child(2) {
  width: 1.4rem;
}

.campland-N1 .btn-momenu {
  display: none;
}

.campland-N1 .btn-moclose {
  display: none;
}

.campland-N1 .header-fullmenu {
  overflow: hidden;
  position: fixed;
  z-index: 99999;
  padding: 0 2.4rem;
  visibility: hidden;
  background: #000;
  transition: 0.3s;
  opacity: 0;
}

.campland-N1 .header-fullmenu.fullmenu-right {
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
}

.campland-N1 .header-fullmenu.fullmenu-left {
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}

.campland-N1 .header-fullmenu.fullmenu-top {
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
}

.campland-N1 .header-fullmenu.fullmenu-bottom {
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
}

.campland-N1 .header-fullmenu.fullmenu-active {
  visibility: visible;
  width: 100%;
  height: 100vh;
  opacity: 1;
}

.campland-N1 .fullmenu-wrapper {
  position: relative;
  top: 50%;
  margin: 0 auto;
  transform: translateY(-50%);
  width: 100%;
  max-width: 128rem;
}

.campland-N1 .fullmenu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10rem;
}

.campland-N1 .fullmenu-title {
  margin-bottom: 0;
}

.campland-N1 .fullmenu-title a {
  height: 4.3rem;
}

.campland-N1 .fullmenu-title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campland-N1 .fullmenu-member {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.campland-N1 .fullmenu-member li {
  position: relative;
}

.campland-N1 .fullmenu-member li a {
  padding: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.campland-N1 .fullmenu-member li::marker {
  content: "";
}

.campland-N1 .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);
}

.campland-N1 .fullmenu-gnblist {
  display: flex;
  justify-content: center;
}

.campland-N1 .fullmenu-gnbitem {
  width: 20%;
}

.campland-N1 .fullmenu-gnbitem+.fullmenu-gnbitem {
  margin-left: 4rem;
}

.campland-N1 .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);
}

.campland-N1 .fullmenu-gnblink::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.1rem;
  background: #ffffff;
  transition: 0.2s;
}

.campland-N1 .fullmenu-gnblink.on::after {
  width: 18rem;
}

.campland-N1 .fullmenu-sublist {
  padding-top: 4rem;
}

.campland-N1 .fullmenu-subitem+.fullmenu-subitem {
  padding-top: 0.8rem;
}

.campland-N1 .fullmenu-sublink {
  position: relative;
  padding-bottom: 5px;
  font-weight: 400;
  color: #a2a2a2;
  transition: 0.3s;
}

.campland-N1 .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);
}

.campland-N1 .fullmenu-sublink:hover {
  color: var(--white);
}

.campland-N1 .fullmenu-sublink:hover::before {
  right: auto;
  left: 0;
  width: 100%;
}

.campland-N1 .fullmenu-close {
  position: fixed;
  right: 8rem;
  top: 2.4rem;
  padding: 0.5rem;
  width: 4.2rem;
  height: 4.2rem;
  background: transparent;
  border: none;
}

.campland-N1 .fullmenu-close img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1120px) {
  .campland-N1 .header-title a {
    height: 2.4rem;
  }

  .campland-N1 .header-gnblink {
    padding: 2.8rem 2.4rem;
  }
}

@media (max-width: 992px) {
  .campland-N1 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .campland-N1 .header-gnb {
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    padding: 0 1.6rem;
    width: 100%;
    height: 0;
    background: #fff;
    transition: height 0.3s, background 0.3s;
  }

  .campland-N1.block-active .header-gnb {
    overflow-y: auto;
    height: calc(100vh - 6rem);
    padding-bottom: 19rem;
  }

  .campland-N1.block-active.header-top-active {
    background: #111;
  }

  .campland-N1.header-top-active .header-gnb {
    background: rgba(0, 0, 0, 0.8);
  }

  .campland-N1 .header-container {
    min-height: 6rem;
  }

  .campland-N1 .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;
  }

  .campland-N1.block-active .header-top {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }

  .campland-N1 .user-menu {
    justify-content: flex-start;
    padding: 0 2.2rem;
  }

  .campland-N1 .user-menu li a,
  .campland-N1 .user-menu li:last-child a {
    padding: 2.4rem 1.2rem;
  }

  .campland-N1 .user-menu li:first-child a {
    padding-left: 0;
  }

  .campland-N1 .header-title a {
    width: 12rem;
    height: 2.4rem;
  }

  .campland-N1 .header-center {
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    width: 100%;
    height: 0;
  }

  .campland-N1 .header-gnblist {
    display: block;
    visibility: hidden;
    transition: opacity 0.3s 0.1s;
    opacity: 0;
  }

  .campland-N1 .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;
  }

  .campland-N1.top-menu-active .header-gnbitem:first-child .header-gnblink {
    padding-top: 6.8rem;
  }

  .campland-N1 .header-gnbitem:hover .header-gnblink span {
    border: none;
  }

  .campland-N1 .header-gnbitem:hover .header-gnblink span::after {
    content: none;
  }

  .campland-N1 .header-sublist {
    display: none;
    position: relative;
    padding: 1.8rem 0 2rem 0;
    opacity: 1;
  }

  .campland-N1 .header-gnbitem.item-active .header-gnblink {
    border-bottom: 1px solid #111111;
  }

  .campland-N1.header-top-active .header-gnbitem.item-active .header-gnblink {
    border-color: #fff;
  }

  .campland-N1 .header-subitem {
    width: 100%;
    background-color: transparent;
  }

  .campland-N1 .header-subitem+.header-subitem {
    padding-top: 0.8rem;
  }

  .campland-N1 .header-sublink {
    padding: 0;
    color: var(--text-color3);
  }

  .campland-N1 .header-sublink:active {
    color: #111111;
  }

  .campland-N1 .header-sublink:hover {
    background: #ffff;
    color: #111111;
  }

  .campland-N1.header-top-active .header-sublink:hover {
    color: #fff;
    background: transparent;
  }

  .campland-N1 .header-right button,
  .campland-N1 .header-utils .member a {
    width: 2.8rem;
    height: 2.8rem;
  }

  .campland-N1 .header-utils .search {
    display: none;
  }

  .campland-N1 .header-utils>ul>li {
    margin-left: 0.6rem;
  }

  .campland-N1 .header-utils .allmenu {
    display: none;
  }

  .campland-N1 .btn-momenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    margin-left: 0.6rem;
  }

  .campland-N1 .btn-momenu .ico-hamburger {
    width: 2rem;
  }

  .campland-N1 .btn-momenu .ico-hamburger:nth-child(2) {
    width: 1.2rem;
  }

  .campland-N1.block-active .header-center {
    pointer-events: auto;
  }

  .campland-N1.block-active .header-title {
    display: flex;
    align-items: center;
    height: 6rem;
  }

  .campland-N1.block-active .header-gnblist {
    visibility: visible;
    opacity: 1;
  }

  .campland-N1 .header-gnbitem:has(.header-subitem) .header-gnblink::after {
    content: "";
    display: flex;
    width: 1.6rem;
    height: 1.6rem;
    background-image: url(../icons/ico_downarrow_black.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transition: transform 0.3s, filter 0.3s;
    will-change: transform;
  }

  .campland-N1.header-top-active .header-gnbitem:has(.header-subitem) .header-gnblink::after {
    filter: invert(1);
  }

  .campland-N1.block-active .header-gnblink {
    align-items: center;
    justify-content: space-between;
  }

  .campland-N1.block-active .header-gnbitem.item-active .header-gnblink::after {
    content: "";
    transform: rotate(180deg);
  }

  .campland-N1.block-active .header-member {
    display: flex;
  }

  .campland-N1.block-active .btn-momenu .ico-hamburger:nth-child(1) {
    transform: translateY(0.8rem) rotate(45deg);
  }

  .campland-N1.block-active .btn-momenu .ico-hamburger:nth-child(3) {
    transform: translateY(-0.8rem) rotate(-45deg);
  }

  .campland-N1.block-active .btn-momenu .ico-hamburger:nth-child(2) {
    visibility: hidden;
    opacity: 0;
  }

  .campland-N1 .header-fullmenu {
    display: none;
  }
}
/* campland-N8 */
.campland-N8 {
  overflow: hidden;
  position: relative;
  background: url(../images/img_subvisual_1.png) no-repeat center/cover;
}

.campland-N8 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

.campland-N8 h2 {
  color: var(--white);
  font-weight: var(--fw-medium);
}

@media (max-width: 992px) {
  .campland-N8 .contents-container {
    height: 40rem;
  }
}
/* campland-N12 */
.campland-N12 {
  overflow: hidden;
  position: relative;
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.campland-N12 .textset {
  margin-bottom: 4rem;
}

.campland-N12 .textset .textset-tit {
  font-weight: var(--fw-bold);
}

.campland-N12 .tableset {
  text-align: center;
}

.campland-N12 .tableset .tableset-table>thead.thead-border-top>*>* {
  border-top: 1px solid var(--primary);
  border-bottom: 0;
}

.campland-N12 .tableset .tableset-table>tbody>*>td.text-left {
  text-align: left;
}

.campland-N12 .pagiset {
  margin-top: 8rem;
}

@media (max-width: 992px) {
  .campland-N12 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .campland-N12 .textset {
    margin-bottom: 2rem;
  }

  .campland-N12 .tableset-table {
    min-width: auto;
  }

  .campland-N12 .tableset-table .tableset-tit a {
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .campland-N12 .tableset.tableset-fract .tableset-table {
    display: block;
  }

  .campland-N12 .tableset.tableset-fract thead {
    display: none;
  }

  .campland-N12 .tableset.tableset-fract tbody {
    display: block;
    border-top: 1px solid var(--primary);
  }

  .campland-N12 .tableset.tableset-fract tbody tr {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 1.6rem 0.8rem;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border-color);
  }

  .campland-N12 .tableset.tableset-fract tbody tr td {
    padding: 0;
    border: 0;
  }

  .campland-N12 .tableset.tableset-fract .tableset-table td.tableset-mobile {
    display: none;
  }

  .campland-N12 .tableset.tableset-fract .tableset-table td.tableset-tit {
    width: 100%;
    max-width: 100%;
    max-height: 2.4rem;
  }

  .campland-N12 .tableset.tableset-fract .tableset-table td.tableset-order01 {
    order: 1;
  }

  .campland-N12 .tableset.tableset-fract .tableset-table td.tableset-order02 {
    order: 2;
  }

  .campland-N12 .tableset.tableset-fract .tableset-table td.tableset-order03 {
    order: 3;
  }

  .campland-N12 .tableset.tableset-fract .tableset-table td.tableset-order04 {
    order: 4;
  }

  .campland-N12 .tableset.tableset-fract .tableset-table td.tableset-order05 {
    order: 5;
  }

  .campland-N12 .tableset.tableset-fract .tableset-table td.tableset-order06 {
    order: 6;
  }

  .campland-N12 .pagiset {
    margin-top: 4rem;
  }
}
/* campland-N13 */
.campland-N13 {
  overflow: hidden;
  position: relative;
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.campland-N13 .contents-inner {
  width: 100%;
}

.campland-N13 .textset {
  margin-bottom: 2.8rem;
}

.campland-N13 .textset .textset-tit {
  font-weight: var(--fw-bold);
}

.campland-N13 .textset .textset-tit+.textset-desc {
  margin-top: 1.4rem;
}

.campland-N13 .textset .textset-desc {
  color: #777777;
}

.campland-N13 .textset .textset-tit+.textset-desc span {
  display: inline-block;
  margin-left: 0.8rem;
}

.campland-N13 .contents-body {
  padding: 4rem 0;
  border-top: 1px solid var(--primary);
  border-bottom: 1px solid var(--border-color);
}

.campland-N13 .contents-text {
  color: #505050;
}

.campland-N13 .contents-link {
  margin-top: 2.8rem;
  text-align: center;
}

.campland-N13 .btnset {
  font-weight: var(--fw-medium);
}

@media (max-width: 992px) {
  .campland-N13 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .campland-N13 .textset .textset-tit+.textset-desc {
    margin-top: 0.8rem;
  }

  .campland-N13 .contents-body {
    padding: 2.8rem 0;
  }
}
/* basic-N39 */
.basic-N39 {
  position: relative;
  overflow: hidden;
}

.basic-N39 .contents-container {
  height: 70rem;
}

.basic-N39 .contents-inner {
  width: 100%;
  height: 100%;
}

.basic-N39 .contents-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2rem;
}

.basic-N39 .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.basic-N39 .swiper-slide {
  position: relative;
}

.basic-N39 .contents-backimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.basic-N39 .contents-slide-group {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
  padding: 0 8rem;
}

.basic-N39 .textset {
  padding: 0;
  margin-bottom: 6rem;
}

.basic-N39 .textset .textset-tit {
  color: var(--white);
}

.basic-N39 .textset .textset-desc {
  color: var(--text-color4);
}

.basic-N39 .btnset {
  min-width: 18rem;
}

.basic-N39 .contents-control {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  position: absolute;
  left: 50%;
  bottom: 4rem;
  transform: translateX(-50%);
  z-index: 100;
}

.basic-N39 .swiper-button-prev,
.basic-N39 .swiper-button-next {
  position: static;
  width: 2rem;
  height: 2rem;
  margin-top: 0;
  opacity: 0.5;
  transition: 0.3s;
}

.basic-N39 .swiper-button-prev {
  transform: rotate(180deg);
}

.basic-N39 .swiper-button-prev:after,
.basic-N39 .swiper-button-next:after {
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url(../icons/ico_btnset_arrow_white_sm.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
}

.basic-N39 .swiper-button-prev:hover,
.basic-N39 .swiper-button-next:hover {
  opacity: 1;
}

.basic-N39 .swiper-pagination {
  display: flex;
  align-items: center;
  position: static;
  gap: 0.4rem;
  font-weight: 500;
  color: var(--text-color4);
}

.basic-N39 .swiper-pagination-current {
  font-weight: 500;
  color: var(--white);
}

.basic-N39 .swiper-button-play,
.basic-N39 .swiper-button-pause {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  opacity: 0.5;
  transition: 0.3s;
  cursor: pointer;
}

.basic-N39 .swiper-button-play img,
.basic-N39 .swiper-button-pause img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.basic-N39 .swiper-button-play:hover,
.basic-N39 .swiper-button-pause:hover {
  opacity: 1;
}

.basic-N39 .swiper-button-play {
  display: none;
}

@media (max-width: 992px) {
  .basic-N39 .contents-container {
    height: 60rem;
  }

  .basic-N39 .contents-swiper {
    width: 100%;
    margin-left: 0;
  }

  .basic-N39 .contents-slide-group {
    left: 2.4rem;
    width: calc(100% - 4.8rem);
    padding: 0;
  }

  .basic-N39 .textset {
    margin-bottom: 4rem;
  }

  .basic-N39 .textset .textset-tit+.textset-desc {
    margin-top: 2rem;
  }

  .basic-N39 .contents-control {
    bottom: 2rem;
  }

  .basic-N39 .btnset {
    min-width: 16rem;
  }
}

@media (max-width: 576px) {
  .basic-N39 .textset .textset-desc br {
    display: none;
  }
}
/* basic-N40 */
.basic-N40 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N40 .contents-inner {
  width: 100%;
  min-height: 100.8rem;
  position: relative;
}

.basic-N40 .cardset {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% / 2 - 8rem);
}

.basic-N40 .cardset+.cardset {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}

.basic-N40 .cardset .cardset-figure {
  height: 64rem;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N40 .cardset .cardset-figure+.cardset-body,
.basic-N40 .cardset .cardset-body+.cardset-figure {
  margin-top: 3rem;
}

.basic-N40 .cardset .cardset-body {
  padding: 0;
}

.basic-N40 .cardset .cardset-tit+.cardset-desc {
  margin-top: 2rem;
}

.basic-N40 .cardset .cardset-desc {
  color: var(--text-color3);
}

@media (max-width: 992px) {
  .basic-N40 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N40 .contents-container {
    min-height: auto;
  }

  .basic-N40 .cardset {
    position: relative;
    width: 100%;
  }

  .basic-N40 .cardset+.cardset {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 4rem;
  }

  .basic-N40 .cardset+.cardset .cardset-body {
    margin-top: 3rem;
  }

  .basic-N40 .cardset+.cardset .cardset-figure {
    margin-top: 0;
  }

  .basic-N40 .cardset .cardset-figure {
    height: 37.4rem;
  }
}

@media (max-width: 375px) {
  .basic-N40 .cardset .cardset-desc br {
    display: none;
  }
}
/* basic-N41 */
.basic-N41 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N41 .contents-container {
  position: relative;
}

.basic-N41 .imageset {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 60rem;
  overflow: hidden;
}

.basic-N41 .textset {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
  width: calc(100% - 16rem);
  text-align: center;
}

.basic-N41 .textset .textset-tit {
  color: var(--white);
  word-break: keep-all;
}

.basic-N41 .textset .textset-desc {
  margin-top: 2.9rem;
  color: rgba(var(--white-rgb), 0.7);
  word-break: keep-all;
}

@media (max-width: 1200px) {
  .basic-N41 .textset {
    width: calc(100% - 8rem);
  }
}

@media (max-width: 992px) {
  .basic-N41 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N41 .textset {
    width: calc(100% - 1.6rem - 1.6rem);
  }
}

@media (max-width: 576px) {

  .basic-N41 .textset .textset-tit br,
  .basic-N41 .textset .textset-desc br {
    display: none;
  }
}
/* basic-N42 */
.basic-N42 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N42 .contents-inner {
  position: relative;
}

.basic-N42 .textset {
  margin-bottom: 4rem;
  text-align: center;
}

.basic-N42 .textset .textset-desc {
  margin-top: 0.8rem;
  color: var(--text-color3);
}

.basic-N42 .swiper-wrapper {
  margin-bottom: 4rem;
}

.basic-N42 .swiper-slide {
  width: calc(100% / 2 - 3rem);
  margin-right: 4rem;
}

.basic-N42 .swiper-button-prev,
.basic-N42 .swiper-button-next {
  flex-shrink: 0;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--line-color3);
}

.basic-N42 .swiper-button-prev {
  left: auto;
  right: calc(100% + 4rem);
}

.basic-N42 .swiper-button-next {
  left: calc(100% + 4rem);
  right: auto;
}

.basic-N42 .swiper-button-prev::after,
.basic-N42 .swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../icons/ico_btnset_arrow_right_black.svg);
}

.basic-N42 .swiper-button-prev:after {
  transform: rotate(180deg);
}

.basic-N42 .swiper-pagination {
  width: 100%;
  top: auto;
  bottom: 0;
  background-color: #e9e9e9;
  border-radius: 1rem;
  overflow: hidden;
}

.basic-N42 .swiper-pagination-progressbar-fill {
  background-color: var(--line-color3);
  border-radius: 1rem;
}

.basic-N42 .cardset {
  display: inline-block;
  width: 100%;
}

.basic-N42 .cardset .cardset-figure {
  height: 45rem;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N42 .cardset .cardset-body {
  padding-top: 1.6rem;
  padding-bottom: 0;
}

.basic-N42 .cardset .cardset-name {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-color3);
}

.basic-N42 .cardset .cardset-tit+.cardset-desc {
  margin-top: 0.8rem;
}

@media (max-width: 992px) {
  .basic-N42 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N42 .swiper-slide {
    margin-right: 2rem;
  }

  .basic-N42 .swiper-slide,
  .basic-N42 .cardset {
    width: 100%;
  }

  .basic-N42 .swiper-button-prev,
  .basic-N42 .swiper-button-next {
    display: none;
  }

  .basic-N42 .cardset .cardset-figure+.cardset-body {
    margin-top: 0;
    padding-top: 3rem;
  }
}
/* basic-N43 */
.basic-N43 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N43 .contents-inner {
  display: flex;
  gap: 2rem;
}

.basic-N43 .cardset {
  position: relative;
  width: 50%;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N43 .cardset .cardset-tit+.cardset-desc {
  margin-top: 2rem;
  word-break: keep-all;
}

.basic-N43 .cardset .cardset-figure {
  height: 34rem;
}

.basic-N43 .cardset .cardset-figure+.cardset-body {
  margin-top: 0;
}

.basic-N43 .cardset .cardset-body {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  padding: 3.2rem;
  text-align: center;
  background-color: transparent;
}

.basic-N43 .cardset .cardset-tit {
  color: var(--white);
}

.basic-N43 .cardset .cardset-desc {
  color: var(--border-color);
}

@media (max-width: 1200px) {
  .basic-N43 .cardset {
    width: 50%;
    margin-left: 0;
  }

  .basic-N43 .cardset+.cardset {
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .basic-N43 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N43 .contents-inner {
    flex-direction: column;
  }

  .basic-N43 .cardset {
    width: 100%;
  }

  .basic-N43 .cardset+.cardset {
    margin-top: 0;
  }

  .basic-N43 .cardset .cardset-body {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .basic-N43 .cardset .cardset-desc br {
    display: none;
  }
}
/* basic-N44 */
.basic-N44 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N44 .textset {
  margin-bottom: 4rem;
}

.basic-N44 .textset .textset-tit {
  text-align: center;
}

.basic-N44 .cardset {
  position: relative;
}

.basic-N44 .cardset .cardset-desc {
  word-break: keep-all;
  -webkit-line-clamp: 5;
  color: var(--border-color);
}

.basic-N44 .cardset .cardset-figure {
  height: 50rem;
}

.basic-N44 .cardset .cardset-figure+.cardset-body {
  margin-top: 0;
}

.basic-N44 .cardset .cardset-body {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  padding: 3.2rem;
  background-color: transparent;
}

.basic-N44 .cardset .cardset-tit {
  color: var(--white);
}

@media (max-width: 992px) {
  .basic-N44 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .basic-N44 .cardset .cardset-body {
    padding: 3.2rem;
  }
}

@media (max-width: 375px) {
  .basic-N44 .cardset .cardset-desc br {
    display: none;
  }
}
/* butti-N4 */
.butti-N4 {
  overflow: hidden;
  position: relative;
}

.butti-N4 .contents-container {
  display: flex;
  justify-content: center;
  height: 80rem;
}

.butti-N4 .slide-area,
.butti-N4 .swiper {
  width: 100vw;
  height: 100%;
}

.butti-N4 .swiper-slide {
  position: relative;
}

.butti-N4 .contents-backimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.butti-N4 .contents-slide-group {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  padding: 0 16rem;
  width: 100%;
}

.butti-N4 .container-lg .contents-slide-group {
  max-width: calc(1440px + 32rem);
}

.butti-N4 .container-md .contents-slide-group {
  max-width: calc(1280px + 32rem);
}

.butti-N4 .container-sm .contents-slide-group {
  max-width: calc(1024px + 32rem);
}

.butti-N4 .textset-tit {
  color: var(--white);
  font-weight: var(--fw-medium);
}

.butti-N4 .textset-tit+.textset-desc {
  margin-top: 2rem;
  color: var(--white);
  font-weight: var(--fw-medium);
  opacity: 0.9;
}

.butti-N4 .btnset {
  margin-top: 4rem;
  font-weight: var(--fw-medium);
}

.butti-N4 .contents-control {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4rem;
  z-index: 100;
}

.butti-N4 .swiper-button-prev,
.butti-N4 .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;
  border-radius: 50%;
  transition: 0.3s;
  border: 1px solid var(--white);
}

.butti-N4 .swiper-button-prev {
  left: 8rem;
}

.butti-N4 .swiper-button-next {
  right: 8rem;
  transform: rotate(180deg);
}

.butti-N4 .swiper-button-prev:after,
.butti-N4 .swiper-button-next:after {
  content: none;
}

.butti-N4 .swiper-button-prev:hover,
.butti-N4 .swiper-button-next:hover {
  opacity: 1;
}

.butti-N4 .swiper-pagination {
  display: inline-flex;
  align-items: center;
  position: relative;
  left: 0;
  bottom: 0;
}

.butti-N4 .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin: 0 1.2rem 0 0;
  background-color: rgba(var(--white-rgb), 0.3);
  opacity: 1;
}

.butti-N4 .swiper-pagination-bullet-active {
  background-color: var(--white);
  border: none;
}

.butti-N4 .swiper-button-pause,
.butti-N4 .swiper-button-play {
  display: flex;
  cursor: pointer;
}

.butti-N4 .swiper-button-pause img,
.butti-N4 .swiper-button-play img {
  width: 2rem;
  height: 2rem;
}

@media (max-width: 1200px) {
  .butti-N4 .slide-area {
    width: 100%;
  }

  .butti-N4 .swiper {
    margin-left: -4rem;
    width: calc(100% + 8rem);
  }

  .butti-N4 .contents-slide-group,
  .butti-N4 .container-full .contents-slide-group {
    padding: 0 4rem;
  }

  .butti-N4 .container-lg .contents-slide-group {
    max-width: calc(1440px + 8rem);
  }

  .butti-N4 .container-md .contents-slide-group {
    max-width: calc(1280px + 8rem);
  }

  .butti-N4 .container-sm .contents-slide-group {
    max-width: calc(1024px + 8rem);
  }

  .butti-N4 .swiper-button-prev,
  .butti-N4 .swiper-button-next {
    display: none;
  }
}

@media (max-width: 992px) {
  .butti-N4 .contents-container {
    height: 70rem;
  }

  .butti-N4 .swiper {
    margin-left: -1.6rem;
    width: calc(100% + 3.2rem);
  }

  .butti-N4 .contents-slide-group,
  .butti-N4 .container-full .contents-slide-group {
    padding: 0 1.6rem;
  }

  .butti-N4 .container-lg .contents-slide-group {
    max-width: calc(1440px + 3.2rem);
  }

  .butti-N4 .container-md .contents-slide-group {
    max-width: calc(1280px + 3.2rem);
  }

  .butti-N4 .container-sm .contents-slide-group {
    max-width: calc(1024px + 3.2rem);
  }

  .butti-N4 .btnset {
    margin-top: 3rem;
  }

  .butti-N4 .swiper-button-next,
  .butti-N4 .swiper-button-prev {
    display: none;
  }

  .butti-N4 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
  }
}
/* butti-N5 */
.butti-N5 {
  overflow: hidden;
  position: relative;
  padding-top: 16rem;
  padding-bottom: 8rem;
}

.butti-N5 .contents-inner {
  width: 100%;
}

.butti-N5 .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.butti-N5 .thumb {
  position: relative;
  height: 60rem;
}

.butti-N5 .thumb img {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + 13rem);
  height: 100%;
  object-fit: cover;
}

.butti-N5 .item.reverse .thumb {
  order: 2;
}

.butti-N5 .item.reverse .thumb img {
  right: auto;
  left: 0;
}

.butti-N5 .desc {
  padding-left: 12rem;
}

.butti-N5 .item.reverse .desc {
  padding-left: 0;
  padding-right: 12rem;
}

.butti-N5 .desc p {
  margin: 3rem 0 4rem;
  color: #777777;
}

@media (max-width: 992px) {
  .butti-N5 {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }

  .butti-N5 .item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .butti-N5 .item+.item {
    margin-top: 8rem;
  }

  .butti-N5 .thumb {
    margin-left: -1.6rem;
    width: calc(100% + 1.6rem);
    height: 30rem;
  }

  .butti-N5 .thumb img {
    position: static;
    width: 100%;
  }

  .butti-N5 .item.reverse .thumb {
    order: 0;
    margin-left: 0;
    margin-right: -1.6rem;
  }

  .butti-N5 .desc,
  .butti-N5 .item.reverse .desc {
    padding: 0;
  }

  .butti-N5 .desc p {
    margin: 2.5rem 0 2rem;
  }
}
/* butti-N6 */
.butti-N6 {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.butti-N6 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80rem;
}

.butti-N6 .videoset {
  width: 100%;
  height: 100%;
}

.butti-N6 .videoset-button {
  height: 100%;
  text-align: center;
}

.butti-N6 .videoset-button .videoset-icon {
  cursor: auto;
}

.butti-N6 .videoset .videoset-tit {
  margin-bottom: 4.2rem;
}

.butti-N6 .modalset-open-btn {
  cursor: pointer;
}

@media (max-width: 992px) {
  .butti-N6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .butti-N6 .contents-container {
    height: 50rem;
  }

  .butti-N6 .videoset,
  .butti-N6 .videoset-button {
    width: calc(100% + 3.2rem);
    margin-left: -1.6rem;
  }

  .butti-N6 .videoset .videoset-tit {
    margin-bottom: 3.3rem;
  }
}
/* butti-N7 */
.butti-N7 {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.butti-N7 .contents-container {
  position: relative;
}

.butti-N7 .contents-inner {
  position: relative;
  width: 100%;
}

.butti-N7 .textset {
  margin-bottom: 5rem;
}

.butti-N7 .textset-tit+.textset-desc {
  margin-top: 1rem;
  color: #777777;
  font-weight: var(--fw-regular);
}

.butti-N7 .contents-swiper {
  overflow: hidden;
}

.butti-N7 .swiper-slide {
  position: relative;
}

.butti-N7 .cardset {
  width: 100%;
}

.butti-N7 .cardset-figure {
  height: 34.3rem;
}

.butti-N7 .cardset-figure::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #111111 0%, rgba(var(--black-rgb), 0) 100%);
}

.butti-N7 .cardset .cardset-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.6rem;
  height: 100%;
}

.butti-N7 .cardset .cardset-tit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  color: var(--white);
  font-weight: var(--fw-bold);
}

.butti-N7 .cardset .cardset-desc {
  -webkit-line-clamp: 8;
  margin-bottom: 0;
  color: rgba(var(--white-rgb), 0.7);
  font-weight: var(--fw-regular);
}

.butti-N7 .contents-control {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 4.8rem;
}

.butti-N7 .swiper-button-next,
.butti-N7 .swiper-button-prev {
  top: 50%;
  transform: translateY(50%);
  width: 5.4rem;
  height: 5.4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.8rem;
  background-color: var(--white);
  border-radius: 50%;
  transition: 0.3s;
  border: 1px solid var(--border-color);
}

.butti-N7 .swiper-button-prev {
  left: -7rem;
  background-image: url(../icons/ico_arrow_left_black.svg);
}

.butti-N7 .swiper-button-next {
  right: -7rem;
  background-image: url(../icons/ico_arrow_right_black.svg);
}

.butti-N7 .swiper-button-prev:after,
.butti-N7 .swiper-button-next:after {
  content: none;
}

.butti-N7 .swiper-button-next:hover,
.butti-N7 .swiper-button-prev:hover {
  opacity: 1;
}

.butti-N7 .swiper-pagination {
  position: relative;
  left: 0;
  bottom: 0;
  width: auto;
}

.butti-N7 .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin: 0 1.2rem 0 0;
  background-color: rgba(36, 36, 36, 0.3);
  opacity: 1;
}

.butti-N7 .swiper-pagination-bullet-active {
  background-color: #242424;
  border: none;
}

.butti-N7 .contents-control .btnset {
  position: absolute;
  right: 0;
  font-weight: var(--fw-bold);
  gap: 1.2rem;
}

@media (max-width: 1200px) {

  .butti-N7 .swiper-button-next,
  .butti-N7 .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 992px) {
  .butti-N7 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .butti-N7 .textset {
    margin-bottom: 4rem;
  }

  .butti-N7 .textset-tit+.textset-desc {
    margin-top: 0.6rem;
  }

  .butti-N7 .cardset-figure {
    height: 32.7rem;
  }

  .butti-N7 .contents-control {
    margin-top: 2.8rem;
  }

  .butti-N7 .contents-control .btnset {
    position: relative;
    align-self: flex-end;
    margin-top: 3rem;
  }

  .butti-N7 .cardset .cardset-desc {
    margin-top: 0.9rem;
  }

  .butti-N7 .swiper-button-next,
  .butti-N7 .swiper-button-prev {
    display: none;
  }

  .butti-N7 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem 0 0;
  }
}
/* butti-N8 */
.butti-N8 {
  overflow: hidden;
  position: relative;
  background: url(../index/index-3.jpg) no-repeat center/cover;
}

.butti-N8 .contents-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  height: 80rem;
}

.butti-N8 .title-area {
  position: relative;
  padding-right: 25.9rem;
  width: 100%;
}

.butti-N8 .container-sm .title-area {
  padding-right: 16rem;
}

.butti-N8 .title-area::before {
  content: "";
  position: absolute;
  top: -200%;
  right: 0;
  width: 100vw;
  height: 300vh;
  background: rgba(17, 17, 17, 0.7);
}

.butti-N8 .title-area h2 {
  display: inline-block;
  position: relative;
  color: #fff;
}

.butti-N8 .title-area p {
  position: relative;
  margin: 3rem 0 4rem;
  color: #e6e6e6;
}

.butti-N8 .btnset {
  position: relative;
}

@media (max-width: 1300px) {
  .butti-N8 .title-area {
    padding-right: 8rem;
  }
}

@media (max-width: 992px) {
  .butti-N8 {
    background: url(../images/img_butti_mobile_N8_01.png) no-repeat center/cover;
  }

  .butti-N8 .contents-container {
    display: block;
    height: 70rem;
  }

  .butti-N8 .title-area {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 4.8rem 1.6rem;
    width: calc(100% + 3.2rem);
    max-width: 100%;
    background: rgba(17, 17, 17, 0.7);
  }

  .butti-N8 .title-area::before {
    content: none;
  }

  .butti-N8 .title-area p {
    margin: 2.5rem 0 2rem;
  }
}
/* butti-N9 */
.butti-N9 {
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 16rem;
}

.butti-N9 .contents-inner {
  width: 100%;
}

.butti-N9 .title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 7rem;
}

.butti-N9 .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  font-weight: var(--fw-regular);
  color: #777777;
}

.butti-N9 .cardset.cardset-user.cardset-hor {
  align-items: flex-start;
  padding: 2.4rem;
  border: 1px solid #e5e5e5;
  background: var(--white);
}

.butti-N9 .cardset.cardset-user::after {
  content: none;
}

.butti-N9 .cardset.cardset-user.cardset-hor .cardset-figure {
  width: 8rem;
  height: 8rem;
}

.butti-N9 .cardset.cardset-user.cardset-hor .cardset-profile {
  padding-left: 2rem;
}

.butti-N9 .cardset.cardset-user .cardset-text {
  color: #242424;
}

.butti-N9 .cardset.cardset-user .cardset-text+.cardset-info {
  color: #777;
  font-weight: var(--fw-bold);
}

.butti-N9 .contents-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.butti-N9 .contents-control [class*="btn-"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: none;
}

.butti-N9 .contents-control [class*="btn-"] img {
  width: 2rem;
  height: 2rem;
}

@media (max-width: 992px) {
  .butti-N9 {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }

  .butti-N9 .title-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    margin-bottom: 3rem;
  }

  .butti-N9 .contents-control {
    margin-left: auto;
  }

  .butti-N9 .textset-tit+.textset-desc {
    margin-top: 0.5rem;
  }

  .butti-N9 .cardset.cardset-hor {
    display: flex;
  }

  .butti-N9 .cardset.cardset-user.cardset-hor .cardset-profile {
    padding: 0 0 0 2rem;
    text-align: left;
  }
}

