#index-main {
  width: 100%;
  height: auto;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1280px) {
  #index-main {
    padding-top: 70px;
  }
}

.index-mainvisual {
  position: relative;
  width: 100%;
  height: 600px;
}
@media (max-width: 1024px) {
  .index-mainvisual {
    height: 640px;
  }
}
@media (max-width: 768px) {
  .index-mainvisual {
    height: auto;
  }
}
.index-mainvisual .mv-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .index-mainvisual .mv-swiper {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.index-mainvisual .mv-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.index-mainvisual .mv-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.index-mainvisual .mv-swiper .swiper-wrapper .swiper-slide .cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.index-mainvisual .mv-swiper .swiper-navigation {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  visibility: hidden;
  z-index: 20;
}
@media (max-width: 1280px) {
  .index-mainvisual .mv-swiper .swiper-navigation {
    width: 98%;
  }
}
.index-mainvisual .mv-swiper .swiper-navigation > div {
  width: 28px;
  height: auto;
  cursor: pointer;
  visibility: visible;
}
.index-mainvisual .mv-swiper .swiper-navigation > div > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.index-mainvisual .mv-content-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
@media (max-width: 768px) {
  .index-mainvisual .mv-content-box {
    position: relative;
    padding: 40px 0;
  }
}
.index-mainvisual .mv-content-box .inner-wrap {
  width: 90%;
  height: auto;
  max-width: 1400px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 140px;
}
@media (max-width: 1280px) {
  .index-mainvisual .mv-content-box .inner-wrap {
    gap: 80px;
  }
}
@media (max-width: 1024px) {
  .index-mainvisual .mv-content-box .inner-wrap {
    width: 80%;
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
}
.index-mainvisual .mv-content-box .inner-wrap .left {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.index-mainvisual .mv-content-box .inner-wrap .left > span {
  padding: 0 100px 0 12px;
  font-size: 24px;
  line-height: 1.3;
  word-break: keep-all;
  color: white;
  background-color: #0F4196;
}
@media (max-width: 1280px) {
  .index-mainvisual .mv-content-box .inner-wrap .left > span {
    padding: 4px 48px 4px 12px;
    font-size: 18px;
    font-family: "S-CoreDream-6Bold";
  }
}
@media (max-width: 768px) {
  .index-mainvisual .mv-content-box .inner-wrap .left > span {
    padding: 4px 24px 4px 12px;
    font-size: 1rem;
  }
}
.index-mainvisual .mv-content-box .inner-wrap .left > h4 {
  font-size: 40px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .index-mainvisual .mv-content-box .inner-wrap .left > h4 {
    font-size: 28px;
    font-family: "S-CoreDream-6Bold";
  }
}
@media (max-width: 768px) {
  .index-mainvisual .mv-content-box .inner-wrap .left > h4 {
    font-size: 24px;
  }
}
.index-mainvisual .mv-content-box .inner-wrap .left > p {
  font-size: 16px;
  line-height: 1.5;
  word-break: keep-all;
  color: white;
}
@media (max-width: 1280px) {
  .index-mainvisual .mv-content-box .inner-wrap .left > p {
    font-size: 15px;
    font-family: "S-CoreDream-4Regular";
  }
}
@media (max-width: 768px) {
  .index-mainvisual .mv-content-box .inner-wrap .left > p {
    font-size: 14px;
  }
}
.index-mainvisual .mv-content-box .inner-wrap .right {
  flex: 1 1 40%;
}
.index-mainvisual .mv-content-box .inner-wrap .right .right-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(10px, 1fr));
  gap: 10px;
}
@media (max-width: 640px) {
  .index-mainvisual .mv-content-box .inner-wrap .right .right-grid {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
.index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item {
  width: 100%;
  height: auto;
  padding: 1rem;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: white;
  border-radius: 1rem;
  transition: all 0.2s ease-in-out;
}
.index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item:hover {
  background: #0F4196;
}
.index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item:hover .grid-icon > img {
  display: none;
}
.index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item:hover .grid-icon > img:nth-of-type(2) {
  display: block;
}
.index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item:hover .grid-subj {
  color: white;
}
.index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item .grid-icon {
  width: auto;
  height: 70px;
}
@media (max-width: 1280px) {
  .index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item .grid-icon {
    height: 48px;
  }
}
@media (max-width: 768px) {
  .index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item .grid-icon {
    height: 36px;
  }
}
.index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item .grid-icon > img {
  width: auto;
  height: 100%;
  transition: all 0.2s ease-in-out;
}
.index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item .grid-icon > img:nth-of-type(2) {
  display: none;
}
.index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item .grid-subj {
  font-size: 16px;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: #3D3D3D;
  transition: inherit;
}
@media (max-width: 1280px) {
  .index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item .grid-subj {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .index-mainvisual .mv-content-box .inner-wrap .right .right-grid .item .grid-subj {
    font-size: 13px;
  }
}

.trusted-belt-section {
  width: 100%;
  height: 180px;
  background: linear-gradient(to right, #0F4196, #02993B);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.trusted-belt-section .container {
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.trusted-belt-section .container .trust-subject {
  font-size: 30px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .trusted-belt-section .container .trust-subject {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .trusted-belt-section .container .trust-subject {
    font-size: 20px;
  }
}
.trusted-belt-section .container .trust-message {
  font-size: 16px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 480px) {
  .trusted-belt-section .container .trust-message {
    font-size: 13px;
  }
}
.trusted-belt-section .container > a {
  width: 200px;
  height: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: white;
  border: 1px solid white;
  border-radius: 100000rem;
}
@media (max-width: 1280px) {
  .trusted-belt-section .container > a {
    width: 160px;
    height: 40px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .trusted-belt-section .container > a {
    width: 140px;
    height: 36px;
    font-size: 14px;
  }
}

.sec-tit-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1280px) {
  .sec-tit-wrap {
    gap: 1rem;
  }
}
.sec-tit-wrap .title {
  font-size: 36px;
  line-height: 1.2;
  color: #2D2D2D;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .sec-tit-wrap .title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .sec-tit-wrap .title {
    font-size: 24px;
  }
}
.sec-tit-wrap .desc {
  font-size: 18px;
  line-height: 1.3;
  color: #464646;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 768px) {
  .sec-tit-wrap .desc {
    font-size: 1rem;
  }
}
.sec-tit-wrap .tit-link {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
}
@media (max-width: 768px) {
  .sec-tit-wrap .tit-link {
    gap: 8px;
  }
}
.sec-tit-wrap .tit-link > span {
  font-size: 16px;
  line-height: 1;
  color: #02993B;
}
@media (max-width: 768px) {
  .sec-tit-wrap .tit-link > span {
    font-size: 14px;
  }
}
.sec-tit-wrap .tit-link > img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.news-summary-section {
  width: 100%;
  height: auto;
  padding: 80px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #F5F7FB;
}
@media (max-width: 1280px) {
  .news-summary-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .news-summary-section {
    padding: 40px 0;
  }
}
.news-summary-section .container {
  width: 95%;
  height: auto;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1280px) {
  .news-summary-section .container {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .news-summary-section .container {
    gap: 24px;
  }
}
.news-summary-section .container .news-latest-group {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 1280px) {
  .news-summary-section .container .news-latest-group {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .news-summary-section .container .news-latest-group {
    flex-direction: column;
  }
}
.news-summary-section .container .news-latest-group .latest-box {
  padding: 24px 20px;
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  border-radius: 1rem;
  border: 1px solid #0F4196;
}
@media (max-width: 768px) {
  .news-summary-section .container .news-latest-group .latest-box {
    padding: 20px 1rem;
  }
}
.news-summary-section .container .news-latest-group .latest-box .box-head {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}
.news-summary-section .container .news-latest-group .latest-box .box-head .box-title-wrap {
  padding-top: 4px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .news-summary-section .container .news-latest-group .latest-box .box-head .box-title-wrap {
    gap: 12px;
  }
}
.news-summary-section .container .news-latest-group .latest-box .box-head .box-title-wrap > em {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1.2;
  color: #2D2D2D;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .news-summary-section .container .news-latest-group .latest-box .box-head .box-title-wrap > em {
    font-size: 18px;
  }
}
.news-summary-section .container .news-latest-group .latest-box .box-head .box-title-wrap > span {
  padding-top: 2px;
  flex: 0 1 auto;
  font-size: 14px;
  line-height: 1.4;
  word-break: keep-all;
  color: #464646;
}
@media (max-width: 768px) {
  .news-summary-section .container .news-latest-group .latest-box .box-head .box-title-wrap > span {
    padding-top: 3px;
    font-size: 13px;
  }
}
.news-summary-section .container .news-latest-group .latest-box .box-head .move-to-board {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
}
.news-summary-section .container .news-latest-group .latest-box .box-head .move-to-board > svg {
  width: 100%;
  height: 100%;
  fill: #02993B;
}
.news-summary-section .container .news-latest-group .latest-box .box-body {
  width: 100%;
  height: auto;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item {
  width: 100%;
  height: auto;
  display: flex;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item > a {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item > a .latest-top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item > a .latest-top .latest-title {
  position: relative;
  flex: 1 1 auto;
  padding-left: 12px;
  font-size: 14px;
  line-height: 1.3;
  color: black;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item > a .latest-top .latest-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #aaa;
  border-radius: 10000rem;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item > a .latest-top .date {
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1.2;
  word-break: keep-all;
  color: #818181;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item > a .latest-content {
  width: 100%;
  height: auto;
  padding-left: 12px;
  font-size: 14px;
  line-height: 1.6;
  word-break: keep-all;
  color: #818181;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item:not(:last-of-type) {
  margin-bottom: 1rem;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item:not(:last-of-type):first-of-type {
  padding: 18px 12px;
  border: 1px solid #aaa;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item:not(:last-of-type):first-of-type {
    padding: 1rem 12px;
  }
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item:not(:last-of-type):first-of-type > a .latest-top .latest-title {
  font-family: "S-CoreDream-6Bold";
  font-size: 1rem;
  color: #2D2D2D;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item:not(:last-of-type):first-of-type > a .latest-top .latest-title::before {
  background: #02993B;
}
.news-summary-section .container .news-latest-group .latest-box .box-body .latest-list .item:not(:last-of-type):first-of-type > a .latest-content {
  display: -webkit-box;
}

.index-gallery-section {
  width: 100%;
  height: auto;
  padding: 88px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
}
@media (max-width: 1280px) {
  .index-gallery-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .index-gallery-section {
    padding: 40px 0;
  }
}
.index-gallery-section .container {
  width: 95%;
  height: auto;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.index-gallery-section .container .index-gallery-swiper {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}
.index-gallery-section .container .index-gallery-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.index-gallery-section .container .index-gallery-swiper .swiper-wrapper .swiper-slide {
  width: auto;
  height: 248px;
}
.index-gallery-section .container .index-gallery-swiper .swiper-wrapper .swiper-slide > a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 1rem;
  overflow: hidden;
}
.index-gallery-section .container .index-gallery-swiper .swiper-wrapper .swiper-slide > a .gallery-thumb {
  width: 100%;
  height: 100%;
}
.index-gallery-section .container .index-gallery-swiper .swiper-wrapper .swiper-slide > a .gallery-thumb > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-gallery-section .container .index-gallery-swiper .swiper-wrapper .swiper-slide > a .gallery-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.index-gallery-section .container .index-gallery-swiper .swiper-wrapper .swiper-slide > a .gallery-title > p {
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
  color: white;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .index-gallery-section .container .index-gallery-swiper .swiper-wrapper .swiper-slide > a .gallery-title > p {
    font-size: 14px;
  }
}
.index-gallery-section .container .index-gallery-swiper .swiper-navigation {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
@media (max-width: 480px) {
  .index-gallery-section .container .index-gallery-swiper .swiper-navigation {
    gap: 32px;
  }
}
.index-gallery-section .container .index-gallery-swiper .swiper-navigation > div {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.index-gallery-section .container .index-gallery-swiper .swiper-navigation > div > svg {
  width: 100%;
  height: 100%;
  fill: #3D3D3D;
}
.index-gallery-section .container .index-gallery-swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
}

.golden-time-section {
  width: 100%;
  height: auto;
  padding: 88px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #F5F7FB;
}
@media (max-width: 1280px) {
  .golden-time-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .golden-time-section {
    padding: 40px 0;
  }
}
.golden-time-section .container {
  width: 95%;
  height: auto;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
}
@media (max-width: 1280px) {
  .golden-time-section .container {
    flex-direction: column;
    gap: 32px;
  }
}
.golden-time-section .container .left {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1280px) {
  .golden-time-section .container .left {
    flex: unset;
    width: 100%;
    gap: 32px;
  }
}
.golden-time-section .container .left .sec-tit-wrap {
  align-items: flex-start;
}
.golden-time-section .container .left > iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1080;
}
.golden-time-section .container .right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1280px) {
  .golden-time-section .container .right {
    flex: unset;
    width: 100%;
    gap: 32px;
  }
}
.golden-time-section .container .right .goto-youtube {
  width: 100%;
  height: 122px;
  padding: 0 16px;
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 12px;
}
@media (max-width: 1280px) {
  .golden-time-section .container .right .goto-youtube {
    height: 100px;
    padding: 0 20px;
  }
}
.golden-time-section .container .right .goto-youtube .goto-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.golden-time-section .container .right .goto-youtube .goto-row > img {
  flex: 0 0 auto;
  width: 30px;
  height: auto;
}
@media (max-width: 1280px) {
  .golden-time-section .container .right .goto-youtube .goto-row > img {
    width: 24px;
  }
}
.golden-time-section .container .right .goto-youtube .goto-row > span {
  padding-top: 5px;
  font-size: 16px;
  line-height: 1.3;
  word-break: keep-all;
  color: #3D3D3D;
}
@media (max-width: 1280px) {
  .golden-time-section .container .right .goto-youtube .goto-row > span {
    padding-top: 3px;
    font-size: 14px;
  }
}
.golden-time-section .container .right .youtube-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 1fr));
  gap: 24px 12px;
}
.golden-time-section .container .right .youtube-grid .item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.golden-time-section .container .right .youtube-grid .item .video-frame {
  width: 100%;
  height: auto;
}
.golden-time-section .container .right .youtube-grid .item .video-frame > iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.golden-time-section .container .right .youtube-grid .item .video-title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.golden-time-section .container .right .youtube-grid .item .video-title .vid-title {
  width: 100%;
  height: auto;
  font-size: 16px;
  line-height: 1.3;
  color: #2D2D2D;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  padding-bottom: 4px;
  margin-bottom: 4px;
  border-bottom: 1px solid #aaa;
}
.golden-time-section .container .right .youtube-grid .item .video-title .vid-desc {
  width: 100%;
  height: auto;
  font-size: 14px;
  line-height: 1.3;
  color: #707070;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.index-collab-section {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  .index-collab-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .index-collab-section {
    padding: 40px 0;
  }
}
.index-collab-section .container {
  width: 95%;
  height: auto;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1280px) {
  .index-collab-section .container {
    gap: 32px;
  }
}
.index-collab-section .container .collab-content-box {
  width: 100%;
  height: auto;
}
.index-collab-section .container .collab-content-box .collab-list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
@media (max-width: 1280px) {
  .index-collab-section .container .collab-content-box .collab-list {
    grid-template-columns: repeat(6, minmax(auto, 1fr));
  }
}
@media (max-width: 768px) {
  .index-collab-section .container .collab-content-box .collab-list {
    grid-template-columns: repeat(4, minmax(auto, 1fr));
  }
}
.index-collab-section .container .collab-content-box .collab-list .item {
  width: 100%;
  height: auto;
}
@media (max-width: 1280px) {
  .index-collab-section .container .collab-content-box .collab-list .item {
    grid-column: span 2;
  }
  .index-collab-section .container .collab-content-box .collab-list .item:nth-of-type(4) {
    grid-column: 2/span 2;
  }
}
@media (max-width: 768px) {
  .index-collab-section .container .collab-content-box .collab-list .item:nth-of-type(4) {
    grid-column: span 2;
  }
  .index-collab-section .container .collab-content-box .collab-list .item:last-of-type {
    grid-column: 2/span 2;
  }
}
.index-collab-section .container .collab-content-box .collab-list .item > img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=main.css.map */