@charset "utf-8";

/* splash
------------------------------*/
.p-splash {
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  transition: all 0.5s ease-out;
}

.p-splash.is-hide {
  opacity: 0;
  pointer-events: none;
}

.p-splash__inner {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all 0.5s ease-out;
}

.p-splash__inner.is-large {
  transform: scale3d(2.6, 2.6, 1);
}

@media all and (max-width: 1000px) {
  .p-splash__inner.is-large {
    transform: scale3d(1.6, 1.6, 1);
  }
}

.p-splash__arrow-right {
  /* width: 316px; */
  width: 206px;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate3d(-100%, -50%, 0);
  transition: all 0.4s cubic-bezier(0.6, 0, 0, 1.2);
}

@media all and (max-width: 1000px) {
  .p-splash__arrow-right {
    width: 91.2px;
  }
}

.p-splash__arrow-right.is-show {
  left: 50%;
  transform: translate3d(12%, -50%, 0);
}

.p-splash__arrow-right.is-show.is-small {
  /* width: calc(316px / 2.6); */
  width: calc(206px / 1.7);
}

@media all and (max-width: 1000px) {
  .p-splash__arrow-right.is-show.is-small {
    width: calc(91.2px / 1.2);
  }
}

.p-splash__arrow-top {
  /* width: 342px; */
  width: 222px;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate3d(-112%, 100%, 0);
  transition: all 0.4s cubic-bezier(0.6, 0, 0, 1.2);
}

@media all and (max-width: 1000px) {
  .p-splash__arrow-top {
    width: 98.4px;
  }
}

.p-splash__arrow-top.is-show {
  bottom: 50%;
  transform: translate3d(-112%, 50%, 0);
}

.p-splash__arrow-top.is-show.is-small {
  /* width: calc(342px / 2.6); */
  width: calc(222px / 1.7);
}

@media all and (max-width: 1000px) {
  .p-splash__arrow-top.is-show.is-small {
    width: calc(98.4px / 1.2);
  }
}

.p-splash__arrow-txt {
  width: calc(740px / 2.6);
  position: absolute;
  /* アニメーション完了時ガタつく（Win Chrome & Edge ) */
  top: 51%;
  left: 50%;
  transform: translate3d(-50%, 290%, 0);
  transition: all 0.5s ease;
  opacity: 0;
}

@media all and (max-width: 1000px) {
  .p-splash__arrow-txt {
    transform: translate3d(-50%, 230%, 0);
    width: calc(213.6px / 1.2);
  }
}

.p-splash__arrow-txt.is-show {
  opacity: 1;
  /* rotate：ガタつき回避（Win Firefox) */
  transform: translate3d(-50%, 250%, 0) rotate(0.0001deg);
}

@media all and (max-width: 1000px) {
  .p-splash__arrow-txt.is-show {
    opacity: 1;
    transform: translate3d(-50%, 190%, 0) rotate(0.0001deg);
  }
}

/* mv
------------------------------*/
.p-mv {
  width: 100%;
  height: 1080px;
}

@media all and (max-width: 1600px) {
  .p-mv {
    height: 800px;
  }
}

@media all and (max-width: 1000px) {
  .p-mv {
    /* height: calc(570px + 60px + 60px); */
    height: 690px;
  }
}

@media all and (max-width: 750px) {
  .p-mv {
    /* height: calc(294px + 60px + 0px); */
    /* height: 354px; */
    height: auto;
  }
}

.p-mv__inner {
  width: 100%;
  height: 100%;
  padding: 100px 0;
  position: relative;
}

@media all and (max-width: 1600px) {
  .p-mv__inner {
    padding-bottom: 60px;
  }
}

@media all and (max-width: 1000px) {
  .p-mv__inner {
    padding-top: 61px;
  }
}

@media all and (max-width: 750px) {
  .p-mv__inner {
    padding-bottom: 0px;
  }
}

.p-mv__headers {
  display: block;
}

@media all and (max-width: 750px) {
  .p-mv__headers {
    position: relative;
    margin-bottom: 100px;
    display: flex; /* 高さ揃える */
  }
}

.p-mv__header {
  position: absolute;
  top: 200px;
  left: 200px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-out;
}

.p-mv__header.--small {
  top: 240px;
}

@media all and (max-width: 1600px) {
  .p-mv__header {
    top: 180px;
    left: 70px;
  }

  .p-mv__header.--small {
    top: 240px;
  }
}

@media all and (max-width: 1200px) {
  .p-mv__header {
    top: 170px;
    left: 70px;
  }

  .p-mv__header.--small {
    top: 200px;
  }
}

@media all and (max-width: 1000px) {
  .p-mv__header {
    top: 120px;
    left: 20px;
  }
  .p-mv__header.--small {
    top: 160px;
  }
}

@media all and (max-width: 750px) {
  .p-mv__header,
  .p-mv__header.--small {
    top: 0;
    left: 18px;
    right: 18px;
  }
}

.p-mv__header.is-show {
  pointer-events: auto;
  opacity: 1;
}

.p-mv__header-heading {
  font-size: 100px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 40px;
}

.p-mv__header-heading.--small {
  font-size: 75px;
  font-weight: 400;
}

@media all and (max-width: 1600px) {
  .p-mv__header-heading {
    font-size: 75px;
    margin-bottom: 20px;
  }

  .p-mv__header-heading.--small {
    font-size: 50px;
  }
}

@media all and (max-width: 1200px) {
  .p-mv__header-heading {
    font-size: 60px;
    margin-bottom: 20px;
  }

  .p-mv__header-heading.--small {
    font-size: 40px;
  }
}

@media all and (max-width: 1000px) {
  .p-mv__header-heading {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .p-mv__header-heading.--small {
    font-size: 30px;
  }
}

.p-mv__header-heading span {
  color: #dc000c;
}

.p-mv__header-txt {
  font-size: 20px;
  line-height: 2.25;
  margin: 0 0 40px;
}

@media all and (max-width: 1600px) {
  .p-mv__header-txt {
    font-size: 16px;
  }
}

@media all and (max-width: 1000px) {
  .p-mv__header-txt {
    margin-bottom: 30px;
  }
}

.p-mv__btn {
  width: 200px;
  height: 60px;
}

.p-mv__swiper {
  width: calc(1704 / 1920 * 100%);
  margin-right: calc(-318 / 1920 * 100%);
  height: 100%;
  margin-left: auto;
  position: relative;
}

.p-mv__swiper-left {
  width: auto;
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: 8px;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(-50%, 0, 0);
}

.p-mv__swiper-left img {
  width: auto;
  height: 100%;
}

.p-mv__swiper-right {
  width: auto;
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  right: 8px;
  z-index: 1;
  pointer-events: none;
}

.p-mv__swiper-right img {
  width: auto;
  height: 100%;
}

@media all and (max-width: 1600px) {
  .p-mv__swiper {
    width: calc(1260 / 1400 * 100%);
    margin-right: calc(-176 / 1400 * 100%);
  }
}

@media all and (max-width: 1000px) {
  .p-mv__swiper {
    /* width: calc(1114 / 1080 * 100%); */
    width: 99%; /* 100%以上不具合（Safari）？ */
    margin-right: calc(-330 / 1080 * 100%);
  }
}

@media all and (max-width: 750px) {
  .p-mv__swiper {
    width: calc(100% + 60 / 375 * 100% + 185 / 375 * 100%);
    margin-left: calc(-60 / 375 * 100%);
    margin-right: calc(-185 / 375 * 100%);
    height: 294px;
  }
}

@media all and (max-width: 360px) {
  .p-mv__swiper {
    width: calc(100% + 60 / 375 * 100% + 210 / 375 * 100%);
    margin-right: calc(-210 / 375 * 100%);
  }
}


.p-mv__swiper .swiper {
  width: 100%;
  height: 100%;
}

.p-mv__swiper .swiper-slide {
  position: relative;
}

.p-mv__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(
    0% 100%,
    calc((1080px - 100px - 100px) * 0.568) 0%,
    100% 0%,
    calc(100% - (1080px - 100px - 100px) * 0.568) 100%
  );
}

@media all and (max-width: 1600px) {
  .p-mv__swiper .swiper-slide img {
    clip-path: polygon(
      0% 100%,
      calc((800px - 100px - 60px) * 0.568) 0%,
      100% 0%,
      calc(100% - (800px - 100px - 60px) * 0.568) 100%
    );
  }
}

@media all and (max-width: 1000px) {
  .p-mv__swiper .swiper-slide img {
    clip-path: polygon(
      0% 100%,
      calc((630px - 60px - 0px) * 0.568) 0%,
      100% 0%,
      calc(100% - (630px - 60px - 0px) * 0.568) 100%
    );
  }
}

@media all and (max-width: 750px) {
  .p-mv__swiper .swiper-slide img {
    clip-path: polygon(
      0% 100%,
      calc((354px - 60px - 0px) * 0.568) 0%,
      100% 0%,
      calc(100% - (354px - 60px - 0px) * 0.568) 100%
    );
  }
}

.p-mv__news {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  padding: 20px 350px 0 200px;
}

@media all and (max-width: 1600px) {
  .p-mv__news {
    height: 60px;
    padding: 20px 350px 0 70px;
  }
}

@media all and (max-width: 1000px) {
  .p-mv__news {
    padding: 20px 20px 0 20px;
  }
}

@media all and (max-width: 750px) {
  .p-mv__news {
    position: static;
    padding: 20px 100px 20px 20px;
    height: auto;
    background: #eff2f5 url(../img/top/mv_right.svg) no-repeat right bottom / auto 100%;
  }
}

.p-mv__news-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.p-mv__news-heading {
  color: #939a9b;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding-right: 10px;
  margin: 0 10px 0 0;
  position: relative;
}

.p-mv__news-heading::after {
  content: '|';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate3d(50%, -50%, 0);
}

.p-mv__news-date {
  color: #939a9b;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  margin: 0 15px 0 0;
}

.p-mv__news-cat {
  font-size: 11px;
  background-color: #d7dbde;
  padding: 5px 8px;
  line-height: 1;
  margin: -1px 15px 0 0;
}

@media all and (max-width: 750px) {
  .p-mv__news-cat {
    font-size: 12px;
    color: #939a9b;
    background-color: transparent;
    padding: 0;
    line-height: inherit;
    margin-top: 0;
    margin-right: 0;
  }
}

.p-mv__news-txt {
  font-size: 14px;
  line-height: 1.8;
  flex: 1;
  margin: -3px 0 0 0;
}

@media all and (max-width: 750px) {
  .p-mv__news-txt {
    width: 100%;
    flex: auto;
    margin-top: 5px;
  }
}

.p-mv__news-txt a {
  color: inherit;
  text-decoration: none;
}

.p-mv__news-txt a:hover {
  color: #939a9b;
}

.p-mv__scroll {
  width: 497px;
  height: 255px;
  position: fixed;
  right: -150px;
  bottom: -30px;
  z-index: 10;
  cursor: pointer;
  transition: all 0.2s ease-out;
  clip-path: polygon(0% 100%, calc(255px * 0.56) 0%, 100% 0%, calc(100% - 255px * 0.56) 100%);
}

@media all and (max-width: 1000px) {
  .p-mv__scroll {
    display: none !important;
  }
}

.p-mv__scroll.is-hide {
  opacity: 0;
  pointer-events: none;
}

.p-mv__scroll a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.p-mv__scroll a::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../img/top/mv_scroll.svg) no-repeat center center / 100% auto;
}

.p-mv__scroll a:hover::before {
  opacity: 0.8;
  background-image: url(../img/top/mv_scroll_hover.svg);
}

.p-mv__scroll a span {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1;
  position: relative;
  transition: margin-top 0.2s ease-out;
}

.p-mv__scroll a:hover span {
  color: #fff;
  margin-top: 10px;
}

.p-mv__scroll a span::after {
  content: '';
  display: block;
  width: 9px;
  height: 56px;
  margin: 8px auto 0;
  background: url(../img/top/mv_scroll_arrow.svg) no-repeat center -10px / 100% auto;
  overflow: hidden;
}

.p-mv__scroll a:hover span::after {
  background: url(../img/top/mv_scroll_arrow_hover.svg) no-repeat center center / 100% auto;
}

.progress {
  position: absolute;
  left: 200px;
  bottom: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  z-index: 1;
}

@media all and (max-width: 1600px) {
  .progress {
    left: 70px;
    bottom: 140px;
    width: 165px;
  }
}

@media all and (max-width: 1200px) {
  .progress {
    width: 145px;
  }
}

@media all and (max-width: 1000px) {
  .progress {
    left: 20px;
  }
}

@media all and (max-width: 750px) {
  .progress {
    margin: 20px 20px 25px auto;
    position: static;
  }
}

.progress-current {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #dc000c;
}

.progress-next {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #d7dbde;
}

.progress-bar {
  width: 135px;
  height: 1px;
  background-color: #d7dbde;
  position: relative;
}

@media all and (max-width: 1600px) {
  .progress-bar {
    width: 100px;
  }
}

@media all and (max-width: 1200px) {
  .progress-bar {
    width: 90px;
  }
}

.progress-bar-fill {
  width: 0%;
  height: 1px;
  background-color: #dc000c;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transition: all 0s linear;
}

.progress-bar-fill.is-show {
  width: 100%;
  transition: all 3s linear;
}

/* service
------------------------------*/
.p-service {
  width: 100%;
  padding-top: 200px;
}

@media all and (max-width: 1000px) {
  .p-service {
    padding-top: 100px;
  }
}

.p-service__header {
  width: 100%;
  padding: 0 70px;
  margin: 0 0 100px;
}

@media all and (max-width: 1000px) {
  .p-service__header {
    padding: 0 20px;
    margin: 0 0 40px;
  }
}

.p-service__header-inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  position: relative;
}

.p-service__header-arrow {
  width: 540px;
  height: 498px;
  background: url(../img/top/service_arrow.svg) no-repeat center center / 100% auto;
  position: absolute;
  bottom: -260px;
  right: -60px;
}

@media all and (max-width: 1000px) {
  .p-service__header-arrow {
    width: 228px;
    height: calc(498 / 540 * 228px);
    bottom: -120px;
    right: -75px;
  }
}

.p-service__header-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 100px;
  font-weight: 200;
  margin: 0 0 25px;
  line-height: 1;
}

@media all and (max-width: 1000px) {
  .p-service__header-heading {
    font-size: 52px;
    margin: 0 0 10px;
  }
}

.p-service__header-sub-heading {
  color: #939a9b;
  font-size: 16px;
  margin: 0;
}

.p-service__header-txt {
  font-size: 28px;
  margin: 80px 0 0 0;
  font-weight: 300;
}

@media all and (max-width: 1000px) {
  .p-service__header-txt {
    font-size: 20px;
    margin-top: 40px;
  }
}

.p-service__header-txt br {
  display: none;
}

@media all and (max-width: 1000px) {
  .p-service__header-txt br {
    display: inline;
  }
}

ul.p-service__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

ul.p-service__list li {
  width: 33.333%;
  height: 600px;
}

@media all and (max-width: 800px) {
  ul.p-service__list li {
    width: 100%;
    height: 250px;
  }
}

ul.p-service__list li a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  position: relative;
}

ul.p-service__list li a:before {
  content: '';
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  opacity: 0.6;
  z-index: 1;
}

ul.p-service__list li a .p-service__list-img {
  width: 100%;
  height: 100%;
  background: no-repeat center center / cover;
  transition: transform .3s ease-out;
  /* 隙間回避（Win） */
  transform: scale3d(1.01, 1.01, 1);
}

ul.p-service__list li:nth-of-type(1) a .p-service__list-img {
  background-image: url(../img/top/service_img01.jpg);
}

ul.p-service__list li:nth-of-type(2) a .p-service__list-img {
  background-image: url(../img/top/service_img02.jpg);
}

ul.p-service__list li:nth-of-type(3) a .p-service__list-img {
  background-image: url(../img/top/service_img03.jpg);
}

ul.p-service__list li a:hover .p-service__list-img {
  transform: scale3d(1.1, 1.1, 1);
}

.p-service__list-header {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translate3d(0, -50%, 0);
  z-index: 2;
}

@media all and (max-width: 800px) {
  .p-service__list-header {
    left: 20px;
  }
}

.p-service__list-heading {
  color: #fff;
  font-size: 34px;
  font-weight: 300;
  margin: 0;
}

@media all and (max-width: 800px) {
  .p-service__list-heading {
    font-size: 26px;
  }
}

.p-service__list-sub-heading {
  display: block;
  color: #d7dbde;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin: 3px 0 0 0;
}

@media all and (max-width: 800px) {
  .p-service__list-sub-heading {
    font-size: 12px;
  }
}

/* works
------------------------------*/
.p-works {
  width: 100%;
  padding: 0 0 250px;
  background: linear-gradient(to bottom, #eff2f5, #eff2f5 50%, #fff);
}

@media all and (max-width: 1200px) {
  .p-works {
    padding: 0 0 200px;
  }
}

@media all and (max-width: 1000px) {
  .p-works {
    padding: 0 0 100px;
  }
}

.p-works__header {
  width: 100%;
  padding: 200px 70px 300px;
  background-color: #1f2426;
}

@media all and (max-width: 1200px) {
  .p-works__header {
    padding: 150px 70px 300px;
  }
}

@media all and (max-width: 1000px) {
  .p-works__header {
    padding: 100px 20px 150px;
  }
}

.p-works__header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}

.p-works__header-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 100px;
  font-weight: 200;
  margin: 0 0 25px;
  width: 100%;
  line-height: 1;
  color: #fff;
}

@media all and (max-width: 1000px) {
  .p-works__header-heading {
    font-size: 52px;
    margin: 0 0 10px;
  }
}

.p-works__header-sub-heading {
  width: 100%;
  color: #939a9b;
  font-size: 16px;
  margin: 0;
}

.p-works__header-txt {
  font-size: 28px;
  margin: 80px 0 0 0;
  font-weight: 300;
  color: #fff;
}

@media all and (max-width: 1000px) {
  .p-works__header-txt {
    font-size: 20px;
    margin-top: 40px;
  }
}

.p-works__header-txt br {
  display: none;
}

@media all and (max-width: 1000px) {
  .p-works__header-txt br {
    display: inline-block;
  }
}

.p-works__header-controller {
  position: relative;
  left: 30px;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 40px;
}

@media all and (max-width: 1000px){
  .p-works__header-controller {
    left: 20px;
    gap: 0 30px;
    padding-bottom: 7px;
  }
}

@media all and (max-width: 576px){
  .p-works__header-controller {
    gap: 0 20px;
    padding-bottom: 15px;
  }
}

.p-works__header-controller .swiper-button-next,
.p-works__header-controller .swiper-button-prev {
  position: static;
  width: 130px;
  height: 18px;
  overflow: hidden;
  transition: background-position 0.2s ease-out;
  background-repeat: no-repeat;
  background-size: 130px 18px;
  margin-top: 0;
}

@media all and (max-width: 1000px){
  .p-works__header-controller .swiper-button-next,
  .p-works__header-controller .swiper-button-prev{
    width: 102px;
    background-size: 102px 18px;
  }
}

@media all and (max-width: 576px){
  .p-works__header-controller .swiper-button-next,
  .p-works__header-controller .swiper-button-prev{
    width: 72px;
    height: 11px;
    background-size: 72px 11px;
  }
}

.p-works__header-controller .swiper-button-next.swiper-button-disabled,
.p-works__header-controller .swiper-button-prev.swiper-button-disabled{
  opacity: .2 !important;
}

.p-works__header-controller .swiper-button-prev {
  background-image: url(../img/common/ico_prev_white.svg);
  background-position: left 30px center;
}

@media all and (max-width: 576px){
  .p-works__header-controller .swiper-button-prev {
    background-position: left 20px center;
  }
}

.p-works__header-controller .swiper-button-prev:hover {
  background-image: url(../img/common/ico_prev_hover.svg);
  background-position: left 0px center;
}

.p-works__header-controller .swiper-button-next {
  background-image: url(../img/common/ico_next_white.svg);
  background-position: right 30px center;
}

@media all and (max-width: 576px){
  .p-works__header-controller .swiper-button-next {
    background-position: right 20px center;
  }
}

.p-works__header-controller .swiper-button-next:hover {
  background-image: url(../img/common/ico_next_hover.svg);
  background-position: right 0px center;
}

.p-works__header-controller .swiper-button-next::after,
.p-works__header-controller .swiper-button-prev::after {
  display: none;
}

.p-works__swiper {
  width: 100%;
  max-width: 1520px;
  position: relative;
  margin: -200px auto 80px;
}

@media all and (max-width: 1660px) {
  .p-works__swiper {
    max-width: none;
  }
}

@media all and (max-width: 1000px) {
  .p-works__swiper {
    margin-top: -100px;
    margin-bottom: 40px;
  }
}

.p-works__swiper .swiper {
  width: 100%;
  overflow: visible;
}

.p-works__swiper .swiper-slide {
  width: 600px;
}

@media all and (max-width: 1200px) {
  .p-works__swiper .swiper-slide {
    width: 420px;
  }
}

@media all and (max-width: 1000px) {
  .p-works__swiper .swiper-slide {
    width: 295px;
  }
}

.p-works__swiper a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.p-works__swiper .swiper-slide-img {
  display: block;
  margin-bottom: 6px;
  overflow: hidden;
}

.p-works__swiper a .swiper-slide-img img {
  transform: scale(1);
  transition: transform .3s ease-out;
}

.p-works__swiper a:hover .swiper-slide-img img {
  transform: scale(1.1);
}

.p-works__swiper .swiper-slide-txt {
  font-size: 22px;
  font-weight: 300;
  margin: 0 0 6px;
}

@media all and (max-width: 1000px) {
  .p-works__swiper .swiper-slide-txt {
    font-size: 16px;
  }
}

.p-works__swiper .swiper-slide-cat {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap:wrap;
  font-size: 14px;
  line-height: 1.1;
  color: #939a9b;
  padding-left: 0;
  margin-top: -8px;
  margin-left: -20px;
}

.p-works__swiper .swiper-slide-cat li {
  list-style: none;
  margin-top: 8px;
  margin-left: 20px;
}

.p-works__swiper .swiper-slide-cat li::before {
  content: "#";
}

@media all and (max-width: 1000px) {
  .p-works__swiper .swiper-slide-cat {
    font-size: 12px;
  }
}

.p-works__swiper .swiper-button-next {
  top: -120px;
  bottom: auto;
  left: auto;
  right: -30px;
  margin: 0;
  width: 130px;
  height: calc(18px + 9px);
  overflow: hidden;
  z-index: 0;
  position: absolute;
}

@media all and (max-width: 1660px) {
  .p-works__swiper .swiper-button-next {
    right: 180px;
  }
}

@media all and (max-width: 1000px) {
  .p-works__swiper .swiper-button-next {
    top: -65px;
    right: -10px;
    width: calc(130 / 18 * 12px);
    height: calc(12px + 6px);
  }
}

.p-works__swiper .swiper-button-next::before {
  content: '';
  display: block;
  background: url(../img/common/ico_next_white.svg) no-repeat center center / 100% auto;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(-30px, 0, 0);
}

.p-works__swiper .swiper-button-next:hover::before {
  background-image: url(../img/common/ico_next_hover.svg);
  transform: translate3d(0, 0, 0);
}

@media all and (max-width: 1000px) {
  .p-works__swiper .swiper-button-next:hover::before {
    transform: translate3d(-30px, 0, 0);
  }
}

.p-works__swiper .swiper-button-next::after {
  display: none;
}

.p-works__swiper .swiper-button-prev {
  top: -120px;
  bottom: auto;
  left: auto;
  right: 140px;
  margin: 0;
  width: 130px;
  height: calc(18px + 9px);
  overflow: hidden;
  z-index: 0;
  position: absolute;
}

@media all and (max-width: 1660px) {
  .p-works__swiper .swiper-button-prev {
    right: 350px;
  }
}

@media all and (max-width: 1000px) {
  .p-works__swiper .swiper-button-prev {
    top: -65px;
    right: 100px;
    width: calc(130 / 18 * 12px);
    height: calc(12px + 6px);
  }
}

.p-works__swiper .swiper-button-prev::before {
  content: '';
  display: block;
  background: url(../img/common/ico_prev_white.svg) no-repeat center center / 100% auto;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(30px, 0, 0);
}

.p-works__swiper .swiper-button-prev:hover::before {
  background-image: url(../img/common/ico_prev_hover.svg);
  transform: translate3d(0, 0, 0);
}

@media all and (max-width: 1000px) {
  .p-works__swiper .swiper-button-prev:hover:before {
    transform: translate3d(30px, 0, 0);
  }
}

.p-works__swiper .swiper-button-prev::after {
  display: none;
}

.p-works__swiper .swiper-button-disabled {
  opacity: 0.2 !important;
}

.p-works__btn {
  width: 320px;
  height: 68px;
  margin: 0 auto;
}

@media all and (max-width: 1000px) {
  .p-works__btn {
    width: 180px;
    height: 50px;
  }
}

/* news
------------------------------*/
.p-news {
  width: 100%;
  padding: 0 70px;
  margin-bottom: 200px;
}

@media all and (max-width: 1200px) {
  .p-news {
    margin-bottom: 150px;
  }
}

@media all and (max-width: 1000px) {
  .p-news {
    padding: 0 20px;
    margin-bottom: 100px;
  }
}

.p-news__inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-news__header {
  width: 320px;
}

@media all and (max-width: 1000px) {
  .p-news__header {
    width: 100%;
    margin: 0 0 40px;
  }
}

.p-news__header-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 100px;
  font-weight: 200;
  margin: 0 0 25px;
  line-height: 1;
}

@media all and (max-width: 1000px) {
  .p-news__header-heading {
    font-size: 52px;
    margin: 0 0 10px;
  }
}

.p-news__header-sub-heading {
  color: #939a9b;
  font-size: 16px;
  margin: 0;
}

.p-news__header-btn {
  width: 100%;
  max-width: 320px;
  height: 68px;
  margin-top: 80px;
}

@media all and (max-width: 1000px) {
  .p-news__header-btn {
    display: none;
  }
}

.p-news__content {
  width: calc(1045 / 1520 * 100%);
}

@media all and (max-width: 1400px) {
  .p-news__content {
    width: calc(785 / 1260 * 100%);
  }
}

@media all and (max-width: 1200px) {
  .p-news__content {
    width: calc(550 / 940 * 100%);
  }
}

@media all and (max-width: 1000px) {
  .p-news__content {
    width: 100%;
  }
}

.p-news__block {
  margin-bottom: 40px;
  overflow: hidden;
}

@media all and (max-width: 1000px) {
  .p-news__block {
    margin-bottom: 30px;
  }
}

.p-news__block a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 40px;
  position: relative;
  border-bottom: solid 1px #d7dbde;
}

@media all and (max-width: 1000px) {
  .p-news__block a {
    padding-bottom: 30px;
  }
}

.p-news__block a::after {
  content: '';
  background-color: #dc000c;
  height: 1px;
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
}

.p-news__block a:hover::after {
  right: 0;
}

.p-news__block-date {
  color: #939a9b;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  display: inline-block;
  margin: 0;
}

.p-news__block-cat {
  font-size: 13px;
  background-color: #d7dbde;
  display: inline-block;
  padding: 5px 10px;
  line-height: 1;
  margin: 0 0 0 20px;
}

.p-news__block-txt {
  font-size: 18px;
  line-height: 1.75;
  margin: 10px 0 0 0;
}

@media all and (max-width: 1000px) {
  .p-news__block-txt {
    font-size: 16px;
  }
}

.p-news__block-txt .pdf {
  display: inline-block;
  line-height: 1;
  color: #fff;
  font-size: 12px;
  margin-left: 5px;
  background-color: #dc000c;
  border-radius: 4px;
  padding: 2px 10px;
  vertical-align: 2px;
}

.p-news__content-btn {
  width: 180px;
  height: 50px;
  margin: 40px auto 0;
  display: none;
}

@media all and (max-width: 1000px) {
  .p-news__content-btn {
    display: block;
  }
}

/* bnr
------------------------------*/
.p-bnr {
  width: 100%;
  padding: 70px;
  background: linear-gradient(to bottom, #eff2f5, #fff);
}

@media all and (max-width: 1000px) {
  .p-bnr {
    padding: 40px 20px;
  }
}

.p-bnr__swiper {
  width: 100%;
  max-width: 1260px;
  position: relative;
  margin: 0 auto;
}

.p-bnr__swiper .swiper {
  width: calc(100% + 20px * 2);
  padding: 20px;
  margin: -20px;
}

.p-bnr__swiper .swiper-wrapper {
  padding-left: 0;
}

.p-bnr__swiper .swiper-slide {
  list-style: none;
  width: 100%;
  box-shadow: 0px 5px 15px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.p-bnr__swiper .swiper-slide a img {
  transition: transform .3s ease-out;
  transform: scale(1);
}

.p-bnr__swiper .swiper-slide a:hover img {
  transform: scale(1.1);
}

.p-bnr__swiper .swiper-button-next {
  top: auto;
  bottom: -40px;
  right: 50%;
  transform: translate3d(calc(100% + 20px), 0, 0);
  width: 130px;
  height: calc(18px + 9px);
  overflow: hidden;
  z-index: 0;
  position: absolute;
}

@media all and (max-width: 1000px) {
  .p-bnr__swiper .swiper-button-next {
    transform: translate3d(calc(100% + 10px), 0, 0);
    width: calc(130 / 18 * 12px);
    height: calc(12px + 6px);
  }
}

.p-bnr__swiper .swiper-button-next::before {
  content: '';
  display: block;
  background: url(../img/common/ico_next.svg) no-repeat center center / 100% auto;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(-30px, 0, 0);
}

.p-bnr__swiper .swiper-button-next:hover::before {
  background-image: url(../img/common/ico_next_hover.svg);
  transform: translate3d(0, 0, 0);
}

@media all and (max-width: 1000px) {
  .p-bnr__swiper .swiper-button-next:hover::before {
    transform: translate3d(-30px, 0, 0);
  }
}

.p-bnr__swiper .swiper-button-next::after {
  display: none;
}

.p-bnr__swiper .swiper-button-prev {
  top: auto;
  bottom: -40px;
  left: 50%;
  transform: translate3d(calc(-100% - 20px), 0, 0);
  width: 130px;
  height: calc(18px + 9px);
  overflow: hidden;
  z-index: 0;
  position: absolute;
}

@media all and (max-width: 1000px) {
  .p-bnr__swiper .swiper-button-prev {
    transform: translate3d(calc(-100% - 10px), 0, 0);
    width: calc(130 / 18 * 12px);
    height: calc(12px + 6px);
  }
}

.p-bnr__swiper .swiper-button-prev::before {
  content: '';
  display: block;
  background: url(../img/common/ico_prev.svg) no-repeat center center / 100% auto;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(30px, 0, 0);
}

.p-bnr__swiper .swiper-button-prev:hover::before {
  background-image: url(../img/common/ico_prev_hover.svg);
  transform: translate3d(0, 0, 0);
}

@media all and (max-width: 1000px) {
  .p-bnr__swiper .swiper-button-prev:hover::before {
    transform: translate3d(30px, 0, 0);
  }
}

.p-bnr__swiper .swiper-button-prev::after {
  display: none;
}

.p-bnr__swiper .swiper-button-disabled {
  opacity: 0.2 !important;
}
