@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------------
    Explain : 에이닉 홈페이지
    File : common.scss
    Date : 2025.03.18
    Ver : 1.0.0 (~adtech)
/*------------------------------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;1,600&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable-dynamic-subset.css");
/* header */
/* footer */
/* main */
/* about */
/* biz */
/* notice */
/* adtech */
/* images */
/* icon */
/* main */
/* about */
/* biz */
/* notice */
/* tech */
/* font */
/* layout */
/* scroll */
/* reset */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  font-size: 62.5%;
  /* 1rem = 10px */
}

html {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  font-size: 1rem;
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100vh;
  font-size: 1rem;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  display: block;
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

button {
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
  cursor: pointer;
}

input {
  background: transparent;
  border: 0;
  outline: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

em {
  font-style: normal;
}

li {
  list-style: none;
}

body {
  overflow-y: auto;
}
body::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
body::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 5px;
}
body::-webkit-scrollbar-track {
  background: #ffffff;
}

.scroll-lock {
  overflow: hidden !important;
}

::-moz-selection {
  background: #7757ff;
  color: #ffffff;
}

::selection {
  background: #7757ff;
  color: #ffffff;
}

.wrap {
  position: relative;
  scroll-behavior: smooth;
  background: #000000;
}
.wrap .inner {
  position: relative;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}
.wrap .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10.3rem;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}
.wrap .header.scroll {
  background: rgba(0, 0, 0, 0.7);
}
.wrap .header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
}
.wrap .header h1 {
  z-index: 1;
}
.wrap .header h1 a {
  font-size: 0;
  background: url("../../../public/images///img_logo.png") no-repeat center;
  background-size: 100%;
  width: 20rem;
  height: 4.3rem;
}
.wrap .header .gnb_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 6rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.wrap .header .gnb_wrap ul li a {
  font-weight: 700;
  font-size: 1.8rem;
  color: #888888;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wrap .header .gnb_wrap ul li.active a {
  color: #ffffff;
}
.wrap .header .gnb_wrap ul li:hover a {
  color: #7757ff;
}
.wrap .header .mo_nav_btn {
  display: none;
  z-index: 1;
  cursor: pointer;
}
.wrap .header .mo_nav_btn .line {
  width: 4rem;
  height: 0.2rem;
  background: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wrap .header .mo_nav_btn.on {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.wrap .header .mo_nav_btn.on .line:nth-child(2) {
  opacity: 0;
  width: 0;
  height: 0;
}
.wrap .header .mo_nav_btn.on .line:nth-child(3) {
  -webkit-transform: translateY(-0.15rem) rotate(-90deg);
  transform: translateY(-0.15rem) rotate(-90deg);
}
.wrap .header .mo_nav {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
  width: 100vw;
  height: 100vh;
  background: #000000;
  overflow-y: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wrap .header .mo_nav.hide {
  opacity: 0;
  right: -100%;
}
.wrap .header .mo_nav ul {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  padding-left: 6rem;
}
.wrap .header .mo_nav ul li a {
  font-weight: 700;
  font-size: 5rem;
  color: #ffffff;
}
.wrap .header .mo_nav ul li + li {
  margin-top: 5rem;
}
.wrap .header .mo_nav .nav_footer {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}
.wrap .header .mo_nav .nav_footer p {
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  color: #9b9b9b;
}
.wrap .footer {
  background: #000000;
}
.wrap .footer .inner {
  padding: 7rem 2rem;
}
.wrap .footer p {
  font-weight: 500;
  font-size: 1.8rem;
  color: #9b9b9b;
  text-align: center;
  line-height: 2.4rem;
  word-break: keep-all;
}
.wrap .footer p a {
  display: inline-block;
  font-weight: 700;
  font-size: 1.8rem;
  color: #ffffff;
  text-align: center;
}
.wrap .contents {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.wrap .contents .line {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0.5px;
  height: 100%;
  background: #ffffff;
  opacity: 0.2;
}
.wrap .contents .scroll_down {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 160px;
  right: 80px;
  z-index: 1;
  -webkit-transition: opacity 0.7s ease, visibility 0.7s ease;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.wrap .contents .scroll_down.show {
  visibility: visible;
  opacity: 1;
}
.wrap .contents .scroll_down .circle {
  background: url("../../../public/images///img_arrow_circle.png") no-repeat
    center;
  background-size: 100%;
  width: 10rem;
  height: 10rem;
  -webkit-animation: circle-spin infinite forwards 10s linear;
  animation: circle-spin infinite forwards 10s linear;
}
.wrap .contents .scroll_down .arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("../../../public/images///img_arrow.png") no-repeat center;
  background-size: 100%;
  width: 2rem;
  height: 3.6rem;
}
.wrap .contents .sc01 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.wrap .contents .sc01 h2 {
  font-weight: 700;
  font-size: 16rem;
  color: #ffffff;
  text-align: center;
}
.wrap .contents .sc01 .scroll {
  width: 45px;
  height: 77px;
  border-radius: 38px;
  border: 1px solid #ffffff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding-top: 22px;
}
.wrap .contents .sc01 .scroll .arrow {
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid #ffffff;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0 auto;
  margin-bottom: -4px;
  -webkit-animation: scroll-arrow infinite 3s forwards;
  animation: scroll-arrow infinite 3s forwards;
}
.wrap .contents .sc01 .scroll .arrow:nth-of-type(1) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.wrap .contents .sc01 .scroll .arrow:nth-of-type(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.wrap .contents .sc01 .scroll .arrow:nth-of-type(3) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.page_temporarily {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: url("../../../public/images///img_temporarily.png") no-repeat
    center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.page_temporarily p {
  max-width: 94rem;
  font-weight: 700;
  font-size: 4rem;
  line-height: 6rem;
  color: #ffffff;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .wrap .header {
    top: 5rem;
    height: auto;
  }
  .wrap .header.scroll {
    background: transparent;
  }
  .wrap .header .inner {
    padding: 0 4rem;
  }
  .wrap .header h1 a {
    width: 24rem;
    height: 5.2rem;
  }
  .wrap .header .gnb_wrap {
    display: none;
  }
  .wrap .header .mo_nav_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .wrap .header .mo_nav {
    display: block;
  }
  .wrap .contents .scroll_down {
    display: none;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  .wrap .contents .sc01 h2 {
    font-size: 9rem;
  }
  .wrap .footer p {
    font-size: 2.2rem;
    line-height: 3.6rem;
  }
  .wrap .footer p a {
    font-size: 2.2rem;
  }
  .page_temporarily p {
    max-width: 56rem;
    font-size: 3rem;
    line-height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap .header {
    top: 2.5rem;
    height: auto;
  }
  .wrap .header.scroll {
    background: transparent;
  }
  .wrap .header .inner {
    padding: 0 2rem;
  }
  .wrap .header h1 a {
    width: 15rem;
    height: 3.3rem;
  }
  .wrap .header .gnb_wrap {
    display: none;
  }
  .wrap .header .mo_nav_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.7rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .wrap .header .mo_nav_btn .line {
    width: 2.4rem;
  }
  .wrap .header .mo_nav ul {
    padding-left: 4rem;
  }
  .wrap .header .mo_nav ul li a {
    font-size: 2.5rem;
  }
  .wrap .header .mo_nav .nav_footer p {
    font-size: 1.4rem;
  }
  .wrap .contents .scroll_down {
    display: none;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  .wrap .contents .sc01 h2 {
    font-size: 6rem;
  }
  .wrap .contents .sc01 .scroll {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  .wrap .footer p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .wrap .footer p a {
    font-size: 1.4rem;
  }
  .page_temporarily p {
    max-width: 90%;
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
@-webkit-keyframes spin-dot {
  0% {
    -webkit-transform: scale(1) rotate(0deg) translate(35px);
    transform: scale(1) rotate(0deg) translate(35px);
  }
  50% {
    -webkit-transform: scale(1.2) rotate(180deg) translate(35px);
    transform: scale(1.2) rotate(180deg) translate(35px);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg) translate(35px);
    transform: scale(1) rotate(360deg) translate(35px);
  }
}
@keyframes spin-dot {
  0% {
    -webkit-transform: scale(1) rotate(0deg) translate(35px);
    transform: scale(1) rotate(0deg) translate(35px);
  }
  50% {
    -webkit-transform: scale(1.2) rotate(180deg) translate(35px);
    transform: scale(1.2) rotate(180deg) translate(35px);
  }
  100% {
    -webkit-transform: scale(1) rotate(360deg) translate(35px);
    transform: scale(1) rotate(360deg) translate(35px);
  }
}
@-webkit-keyframes scroll-arrow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll-arrow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes circle-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle-spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes ripple-effect {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(6);
    transform: translate(-50%, -50%) scale(6);
    opacity: 0;
  }
}
@keyframes ripple-effect {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(6);
    transform: translate(-50%, -50%) scale(6);
    opacity: 0;
  }
}
@-webkit-keyframes blur-circle {
  50% {
    opacity: 0.15;
    -webkit-filter: blur(100px);
    filter: blur(100px);
  }
}
@keyframes blur-circle {
  50% {
    opacity: 0.15;
    -webkit-filter: blur(100px);
    filter: blur(100px);
  }
}
@-webkit-keyframes scrolling {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@keyframes scrolling {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-down {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/* 메뉴별 */
.main {
  width: 100vw;
  min-height: 100vh;
  height: auto;
  background: #191919;
}
.main .grid_container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: calc(33.82vh - 20px) calc(35.78vh - 20px) calc(
      30.39vh - 20px
    );
  gap: 1rem;
  width: 100%;
  max-width: 575.4rem;
  height: 100vh;
  padding: 2rem;
}
.main .grid_container .grid_item {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  cursor: pointer;
}
.main .grid_container .grid_item .bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.main .grid_container .grid_item .tit {
  font-family: "Montserrat";
  font-weight: 600;
  z-index: 2;
}
.main .grid_container .grid_item.about {
  grid-row: span 2;
  grid-column: span 1;
  background: #8100a7 url("../../../public/images//main/img_main_about.png")
    no-repeat left top;
  background-size: contain;
}
.main .grid_container .grid_item.about::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 2.3rem;
  bottom: 3.4rem;
  background: url("../../../public/images//main/img_main_about_logo.png")
    no-repeat center;
  background-size: contain;
  width: 18.3rem;
  height: 16.5rem;
}
.main .grid_container .grid_item.about .tit {
  position: absolute;
  top: 3.7rem;
  left: 2.3rem;
  font-size: 6rem;
  color: #ffffff;
  opacity: 0.5;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.main .grid_container .grid_item.about .effect {
  position: absolute;
  width: 100%;
  height: 100%;
}
.main .grid_container .grid_item.about .effect video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main .grid_container .grid_item.biz {
  grid-row: span 2;
  grid-column: span 2;
}
.main .grid_container .grid_item.biz .bg {
  background: url("../../../public/images//main/img_main_biz.png") no-repeat
    center;
  background-size: cover;
  mix-blend-mode: overlay;
  z-index: 2;
}
.main .grid_container .grid_item.biz .bg::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
}
.main .grid_container .grid_item.biz .blur_cursor {
  display: none;
  position: absolute;
  width: 64rem;
  height: 64rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: exclusion;
}
.main .grid_container .grid_item.biz .tit {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 8rem;
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.4);
  width: 100%;
  text-align: center;
}
.main .grid_container .grid_item.biz .tit::before {
  content: "Platform Biz";
  display: block;
  opacity: 0;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  position: absolute;
  left: 50%;
  top: -3.9rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}
.main .grid_container .grid_item.biz .tit::after {
  content: "Platform Biz";
  display: block;
  opacity: 0;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  position: absolute;
  left: 50%;
  bottom: -3.9rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}
.main .grid_container .grid_item.biz .circle {
  position: absolute;
  top: 3rem;
  right: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 9.2rem;
  height: 9.2rem;
  pointer-events: none;
  z-index: 3;
}
.main .grid_container .grid_item.biz .circle .dot {
  position: absolute;
  width: 1.42rem;
  height: 1.42rem;
  background: #ffffff;
  border-radius: 50%;
}
.main .grid_container .grid_item.biz .circle .dot:nth-child(1) {
  -webkit-transform: rotate(0deg) translate(35px);
  transform: rotate(0deg) translate(35px);
}
.main .grid_container .grid_item.biz .circle .dot:nth-child(2) {
  -webkit-transform: rotate(45deg) translate(35px);
  transform: rotate(45deg) translate(35px);
}
.main .grid_container .grid_item.biz .circle .dot:nth-child(3) {
  -webkit-transform: rotate(90deg) translate(35px);
  transform: rotate(90deg) translate(35px);
}
.main .grid_container .grid_item.biz .circle .dot:nth-child(4) {
  -webkit-transform: rotate(135deg) translate(35px);
  transform: rotate(135deg) translate(35px);
}
.main .grid_container .grid_item.biz .circle .dot:nth-child(5) {
  -webkit-transform: rotate(180deg) translate(35px);
  transform: rotate(180deg) translate(35px);
}
.main .grid_container .grid_item.biz .circle .dot:nth-child(6) {
  -webkit-transform: rotate(225deg) translate(35px);
  transform: rotate(225deg) translate(35px);
}
.main .grid_container .grid_item.biz .circle .dot:nth-child(7) {
  -webkit-transform: rotate(270deg) translate(35px);
  transform: rotate(270deg) translate(35px);
}
.main .grid_container .grid_item.biz .circle .dot:nth-child(8) {
  -webkit-transform: rotate(315deg) translate(35px);
  transform: rotate(315deg) translate(35px);
}
.main .grid_container .grid_item.biz:hover .bg::before {
  opacity: 0.2;
}
.main .grid_container .grid_item.biz:hover .tit {
  opacity: 0.9;
}
.main .grid_container .grid_item.biz:hover .tit::before {
  opacity: 0.1;
}
.main .grid_container .grid_item.biz:hover .tit::after {
  opacity: 0.1;
}
.main .grid_container .grid_item.biz:hover .circle {
  -webkit-animation: circle-spin 4s linear infinite;
  animation: circle-spin 4s linear infinite;
}
.main .grid_container .grid_item.contact {
  grid-row: span 1;
  grid-column: span 1;
}
.main .grid_container .grid_item.contact .bg {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background: url("../../../public/images//main/img_main_contact.png") no-repeat
    center;
  background-size: cover;
}
.main .grid_container .grid_item.contact .tit {
  position: absolute;
  bottom: 4rem;
  left: 2.3rem;
  font-size: 4rem;
  color: #00bfde;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}
.main .grid_container .grid_item.contact .tit span {
  display: block;
  font-size: 14rem;
  color: #ffffff;
  opacity: 0.5;
  line-height: 7rem;
}
.main .grid_container .grid_item.contact:hover .bg {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.main .grid_container .grid_item.portfolio {
  grid-row: span 1;
  grid-column: span 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.main .grid_container .grid_item.portfolio .bg {
  position: absolute;
  top: 0;
  left: 0;
  background: url("../../../public/images//main/img_main_portfolio.png")
    no-repeat center;
  background-size: cover;
}
.main .grid_container .grid_item.portfolio .bg::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.6;
}
.main .grid_container .grid_item.portfolio .tit {
  position: relative;
  font-size: 6.4rem;
  text-align: center;
  color: #ffffff;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
}
.main .grid_container .grid_item.portfolio:hover .bg::before {
  opacity: 0;
}
.main .grid_container .grid_item.portfolio:hover .tit {
  opacity: 0.8;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main .grid_container .grid_item.portfolio:hover .tit span {
  color: #ff9100;
}
.main .grid_container .grid_item.tech {
  grid-row: span 1;
  grid-column: span 2;
}
.main .grid_container .grid_item.tech .bg {
  background: url("../../../public/images//main/img_main_tech.png") no-repeat
    center;
  background-size: cover;
}
.main .grid_container .grid_item.tech .bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main .grid_container .grid_item.tech .tit {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
}
.main .grid_container .grid_item.tech .tit span {
  font-size: 6.2rem;
  color: #ffffff;
  opacity: 0.6;
  text-align: center;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}
.main .grid_container .grid_item.tech .tit em {
  display: block;
  font-size: 0;
  opacity: 1 !important;
  background: url("../../../public/images//main/img_main_tech_txt.png")
    no-repeat center;
  background-size: 200%;
  width: 6.9rem;
  height: 7.1rem;
  margin: 0 1rem;
}
.main .grid_container .grid_item.ai {
  grid-row: span 1;
  grid-column: span 2;
}
.main .grid_container .grid_item.ai .bg {
  background: url("../../../public/images//main/img_main_ai.png") no-repeat
    center;
  background-size: cover;
  mix-blend-mode: overlay;
  z-index: 2;
}
.main .grid_container .grid_item.ai .blur_cursor_ai {
  display: none;
  position: absolute;
  width: 56rem;
  height: 56rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: exclusion;
}
.main .grid_container .grid_item.ai .tit {
  position: absolute;
  bottom: 1.9rem;
  left: 3.6rem;
  font-size: 5rem;
  line-height: 5.6rem;
  text-align: left;
  color: #ffffff;
}
.main .grid_container .grid_item.ai .tit span {
  display: block;
  color: #ffffff;
}
.main .grid_container .grid_item.ai:hover .bg::before {
  opacity: 0.2;
}
.main .grid_container .grid_item.ai:hover .tit {
  opacity: 0.8;
  color: #ff9100;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.4);
}
.main .grid_container .grid_item.ad {
  grid-row: span 1;
  grid-column: span 1;
}
.main .grid_container .grid_item.ad .bg {
  background: url("../../../public/images//main/img_main_ad.png") no-repeat
    center;
  background-size: cover;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.main .grid_container .grid_item.ad .tit {
  opacity: 0.7;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 5.7rem;
  text-align: center;
  color: #ff4e72;
  text-shadow: 0 3px 20px #0775ae;
}
.main .grid_container .grid_item.ad .tit span {
  display: block;
  font-size: 9.3rem;
  color: #ffffff;
  line-height: 8rem;
}
.main .grid_container .grid_item.ad:hover .bg {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.main .grid_container .grid_item.gamification {
  grid-row: span 1;
  grid-column: span 1;
}
.main .grid_container .grid_item.gamification .bg {
  background: url("../../../public/images//main/img_main_gamification.png")
    no-repeat center;
  background-size: cover;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.main .grid_container .grid_item.gamification .tit {
  font-family: "Montserrat";
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 4.5rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}
.main .grid_container .grid_item.gamification .tit::before {
  content: "";
  display: inline-block;
  background: url("../../../public/images//main/img_main_gami_txt.png")
    no-repeat center;
  background-size: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 26rem;
  height: 14.2rem;
}
.main .grid_container .grid_item.gamification:hover .bg {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.main .grid_container .grid_item.weare {
  grid-row: span 1;
  grid-column: span 1;
}
.main .grid_container .grid_item.weare .bg {
  position: absolute;
  top: 0;
  left: 0;
  background: url("../../../public/images//main/img_main_weare.png") no-repeat
    center;
  background-size: cover;
}
.main .grid_container .grid_item.weare .bg::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.6;
}
.main .grid_container .grid_item.weare .tit {
  position: absolute;
  top: 1.8rem;
  right: 2.5rem;
  font-size: 8rem;
  text-align: right;
  color: #ffffff;
}
.main .grid_container .grid_item.weare .tit span {
  display: block;
  color: #ffffff;
  line-height: 4rem;
}
.main .grid_container .grid_item.weare:hover .bg::before {
  opacity: 0;
}
.main .grid_container .grid_item.weare:hover .tit {
  opacity: 0.8;
  color: #ff4e72;
}
.main .floating_btn {
  display: none;
}

@media (min-width: 1201px) and (max-width: 1400px) {
  :root {
    font-size: 47.5%;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  :root {
    font-size: 42.5%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    font-size: 62.5%;
  }
  .main .grid_container {
    padding: 3rem;
    height: auto;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .main .grid_container .grid_item {
    border-radius: 2rem;
  }
  .main .grid_container .grid_item.about {
    width: calc(31.17% - 0.75rem);
    aspect-ratio: 216/447;
  }
  .main .grid_container .grid_item.about .tit {
    font-size: 3.5rem;
    top: 2.3rem;
    left: 1.7rem;
  }
  .main .grid_container .grid_item.about::after {
    bottom: 2.1rem;
    right: 1.4rem;
    width: 11.3rem;
    height: 10.2rem;
  }
  .main .grid_container .grid_item.biz {
    width: calc(68.83% - 0.75rem);
    aspect-ratio: 477/447;
  }
  .main .grid_container .grid_item.biz .bg {
    mix-blend-mode: normal;
    z-index: 0;
  }
  .main .grid_container .grid_item.biz .bg::before {
    content: none;
  }
  .main .grid_container .grid_item.biz .tit {
    font-size: 4.7rem;
  }
  .main .grid_container .grid_item.biz .tit::before {
    opacity: 0.3;
    position: absolute;
    left: 50%;
    top: -2.4rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .main .grid_container .grid_item.biz .tit::after {
    opacity: 0.3;
    position: absolute;
    left: 50%;
    bottom: -2.4rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .main .grid_container .grid_item.biz .circle {
    top: 1.8rem;
    right: 1.8rem;
    width: 5.8rem;
    height: 5.8rem;
    -webkit-animation: circle-spin 5s linear infinite;
    animation: circle-spin 5s linear infinite;
  }
  .main .grid_container .grid_item.biz .circle .dot {
    width: 0.89rem;
    height: 0.89rem;
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(1) {
    -webkit-transform: rotate(0deg) translate(24px);
    transform: rotate(0deg) translate(24px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(2) {
    -webkit-transform: rotate(45deg) translate(24px);
    transform: rotate(45deg) translate(24px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(3) {
    -webkit-transform: rotate(90deg) translate(24px);
    transform: rotate(90deg) translate(24px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(4) {
    -webkit-transform: rotate(135deg) translate(24px);
    transform: rotate(135deg) translate(24px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(5) {
    -webkit-transform: rotate(180deg) translate(24px);
    transform: rotate(180deg) translate(24px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(6) {
    -webkit-transform: rotate(225deg) translate(24px);
    transform: rotate(225deg) translate(24px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(7) {
    -webkit-transform: rotate(270deg) translate(24px);
    transform: rotate(270deg) translate(24px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(8) {
    -webkit-transform: rotate(315deg) translate(24px);
    transform: rotate(315deg) translate(24px);
  }
  .main .grid_container .grid_item.biz:hover .tit::before {
    opacity: 0.3;
  }
  .main .grid_container .grid_item.biz:hover .tit::after {
    opacity: 0.3;
  }
  .main .grid_container .grid_item.contact {
    width: calc(49.06% - 0.75rem);
    aspect-ratio: 340/322;
  }
  .main .grid_container .grid_item.contact.in-view .bg {
    -webkit-animation: zoom-in 1s alternate;
    animation: zoom-in 1s alternate;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  .main .grid_container .grid_item.contact .tit {
    font-size: 4rem;
  }
  .main .grid_container .grid_item.contact .tit span {
    font-size: 13rem;
    line-height: 6rem;
  }
  .main .grid_container .grid_item.contact:hover .bg {
    -webkit-transform: none;
    transform: none;
  }
  .main .grid_container .grid_item.portfolio {
    width: calc(50.94% - 0.75rem);
    aspect-ratio: 353/322;
  }
  .main .grid_container .grid_item.portfolio .bg::before {
    content: none;
  }
  .main .grid_container .grid_item.portfolio .tit {
    font-size: 6.4rem;
    opacity: 0.8;
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
  }
  .main .grid_container .grid_item.portfolio .tit span {
    color: #ff9100;
  }
  .main .grid_container .grid_item.portfolio:hover .tit {
    -webkit-transform: none;
    transform: none;
  }
  .main .grid_container .grid_item.portfolio.in-view .tit {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .main .grid_container .grid_item.tech {
    width: 100%;
    aspect-ratio: 708/350;
  }
  .main .grid_container .grid_item.ai {
    width: calc(66.67% - 0.75rem);
    aspect-ratio: 462/197;
    opacity: 0;
  }
  .main .grid_container .grid_item.ai.in-view {
    -webkit-animation: slide-down 0.6s forwards;
    animation: slide-down 0.6s forwards;
  }
  .main .grid_container .grid_item.ai .bg {
    mix-blend-mode: normal;
    z-index: 0;
  }
  .main .grid_container .grid_item.ai .tit {
    left: 2rem;
    bottom: 1.5rem;
    font-size: 3.1rem;
    line-height: 3.5rem;
    opacity: 0.8;
    color: #ff9100;
    text-shadow: 0 3px 30px rgba(0, 0, 0, 0.4);
  }
  .main .grid_container .grid_item.ad {
    width: calc(33.33% - 0.75rem);
    aspect-ratio: 231/197;
    opacity: 0;
  }
  .main .grid_container .grid_item.ad.in-view {
    -webkit-animation: slide-right 0.6s forwards;
    animation: slide-right 0.6s forwards;
  }
  .main .grid_container .grid_item.ad .bg {
    background: url("../../../public/images//main/img_main_ad.png") no-repeat
      center;
    background-size: cover;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .main .grid_container .grid_item.ad .tit {
    font-size: 3.2rem;
  }
  .main .grid_container .grid_item.ad .tit span {
    font-size: 5.6rem;
    line-height: 4.6rem;
  }
  .main .grid_container .grid_item.ad:hover .bg {
    -webkit-transform: none;
    transform: none;
  }
  .main .grid_container .grid_item.gamification {
    width: calc(49.06% - 0.75rem);
    aspect-ratio: 340/289;
    opacity: 0;
  }
  .main .grid_container .grid_item.gamification.in-view {
    -webkit-animation: slide-left 0.6s forwards;
    animation: slide-left 0.6s forwards;
  }
  .main .grid_container .grid_item.gamification .tit {
    font-size: 4.1rem;
  }
  .main .grid_container .grid_item.gamification .tit::before {
    width: 24rem;
    height: 13rem;
  }
  .main .grid_container .grid_item.gamification:hover .bg {
    -webkit-transform: none;
    transform: none;
  }
  .main .grid_container .grid_item.weare {
    width: calc(50.94% - 0.75rem);
    aspect-ratio: 353/289;
    opacity: 0;
  }
  .main .grid_container .grid_item.weare.in-view {
    -webkit-animation: slide-top 0.6s forwards;
    animation: slide-top 0.6s forwards;
  }
  .main .grid_container .grid_item.weare .bg::before {
    content: none;
  }
  .main .grid_container .grid_item.weare .tit {
    top: 2rem;
    opacity: 0.8;
    color: #ff4e72;
  }
}
@media screen and (max-width: 767px) {
  :root {
    font-size: 62.5%;
  }
  .main .grid_container {
    padding: 2rem;
    height: auto;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .main .grid_container .grid_item {
    border-radius: 1rem;
  }
  .main .grid_container .grid_item.about {
    width: 100%;
    aspect-ratio: 325/150;
    background-size: 60%;
    background-position: left 25%;
  }
  .main .grid_container .grid_item.about .tit {
    font-size: 2rem;
    top: 1.5rem;
    left: 1.5rem;
  }
  .main .grid_container .grid_item.about::after {
    bottom: 2rem;
    right: 2rem;
    width: 9rem;
    height: 8rem;
  }
  .main .grid_container .grid_item.biz {
    width: 100%;
    aspect-ratio: 325/305;
  }
  .main .grid_container .grid_item.biz .bg {
    mix-blend-mode: normal;
    z-index: 0;
  }
  .main .grid_container .grid_item.biz .bg::before {
    content: none;
  }
  .main .grid_container .grid_item.biz .tit {
    font-size: 3.2rem;
  }
  .main .grid_container .grid_item.biz .tit::before {
    opacity: 0.3;
    position: absolute;
    left: 50%;
    top: -1.6rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .main .grid_container .grid_item.biz .tit::after {
    opacity: 0.3;
    position: absolute;
    left: 50%;
    bottom: -1.6rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .main .grid_container .grid_item.biz .circle {
    top: 2.5rem;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
    -webkit-animation: circle-spin 5s linear infinite;
    animation: circle-spin 5s linear infinite;
  }
  .main .grid_container .grid_item.biz .circle .dot {
    width: 0.61rem;
    height: 0.61rem;
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(1) {
    -webkit-transform: rotate(0deg) translate(17px);
    transform: rotate(0deg) translate(17px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(2) {
    -webkit-transform: rotate(45deg) translate(17px);
    transform: rotate(45deg) translate(17px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(3) {
    -webkit-transform: rotate(90deg) translate(17px);
    transform: rotate(90deg) translate(17px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(4) {
    -webkit-transform: rotate(135deg) translate(17px);
    transform: rotate(135deg) translate(17px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(5) {
    -webkit-transform: rotate(180deg) translate(17px);
    transform: rotate(180deg) translate(17px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(6) {
    -webkit-transform: rotate(225deg) translate(17px);
    transform: rotate(225deg) translate(17px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(7) {
    -webkit-transform: rotate(270deg) translate(17px);
    transform: rotate(270deg) translate(17px);
  }
  .main .grid_container .grid_item.biz .circle .dot:nth-child(8) {
    -webkit-transform: rotate(315deg) translate(17px);
    transform: rotate(315deg) translate(17px);
  }
  .main .grid_container .grid_item.biz:hover .tit::before {
    opacity: 0.3;
  }
  .main .grid_container .grid_item.biz:hover .tit::after {
    opacity: 0.3;
  }
  .main .grid_container .grid_item.contact {
    display: none;
  }
  .main .grid_container .grid_item.portfolio {
    width: 100%;
    aspect-ratio: 325/200;
  }
  .main .grid_container .grid_item.portfolio .bg::before {
    content: none;
  }
  .main .grid_container .grid_item.portfolio .tit {
    font-size: 4rem;
    opacity: 0.8;
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
  }
  .main .grid_container .grid_item.portfolio .tit span {
    color: #ff9100;
  }
  .main .grid_container .grid_item.portfolio:hover .tit {
    -webkit-transform: none;
    transform: none;
  }
  .main .grid_container .grid_item.portfolio.in-view .tit {
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  .main .grid_container .grid_item.tech {
    width: 100%;
    aspect-ratio: 325/161;
  }
  .main .grid_container .grid_item.tech .tit span {
    font-size: 3.6rem;
  }
  .main .grid_container .grid_item.tech .tit em {
    width: 3.7rem;
    height: 3.8rem;
    margin: 0 0.5rem;
  }
  .main .grid_container .grid_item.ai {
    width: calc(50% - 0.5rem);
    aspect-ratio: 158/158;
    opacity: 0;
  }
  .main .grid_container .grid_item.ai.in-view {
    -webkit-animation: slide-down 0.6s forwards;
    animation: slide-down 0.6s forwards;
  }
  .main .grid_container .grid_item.ai .bg {
    mix-blend-mode: normal;
    z-index: 0;
  }
  .main .grid_container .grid_item.ai .bg::before {
    content: none;
  }
  .main .grid_container .grid_item.ai .tit {
    opacity: 0.8;
    color: #ff9100;
    left: 1rem;
    bottom: 1rem;
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .main .grid_container .grid_item.ad {
    width: calc(50% - 0.5rem);
    aspect-ratio: 158/158;
    opacity: 0;
  }
  .main .grid_container .grid_item.ad.in-view {
    -webkit-animation: slide-right 0.6s forwards;
    animation: slide-right 0.6s forwards;
  }
  .main .grid_container .grid_item.ad .tit {
    font-size: 2.6rem;
  }
  .main .grid_container .grid_item.ad .tit span {
    font-size: 4.2rem;
    line-height: 3.6rem;
  }
  .main .grid_container .grid_item.ad:hover .bg {
    -webkit-transform: none;
    transform: none;
  }
  .main .grid_container .grid_item.gamification {
    width: calc(50% - 0.5rem);
    aspect-ratio: 158/158;
    opacity: 0;
  }
  .main .grid_container .grid_item.gamification.in-view {
    -webkit-animation: slide-left 0.6s forwards;
    animation: slide-left 0.6s forwards;
  }
  .main .grid_container .grid_item.gamification .tit {
    font-size: 2rem;
  }
  .main .grid_container .grid_item.gamification .tit::before {
    width: 11.5rem;
    height: 6.3rem;
    background-size: contain;
  }
  .main .grid_container .grid_item.gamification:hover .bg {
    -webkit-transform: none;
    transform: none;
  }
  .main .grid_container .grid_item.weare {
    width: calc(50% - 0.5rem);
    aspect-ratio: 158/158;
    opacity: 0;
  }
  .main .grid_container .grid_item.weare.in-view {
    -webkit-animation: slide-top 0.6s forwards;
    animation: slide-top 0.6s forwards;
  }
  .main .grid_container .grid_item.weare .bg::before {
    content: none;
  }
  .main .grid_container .grid_item.weare .tit {
    top: 1rem;
    right: 1rem;
    font-size: 4rem;
    color: #ff4e72;
  }
  .main .grid_container .grid_item.weare .tit span {
    line-height: 3rem;
  }
  .main .floating_btn {
    z-index: 10;
    display: block;
    position: fixed;
    right: 0.8rem;
    bottom: 4rem;
    background: #8100a7;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
    width: 6.8rem;
    height: 6.8rem;
  }
  .main .floating_btn p {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-weight: 400;
    color: #ffffff;
    font-size: 1.3rem;
    text-align: center;
  }
  .main .floating_btn p span {
    display: block;
    font-weight: 700;
    font-size: 2rem;
  }
}
.about {
  background: #000000;
}
.about .sc01 {
  background: url("../../../public/images//about/img_about_visual.png")
    no-repeat center;
  background-size: cover;
}
.about .sc02 {
  position: relative;
  width: 100%;
  padding: 10rem 0 0;
  margin: 0 auto;
  text-align: center;
}
.about .sc02::before {
  content: "";
  display: block;
  background: url("../../../public/images//about/img_about_gif.gif") no-repeat
    center;
  background-size: 100%;
  width: 120rem;
  height: 50rem;
  margin: 0 auto;
}
.about .sc02::after {
  content: "";
  display: inline-block;
  background: url("../../../public/images//about/img_about_effect.png")
    no-repeat center;
  background-size: 100%;
  width: 60rem;
  height: 8rem;
}
.about .sc02 strong {
  font-weight: 700;
  font-size: 8rem;
  color: #ffffff;
}
.about .sc02 em {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  color: #7757ff;
  margin: 2rem 0;
}
.about .sc02 p {
  max-width: 82rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 3rem;
  color: #9b9b9b;
  margin: 0 auto 2.5rem;
  word-break: keep-all;
}
.about .sc03 {
  position: relative;
  width: 100%;
  padding: 16rem 0 0;
}
.about .sc03 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.about .sc03 .tit_box strong {
  font-weight: 700;
  font-size: 8rem;
  color: #ffffff;
  margin: 2rem 0;
  display: block;
  max-width: 50rem;
}
.about .sc03 .tit_box em {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  color: #7757ff;
}
.about .sc03 .tit_box p {
  max-width: 54.5rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 3rem;
  color: #9b9b9b;
  word-break: keep-all;
}
.about .sc03 .card_box {
  position: relative;
  max-width: 66.4rem;
  z-index: 1;
  height: 80rem;
  overflow: hidden;
}
.about .sc03 .card_box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 2.4rem;
  -webkit-animation: scrolling 25s linear infinite;
  animation: scrolling 25s linear infinite;
  will-change: transform;
}
.about .sc03 .card_box ul:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.about .sc03 .card_box ul li {
  position: relative;
  width: 32rem;
  height: 35rem;
  padding: 3.5rem 3rem 3rem 3.5rem;
  background: #0b0d21;
  border: 1px solid #4a4e57;
  border-radius: 2rem;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.about .sc03 .card_box ul li p {
  font-weight: 500;
  font-size: 3rem;
  line-height: 3.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.about .sc03 .card_box ul li span {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #ffffff;
}
.about .sc03 .card_box ul li span em {
  color: #7757ff;
}
.about .sc03 .card_box ul li:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: rgba(119, 87, 255, 0.15) 0px 48px 100px 0px;
  box-shadow: rgba(119, 87, 255, 0.15) 0px 48px 100px 0px;
}
.about .sc03 .card_box ul li i {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  width: 15rem;
  height: 15rem;
}
.about .sc03 .card_box ul li:nth-of-type(even):not(:nth-of-type(2)) {
  margin-top: 2.4rem;
}
.about .sc03 .card_box ul li:nth-of-type(odd):not(:nth-of-type(1)) {
  margin-top: -10.3rem;
}
.about .sc03 .card_box ul li.icon01 i {
  background: url("../../../public/images//about/img_about_icon01.png")
    no-repeat center;
  background-size: 100%;
}
.about .sc03 .card_box ul li.icon02 {
  margin-top: 12.7rem;
}
.about .sc03 .card_box ul li.icon02 i {
  background: url("../../../public/images//about/img_about_icon02.png")
    no-repeat center;
  background-size: 100%;
}
.about .sc03 .card_box ul li.icon03 i {
  background: url("../../../public/images//about/img_about_icon03.png")
    no-repeat center;
  background-size: 100%;
}
.about .sc03 .card_box ul li.icon04 i {
  background: url("../../../public/images//about/img_about_icon04.png")
    no-repeat center;
  background-size: 100%;
}
.about .sc03 .card_box ul li.icon05 i {
  background: url("../../../public/images//about/img_about_icon05.png")
    no-repeat center;
  background-size: 100%;
}
.about .sc03 .card_box ul li.icon06 i {
  background: url("../../../public/images//about/img_about_icon06.png")
    no-repeat center;
  background-size: 100%;
}
.about .sc03 .card_box ul li.icon07 i {
  background: url("../../../public/images//about/img_about_icon07.png")
    no-repeat center;
  background-size: 100%;
}
.about .sc03 .card_box ul li.icon08 i {
  background: url("../../../public/images//about/img_about_icon08.png")
    no-repeat center;
  background-size: 100%;
}
.about .sc03 .ripple {
  position: absolute;
  top: 76%;
  left: -10%;
  width: 50%;
  pointer-events: none;
}
.about .sc03 .ripple .center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 150px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
}
.about .sc03 .ripple span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0); /* 초기 크기 0 */
  width: 150px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  -webkit-animation: ripple-effect 6s infinite forwards;
  animation: ripple-effect 6s infinite forwards;
}
.about .sc03 .ripple span:nth-of-type(2) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.about .sc03 .ripple span:nth-of-type(3) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.about .sc03 .ripple span:nth-of-type(4) {
  -webkit-animation-delay: 4.5s;
  animation-delay: 4.5s;
}
.about .sc03 .blur {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20%;
  background: #7757ff;
  border-radius: 50%;
  padding: 10% 0;
  opacity: 0.3;
  -webkit-transition: all 1s linear, -webkit-transform 0.3s ease;
  transition: all 1s linear, -webkit-transform 0.3s ease;
  transition: all 1s linear, transform 0.3s ease;
  transition: all 1s linear, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-animation: blur-circle 4s linear infinite;
  animation: blur-circle 4s linear infinite;
  -webkit-filter: blur(80px);
  filter: blur(80px);
  pointer-events: none;
}
.about .sc04 {
  position: relative;
  width: 100%;
  padding: 23rem 0 0;
  margin: 0 auto;
  text-align: center;
}
.about .sc04 strong {
  font-weight: 700;
  font-size: 8rem;
  color: #ffffff;
}
.about .sc04 em {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  color: #7757ff;
  margin: 2rem 0;
}
.about .sc04 p {
  max-width: 68rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 3rem;
  color: #9b9b9b;
  margin: 0 auto;
  word-break: keep-all;
}
.about .sc04 .card_box {
  position: relative;
  width: 100%;
  margin-top: 10rem;
}
.about .sc04 .card_box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 50.7rem;
}
.about .sc04 .card_box ul li {
  position: relative;
}
.about .sc04 .card_box ul li:nth-of-type(even) {
  margin-top: 43rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.about .sc04 .card_box ul li:nth-of-type(even) .txt_box {
  margin-left: 6rem;
}
.about .sc04 .card_box ul li:nth-last-child(2) .txt_box span {
  max-width: 56rem;
}
.about .sc04 .card_box ul li .img_box {
  width: 64rem;
  height: 40rem;
  overflow: hidden;
}
.about .sc04 .card_box ul li .img_box img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: width 1s, height 1s;
  transition: width 1s, height 1s;
}
.about .sc04 .card_box ul li .img_box:hover img {
  width: 110%;
  height: 110%;
}
.about .sc04 .card_box ul li .txt_box {
  position: absolute;
  top: 36rem;
  left: 6rem;
  text-align: left;
}
.about .sc04 .card_box ul li .txt_box p {
  font-weight: 700;
  font-size: 8rem;
  color: #ffffff;
  line-height: 9rem;
  margin-bottom: 2rem;
}
.about .sc04 .card_box ul li .txt_box p::after {
  content: ".";
  font-weight: 700;
  font-size: 8rem;
  color: #7757ff;
  margin-left: 1.5rem;
}
.about .sc04 .card_box ul li .txt_box span {
  display: block;
  max-width: 52.54rem;
  font-weight: 500;
  font-size: 1.8rem;
  color: #9b9b9b;
  line-height: 3rem;
}
.about .sc05 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  height: 50rem;
  overflow: hidden;
}
.about .sc05 h5 {
  padding-top: 12rem;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 7rem;
  color: #ffffff;
  line-height: 7.5rem;
}
.about .sc05 .bg_video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50rem;
}
.about .sc05 .bg_video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (min-width: 1201px) and (max-width: 1400px) {
  :root {
    font-size: 47.5%;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  :root {
    font-size: 42.5%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    font-size: 62.5%;
  }
  .about .sc02 {
    padding: 8rem 0 6rem;
  }
  .about .sc02::before {
    width: 100%;
    max-width: 76.8rem;
    aspect-ratio: 768/410;
    height: auto;
  }
  .about .sc02::after {
    width: 60rem;
    height: 8rem;
  }
  .about .sc02 strong {
    font-size: 5rem;
  }
  .about .sc02 em {
    font-size: 2.4rem;
  }
  .about .sc02 p {
    max-width: 65rem;
    font-size: 2.6rem;
    line-height: 4rem;
    letter-spacing: -0.052rem;
    margin-bottom: 8rem;
  }
  .about .sc03 {
    position: relative;
    width: 100%;
    padding: 16rem 0 0;
  }
  .about .sc03 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about .sc03 .tit_box {
    text-align: center;
  }
  .about .sc03 .tit_box strong {
    font-size: 5rem;
    max-width: none;
  }
  .about .sc03 .tit_box em {
    font-size: 2.4rem;
  }
  .about .sc03 .tit_box p {
    max-width: 62.3rem;
    font-size: 2.6rem;
    line-height: 4rem;
    letter-spacing: -0.052rem;
    margin: 0 auto;
  }
  .about .sc03 .card_box {
    width: 100%;
    max-width: none;
    padding: 0 4rem;
    height: auto;
  }
  .about .sc03 .card_box ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-animation: none;
    animation: none;
  }
  .about .sc03 .card_box ul li {
    width: 32.4rem;
    height: 32rem;
    padding: 3rem 3rem 3rem 4rem;
    margin-top: 0 !important;
  }
  .about .sc03 .card_box ul li p {
    font-size: 2.8rem;
    line-height: 3.1rem;
  }
  .about .sc03 .card_box ul li span {
    font-size: 2rem;
    line-height: 3.1rem;
  }
  .about .sc03 .card_box ul li:hover {
    -webkit-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .about .sc03 .card_box ul li i {
    width: 11rem;
    height: 11rem;
  }
  .about .sc03 .ripple {
    display: none;
  }
  .about .sc03 .blur {
    position: absolute;
    left: 50%;
    top: 12%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60%;
    border-radius: 50%;
    padding: 20% 0;
    opacity: 0.23;
    -webkit-transition: none;
    transition: none;
    -webkit-animation: none;
    animation: none;
    -webkit-filter: blur(80px);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
  }
  .about .sc04 {
    padding: 20rem 0 0;
  }
  .about .sc04 strong {
    font-size: 5rem;
  }
  .about .sc04 em {
    font-size: 2.4rem;
  }
  .about .sc04 p {
    max-width: 62rem;
    font-size: 2.6rem;
    line-height: 4rem;
    letter-spacing: -0.052rem;
  }
  .about .sc04 .card_box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about .sc04 .card_box ul li {
    width: 100%;
  }
  .about .sc04 .card_box ul li + li {
    margin-top: 31.4rem !important;
  }
  .about .sc04 .card_box ul li:nth-child(even) .txt_box {
    margin-left: 0;
  }
  .about .sc04 .card_box ul li:nth-last-child(2) .txt_box span {
    max-width: 96%;
  }
  .about .sc04 .card_box ul li .img_box {
    width: 100%;
    aspect-ratio: 768/400;
    height: auto;
    overflow: hidden;
  }
  .about .sc04 .card_box ul li .img_box img {
    -o-object-position: center;
    object-position: center;
    -webkit-transition: none;
    transition: none;
  }
  .about .sc04 .card_box ul li .img_box:hover img {
    width: 100%;
    height: 100%;
  }
  .about .sc04 .card_box ul li .txt_box {
    position: absolute;
    top: 38.5rem;
    left: 6rem;
  }
  .about .sc04 .card_box ul li .txt_box p {
    max-width: none;
    font-size: 5rem;
    color: #ffffff;
    line-height: 5rem;
    margin-bottom: 2rem;
  }
  .about .sc04 .card_box ul li .txt_box p::after {
    font-size: 5rem;
    margin-left: 0.5rem;
  }
  .about .sc04 .card_box ul li .txt_box span {
    max-width: 92%;
    font-size: 2.6rem;
    line-height: 4rem;
    letter-spacing: -0.052rem;
  }
  .about .sc05 {
    height: 74rem;
    overflow: hidden;
  }
  .about .sc05 h5 {
    padding-top: 15rem;
    font-size: 5rem;
  }
  .about .sc05 .bg_video {
    height: 74rem;
  }
  .wrap .footer .inner {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 767px) {
  :root {
    font-size: 62.5%;
  }
  .about .sc02 {
    padding: 8rem 0 0;
  }
  .about .sc02::before {
    width: 100%;
    max-width: 76.7rem;
    aspect-ratio: 768/410;
    height: auto;
    background-size: cover;
  }
  .about .sc02::after {
    width: 100%;
    max-width: 76.7rem;
    aspect-ratio: 600/80;
    height: auto;
  }
  .about .sc02 strong {
    font-size: 3.6rem;
  }
  .about .sc02 em {
    font-size: 1.8rem;
  }
  .about .sc02 p {
    max-width: calc(100% - 6rem);
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: -0.03rem;
    margin-bottom: 4rem;
    margin: 0 auto;
  }
  .about .sc03 {
    position: relative;
    width: 100%;
    padding: 8rem 0 0;
  }
  .about .sc03 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about .sc03 .tit_box {
    text-align: center;
  }
  .about .sc03 .tit_box strong {
    font-size: 3.6rem;
    max-width: none;
  }
  .about .sc03 .tit_box em {
    font-size: 1.8rem;
  }
  .about .sc03 .tit_box p {
    max-width: calc(100% - 6rem);
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: -0.03rem;
    margin: 0 auto;
  }
  .about .sc03 .card_box {
    width: 100%;
    max-width: none;
    padding: 0 4rem;
    height: auto;
  }
  .about .sc03 .card_box ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-animation: none;
    animation: none;
  }
  .about .sc03 .card_box ul li {
    width: 32.4rem;
    height: 32rem;
    padding: 2rem 2rem 2rem 3rem;
    margin-top: 0 !important;
  }
  .about .sc03 .card_box ul li p {
    font-size: 2.4rem;
    line-height: 3.1rem;
  }
  .about .sc03 .card_box ul li span {
    font-size: 1.6rem;
    line-height: 3.1rem;
  }
  .about .sc03 .card_box ul li:hover {
    -webkit-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .about .sc03 .card_box ul li i {
    width: 11rem;
    height: 11rem;
    right: 2rem;
  }
  .about .sc03 .ripple {
    display: none;
  }
  .about .sc03 .blur {
    position: absolute;
    left: 50%;
    top: 12%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60%;
    border-radius: 50%;
    padding: 20% 0;
    opacity: 0.23;
    -webkit-transition: none;
    transition: none;
    -webkit-animation: none;
    animation: none;
    -webkit-filter: blur(80px);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
  }
  .about .sc04 {
    padding: 8rem 0 0;
  }
  .about .sc04 strong {
    font-size: 3.6rem;
  }
  .about .sc04 em {
    font-size: 1.8rem;
  }
  .about .sc04 p {
    max-width: calc(100% - 6rem);
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: -0.03rem;
    margin-bottom: 4rem;
    margin: 0 auto;
  }
  .about .sc04 .card_box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 36rem;
  }
  .about .sc04 .card_box ul li {
    width: 100%;
  }
  .about .sc04 .card_box ul li + li {
    margin-top: 24rem !important;
  }
  .about .sc04 .card_box ul li:nth-child(even) .txt_box {
    margin-left: 0;
  }
  .about .sc04 .card_box ul li:nth-last-child(2) .txt_box span {
    max-width: 96%;
  }
  .about .sc04 .card_box ul li .img_box {
    width: 100%;
    aspect-ratio: 768/400;
    height: auto;
    overflow: hidden;
  }
  .about .sc04 .card_box ul li .img_box img {
    -o-object-position: center;
    object-position: center;
    -webkit-transition: none;
    transition: none;
  }
  .about .sc04 .card_box ul li .img_box:hover img {
    width: 100%;
    height: 100%;
  }
  .about .sc04 .card_box ul li .txt_box {
    position: absolute;
    top: 18rem;
    left: 2rem;
  }
  .about .sc04 .card_box ul li .txt_box p {
    max-width: none;
    font-size: 3.6rem;
    color: #ffffff;
    line-height: 4.6rem;
    margin-bottom: 2rem;
  }
  .about .sc04 .card_box ul li .txt_box p::after {
    font-size: 3.6rem;
    margin-left: 0.5rem;
  }
  .about .sc04 .card_box ul li .txt_box span {
    max-width: 92%;
    font-size: 1.8rem;
    line-height: 2.4rem;
    letter-spacing: -0.03rem;
  }
  .about .sc05 h5 {
    font-size: 3rem;
    line-height: 4.6rem;
  }
  .wrap .footer .inner {
    padding: 4rem 0;
  }
}
.biz {
  background: #000000;
}
.biz .flickity-page-dots {
  display: none;
}
.biz .sc01 {
  background: url("../../../public/images//biz/img_biz_visual.png") no-repeat
    center;
  background-size: cover;
}
.biz .sc02 {
  position: relative;
  width: 100%;
  padding: 18rem 0 0;
}
.biz .sc02 .tit_box {
  text-align: left;
}
.biz .sc02 .tit_box strong {
  font-weight: 700;
  font-size: 8rem;
  color: #ffffff;
}
.biz .sc02 .tit_box p {
  margin-top: 1.5rem;
  max-width: 59rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 3rem;
  color: #9b9b9b;
  word-break: keep-all;
}
.biz .sc02 .card_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  margin-top: 8rem;
}
.biz .sc02 .card_box li {
  position: relative;
  width: 44rem;
  aspect-ratio: 440/480;
  border-radius: 2rem;
}
.biz .sc02 .card_box li::before {
  content: "";
  display: inline-block;
  width: 100%;
  aspect-ratio: 440/274;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000),
    color-stop(91%, rgba(0, 0, 0, 0))
  );
  background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0) 91%);
}
.biz .sc02 .card_box li p {
  position: absolute;
  top: 5rem;
  left: 5rem;
  font-weight: 500;
  font-size: 3rem;
  color: #ffffff;
  line-height: 3.5rem;
  text-align: left;
}
.biz .sc02 .card_box li:first-of-type {
  background: url("../../../public/images//biz/img_biz_01.png") no-repeat center;
  background-size: 100%;
}
.biz .sc02 .card_box li:nth-of-type(2) {
  background: url("../../../public/images//biz/img_biz_02.png") no-repeat center;
  background-size: 100%;
}
.biz .sc02 .card_box li:last-of-type {
  background: url("../../../public/images//biz/img_biz_03.png") no-repeat center;
  background-size: 100%;
}
.biz .sc03 {
  position: relative;
  width: 100%;
  padding: 24rem 0 0;
}
.biz .sc03 .tit_box {
  text-align: center;
}
.biz .sc03 .tit_box strong {
  font-weight: 700;
  font-size: 8rem;
  color: #ffffff;
}
.biz .sc03 .tit_box p {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 3rem;
  color: #9b9b9b;
  word-break: keep-all;
  margin: 3rem auto 0;
}
.biz .sc03 .tit_box .break_mo {
  display: none;
}
.biz .sc03 .card_wrap {
  position: relative;
  margin-top: 8rem;
  width: 100%;
}
.biz .sc03 .card_wrap .card_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.biz .sc03 .card_wrap .card_box .card {
  width: 26rem;
  aspect-ratio: 260/550;
  border-radius: 2rem;
  background: #262626;
  border: 1px solid #2e2e2e;
  padding: 1.8rem;
  text-align: center;
}
.biz .sc03 .card_wrap .card_box .card p {
  margin: 3rem auto 0;
  font-weight: 500;
  font-size: 2rem;
  color: #ffffff;
  line-height: 3rem;
}
.biz .sc03 .card_wrap .card_box .card::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 224/411;
}
.biz .sc03 .card_wrap .card_box .card:nth-of-type(1)::before {
  background: url("../../../public/images//biz/img_biz_phone_01.png") no-repeat
    center;
  background-size: 100%;
}
.biz .sc03 .card_wrap .card_box .card:nth-of-type(2)::before {
  background: url("../../../public/images//biz/img_biz_phone_02.png") no-repeat
    center;
  background-size: 100%;
}
.biz .sc03 .card_wrap .card_box .card:nth-of-type(3)::before {
  background: url("../../../public/images//biz/img_biz_phone_03.png") no-repeat
    center;
  background-size: 100%;
}
.biz .sc03 .card_wrap .card_box .card:nth-of-type(4)::before {
  background: url("../../../public/images//biz/img_biz_phone_04.png") no-repeat
    center;
  background-size: 100%;
}
.biz .sc03 .card_wrap .card_box .card:nth-of-type(5)::before {
  background: url("../../../public/images//biz/img_biz_phone_05.png") no-repeat
    center;
  background-size: 100%;
}
.biz .sc03 em {
  display: block;
  font-weight: 500;
  font-size: 3rem;
  color: #7757ff;
  text-align: center;
  margin: 21.4rem auto 9.2rem;
}
.biz .sc03 hr {
  border: none;
  background: url("../../../public/images//biz/img_biz_hr.png") no-repeat center;
  background-size: contain;
  width: 100%;
  aspect-ratio: 1400/35;
}
.biz .sc03 .multi_box {
  margin-top: 7rem;
  position: relative;
  width: 100%;
  aspect-ratio: 1400/500;
  background: url("../../../public/images//biz/img_biz_multi_bg.png") no-repeat
    center;
  background-size: cover;
  border-radius: 2rem;
}
.biz .sc03 .multi_box .txt {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.biz .sc03 .multi_box .txt strong {
  font-weight: 700;
  font-size: 6rem;
  color: #ffffff;
}
.biz .sc03 .multi_box .txt p {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 3rem;
  color: #ffffff;
}
.biz .sc03 .ai_box {
  margin-top: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
}
.biz .sc03 .ai_box .ai {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 35%;
  width: 24.6rem;
  aspect-ratio: 246/246;
  border-radius: 50%;
  background: #000000;
  -webkit-box-shadow: 0 3px 20px 0 #7757ff;
  box-shadow: 0 3px 20px 0 #7757ff;
  z-index: 1;
}
.biz .sc03 .ai_box .ai p {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-size: 8rem;
  text-align: center;
  color: #7757ff;
}
.biz .sc03 .ai_box .platform {
  width: 60rem;
}
.biz .sc03 .ai_box .platform:nth-child(2) p:first-child::before {
  background: url("../../../public/images//biz/img_biz_platform_01.png")
    no-repeat center;
  background-size: 100%;
}
.biz .sc03 .ai_box .platform:nth-child(3) p:first-child::before {
  background: url("../../../public/images//biz/img_biz_platform_02.png")
    no-repeat center;
  background-size: 100%;
}
.biz .sc03 .ai_box .platform .break_mo {
  display: none;
}
.biz .sc03 .ai_box .platform p {
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}
.biz .sc03 .ai_box .platform p:first-child {
  font-size: 4rem;
}
.biz .sc03 .ai_box .platform p:first-child::before {
  margin-bottom: 4.7rem;
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 600/400;
  border-radius: 2rem;
}
.biz .sc03 .ai_box .platform p:last-child {
  font-size: 1.8rem;
  line-height: 3rem;
  max-width: 51.8rem;
  margin: 2.4rem auto 0;
}
.biz .sc04 {
  position: relative;
  width: 100%;
  padding: 25rem 0 0;
}
.biz .sc04 strong {
  display: block;
  font-weight: 700;
  font-size: 8rem;
  color: #ffffff;
  line-height: 9rem;
  margin: 0 auto;
  text-align: center;
}
.biz .sc04 .service_swiper {
  margin: 5rem auto 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 1920px;
}
.biz .sc04 .service_swiper .flickity-viewport {
  height: 60rem !important;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell {
  position: relative;
  width: 66%;
  margin-right: 10px;
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell.is-selected {
  opacity: 1;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell div {
  max-width: 70rem;
  width: 100% !important;
  margin: 0 auto;
  text-align: center;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell div::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 700/438;
  border-radius: 2rem;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell div span {
  display: block;
  font-weight: 500;
  font-size: 2rem;
  color: #7757ff;
  margin: 5rem 0;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell div p {
  font-weight: 500;
  font-size: 4rem;
  color: #ffffff;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell div.service01::before {
  background: url("../../../public/images//biz/img_biz_service_01.png")
    no-repeat center;
  background-size: 100%;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell div.service02::before {
  background: url("../../../public/images//biz/img_biz_service_02.png")
    no-repeat center;
  background-size: 100%;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell div.service03::before {
  background: url("../../../public/images//biz/img_biz_service_03.png")
    no-repeat center;
  background-size: 100%;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell div.service04::before {
  background: url("../../../public/images//biz/img_biz_service_04.png")
    no-repeat center;
  background-size: 100%;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell div.service05::before {
  background: url("../../../public/images//biz/img_biz_service_05.png")
    no-repeat center;
  background-size: 100%;
}
.biz .sc04 .service_swiper .slide_box .carousel-cell div.service06::before {
  background: url("../../../public/images//biz/img_biz_service_06.png")
    no-repeat center;
  background-size: 100%;
}
.biz .sc04 .service_swiper .slide_box .flickity-button {
  display: none;
}
.biz .sc04 .service_swiper .controls {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 89.4rem;
  z-index: 10;
}
.biz .sc04 .service_swiper .controls button {
  position: relative;
}
.biz .sc04 .service_swiper .controls button::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}
.biz .sc04 .service_swiper .controls button.prev {
  position: absolute;
  left: 0;
}
.biz .sc04 .service_swiper .controls button.prev::before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.biz .sc04 .service_swiper .controls button.next {
  position: absolute;
  right: 3rem;
}
.biz .sc04 .service_swiper .controls button.next::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.biz .sc05 {
  position: relative;
  width: 100%;
  padding: 25rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.biz .sc05 .left {
  position: relative;
  width: 50%;
  height: 500px;
  padding: 10rem 0 10rem 27.5rem;
  background: #010634;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 7rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.biz .sc05 .left .tit_box {
  text-align: left;
}
.biz .sc05 .left .tit_box em {
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  color: #7757ff;
}
.biz .sc05 .left .tit_box strong {
  font-weight: 700;
  font-size: 8rem;
  color: #ffffff;
  line-height: 9rem;
}
.biz .sc05 .left .tit_box p {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1.8rem;
  color: #ffffff;
}
.biz .sc05 .left .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.biz .sc05 .left .controls button {
  position: relative;
  width: 7.3rem;
  height: 7.3rem;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #7757ff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.biz .sc05 .left .controls button::before {
  position: absolute;
  top: 50%;
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  border-top: 2px solid #7757ff;
  border-right: 2px solid #7757ff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.biz .sc05 .left .controls button.prev::before {
  left: 52%;
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
  transform: translate(-50%, -50%) rotate(225deg);
}
.biz .sc05 .left .controls button.next::before {
  left: 48%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.biz .sc05 .left .controls button:hover {
  background: #7757ff;
}
.biz .sc05 .left .controls button:hover::before {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.biz .sc05 .left .controls button:disabled {
  background: #362a68;
}
.biz .sc05 .left .controls button:disabled:hover::before {
  border-top: 2px solid #7757ff;
  border-right: 2px solid #7757ff;
}
.biz .sc05 .right {
  position: relative;
  width: 50%;
  height: 500px;
  background: #000000;
  overflow: hidden;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.biz .sc05 .right::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  display: inline-block;
  width: 110%;
  height: 90%;
  border-radius: 100%;
  background: #7757ff;
  -webkit-filter: blur(100px);
  filter: blur(100px);
  opacity: 0.3;
}
.biz .sc05 .right .client_container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.biz .sc05 .right .client_container .client_box {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.biz .sc05 .right .client_container .client_box:first-of-type {
  padding: 0 13rem;
}
.biz .sc05 .right .client_container .client_box:first-of-type ul {
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4rem 3rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.biz .sc05 .right .client_container .client_box:first-of-type ul li {
  width: 20rem;
  height: 8rem;
  font-size: 0;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:first-of-type
  ul
  li:nth-of-type(1) {
  background: url("../../../public/images//biz/img_biz_clients_01.png")
    no-repeat center;
  background-size: 100%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:first-of-type
  ul
  li:nth-of-type(2) {
  background: url("../../../public/images//biz/img_biz_clients_02.png")
    no-repeat center;
  background-size: 100%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:first-of-type
  ul
  li:nth-of-type(3) {
  background: url("../../../public/images//biz/img_biz_clients_03.png")
    no-repeat center;
  background-size: 100%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:first-of-type
  ul
  li:nth-of-type(4) {
  background: url("../../../public/images//biz/img_biz_clients_04.png")
    no-repeat center;
  background-size: 100%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:first-of-type
  ul
  li:nth-of-type(5) {
  background: url("../../../public/images//biz/img_biz_clients_05.png")
    no-repeat center;
  background-size: 100%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:first-of-type
  ul
  li:nth-of-type(6) {
  background: url("../../../public/images//biz/img_biz_clients_06.png")
    no-repeat center;
  background-size: 100%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:first-of-type
  ul
  li:nth-of-type(7) {
  background: url("../../../public/images//biz/img_biz_clients_20.png")
    no-repeat center;
  background-size: 100%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:first-of-type
  ul
  li:nth-of-type(8) {
  background: url("../../../public/images//biz/img_biz_clients_21.png")
    no-repeat center;
  background-size: 100%;
}
.biz .sc05 .right .client_container .client_box:nth-of-type(2) {
  padding: 0 10.5rem;
}
.biz .sc05 .right .client_container .client_box:nth-of-type(2) ul {
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.biz .sc05 .right .client_container .client_box:nth-of-type(2) ul li {
  width: 10rem;
  height: 10rem;
  font-size: 0;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(1) {
  background: url("../../../public/images//biz/img_biz_clients_07.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(2) {
  background: url("../../../public/images//biz/img_biz_clients_08.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(3) {
  background: url("../../../public/images//biz/img_biz_clients_09.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(4) {
  background: url("../../../public/images//biz/img_biz_clients_10.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(5) {
  background: url("../../../public/images//biz/img_biz_clients_11.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(6) {
  background: url("../../../public/images//biz/img_biz_clients_12.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(7) {
  background: url("../../../public/images//biz/img_biz_clients_13.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(8) {
  background: url("../../../public/images//biz/img_biz_clients_14.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(9) {
  background: url("../../../public/images//biz/img_biz_clients_15.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(10) {
  background: url("../../../public/images//biz/img_biz_clients_16.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(11) {
  background: url("../../../public/images//biz/img_biz_clients_17.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(12) {
  background: url("../../../public/images//biz/img_biz_clients_18.png")
    no-repeat center;
  background-size: 120%;
}
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(13) {
  background: url("../../../public/images//biz/img_biz_clients_19.png")
    no-repeat center;
  background-size: 120%;
}
/* 25.06.02 고객사 로고 이미지 추가 synamgung*/
.biz
  .sc05
  .right
  .client_container
  .client_box:nth-of-type(2)
  ul
  li:nth-of-type(14) {
  background: url("../../../public/images//biz/img_biz_clients_22.png")
    no-repeat center;
  background-size: 120%;
}

@media (min-width: 1201px) and (max-width: 1400px) {
  :root {
    font-size: 47.5%;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  :root {
    font-size: 42.5%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    font-size: 62.5%;
  }
  .biz .sc01 h2 {
    max-width: 60rem;
  }
  .biz .sc02 {
    padding: 8rem 4rem 20rem;
  }
  .biz .sc02 .tit_box {
    padding: 0 1rem;
  }
  .biz .sc02 .tit_box strong {
    font-size: 5rem;
  }
  .biz .sc02 .tit_box p {
    margin-top: 2rem;
    max-width: 55rem;
    font-size: 2.6rem;
    line-height: 4rem;
    letter-spacing: -0.052rem;
  }
  .biz .sc02 .card_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
  .biz .sc02 .card_box li {
    width: 100%;
    aspect-ratio: 688/270;
    max-height: 27rem;
  }
  .biz .sc02 .card_box li::before {
    background: linear-gradient(91deg, #000 1%, rgba(0, 0, 0, 0) 87%);
    aspect-ratio: 688/270;
  }
  .biz .sc02 .card_box li p {
    font-size: 2.8rem;
    line-height: 3.5rem;
    top: auto;
    left: 3rem;
    bottom: 3rem;
  }
  .biz .sc02 .card_box li:nth-of-type(1) {
    background-position: center -300px !important;
  }
  .biz .sc03 {
    padding-top: 0;
  }
  .biz .sc03 .tit_box {
    padding: 0 6.5rem;
  }
  .biz .sc03 .tit_box strong {
    font-size: 5rem;
  }
  .biz .sc03 .tit_box p {
    font-size: 2.6rem;
    line-height: 4rem;
    letter-spacing: -0.052rem;
    margin: 2rem auto 0;
  }
  .biz .sc03 .tit_box .break_pc {
    display: none;
  }
  .biz .sc03 .tit_box .break_mo {
    display: block;
  }
  .biz .sc03 .card_wrap {
    margin-top: 10rem;
  }
  .biz .sc03 .card_wrap .card_box {
    display: block;
  }
  .biz .sc03 .card_wrap .card_box .card {
    padding: 2rem;
    margin-right: 100px;
    opacity: 0.5;
  }
  .biz .sc03 .card_wrap .card_box .card.is-selected {
    opacity: 1;
  }
  .biz .sc03 .card_wrap .card_box .card p {
    margin: 2.4rem auto 0;
    font-weight: 400;
    font-size: 2.4rem;
  }
  .biz .sc03 .card_wrap .card_box .flickity-button {
    display: none;
  }
  .biz .sc03 .card_wrap .controls {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 40rem;
    z-index: 10;
  }
  .biz .sc03 .card_wrap .controls button {
    position: relative;
  }
  .biz .sc03 .card_wrap .controls button::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
  }
  .biz .sc03 .card_wrap .controls button.prev {
    position: absolute;
    left: 0;
  }
  .biz .sc03 .card_wrap .controls button.prev::before {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  .biz .sc03 .card_wrap .controls button.next {
    position: absolute;
    right: 2rem;
  }
  .biz .sc03 .card_wrap .controls button.next::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .biz .sc03 em {
    margin: 13.8rem auto 6.2rem;
  }
  .biz .sc03 hr {
    aspect-ratio: 768/35;
  }
  .biz .sc03 .multi_box {
    margin-top: 12rem;
    border-radius: 0;
    width: 100%;
    aspect-ratio: 768/500;
  }
  .biz .sc03 .multi_box .txt strong {
    font-size: 4rem;
  }
  .biz .sc03 .multi_box .txt p {
    max-width: 44rem;
    font-weight: 400;
    font-size: 2.6rem;
    line-height: 4rem;
    letter-spacing: -0.052rem;
    margin: 2.2rem auto 0;
  }
  .biz .sc03 .ai_box {
    margin-top: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 4rem;
  }
  .biz .sc03 .ai_box .ai {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 45%;
    width: 9.2rem;
  }
  .biz .sc03 .ai_box .ai p {
    font-size: 2.9rem;
  }
  .biz .sc03 .ai_box .platform {
    width: 60rem;
  }
  .biz .sc03 .ai_box .platform:nth-child(2) p:first-child::after {
    background: url("../../../public/images//biz/img_biz_platform_01.png")
      no-repeat center;
    background-size: 100%;
    background-size: cover;
  }
  .biz .sc03 .ai_box .platform:nth-child(3) p:first-child::after {
    background: url("../../../public/images//biz/img_biz_platform_02_mo.png")
      no-repeat center;
    background-size: 100%;
  }
  .biz .sc03 .ai_box .platform p:first-child {
    width: 100%;
    font-size: 2.8rem;
    line-height: 4.2rem;
    margin: 0 auto;
  }
  .biz .sc03 .ai_box .platform p:first-child::before {
    content: none;
  }
  .biz .sc03 .ai_box .platform p:first-child::after {
    margin-top: 3rem;
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 324/320;
    border-radius: 2rem;
  }
  .biz .sc03 .ai_box .platform p:last-child {
    max-width: 25rem;
    font-weight: 400;
    font-size: 2rem;
    line-height: 3rem;
    margin: 3rem auto 0;
  }
  .biz .sc03 .ai_box .platform .break_mo {
    display: block;
  }
  .biz .sc04 {
    padding-top: 20rem;
  }
  .biz .sc04 strong {
    font-size: 5rem;
    line-height: 6rem;
  }
  .biz .sc04 .service_swiper {
    max-width: 1023px;
  }
  .biz .sc04 .service_swiper .flickity-viewport {
    height: 42rem !important;
  }
  .biz .sc04 .service_swiper .slide_box .carousel-cell div {
    max-width: 48.3rem;
  }
  .biz .sc04 .service_swiper .slide_box .carousel-cell div span {
    font-size: 2.4rem;
    margin: 4rem 0 1.4rem;
  }
  .biz .sc04 .service_swiper .slide_box .carousel-cell div p {
    font-size: 2.8rem;
  }
  .biz .sc04 .service_swiper .controls {
    width: 55rem;
  }
  .biz .sc04 .service_swiper .controls button::before {
    width: 2rem;
    height: 2rem;
  }
  .biz .sc04 .service_swiper .controls button.next {
    right: 2rem;
  }
  .biz .sc05 {
    padding-top: 20rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .biz .sc05 .left {
    width: 100%;
    height: auto;
    padding: 7rem 0;
    gap: 6rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .biz .sc05 .left .tit_box {
    text-align: center;
  }
  .biz .sc05 .left .tit_box em {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .biz .sc05 .left .tit_box strong {
    font-size: 5rem;
    line-height: 1;
  }
  .biz .sc05 .left .tit_box p {
    font-weight: 400;
    font-size: 2.6rem;
    letter-spacing: -0.052rem;
  }
  .biz .sc05 .left .controls button {
    width: 1.6rem;
    height: 1.6rem;
    border: none;
    background: #362a68;
  }
  .biz .sc05 .left .controls button::before {
    content: none;
  }
  .biz .sc05 .left .controls button:disabled {
    background: #7757ff;
  }
  .biz .sc05 .right {
    width: 100%;
  }
  .biz .sc05 .right::before {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  :root {
    font-size: 62.5%;
  }
  .biz .sc02 {
    padding: 8rem 3rem 0;
  }
  .biz .sc02 .tit_box {
    padding: 0 1rem;
  }
  .biz .sc02 .tit_box strong {
    font-size: 3.6rem;
  }
  .biz .sc02 .tit_box p {
    margin-top: 2rem;
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: -0.03rem;
  }
  .biz .sc02 .card_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
  .biz .sc02 .card_box li {
    width: 100%;
    aspect-ratio: 688/270;
    max-height: 27rem;
  }
  .biz .sc02 .card_box li::before {
    background: linear-gradient(91deg, #000 1%, rgba(0, 0, 0, 0) 87%);
    aspect-ratio: 688/270;
  }
  .biz .sc02 .card_box li p {
    font-size: 1.8rem;
    line-height: 2.4rem;
    letter-spacing: -0.03rem;
    top: auto;
    left: 2rem;
    bottom: 2rem;
  }
  .biz .sc03 {
    padding-top: 10rem;
  }
  .biz .sc03 .tit_box {
    padding: 0 3rem;
  }
  .biz .sc03 .tit_box strong {
    font-size: 3.6rem;
  }
  .biz .sc03 .tit_box p {
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: -0.03rem;
    margin: 2rem auto 0;
  }
  .biz .sc03 .tit_box .break_pc {
    display: none;
  }
  .biz .sc03 .tit_box .break_mo {
    display: none;
  }
  .biz .sc03 .card_wrap {
    margin-top: 8rem;
  }
  .biz .sc03 .card_wrap .card_box {
    display: block;
  }
  .biz .sc03 .card_wrap .card_box .card {
    padding: 2rem;
    margin-right: 20px;
    opacity: 0.5;
  }
  .biz .sc03 .card_wrap .card_box .card.is-selected {
    opacity: 1;
  }
  .biz .sc03 .card_wrap .card_box .card p {
    margin: 2.4rem auto 0;
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .biz .sc03 .card_wrap .card_box .flickity-button {
    display: none;
  }
  .biz .sc03 .card_wrap .controls {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 85%;
    z-index: 10;
  }
  .biz .sc03 .card_wrap .controls button {
    position: relative;
  }
  .biz .sc03 .card_wrap .controls button::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
  }
  .biz .sc03 .card_wrap .controls button.prev {
    position: absolute;
    left: 0;
  }
  .biz .sc03 .card_wrap .controls button.prev::before {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  .biz .sc03 .card_wrap .controls button.next {
    position: absolute;
    right: 20px;
  }
  .biz .sc03 .card_wrap .controls button.next::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .biz .sc03 em {
    margin: 8rem auto 4rem;
    font-size: 2.4rem;
  }
  .biz .sc03 hr {
    aspect-ratio: 768/35;
  }
  .biz .sc03 .multi_box {
    margin-top: 6rem;
    border-radius: 0;
    width: 100%;
    aspect-ratio: 768/500;
  }
  .biz .sc03 .multi_box .txt strong {
    font-size: 3.6rem;
  }
  .biz .sc03 .multi_box .txt p {
    max-width: 90%;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: -0.03rem;
    margin: 2.2rem auto 0;
  }
  .biz .sc03 .ai_box {
    margin-top: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 4rem;
  }
  .biz .sc03 .ai_box .ai {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
    transform: none;
    width: 9.2rem;
  }
  .biz .sc03 .ai_box .ai p {
    font-size: 2.9rem;
  }
  .biz .sc03 .ai_box .platform {
    width: 60rem;
  }
  .biz .sc03 .ai_box .platform:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .biz .sc03 .ai_box .platform:nth-child(2) p:first-child::after {
    background: url("../../../public/images//biz/img_biz_platform_01.png")
      no-repeat center;
    background-size: 100%;
    background-size: cover;
  }
  .biz .sc03 .ai_box .platform:nth-child(3) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .biz .sc03 .ai_box .platform:nth-child(3) p:first-child::after {
    background: url("../../../public/images//biz/img_biz_platform_02_mo.png")
      no-repeat center;
    background-size: 100%;
  }
  .biz .sc03 .ai_box .platform p:first-child {
    width: 100%;
    font-size: 2.4rem;
    line-height: 3.6rem;
    margin: 0 auto;
  }
  .biz .sc03 .ai_box .platform p:first-child::before {
    content: none;
  }
  .biz .sc03 .ai_box .platform p:first-child::after {
    margin-top: 3rem;
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 324/320;
    border-radius: 2rem;
  }
  .biz .sc03 .ai_box .platform p:last-child {
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: -0.03rem;
    margin: 3rem auto 0;
  }
  .biz .sc03 .ai_box .platform .break_mo {
    display: none;
  }
  .biz .sc04 {
    padding-top: 16rem;
  }
  .biz .sc04 strong {
    font-size: 3.6rem;
    line-height: 4.6rem;
  }
  .biz .sc04 .service_swiper .flickity-viewport {
    height: 26rem !important;
  }
  .biz .sc04 .service_swiper .slide_box .carousel-cell div {
    max-width: 40rem;
  }
  .biz .sc04 .service_swiper .slide_box .carousel-cell div span {
    font-size: 1.8rem;
    margin: 4rem 0 1.4rem;
  }
  .biz .sc04 .service_swiper .slide_box .carousel-cell div p {
    font-size: 2.4rem;
  }
  .biz .sc04 .service_swiper .controls {
    width: 85%;
  }
  .biz .sc04 .service_swiper .controls button::before {
    width: 2rem;
    height: 2rem;
  }
  .biz .sc05 {
    padding-top: 16rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .biz .sc05 .left {
    width: 100%;
    height: auto;
    padding: 3rem 0;
    gap: 3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .biz .sc05 .left .tit_box {
    text-align: center;
  }
  .biz .sc05 .left .tit_box em {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .biz .sc05 .left .tit_box strong {
    font-size: 3.6rem;
    line-height: 1;
  }
  .biz .sc05 .left .tit_box p {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.4rem;
    letter-spacing: -0.03rem;
  }
  .biz .sc05 .left .controls button {
    width: 1rem;
    height: 1rem;
    border: none;
    background: #362a68;
  }
  .biz .sc05 .left .controls button::before {
    content: none;
  }
  .biz .sc05 .left .controls button:disabled {
    background: #7757ff;
  }
  .biz .sc05 .right {
    width: 100%;
  }
  .biz .sc05 .right::before {
    height: 100%;
  }
  .biz .sc05 .right .client_container .client_box:first-of-type {
    padding: 0;
  }
  .biz .sc05 .right .client_container .client_box:first-of-type ul li {
    width: 120px;
  }
  .biz .sc05 .right .client_container .client_box:nth-of-type(2) {
    padding: 0 2rem;
  }
  .biz .sc05 .right .client_container .client_box:nth-of-type(2) ul {
    gap: 1rem;
  }
  .biz .sc05 .right .client_container .client_box:nth-of-type(2) ul li {
    width: 8rem;
    height: 8rem;
  }
}
.notice {
  background: #000000;
}
.notice .sc01 {
  background: url("../../../public/images//notice/img_notice_visual.png")
    no-repeat center;
  background-size: cover;
}
.notice .sc02 {
  padding: 25rem 0 26rem;
}
.notice .sc02 .notice_list_wrap {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.notice .sc02 .notice_list_wrap .notice_list_box {
  width: 100%;
  margin: 0 auto;
}
.notice .sc02 .notice_list_wrap .notice_list_box .hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-top: 4px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.notice .sc02 .notice_list_wrap .notice_list_box .hd div {
  font-weight: 500;
  font-size: 1.8rem;
  padding: 1.5rem 0;
  text-align: center;
  color: #ffffff;
  width: 100%;
}
.notice .sc02 .notice_list_wrap .notice_list_box .hd div:first-child {
  max-width: 140px;
}
.notice .sc02 .notice_list_wrap .notice_list_box .hd div:nth-child(2) {
  max-width: 780px;
}
.notice .sc02 .notice_list_wrap .notice_list_box .hd div:nth-child(3) {
  max-width: calc((100% - 155px - 780px) / 3);
}
.notice .sc02 .notice_list_wrap .notice_list_box .hd div:nth-child(4) {
  max-width: calc((100% - 155px - 780px) / 3);
}
.notice .sc02 .notice_list_wrap .notice_list_box .hd div:last-child {
  max-width: calc((100% - 155px - 780px) / 3 + 5px);
}
.notice .sc02 .notice_list_wrap .notice_list_box .bd .cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-bottom: 1px solid #ffffff;
}
.notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div {
  font-weight: 400;
  font-size: 1.6rem;
  color: #ffffff;
  text-align: center;
  width: 100%;
}
.notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div button {
  font-weight: 400;
  font-size: 1.6rem;
  color: #ffffff;
}
.notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.no {
  padding: 2rem 5.8rem;
  max-width: 140px;
}
.notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.tit {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 2rem 3rem;
  max-width: 780px;
}
.notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.hit {
  padding: 2rem 3rem;
  max-width: calc((100% - 155px - 780px) / 3);
}
.notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.date {
  padding: 2rem 3rem;
  max-width: calc((100% - 155px - 780px) / 3);
}
.notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.view {
  padding: 2rem 3rem;
  max-width: calc((100% - 155px - 780px) / 3 + 5px);
}
.notice .sc02 .pagination {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.4rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.notice .sc02 .pagination li {
  text-align: center;
}
.notice .sc02 .pagination li a {
  display: block;
  font-weight: 400;
  font-size: 1.8rem;
  color: #ffffff;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.notice .sc02 .pagination li.prev a::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.notice .sc02 .pagination li.next a::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.notice .sc02 .pagination li.active a {
  color: #7757ff;
}
.notice .sc02 .pagination li:hover a {
  color: #7757ff;
}
.notice .sc02 .pagination li:hover a::before {
  border-color: #7757ff;
}
.notice .sc02 .notice_view {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.notice .sc02 .notice_view .notice_detail {
  widows: 100%;
}
.notice .sc02 .notice_view .notice_detail .notice_tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 2.2rem 0;
  border-top: 4px solid #ffffff;
  border-bottom: 1px solid #3a3a3a;
  width: 100%;
}
.notice .sc02 .notice_view .notice_detail .notice_tit .no {
  width: 138px;
  font-weight: 500;
  font-size: 1.6rem;
  color: #ffffff;
  text-align: center;
}
.notice .sc02 .notice_view .notice_detail .notice_tit .info {
  width: calc(100% - 138px);
  padding: 0 5rem 0 1.7rem;
}
.notice .sc02 .notice_view .notice_detail .notice_tit .info .tit {
  font-weight: 400;
  font-size: 2rem;
  color: #ffffff;
  line-height: 3rem;
}
.notice .sc02 .notice_view .notice_detail .notice_tit .info .desc {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.notice .sc02 .notice_view .notice_detail .notice_tit .info .desc p {
  font-weight: 400;
  font-size: 1.6rem;
  color: #9b9b9b;
}
.notice .sc02 .notice_view .notice_detail .notice_tit .info .desc p.no {
  display: none;
}
.notice .sc02 .notice_view .notice_detail .notice_tit .info .desc p.hit::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background: #9b9b9b;
  vertical-align: -2px;
  margin: 0 1rem;
}
.notice .sc02 .notice_view .notice_detail .notice_content {
  padding: 5rem 5rem 5rem 15.5rem;
  border-bottom: 1px solid #ffffff;
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 3rem;
  word-wrap: break-word;
  word-break: keep-all;
}
.notice .sc02 .notice_view .notice_btn_box {
  margin-top: 3rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.notice .sc02 .notice_view .notice_btn_box div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2.5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.notice .sc02 .notice_view .notice_btn_box button {
  font-weight: 400;
  font-size: 1.8rem;
  color: #ffffff;
  text-align: center;
  width: 20.2rem;
  height: 6rem;
  background: #000000;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.notice .sc02 .notice_view .notice_btn_box button:hover {
  border: 1px solid #7757ff;
  background: #210646;
  color: #7757ff;
}
.notice .sc02 .notice_view .notice_list_box {
  width: 100%;
  margin-top: 8rem;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
.notice .sc02 .notice_view .notice_list_box div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 2rem 0;
}
.notice .sc02 .notice_view .notice_list_box div:first-child {
  border-bottom: 1px solid #3a3a3a;
}
.notice .sc02 .notice_view .notice_list_box div p {
  font-weight: 400;
  font-size: 1.6rem;
  color: #ffffff;
}
.notice .sc02 .notice_view .notice_list_box div p:first-child {
  width: 138px;
  text-align: center;
}
.notice .sc02 .notice_view .notice_list_box div p.tit {
  padding: 0 5rem 0 1.7rem;
  width: calc(100% - 138px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

@media (min-width: 1201px) and (max-width: 1400px) {
  :root {
    font-size: 47.5%;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  :root {
    font-size: 42.5%;
  }
  .notice .sc02 {
    padding: 10rem 4rem;
  }
  .notice .sc02 .notice_list_wrap {
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box {
    width: 100%;
    margin: 0 auto;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .hd {
    display: none;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd {
    border-top: 4px solid #ffffff;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: 1px solid #ffffff;
    padding: 4rem 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div {
    font-size: 2.2rem;
    text-align: left;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div button {
    font-size: 0;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.no {
    padding: 0;
    max-width: none;
    width: auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.no::before {
    content: "No.";
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.no::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #9b9b9b;
    vertical-align: middle;
    margin-left: 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.tit {
    font-size: 3rem;
    line-height: 4rem;
    letter-spacing: -0.06rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0;
    max-width: none;
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 2.8rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.hit {
    padding: 0;
    max-width: none;
    width: auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    color: #9b9b9b;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.hit::before {
    content: "";
    display: inline-block;
    background-color: #9b9b9b;
    -webkit-mask-image: url("../../../public/images/notice/ico_view.svg");
    mask-image: url("../../../public/images/notice/ico_view.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 2.4rem;
    height: 2.4rem;
    vertical-align: middle;
    margin: 0 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.hit::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #9b9b9b;
    vertical-align: middle;
    margin: 0 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.date {
    padding: 0;
    max-width: none;
    width: auto;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    color: #9b9b9b;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.date::before {
    content: "";
    display: inline-block;
    background-color: #9b9b9b;
    -webkit-mask-image: url("../../../public/images/notice/ico_date.svg");
    mask-image: url("../../../public/images/notice/ico_date.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 2.4rem;
    height: 2.4rem;
    vertical-align: middle;
    margin-right: 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.view {
    padding: 0;
    max-width: none;
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    font-size: 62.5%;
  }
  .notice .sc02 {
    padding: 10rem 4rem;
  }
  .notice .sc02 .notice_list_wrap {
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box {
    width: 100%;
    margin: 0 auto;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .hd {
    display: none;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd {
    border-top: 4px solid #ffffff;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: 1px solid #ffffff;
    padding: 4rem 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div {
    position: relative;
    font-size: 2.2rem;
    text-align: left;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div button {
    font-size: 0;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.no {
    padding: 0;
    max-width: none;
    width: auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.no::before {
    content: "No.";
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.no::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #9b9b9b;
    vertical-align: middle;
    margin-left: 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.tit {
    font-size: 3rem;
    line-height: 4rem;
    letter-spacing: -0.06rem;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0;
    max-width: none;
    width: 100%;
    max-height: 7.6rem;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    white-space: normal;
    margin-bottom: 2.8rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.hit {
    padding: 0;
    max-width: none;
    width: auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    color: #9b9b9b;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.hit::before {
    content: "";
    display: inline-block;
    background-color: #9b9b9b;
    -webkit-mask-image: url("../../../public/images/notice/ico_view.svg");
    mask-image: url("../../../public/images/notice/ico_view.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 2.4rem;
    height: 2.4rem;
    vertical-align: middle;
    margin: 0 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.hit::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #9b9b9b;
    vertical-align: middle;
    margin: 0 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.date {
    padding: 0;
    max-width: none;
    width: auto;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    color: #9b9b9b;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.date::before {
    content: "";
    display: inline-block;
    background-color: #9b9b9b;
    -webkit-mask-image: url("../../../public/images/notice/ico_date.svg");
    mask-image: url("../../../public/images/notice/ico_date.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 2.4rem;
    height: 2.4rem;
    vertical-align: middle;
    margin-right: 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.view {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    max-width: none;
    width: auto;
    cursor: pointer;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.view::after {
    content: "";
    display: inline-block;
    background-color: #ffffff;
    -webkit-mask-image: url("../../../public/images/notice/ico_arrow_down.svg");
    mask-image: url("../../../public/images/notice/ico_arrow_down.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 3.7rem;
    height: 1.9rem;
  }
  .notice .sc02 .pagination {
    margin-top: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .notice .sc02 .pagination li a {
    font-size: 2.6rem;
  }
  .notice .sc02 .pagination li.prev a::before {
    width: 1.6rem;
    height: 1.6rem;
  }
  .notice .sc02 .pagination li.next a::before {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  :root {
    font-size: 62.5%;
  }
  .notice .sc02 {
    padding: 10rem 2rem;
  }
  .notice .sc02 .notice_list_wrap {
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box {
    width: 100%;
    margin: 0 auto;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .hd {
    display: none;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd {
    border-top: 4px solid #ffffff;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: 1px solid #ffffff;
    padding: 3rem 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div {
    position: relative;
    font-size: 1.6rem;
    text-align: left;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div button {
    font-size: 0;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.no {
    padding: 0;
    max-width: none;
    width: auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.no::before {
    content: "No.";
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.no::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #9b9b9b;
    vertical-align: middle;
    margin-left: 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.tit {
    font-size: 2.2rem;
    line-height: 2.8rem;
    letter-spacing: -0.04rem;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0;
    max-width: none;
    width: 90%;
    max-height: 5.2rem;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    white-space: normal;
    margin-bottom: 2rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.hit {
    padding: 0;
    max-width: none;
    width: auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    color: #9b9b9b;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.hit::before {
    content: "";
    display: inline-block;
    background-color: #9b9b9b;
    -webkit-mask-image: url("../../../public/images/notice/ico_view.svg");
    mask-image: url("../../../public/images/notice/ico_view.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 2.4rem;
    height: 2.4rem;
    vertical-align: middle;
    margin: 0 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.hit::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #9b9b9b;
    vertical-align: middle;
    margin: 0 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.date {
    padding: 0;
    max-width: none;
    width: auto;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    color: #9b9b9b;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.date::before {
    content: "";
    display: inline-block;
    background-color: #9b9b9b;
    -webkit-mask-image: url("../../../public/images/notice/ico_date.svg");
    mask-image: url("../../../public/images/notice/ico_date.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 2.4rem;
    height: 2.4rem;
    vertical-align: middle;
    margin-right: 1rem;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.view {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    max-width: none;
    width: auto;
    cursor: pointer;
  }
  .notice .sc02 .notice_list_wrap .notice_list_box .bd .cell div.view::after {
    content: "";
    display: inline-block;
    background-color: #ffffff;
    -webkit-mask-image: url("../../../public/images/notice/ico_arrow_down.svg");
    mask-image: url("../../../public/images/notice/ico_arrow_down.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 3rem;
    height: 1.2rem;
  }
  .notice .sc02 .pagination {
    margin-top: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 3rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .notice .sc02 .pagination li a {
    font-size: 2rem;
  }
  .notice .sc02 .pagination li.prev a::before {
    width: 1.2rem;
    height: 1.2rem;
  }
  .notice .sc02 .pagination li.next a::before {
    width: 1.2rem;
    height: 1.2rem;
  }
  .notice .sc02 .notice_view {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .notice .sc02 .notice_view .notice_detail {
    widows: 100%;
  }
  .notice .sc02 .notice_view .notice_detail .notice_tit {
    display: block;
    padding: 3rem 0;
    border-bottom: 1px solid #ffffff;
  }
  .notice .sc02 .notice_view .notice_detail .notice_tit .no {
    display: none;
  }
  .notice .sc02 .notice_view .notice_detail .notice_tit .info {
    width: 100%;
    padding: 0;
  }
  .notice .sc02 .notice_view .notice_detail .notice_tit .info .tit {
    font-weight: 400;
    font-size: 2rem;
    color: #ffffff;
    line-height: 3rem;
  }
  .notice .sc02 .notice_view .notice_detail .notice_tit .info .desc {
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .notice .sc02 .notice_view .notice_detail .notice_tit .info .desc p {
    font-weight: 400;
    font-size: 1.6rem;
    color: #9b9b9b;
    width: auto;
  }
  .notice .sc02 .notice_view .notice_detail .notice_tit .info .desc p.no {
    display: block;
    color: #ffffff;
  }
  .notice
    .sc02
    .notice_view
    .notice_detail
    .notice_tit
    .info
    .desc
    p.no::before {
    content: "No.";
  }
  .notice
    .sc02
    .notice_view
    .notice_detail
    .notice_tit
    .info
    .desc
    p.no::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #9b9b9b;
    vertical-align: 0;
    margin: 0 1rem;
  }
  .notice .sc02 .notice_view .notice_detail .notice_tit .info .desc p.hit span {
    display: none;
  }
  .notice
    .sc02
    .notice_view
    .notice_detail
    .notice_tit
    .info
    .desc
    p.hit::before {
    content: "";
    display: inline-block;
    background-color: #9b9b9b;
    -webkit-mask-image: url("../../../public/images/notice/ico_view.svg");
    mask-image: url("../../../public/images/notice/ico_view.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 1.7rem;
    height: 1.7rem;
    vertical-align: middle;
    margin-right: 1rem;
  }
  .notice
    .sc02
    .notice_view
    .notice_detail
    .notice_tit
    .info
    .desc
    p.hit::after {
    width: 1px;
    height: 10px;
    vertical-align: 0;
    margin: 0 1rem;
  }
  .notice
    .sc02
    .notice_view
    .notice_detail
    .notice_tit
    .info
    .desc
    p.date::before {
    content: "";
    display: inline-block;
    background-color: #9b9b9b;
    -webkit-mask-image: url("../../../public/images/notice/ico_date.svg");
    mask-image: url("../../../public/images/notice/ico_date.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 1.7rem;
    height: 1.7rem;
    vertical-align: middle;
    margin-right: 1rem;
  }
  .notice .sc02 .notice_view .notice_detail .notice_content {
    padding: 6rem 0;
    line-height: 2.6rem;
  }
  .notice .sc02 .notice_view .notice_btn_box {
    margin-top: 4rem;
    display: block;
  }
  .notice .sc02 .notice_view .notice_btn_box div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .notice .sc02 .notice_view .notice_btn_box button {
    font-size: 1.6rem;
    width: 100%;
    height: 6rem;
  }
  .notice .sc02 .notice_view .notice_btn_box button.view_list_btn {
    margin-top: 2.5rem;
  }
  .notice .sc02 .notice_view .notice_list_box {
    margin-top: 8rem;
  }
  .notice .sc02 .notice_view .notice_list_box div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 2rem 0;
  }
  .notice .sc02 .notice_view .notice_list_box div:first-child {
    border-bottom: 1px solid #3a3a3a;
  }
  .notice .sc02 .notice_view .notice_list_box div:first-child::before {
    content: "";
    display: inline-block;
    background-color: #9b9b9b;
    -webkit-mask-image: url("../../../public/images/notice/ico_arrow_down.svg");
    mask-image: url("../../../public/images/notice/ico_arrow_down.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 1rem;
    height: 0.6rem;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .notice .sc02 .notice_view .notice_list_box div:last-child::before {
    content: "";
    display: inline-block;
    background-color: #9b9b9b;
    -webkit-mask-image: url("../../../public/images/notice/ico_arrow_down.svg");
    mask-image: url("../../../public/images/notice/ico_arrow_down.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    font-size: 0;
    width: 1rem;
    height: 0.6rem;
  }
  .notice .sc02 .notice_view .notice_list_box div p {
    font-weight: 400;
    font-size: 1.6rem;
    color: #ffffff;
  }
  .notice .sc02 .notice_view .notice_list_box div p:first-child {
    width: 100px;
    text-align: center;
    color: #9b9b9b;
  }
  .notice .sc02 .notice_view .notice_list_box div p.tit {
    padding: 0 0 0 0.5rem;
    width: calc(100% - 100px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
  }
}
.adtech {
  background: #000000;
}
.adtech .sc01 {
  background: url("../../../public/images//tech/img_tech_visual.png") no-repeat
    center;
  background-size: cover;
}
.adtech .sc02 {
  position: relative;
  width: 100%;
  padding: 20rem 0 10rem;
  margin: 0 auto;
  text-align: center;
}
.adtech .sc02 strong {
  font-weight: 700;
  font-size: 6rem;
  line-height: 9rem;
  color: #ffffff;
  display: block;
  max-width: 131.5rem;
  word-break: keep-all;
  text-align: center;
  margin: 0 auto;
}
.adtech .sc02 .img_box {
  background: url("../../../public/images//tech/img_tech_sc02.png") no-repeat
    center;
  background-size: cover;
  max-width: 140rem;
  width: 100%;
  aspect-ratio: 1400/776;
  margin: 7rem auto 0;
}
.adtech .sc03 {
  position: relative;
  width: 100%;
  padding: 20rem 0 10rem;
  margin: 0 auto;
  text-align: center;
}
.adtech .sc03 strong {
  font-weight: 700;
  font-size: 6rem;
  line-height: 9rem;
  color: #ffffff;
  display: block;
  max-width: 134rem;
  word-break: keep-all;
  text-align: center;
  margin: 0 auto;
}
.adtech .sc03 .img_box {
  background: url("../../../public/images//tech/img_tech_sc03.png") no-repeat
    center;
  background-size: cover;
  max-width: 115.9rem;
  width: 100%;
  aspect-ratio: 1159/637;
  margin: 10rem auto 0;
}
.adtech .sc04 {
  position: relative;
  width: 100%;
  padding: 20rem 0;
  margin: 0 auto;
  text-align: center;
}
.adtech .sc04 strong {
  font-weight: 700;
  font-size: 6rem;
  line-height: 9rem;
  color: #ffffff;
  display: block;
  word-break: keep-all;
  text-align: center;
  margin: 0 auto;
}
.adtech .sc04 ul {
  margin-top: 8.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4.4rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.adtech .sc04 ul li {
  position: relative;
  width: 43.6rem;
  aspect-ratio: 436/536;
  border-radius: 2rem;
  background: #0f0f0f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 3.6rem;
}
.adtech .sc04 ul li::before {
  content: "";
  display: inline-block;
  width: 27.7rem;
  height: 23.5rem;
}
.adtech .sc04 ul li p {
  font-weight: 500;
  font-size: 3rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}
.adtech .sc04 ul li span {
  font-weight: 500;
  font-size: 1.8rem;
  color: #ffffff;
  text-align: center;
  line-height: 3rem;
  display: block;
  word-break: keep-all;
}
.adtech .sc04 ul li:first-child::before {
  background: url("../../../public/images//tech/img_tech_card01.png") no-repeat
    center;
  background-size: contain;
}
.adtech .sc04 ul li:nth-child(2)::before {
  background: url("../../../public/images//tech/img_tech_card02.png") no-repeat
    center;
  background-size: contain;
}
.adtech .sc04 ul li:last-child::before {
  background: url("../../../public/images//tech/img_tech_card03.png") no-repeat
    center;
  background-size: contain;
}
.adtech .sc05 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  height: 90rem;
  overflow: hidden;
  background: url("../../../public/images//tech/img_tech_sc05.png") no-repeat
    center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-left: 33rem;
}
.adtech .sc05 strong {
  font-weight: 700;
  font-size: 6rem;
  line-height: 9rem;
  color: #ffffff;
  text-align: left;
}
.adtech .sc05 strong span {
  color: #7757ff;
}

@media (min-width: 1201px) and (max-width: 1400px) {
  :root {
    font-size: 47.5%;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  :root {
    font-size: 42.5%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    font-size: 62.5%;
  }
  .adtech .sc02 {
    padding: 4.5rem 4rem 1rem;
  }
  .adtech .sc02 strong {
    font-size: 5rem;
    line-height: 6rem;
  }
  .adtech .sc02 .img_box {
    background: url("../../../public/images//tech/img_tech_sc02_mo.png")
      no-repeat center;
    background-size: cover;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 768/558;
    margin: 10rem auto 0;
  }
  .adtech .sc03 {
    padding: 10rem 4rem 10rem;
  }
  .adtech .sc03 strong {
    font-size: 5rem;
    line-height: 6rem;
    max-width: 100%;
  }
  .adtech .sc03 .img_box {
    background: url("../../../public/images//tech/img_tech_sc03_mo.png")
      no-repeat center;
    background-size: cover;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 768/480;
    margin: 10rem auto 0;
  }
  .adtech .sc04 {
    padding: 10rem 4rem;
  }
  .adtech .sc04 strong {
    font-size: 5rem;
    line-height: 6rem;
    max-width: 40rem;
  }
  .adtech .sc04 ul {
    margin-top: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .adtech .sc04 ul li {
    width: 100%;
    aspect-ratio: 688/319;
    background: #0f0f0f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 4.2rem 2.5rem 4.2rem 5rem;
  }
  .adtech .sc04 ul li::before {
    content: "";
    display: inline-block;
    width: 27rem;
    height: 23.5rem;
  }
  .adtech .sc04 ul li div {
    max-width: calc(100% - 300px);
    width: 100%;
  }
  .adtech .sc04 ul li p {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: left;
  }
  .adtech .sc04 ul li span {
    font-size: 1.8rem;
    line-height: 3rem;
    text-align: left;
  }
  .adtech .sc04 ul li span .mo_none {
    display: none;
  }
  .adtech .sc05 {
    background: url("../../../public/images//tech/img_tech_sc05_mo.png")
      no-repeat center;
    background-size: cover;
    display: block;
    padding-top: 13rem;
    padding-left: 0;
  }
  .adtech .sc05 strong {
    font-size: 5rem;
    line-height: 6rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  :root {
    font-size: 62.5%;
  }
  .adtech .sc02 {
    padding: 4.5rem 0 10rem;
  }
  .adtech .sc02 strong {
    padding: 0 2rem;
    font-size: 3.6rem;
    line-height: 4rem;
    max-width: 100%;
  }
  .adtech .sc02 .img_box {
    background: url("../../../public/images//tech/img_tech_sc02_mo.png")
      no-repeat center;
    background-size: cover;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 768/558;
    margin: 10rem auto 0;
  }
  .adtech .sc03 {
    padding: 10rem 0 10rem;
  }
  .adtech .sc03 strong {
    padding: 0 2rem;
    font-size: 3.6rem;
    line-height: 4rem;
    max-width: 100%;
  }
  .adtech .sc03 .img_box {
    background: url("../../../public/images//tech/img_tech_sc03_mo.png")
      no-repeat center;
    background-size: cover;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 768/480;
    margin: 10rem auto 0;
  }
  .adtech .sc04 {
    padding: 10rem 0;
  }
  .adtech .sc04 strong {
    padding: 0 2rem;
    font-size: 3.6rem;
    line-height: 4rem;
    max-width: 100%;
  }
  .adtech .sc04 ul {
    margin-top: 10rem;
    padding: 0 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .adtech .sc04 ul li {
    width: 100%;
    aspect-ratio: 688/319;
    background: #0f0f0f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .adtech .sc04 ul li::before {
    content: "";
    display: inline-block;
    width: 27rem;
    height: 23.5rem;
  }
  .adtech .sc04 ul li p {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .adtech .sc04 ul li span {
    font-size: 1.6rem;
  }
  .adtech .sc04 ul li span .mo_none {
    display: none;
  }
  .adtech .sc05 {
    background: url("../../../public/images//tech/img_tech_sc05_mo.png")
      no-repeat center;
    background-size: cover;
    display: block;
    padding-top: 15rem;
    padding-left: 0;
  }
  .adtech .sc05 strong {
    font-size: 3rem;
    line-height: 5rem;
    text-align: center;
  }
} /*# sourceMappingURL=common.css.map */
