@charset "UTF-8";
.fv {
  position: relative;
  overflow: hidden;
}
.fv h1 {
  position: absolute;
  bottom: 16vw;
  left: 24px;
  color: #FFFFFF;
  font-size: clamp(24px, 7vw, 45px);
  display: flex;
  flex-direction: column;
  gap: 6vw;
  z-index: +1;
}
.fv h1 strong {
  font-weight: 900;
  display: block;
}
.fv h1 span {
  font-size: .36em;
}

.fv__bg {
  width: 100%;
  aspect-ratio: 390 / 729;
  background-size: cover;
  background-repeat: no-repeat;
}

.fv__bg01 {
  background-image: url("../img/top/fv_01_sp.webp");
}

.fv__bg02 {
  background-image: url("../img/top/fv_02_sp.webp");
}

.fv__bg03 {
  background-image: url("../img/top/fv_03_sp.webp");
}

.fv__bg04 {
  background-image: url("../img/top/fv_04_sp.webp");
}

@media screen and (min-width: 768px) {
  .fv h1 {
    bottom: 6vw;
    left: 3vw;
    color: #FFFFFF;
    font-size: clamp(56px, 6.4vw, 87px);
    gap: 1.4vw;
  }
  .fv h1 span {
    margin-top: .4em;
  }

  .fv__bg {
    width: 100%;
    aspect-ratio: 1366 / 710;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .fv__bg01 {
    background-image: url("../img/top/fv_01_pc.webp");
  }

  .fv__bg02 {
    background-image: url("../img/top/fv_02_pc.webp");
  }

  .fv__bg03 {
    background-image: url("../img/top/fv_03_pc.webp");
  }

  .fv__bg04 {
    background-image: url("../img/top/fv_04_pc.webp");
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
    /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 7s linear 0s normal both;
}

.circle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp 10s linear infinite;
}

/* 下から上に移動するアニメーション */
@keyframes floatUp {
  0% {
    transform: translateY(100vh);
    /* 画面の下の外からスタート */
  }
  100% {
    transform: translateY(-100vh);
    /* 画面の上の外で終わる */
  }
}
#circle-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: +1;
}

.sec_news {
  background: url("../img/top/news_bg.png") no-repeat;
  background-size: 100% auto;
  background-position: center top;
  padding: 85px 0 40px;
  margin-top: -42px;
  position: relative;
  z-index: +1;
}
.sec_news .inner {
  padding: 0 24px;
  position: relative;
  z-index: +1;
}
.sec_news .title_area .btn_row {
  display: none;
}
.sec_news .sec_title {
  font-size: 16px;
}
.sec_news .sec_title strong {
  font-size: 2.18em;
  display: inline-block;
  margin-right: 7px;
}
.sec_news .news_list {
  display: flex;
  flex-direction: column;
}
.sec_news .news_list_item {
  border-bottom: dashed 1px rgba(76, 73, 72, 0.24);
}
.sec_news .news_list_item a {
  display: block;
  padding: 20px 0;
  color: #333333;
}
.sec_news .news_list_item a .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.sec_news .news_list_item a .info .date {
  font-size: 14px;
  min-width: 125px;
}
.sec_news .news_list_item a .info .cate {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  background-color: #3CBDF4;
  border-radius: 3em;
  color: #FFFFFF;
  text-align: center;
  padding: .3em 1.5em;
  line-height: 1;
  white-space: nowrap;
}
.sec_news .news_list_item .news_title {
  font-size: 14px;
  font-weight: bold;
}
.sec_news .btn_row {
  margin-top: 30px;
}
.sec_news .pickup {
  margin-top: 50px;
  background-color: #F7F7F7;
  border-radius: 10px;
  padding: 30px 25px;
}
.sec_news .pickup p {
  font-size: 14px;
}
.sec_news .pickup .btn_row {
  margin-top: 20px;
}
.sec_news .pickup .btn_row .btn_yms:not(:first-child) {
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .sec_news {
    background: url("../img/top/news_bg_pc.png") no-repeat;
    background-size: 100% auto;
    background-position: center top;
    padding: 14vw 0 50px;
    margin-top: -11vw;
  }
  .sec_news .inner {
    max-width: 1048px;
    margin: 0 auto;
  }
  .sec_news .title_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  .sec_news .title_area .btn_row {
    display: block;
  }
  .sec_news .sec_title {
    font-size: 24px;
  }
  .sec_news .sec_title strong {
    font-size: 2.5em;
    margin-right: 16px;
  }
  .sec_news .news_list_item a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 20px;
    padding: 20px 0;
  }
  .sec_news .news_list_item a .info {
    display: flex;
    justify-content: flex-start;
    gap: 0 15px;
    margin-bottom: 0;
  }
  .sec_news .news_list_item a .info .date {
    font-size: 16px;
  }
  .sec_news .news_list_item a .info .cate {
    font-size: 14px;
  }
  .sec_news .news_list_item .news_title {
    font-size: 16px;
    display: flex;
    align-self: center;
  }
  .sec_news .btn_row {
    margin-top: 0;
  }
  .sec_news .pickup {
    margin-top: 75px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 40px;
  }
  .sec_news .pickup .btn_row {
    margin-top: 0;
  }
}
.sec_future {
  position: relative;
  padding: 115px 0 40px;
}
.sec_future .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 動画のサイズを調整 */
  z-index: -1;
  /* 背景に配置 */
}
.sec_future::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
}
.sec_future::before {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 390 / 52;
  background: url("../img/top/future_top_sp.png") no-repeat;
  background-size: 100% auto;
  background-position: center top;
  position: absolute;
  top: -1px;
  left: 0;
}
.sec_future .inner {
  padding: 0 24px;
}
.sec_future h2 {
  color: #FFFFFF;
  font-size: clamp(25px, 10vw, 35px);
  display: flex;
  flex-direction: column;
  gap: 6vw;
}
.sec_future h2 strong {
  font-weight: 900;
  display: block;
}
.sec_future h2 span {
  font-size: .45em;
}
.sec_future .future {
  margin-top: 70px;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px 25px;
}
.sec_future .future .future_title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.sec_future .future .future_title small {
  font-size: 10px;
}
.sec_future .future .flex_box {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.sec_future .future .flex_box ._img img {
  width: 100%;
  height: auto;
}
.sec_future .future .flex_box .btn_row {
  margin: 30px auto;
}

@media screen and (min-width: 768px) {
  .sec_future {
    position: relative;
    padding: 128px 0;
  }
  .sec_future::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 1366 / 177;
    background: url("../img/top/future_top_pc.png") no-repeat;
    background-size: 100% auto;
    background-position: center top;
    position: absolute;
    top: -1px;
    left: 0;
  }
  .sec_future .inner {
    max-width: 1048px;
    margin: 0 auto;
  }
  .sec_future h2 {
    font-size: clamp(30px, 3vw, 40px);
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0;
  }
  .sec_future h2 span {
    font-size: .4em;
  }
  .sec_future .future {
    padding: 36px 40px;
  }
  .sec_future .future .future_title {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .sec_future .future .flex_box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
  .sec_future .future .flex_box ._img {
    width: 50%;
    text-align: center;
  }
  .sec_future .future .flex_box ._img img {
    max-width: 367px;
  }
  .sec_future .future .flex_box ._text {
    width: 50%;
  }
  .sec_future .future .flex_box .btn_row {
    margin: 36px 0;
  }
  .sec_future .future .flex_box .btn_row .btn_yms {
    margin: 0;
  }
}
.sec_people {
  padding: 50px 0;
  background: linear-gradient(transparent 56%, #F4FBFF 56%);
}
.sec_people .inner {
  padding: 0 24px;
}
.sec_people .inner > p {
  padding: 0 25px;
  font-weight: 500;
}
.sec_people .sec_title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
}
.sec_people .sec_title strong {
  font-size: 2.5em;
  color: #3CBDF4;
  display: block;
}
.sec_people .slider_people_wrap {
  margin-top: 30px;
  padding-bottom: 40px;
}
.sec_people .slider_people a ._img {
  width: 100%;
  aspect-ratio: 342 / 181;
  overflow: hidden;
}
.sec_people .slider_people a ._img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec_people .slider_people a ._text {
  padding: 30px 25px 10px;
  position: relative;
}
.sec_people .slider_people a ._text p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
}
.sec_people .slider_people a ._text::before {
  content: "";
  display: block;
  width: 1px;
  height: 78px;
  background-color: #3CBDF4;
  position: absolute;
  top: 30px;
  left: 0;
}
.sec_people .slick-dots {
  padding: 0 24px;
}
.sec_people .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 4px;
}
.sec_people .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: solid 1px #53CCFF;
  padding: 4px;
}
.sec_people .slick-dots li button:before {
  width: 8px;
  height: 8px;
  color: transparent;
}
.sec_people .slick-dots li.slick-active button:before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(60, 189, 244, 0.3);
  margin: 1px 0 0 1px;
}

@media screen and (min-width: 768px) {
  .sec_people {
    padding: 140px 0 90px;
  }
  .sec_people .inner {
    max-width: 1048px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .sec_people .inner > p {
    padding: 0;
    text-align: center;
  }
  .sec_people .sec_title {
    font-size: 18px;
    margin-bottom: 35px;
  }
  .sec_people .sec_title strong {
    font-size: 3.3em;
  }
  .sec_people .slider_people_wrap {
    max-width: 1048px;
    margin: 70px auto 0;
    padding: 0 24px 40px;
  }
  .sec_people .slick-dotted.slick-slider {
    margin-bottom: 50px;
  }
  .sec_people .slick-dots {
    bottom: -50px;
  }
}
.sec_column {
  padding: 50px 0;
  background: linear-gradient(transparent 56%, #E9F9F9 56%);
}
.sec_column .inner {
  padding: 0 24px;
}
.sec_column .inner > p {
  padding: 0 25px;
  font-weight: 500;
}
.sec_column .sec_title {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
}
.sec_column .sec_title strong {
  font-size: 2.5em;
  color: #44D09D;
  display: block;
}
.sec_column .slider_column_wrap {
  margin-top: 30px;
  padding-bottom: 40px;
}
.sec_column .slider_column a ._img {
  width: 100%;
  aspect-ratio: 342 / 181;
  overflow: hidden;
}
.sec_column .slider_column a ._img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec_column .slider_column a ._text {
  padding: 30px 25px 10px;
  position: relative;
}
.sec_column .slider_column a ._text p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
}
.sec_column .slider_column a ._text::before {
  content: "";
  display: block;
  width: 1px;
  height: 78px;
  background-color: #44D09D;
  position: absolute;
  top: 30px;
  left: 1px;
}
.sec_column .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 4px;
}
.sec_column .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: solid 1px #44D09D;
  padding: 4px;
}
.sec_column .slick-dots li button:before {
  width: 8px;
  height: 8px;
  color: transparent;
}
.sec_column .slick-dots li.slick-active button:before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(68, 208, 157, 0.3);
  margin: 1px 0 0 1px;
}

@media screen and (min-width: 768px) {
  .sec_column {
    padding: 140px 0 90px;
  }
  .sec_column .inner {
    max-width: 1048px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .sec_column .inner > p {
    padding: 0;
    text-align: center;
  }
  .sec_column .sec_title {
    font-size: 18px;
    margin-bottom: 35px;
  }
  .sec_column .sec_title strong {
    font-size: 3.3em;
  }
  .sec_column .slider_column_wrap {
    max-width: 1048px;
    margin: 70px auto 0;
    padding: 0 24px 40px;
  }
  .sec_column .slick-dotted.slick-slider {
    margin-bottom: 50px;
  }
  .sec_column .slick-dots {
    bottom: -50px;
  }
}
.sec_seven_words {
  padding: 68px 0 0;
}
.sec_seven_words .sec_title {
  width: 31vw;
  aspect-ratio: 182 / 187;
  margin: 0 auto;
}
.sec_seven_words .sec_title img {
  width: 100%;
  height: auto;
}
.sec_seven_words .sw_content {
  padding: 50px 0 45px;
  background: linear-gradient(transparent 45%, #F4FBFF 45%);
}
.sec_seven_words .sw_content.sw_company {
  background: linear-gradient(transparent 45%, #FFECB9 45%);
}
.sec_seven_words .sw_content.sw_company .sw_block .block_ttl ._ttl strong {
  color: #FFD465;
}
.sec_seven_words .sw_content.sw_company .sw_slider_block .num {
  color: #FFD465;
}
.sec_seven_words .sw_content.sw_company .sw_slider_block .sw_slider__item.slick-slide {
  background-image: url("../img/top/quo_company.svg");
  background-repeat: no-repeat;
  background-size: 30px 24px;
  background-position: 9px 9px;
}
.sec_seven_words .sw_content.sw_job {
  background: linear-gradient(transparent 45%, #D7F5EA 45%);
}
.sec_seven_words .sw_content.sw_job .sw_block .block_ttl ._ttl strong {
  color: #44D09D;
}
.sec_seven_words .sw_content.sw_job .sw_slider_block .num {
  color: #44D09D;
}
.sec_seven_words .sw_content.sw_job .sw_slider_block .sw_slider__item.slick-slide {
  background-image: url("../img/top/quo_job.svg");
  background-repeat: no-repeat;
  background-size: 30px 24px;
  background-position: 9px 9px;
}
.sec_seven_words .sw_content .btn_row {
  margin: 35px auto 0;
}
.sec_seven_words .sw_block {
  display: flex;
  flex-direction: column;
  gap: 26px 0;
}
.sec_seven_words .sw_block .block_ttl {
  display: flex;
  align-items: center;
  gap: 0 18px;
  margin-bottom: 20px;
}
.sec_seven_words .sw_block .block_ttl ._icon {
  width: 67px;
  height: 67px;
}
.sec_seven_words .sw_block .block_ttl ._icon img {
  width: 100%;
}
.sec_seven_words .sw_block .block_ttl ._ttl {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.1;
}
.sec_seven_words .sw_block .block_ttl ._ttl strong {
  font-size: 2.28em;
  color: #3CBDF4;
  display: block;
}
.sec_seven_words .sw_block .sw_block__item {
  padding: 0 24px;
}
.sec_seven_words .sw_block .sw_block__item > p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
.sec_seven_words .sw_block .sw_block__item .sw_block__img {
  border-radius: 0 5px 5px 0;
  overflow: hidden;
  margin-left: -24px;
  width: 100%;
  aspect-ratio: 366 / 141;
}
.sec_seven_words .sw_block .sw_block__item .sw_block__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.sec_seven_words .sw_slider_block {
  margin-top: 25px;
  margin-left: 24px;
}
.sec_seven_words .sw_slider_block .sw_slider .slick-list {
  padding: 0 30% 0 0;
}
.sec_seven_words .sw_slider_block .sw_slider__item.slick-slide {
  background-color: #FFFFFF;
  border-radius: 5px;
  margin-right: 15px;
  min-width: 193px;
  padding: 20px;
  background-image: url("../img/top/quo_industry.svg");
  background-repeat: no-repeat;
  background-size: 30px 24px;
  background-position: 9px 9px;
}
.sec_seven_words .sw_slider_block .num {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0;
  white-space: nowrap;
  color: #3CBDF4;
  text-align: center;
  margin-bottom: 14px;
}
.sec_seven_words .sw_slider_block .card_inner {
  text-align: center;
}
.sec_seven_words .sw_slider_block h3 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 9px;
}
.sec_seven_words .sw_slider_block h4 {
  font-size: 12px;
  font-weight: bold;
  color: rgba(51, 51, 51, 0.5);
  margin: 0;
}

@media screen and (min-width: 860px) {
  .sec_seven_words {
    padding: 10vw 0 0;
  }
  .sec_seven_words .sec_title {
    width: 13vw;
    aspect-ratio: 182 / 187;
  }
  .sec_seven_words .sw_content {
    padding: 9vw 0 6vw;
    background: linear-gradient(transparent 37%, #F4FBFF 37%);
  }
  .sec_seven_words .sw_content.sw_company {
    background: linear-gradient(transparent 37%, #FFECB9 37%);
  }
  .sec_seven_words .sw_content.sw_job {
    background: linear-gradient(transparent 37%, #D7F5EA 37%);
  }
  .sec_seven_words .sw_content .btn_row {
    margin: 3.8vw auto 0;
  }
  .sec_seven_words .sw_block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0 4.4vw;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .sec_seven_words .sw_block._rev {
    flex-direction: row-reverse;
  }
  .sec_seven_words .sw_block .block_ttl {
    display: flex;
    align-items: center;
    gap: 0 18px;
    margin-bottom: 86px;
  }
  .sec_seven_words .sw_block .block_ttl ._icon {
    width: 100px;
    height: 100px;
  }
  .sec_seven_words .sw_block .block_ttl ._ttl {
    font-size: 16px;
  }
  .sec_seven_words .sw_block .block_ttl ._ttl strong {
    font-size: 3.18em;
  }
  .sec_seven_words .sw_block .sw_block__item {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(50% - 4.4vw);
  }
  .sec_seven_words .sw_block .sw_block__item._img {
    padding-right: 40px;
    width: 50%;
  }
  .sec_seven_words .sw_block .sw_block__item > p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    padding: 0 1em;
  }
  .sec_seven_words .sw_block .sw_block__item .sw_block__img {
    border-radius: 5px;
    overflow: hidden;
    margin-left: 0;
    aspect-ratio: 366 / 141;
  }
  .sec_seven_words .sw_block .sw_block__item .sw_block__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .sec_seven_words .sw_slider_block {
    margin-top: 46px;
    margin-left: 0;
  }
}
.sec_feature {
  padding: 60px 0 0;
}
.sec_feature h2 {
  text-align: center;
  margin-bottom: 35px;
}
.sec_feature h2 img {
  display: inline-block;
  width: 38.7vw;
  height: auto;
  margin-bottom: 14px;
}
.sec_feature h2 span {
  display: block;
  font-size: 14px;
  font-weight: bold;
}
.sec_feature .feature_card {
  background-color: #F7F7F7;
}
.sec_feature .feature_card ._img {
  width: 100%;
  aspect-ratio: 390 / 174;
  overflow: hidden;
}
.sec_feature .feature_card ._img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.sec_feature .feature_card ._text {
  padding: 22px 50px 55px;
}
.sec_feature .feature_card ._text h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.sec_feature .feature_card ._text p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.71;
}
.sec_feature .feature_card ._text .btn_row {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .sec_feature {
    padding: 125px 0 20px;
  }
  .sec_feature h2 {
    margin-bottom: 85px;
  }
  .sec_feature h2 img {
    width: 19vw;
    margin-bottom: 24px;
  }
  .sec_feature h2 span {
    font-size: 18px;
  }
  .sec_feature .feature_card_block {
    max-width: 1048px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0 5vw;
  }
  .sec_feature .feature_card {
    width: calc((100% - 5vw) / 2);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 50px;
  }
  .sec_feature .feature_card ._img {
    aspect-ratio: 464 / 250;
  }
  .sec_feature .feature_card ._text {
    padding: 24px 24px 85px;
  }
  .sec_feature .feature_card ._text h3 {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .sec_feature .feature_card ._text p {
    font-size: 16px;
  }
  .sec_feature .feature_card ._text .btn_row {
    margin-top: 0;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.sec_project {
  padding: 60px 0;
}
.sec_project h2 {
  text-align: center;
  margin-bottom: 35px;
}
.sec_project h2 img {
  display: inline-block;
  width: 40vw;
  height: auto;
  margin-bottom: 14px;
}
.sec_project h2 span {
  display: block;
  font-size: 14px;
  font-weight: bold;
}
.sec_project .project_block {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
.sec_project .project_block p {
  font-size: 14px;
  font-weight: 500;
}
.sec_project .slider_project_wrap {
  margin-top: 35px;
}
.sec_project .slider_project li {
  margin-right: 20px;
}
.sec_project .slider_project .slick-list {
  padding: 40px 25% 0 0;
}
.sec_project .slider_project ._img {
  width: 100%;
  overflow: hidden;
  border-radius: 5px 5px 5px 0;
}
.sec_project .slider_project ._img img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .sec_project {
    padding: 125px 0 160px;
  }
  .sec_project h2 {
    margin-bottom: 50px;
  }
  .sec_project h2 img {
    width: 20vw;
    margin-bottom: 24px;
  }
  .sec_project h2 span {
    font-size: 18px;
  }
  .sec_project .project_block {
    max-width: 1048px;
    margin: 0 auto;
    padding: 0 24px;
    flex-direction: row;
    gap: 0;
  }
  .sec_project .project_block p {
    font-size: 16px;
  }
  .sec_project .project_block_item {
    width: 50%;
  }
  .sec_project .project_block_item ._img {
    width: 74%;
    margin: 0 auto;
  }
  .sec_project .project_block_item ._img img {
    width: 100%;
  }
  .sec_project .slider_project_wrap {
    margin-top: 5vw;
  }
  .sec_project .slider_project li {
    margin-right: 3vw;
  }
  .sec_project .slider_project .slick-list {
    padding: 4vw 25% 0 0;
  }
}

/*# sourceMappingURL=top.css.map */


