:root {
  --color-main: #9747FF;
  --color-sub: #692498;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-pretendard: "Pretendard", sans-serif;
  --font-roboto: "Roboto", sans-serif;
}

.font120 {
  --fontsize: 12.0rem;
  font-size: var(--fontsize);
}

.font100 {
  --fontsize: 10.0rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font46 {
  --fontsize: 4.6rem;
  font-size: var(--fontsize);
}

#sv {
  padding: 100px 0 0;
}
#sv .flexBox {
  justify-content: space-between;
  padding: 0 0 100px;
}
#sv.sv02 .flexBox {
  padding: 0 0 60px;
}
#sv .text h2 {
  color: #111;
  font-weight: 800;
}
#sv .text p {
  color: #222;
  font-size: 2rem;
  line-height: 1.6;
	margin: 20px 0 0;
}
#sv .text.center {
  text-align: center;
}
#sv .menuBox {
  padding: 30px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#sv .menuBox > li {
  position: relative;
}
#sv .menuBox > li > a {
  color: #888;
  font-weight: 300;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#sv .menuBox > li > a::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background: #eee;
  margin: 0 20px;
}
#sv .menuBox > li button {
  width: 145px;
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#sv .menuBox > li button img {
  transition: all 0.4s;
}
#sv .menuBox > li button.on img {
  transform: rotateX(180deg);
}
#sv .menuBox > li span {
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
}
#sv .menuBox > li ul {
  width: 100%;
  background: var(--color-black);
  border-radius: 10px;
  padding: 10px 15px;
  position: absolute;
  top: calc(100% + 15px);
  z-index: 2;
  display: none;
}
#sv .menuBox > li ul li a {
  display: block;
  color: var(--color-white);
  font-size: 1.4rem;
  padding: 5px 0;
}
#sv .depthMenu {
  padding:30px 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f5f5f5;
  border-radius: 80px;
  margin-bottom: 60px;
  gap: 20px 0;
}
#sv .depthMenu .imgbox {
  display: none;
}
#sv .depthMenu.subm2 {
  margin-bottom: 100px;
}
#sv .depthMenu a,
#sv .depthMenu button {
  height: 100%;
  color: #ccc;
  font-size: 2rem;
  font-weight: 600;
  padding: 0 50px;
  transition: all 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#sv .depthMenu a:hover, 
#sv .depthMenu li.on a,
#sv .depthMenu button:hover,
#sv .depthMenu li.on button{
  color: #111;
}
#sv .depthMenu li {
  position: relative;
}
#sv .depthMenu li::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-white);
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  transition: all 0.8s 0.8s;
  width: 1px;
  height: 20px;
  background: #ddd;
  transform:translateY(-50%);
}
#sv .depthMenu li:last-child::before {
  display: none;
}

.subContents h3.tit {
  color: #111;
  font-weight: 800;
  margin-bottom:30px;
}
.subContents .subPage {
  padding-bottom: 70px;
}
.subContents .tabTitle {
  padding:30px 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f5f5f5;
  border-radius: 80px;
  gap: 20px 0;
}
.subContents .tabTitle a,
.subContents .tabTitle button {
  height: 100%;
  color: #ccc;
  font-size: 2rem;
  font-weight: 600;
  padding: 0 50px;
  transition: all 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .advertiser .tabTitle a,
.subContents .advertiser .tabTitle button {
  padding: 0 44px;
}
.subContents .tabTitle a:hover, .subContents .tabTitle a.on,
.subContents .tabTitle button:hover,
.subContents .tabTitle button.on {
  color: #111;
}
.subContents .tabTitle hr {
  width: 1px;
  height: 20px;
  background: #ddd;
  border: none;
  margin: 0;
}
.subContents .introduction .scroller {
  background: var(--color-black);
}
.subContents .introduction .scroller * {
  color: var(--color-white);
}
.subContents .introduction .scroller .yBox > * {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s;
}
.subContents .introduction .scroller .yBox.on > * {
  opacity: 1;
  transform: translateY(0);
}
.subContents .introduction .scroller .yBox.on > *:nth-child(1) {
  transition-delay: 0.16s;
}
.subContents .introduction .scroller .yBox.on > *:nth-child(2) {
  transition-delay: 0.32s;
}
.subContents .introduction .scroller .yBox.on > *:nth-child(3) {
  transition-delay: 0.48s;
}
.subContents .introduction .scroller h2 {
  font-weight: 700;
}
.subContents .introduction .scroller .cool {
  position: relative;
  height: 100vh;
}
.subContents .introduction .scroller .cool .point {
  display: grid;
  grid-template-columns: 52.05% 31.25%;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 42.05%;
  left: calc(50% + 10px);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.subContents .introduction .scroller .cool .point span {
  display: block;
  width: 100%;
  border-radius: 50%;
  padding: 50% 0;
  position: relative;
  opacity: 0.2;
}
.subContents .introduction .scroller .cool .point span::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .introduction .scroller .cool .point .big {
  animation: rotate 8s linear infinite;
}
.subContents .introduction .scroller .cool .point .big::before {
  background-image: url("/img/sub/introduction/coolDashedBig.png");
}
.subContents .introduction .scroller .cool .point .small {
  margin: 50px 0 0 -40px;
}
.subContents .introduction .scroller .cool .point .small::before {
  background-image: url("/img/sub/introduction/coolDashedSmall.png");
}
.subContents .introduction .scroller .cool .point .small.on {
  animation: rotate 24s linear infinite;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.subContents .introduction .scroller .cool .flexBox.column {
  gap: 65px 0;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.subContents .introduction .scroller .cool .text .flexBox {
  gap: 0 35px;
  align-items: center;
}
.subContents .introduction .scroller .cool .text .column,
.subContents .introduction .scroller .cool .text dl {
  flex-shrink: 0;
}
.subContents .introduction .scroller .cool .text .column * {
  line-height: 1.2;
}
.subContents .introduction .scroller .cool .text .column > div,
.subContents .introduction .scroller .cool .text .column .circle,
.subContents .introduction .scroller .cool .text .column .oo {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .introduction .scroller .cool .text em {
  font-weight: 900;
  font-family: var(--font-roboto);
  letter-spacing: 0.03em;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.6);
}
.subContents .introduction .scroller .cool .text em.fill {
  background-image: linear-gradient(to right, #fff 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 1s;
}
.subContents .introduction .scroller .cool .text em.fill.on {
  background-position: 0%;
}
.subContents .introduction .scroller .cool .text .oo {
  height: 12rem;
  padding: 0 10px;
}
.subContents .introduction .scroller .cool .text .oo figure {
  height: 100%;
  position: relative;
  transition: all 1.2s;
}
.subContents .introduction .scroller .cool .text .oo .oo1 {
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}
.subContents .introduction .scroller .cool .text .oo .oo2 {
  right: 50%;
  z-index: 0;
  transform: translateX(50%);
}
.subContents .introduction .scroller .cool .text .oo.on .oo1 {
  left: 0;
  transform: translateX(5px);
}
.subContents .introduction .scroller .cool .text .oo.on .oo2 {
  right: 0;
  transform: translateX(-5px);
}
.subContents .introduction .scroller .cool .text hr {
  width: 260px;
  height: 1px;
  border: none;
  margin: 0;
  position: relative;
}
.subContents .introduction .scroller .cool .text hr::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transition: all 0.8s 0.8s;
}
.subContents .introduction .scroller .cool .text hr.on::before {
  width: 100%;
}
.subContents .introduction .scroller .cool .text dl {
  text-align: right;
  margin: 0 0 0 auto;
  transform: translateY(2.3em);
}
.subContents .introduction .scroller .cool .text dl > * {
  overflow: hidden;
}
.subContents .introduction .scroller .cool .text dl dt {
  font-size: 2.4rem;
  margin: 0 0 10px;
}
.subContents .introduction .scroller .cool .text dl dd {
  font-size: 5rem;
  font-weight: 700;
}
.subContents .introduction .scroller .cool .text dl span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.8s;
}
.subContents .introduction .scroller .cool .text dl span.on {
  opacity: 1;
  transform: translateY(0);
}
.subContents .introduction .scroller .cool .circleButton {
  margin: 0 0 0 -20px;
}
.subContents .introduction .scroller .cool .circleButton button {
  background: transparent;
  border-color: var(--color-white);
}
.subContents .introduction .scroller .cool .circleButton img {
  transform: rotate(90deg);
  filter: brightness(0) invert(1);
}
.subContents .introduction .scroller .cool .circleButton:hover button {
  background: var(--color-white);
}
.subContents .introduction .scroller .cool .circleButton:hover img {
  filter: inherit;
}

.subContents .introduction .scroller .number {
  height: 100vh;
}
.subContents .introduction .scroller .number .box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .introduction .scroller .number .w1500 {
  height: auto;
}
.subContents .introduction .scroller .number .itemBox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 80px 0 0;
}
.subContents .introduction .scroller .number .item {
  padding: 50% 0;
  position: relative;
  opacity: 0;
  transition: all 0.8s ease-in-out;
}
.subContents .introduction .scroller .number .item * {
  color: var(--color-white);
}
.subContents .introduction .scroller .number .item h6 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.subContents .introduction .scroller .number .item span {
  font-size: 10rem;
  font-weight: 800;
  font-family: var(--font-roboto);
}
.subContents .introduction .scroller .number .item em {
  font-size: 4rem;
  font-weight: 600;
}
.subContents .introduction .scroller .number .blue,
.subContents .introduction .scroller .number .green {
  border-radius: 50%;
}
.subContents .introduction .scroller .number .blue {
  background: #1766FE;
}
.subContents .introduction .scroller .number .white {
  background: #FFFFFF;
  border-radius: 50% 50% 0 0;
  transform: translateX(-100%) rotate(-45deg);
}
.subContents .introduction .scroller .number .white h6 {
  color: #333;
}
.subContents .introduction .scroller .number .white span, .subContents .introduction .scroller .number .white em {
  color: #111;
}
.subContents .introduction .scroller .number .green {
  background: #00DCA7;
  transform: translateX(-200%);
}
.subContents .introduction .scroller .number .purple {
  background: #9747FF;
  border-radius: 0 50% 50% 0;
  transform: translateX(-300%);
}
.subContents .introduction .scroller .number .inner {
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .introduction .scroller .number .itemBox.on .item {
  opacity: 1;
  transform: translateX(0);
}
.subContents .introduction .scroller .promote {
  position: relative;
}
.subContents .introduction .scroller .promote .text {
  height: 100vh;
}
.subContents .introduction .scroller .promote .text .flexBox:not(.column) {
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.subContents .introduction .scroller .promote .text .flexBox:not(.column) > em {
  font-weight: 900;
  letter-spacing: 0.02em;
}
.subContents .introduction .scroller .promote .text .column {
  gap: 20px 0;
}
.subContents .introduction .scroller .promote .text .refresh {
  position: relative;
}
.subContents .introduction .scroller .promote .graph {
  z-index: 1;
  opacity: 1;
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
  position: relative;
}
.subContents .introduction .scroller .promote .graph .w1500 {
  position: relative;
}
.subContents .introduction .scroller .promote .graph .dlBox {
  gap: 20px 0;
  padding: 120px 0 0;
  position: relative;
  z-index: 1;
}
.subContents .introduction .scroller .promote .graph dl,
.subContents .introduction .scroller .promote .graph dl dt {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .introduction .scroller .promote .graph dl {
  width: 750px;
  height: 160px;
  justify-content: space-between;
  background: #222;
  border-radius: 200px;
  padding: 0 80px;
  position: relative;
}
.subContents .introduction .scroller .promote .graph dl:nth-child(1) {
  left: 0;
}
.subContents .introduction .scroller .promote .graph dl:nth-child(2) {
  left: 80px;
}
.subContents .introduction .scroller .promote .graph dl:nth-child(3) {
  left: 160px;
}
.subContents .introduction .scroller .promote .graph dl dt {
  gap: 0 20px;
  font-size: 2rem;
}
.subContents .introduction .scroller .promote .graph dl dd {
  font-size: 6.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: "Roboto", "Pretendard";
}
.subContents .introduction .scroller .promote .graph p {
  color: #888;
  position: absolute;
  right: 20px;
  bottom: calc(18% - 20px);
  opacity: 0;
  transition: all 0.6s;
}
.subContents .introduction .scroller .promote .graph .chart {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.subContents .introduction .scroller .promote .graph .chart .graphPlane,
.subContents .introduction .scroller .promote .graph .chart .graphLine {
  transition: all 2s;
}
.subContents .introduction .scroller .promote .graph .chart .graphPlane,
.subContents .introduction .scroller .promote .graph .chart .graphCircle {
  opacity: 0;
}
.subContents .introduction .scroller .promote .graph .chart .graphLine {
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
}
.subContents .introduction .scroller .promote .graph .chart .graphCircle1 {
  visibility: hidden;
  transform-box: content-box;
  transform-origin: center;
}
@keyframes blink {
  to {
    transform: scale(3.535);
    opacity: 0;
  }
}
.subContents .introduction .scroller .promote .graph .chart.on .graphPlane,
.subContents .introduction .scroller .promote .graph .chart.on .graphCircle {
  opacity: 1;
}
.subContents .introduction .scroller .promote .graph .chart.on .graphLine {
  stroke-dashoffset: 0;
}
.subContents .introduction .scroller .promote .graph .chart.on .graphCircle {
  transition-delay: 1.6s;
}
.subContents .introduction .scroller .promote .graph .chart.on .graphCircle1 {
  visibility: inherit;
  animation: blink 1s linear infinite;
}
.subContents .introduction .scroller .since {
  padding: 15.885% 0;
  position: relative;
}
.subContents .introduction .scroller .since span {
  font-size: 31.25vw;
  font-weight: 900;
  font-family: var(--font-roboto);
  letter-spacing: 0;
  white-space: nowrap;
  transition: all 0.8s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .introduction .scroller .since.on span {
  font-size: 14.575vw;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}
.subContents .introduction .scroller .information {
  position: relative;
  padding: 15% 0 0;
}
.subContents .introduction .scroller .information > div {
  width: 100vw;
}
.subContents .introduction .scroller .information .text {
  left: 0;
}
.subContents .introduction .scroller .information .text .column {
  height: 100%;
  gap: 20px 0;
  justify-content: center;
}
.subContents .introduction .scroller .information .text em {
  display: flex;
  justify-content: flex-end;
  font-size: 30rem;
  font-weight: 900;
  opacity: 0.1;
  margin-top: 30px;
}
.subContents .introduction .scroller .information .grid {
  background: var(--color-black);
  padding: 95px 0;
}
.subContents .introduction .scroller .information .grid .flexBox {
  height: 100%;
  align-items: center;
}
.subContents .introduction .scroller .information .grid .itemWrap {
  width: 100%;
  position: relative;
}
.subContents .introduction .scroller .information .grid .lineBox {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .introduction .scroller .information .grid .lineBox span {
  width: 1px;
  height: 100%;
  display: block;
  background: white;
  position: relative;
  opacity: 0;
  transition: all 2s;
}
.subContents .introduction .scroller .information .grid .lineBox .down {
  transform: translateY(-100%);
}
.subContents .introduction .scroller .information .grid .lineBox .up {
  transform: translateY(100%);
}
.subContents .introduction .scroller .information .grid .lineBox .horizontal {
  width: 0;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .introduction .scroller .information .grid .lineBox.on span {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}
.subContents .introduction .scroller .information .grid .lineBox.on .down,
.subContents .introduction .scroller .information .grid .lineBox.on .up {
  transform: translateY(0);
}
.subContents .introduction .scroller .information .grid .lineBox.on .horizontal {
  width: 100%;
}
.subContents .introduction .scroller .information .grid .itemBox {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0;
  transition: all 0.6s;
}
.subContents .introduction .scroller .information .grid .item {
  width: 100%;
  border: 1px solid white;
  border-radius: 200px;
  padding: 50% 0;
  position: relative;
}
.subContents .introduction .scroller .information .grid .double {
  padding: 25% 0;
}
.subContents .introduction .scroller .information .grid .doubleT {
  grid-area: 1/3/1/5;
}
.subContents .introduction .scroller .information .grid .doubleB {
  grid-area: 2/1/2/3;
}
.subContents .introduction .scroller .information .grid .inner {
  gap: 20px 0;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .introduction .scroller .information .grid h6 {
  font-size: 2rem;
}
.subContents .introduction .scroller .information .grid p {
  font-size: 3.8rem;
  font-weight: 700;
  font-family: "Roboto", "Pretendard";
}
.subContents .introduction .scroller .information .grid .itemBox.on {
  opacity: 1;
}
.subContents .introduction .box h6 {
  font-size: 2.4rem;
  font-weight: 700;
}
.subContents .introduction .box p {
  font-size: 1.8rem;
  font-weight: 300;
}
.subContents .introduction .process .itemBox {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.subContents .introduction .process .item {
  text-align: center;
}
.subContents .introduction .process .img {
  position: relative;
}
.subContents .introduction .process .shape {
  position: absolute;
  opacity: 0;
  transition: all 0.6s;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
}
.subContents .introduction .process .text {
  margin: 40px 0 0;
}
.subContents .introduction .process .text h6 {
  width: 100%;
  height: 80px;
  background: #f5f5f5;
  color: #ccc;
  transition: all 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .introduction .process .text p {
  color: #666;
  line-height: 1.55;
  margin: 30px 0 0;
}
.subContents .introduction .process .item1 .shape {
  top: 40px;
  left: 40px;
  transform-origin: left top;
}
.subContents .introduction .process .item1 h6 {
  border-radius: 80px 0 0 80px;
}
.subContents .introduction .process .item2 .shape {
  left: 20px;
  bottom: 0;
  transform-origin: left bottom;
}
.subContents .introduction .process .item3 .shape {
  top: 20px;
  left: 0px;
  transform-origin: left top;
}
.subContents .introduction .process .item4 .shape {
  top: 10px;
  right: -10px;
  transform-origin: right top;
}
.subContents .introduction .process .item5 .shape {
  bottom: 20px;
  right: 10px;
  transform-origin: right bottom;
}
.subContents .introduction .process .item5 h6 {
  border-radius: 0 80px 80px 0;
}
.subContents .introduction .process .item.on .shape {
  opacity: 1;
}
.subContents .introduction .process .item.on .text h6 {
  color: #333;
}
.subContents .introduction .rolling {
  padding: 100px 0;
}
.subContents .introduction .rolling .flexBox {
  position: relative;
}
.subContents .introduction .rolling span {
  font-size: 7.2915vw;
  font-weight: 900;
  font-family: var(--font-roboto);
  letter-spacing: 0;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ddd;
}
.subContents .introduction .business .itemBox {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 10px;
}
.subContents .introduction .business .item,
.subContents .introduction .business .img,
.subContents .introduction .business .text {
  position: relative;
}
.subContents .introduction .business .item {
  text-align: center;
  transition: all 0.6s;
}
.subContents .introduction .business .item * {
  color: var(--color-white);
}
.subContents .introduction .business p {
  line-height: 1.65;
}
.subContents .introduction .business .img h6 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .introduction .business .text {
  flex-direction: column;
  background: var(--color-black);
  padding: 20px 10px;
  opacity: 0;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .introduction .business .text h6 {
  transform: translateY(20px);
  transition: all 0.4s;
}
.subContents .introduction .business .text img {
  position: absolute;
  right: 60px;
  bottom: 50px;
  transition: all 0.6s;
  filter: brightness(0) invert(1);
}
.subContents .introduction .business .item1 {
  transform: rotate(10deg);
}
.subContents .introduction .business .item2 {
  transform: rotate(-5deg);
}
.subContents .introduction .business .item3 {
  transform: rotate(7deg);
}
.subContents .introduction .business .item4 {
  transform: rotate(-7deg);
}
.subContents .introduction .business .itemBox.on .item {
  transform: rotate(0);
}
.subContents .introduction .business .item:hover .img h6 {
  opacity: 0;
  transition: all 0s;
}
.subContents .introduction .business .item:hover .text {
  opacity: 1;
}
.subContents .introduction .business .item:hover .text h6 {
  margin: 0 0 20px;
  transform: translateY(0);
}
.subContents .introduction .business .item:hover .text img {
  right: 40px;
}
.subContents .introduction .partner .tabTitle {
	margin: 0 0 30px;
}
.subContents .introduction .partner .logoBox ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.subContents .introduction .partner .logoBox ul li {
  padding: 26.65% 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .introduction .partner .logoBox ul li img {
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .business .videoBox .hover,
.subContents .business .videoBox .hover::before {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.subContents .business .videoBox .hover {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0 20px;
	border-radius: 15px;
	padding: 20px;
	overflow: hidden;
}
.subContents .business .videoBox .hover::before,
.subContents .business .videoBox .hover p {
	opacity: 0;
	transition: all 0.4s;
}
.subContents .business .videoBox .hover::before {
	content: "";
	display: block;
	background: linear-gradient(0deg, #000 -4.77%, rgba(0, 0, 0, 0.00) 100%);
	position: absolute;
	z-index: -1;
}
.subContents .business .videoBox .hover p {
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.subContents .business .videoBox .hover em {
	color: var(--color-white);
	font-size: 1.5rem;
}
.subContents .business .videoBox .img .category {
	flex-shrink: 0;
	position: relative;
	right: auto;
	bottom: auto;
}
.subContents .business .videoBox .item:hover .hover::before,
.subContents .business .videoBox .item:hover .hover p {
	opacity: 1;
}
.subContents .search .tagBox label {
  position: relative;
}
.subContents .search .tagBox input[type=checkbox] {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subContents .search .tagBox input[type=checkbox]:checked {
  background: none;
}
.subContents .search .tagBox input[type=checkbox]:checked + span {
  background: var(--color-black);
  border-color: transparent;
  color: var(--color-white);
}
.subContents .search .top {
  max-width: 1000px;
  margin: 0 auto;
}
.subContents .search .top .tagBox {
  justify-content: center;
  margin: 30px 0 0;
}
.subContents .search .listBox {
  border-top: 2px solid var(--color-black);
  margin: 80px 0 100px;
}
.subContents .search .listBox .flexBox {
  align-items: center;
  padding: 20px 0;
}
.subContents .search .listBox h6 {
  width: 250px;
  flex-shrink: 0;
  color: #333;
  font-size: 1.8rem;
  font-weight: 600;
}
.subContents .search .listBox button {
  width: 130px;
  height: 40px;
  gap: 0 10px;
  border: 1px solid #ddd;
  border-top: 1px solid #fff;
  border-radius: 0 0 15px 15px;
  margin: -1px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subContents .search .listBox button em {
  color: #666;
  font-size: 1.5rem;
}
.subContents .search .listBox button img {
  transition: all 0.4s;
}
.subContents .search .listBox button.on img {
  transform: rotateX(180deg);
}
.subContents .search .listBox .formButton {
  margin: 50px auto 0;
}
.subContents .search .list {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
.subContents .search .list > .flexBox {
  align-items: flex-start;
}
.subContents .search .list > .flexBox > h6 {
  transform: translateY(0.4em);
}
.subContents .search .toggle {
  display: none;
}
.subContents .search .toggle input[type=radio],
.subContents .search .toggle input[type=checkbox] {
  width: 25px;
  height: 25px;
  background: #ddd url("/img/sub/checkIconW.png") no-repeat center;
  border: none;
  border-radius: 50%;
}
.subContents .search .toggle input[type=radio]:checked,
.subContents .search .toggle input[type=checkbox]:checked {
  background-color: var(--color-main);
}
.subContents .search .toggle .dateBox {
	display: flex;
	align-items: center;
}
.subContents .search .toggle .datepicker {
  width: 300px;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 50px;
  color: #222;
  font-size: 1.7rem;
  padding: 0 25px;
}
.subContents .search .toggle .itemBox,
.subContents .search .toggle label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.subContents .search .toggle .itemBox {
  gap: 20px 60px;
	flex-wrap: wrap;
}
.subContents .search .toggle label {
  gap: 0 10px;
}
.subContents .search .result > p {
  color: #333;
  margin: 0 0 30px;
}
.subContents .search .result > p em {
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 600;
}
.subContents .inquiry {
  margin-top: 60px;
}
.recruit .formButton {
  margin: 100px auto 0;
}
.apply .ipbox {
  margin-top: 150px;
}
.apply .ipbox.ip1 {
  margin-top: 0;
}
.apply .ipbox.ip3 .formBox {
  border: none;
}
.apply .ipbox h4 {
  color: #111;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.apply .formButton {
  margin: 100px auto 0;
}
.business .listbox > ul > li:not(:last-child) {
  margin-bottom: 100px;
}
.business .listbox > ul > li h4 {
  color: #111;
  font-size:3.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.business .listbox > ul > li > .box {
  min-height: 100px;
  width: 100%;
}
.business .formButton {
  margin: 100px auto 0;
}

.business .broadList:not(:last-child) {
  margin-bottom: 100px;
}
.business .broadList h4 {
  color: #111;
  font-size:3.6rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* 20240418 김승준 */
.myPage .font60 { font-size: 4rem; color: #111; font-weight: 800; padding-top: 60px; }
.myPage .videoBox .hover,
.myPage .videoBox .hover::before {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.myPage .videoBox .hover {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0 20px;
	border-radius: 15px;
	padding: 20px;
	overflow: hidden;
}
.myPage .videoBox .hover::before,
.myPage .videoBox .hover p {
	opacity: 0;
	transition: all 0.4s;
}
.myPage .videoBox .hover::before {
	content: "";
	display: block;
	background: linear-gradient(0deg, #000 -4.77%, rgba(0, 0, 0, 0.00) 100%);
	position: absolute;
	z-index: -1;
}
.myPage .videoBox .hover p {
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.myPage .videoBox .hover em {
	color: var(--color-white);
	font-size: 1.5rem;
}
.myPage .videoBox .img .category {
	flex-shrink: 0;
	position: relative;
	right: auto;
	bottom: auto;
}
.myPage .videoBox .item:hover .hover::before,
.myPage .videoBox .item:hover .hover p {
	opacity: 1;
}
/* 20240418 김승준 */