@charset "UTF-8";

:root {
  --color-main: #146EB8;
  --color-sub: #B81463;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-pretendard: 'Pretendard', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --gradient-light1: linear-gradient(180deg, #146EB8 0%, #0F416E 100%);
  --gradient-light2: linear-gradient(180deg, #146EB8 0%, #0A2A44 100%);
  --gradient-middle: linear-gradient(180deg, #111B31 0%, #081022 100%);
  --gradient-dark1: linear-gradient(180deg, #070D1B 0%, #0A1327 100%);
  --gradient-dark2: linear-gradient(180deg, #050A15 0%, #0A1327 100%);
  --gradient-opacity: linear-gradient(180deg,  #0A1327 0%, rgba(7, 13, 27, 0.70) 100%);
  --gradient-purple: linear-gradient(180deg, #B81463 0%, #9A1455 44.79%, #731542 100%);
}

.font35 {
  --fontsize: 3.5rem;
  font-size: var(--fontsize);
}

.font45 {
  --fontsize: 4.5rem;
  font-size: var(--fontsize);
}

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

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

.font70 {
  --fontsize: 7.0rem;
  font-size: var(--fontsize);
}

.font80 {
  --fontsize: 8.0rem;
  font-size: var(--fontsize);
}

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

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main .blurCircle {
  width: 20%;
  background: var(--color-main);
  border-radius: 50%;
  padding: 10% 0;
  opacity: 0.5;
  position: fixed;
  left: 5%;
  bottom: 15%;
  z-index: -1;
  -webkit-transition: all 1.0s linear;
  transition: all 1.0s linear;
  -webkit-animation: blurCircle 4s linear infinite;
          animation: blurCircle 4s linear infinite;
  display: none;
  -webkit-filter: blur(80px);
          filter: blur(80px);
}

@-webkit-keyframes blurCircle {
  50% {
    opacity: 0.2;
    -webkit-filter: blur(100px);
            filter: blur(100px);
  }
}

@keyframes blurCircle {
  50% {
    opacity: 0.2;
    -webkit-filter: blur(100px);
            filter: blur(100px);
  }
}

main h2 {
  font-weight: 700;
}

main p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
}

main .visual {
  width: 100%;
  height: 100vh;
  background: url("/img/main/visualBg.jpg") no-repeat center/cover;
  position: relative;
  height: calc(var(--vh, 1vh) * 100);
}

@supports (-webkit-touch-callout: none) {
  main .visual {
    height: -webkit-fill-available;
  }
}

main .visual :root {
  --vh: 100%;
}

main .visual .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 40px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main .visual .textBox {
  margin: auto 0 0;
}

main .visual h2 {
  position: relative;
  padding: 25px 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

main .visual h2 span {
  display: block;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}

main .visual h2::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

main .visual h2:nth-child(odd) {
  text-align: left;
}

main .visual h2:nth-child(odd)::after {
  left: 0;
}

main .visual h2:nth-child(odd) span {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

main .visual h2:nth-child(even) {
  text-align: right;
}

main .visual h2:nth-child(even)::after {
  right: 0;
}

main .visual h2:nth-child(even) span {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

main .visual .scroll {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 80px auto 0;
  opacity: 0;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

main .visual .scroll img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main .visual .scroll .arrow {
  width: 18px;
}

main .visual .scroll .text {
  -webkit-animation: rotate 4s linear infinite;
          animation: rotate 4s linear infinite;
}

@-webkit-keyframes rotate {
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotate {
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

main .visual.on h2::after {
  width: 100%;
}

main .visual.on h2:nth-child(1) span {
  -webkit-transform: translateX(2.70625%);
          transform: translateX(2.70625%);
}

main .visual.on h2:nth-child(2) span {
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
}

main .visual.on h2:nth-child(3) span {
  -webkit-transform: translateX(26%);
          transform: translateX(26%);
}

main .visual.on h2:nth-child(4) span {
  -webkit-transform: translateX(-4%);
          transform: translateX(-4%);
}

main .visual.on .scroll {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

main .cocd .itemBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .cocd .item {
	display: flex;
	gap: 0 25px;
}

/* main .cocd .itemBox .text::before,
main .cocd .itemBox .text::after,
main .cocd .itemBox h6::after {
  content: "";
  display: block;
  background: var(--color-main);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
} */

main .cocd .itemBox .item {
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

main .cocd .itemBox .line {
	transform: translateY(0.3em);
}

/* main .cocd .itemBox .text::before {
  width: 1px;
  height: calc(100% - 10px);
}

main .cocd .itemBox .text::after {
  width: 84px;
  height: 1px;
} */

main .cocd .itemBox .item.on {
  opacity: 1;
}

main .cocd .itemBox h6 {
  color: var(--color-white);
  font-size: 2.0rem;
  font-weight: 600;
  margin: 0 0 25px;
  position: relative;
}

main .cocd .itemBox h6::after {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

main .cocd .itemBox .column {
  gap: 40px 0;
}

main .cocd .itemBox dl dt {
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 10px;
}

main .cocd .itemBox dl p {
  color: var(--color-white);
  font-size: 1.4rem;
  line-height: 1.5;
}

main .cocd .itemBox dl span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 15px;
}

main .cocd .itemBox dl span::before {
  content: "·";
  margin: 0 8px;
}

main .cocd .tRight {
  justify-content: flex-end;
  text-align: right;
  /* padding-right: 130px; */
  left: -10%;
}

/* main .cocd .tRight::before {
  right: 16%;
}

main .cocd .tRight::after {
  right: calc(16% - 84px);
}

main .cocd .tRight h6::after {
  right: calc(-6% - 3px);
} */

main .cocd .tRight.on {
  left: 0;
}

main .cocd .tLeft {
  text-align: left;
  /* padding-left: 130px; */
  right: -10%;
}

main .cocd .tLeft::before {
  left: 16%;
}

main .cocd .tLeft::after {
  left: calc(16% - 84px);
}

main .cocd .tLeft h6::after {
  left: calc(-6% - 3px);
}

main .cocd .tLeft.on {
  right: 0;
}

main .cocd .square {
  display: flex;
  justify-content: center;
  position: relative;
}

main .cocd .square img {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

main .cocd .square img.on {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

main .cocd .square .absolute {
  position: absolute;
/*  left: 0;*/
/*  right: 0;*/
}

main .cocd .square .top {
  top: -50px;
}

main .cocd .square .bottom {
  top: 50px;
}

main .cocd .textBox {
  text-align: center;
  margin: 70px 0 0;
  position: relative;
}

main .cocd .textBox > * {
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

main .cocd .textBox::after {
  content: "";
  display: block;
  width: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(54, 161, 250, 0.29) 0%, rgba(33, 138, 224, 0.26) 6.77%, rgba(21, 103, 170, 0.22) 23.44%, rgba(20, 110, 184, 0) 100%);
  border-radius: 50%;
  padding: 4% 0;
  margin: -1.5em auto 0;
  opacity: 0;
  -webkit-transform: translateY(-60px);
          transform: translateY(-60px);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

main .cocd .textBox h2 {
  letter-spacing: 0.4em;
}

main .cocd .textBox h2.on {
  opacity: 1;
  letter-spacing: -0.020em;
}

main .cocd .textBox > span,
main .cocd .textBox p {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

main .cocd .textBox > span {
  display: block;
  font-size: 1.8rem;
  font-weight: 300;
  margin: 20px 0 30px;
}

main .cocd .textBox p {
  color: var(--color-white);
  font-size: 2.0rem;
  line-height: 1.5;
  margin: 0 0 30px;
}

main .cocd .textBox .more {
  position: relative;
  z-index: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

main .cocd .textBox.on::after {
  width: 95%;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

main .biobank .item,
main .tm .item {
  border-radius: 20px;
  background: var(--gradient-dark2);
  overflow: hidden;
}

main .biobank .flexBox {
  position: relative;
}

main .biobank .pointEllipse {
  width: 100%;
  position: absolute;
  top: 3.4%;
  left: -44%;
  z-index: -1;
}

main .biobank .pointEllipse svg {
  overflow: inherit;
}

main .biobank .pointEllipse ellipse {
  fill: transparent;
  stroke: var(--color-white);
}

main .biobank .pointEllipse ellipse:nth-child(1) {
  opacity: 0.25;
}

main .biobank .pointEllipse ellipse:nth-child(2) {
  opacity: 0.2;
}

main .biobank .pointEllipse ellipse:nth-child(3) {
  opacity: 0.15;
}

main .biobank .pointEllipse ellipse:nth-child(4) {
  opacity: 0.1;
}

main .biobank .pointEllipse ellipse:nth-child(5) {
  opacity: 0.05;
}

main .biobank .pointEllipse ellipse:nth-child(6) {
  opacity: 0;
}

main .biobank .pointEllipse ellipse:nth-child(7) {
  opacity: -0.05;
}

main .biobank .pointEllipse ellipse.fixed:first-child {
  opacity: 0.125;
  -webkit-animation: blinkF 1.2s linear infinite;
          animation: blinkF 1.2s linear infinite;
}

main .biobank .pointEllipse ellipse.fixed:last-child {
  opacity: 0.05;
  -webkit-animation: blinkL 1.2s linear infinite;
          animation: blinkL 1.2s linear infinite;
}

@-webkit-keyframes blinkF {
  80% {
    opacity: 0.125;
  }
  100% {
    opacity: 0.05;
  }
}

@keyframes blinkF {
  80% {
    opacity: 0.125;
  }
  100% {
    opacity: 0.05;
  }
}

@-webkit-keyframes blinkL {
  to {
    opacity: 0;
  }
}

@keyframes blinkL {
  to {
    opacity: 0;
  }
}

main .biobank .pointSquare span {
  display: block;
  border-radius: 10px;
  position: absolute;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

main .biobank .pointSquare .square1 {
  width: 64px;
  height: 64px;
  background: -webkit-gradient(linear, left top, left bottom, from(#149AB8), to(#146EB8));
  background: linear-gradient(to bottom, #149AB8 0%, #146EB8 100%);
  top: 24%;
  right: -5.4%;
  -webkit-animation-name: square1;
          animation-name: square1;
}

main .biobank .pointSquare .square2 {
  width: 58px;
  height: 58px;
  background: var(--color-main);
  top: 45%;
  left: 35%;
  -webkit-animation-name: square2;
          animation-name: square2;
}

main .biobank .pointSquare .square3 {
  width: 58px;
  height: 58px;
  background: var(--color-white);
  right: -8%;
  bottom: 36%;
  -webkit-animation-name: square3;
          animation-name: square3;
}

main .biobank .pointSquare .square4 {
  width: 80px;
  height: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(#D63582), to(#882D8F));
  background: linear-gradient(to bottom, #D63582 0%, #882D8F 100%);
  left: 38%;
  bottom: 4%;
}

@-webkit-keyframes square1 {
  50% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
}

@keyframes square1 {
  50% {
    -webkit-transform: translate(0, -15px);
            transform: translate(0, -15px);
  }
}

@-webkit-keyframes square2 {
  50% {
    -webkit-transform: translate(-15px, -15px);
            transform: translate(-15px, -15px);
  }
}

@keyframes square2 {
  50% {
    -webkit-transform: translate(-15px, -15px);
            transform: translate(-15px, -15px);
  }
}

@-webkit-keyframes square3 {
  50% {
    -webkit-transform: translate(-15px, 0);
            transform: translate(-15px, 0);
  }
}

@keyframes square3 {
  50% {
    -webkit-transform: translate(-15px, 0);
            transform: translate(-15px, 0);
  }
}

main .biobank .textBox {
  width: 100%;
  max-width: 570px;
  max-width: 38%;
  padding: 50px 0 0;
}

main .biobank .textBox p,
main .biobank .textBox span {
  font-family: var(--font-pretendard);
}

main .biobank .textBox p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 2.0rem;
  line-height: 1.8;
  margin: 50px 0 20px;
}

main .biobank .textBox span {
  display: block;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.04063rem;
  text-align: right;
}

main .biobank .textBox .more {
  margin: 90px 0 0;
}

main .biobank .itemBox {
  width: 100%;
  max-width: 54%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 28px 3.4567%;
  margin: 0 0 0 auto;
}

main .biobank .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px;
}

main .biobank .item span {
  font-size: 5.0rem;
  font-weight: 600;
  letter-spacing: -0.030em;
}

main .biobank .item em {
  display: inline-block;
  font-size: 3.0rem;
  font-weight: 500;
}

main .biobank .item p {
  line-height: 1.2;
  margin: 20px 0 0;
}

main .biobank .item1,
main .biobank .item4 {
  height: 470px;
}

main .biobank .item1 {
  width: 380px;
  width: 46.9135%;
  margin: 0 0 10px;
}

main .biobank .item2 {
  width: 310px;
  width: 38.2716%;
  height: 310px;
  margin: auto 0 0;
}

main .biobank .item3,
main .biobank .item4 {
  width: 390px;
  width: 48.1481%;
}

main .biobank .item3 {
  height: 400px;
}

main .biobank .icon {
  margin: auto 0 0 auto;
}

main .tm .textBox {
  gap: 0 100px;
}

main .tm .textBox h2,
main .tm .textBox .more {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

main .tm .textBox sup {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 500;
  -webkit-transform: translateY(-1.2em);
          transform: translateY(-1.2em);

  /* 24.11.01 */
  display: none;
}

main .tm .textBox dl {
  margin: 0.6em 0 0;
}

main .tm .textBox dl * {
  font-family: var(--font-pretendard);
}

main .tm .textBox dl dt {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 10px;
}

main .tm .textBox dl dd {
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 1.5;
}

main .tm .textBox dl span {
  display: block;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04063rem;
  text-align: right;
  margin: 15px 0 0;
}

main .tm .itemBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin: 60px 0 0;
}

main .tm .item {
  border: 1px solid transparent;
  padding: 50px 70px;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

main .tm .item::before {
  content: "";
  display: block;
  width: 74%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: var(--color-main);
  border-radius: 1000px;
  -webkit-filter: blur(75px) opacity(0.2);
          filter: blur(75px) opacity(0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main .tm .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

main .tm .inner > .flexBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

main .tm .flex {
  gap: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .tm h3 {
  font-weight: 500;
  letter-spacing: -0.030em;
  line-height: 1.3;
}

main .tm p {
  line-height: 1.2;
  margin: 25px 0 0;
}

main .tm .icon {
  margin-top: auto;
  margin-left: auto;
}

main .deepct .item {
  height: 370px;
}

main .deepct .item::before {
  height: 100%;
}

main .deepct .item:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

main .deepct .item:hover::before {
  width: 0;
  height: 0;
}

main .deepct h6 {
 /*  font-size: 2.4rem; */
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
}

main .deepct h6 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: var(--font-pretendard);
  letter-spacing: 0;
  margin: 5px 0 0;
}

main .deepct .response h6 {
  width: 180px;
}

main .deepct .response .colorM span {
  color: var(--color-main);
}

main .deepct .response .colorS span {
  color: var(--color-sub);
}

main .deepct .response hr {
  width: 100%;
  height: 1px;
  border: none;
  border-top: 1px dashed var(--color-main);
  margin: 10px 0;
}

main .deepct .repurposing ul li {
  color: var(--color-main);
  font-size: 1.8rem;
  line-height: 2;
}

main .deepct .repurposing ul .rotate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.0625rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

main .tlbm .textBox .more {
  margin: 0 0 0 auto;
}

main .tlbm .item {
  height: 600px;
}

main .tlbm .item::before {
  height: 680%;
}

main .tlbm .icon {
  margin-right: auto;
}

main .news .textBox ul {
  gap: 0 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .news .textBox ul button {
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

main .news .textBox ul button::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-main);
  position: absolute;
  right: 0;
  bottom: -10px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

main .news .textBox ul li:hover button, main .news .textBox ul li.on button {
  color: var(--color-main);
}

main .news .textBox ul li:hover button::after, main .news .textBox ul li.on button::after {
  width: 100%;
}

main .news .slideWrap {
  margin: 70px 0 0;
  position: relative;
}

main .news .slideWrap::after {
  content: "";
  display: block;
  width: calc((100% - 150px) / 3);
  height: 100%;
  background: #050A15;
  position: absolute;
  top: 0;
  left: calc(100% + 75px);
  z-index: 1;
  -webkit-filter: opacity(0.8);
          filter: opacity(0.8);
}

main .news .slideBox {
  width: 135%;
}

main .news .item .date {
  display: block;
  color: var(--color-white);
  font-size: 3.0rem;
  font-weight: 700;
  font-family: var(--font-roboto);
  position: relative;
}

main .news .item .date::before, main .news .item .date::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -10px;
}

main .news .item .date::before {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
}

main .news .item .date::after {
  width: 0;
  background: #007BC4;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

main .news .item .date em {
  color: #555555;
  font-family: var(--font-roboto);
}

main .news .item dl {
  margin: 55px 0 25px;
}

main .news .item dl dt {
  color: var(--color-main);
  font-weight: 600;
  margin: 0 0 20px;
}

main .news .item dl dd {
  height: 3.4em;
  color: var(--color-white);
  font-size: 2.0rem;
  font-family: var(--font-pretendard);
  line-height: 1.7;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

main .news .item .img {
  padding: 27.78% 0;
  position: relative;
  overflow: hidden;
}

main .news .item .img img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main .news .item:hover .date::after {
  width: 100%;
}

main .news .slideButtons {
  width: calc(100% + 120px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main .partners .flexBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

main .partners ul {
  width: 88.96%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main .partners ul li {
  padding: 0 60px;
}

main .partners ul img {
  -webkit-filter: grayscale(1) brightness(0.5);
          filter: grayscale(1) brightness(0.5);
}
