@charset "utf-8";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .basic-N1 .header-fullmenu {
    display: none;
  }
}
/* basic-N5 */
.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 */
.board_blank {
  display: flex;
  justify-content: center;
  height: 300px;
  background: #ddd;
  align-items: center;
  flex-direction: column;
}

.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;
  }
}
/* basic-N4 */
.basic-N4 {
  position: relative;
  background: #111;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .basic-N4 .footer-menulink {
    flex-shrink: 0;
  }
}
/* basic-N29 */
.basic-N29 {
  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-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-N48 */
.basic-N48 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.basic-N48 .contents-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 50rem;
  border-radius: 2rem;
  overflow: hidden;
}

.basic-N48 .imageset {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.basic-N48 .textset {
  width: 100%;
  padding: 0 8rem;
  text-align: center;
}

.basic-N48 .textset .textset-tit {
  color: var(--white);
  word-break: keep-all;
}

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

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

  .basic-N48 .textset {
    padding: 0 1.6rem;
    text-align: center;
  }
}