@charset "utf-8";

/* header */
.header {
  position: fixed !important;
  top: 0;
  z-index: 200;
  width: 100%;
  background: var(--white);
}

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

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

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

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

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

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

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

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

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

.header .header-title {
  display: flex;
  margin-bottom: 0;
}

.header .header-title a {
  height: 2.4rem;
}

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

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

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

.header .header-gnblink {
  height: 100%;
  padding: 2.8rem 3rem;
  text-align: center;
  white-space: nowrap;
  color: var(--black);
}

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

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

.header .header-sublist {
  min-height: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  transition: opacity 0.3s;
  padding: 1rem;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: 0.4rem;
  background: var(--white);
  box-shadow: 1px 1px 3rem 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(3rem);
}

.header .header-gnbitem:has(.header-sublist .header-subitem):hover .header-sublist {
  min-height: auto;
  opacity: 1;
  overflow: hidden;
  pointer-events: auto;
}

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

.header .header-subitem {
  width: 100%;
  min-width: 10rem;
  overflow: hidden;
}

.header .header-sublink {
  width: 100%;
  padding: 1rem 1.4rem;
  transition: color 0.2s, background 0.2s;
  will-change: color, background;
  border-radius: 0.4rem;
}

.header .header-sublink:hover {
  background: #f8f9fb;
  color: var(--black);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1200px) {
  .header .user-menu {
    padding: 0 4rem;
  }
}

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

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

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

  .header.block-active {
    min-height: 100vh;
  }

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

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

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

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

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

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

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

  .header .header-title a {
    width: 8.4rem;
    height: 2rem;
  }

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

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

  .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 rgba(var(--black-rgb), 0.2);
  }

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

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

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

  .header .header-sublist {
    display: none;
    position: relative;
    left: 0;
    transform: none;
    opacity: 1;
    padding: 1.8rem 0 2rem 0;
    box-shadow: none;
    background: none;
  }

  .header .header-gnbitem.item-active .header-gnblink {
    border-bottom: 1px solid var(--black);
  }

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

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

  .header .header-sublink {
    padding: 0;
    color: rgba(var(--black-rgb), 0.5);
  }

  .header .header-sublink:active {
    color: var(--black);
  }

  .header .header-sublink:hover {
    background: none;
    color: var(--black);
  }

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

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

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

  .header .header-utils .button .btnset {
    white-space: nowrap;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iromain_slide .contents-container:not(.fullscreen) {
  height: 76rem;
}

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

.iromain_slide .swiper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100%;
}

.iromain_slide .swiper-slide {
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 16rem;
}

.iromain_slide .thumb {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iromain_slide .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(var(--black-rgb), 0.2);
  pointer-events: none;
}

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

.iromain_slide .textset {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
}

.iromain_slide .container-lg .textset {
  max-width: 144rem;
}

.iromain_slide .container-md .textset {
  max-width: 128rem;
}

.iromain_slide .container-sm .textset {
  max-width: 102.4rem;
}

.iromain_slide .textset .textset-tit,
.iromain_slide .textset .textset-desc {
  color: var(--white);
}

.iromain_slide .textset .textset-tit {
  font-weight: var(--fw-regular);
}

.iromain_slide .textset .textset-desc {
  margin: 0.4rem 0 4rem;
  display: block;
}

.iromain_slide .textset .btnset {
  margin: 0;
}

.iromain_slide .fixed-area {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  position: absolute;
  left: 0;
  z-index: 1;
  width: auto;
  padding: 0 4rem;
}

.iromain_slide .btn-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.iromain_slide .btn-wrap button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: var(--white);
}

.iromain_slide .swiper-progress {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iromain_slide .swiper-progress button {
  display: none;
  position: relative;
  z-index: 1;
}

.iromain_slide .btn-pause::before {
  transform: translateX(0.04rem);
}

.iromain_slide .btn-play::before {
  transform: translateX(0.1rem);
}

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

.iromain_slide .progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.iromain_slide .progress-ring__circle {
  stroke-dasharray: 62.8;
  stroke-dashoffset: 62.8;
  transition: stroke-dashoffset 5s linear;
  stroke: var(--white);
}

.iromain_slide .progress-ring__background {
  stroke: rgba(255, 255, 255, 0.4);
  stroke-dasharray: none;
}

.iromain_slide .swiper-pagination {
  display: flex;
  align-items: center;
  position: static;
  width: auto;
}

.iromain_slide .swiper-pagination-bullet {
  opacity: 1;
  width: 0.6rem;
  height: 0.6rem;
  background: rgba(var(--white-rgb), 0.4);
}

.iromain_slide .swiper-pagination-bullet:first-child {
  margin-left: 0;
}

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

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

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

@media (max-width: 992px) {
  .iromain_slide .contents-container:not(.fullscreen) {
    height: 60rem;
  }

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

  .iromain_slide .swiper-slide {
    padding: 0 1.6rem 10rem;
  }

  .iromain_slide .textset .textset-desc {
    margin-bottom: 2.4rem;
  }

  .iromain_slide .fixed-area {
    padding: 0 1.6rem;
    gap: 1.4rem;
  }

  .iromain_slide .btn-pause::before {
    transform: none;
  }

  .iromain_slide {}
}
/* quick_bnr */
:root {
  --icon-fs-miiy654q: 1.6rem;
  --icon-fs-mij3j33w: 1.6rem;
  --icon-fs-mij3zqbj: 1.6rem;
  --icon-fs-mij490zm: 1.6rem;
  --icon-fs-mij4b72u: 1.6rem;
}

body {
  position: relative;
}

.quick_bnr {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  z-index: 50;
}

.quick_bnr .quick-menu {
  width: 10rem;
  box-shadow: 0.6rem 0.6rem 2rem 0 rgba(var(--black-rgb), 0.1);
}

.quick_bnr .menu-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  height: 10rem;
  background: var(--white);
}

.quick_bnr .menu-list li i::before {
  font-size: 2.4rem;
  transition: color 0.3s;
}

.quick_bnr .menu-list li:hover i::before {
  color: var(--primary);
}

.quick_bnr .ico-call {
  background: url(../icons/ico_call.svg) no-repeat center/contain;
}

.quick_bnr .ico-message {
  background: url(../icons/ico_message.svg) no-repeat center/contain;
}

.quick_bnr .ico-directions {
  background: url(../icons/ico_directions.svg) no-repeat center/contain;
}

.quick_bnr .menu-list li:hover a {
  color: var(--primary);
}

.quick_bnr .top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 4.6rem;
  background: var(--primary);
}

.quick_bnr .top-btn .ico-up {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../icons/ico_up.svg) no-repeat center/contain;
}

.quick_bnr .top-btn span {
  font-weight: var(--fw-medium);
}

@media (max-width: 992px) {
  .quick_bnr {
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .quick_bnr .quick-menu {
    width: 100%;
  }

  .quick_bnr .menu-list {
    display: flex;
  }

  .quick_bnr .menu-list li {
    flex: 1;
  }

  .quick_bnr .menu-list a {
    gap: 0.4rem;
    width: 100%;
    height: 8rem;
  }

  .quick_bnr .menu-list li i[class*="ico-"] {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2.4rem;
  }

  .quick_bnr .top-btn {
    display: none;
  }

  .quick_bnr .top-btn .ico-up {
    width: 1.6rem;
    height: 1.6rem;
  }

  :root {
    --icon-fs-miiy654q: 1.4rem;
    --icon-fs-mij3j33w: 1.4rem;
    --icon-fs-mij3zqbj: 1.2rem;
    --icon-fs-mij490zm: 1.4rem;
    --icon-fs-mij4b72u: 1.4rem;
  }
}
/* iromain_review */
.iromain_review {
  overflow: hidden;
  position: relative;
  padding-top: 14rem;
  padding-bottom: 14rem;
  --icon-fs-mjbs4qmk: 1.6rem;
  --icon-fs-mjbs52bn: 1.6rem;
  background: #FFFAF6FF;
  --icon-fs-mjbsqejy: 1.6rem;
  --icon-fs-mjbsrdqy: 1.6rem;
  --icon-fs-mjbt244y: 1.6rem;
  --icon-fs-mjbu7bwd: 1.6rem;
  --icon-fs-mjbu7ixy: 1.6rem;
  --icon-fs-mjbv1sqz: 1.6rem;
}

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

.iromain_review .title-area .textset-desc {
  margin: 0.8rem 0 0;
  color: var(--text-color3);
}

.iromain_review .slide-area {
  display: flex;
  gap: 4rem;
  margin-top: 8rem;
}

.iromain_review .col-left {
  flex-shrink: 0;
  width: 34.5rem;
}

.iromain_review .cardset-thumb {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem;
  width: 100%;
  height: 46rem;
  border-radius: 2rem;
  background: url(../images/review_thumb.jpg) no-repeat center / cover !important;
}

.iromain_review .thumb-tit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: var(--white);
}

.iromain_review .thumb-desc {
  margin: 0;
  -webkit-line-clamp: 9;
  color: var(--white);
}

.iromain_review .col-right {
  width: calc(100% - 38.5rem);
}

.iromain_review .swiper {
  width: 100vw;
}

.iromain_review .swiper-slide {
  width: 34.5rem;
}

.iromain_review .swiper-slide .cardset {
  padding: 2.4rem;
  min-height: 39.4rem;
  border-radius: 2rem;
  background: var(--white);
}

.iromain_review .swiper-slide .cardset .cardset-figure {
  overflow: hidden;
  height: 18rem;
  border-radius: 1.4rem;
}

.iromain_review .swiper-slide .cardset .cardset-body {
  margin-top: 1.2rem;
  padding: 0 0.6rem;
}

.iromain_review .swiper-slide .cardset .star-wrap {
  display: flex;
  gap: 0.4rem;
}

.iromain_review .swiper-slide .cardset .star-wrap .ico-star {
  display: flex;
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 1;
  font-style: normal;
}

.iromain_review .swiper-slide .cardset .star-wrap .ico-star::before {
  content: "\a109";
}

.iromain_review .swiper-slide .cardset .star-wrap .ico-star.active::before {
  content: "\a110";
}

.iromain_review .swiper-slide .cardset .cardset-tit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin: 1.2rem 0 0.4rem;
}

.iromain_review .swiper-slide .col-right .cardset .cardset-desc {
  -webkit-line-clamp: 3;
  margin: 0;
  color: var(--text-color3);
}

.iromain_review .paging-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.iromain_review .paging-wrap .btn-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.iromain_review .paging-wrap .btn-wrap [class*="btn-"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  color: var(--text-color1);
  border: none;
  border-radius: 50%;
  background: var(--white);
  font-size: 2rem;
  transition: background 0.3s, color 0.3s;
}

.iromain_review .paging-wrap .btn-wrap [class*="btn-"]:hover {
  color: var(--white);
  background: var(--primary);
}

.iromain_review .swiper-pagination-progressbar {
  position: static;
  background: var(--white);
}

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

@media (max-width: 992px) {
  .iromain_review {
    padding-top: 6rem;
    padding-bottom: 6rem;
    --icon-fs-mjbs4qmk: 1.4rem;
    --icon-fs-mjbs52bn: 1.4rem;
    --icon-fs-mjbsqejy: 1.4rem;
    --icon-fs-mjbsrdqy: 1.4rem;
    --icon-fs-mjbt244y: 1.4rem;
    --icon-fs-mjbu7bwd: 1.4rem;
    --icon-fs-mjbu7ixy: 1.4rem;
    --icon-fs-mjbv1sqz: 1.4rem;
  }

  .iromain_review .slide-area {
    display: block;
    margin-top: 4rem;
  }

  .iromain_review .col-left {
    width: 100%;
  }

  .iromain_review .cardset-thumb {
    gap: 1.6rem;
    padding: 2rem;
    height: auto;
    border-radius: 1.6rem;
    aspect-ratio: 328/240;
    background: url(../images/m_review_thumb.jpg) no-repeat center / cover !important;
  }

  .iromain_review .thumb-desc {
    -webkit-line-clamp: 3;
  }

  .iromain_review .col-right {
    margin-top: 2rem;
  }

  .iromain_review .col-right,
  .iromain_review .swiper {
    width: 100%;
  }

  .iromain_review .swiper {
    overflow: hidden;
  }

  .iromain_review .swiper-slide {
    width: 28rem;
  }

  .iromain_review .swiper-slide .cardset {
    padding: 1.6rem;
    min-height: 0;
    border-radius: 1.6rem;
  }

  .iromain_review .swiper-slide .cardset .cardset-figure {
    height: 13.4rem;
    border-radius: 1rem;
  }

  .iromain_review .swiper-slide .cardset .cardset-body {
    margin-top: 1rem;
    padding: 0 0.4rem;
  }

  .iromain_review .swiper-slide .cardset .star-wrap .ico-star {
    font-size: 1.4rem;
  }

  .iromain_review .swiper-slide .cardset .cardset-tit {
    margin-top: 1rem;
  }

  .iromain_review .paging-wrap {
    gap: 0.8rem;
    margin-top: 1.6rem;
  }

  .iromain_review .paging-wrap .btn-wrap {
    gap: 0.4rem;
  }

  .iromain_review .paging-wrap .btn-wrap [class*="btn-"] {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.6rem;
  }
}
/* iromain_movie */
.iromain_movie {
  overflow: hidden;
  position: relative;
  background: url(../images/agency_N3_01.png) no-repeat center/cover;
}

.iromain_movie .block_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.4;
  background: var(--black);
}

.iromain_movie .contents-container:not(.fullscreen) {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80rem;
}

.iromain_movie .title-area {
  position: relative;
  width: 100%;
  text-align: center;
}

.iromain_movie .title-area h2 {
  margin-bottom: 2.4rem;
  color: var(--white);
  font-weight: var(--fw-medium);
}

.iromain_movie .loop-area {
  display: flex;
  position: absolute;
  bottom: 2.4rem;
  width: 100vw;
}

.iromain_movie .loop-wrap {
  display: flex;
  animation: loopText 30s infinite linear;
}

.iromain_movie .loop-area span {
  font-size: 20rem;
  line-height: 1;
  font-weight: var(--fw-bold);
  color: var(--white);
  white-space: nowrap;
  font-family: "NEXT ART", var(--ff-ko1), sans-serif;
}

.iromain_movie .loop-area span+span {
  padding-left: 6rem;
}

@import url(https://fonts.cdnfonts.com/css/next-art){}

@keyframes loopText {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 992px) {
  .iromain_movie .contents-container:not(.fullscreen) {
    height: 80rem;
  }

  .iromain_movie .title-area h2 {
    margin-bottom: 2rem;
  }

  .iromain_movie .loop-area span {
    font-size: 13rem;
  }

  .iromain_movie .loop-area span+span {
    padding-left: 3rem;
  }

  .iromain_movie {}
}
/* iromain_midslide */
.iromain_midslide {
  position: relative;
  padding-top: 18rem;
  padding-bottom: 15rem;
}

.iromain_midslide .contents-inner {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  width: 100%;
}

.iromain_midslide .title-area {
  flex: 1 1 46.6rem;
  position: sticky;
  top: calc(50% - 17rem);
}

.iromain_midslide .title-area .textset-desc {
  margin: 0.8rem 0 0;
  color: var(--text-color3);
}

.iromain_midslide .list-area {
  flex: 1 1 91.4rem;
}

.iromain_midslide .list-area .cardset-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 4rem;
}

.iromain_midslide .cardset-wrap .cardset {
  padding: 4rem;
  border: 1px solid var(--border-color);
  background: var(--white);
}

.iromain_midslide .cardset-wrap .cardset-round {
  border-radius: 2rem;
}

.iromain_midslide .cardset-wrap .cardset:nth-child(2n) {
  transform: translateY(10rem);
}

.iromain_midslide .cardset-wrap .cardset-figure {
  height: 26rem;
}

.iromain_midslide .cardset-wrap .cardset-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.4rem;
}

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

.iromain_midslide .cardset-wrap .cardset-tit {
  font-weight: var(--fw-bold);
}

.iromain_midslide .cardset-wrap .cardset-desc {
  margin: 1.2rem 0 0;
  -webkit-line-clamp: unset;
}

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

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

  .iromain_midslide .title-area {
    flex: none;
    width: 100%;
    position: static;
  }

  .iromain_midslide .list-area {
    flex: none;
    width: 100%;
  }

  .iromain_midslide .list-area .cardset-wrap {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .iromain_midslide .cardset-wrap .cardset {
    padding: 2rem;
  }

  .iromain_midslide .cardset-wrap .cardset:nth-child(2n) {
    transform: none;
  }

  .iromain_midslide .cardset-wrap .cardset-figure {
    height: 21rem;
  }

  .iromain_midslide .cardset-wrap .cardset-figure img {
    border-radius: 1rem;
  }

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

  .iromain_midslide .cardset-wrap .cardset-desc {
    margin-top: 0.4rem;
  }
}
/* iromain_lowservice */
.iromain_lowservice {
  overflow: hidden;
  position: relative;
  padding-top: 15rem;
  padding-bottom: 12rem;
  background: var(--primary);
}

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

.iromain_lowservice .textset-tit,
.iromain_lowservice .textset-desc {
  color: var(--white);
}

.iromain_lowservice .title-area .textset-tit {
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(var(--white-rgb), 0.1);
  background-image: linear-gradient(var(--white), var(--white));
  background-size: 0 100%;
  background-repeat: no-repeat;
}

.iromain_lowservice .title-area .textset-desc {
  overflow: hidden;
  margin-top: 0.4rem;
}

.iromain_lowservice .title-area .textset-desc span {
  display: block;
  transform: translateY(100%);
}

.iromain_lowservice .swiper {
  overflow: visible;
  margin-top: 8rem;
}

.iromain_lowservice .swiper-slide {
  position: relative;
  width: 46.7rem;
}

.iromain_lowservice .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background: rgba(var(--black-rgb), 0.8);
  transition: opacity 0.3s, visibility 0.3s;
}

.iromain_lowservice .swiper-slide:hover::before,
.iromain_lowservice .swiper-slide:hover .badge-wrap,
.iromain_lowservice .swiper-slide:hover .cardset-body {
  opacity: 1;
  visibility: visible;
}

.iromain_lowservice .badge-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 4rem 3.2rem;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transition: opacity 0.3s, visibility 0.3s;
}

.iromain_lowservice .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  max-width: 100%;
  height: 3.2rem;
  background: rgba(var(--white-rgb), 0.2);
  backdrop-filter: blur(12px);
}

.iromain_lowservice .cardset-figure {
  height: 60rem;
}

.iromain_lowservice .swiper-slide .cardset-body {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 4rem 3.2rem;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  transition: opacity 0.3s, visibility 0.3s;
}

.iromain_lowservice .swiper-slide .cardset-tit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: var(--white);
  font-weight: var(--fw-bold);
}

.iromain_lowservice .swiper-slide .cardset-desc {
  margin: 0.2rem 0 2.4rem;
  -webkit-line-clamp: 4;
  color: var(--text-color4);
}

.iromain_lowservice .swiper-slide .cardset-more {
  text-decoration: underline;
  color: var(--text-color4);
  font-weight: var(--fw-medium);
}

.iromain_lowservice .swiper-pagination {
  position: relative;
  margin-top: 4rem;
}

.iromain_lowservice .swiper-pagination-progressbar {
  height: 0.2rem;
  background: rgba(var(--white-rgb), 0.2);
}

.iromain_lowservice .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 0.4rem;
  background: var(--white);
}

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

  .iromain_lowservice .swiper {
    margin-top: 4rem;
  }

  .iromain_lowservice .swiper-slide {
    width: 26rem;
  }

  .iromain_lowservice .swiper-slide .badge-wrap {
    padding: 2.4rem 1.6rem;
  }

  .iromain_lowservice .badge {
    padding: 0 1rem;
    height: 2.4rem;
  }

  .iromain_lowservice .cardset-figure {
    height: 36rem;
  }

  .iromain_lowservice .swiper-slide .cardset-body {
    padding: 2.4rem 1.6rem;
  }

  .iromain_lowservice .swiper-slide .cardset-desc {
    margin-bottom: 1.6rem;
  }

  .iromain_lowservice .swiper-pagination {
    margin-top: 2.4rem;
  }
}
/* iromain_ourmission */
.iromain_ourmission {
  overflow: hidden;
  position: relative;
  padding-top: 16rem;
  padding-bottom: 16rem;
}

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

.iromain_ourmission .title-area {
  margin-bottom: 10rem;
}

.iromain_ourmission .title-area h2 {
  color: var(--primary);
}

.iromain_ourmission .title-area strong {
  display: block;
  margin: 0.4rem 0 2rem;
}

.iromain_ourmission .title-area p {
  color: var(--text-color3);
}

.iromain_ourmission .list-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0 36rem;
  position: relative;
  padding: 8rem 4rem;
}

.iromain_ourmission .list-area::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: var(--border-color);
}

.iromain_ourmission .list-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.1rem;
  height: 100%;
  background: var(--border-color);
}

.iromain_ourmission .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  padding: 3rem;
  width: 20rem;
  min-height: 20rem;
  border-radius: 50%;
  background: var(--black);
}

.iromain_ourmission .logo-item img {
  height: 4.4rem;
  object-fit: contain;
}

.iromain_ourmission .logo-item span {
  color: var(--white);
  font-weight: var(--fw-bold);
  text-align: center;
}

.iromain_ourmission .item {
  display: flex;
  gap: 0.8rem;
}

.iromain_ourmission .item i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 4.2rem;
  font-style: normal;
}

.iromain_ourmission .item strong {
  font-weight: var(--fw-bold);
}

.iromain_ourmission .item p {
  margin-top: 0.8rem;
  color: var(--text-color3);
}

.iromain_ourmission .item:nth-child(2),
.iromain_ourmission .item:nth-child(3) {
  padding-bottom: 8.4rem;
}

.iromain_ourmission .item:nth-child(4),
.iromain_ourmission .item:nth-child(5) {
  padding-top: 8.4rem;
}

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

  .iromain_ourmission .title-area {
    margin-bottom: 5rem;
  }

  .iromain_ourmission .title-area strong {
    margin: 0.4rem 0 1.2rem;
  }

  .iromain_ourmission .list-area {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    padding: 0;
  }

  .iromain_ourmission .list-area::before,
  .iromain_ourmission .list-area::after {
    content: none;
  }

  .iromain_ourmission .logo-item {
    gap: 0.4rem;
    position: static;
    transform: none;
    margin: 0 auto 3.2rem;
    padding: 2rem 1rem;
    width: 14rem;
    min-height: 14rem;
  }

  .iromain_ourmission .logo-item img {
    height: 3.5rem;
  }

  .iromain_ourmission .list-area .item {
    gap: 0.4rem;
    padding: 2.4rem 0;
    border-bottom: 1px solid var(--border-color);
  }

  .iromain_ourmission .list-area .item:nth-child(2) {
    padding-top: 0;
  }

  .iromain_ourmission .item i {
    width: 2.2rem;
    height: 3.4rem;
  }

  .iromain_ourmission .item p {
    margin-top: 0.4rem;
  }
}
/* iromain_faq */
.iromain_faq {
  overflow: hidden;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 9rem;
}

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

.iromain_faq .title-area .textset-desc {
  margin: 0.8rem 0 0;
  color: var(--text-color3);
}

.iromain_faq .accordset {
  margin-top: 8rem;
}

.iromain_faq .accordset.accordset-round {
  border-radius: 2rem;
}

.iromain_faq .accordset.accent-header .accordset-item.active .accordset-button {
  background: #ecfbfb;
}

.iromain_faq .accordset .accordset-q {
  color: var(--primary);
}

.iromain_faq .accordset .accordset-q,
.iromain_faq .accordset .accordset-a {
  align-self: flex-start;
}

.iromain_faq .accordset .accordset-a {
  transform: translateY(0.4rem);
}

.iromain_faq .accordset-header p {
  display: flex;
  align-items: center;
  align-self: stretch;
}

.iromain_faq .accordset .accordset-body,
.iromain_faq .accordset.accordset-plus .accordset-item.active .accordset-body {
  background: #f8f8fa;
}

.iromain_faq .accordset .accordset-content {
  align-items: center;
  padding: 3rem 2.4rem;
  min-height: 9.4rem;
}

.iromain_faq .accordset.accordset-plus .accordset-header::after {
  font-size: 2.4rem;
}

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

  .iromain_faq .accordset {
    margin-top: 4rem;
  }

  .iromain_faq .accordset.accordset-round {
    border-radius: 1.6rem;
  }

  .iromain_faq .accordset .accordset-content {
    padding: 1.6rem;
    min-height: 8rem;
  }

  .iromain_faq .accordset.accordset-plus .accordset-header::after {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.8rem;
  }

  .iromain_faq .accordset .accordset-q {
    transform: translateY(0.2rem);
  }
}
/* footer */
.footer {
  overflow: hidden;
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--black);
}

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

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

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

.footer .footer-logo {
  margin-bottom: 0;
  flex-shrink: 0;
}

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

.footer .footer-menulist {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer .footer-menulink a {
  padding-right: 1.2rem;
  color: var(--white);
  font-size: var(--fs-p2);
}

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

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

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

.footer .footer-txtgroup {
  margin-top: 1.2rem;
}

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

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

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

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

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

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

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

.footer address+.footer-txt {
  margin-top: 0.8rem;
}

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

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

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

.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-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
  opacity: 0;
  visibility: hidden;
}

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

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

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

.footer .info-title h3 {
  font-size: var(--fs-h4);
}

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

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

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

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

.footer .info-group {
  padding: 2.4rem;
}

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

.footer .info-group strong {
  padding-bottom: 1.2rem;
  display: block;
  font-size: var(--fs-h5);
}

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

.footer .info-desc p {
  font-size: var(--fs-p1);
}

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

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

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

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

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

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

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

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

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

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

  .footer address+.footer-txt {
    margin-top: 0.8rem;
  }

  .footer address+.footer-txt p {
    color: var(--white);
  }

  .footer .footer-txt p+p {
    margin-left: 0;
  }
}
/* irointroduce_01 */
.irointroduce_01 {
  overflow: hidden;
  position: relative;
  padding-top: 24rem;
  padding-bottom: 12rem;
}

.irointroduce_01 .contents-inner {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
  width: 100%;
}

.irointroduce_01 .title-area {
  flex: 1 1 48rem;
}

.irointroduce_01 .desc-area {
  flex: 1 1 76rem;
  max-width: 76rem;
}

.irointroduce_01 .desc-area .desc {
  margin-bottom: 8rem;
}

.irointroduce_01 .desc-area .desc p {
  margin-top: 2.4rem;
  color: var(--text-color3);
}

.irointroduce_01 .table {
  border-top: 1px solid var(--black);
}

.irointroduce_01 .table .cell {
  display: flex;
  border-bottom: 1px solid var(--border-color);
}

.irointroduce_01 .table .cell>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.6rem 2.4rem;
}

.irointroduce_01 .cell .th {
  flex: 1 1 21rem;
  font-weight: var(--fw-bold);
}

.irointroduce_01 .cell .td {
  flex: 1 1 55rem;
}

.irointroduce_01 .cell .td span+.link-wrap {
  margin-top: 3.2rem;
}

.irointroduce_01 .link-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.irointroduce_01 .link-wrap .btnset {
  flex: 1;
}

.irointroduce_01 .btnset+.btnset {
  margin: 0;
}

.irointroduce_01 .link-wrap [class*="ico-"]::before {
  content: "";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}

.irointroduce_01 .ico-map::before {
  background: url(../icons/ico_kakao_map.svg) no-repeat center/contain;
}

.irointroduce_01 .ico-naver::before {
  background: url(../icons/ico_naver.svg) no-repeat center/contain;
}

.irointroduce_01 .ico-kakao::before {
  background: url(../icons/ico_kakao.svg) no-repeat center/contain;
}

.irointroduce_01 .ico-youtube::before {
  background: url(../icons/ico_youtube.svg) no-repeat center/contain;
}

.irointroduce_01 .ico-instagram::before {
  background: url(../icons/ico_instagram.svg) no-repeat center/contain;
}

.irointroduce_01 .ico-open::before {
  background: url(../icons/ico_open.svg) no-repeat center/contain;
}

.irointroduce_01 .ico-temha::before {
  background: url(../icons/ico_temha.svg) no-repeat center/contain;
}

.irointroduce_01 .ico-web::before {
  background: url(../icons/ico_web.svg) no-repeat center/contain;
}

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

  .irointroduce_01 .contents-inner {
    display: block;
  }

  .irointroduce_01 .title-area {
    margin-bottom: 6rem;
  }

  .irointroduce_01 .desc-area {
    max-width: 100%;
  }

  .irointroduce_01 .desc-area .desc {
    margin-bottom: 3.6rem;
  }

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

  .irointroduce_01 .table .cell {
    flex-direction: column;
  }

  .irointroduce_01 .table .cell .th {
    flex: none;
    padding: 1.2rem 1.6rem 0;
  }

  .irointroduce_01 .table .cell .td {
    flex: none;
    padding: 1.2rem 1.6rem;
  }

  .irointroduce_01 .link-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .irointroduce_01 .cell .td span+.link-wrap {
    margin-top: 1.2rem;
  }

  .irointroduce_01 .link-wrap [class*="ico-"]::before {
    width: 1.6rem;
    height: 1.6rem;
  }
}
/* irointroduce_02 */
.irointroduce_02 {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
}

.irointroduce_02 .contents-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #fafafd;
}

.irointroduce_02 .contents-inner {
  display: flex;
  gap: 8rem;
  position: relative;
  margin-top: 13.8rem;
  padding: 6rem 0 21rem;
  width: 100%;
}

.irointroduce_02 .desc-area {
  flex: 1 1 83rem;
}

.irointroduce_02 .desc-area p {
  margin: 4rem 0;
  color: var(--text-color3);
}

.irointroduce_02 .info-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.irointroduce_02 .info-wrap span {
  color: var(--text-color3);
}

.irointroduce_02 .info-wrap strong {
  font-weight: var(--fw-bold);
}

.irointroduce_02 .list-area {
  position: relative;
  padding: 16rem 0 26rem;
}

.irointroduce_02 .bg-word {
  position: absolute;
  left: 0;
  bottom: -10.2rem;
  font-size: 16rem;
  font-family: var(--ff-ko3);
  font-weight: var(--fw-bold);
  line-height: 30rem;
  color: #f0f0f6;
  white-space: nowrap;
}

.irointroduce_02 .thumb-area {
  flex: 1 0 45.9rem;
}

.irointroduce_02 .thumb-area img {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 45.9rem;
  height: 74rem;
}

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

  .irointroduce_02 .contents-container::before {
    content: none;
  }

  .irointroduce_02 .contents-inner {
    flex-direction: column-reverse;
    gap: 3rem;
    margin-top: 8rem;
    padding: 0;
  }

  .irointroduce_02 .thumb-area {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: -1.6rem;
    padding: 3.9rem 1.6rem;
    width: calc(100% + 3.2rem);
    min-height: 37.8rem;
    background: #fafafd;
  }

  .irointroduce_02 .thumb-area img {
    width: 28.4rem;
    height: 45.8rem;
    bottom: 0;
  }

  .irointroduce_02 .bg-word {
    position: static;
    font-size: 10rem;
    line-height: 1;
    text-align: center;
    white-space: normal;
  }

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

  .irointroduce_02 .desc-area p {
    margin: 2rem 0 2.4rem;
  }

  .irointroduce_02 .info-wrap {
    gap: 0.4rem;
    align-items: flex-end;
  }

  .irointroduce_02 .info-wrap span {
    transform: translateY(-0.2rem);
  }
}
/* personal-RSMjHDJe1S */
:root {
  --icon-fs-miiy654q: 1.6rem;
  --icon-fs-mij3j33w: 1.6rem;
  --icon-fs-mij3zqbj: 1.6rem;
  --icon-fs-mij490zm: 1.6rem;
  --icon-fs-mij4b72u: 1.6rem;
}

body {
  position: relative;
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  z-index: 50;
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] .quick-menu {
  width: 10rem;
  box-shadow: 0.6rem 0.6rem 2rem 0 rgba(var(--black-rgb), 0.1);
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] .menu-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  height: 10rem;
  background: var(--white);
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] .menu-list li i::before {
  font-size: 2.4rem;
  transition: color 0.3s;
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] .menu-list li:hover i::before {
  color: var(--primary);
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] .ico-call {
  background: url(../icons/ico_call.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] .ico-message {
  background: url(../icons/ico_message.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] .ico-directions {
  background: url(../icons/ico_directions.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] .menu-list li:hover a {
  color: var(--primary);
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] .top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 4.6rem;
  background: var(--primary);
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] .top-btn .ico-up {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../icons/ico_up.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='nXmJHdOmUd'] .top-btn span {
  font-weight: var(--fw-medium);
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  z-index: 50;
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .quick-menu {
  width: 10rem;
  box-shadow: 0.6rem 0.6rem 2rem 0 rgba(var(--black-rgb), 0.1);
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .menu-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  height: 10rem;
  background: var(--white);
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .menu-list li i::before {
  font-size: 2.4rem;
  transition: color 0.3s;
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .menu-list li:hover i::before {
  color: var(--primary);
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .ico-call {
  background: url(../icons/ico_call.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .ico-message {
  background: url(../icons/ico_message.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .ico-directions {
  background: url(../icons/ico_directions.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .menu-list li:hover a {
  color: var(--primary);
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 4.6rem;
  background: var(--primary);
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .top-btn .ico-up {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../icons/ico_up.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .top-btn span {
  font-weight: var(--fw-medium);
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  z-index: 50;
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .quick-menu {
  width: 10rem;
  box-shadow: 0.6rem 0.6rem 2rem 0 rgba(var(--black-rgb), 0.1);
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .menu-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  height: 10rem;
  background: var(--white);
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .menu-list li i::before {
  font-size: 2.4rem;
  transition: color 0.3s;
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .menu-list li:hover i::before {
  color: var(--primary);
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .ico-call {
  background: url(../icons/ico_call.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .ico-message {
  background: url(../icons/ico_message.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .ico-directions {
  background: url(../icons/ico_directions.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .menu-list li:hover a {
  color: var(--primary);
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 4.6rem;
  background: var(--primary);
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .top-btn .ico-up {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../icons/ico_up.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .top-btn span {
  font-weight: var(--fw-medium);
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  z-index: 50;
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] .quick-menu {
  width: 10rem;
  box-shadow: 0.6rem 0.6rem 2rem 0 rgba(var(--black-rgb), 0.1);
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] .menu-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  height: 10rem;
  background: var(--white);
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] .menu-list li i::before {
  font-size: 2.4rem;
  transition: color 0.3s;
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] .menu-list li:hover i::before {
  color: var(--primary);
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] .ico-call {
  background: url(../icons/ico_call.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] .ico-message {
  background: url(../icons/ico_message.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] .ico-directions {
  background: url(../icons/ico_directions.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] .menu-list li:hover a {
  color: var(--primary);
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] .top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 4.6rem;
  background: var(--primary);
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] .top-btn .ico-up {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../icons/ico_up.svg) no-repeat center/contain;
}

.personal-RSMjHDJe1S[id='fSMJHDpNro'] .top-btn span {
  font-weight: var(--fw-medium);
}

@media (max-width: 992px) {
  .personal-RSMjHDJe1S[id='nXmJHdOmUd'] {
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .personal-RSMjHDJe1S[id='nXmJHdOmUd'] .quick-menu {
    width: 100%;
  }

  .personal-RSMjHDJe1S[id='nXmJHdOmUd'] .menu-list {
    display: flex;
  }

  .personal-RSMjHDJe1S[id='nXmJHdOmUd'] .menu-list li {
    flex: 1;
  }

  .personal-RSMjHDJe1S[id='nXmJHdOmUd'] .menu-list a {
    gap: 0.4rem;
    width: 100%;
    height: 8rem;
  }

  .personal-RSMjHDJe1S[id='nXmJHdOmUd'] .menu-list li i[class*="ico-"] {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2.4rem;
  }

  .personal-RSMjHDJe1S[id='nXmJHdOmUd'] .top-btn {
    display: none;
  }

  .personal-RSMjHDJe1S[id='nXmJHdOmUd'] .top-btn .ico-up {
    width: 1.6rem;
    height: 1.6rem;
  }

  :root {
    --icon-fs-miiy654q: 1.4rem;
    --icon-fs-mij3j33w: 1.4rem;
    --icon-fs-mij3zqbj: 1.2rem;
    --icon-fs-mij490zm: 1.4rem;
    --icon-fs-mij4b72u: 1.4rem;
  }

  .personal-RSMjHDJe1S[id='gmmJhdOuJ1'] {
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .quick-menu {
    width: 100%;
  }

  .personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .menu-list {
    display: flex;
  }

  .personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .menu-list li {
    flex: 1;
  }

  .personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .menu-list a {
    gap: 0.4rem;
    width: 100%;
    height: 8rem;
  }

  .personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .menu-list li i[class*="ico-"] {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2.4rem;
  }

  .personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .top-btn {
    display: none;
  }

  .personal-RSMjHDJe1S[id='gmmJhdOuJ1'] .top-btn .ico-up {
    width: 1.6rem;
    height: 1.6rem;
  }

  .personal-RSMjHDJe1S[id='CnMJhDP2Iw'] {
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .quick-menu {
    width: 100%;
  }

  .personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .menu-list {
    display: flex;
  }

  .personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .menu-list li {
    flex: 1;
  }

  .personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .menu-list a {
    gap: 0.4rem;
    width: 100%;
    height: 8rem;
  }

  .personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .menu-list li i[class*="ico-"] {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2.4rem;
  }

  .personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .top-btn {
    display: none;
  }

  .personal-RSMjHDJe1S[id='CnMJhDP2Iw'] .top-btn .ico-up {
    width: 1.6rem;
    height: 1.6rem;
  }

  .personal-RSMjHDJe1S[id='fSMJHDpNro'] {
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .personal-RSMjHDJe1S[id='fSMJHDpNro'] .quick-menu {
    width: 100%;
  }

  .personal-RSMjHDJe1S[id='fSMJHDpNro'] .menu-list {
    display: flex;
  }

  .personal-RSMjHDJe1S[id='fSMJHDpNro'] .menu-list li {
    flex: 1;
  }

  .personal-RSMjHDJe1S[id='fSMJHDpNro'] .menu-list a {
    gap: 0.4rem;
    width: 100%;
    height: 8rem;
  }

  .personal-RSMjHDJe1S[id='fSMJHDpNro'] .menu-list li i[class*="ico-"] {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 2.4rem;
  }

  .personal-RSMjHDJe1S[id='fSMJHDpNro'] .top-btn {
    display: none;
  }

  .personal-RSMjHDJe1S[id='fSMJHDpNro'] .top-btn .ico-up {
    width: 1.6rem;
    height: 1.6rem;
  }
}
/* irosub_head */
.irosub_head[id='fNmjg6tCIZ'] {
  overflow: hidden;
  position: relative;
  padding-top: 20rem;
  padding-bottom: 8rem;
}

.irosub_head[id='fNmjg6tCIZ'] .contents-inner {
  width: 100%;
}

.irosub_head[id='fNmjg6tCIZ'] .title-area {
  margin-bottom: 6rem;
}

.irosub_head[id='fNmjg6tCIZ'] .title-area p {
  margin-top: 0.4rem;
  color: var(--text-color3);
}

.irosub_head[id='fNmjg6tCIZ'] .tabset.tabset-brick .tabset-item {
  flex: 1;
}

.irosub_head[id='fNmjg6tCIZ'] .tabset.tabset-brick .tabset-list.tabset-lg .tabset-link {
  padding: 1.9rem 3.2rem;
  height: 100%;
}

.irosub_head[id='lumjG582ts'] {
  overflow: hidden;
  position: relative;
  padding-top: 20rem;
  padding-bottom: 8rem;
}

.irosub_head[id='lumjG582ts'] .contents-inner {
  width: 100%;
}

.irosub_head[id='lumjG582ts'] .title-area {
  margin-bottom: 6rem;
}

.irosub_head[id='lumjG582ts'] .title-area p {
  margin-top: 0.4rem;
  color: var(--text-color3);
}

.irosub_head[id='lumjG582ts'] .tabset.tabset-brick .tabset-item {
  flex: 1;
}

.irosub_head[id='lumjG582ts'] .tabset.tabset-brick .tabset-list.tabset-lg .tabset-link {
  padding: 1.9rem 3.2rem;
  height: 100%;
}

@media (max-width: 992px) {
  .irosub_head[id='fNmjg6tCIZ'] {
    padding-top: 12rem;
    padding-bottom: 4rem;
  }

  .irosub_head[id='fNmjg6tCIZ'] .title-area {
    margin-bottom: 3rem;
  }

  .irosub_head[id='fNmjg6tCIZ'] .tabset.tabset-brick .tabset-list {
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 0;
    border: 1px solid var(--border-color);
  }

  .irosub_head[id='fNmjg6tCIZ'] .tabset.tabset-brick .tabset-item {
    margin: 0;
    width: 100%;
    border: none;
  }

  .irosub_head[id='fNmjg6tCIZ'] .tabset.tabset-brick .tabset-item:nth-child(odd) {
    border-right: 1px solid var(--border-color);
  }

  .irosub_head[id='fNmjg6tCIZ'] .tabset.tabset-brick .tabset-item:nth-child(n + 3) {
    border-top: 1px solid var(--border-color);
  }

  .irosub_head[id='fNmjg6tCIZ'] .tabset.tabset-brick .tabset-list.tabset-lg .tabset-link {
    padding: 1.2rem 2.4rem;
    border: none;
    min-height: var(--ht-lg);
  }

  .irosub_head[id='lumjG582ts'] {
    padding-top: 12rem;
    padding-bottom: 4rem;
  }

  .irosub_head[id='lumjG582ts'] .title-area {
    margin-bottom: 3rem;
  }

  .irosub_head[id='lumjG582ts'] .tabset.tabset-brick .tabset-list {
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 0;
    border: 1px solid var(--border-color);
  }

  .irosub_head[id='lumjG582ts'] .tabset.tabset-brick .tabset-item {
    margin: 0;
    width: 100%;
    border: none;
  }

  .irosub_head[id='lumjG582ts'] .tabset.tabset-brick .tabset-item:nth-child(odd) {
    border-right: 1px solid var(--border-color);
  }

  .irosub_head[id='lumjG582ts'] .tabset.tabset-brick .tabset-item:nth-child(n + 3) {
    border-top: 1px solid var(--border-color);
  }

  .irosub_head[id='lumjG582ts'] .tabset.tabset-brick .tabset-list.tabset-lg .tabset-link {
    padding: 1.2rem 2.4rem;
    border: none;
    min-height: var(--ht-lg);
  }
}
/* irosubpage01_service */
.irosubpage01_service {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  --height-mjde6b7i: 600px;
  --height-mjde6t2h: 500px;
}

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

.irosubpage01_service .title-area {
  margin-bottom: 4rem;
}

.irosubpage01_service .title-area h2 {
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.irosubpage01_service .thumb-area {
  margin-bottom: 6rem;
  width: 100%;
  height: 42rem;
}

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

.irosubpage01_service .desc-area p {
  margin-top: 2rem;
  color: var(--text-color3);
}

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

  .irosubpage01_service .title-area {
    margin-bottom: 2rem;
  }

  .irosubpage01_service .thumb-area {
    margin-bottom: 3rem;
    height: auto;
    aspect-ratio: 328/220;
  }

  .irosubpage01_service .desc-area p {
    margin-top: 1.2rem;
  }
}
/* irosubpage01_process */
.irosubpage01_process {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.irosubpage01_process .contents-container {
  display: flex;
  justify-content: center;
}

.irosubpage01_process .bg {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  transform: translateY(-13rem);
  width: 100vw;
  height: 45.5rem;
}

.irosubpage01_process .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.irosubpage01_process .contents-inner {
  position: relative;
  width: 100%;
}

.irosubpage01_process .desc-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}

.irosubpage01_process .desc-area .title,
.irosubpage01_process .desc-area .desc {
  flex: 1;
}

.irosubpage01_process .desc-area .title h2 {
  color: #fff;
  font-weight: var(--fw-regular);
}

.irosubpage01_process .desc-area .desc h3 {
  color: #fff;
}

.irosubpage01_process .desc-area .desc p {
  margin-top: 1.6rem;
  color: #d1d1d1;
}

.irosubpage01_process .list-area {
  display: flex;
  gap: 4rem;
  margin: 4.2rem 0 6rem;
}

.irosubpage01_process .list-area li {
  flex: 1;
}

.irosubpage01_process .list-area .thumb {
  height: 23rem;
}

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

.irosubpage01_process .list-area .desc {
  margin-top: 2.4rem;
}

.irosubpage01_process .list-area .desc p {
  margin-top: 1.2rem;
  color: #666;
}

.irosubpage01_process .btn-wrap {
  text-align: center;
}

@media (max-width: 1200px) {
  .irosubpage01_process .bg {
    width: calc(100% + 8rem);
  }
}

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

  .irosubpage01_process::before {
    top: 6rem;
    height: 34rem;
  }

  .irosubpage01_process .bg {
    width: calc(100% + 3.2rem);
    transform: translateY(-6rem);
    height: 34rem;
  }

  .irosubpage01_process .desc-area {
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .irosubpage01_process .desc-area .title,
  .irosubpage01_process .desc-area .desc {
    flex: none;
  }

  .irosubpage01_process .desc-area .desc p {
    margin-top: 0.8rem;
  }

  .irosubpage01_process .list-area {
    overflow-x: auto;
    gap: 1.6rem;
    margin: 4rem 0 3.6rem;
    padding-right: 1.6rem;
    width: calc(100% + 1.6rem);
  }

  .irosubpage01_process .list-area li {
    flex: 1 0 19.4rem;
    min-width: 19.4rem;
  }

  .irosubpage01_process .list-area .thumb {
    height: 14rem;
  }

  .irosubpage01_process .list-area .desc {
    margin-top: 1.4rem;
  }

  .irosubpage01_process .list-area .desc p {
    margin-top: 0.8rem;
  }
}
/* irosubpage01_value */
.irosubpage01_value .ico-text {
  background: url(../images/cir_one.png) no-repeat center / cover !important;
}

.irosubpage01_value {
  position: relative;
  overflow: hidden;
}

.irosubpage01_value .contents-container {
  min-height: 80rem;
}

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

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

.irosubpage01_value .container-lg .visual-swiper {
  max-width: calc(1440px + 16rem);
}

.irosubpage01_value .container-md .visual-swiper {
  max-width: calc(1280px + 16rem);
}

.irosubpage01_value .container-sm .visual-swiper {
  max-width: calc(1024px + 16rem);
}

.irosubpage01_value .swiper-slide {
  height: 100%;
}

.irosubpage01_value .cardset {
  display: block;
  width: 100%;
  height: 100%;
}

.irosubpage01_value .cardset:hover .cardset-figure::before {
  height: 100%;
  background: rgba(var(--secondary-rgb), 0.8);
  opacity: 1;
  visibility: visible;
}

.irosubpage01_value .cardset:hover .cardset-desc {
  height: auto;
  min-height: 5.6rem;
  margin-top: 4rem;
  opacity: 1;
}

.irosubpage01_value .cardset .cardset-figure {
  width: 100%;
  height: 100%;
}

.irosubpage01_value .cardset .cardset-figure::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.irosubpage01_value .cardset .cardset-body {
  padding: 6rem;
}

.irosubpage01_value .cardset .cardset-tit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--white);
}

.irosubpage01_value .cardset .cardset-tit+.cardset-subtit {
  margin-top: 2rem;
}

.irosubpage01_value .cardset .cardset-subtit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #e8e8e8;
}

.irosubpage01_value .cardset .cardset-desc {
  -webkit-line-clamp: 4;
  height: 0;
  min-height: 0;
  margin: 0;
  opacity: 0;
  color: #e8e8e8;
  transition: 0.3s;
}

.irosubpage01_value .swiper-paging-btn {
  position: absolute;
  top: 50%;
  right: 8rem;
  transform: translateY(-50%);
  z-index: 10;
  width: 15.5rem;
  height: 15.5rem;
  background: none;
}

.irosubpage01_value .swiper-paging-btn.back .ico-arrow {
  transform: translate(-50%, -50%) scaleX(-1);
}

.irosubpage01_value .swiper-paging-btn::before,
.irosubpage01_value .swiper-paging-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: 0.6s;
  background: var(--white);
}

.irosubpage01_value .swiper-paging-btn::before {
  width: calc(100% - 6.5rem);
  height: calc(100% - 6.5rem);
  opacity: 0.8;
  z-index: 2;
}

.irosubpage01_value .swiper-paging-btn::after {
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 1;
}

.irosubpage01_value .swiper-paging-btn:hover::before {
  width: 0;
  height: 0;
  opacity: 0;
}

.irosubpage01_value .swiper-paging-btn:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.irosubpage01_value .swiper-paging-btn:hover .ico-text {
  filter: invert(100%);
  -webkit-filter: invert(100%);
}

.irosubpage01_value .swiper-paging-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.irosubpage01_value .swiper-paging-btn .ico-text {
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  background: url(../images/img_text_rotate_white.png) no-repeat center/cover;
  animation: textRotate 10s linear infinite;
  transition: filter 0.3s;
}

.irosubpage01_value .swiper-paging-btn .ico-arrow {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../icons/ico_arrow_black.svg) no-repeat center/cover;
  transition: 0.3s;
}

@keyframes textRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .irosubpage01_value .swiper-paging-btn {
    right: 4rem;
  }
}

@media (max-width: 992px) {
  .irosubpage01_value .contents-container {
    min-height: 60rem;
  }

  .irosubpage01_value .cardset:hover .cardset-desc {
    min-height: auto;
  }

  .irosubpage01_value .cardset .cardset-body {
    padding: 2.4rem 1.6rem;
  }

  .irosubpage01_value .cardset .cardset-tit+.cardset-subtit {
    margin-top: 1.4rem;
  }

  .irosubpage01_value .cardset .cardset-subtit+.cardset-desc {
    margin-top: 2.4rem;
  }

  .irosubpage01_value .cardset .cardset-desc {
    -webkit-line-clamp: 3;
    height: auto;
    min-height: auto;
    opacity: 1;
  }

  .irosubpage01_value .swiper-paging-btn {
    right: 1.6rem;
    width: 6.4rem;
    height: 6.4rem;
  }

  .irosubpage01_value .swiper-paging-btn::before {
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
  }

  .irosubpage01_value .swiper-paging-btn .ico-text {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }

  .irosubpage01_value .swiper-paging-btn .ico-arrow {
    width: 1.4rem;
    height: 1.4rem;
  }

  .irosubpage01_value {}
}
/* irosubpage01_marketing */
.irosubpage01_marketing[id='JEmjDdIU55'] {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.irosubpage01_marketing[id='JEmjDdIU55'] .contents-inner {
  width: 100%;
}

.irosubpage01_marketing[id='JEmjDdIU55'] .textset {
  text-align: center;
}

.irosubpage01_marketing[id='JEmjDdIU55'] .textset .textset-subtit {
  display: block;
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.irosubpage01_marketing[id='JEmjDdIU55'] .textset .textset-tit {
  margin: 0.4rem 0 2rem;
}

.irosubpage01_marketing[id='JEmjDdIU55'] .textset .textset-desc {
  margin: 0;
  color: var(--text-color3);
}

.irosubpage01_marketing[id='JEmjDdIU55'] .list-area {
  display: flex;
  align-items: center;
  margin-top: 8rem;
}

.irosubpage01_marketing[id='JEmjDdIU55'] .list-area .item {
  flex: 1 1 calc(100% / 4);
  padding: 4rem 2rem;
  text-align: center;
}

.irosubpage01_marketing[id='JEmjDdIU55'] .list-area .item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.irosubpage01_marketing[id='JEmjDdIU55'] .list-area .item .num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0.2rem;
}

.irosubpage01_marketing[id='ArmJg57V97'] {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.irosubpage01_marketing[id='ArmJg57V97'] .contents-inner {
  width: 100%;
}

.irosubpage01_marketing[id='ArmJg57V97'] .textset {
  text-align: center;
}

.irosubpage01_marketing[id='ArmJg57V97'] .textset .textset-subtit {
  display: block;
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.irosubpage01_marketing[id='ArmJg57V97'] .textset .textset-tit {
  margin: 0.4rem 0 2rem;
}

.irosubpage01_marketing[id='ArmJg57V97'] .textset .textset-desc {
  margin: 0;
  color: var(--text-color3);
}

.irosubpage01_marketing[id='ArmJg57V97'] .list-area {
  display: flex;
  align-items: center;
  margin-top: 8rem;
}

.irosubpage01_marketing[id='ArmJg57V97'] .list-area .item {
  flex: 1 1 calc(100% / 4);
  padding: 4rem 2rem;
  text-align: center;
}

.irosubpage01_marketing[id='ArmJg57V97'] .list-area .item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.irosubpage01_marketing[id='ArmJg57V97'] .list-area .item .num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0.2rem;
}

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

  .irosubpage01_marketing[id='JEmjDdIU55'] .textset .textset-tit {
    margin: 0.2rem 0 1.2rem;
  }

  .irosubpage01_marketing[id='JEmjDdIU55'] .list-area {
    flex-direction: column;
    margin-top: 4rem;
  }

  .irosubpage01_marketing[id='JEmjDdIU55'] .list-area .item {
    flex: none;
    padding: 4rem 1.6rem;
    width: 100%;
  }

  .irosubpage01_marketing[id='JEmjDdIU55'] .list-area .item:first-child {
    padding-top: 0;
  }

  .irosubpage01_marketing[id='JEmjDdIU55'] .list-area .item:last-child {
    padding-bottom: 0;
  }

  .irosubpage01_marketing[id='JEmjDdIU55'] .list-area .item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .irosubpage01_marketing[id='ArmJg57V97'] {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .irosubpage01_marketing[id='ArmJg57V97'] .textset .textset-tit {
    margin: 0.2rem 0 1.2rem;
  }

  .irosubpage01_marketing[id='ArmJg57V97'] .list-area {
    flex-direction: column;
    margin-top: 4rem;
  }

  .irosubpage01_marketing[id='ArmJg57V97'] .list-area .item {
    flex: none;
    padding: 4rem 1.6rem;
    width: 100%;
  }

  .irosubpage01_marketing[id='ArmJg57V97'] .list-area .item:first-child {
    padding-top: 0;
  }

  .irosubpage01_marketing[id='ArmJg57V97'] .list-area .item:last-child {
    padding-bottom: 0;
  }

  .irosubpage01_marketing[id='ArmJg57V97'] .list-area .item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
}
/* irosubpage01_reviewlist */
.irosubpage01_reviewlist {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 10rem;
}

.irosubpage01_reviewlist .contents-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
  width: 100%;
}

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

.irosubpage01_reviewlist .textset-tit {
  font-weight: var(--fw-medium);
}

.irosubpage01_reviewlist .slide-area {
  display: flex;
  align-items: center;
  position: relative;
  width: 100vw;
}

.irosubpage01_reviewlist .contents-swiper {
  width: 100%;
}

.irosubpage01_reviewlist .swiper-wrapper {
  transition-timing-function: linear;
}

.irosubpage01_reviewlist .swiper-slide {
  max-width: 34rem;
}

.irosubpage01_reviewlist .imageset {
  height: 43rem;
  width: 100%;
}

.irosubpage01_reviewlist .contents-control {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 64rem);
  transform: translate(-50%, -50%);
  z-index: 100;
}

.irosubpage01_reviewlist .swiper-button-next,
.irosubpage01_reviewlist .swiper-button-prev {
  position: relative;
  left: auto;
  right: auto;
  width: 6rem;
  height: 6rem;
  background-color: rgba(var(--black-rgb), 0.5);
  border-radius: 50%;
}

.irosubpage01_reviewlist .swiper-button-prev:after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../icons/ico_arrow_left_withe.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
}

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

.irosubpage01_reviewlist .swiper-button-next:after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../icons/ico_arrow_right_withe.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
}

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

  .irosubpage01_reviewlist .contents-inner {
    gap: 4rem;
  }

  .irosubpage01_reviewlist .swiper-slide {
    max-width: 15rem;
  }

  .irosubpage01_reviewlist .imageset {
    height: 18rem;
  }
}
/* irosubpage01_bestreview */
.irosubpage01_bestreview {
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 16rem;
}

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

.irosubpage01_bestreview .title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 7rem;
}

.irosubpage01_bestreview .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  font-weight: var(--fw-regular);
  color: #777777;
}

.irosubpage01_bestreview .cardset.cardset-user.cardset-hor {
  align-items: flex-start;
  padding: 2.4rem;
  border: 1px solid #e5e5e5;
  background: var(--white);
}

.irosubpage01_bestreview .cardset.cardset-user::after {
  content: none;
}

.irosubpage01_bestreview .cardset.cardset-user.cardset-hor .cardset-figure {
  width: 8rem;
  height: 8rem;
}

.irosubpage01_bestreview .cardset.cardset-user.cardset-hor .cardset-profile {
  padding-left: 2rem;
}

.irosubpage01_bestreview .cardset.cardset-user .cardset-text {
  color: #242424;
}

.irosubpage01_bestreview .cardset.cardset-user .cardset-text+.cardset-info {
  color: #777;
  font-weight: var(--fw-bold);
}

.irosubpage01_bestreview .contents-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.irosubpage01_bestreview .contents-control [class*="btn-"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: none;
}

.irosubpage01_bestreview .contents-control [class*="btn-"] img {
  width: 2rem;
  height: 2rem;
}

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

  .irosubpage01_bestreview .title-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    margin-bottom: 3rem;
  }

  .irosubpage01_bestreview .contents-control {
    margin-left: auto;
  }

  .irosubpage01_bestreview .textset-tit+.textset-desc {
    margin-top: 0.5rem;
  }

  .irosubpage01_bestreview .cardset.cardset-hor {
    display: flex;
  }

  .irosubpage01_bestreview .cardset.cardset-user.cardset-hor .cardset-profile {
    padding: 0 0 0 2rem;
    text-align: left;
  }
}
/* personal-vlMjg6t13J */
.personal-vlMjg6t13J {
  overflow: hidden;
  position: relative;
  padding-top: 20rem;
  padding-bottom: 8rem;
}

.personal-vlMjg6t13J .contents-inner {
  width: 100%;
}

.personal-vlMjg6t13J .title-area {
  margin-bottom: 6rem;
}

.personal-vlMjg6t13J .title-area p {
  margin-top: 0.4rem;
  color: var(--text-color3);
}

.personal-vlMjg6t13J .tabset.tabset-brick .tabset-item {
  flex: 1;
}

.personal-vlMjg6t13J .tabset.tabset-brick .tabset-list.tabset-lg .tabset-link {
  padding: 1.9rem 3.2rem;
  height: 100%;
}

@media (max-width: 992px) {
  .personal-vlMjg6t13J {
    padding-top: 12rem;
    padding-bottom: 4rem;
  }

  .personal-vlMjg6t13J .title-area {
    margin-bottom: 3rem;
  }

  .personal-vlMjg6t13J .tabset.tabset-brick .tabset-list {
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 0;
    border: 1px solid var(--border-color);
  }

  .personal-vlMjg6t13J .tabset.tabset-brick .tabset-item {
    margin: 0;
    width: 100%;
    border: none;
  }

  .personal-vlMjg6t13J .tabset.tabset-brick .tabset-item:nth-child(odd) {
    border-right: 1px solid var(--border-color);
  }

  .personal-vlMjg6t13J .tabset.tabset-brick .tabset-item:nth-child(n + 3) {
    border-top: 1px solid var(--border-color);
  }

  .personal-vlMjg6t13J .tabset.tabset-brick .tabset-list.tabset-lg .tabset-link {
    padding: 1.2rem 2.4rem;
    border: none;
    min-height: var(--ht-lg);
  }
}
/* irosubpage02_service */
.irosubpage02_service {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  --height-mjde6b7i: 600px;
  --height-mjde6t2h: 500px;
}

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

.irosubpage02_service .title-area {
  margin-bottom: 4rem;
}

.irosubpage02_service .title-area h2 {
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.irosubpage02_service .thumb-area {
  margin-bottom: 6rem;
  width: 100%;
  height: 42rem;
}

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

.irosubpage02_service .desc-area p {
  margin-top: 2rem;
  color: var(--text-color3);
}

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

  .irosubpage02_service .title-area {
    margin-bottom: 2rem;
  }

  .irosubpage02_service .thumb-area {
    margin-bottom: 3rem;
    height: auto;
    aspect-ratio: 328/220;
  }

  .irosubpage02_service .desc-area p {
    margin-top: 1.2rem;
  }
}
/* irosubpage02_process */
.irosubpage02_process {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.irosubpage02_process .contents-container {
  display: flex;
  justify-content: center;
}

.irosubpage02_process .bg {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  transform: translateY(-13rem);
  width: 100vw;
  height: 45.5rem;
}

.irosubpage02_process .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.irosubpage02_process .contents-inner {
  position: relative;
  width: 100%;
}

.irosubpage02_process .desc-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}

.irosubpage02_process .desc-area .title,
.irosubpage02_process .desc-area .desc {
  flex: 1;
}

.irosubpage02_process .desc-area .title h2 {
  color: #fff;
  font-weight: var(--fw-regular);
}

.irosubpage02_process .desc-area .desc h3 {
  color: #fff;
}

.irosubpage02_process .desc-area .desc p {
  margin-top: 1.6rem;
  color: #d1d1d1;
}

.irosubpage02_process .list-area {
  display: flex;
  gap: 4rem;
  margin: 4.2rem 0 6rem;
}

.irosubpage02_process .list-area li {
  flex: 1;
}

.irosubpage02_process .list-area .thumb {
  height: 23rem;
}

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

.irosubpage02_process .list-area .desc {
  margin-top: 2.4rem;
}

.irosubpage02_process .list-area .desc p {
  margin-top: 1.2rem;
  color: #666;
}

.irosubpage02_process .btn-wrap {
  text-align: center;
}

@media (max-width: 1200px) {
  .irosubpage02_process .bg {
    width: calc(100% + 8rem);
  }
}

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

  .irosubpage02_process::before {
    top: 6rem;
    height: 34rem;
  }

  .irosubpage02_process .bg {
    width: calc(100% + 3.2rem);
    transform: translateY(-6rem);
    height: 34rem;
  }

  .irosubpage02_process .desc-area {
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .irosubpage02_process .desc-area .title,
  .irosubpage02_process .desc-area .desc {
    flex: none;
  }

  .irosubpage02_process .desc-area .desc p {
    margin-top: 0.8rem;
  }

  .irosubpage02_process .list-area {
    overflow-x: auto;
    gap: 1.6rem;
    margin: 4rem 0 3.6rem;
    padding-right: 1.6rem;
    width: calc(100% + 1.6rem);
  }

  .irosubpage02_process .list-area li {
    flex: 1 0 19.4rem;
    min-width: 19.4rem;
  }

  .irosubpage02_process .list-area .thumb {
    height: 14rem;
  }

  .irosubpage02_process .list-area .desc {
    margin-top: 1.4rem;
  }

  .irosubpage02_process .list-area .desc p {
    margin-top: 0.8rem;
  }
}
/* irosubpage02_value */
.irosubpage02_value .ico-text {
  background: url(../images/cir_one.png) no-repeat center / cover !important;
}

.irosubpage02_value {
  position: relative;
  overflow: hidden;
}

.irosubpage02_value .contents-container {
  min-height: 80rem;
}

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

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

.irosubpage02_value .container-lg .visual-swiper {
  max-width: calc(1440px + 16rem);
}

.irosubpage02_value .container-md .visual-swiper {
  max-width: calc(1280px + 16rem);
}

.irosubpage02_value .container-sm .visual-swiper {
  max-width: calc(1024px + 16rem);
}

.irosubpage02_value .swiper-slide {
  height: 100%;
}

.irosubpage02_value .cardset {
  display: block;
  width: 100%;
  height: 100%;
}

.irosubpage02_value .cardset:hover .cardset-figure::before {
  height: 100%;
  background: rgba(var(--secondary-rgb), 0.8);
  opacity: 1;
  visibility: visible;
}

.irosubpage02_value .cardset:hover .cardset-desc {
  height: auto;
  min-height: 5.6rem;
  margin-top: 4rem;
  opacity: 1;
}

.irosubpage02_value .cardset .cardset-figure {
  width: 100%;
  height: 100%;
}

.irosubpage02_value .cardset .cardset-figure::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.irosubpage02_value .cardset .cardset-body {
  padding: 6rem;
}

.irosubpage02_value .cardset .cardset-tit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--white);
}

.irosubpage02_value .cardset .cardset-tit+.cardset-subtit {
  margin-top: 2rem;
}

.irosubpage02_value .cardset .cardset-subtit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #e8e8e8;
}

.irosubpage02_value .cardset .cardset-desc {
  -webkit-line-clamp: 4;
  height: 0;
  min-height: 0;
  margin: 0;
  opacity: 0;
  color: #e8e8e8;
  transition: 0.3s;
}

.irosubpage02_value .swiper-paging-btn {
  position: absolute;
  top: 50%;
  right: 8rem;
  transform: translateY(-50%);
  z-index: 10;
  width: 15.5rem;
  height: 15.5rem;
  background: none;
}

.irosubpage02_value .swiper-paging-btn.back .ico-arrow {
  transform: translate(-50%, -50%) scaleX(-1);
}

.irosubpage02_value .swiper-paging-btn::before,
.irosubpage02_value .swiper-paging-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: 0.6s;
  background: var(--white);
}

.irosubpage02_value .swiper-paging-btn::before {
  width: calc(100% - 6.5rem);
  height: calc(100% - 6.5rem);
  opacity: 0.8;
  z-index: 2;
}

.irosubpage02_value .swiper-paging-btn::after {
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 1;
}

.irosubpage02_value .swiper-paging-btn:hover::before {
  width: 0;
  height: 0;
  opacity: 0;
}

.irosubpage02_value .swiper-paging-btn:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.irosubpage02_value .swiper-paging-btn:hover .ico-text {
  filter: invert(100%);
  -webkit-filter: invert(100%);
}

.irosubpage02_value .swiper-paging-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.irosubpage02_value .swiper-paging-btn .ico-text {
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  background: url(../images/img_text_rotate_white.png) no-repeat center/cover;
  animation: textRotate 10s linear infinite;
  transition: filter 0.3s;
}

.irosubpage02_value .swiper-paging-btn .ico-arrow {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../icons/ico_arrow_black.svg) no-repeat center/cover;
  transition: 0.3s;
}

@keyframes textRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .irosubpage02_value .swiper-paging-btn {
    right: 4rem;
  }
}

@media (max-width: 992px) {
  .irosubpage02_value .contents-container {
    min-height: 60rem;
  }

  .irosubpage02_value .cardset:hover .cardset-desc {
    min-height: auto;
  }

  .irosubpage02_value .cardset .cardset-body {
    padding: 2.4rem 1.6rem;
  }

  .irosubpage02_value .cardset .cardset-tit+.cardset-subtit {
    margin-top: 1.4rem;
  }

  .irosubpage02_value .cardset .cardset-subtit+.cardset-desc {
    margin-top: 2.4rem;
  }

  .irosubpage02_value .cardset .cardset-desc {
    -webkit-line-clamp: 3;
    height: auto;
    min-height: auto;
    opacity: 1;
  }

  .irosubpage02_value .swiper-paging-btn {
    right: 1.6rem;
    width: 6.4rem;
    height: 6.4rem;
  }

  .irosubpage02_value .swiper-paging-btn::before {
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
  }

  .irosubpage02_value .swiper-paging-btn .ico-text {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }

  .irosubpage02_value .swiper-paging-btn .ico-arrow {
    width: 1.4rem;
    height: 1.4rem;
  }

  .irosubpage02_value {}
}
/* irosubpage02_reviewlist */
.irosubpage02_reviewlist {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 10rem;
}

.irosubpage02_reviewlist .contents-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
  width: 100%;
}

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

.irosubpage02_reviewlist .textset-tit {
  font-weight: var(--fw-medium);
}

.irosubpage02_reviewlist .slide-area {
  display: flex;
  align-items: center;
  position: relative;
  width: 100vw;
}

.irosubpage02_reviewlist .contents-swiper {
  width: 100%;
}

.irosubpage02_reviewlist .swiper-wrapper {
  transition-timing-function: linear;
}

.irosubpage02_reviewlist .swiper-slide {
  max-width: 34rem;
}

.irosubpage02_reviewlist .imageset {
  height: 43rem;
  width: 100%;
}

.irosubpage02_reviewlist .contents-control {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 64rem);
  transform: translate(-50%, -50%);
  z-index: 100;
}

.irosubpage02_reviewlist .swiper-button-next,
.irosubpage02_reviewlist .swiper-button-prev {
  position: relative;
  left: auto;
  right: auto;
  width: 6rem;
  height: 6rem;
  background-color: rgba(var(--black-rgb), 0.5);
  border-radius: 50%;
}

.irosubpage02_reviewlist .swiper-button-prev:after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../icons/ico_arrow_left_withe.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
}

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

.irosubpage02_reviewlist .swiper-button-next:after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../icons/ico_arrow_right_withe.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
}

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

  .irosubpage02_reviewlist .contents-inner {
    gap: 4rem;
  }

  .irosubpage02_reviewlist .swiper-slide {
    max-width: 15rem;
  }

  .irosubpage02_reviewlist .imageset {
    height: 18rem;
  }
}
/* irosubpage02_bestreview */
.irosubpage02_bestreview {
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 16rem;
}

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

.irosubpage02_bestreview .title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 7rem;
}

.irosubpage02_bestreview .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  font-weight: var(--fw-regular);
  color: #777777;
}

.irosubpage02_bestreview .cardset.cardset-user.cardset-hor {
  align-items: flex-start;
  padding: 2.4rem;
  border: 1px solid #e5e5e5;
  background: var(--white);
}

.irosubpage02_bestreview .cardset.cardset-user::after {
  content: none;
}

.irosubpage02_bestreview .cardset.cardset-user.cardset-hor .cardset-figure {
  width: 8rem;
  height: 8rem;
}

.irosubpage02_bestreview .cardset.cardset-user.cardset-hor .cardset-profile {
  padding-left: 2rem;
}

.irosubpage02_bestreview .cardset.cardset-user .cardset-text {
  color: #242424;
}

.irosubpage02_bestreview .cardset.cardset-user .cardset-text+.cardset-info {
  color: #777;
  font-weight: var(--fw-bold);
}

.irosubpage02_bestreview .contents-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.irosubpage02_bestreview .contents-control [class*="btn-"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: none;
}

.irosubpage02_bestreview .contents-control [class*="btn-"] img {
  width: 2rem;
  height: 2rem;
}

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

  .irosubpage02_bestreview .title-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    margin-bottom: 3rem;
  }

  .irosubpage02_bestreview .contents-control {
    margin-left: auto;
  }

  .irosubpage02_bestreview .textset-tit+.textset-desc {
    margin-top: 0.5rem;
  }

  .irosubpage02_bestreview .cardset.cardset-hor {
    display: flex;
  }

  .irosubpage02_bestreview .cardset.cardset-user.cardset-hor .cardset-profile {
    padding: 0 0 0 2rem;
    text-align: left;
  }
}
/* irosubpage03_service */
.irosubpage03_service {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
  --height-mjde6b7i: 600px;
  --height-mjde6t2h: 500px;
}

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

.irosubpage03_service .title-area {
  margin-bottom: 4rem;
}

.irosubpage03_service .title-area h2 {
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.irosubpage03_service .thumb-area {
  margin-bottom: 6rem;
  width: 100%;
  height: 42rem;
}

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

.irosubpage03_service .desc-area p {
  margin-top: 2rem;
  color: var(--text-color3);
}

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

  .irosubpage03_service .title-area {
    margin-bottom: 2rem;
  }

  .irosubpage03_service .thumb-area {
    margin-bottom: 3rem;
    height: auto;
    aspect-ratio: 328/220;
  }

  .irosubpage03_service .desc-area p {
    margin-top: 1.2rem;
  }
}
/* irosubpage03_process */
.irosubpage03_process {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.irosubpage03_process .contents-container {
  display: flex;
  justify-content: center;
}

.irosubpage03_process .bg {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  transform: translateY(-13rem);
  width: 100vw;
  height: 45.5rem;
}

.irosubpage03_process .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.irosubpage03_process .contents-inner {
  position: relative;
  width: 100%;
}

.irosubpage03_process .desc-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}

.irosubpage03_process .desc-area .title,
.irosubpage03_process .desc-area .desc {
  flex: 1;
}

.irosubpage03_process .desc-area .title h2 {
  color: #fff;
  font-weight: var(--fw-regular);
}

.irosubpage03_process .desc-area .desc h3 {
  color: #fff;
}

.irosubpage03_process .desc-area .desc p {
  margin-top: 1.6rem;
  color: #d1d1d1;
}

.irosubpage03_process .list-area {
  display: flex;
  gap: 4rem;
  margin: 4.2rem 0 6rem;
}

.irosubpage03_process .list-area li {
  flex: 1;
}

.irosubpage03_process .list-area .thumb {
  height: 23rem;
}

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

.irosubpage03_process .list-area .desc {
  margin-top: 2.4rem;
}

.irosubpage03_process .list-area .desc p {
  margin-top: 1.2rem;
  color: #666;
}

.irosubpage03_process .btn-wrap {
  text-align: center;
}

@media (max-width: 1200px) {
  .irosubpage03_process .bg {
    width: calc(100% + 8rem);
  }
}

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

  .irosubpage03_process::before {
    top: 6rem;
    height: 34rem;
  }

  .irosubpage03_process .bg {
    width: calc(100% + 3.2rem);
    transform: translateY(-6rem);
    height: 34rem;
  }

  .irosubpage03_process .desc-area {
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .irosubpage03_process .desc-area .title,
  .irosubpage03_process .desc-area .desc {
    flex: none;
  }

  .irosubpage03_process .desc-area .desc p {
    margin-top: 0.8rem;
  }

  .irosubpage03_process .list-area {
    overflow-x: auto;
    gap: 1.6rem;
    margin: 4rem 0 3.6rem;
    padding-right: 1.6rem;
    width: calc(100% + 1.6rem);
  }

  .irosubpage03_process .list-area li {
    flex: 1 0 19.4rem;
    min-width: 19.4rem;
  }

  .irosubpage03_process .list-area .thumb {
    height: 14rem;
  }

  .irosubpage03_process .list-area .desc {
    margin-top: 1.4rem;
  }

  .irosubpage03_process .list-area .desc p {
    margin-top: 0.8rem;
  }
}
/* irosubpage03_value */
.irosubpage03_value .ico-text {
  background: url(../images/cir_one.png) no-repeat center / cover !important;
}

.irosubpage03_value {
  position: relative;
  overflow: hidden;
}

.irosubpage03_value .contents-container {
  min-height: 80rem;
}

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

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

.irosubpage03_value .container-lg .visual-swiper {
  max-width: calc(1440px + 16rem);
}

.irosubpage03_value .container-md .visual-swiper {
  max-width: calc(1280px + 16rem);
}

.irosubpage03_value .container-sm .visual-swiper {
  max-width: calc(1024px + 16rem);
}

.irosubpage03_value .swiper-slide {
  height: 100%;
}

.irosubpage03_value .cardset {
  display: block;
  width: 100%;
  height: 100%;
}

.irosubpage03_value .cardset:hover .cardset-figure::before {
  height: 100%;
  background: rgba(var(--secondary-rgb), 0.8);
  opacity: 1;
  visibility: visible;
}

.irosubpage03_value .cardset:hover .cardset-desc {
  height: auto;
  min-height: 5.6rem;
  margin-top: 4rem;
  opacity: 1;
}

.irosubpage03_value .cardset .cardset-figure {
  width: 100%;
  height: 100%;
}

.irosubpage03_value .cardset .cardset-figure::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.irosubpage03_value .cardset .cardset-body {
  padding: 6rem;
}

.irosubpage03_value .cardset .cardset-tit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--white);
}

.irosubpage03_value .cardset .cardset-tit+.cardset-subtit {
  margin-top: 2rem;
}

.irosubpage03_value .cardset .cardset-subtit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #e8e8e8;
}

.irosubpage03_value .cardset .cardset-desc {
  -webkit-line-clamp: 4;
  height: 0;
  min-height: 0;
  margin: 0;
  opacity: 0;
  color: #e8e8e8;
  transition: 0.3s;
}

.irosubpage03_value .swiper-paging-btn {
  position: absolute;
  top: 50%;
  right: 8rem;
  transform: translateY(-50%);
  z-index: 10;
  width: 15.5rem;
  height: 15.5rem;
  background: none;
}

.irosubpage03_value .swiper-paging-btn.back .ico-arrow {
  transform: translate(-50%, -50%) scaleX(-1);
}

.irosubpage03_value .swiper-paging-btn::before,
.irosubpage03_value .swiper-paging-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: 0.6s;
  background: var(--white);
}

.irosubpage03_value .swiper-paging-btn::before {
  width: calc(100% - 6.5rem);
  height: calc(100% - 6.5rem);
  opacity: 0.8;
  z-index: 2;
}

.irosubpage03_value .swiper-paging-btn::after {
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 1;
}

.irosubpage03_value .swiper-paging-btn:hover::before {
  width: 0;
  height: 0;
  opacity: 0;
}

.irosubpage03_value .swiper-paging-btn:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.irosubpage03_value .swiper-paging-btn:hover .ico-text {
  filter: invert(100%);
  -webkit-filter: invert(100%);
}

.irosubpage03_value .swiper-paging-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.irosubpage03_value .swiper-paging-btn .ico-text {
  width: calc(100% - 2.5rem);
  height: calc(100% - 2.5rem);
  background: url(../images/img_text_rotate_white.png) no-repeat center/cover;
  animation: textRotate 10s linear infinite;
  transition: filter 0.3s;
}

.irosubpage03_value .swiper-paging-btn .ico-arrow {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../icons/ico_arrow_black.svg) no-repeat center/cover;
  transition: 0.3s;
}

@keyframes textRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .irosubpage03_value .swiper-paging-btn {
    right: 4rem;
  }
}

@media (max-width: 992px) {
  .irosubpage03_value .contents-container {
    min-height: 60rem;
  }

  .irosubpage03_value .cardset:hover .cardset-desc {
    min-height: auto;
  }

  .irosubpage03_value .cardset .cardset-body {
    padding: 2.4rem 1.6rem;
  }

  .irosubpage03_value .cardset .cardset-tit+.cardset-subtit {
    margin-top: 1.4rem;
  }

  .irosubpage03_value .cardset .cardset-subtit+.cardset-desc {
    margin-top: 2.4rem;
  }

  .irosubpage03_value .cardset .cardset-desc {
    -webkit-line-clamp: 3;
    height: auto;
    min-height: auto;
    opacity: 1;
  }

  .irosubpage03_value .swiper-paging-btn {
    right: 1.6rem;
    width: 6.4rem;
    height: 6.4rem;
  }

  .irosubpage03_value .swiper-paging-btn::before {
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
  }

  .irosubpage03_value .swiper-paging-btn .ico-text {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
  }

  .irosubpage03_value .swiper-paging-btn .ico-arrow {
    width: 1.4rem;
    height: 1.4rem;
  }

  .irosubpage03_value {}
}
/* irosubpage03_marketing */
.irosubpage03_marketing {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

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

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

.irosubpage03_marketing .textset .textset-subtit {
  display: block;
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.irosubpage03_marketing .textset .textset-tit {
  margin: 0.4rem 0 2rem;
}

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

.irosubpage03_marketing .list-area {
  display: flex;
  align-items: center;
  margin-top: 8rem;
}

.irosubpage03_marketing .list-area .item {
  flex: 1 1 calc(100% / 4);
  padding: 4rem 2rem;
  text-align: center;
}

.irosubpage03_marketing .list-area .item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.irosubpage03_marketing .list-area .item .num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0.2rem;
}

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

  .irosubpage03_marketing .textset .textset-tit {
    margin: 0.2rem 0 1.2rem;
  }

  .irosubpage03_marketing .list-area {
    flex-direction: column;
    margin-top: 4rem;
  }

  .irosubpage03_marketing .list-area .item {
    flex: none;
    padding: 4rem 1.6rem;
    width: 100%;
  }

  .irosubpage03_marketing .list-area .item:first-child {
    padding-top: 0;
  }

  .irosubpage03_marketing .list-area .item:last-child {
    padding-bottom: 0;
  }

  .irosubpage03_marketing .list-area .item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
}
/* irosubpage03_reviewlist */
.irosubpage03_reviewlist {
  overflow: hidden;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 10rem;
}

.irosubpage03_reviewlist .contents-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
  width: 100%;
}

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

.irosubpage03_reviewlist .textset-tit {
  font-weight: var(--fw-medium);
}

.irosubpage03_reviewlist .slide-area {
  display: flex;
  align-items: center;
  position: relative;
  width: 100vw;
}

.irosubpage03_reviewlist .contents-swiper {
  width: 100%;
}

.irosubpage03_reviewlist .swiper-wrapper {
  transition-timing-function: linear;
}

.irosubpage03_reviewlist .swiper-slide {
  max-width: 34rem;
}

.irosubpage03_reviewlist .imageset {
  height: 43rem;
  width: 100%;
}

.irosubpage03_reviewlist .contents-control {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 64rem);
  transform: translate(-50%, -50%);
  z-index: 100;
}

.irosubpage03_reviewlist .swiper-button-next,
.irosubpage03_reviewlist .swiper-button-prev {
  position: relative;
  left: auto;
  right: auto;
  width: 6rem;
  height: 6rem;
  background-color: rgba(var(--black-rgb), 0.5);
  border-radius: 50%;
}

.irosubpage03_reviewlist .swiper-button-prev:after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../icons/ico_arrow_left_withe.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
}

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

.irosubpage03_reviewlist .swiper-button-next:after {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../icons/ico_arrow_right_withe.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
}

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

  .irosubpage03_reviewlist .contents-inner {
    gap: 4rem;
  }

  .irosubpage03_reviewlist .swiper-slide {
    max-width: 15rem;
  }

  .irosubpage03_reviewlist .imageset {
    height: 18rem;
  }
}
/* irosubpage03_bestreview */
.irosubpage03_bestreview {
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 16rem;
}

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

.irosubpage03_bestreview .title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 7rem;
}

.irosubpage03_bestreview .textset-tit+.textset-desc {
  margin-top: 1.2rem;
  font-weight: var(--fw-regular);
  color: #777777;
}

.irosubpage03_bestreview .cardset.cardset-user.cardset-hor {
  align-items: flex-start;
  padding: 2.4rem;
  border: 1px solid #e5e5e5;
  background: var(--white);
}

.irosubpage03_bestreview .cardset.cardset-user::after {
  content: none;
}

.irosubpage03_bestreview .cardset.cardset-user.cardset-hor .cardset-figure {
  width: 8rem;
  height: 8rem;
}

.irosubpage03_bestreview .cardset.cardset-user.cardset-hor .cardset-profile {
  padding-left: 2rem;
}

.irosubpage03_bestreview .cardset.cardset-user .cardset-text {
  color: #242424;
}

.irosubpage03_bestreview .cardset.cardset-user .cardset-text+.cardset-info {
  color: #777;
  font-weight: var(--fw-bold);
}

.irosubpage03_bestreview .contents-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.irosubpage03_bestreview .contents-control [class*="btn-"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: none;
}

.irosubpage03_bestreview .contents-control [class*="btn-"] img {
  width: 2rem;
  height: 2rem;
}

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

  .irosubpage03_bestreview .title-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    margin-bottom: 3rem;
  }

  .irosubpage03_bestreview .contents-control {
    margin-left: auto;
  }

  .irosubpage03_bestreview .textset-tit+.textset-desc {
    margin-top: 0.5rem;
  }

  .irosubpage03_bestreview .cardset.cardset-hor {
    display: flex;
  }

  .irosubpage03_bestreview .cardset.cardset-user.cardset-hor .cardset-profile {
    padding: 0 0 0 2rem;
    text-align: left;
  }
}