@charset "utf-8";

/* butti-header */
.butti-header {
  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-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.12) 60%, rgba(0, 0, 0, 0) 100%);
  transition: opacity 0.3s, visibility 0.3s;
}

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

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

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

.butti-header.header-top-active:hover {
  background: rgba(0, 0, 0, 0.7);
}

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

.butti-header.gnb-active {
  min-height: 28rem;
}

.butti-header.top-menu-active.gnb-active {
  min-height: calc(28rem + 6.6rem);
}

.butti-header.block-active {
  background: #000;
}

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

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

.butti-header .header-top {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #111;
}

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

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

.butti-header .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-header .user-menu li a {
  padding: 2rem 1.2rem;
  color: #e5e5e5;
  text-align: center;
  white-space: nowrap;
}

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

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

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

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

.butti-header .header-title img {
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

.butti-header .header-gnb {
  position: relative;
}

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

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

.butti-header .header-gnblink {
  height: 100%;
  padding: 2.8rem 3rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  font-weight: var(--fw-medium);
}

.butti-header .header-gnblink span {
  position: relative;
}

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

.butti-header .header-sublist {
  width: 100%;
  position: absolute;
  top: 100%;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.butti-header .header-gnb:hover .header-sublist {
  opacity: 1;
  overflow: hidden;
  pointer-events: auto;
  transition: opacity 0.3s 0.3s;
}

.butti-header .header-gnbitem:hover .header-gnblink span::after {
  background: #fff;
  transform: scaleX(1);
}

.butti-header .header-subitem {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.butti-header .header-subitem:hover {
  color: #fff;
}

.butti-header .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-header .header-sublink:hover {
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.butti-header .header-utils img {
  filter: invert(1);
}

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

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

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

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

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

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

.butti-header .header-utils .btn-allmenu .ico-hamburger,
.butti-header .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-header .header-utils .btn-allmenu .ico-hamburger:nth-child(even),
.butti-header .btn-momenu .ico-hamburger:nth-child(2) {
  width: 1.4rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.butti-header .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-header .fullmenu-sublink:hover {
  color: var(--white);
}

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

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

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

@media (max-width: 1120px) {
  .butti-header .header-title a {
    height: 2.4rem;
  }

  .butti-header .header-gnblink {
    padding: 2.8rem 2.4rem;
  }
}

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

  .butti-header.header-top-active:hover {
    background: transparent;
  }

  .butti-header.top-menu-active .header-container {
    padding-top: 0;
  }

  .butti-header.gnb-active,
  .butti-header.top-menu-active.gnb-active {
    min-height: auto;
  }

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

  .butti-header .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-header.block-active .header-gnb {
    height: calc(100vh - 6rem);
    padding-bottom: 19rem;
    overflow-y: auto;
  }

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

  .butti-header .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-header.block-active .header-top {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }

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

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

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

  .butti-header .header-title a {
    width: 8.2rem;
    height: 2.6rem;
  }

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

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

  .butti-header .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-header.top-menu-active .header-gnbitem:first-child .header-gnblink {
    padding-top: 6.8rem;
  }

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

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

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

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

  .butti-header .header-subitem {
    width: 100%;
    text-align: left;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .butti-header .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-header.block-active .header-gnblink {
    align-items: center;
    justify-content: space-between;
  }

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

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

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

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

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

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

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

.main_00 .swiper {
  width: 100vw;
  height: 100%;
}

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

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

.main_00 .contents-slide-group {
  position: absolute;
  text-align: center;
}

.main_00 .textset {
  position: relative;
  margin-bottom: 3rem;
  text-align: left;
}

.main_00 .textset strong {
  color: #fff;
}

.main_00 .btnset {
  font-weight: var(--fw-medium);
}

.main_00 .contents-control {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4.5rem;
  z-index: 20;
}

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

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

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

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

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

.main_00 .swiper-pagination {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5.6rem;
  left: 0;
  bottom: 0;
  margin-right: 1.6rem;
}

.main_00 .swiper-pagination-bullet {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0;
  background-color: transparent;
  opacity: 1;
  border: 2px solid var(--white);
}

.main_00 .swiper-pagination-bullet+.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% + 1.6rem);
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--white);
  border-radius: 50%;
}

.main_00 .swiper-pagination-bullet+.swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% + 3.6rem);
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--white);
  border-radius: 50%;
}

.main_00 .swiper-pagination-bullet-active {
  background-color: var(--white);
}

.main_00 .swiper-button-play {
  display: none;
}

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

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

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

@media (max-width: 1200px) {
  .main_00 .swiper {
    margin-left: -4rem;
    width: calc(100% + 8rem);
  }
}

@media (max-width: 992px) {
  .main_00 .contetns-continaer {
    height: 60rem;
  }

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

  .main_00 .textset {
    margin-bottom: 2rem;
  }

  .main_00 .textset::after {
    top: 3rem;
    max-width: 6rem;
    height: 0.3rem;
  }

  .main_00 .contents-control {
    bottom: 4rem;
  }

  .main_00 .swiper-pagination {
    gap: 0.8rem;
    margin-right: 0.8rem;
  }

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

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

  .main_00 .swiper-pagination-bullet+.swiper-pagination-bullet::before,
  .main_00 .swiper-pagination-bullet+.swiper-pagination-bullet::after {
    content: none;
  }

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

  .main_00 {}
}
/* main_01 */
.main_01 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
}

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

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

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

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

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

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

.main_02 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80rem;
}

.main_02 .videoset {
  width: 100%;
  height: 100%;
}

.main_02 .videoset-button {
  height: 100%;
  text-align: center;
}

.main_02 .videoset-button .videoset-icon {
  cursor: auto;
}

.main_02 .videoset .videoset-tit {
  margin-bottom: 4.2rem;
}

.main_02 .modalset-open-btn {
  cursor: pointer;
}

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

  .main_02 .contents-container {
    height: 50rem;
  }

  .main_02 .videoset,
  .main_02 .videoset-button {
    width: calc(100% + 3.2rem);
    margin-left: -1.6rem;
  }

  .main_02 .videoset .videoset-tit {
    margin-bottom: 3.3rem;
  }
}
/* main_04 */
.main_04 {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 12rem;
  overflow: hidden;
}

.main_04 .contents-inner {
  width: 100%;
}

.main_04 .contents-tit {
  margin-bottom: 8rem;
  text-align: center;
}

.main_04 .cardset-list {
  display: flex;
  gap: 4rem;
}

.main_04 .cardset-item {
  width: calc(100% / 3);
}

.main_04 .cardset-figure {
  width: 11rem;
  height: 7.2rem;
  margin: 0 auto;
}

.main_04 .cardset-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main_04 .cardset-body {
  margin-top: 2.4rem;
  letter-spacing: -0.05rem;
  text-align: center;
}

.main_04 .cardset-tit+.cardset-desc {
  margin-top: 1.2rem;
}

.main_04 .cardset-desc {
  color: #767676;
}

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

  .main_04 .contents-tit {
    margin-bottom: 4rem;
  }

  .main_04 .cardset-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .main_04 .cardset-item {
    width: 100%;
  }

  .main_04 .cardset-figure {
    width: 9rem;
    height: 6rem;
  }

  .main_04 .cardset-body {
    margin-top: 2rem;
  }

  .main_04 .cardset-tit {
    font-size: 2rem;
    line-height: 3rem;
  }

  .main_04 .cardset-tit+.cardset-desc {
    margin-top: 0.8rem;
  }
}
/* course_move */
body {
  position: relative;
}

.course_move {
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 2rem;
  z-index: 99;
  pointer-events: none;
  width: 100%;
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.course_move .contents-container {
  width: 100%;
}

.course_move .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  max-width: 56rem;
  min-height: 8rem;
  border: 1px solid var(--secondary);
  border-radius: 0.6rem;
  background: #fff;
  box-shadow: 0 0 1.6rem rgba(245, 245, 245, 0.025);
  pointer-events: auto;
}

.course_move .contents-inner h2 {
  flex: 1;
  font-weight: var(--fw-medium);
}

.course_move .contents-inner .btnset {
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .course_move .contents-inner {
    gap: 0.8rem;
    padding: 1.6rem 1.2rem;
    min-height: 0;
  }

  .course_move {}
}
/* butti-footer */
.butti-footer {
  position: relative;
  background: #111111;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.butti-footer .footer-container {
  display: flex;
  justify-content: space-between;
}

.butti-footer .footer-left {
  display: flex;
}

.butti-footer .footer-content {
  width: 100%;
  margin-left: 4rem;
}

.butti-footer .footer-logo {
  margin-bottom: 0;
}

.butti-footer .footer-logo img {
  height: 1.8rem;
  object-fit: contain;
}

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

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

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

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

.butti-footer .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-footer .footer-txtgroup {
  margin-top: 1.2rem;
}

.butti-footer .footer-sns {
  display: flex;
  align-items: center;
}

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

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

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

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

.butti-footer .footer-bottom {
  margin-top: 1.2rem;
}

.butti-footer .footer-txt {
  display: flex;
}

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

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

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

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

.butti-footer .footer-txt span {
  color: var(--text-color3);
}

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

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

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

.butti-footer .info-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem;
  border-bottom: 1px solid #e5e5e5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  .butti-footer .footer-container {
    flex-direction: column;
  }

  .butti-footer .footer-left {
    flex-direction: column;
  }

  .butti-footer .footer-content {
    flex-direction: column;
    margin: 2.4rem 0 1.2rem;
  }

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

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

  .butti-footer .footer-txt p+p {
    margin-left: 0;
  }
}
/* course_00 */
.course_00 {
  overflow: hidden;
  position: relative;
  background: url(../images/class.jpg) no-repeat center/cover;
}

.course_00 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

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

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

  .course_00 {}
}
/* course_app */
body {
  position: relative;
}

.course_app {
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 2rem;
  z-index: 99;
  pointer-events: none;
  width: 100%;
  padding-bottom: 0rem;
}

.course_app .contents-container {
  width: 100%;
}

.course_app .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  max-width: 56rem;
  min-height: 8rem;
  border: 1px solid var(--secondary);
  border-radius: 0.6rem;
  background: #fff;
  box-shadow: 0 0 1.6rem rgba(245, 245, 245, 0.025);
  pointer-events: auto;
}

.course_app .contents-inner h2 {
  flex: 1;
  font-weight: var(--fw-medium);
}

.course_app .contents-inner .btnset {
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .course_app .contents-inner {
    gap: 0.8rem;
    padding: 1.6rem 1.2rem;
    min-height: 0;
  }

  .course_app {
    padding-bottom: 0rem;
  }
}
/* course_01 */
.course_01 {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 0rem;
}

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

.course_01 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .course_01 {
    padding-top: 1rem;
    padding-bottom: 0rem;
  }
}
/* course_02 */
.course_02 {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 0rem;
}

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

.course_02 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .course_02 {
    padding-top: 1rem;
    padding-bottom: 0rem;
  }
}
/* course_03 */
.course_03 {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 8rem;
}

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

.course_03 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .course_03 {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
}
/* course_04 */
.course_04 {
  overflow: hidden;
  position: relative;
  padding-top: 0rem;
  padding-bottom: 3rem;
}

.course_04 .contents-inner {
  width: 100%;
}

.course_04 .cardset.cardset-hor {
  align-items: center;
}

.course_04 .cardset.cardset-hor .cardset-figure {
  flex: 1;
  width: auto;
  height: 40rem;
}

.course_04 .cardset.cardset-hor .cardset-body {
  flex: 1;
  margin-left: 4rem;
  padding: 0;
}

.course_04 .cardset.cardset-hor+.cardset.cardset-hor {
  margin-top: 10rem;
}

.course_04 .cardset .cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  color: #777;
  font-weight: var(--fw-regular);
}

.course_04 .cardset .cardset-tit+.cardset-desc,
.cardset .cardset-desc+.cardset-txt {
  margin: 2rem 0 0;
}

@media (max-width: 992px) {
  .course_04 {
    padding-top: 0rem;
    padding-bottom: 2rem;
  }

  .course_04 .cardset.cardset-hor+.cardset.cardset-hor {
    margin-top: 4rem;
  }

  .course_04 .cardset.cardset-hor .cardset-figure {
    width: 100%;
    height: 24rem;
  }

  .course_04 .cardset.cardset-hor .cardset-body {
    margin: 2rem 0 0 0;
    width: 100%;
  }

  .course_04 .cardset.cardset-xl .cardset-tit+.cardset-desc {
    margin-top: 0.8rem;
  }
}
/* course_05 */
.course_05 {
  overflow: hidden;
  position: relative;
  background: url(../images/white_line.jpg) no-repeat center/cover;
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.course_05 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
}

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

@media (max-width: 992px) {
  .course_05 .contents-container {
    height: 5rem;
  }

  .course_05 {
    padding-top: 0rem;
    background: url(../images/white_line.jpg) no-repeat center / cover;
  }
}
/* course_06 */
.course_06 {
  overflow: hidden;
  position: relative;
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.course_06 .textset {
  margin-bottom: 4rem;
}

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

.course_06 .cardset .cardset-figure {
  width: 100%;
  height: 43.2rem;
}

.course_06 .cardset .cardset-body {
  padding: 4rem 0 0 0;
}

.course_06 .cardset .cardset-tit {
  font-weight: var(--fw-medium);
}

.course_06 .cardset .cardset-tit+.cardset-desc {
  margin-top: 1.6rem;
  color: #111;
}

.course_06 .cardset .cardset-desc {
  display: block;
}

.course_06 .contents-button {
  margin: 6rem 0;
  text-align: center;
}

.course_06 .contents-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.course_06 .contents-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.course_06 .contents-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: var(--fw-bold);
}

.course_06 .contents-link.contents-prev::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../icons/ico_arrow2_left_black.svg);
}

.course_06 .contents-link.contents-next::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../icons/ico_arrow2_right_black.svg);
}

.course_06 .contents-item span {
  color: #777777;
}

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

  .course_06 .contents-button {
    margin: 4rem 0 6rem 0;
  }

  .course_06 .contents-list {
    padding-top: 1.6rem;
  }

  .course_06 .contents-item span {
    display: none;
  }
}
/* course_07 */
.course_07 {
  overflow: hidden;
  position: relative;
  padding-bottom: 0rem;
  padding-top: 5rem;
}

.course_07 .contents-inner {
  width: 100%;
}

.course_07 h2 {
  margin-bottom: 3rem;
}

.course_07 .link-area {
  display: flex;
  border: 1px solid var(--border-color);
}

.course_07 .link {
  flex: 1;
}

.course_07 .link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  padding: 3.5rem;
}

.course_07 .link:not(:first-child) a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.1rem;
  height: calc(100% - 7rem);
  background: var(--border-color);
}

.course_07 .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;
}

.course_07 .link a:hover .thumb {
  background: var(--primary);
}

.course_07 .thumb img {
  width: 4.1rem;
  height: 4.1rem;
  object-fit: contain;
  transition: filter .3s;
}

.course_07 .link a:hover img {
  filter: invert(1) brightness(2);
}

.course_07 .desc strong {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: color .3s;
}

.course_07 .link a:hover strong {
  color: var(--primary);
}

.course_07 .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);
}

.course_07 .link i {
  display: none;
  margin-left: auto;
}

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

  .course_07 h2 {
    text-align: center;
  }

  .course_07 .link-area {
    flex-direction: column;
  }

  .course_07 .link a {
    justify-content: flex-start;
    padding: 1.5rem;
  }

  .course_07 .link+.link {
    border-top: 1px solid var(--border-color);
  }

  .course_07 .link:not(:first-child) a::before {
    content: none;
  }

  .course_07 .thumb {
    width: 4.5rem;
    height: 4.5rem;
  }

  .course_07 .thumb img {
    width: 3.1rem;
    height: 3.1rem;
  }

  .course_07 .link i {
    display: block;
  }
}
/* course_08 */
.course_08 {
  overflow: hidden;
  position: relative;
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.course_08 .contents-inner {
  width: 100%;
}

.course_08 .thumb-area {
  display: flex;
  justify-content: center;
  width: 100%;
}

.course_08 .imageset {
  width: 100vw;
  height: 50rem;
}

.course_08 .imageset img {
  width: 100vw;
}

.course_08 .textset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9rem;
  margin-top: 8rem;
}

.course_08 .textset-cont p {
  color: #777777;
  font-weight: var(--fw-regular);
}

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

  .course_08 .thumb-area {
    display: block;
  }

  .course_08 .imageset {
    margin-left: -1.6rem;
    width: calc(100% + 3.2rem);
    height: 34rem;
  }

  .course_08 .imageset img {
    width: 100%;
  }

  .course_08 .textset {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
  }
}
/* good_00 */
.good_00 {
  overflow: hidden;
  position: relative;
  background: url(../images/good.jpg) no-repeat center/cover;
}

.good_00 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

.good_00 h2 {
  color: var(--white);
  text-align: center;
}

@media (max-width: 992px) {
  .good_00 .contents-container {
    height: 26rem;
  }

  .good_00 {}
}
/* good_01 */
.good_01 {
  overflow: hidden;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 0rem;
}

.good_01 .list-area {
  width: 100%;
}

.good_01 .item {
  display: flex;
  align-items: flex-end;
  gap: 4rem;
}

.good_01 .item:nth-child(even) {
  flex-direction: row-reverse;
}

.good_01 .item+.item {
  margin-top: 10rem;
}

.good_01 .thumb {
  flex: 1;
  position: relative;
  margin: 0;
  height: 70rem;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.2), transparent);
}

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

.good_01 .thumb figcaption {
  position: absolute;
  left: 4rem;
  bottom: 3.8rem;
  color: var(--white);
}

.good_01 .desc {
  flex: 1;
}

.good_01 .desc p {
  margin-top: 3rem;
  color: #777777;
}

@media (max-width: 992px) {
  .good_01 {
    padding-top: 1rem;
    padding-bottom: 0rem;
  }

  .good_01 .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .good_01 .item:nth-child(even) {
    flex-direction: column;
  }

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

  .good_01 .thumb,
  .good_01 .item {
    flex: none;
    width: 100%;
  }

  .good_01 .thumb {
    height: 40rem;
  }

  .good_01 .thumb figcaption {
    left: 2rem;
    bottom: 2rem;
  }

  .good_01 .desc p {
    margin-top: 2rem;
  }
}
/* good_02 */
.good_02 {
  overflow: hidden;
  position: relative;
  padding-top: 3rem;
  padding-bottom: 0rem;
}

.good_02 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80rem;
}

.good_02 .videoset {
  width: 100%;
  height: 100%;
}

.good_02 .videoset-button {
  height: 100%;
  text-align: center;
}

.good_02 .videoset-button .videoset-icon {
  cursor: auto;
}

.good_02 .videoset .videoset-tit {
  margin-bottom: 4.2rem;
}

.good_02 .modalset-open-btn {
  cursor: pointer;
}

@media (max-width: 992px) {
  .good_02 {
    padding-top: 2rem;
    padding-bottom: 0rem;
  }

  .good_02 .contents-container {
    height: 50rem;
  }

  .good_02 .videoset,
  .good_02 .videoset-button {
    width: calc(100% + 3.2rem);
    margin-left: -1.6rem;
  }

  .good_02 .videoset .videoset-tit {
    margin-bottom: 3.3rem;
  }
}
/* good_03 */
.good_03 {
  overflow: hidden;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 0rem;
}

.good_03 .list-area {
  width: 100%;
}

.good_03 .item {
  display: flex;
  align-items: flex-end;
  gap: 4rem;
}

.good_03 .item:nth-child(even) {
  flex-direction: row-reverse;
}

.good_03 .item+.item {
  margin-top: 10rem;
}

.good_03 .thumb {
  flex: 1;
  position: relative;
  margin: 0;
  height: 70rem;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.2), transparent);
}

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

.good_03 .thumb figcaption {
  position: absolute;
  left: 4rem;
  bottom: 3.8rem;
  color: var(--white);
}

.good_03 .desc {
  flex: 1;
}

.good_03 .desc p {
  margin-top: 3rem;
  color: #777777;
}

@media (max-width: 992px) {
  .good_03 {
    padding-top: 1rem;
    padding-bottom: 0rem;
  }

  .good_03 .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .good_03 .item:nth-child(even) {
    flex-direction: column;
  }

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

  .good_03 .thumb,
  .good_03 .item {
    flex: none;
    width: 100%;
  }

  .good_03 .thumb {
    height: 40rem;
  }

  .good_03 .thumb figcaption {
    left: 2rem;
    bottom: 2rem;
  }

  .good_03 .desc p {
    margin-top: 2rem;
  }
}
/* good_04 */
.good_04 {
  overflow: hidden;
  position: relative;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.good_04 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80rem;
}

.good_04 .videoset {
  width: 100%;
  height: 100%;
}

.good_04 .videoset-button {
  height: 100%;
  text-align: center;
}

.good_04 .videoset-button .videoset-icon {
  cursor: auto;
}

.good_04 .videoset .videoset-tit {
  margin-bottom: 4.2rem;
}

.good_04 .modalset-open-btn {
  cursor: pointer;
}

@media (max-width: 992px) {
  .good_04 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .good_04 .contents-container {
    height: 50rem;
  }

  .good_04 .videoset,
  .good_04 .videoset-button {
    width: calc(100% + 3.2rem);
    margin-left: -1.6rem;
  }

  .good_04 .videoset .videoset-tit {
    margin-bottom: 3.3rem;
  }
}
/* curr_00 */
.curr_00 {
  overflow: hidden;
  position: relative;
  background: url(../images/curr.jpg) no-repeat center/cover;
}

.curr_00 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

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

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

  .curr_00 {}
}
/* curr_01 */
.curr_01 {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 1rem;
  overflow: hidden;
}

.curr_01 .textset {
  text-align: center;
}

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

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

@media (max-width: 576px) {
  .curr_01 .textset .textset-desc br {
    display: none;
  }
}
/* curr_02 */
.curr_02 {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background: #E8E8E8FF;
}

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

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

@media (max-width: 992px) {
  .curr_02 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

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

  .curr_02 .textset-desc br {
    display: none;
  }
}
/* curr_03 */
.curr_03 {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

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

.curr_03 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .curr_03 {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
}
/* curr_04 */
.curr_04 {
  overflow: hidden;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f7f2ef;
}

.curr_04 .contents-inner {
  display: flex;
  gap: 14rem;
  position: relative;
  width: 100%;
}

.curr_04 .desc-area {
  flex: 1;
  position: relative;
}

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

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

.curr_04 .desc-area strong {
  display: block;
  margin: 2.8rem 0 2rem;
}

.curr_04 .desc-area p {
  margin-bottom: 4rem;
  color: #767676;
  font-weight: var(--fw-regular);
}

.curr_04 .video-area {
  flex: 1;
  position: relative;
  min-height: 56rem;
}

.curr_04 .videoset {
  position: absolute;
  width: calc(50vw - 2rem);
  height: 100%;
}

.curr_04 .videoset-button {
  height: 100%;
  text-align: center;
}

.curr_04 .videoset-button .videoset-icon {
  cursor: auto;
}

.curr_04 .modalset-open-btn {
  cursor: pointer;
}

@media (max-width: 1200px) {
  .curr_04 .videoset {
    width: calc(100% + 4rem);
  }
}

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

  .curr_04 .contents-inner {
    flex-direction: column;
    gap: 4rem;
  }

  .curr_04 .video-area {
    flex: none;
    width: 100%;
    height: 19rem;
    min-height: 0;
  }

  .curr_04 .videoset {
    position: static;
    width: 100%;
  }

  .curr_04 .modalset-open-btn {
    width: 5rem;
    height: 5rem;
  }

  .curr_04 .desc-area {
    flex: none;
  }

  .curr_04 .desc-area h2 {
    padding-bottom: 2.5rem;
  }

  .curr_04 .desc-area h2::after {
    width: 8rem;
  }

  .curr_04 .desc-area strong {
    margin: 1.8rem 0 1.3rem;
  }

  .curr_04 .desc-area p {
    margin-bottom: 2.4rem;
  }
}
/* curr_05 */
.curr_05 {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

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

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

@media (max-width: 992px) {
  .curr_05 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

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

  .curr_05 .textset-desc br {
    display: none;
  }
}
/* curr_06 */
.curr_06 {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

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

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

@media (max-width: 992px) {
  .curr_06 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

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

  .curr_06 .textset-desc br {
    display: none;
  }
}
/* curr_07 */
.curr_07 {
  overflow: hidden;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.curr_07 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80rem;
}

.curr_07 .videoset {
  width: 100%;
  height: 100%;
}

.curr_07 .videoset-button {
  height: 100%;
  text-align: center;
}

.curr_07 .videoset-button .videoset-icon {
  cursor: auto;
}

.curr_07 .videoset .videoset-tit {
  margin-bottom: 4.2rem;
}

.curr_07 .modalset-open-btn {
  cursor: pointer;
}

@media (max-width: 992px) {
  .curr_07 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .curr_07 .contents-container {
    height: 50rem;
  }

  .curr_07 .videoset,
  .curr_07 .videoset-button {
    width: calc(100% + 3.2rem);
    margin-left: -1.6rem;
  }

  .curr_07 .videoset .videoset-tit {
    margin-bottom: 3.3rem;
  }
}
/* curr_08 */
.curr_08 {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

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

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

@media (max-width: 992px) {
  .curr_08 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

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

  .curr_08 .textset-desc br {
    display: none;
  }
}
/* curr_09 */
.curr_09 {
  overflow: hidden;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.curr_09 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80rem;
}

.curr_09 .videoset {
  width: 100%;
  height: 100%;
}

.curr_09 .videoset-button {
  height: 100%;
  text-align: center;
}

.curr_09 .videoset-button .videoset-icon {
  cursor: auto;
}

.curr_09 .videoset .videoset-tit {
  margin-bottom: 4.2rem;
}

.curr_09 .modalset-open-btn {
  cursor: pointer;
}

@media (max-width: 992px) {
  .curr_09 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .curr_09 .contents-container {
    height: 50rem;
  }

  .curr_09 .videoset,
  .curr_09 .videoset-button {
    width: calc(100% + 3.2rem);
    margin-left: -1.6rem;
  }

  .curr_09 .videoset .videoset-tit {
    margin-bottom: 3.3rem;
  }
}
/* oneday_move */
body {
  position: relative;
}

.oneday_move {
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 2rem;
  z-index: 99;
  pointer-events: none;
  width: 100%;
  padding-bottom: 0rem;
}

.oneday_move .contents-container {
  width: 100%;
}

.oneday_move .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  max-width: 56rem;
  min-height: 8rem;
  border: 1px solid var(--secondary);
  border-radius: 0.6rem;
  background: #fff;
  box-shadow: 0 0 1.6rem rgba(245, 245, 245, 0.025);
  pointer-events: auto;
}

.oneday_move .contents-inner h2 {
  flex: 1;
  font-weight: var(--fw-medium);
}

.oneday_move .contents-inner .btnset {
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .oneday_move .contents-inner {
    gap: 0.8rem;
    padding: 1.6rem 1.2rem;
    min-height: 0;
  }

  .oneday_move {}
}
/* private_00 */
.private_00 {
  overflow: hidden;
  position: relative;
  background: url(../images/pri.jpg) no-repeat center/cover;
}

.private_00 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

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

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

  .private_00 {}
}
/* private_01 */
.private_01 {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.private_01 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .private_01 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
/* private_02 */
.private_02 {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
}

.private_02 .textset {
  text-align: center;
}

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

@media (max-width: 992px) {
  .private_02 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

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

.private_03 .textset {
  text-align: center;
}

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

@media (max-width: 992px) {
  .private_03 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

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

.private_04 .textset .textset-subtit {
  margin-top: 3rem;
}

.private_04 .textset .textset-desc {
  margin-top: 1rem;
  color: var(--text-color3);
}

@media (max-width: 992px) {
  .private_04 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .private_04 .textset .textset-subtit {
    margin-top: 2rem;
  }
}
/* private_05 */
.private_05 {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
}

.private_05 .textset {
  text-align: center;
}

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

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

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

.private_06 .contents-inner {
  width: 100%;
}

.private_06 h2 {
  margin-bottom: 3rem;
}

.private_06 .link-area {
  display: flex;
  border: 1px solid var(--border-color);
}

.private_06 .link {
  flex: 1;
}

.private_06 .link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  padding: 3.5rem;
}

.private_06 .link:not(:first-child) a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.1rem;
  height: calc(100% - 7rem);
  background: var(--border-color);
}

.private_06 .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;
}

.private_06 .link a:hover .thumb {
  background: var(--primary);
}

.private_06 .thumb img {
  width: 4.1rem;
  height: 4.1rem;
  object-fit: contain;
  transition: filter .3s;
}

.private_06 .link a:hover img {
  filter: invert(1) brightness(2);
}

.private_06 .desc strong {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: color .3s;
}

.private_06 .link a:hover strong {
  color: var(--primary);
}

.private_06 .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);
}

.private_06 .link i {
  display: none;
  margin-left: auto;
}

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

  .private_06 h2 {
    text-align: center;
  }

  .private_06 .link-area {
    flex-direction: column;
  }

  .private_06 .link a {
    justify-content: flex-start;
    padding: 1.5rem;
  }

  .private_06 .link+.link {
    border-top: 1px solid var(--border-color);
  }

  .private_06 .link:not(:first-child) a::before {
    content: none;
  }

  .private_06 .thumb {
    width: 4.5rem;
    height: 4.5rem;
  }

  .private_06 .thumb img {
    width: 3.1rem;
    height: 3.1rem;
  }

  .private_06 .link i {
    display: block;
  }
}
/* bohe_00 */
.bohe_00 {
  overflow: hidden;
  position: relative;
  background: url(../images/bohe.jpg) no-repeat center/cover;
}

.bohe_00 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

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

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

  .bohe_00 {}
}
/* bohe_01 */
.bohe_01 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.bohe_01 .contents-inner {
  width: 100%;
}

.bohe_01 .cardset.cardset-hor {
  align-items: center;
}

.bohe_01 .cardset.cardset-hor .cardset-figure {
  flex: 1;
  width: auto;
  height: 40rem;
}

.bohe_01 .cardset.cardset-hor .cardset-body {
  flex: 1;
  margin-left: 4rem;
  padding: 0;
}

.bohe_01 .cardset.cardset-hor+.cardset.cardset-hor {
  margin-top: 10rem;
}

.bohe_01 .cardset .cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  color: #777;
  font-weight: var(--fw-regular);
}

.bohe_01 .cardset .cardset-tit+.cardset-desc,
.cardset .cardset-desc+.cardset-txt {
  margin: 2rem 0 0;
}

@media (max-width: 992px) {
  .bohe_01 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .bohe_01 .cardset.cardset-hor+.cardset.cardset-hor {
    margin-top: 4rem;
  }

  .bohe_01 .cardset.cardset-hor .cardset-figure {
    width: 100%;
    height: 24rem;
  }

  .bohe_01 .cardset.cardset-hor .cardset-body {
    margin: 2rem 0 0 0;
    width: 100%;
  }

  .bohe_01 .cardset.cardset-xl .cardset-tit+.cardset-desc {
    margin-top: 0.8rem;
  }
}
/* bohe_02 */
.bohe_02 {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 5rem;
}

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

.bohe_02 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .bohe_02 {
    padding-top: 0rem;
    padding-bottom: 3rem;
  }
}
/* personal-IzmclPuBkQ */
.personal-IzmclPuBkQ {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.personal-IzmclPuBkQ .textset {
  margin-bottom: 4rem;
}

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

.personal-IzmclPuBkQ .contents-map iframe {
  width: 100%;
  height: 100%;
}

.personal-IzmclPuBkQ .contents-list {
  display: flex;
  margin-top: 4rem;
}

.personal-IzmclPuBkQ .contents-item:first-child {
  width: 50%;
}

.personal-IzmclPuBkQ .contents-item {
  width: 25%;
}

.personal-IzmclPuBkQ .contents-ico {
  display: flex;
  align-items: center;
}

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

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

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

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

  .personal-IzmclPuBkQ .contents-list {
    flex-direction: column;
    gap: 4rem;
  }

  .personal-IzmclPuBkQ .contents-item {
    width: 100%;
  }

  .personal-IzmclPuBkQ {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
/* ciny_00 */
.ciny_00 {
  overflow: hidden;
  position: relative;
  background: url(../images/ciny.jpg) no-repeat center/cover;
}

.ciny_00 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

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

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

  .ciny_00 {}
}
/* ciny_01 */
.ciny_01 {
  overflow: hidden;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 0rem;
}

.ciny_01 .contents-inner {
  width: 100%;
}

.ciny_01 .cardset.cardset-hor {
  align-items: center;
}

.ciny_01 .cardset.cardset-hor .cardset-figure {
  flex: 1;
  width: auto;
  height: 40rem;
}

.ciny_01 .cardset.cardset-hor .cardset-body {
  flex: 1;
  margin-left: 4rem;
  padding: 0;
}

.ciny_01 .cardset.cardset-hor+.cardset.cardset-hor {
  margin-top: 10rem;
}

.ciny_01 .cardset .cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  color: #777;
  font-weight: var(--fw-regular);
}

.ciny_01 .cardset .cardset-tit+.cardset-desc,
.cardset .cardset-desc+.cardset-txt {
  margin: 2rem 0 0;
}

@media (max-width: 992px) {
  .ciny_01 {
    padding-top: 2rem;
    padding-bottom: 0rem;
  }

  .ciny_01 .cardset.cardset-hor+.cardset.cardset-hor {
    margin-top: 4rem;
  }

  .ciny_01 .cardset.cardset-hor .cardset-figure {
    width: 100%;
    height: 24rem;
  }

  .ciny_01 .cardset.cardset-hor .cardset-body {
    margin: 2rem 0 0 0;
    width: 100%;
  }

  .ciny_01 .cardset.cardset-xl .cardset-tit+.cardset-desc {
    margin-top: 0.8rem;
  }
}
/* ciny_02 */
.ciny_02 {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 2rem;
}

.ciny_02 .list-area {
  width: 100%;
}

.ciny_02 .item {
  display: flex;
  align-items: flex-end;
  gap: 4rem;
}

.ciny_02 .item:nth-child(even) {
  flex-direction: row-reverse;
}

.ciny_02 .item+.item {
  margin-top: 10rem;
}

.ciny_02 .thumb {
  flex: 1;
  position: relative;
  margin: 0;
  height: 70rem;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.2), transparent);
}

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

.ciny_02 .thumb figcaption {
  position: absolute;
  left: 4rem;
  bottom: 3.8rem;
  color: var(--white);
}

.ciny_02 .desc {
  flex: 1;
}

.ciny_02 .desc p {
  margin-top: 3rem;
  color: #777777;
}

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

  .ciny_02 .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .ciny_02 .item:nth-child(even) {
    flex-direction: column;
  }

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

  .ciny_02 .thumb,
  .ciny_02 .item {
    flex: none;
    width: 100%;
  }

  .ciny_02 .thumb {
    height: 40rem;
  }

  .ciny_02 .thumb figcaption {
    left: 2rem;
    bottom: 2rem;
  }

  .ciny_02 .desc p {
    margin-top: 2rem;
  }
}
/* ciny_03 */
.ciny_03 {
  overflow: hidden;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.ciny_03 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80rem;
}

.ciny_03 .videoset {
  width: 100%;
  height: 100%;
}

.ciny_03 .videoset-button {
  height: 100%;
  text-align: center;
}

.ciny_03 .videoset-button .videoset-icon {
  cursor: auto;
}

.ciny_03 .videoset .videoset-tit {
  margin-bottom: 4.2rem;
}

.ciny_03 .modalset-open-btn {
  cursor: pointer;
}

@media (max-width: 992px) {
  .ciny_03 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .ciny_03 .contents-container {
    height: 50rem;
  }

  .ciny_03 .videoset,
  .ciny_03 .videoset-button {
    width: calc(100% + 3.2rem);
    margin-left: -1.6rem;
  }

  .ciny_03 .videoset .videoset-tit {
    margin-bottom: 3.3rem;
  }
}
/* perfo_00 */
.perfo_00 {
  overflow: hidden;
  position: relative;
  background: url(../images/perfo.jpg) no-repeat center/cover;
}

.perfo_00 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

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

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

  .perfo_00 {}
}
/* perfo_01 */
.perfo_01 {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.perfo_01 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .perfo_01 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
/* perfo_02 */
.perfo_02 {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
}

.perfo_02 .textset {
  text-align: center;
}

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

@media (max-width: 992px) {
  .perfo_02 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

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

.perfo_03 .textset {
  text-align: center;
}

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

@media (max-width: 992px) {
  .perfo_03 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .perfo_03 .textset .textset-desc br {
    display: none;
  }
}
/* perfo_04 */
.perfo_04 {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.perfo_04 .textset {
  text-align: center;
}

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

@media (max-width: 992px) {
  .perfo_04 {
    padding-top: 0rem;
    padding-bottom: 1rem;
  }
}

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

.perfo_05 .contents-inner {
  width: 100%;
}

.perfo_05 h2 {
  margin-bottom: 3rem;
}

.perfo_05 .link-area {
  display: flex;
  border: 1px solid var(--border-color);
}

.perfo_05 .link {
  flex: 1;
}

.perfo_05 .link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  padding: 3.5rem;
}

.perfo_05 .link:not(:first-child) a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.1rem;
  height: calc(100% - 7rem);
  background: var(--border-color);
}

.perfo_05 .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;
}

.perfo_05 .link a:hover .thumb {
  background: var(--primary);
}

.perfo_05 .thumb img {
  width: 4.1rem;
  height: 4.1rem;
  object-fit: contain;
  transition: filter .3s;
}

.perfo_05 .link a:hover img {
  filter: invert(1) brightness(2);
}

.perfo_05 .desc strong {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: color .3s;
}

.perfo_05 .link a:hover strong {
  color: var(--primary);
}

.perfo_05 .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);
}

.perfo_05 .link i {
  display: none;
  margin-left: auto;
}

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

  .perfo_05 h2 {
    text-align: center;
  }

  .perfo_05 .link-area {
    flex-direction: column;
  }

  .perfo_05 .link a {
    justify-content: flex-start;
    padding: 1.5rem;
  }

  .perfo_05 .link+.link {
    border-top: 1px solid var(--border-color);
  }

  .perfo_05 .link:not(:first-child) a::before {
    content: none;
  }

  .perfo_05 .thumb {
    width: 4.5rem;
    height: 4.5rem;
  }

  .perfo_05 .thumb img {
    width: 3.1rem;
    height: 3.1rem;
  }

  .perfo_05 .link i {
    display: block;
  }
}
/* perfo_06 */
.perfo_06 {
  overflow: hidden;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.perfo_06 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80rem;
}

.perfo_06 .videoset {
  width: 100%;
  height: 100%;
}

.perfo_06 .videoset-button {
  height: 100%;
  text-align: center;
}

.perfo_06 .videoset-button .videoset-icon {
  cursor: auto;
}

.perfo_06 .videoset .videoset-tit {
  margin-bottom: 4.2rem;
}

.perfo_06 .modalset-open-btn {
  cursor: pointer;
}

@media (max-width: 992px) {
  .perfo_06 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .perfo_06 .contents-container {
    height: 50rem;
  }

  .perfo_06 .videoset,
  .perfo_06 .videoset-button {
    width: calc(100% + 3.2rem);
    margin-left: -1.6rem;
  }

  .perfo_06 .videoset .videoset-tit {
    margin-bottom: 3.3rem;
  }
}
/* faq_00 */
.faq_00 {
  overflow: hidden;
  position: relative;
  background: url(../images/faq.jpg) no-repeat center/cover;
}

.faq_00 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

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

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

  .faq_00 {}
}
/* faq_01 */
.faq_01 {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

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

.faq_01 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .faq_01 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
/* faq_02 */
.faq_02 {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 12rem;
  overflow: hidden;
}

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

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

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

.faq_02 .pagiset {
  margin-top: 6rem;
}

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

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

  .faq_02 .pagiset .pagiset-link {
    width: 3.2rem;
    height: 3.2rem;
  }
}
/* map_00 */
.map_00 {
  overflow: hidden;
  position: relative;
  background: url(../images/class.jpg) no-repeat center/cover;
}

.map_00 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

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

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

  .map_00 {}
}
/* map_01 */
.map_01 {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

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

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

@media (max-width: 992px) {
  .map_01 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

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

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

  .map_01 .textset-desc br {
    display: none;
  }
}
/* map_02 */
.map_02 {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

.map_02 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .map_02 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
/* personal-oVMCinu4jj */
.personal-oVMCinu4jj {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
}

.personal-oVMCinu4jj .textset {
  margin-bottom: 4rem;
}

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

.personal-oVMCinu4jj .contents-map iframe {
  width: 100%;
  height: 100%;
}

.personal-oVMCinu4jj .contents-list {
  display: flex;
  margin-top: 4rem;
}

.personal-oVMCinu4jj .contents-item:first-child {
  width: 50%;
}

.personal-oVMCinu4jj .contents-item {
  width: 25%;
}

.personal-oVMCinu4jj .contents-ico {
  display: flex;
  align-items: center;
}

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

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

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

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

  .personal-oVMCinu4jj .contents-list {
    flex-direction: column;
    gap: 4rem;
  }

  .personal-oVMCinu4jj .contents-item {
    width: 100%;
  }

  .personal-oVMCinu4jj {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
/* map_03 */
.map_03 {
  overflow: hidden;
  position: relative;
  padding-top: 0rem;
  padding-bottom: 2rem;
}

.map_03 .contents-container {
  display: flex;
  flex-direction: column;
}

.map_03 .contents-inner {
  width: 100%;
}

.map_03 .cardset {
  width: calc(50% + 24rem);
}

.map_03 .cardset+.cardset {
  margin: 10rem 0 0 auto;
}

.map_03 .cardset-figure {
  height: 56rem;
}

.map_03 .cardset-body {
  margin-top: 4rem;
  padding: 0;
}

.map_03 .cardset-tit+.cardset-desc {
  overflow: visible;
  -webkit-line-clamp: inherit;
  margin: 2.2rem 0 0 0;
  color: #777777;
}

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

  .map_03 .cardset {
    width: 100%;
  }

  .map_03 .cardset-figure {
    height: 29rem;
  }

  .map_03 .cardset-body {
    margin-top: 2rem;
  }

  .map_03 .cardset-body br {
    display: none;
  }

  .map_03 .cardset-tit+.cardset-desc {
    margin-top: 1.5rem;
  }
}
/* oneday_00 */
.oneday_00 {
  overflow: hidden;
  position: relative;
  background: url(../images/oneday.jpg) no-repeat center/cover;
}

.oneday_00 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

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

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

  .oneday_00 {}
}
/* oneday_app */
body {
  position: relative;
}

.oneday_app {
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 2rem;
  z-index: 99;
  pointer-events: none;
  width: 100%;
  padding-bottom: 0rem;
}

.oneday_app .contents-container {
  width: 100%;
}

.oneday_app .contents-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  max-width: 56rem;
  min-height: 8rem;
  border: 1px solid var(--secondary);
  border-radius: 0.6rem;
  background: #fff;
  box-shadow: 0 0 1.6rem rgba(245, 245, 245, 0.025);
  pointer-events: auto;
}

.oneday_app .contents-inner h2 {
  flex: 1;
  font-weight: var(--fw-medium);
}

.oneday_app .contents-inner .btnset {
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .oneday_app .contents-inner {
    gap: 0.8rem;
    padding: 1.6rem 1.2rem;
    min-height: 0;
  }

  .oneday_app {
    padding-bottom: 0rem;
  }
}
/* oneday_01 */
.oneday_01 {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 0rem;
}

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

.oneday_01 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .oneday_01 {
    padding-top: 1rem;
    padding-bottom: 0rem;
  }
}
/* oneday_02 */
.oneday_02 {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 0rem;
}

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

.oneday_02 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .oneday_02 {
    padding-top: 1rem;
    padding-bottom: 0rem;
  }
}
/* oneday_03 */
.oneday_03 {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 0rem;
}

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

.oneday_03 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .oneday_03 {
    padding-top: 2rem;
    padding-bottom: 0rem;
  }
}
/* ddd_00 */
.ddd_00 {
  overflow: hidden;
  position: relative;
  background: url("../images/ddd_m.jpg") no-repeat center/cover;
}

.ddd_00 .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48rem;
}

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

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

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

.ddd_01 .contents-inner {
  display: flex;
  gap: 14rem;
  position: relative;
  width: 100%;
}

.ddd_01 .desc-area {
  flex: 1;
  position: relative;
}

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

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

.ddd_01 .desc-area span {
  display: block;
  margin: 2.8rem 0 1rem;
  font-weight: var(--fw-medium);
}

.ddd_01 .desc-area strong {
  font-weight: var(--fw-medium);
}

.ddd_01 .desc-area p {
  margin: 2rem 0 4rem;
  color: #767676;
  font-weight: var(--fw-regular);
}

.ddd_01 .thumb-area {
  flex: 1 1 10rem;
  height: 82rem;
}

.ddd_01 .thumb-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ddd_01 .wander-img {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  width: 50vw;
  max-width: 90rem;
  height: 32.8rem;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .ddd_01 .wander-img {
    width: calc(100% + 4rem);
  }
}

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

  .ddd_01 .contents-inner {
    flex-direction: column;
    gap: 4rem;
  }

  .ddd_01 .thumb-area {
    flex: none;
    margin-left: -1.6rem;
    width: calc(100% + 3.2rem);
    height: 100%;
  }

  .ddd_01 .thumb-area img {
    margin-right: -1.6rem;
  }

  .ddd_01 .desc-area {
    flex: none;
    position: static;
  }

  .ddd_01 .desc-area h2 {
    padding-bottom: 2.5rem;
  }

  .ddd_01 .desc-area h2::after {
    width: 8rem;
  }

  .ddd_01 .desc-area span {
    margin: 1.8rem 0 1.3rem;
  }

  .ddd_01 .desc-area p {
    margin: 1.2rem 0 2.4rem;
  }

  .ddd_01 .wander-img {
    bottom: -15rem;
    right: -1.6rem;
    transform: none;
    width: calc(100% + 3.2rem);
    max-width: none;
    height: 11rem;
  }
}
/* ddd_02 */
.ddd_02 {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 12rem;
}

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

.ddd_02 .textset .textset-tit {
  font-weight: 400;
}

@media (max-width: 992px) {
  .ddd_02 {
    padding-top: 1rem;
    padding-bottom: 12rem;
  }
}