@font-face {
  font-family: 'Helvetica Neue LT Pro';
  src: url('../fonts/HelveticaNeueLTPro.woff2') format('woff2'),
    url('../fonts/HelveticaNeueLTPro.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Calibri';
  src: url('../fonts/Calibri.woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Calibri';
  src: url('../fonts/Calibri-Bold.woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-font: "Calibri", sans-serif;
  --second-font: 'Helvetica Neue LT Pro', sans-serif;
  --header-height: 130px;

  @media (width <=950px) {
    --header-height: clamp(90px, 10vw, 120px)
  }

  @media (width <=375px) {
    --header-height: 80px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}
.animation-scroll{
  opacity: 0;
}
@keyframes slideIn {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
  }

  40%,
  100% {
    opacity: 1;
  }
}

.fadeInLeft.active {
  animation: slideIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

video {
  width: 100%;
  height: auto;
  display: block;
}

.on-sp {
  display: none;

  @media (width <=768px) {
    display: block;
  }
}

@media (width <=768px) {
  .none-sp {
    display: none;
  }
}


/* header */

.header_new {
  font-family: var(--primary-font);
  width: 100%;
  height: var(--header-height);
  background: url('../images/bg_header.webp');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 99;
  top: 0;
  transition: all 0.3s ease-in-out;
}

.header_new-wrap {
  padding: 0 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (width <=375px) {
  .header_new-logo a {
    display: block;
    max-width: 139px;
  }
}

.btn-menu {
  cursor: pointer;
  background: #fff;
  border-radius: 2px;
  width: 40px;
  height: 40px;
  align-content: center;
  padding: 0 10px;
  display: none;

  .bar1,
  .bar2,
  .bar3 {
    width: 20px;
    height: 2px;
    background-color: #50707c;
    transition: 0.4s;
    margin: 5px 0;
  }

  &.show .bar1 {
    transform: translate(0, 7px) rotate(-45deg);
  }

  &.show .bar2 {
    opacity: 0;
  }

  &.show .bar3 {
    transform: translate(0, -7px) rotate(45deg);
  }
}

.header_new-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all 0.3s ease-in-out;
}

.header_new-menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.header_new-menu-list-item a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;

  &:hover {
    text-decoration: underline;
  }
}

.menu-lang a {
  font-family: var(--second-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #50707c;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 6px 10px;
  text-decoration: none;
  gap: 6px;
  border: 1px solid #fff;
  transition: all 0.3s ease-in-out;

  .icon {
    max-width: 18px;
    display: block;
  }

  &:hover {
    background: transparent;
    color: #fff;
  }
}

.modal {
  visibility: hidden;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  height: 50dvh;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
  transform: translateY(100%);
  transition: all 0.2s linear;

  &.show {
    visibility: visible;
    transform: translateY(0);
  }
}

/* end header */

.pvmv_container {
  font-family: var(--primary-font);
  overflow: hidden;
  padding: 0 20px;
  background: #f6f8f7;
  margin-top: var(--header-height);
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.section_fv {
  margin-top: 95px;
  position: relative;

  .wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .heading_fv {
    font-family: var(--second-font);
    font-size: 51px;
    color: #50707c;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }

  .block_content {
    margin-top: 48px;
    line-height: 1.6;
    font-size: 20px;
    font-weight: 700;
  }

  .block_video {
    max-width: 1080px;
    margin: 100px auto 0;
    position: relative;

    @media (width <=375px) {
      margin-top: 60px;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 80px;
      height: 80px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      cursor: pointer;

      @media (width <=650px) {
        width: 50px;
        height: 50px;
      }

      &:before {
        content: "";
        position: absolute;
        left: 32px;
        top: 25px;
        width: 0;
        height: 0;
        border-left: 25px solid white;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;

        @media (width <=650px) {
          left: 20px;
          top: 16px;
          border-left: 15px solid white;
          border-top: 10px solid transparent;
          border-bottom: 10px solid transparent;
        }
      }
    }
  }

  .bg_img {
    position: absolute;
    width: 1237px;
    right: -24%;
    bottom: -14%;
  }

  .bg_img img {
    animation: spinReverse 50s linear infinite;
  }
}

.section_second {
  margin-top: 103px;
  position: relative;

  & .wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  & .box_content {
    margin-bottom: 100px;
  }

  .box_content .heading_box {
    font-family: var(--second-font);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    background: #8f3147;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 10px 20px 10px 85px;
    display: block;
    width: fit-content;
    position: relative;


    /* &::before {
      content: '';
      position: absolute;
      left: -100vw;
      bottom: 0;
      width: 100vw;
      height: 100%;
      background: #8f3147;
      z-index: -1;
    } */

    &::after {
      content: '\2022';
      position: absolute;
      left: 20%;
      bottom: 50%;
      transform: translateY(50%);
      font-size: 45px;
      color: #ccc;
    }
  }

  .box_content .block {
    margin-top: 32px;
    margin-left: 80px;

    .title {
      font-size: 32px;
      font-weight: 700;
      line-height: 1.4;
    }

    .words {
      margin-top: 8px;
      font-size: 20px;
      line-height: 1.4;
    }
  }

  .box_content .list_mission {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 24px;
    margin-left: 20px;
    gap: 10px;

    .it {
      padding: 20px 15px 28px;
      border-radius: 12px;
      border: 2px solid #50707c;
      max-width: 350px;
      width: 100%;
      text-align: center;
    }

    .title {
      font-family: var(--second-font);
      font-size: 48px;
      font-weight: 700;
      color: #50707c;
      line-height: 1;
    }

    .sub_title {
      font-size: 24px;
      font-weight: 700;
      color: #50707c;
      letter-spacing: 0.02em;
      line-height: 1.4;
      display: block;
      margin-top: 5px;
      text-transform: capitalize;
    }

    .bottom {
      margin-top: 12px;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 0.02em;
      line-height: 1.6;
    }
  }

  .box_content.values {
    margin-bottom: 65px;
  }

  .list_value {
    margin-top: 24px;
    margin-left: 20px;
    display: flex;
    list-style: none;
    justify-content: space-between;

    @media (width <=968px) {
      margin-left: 0;
      justify-content: left;
      flex-wrap: wrap;
      row-gap: 20px;
    }

    .it {
      max-width: 200px;
      width: 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .it_img {
      max-width: 140px;
      width: 100%;
    }

    .it_content {
      margin-top: 13px;
    }

    .it_title {
      font-family: var(--second-font);
      font-size: 28px;
      color: #333;
      font-weight: 700;
      letter-spacing: 0.02em;
      line-height: 1;
    }

    .it_text {
      font-size: 20px;
      line-height: 1.4;
    }
  }

  .our_value-box {
    margin-top: 88px;
    position: relative;

    .our_value-heading {
      font-family: var(--second-font);
      font-size: 42px;
      color: #50707c;
      font-weight: 700;
      letter-spacing: 0.02em;
      line-height: 1.4;
      text-align: center;
      position: relative;
      max-width: 960px;
      margin-left: 40px;

      &::before {
        content: '';
        width: 309px;
        background-image: url('../images/vector1.webp');
        height: 12px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
      }

      &::after {
        content: '';
        width: 309px;
        background-image: url('../images/vector2.webp');
        height: 12px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
      }
    }

    .block {
      max-width: 1011px;
      margin: 60px auto 0 auto;
    }

    .our_list {
      list-style: none;
    }

    .it {
      display: flex;
      gap: 40px;

      &:nth-child(n + 2) {
        margin-top: 79px;
      }

      .it_img {
        max-width: 140px;
        width: 100%;
      }

      .heading {
        font-family: var(--second-font);
        font-size: 48px;
        font-weight: 700;
        color: #333;
        line-height: 1;
        margin-bottom: 10px;
        display: block;
      }

      p {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.4;
      }

      .sub_title {
        margin-bottom: 11px;
      }
    }

    .bg_img {
      display: none;
      width: 726px;
      position: absolute;
      top: 5%;
      left: 90%;
    }
  }

  .bg_img {
    position: absolute;
    width: 1647px;
    top: 47%;
    left: -24%;
    transform: translateY(-50%);

    img {
      animation: spin 50s linear infinite;
    }
  }

  .img_bottom {
    max-width: 960px;
    margin: 0 auto;
  }
}

.section_bottom {
  position: relative;

  .wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 100px auto 160px;
  }

  .block-text {
    margin-top: 65px;
    font-family: var(--second-font);
    font-size: 44px;
    color: #50707c;
    line-height: 1.6;
    font-weight: 700;
    text-align: center;
  }

  .contact-img {
    max-width: 1040px;
    margin: 110px auto 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }

  .contact_link {
    max-width: 306px;
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .bg_img {
    width: 1300px;
    position: absolute;
    bottom: 9%;
    right: -26%;

    img {
      animation: spinReverse 50s linear infinite;
    }
  }
}

/* footer */

.footer_new {
  font-family: var(--primary-font);
  padding: 20px 0 40px;
  background: #50707c;
}

.footer_new-wrap {
  width: fit-content;
  margin: 0 auto;
}

.footer_new-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer_new-menu-item a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
}

.copy_right {
  font-size: 14px;
  color: #fff;
  line-height: 1;
}

/* end footer */
@media (width <=1024px) {
  .header_new-logo a {
    display: block;
    max-width: clamp(180px, 19vw, 250px);
  }

  .section_second {
    & .our_value-box {
      & .our_value-heading {
        margin-left: 0;
        font-size: clamp(35px, 6.65vw, 42px);

        &::before {
          width: clamp(90px, 23vw, 250px);
        }

        &::after {
          width: clamp(90px, 23vw, 250px);
          background-position: right;
        }
      }
    }
  }
}

@media (width <=920px) {
  .section_second {
    & .our_value-box {
      & .it {
        gap: 30px;

        .it_img {
          max-width: clamp(160px, 20vw, 200px);
        }

        .heading {
          font-size: clamp(25px, 5.7vw, 48px);
        }

        p {
          font-size: clamp(15px, 2.8vw, 20px);
        }
      }
    }
  }
}

@media (width <=768px) {
  .header_new-wrap {
    padding: 0 40px;
  }

  .header_new-logo a {
    display: block;
    max-width: 180px;
  }

  .header_new-menu {
    visibility: hidden;
    opacity: 0;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 64px 87px 80px;
    background: #50707b;
    transform: translateY(0);
    z-index: -1;
    gap: 40px;

    &.open {
      visibility: visible;
      opacity: 1;
      transform: translateY(99%);
    }
  }

  .header_new-menu-list {
    flex-direction: column;
    gap: 36px;
  }

  .btn-menu {
    display: block;
  }

  .section_fv {
    .heading_fv {
      font-size: clamp(38px, 7vw, 48px);
    }
  }

  .section_second {
    .box_content .list_mission {
      margin-left: 0;
      flex-direction: column;
      align-items: center;
    }

    .box_content .block {
      margin-left: 0;
    }

    .box_content .heading_box {
      font-size: 35px;
      margin-left: -20px;

      &::after {
        font-size: clamp(28px, 6vw, 45px);
      }
    }

    & .list_value {
      .it_img {
        max-width: clamp(108px, 20vw, 140px);
      }
    }

    & .our_value-box {
      & .it {
        gap: 20px;

        .it_img {
          flex: 1;
          max-width: clamp(108px, 20vw, 140px);
        }

        .content {
          flex: 1;
        }

      }
    }
  }
}

@media (width <=650px) {
  .header_new-wrap {
    padding: 0 25px;
  }

  .header_new-logo a {
    max-width: 160px;
  }

  .section_bottom {
    .block-text {
      font-size: clamp(30px, 7vw, 44px);
    }
  }

  .section_bottom {
    .contact_link {
      max-width: 250px;
    }
  }

  .section_second {
    .box_content .list_mission {
      margin-left: 0;
    }
  }
}

@media (width <=480px) {
  .section_second {

    & .list_value {
      .it {
        max-width: clamp(150px, 42vw, 200px);
      }

      .it_title {
        font-size: 25px;
      }
    }

    & .our_value-box {
      & .our_value-heading {
        &::before {
          width: 78px;
          background-image: url('../images/vector1_sp.webp');
          background-repeat: no-repeat;
        }

        &::after {
          width: 78px;
          background-image: url('../images/vector2_sp.webp');
          background-repeat: no-repeat;
        }
      }
    }
  }

  .section_bottom {
    .contact_link {
      max-width: 200px;
    }
  }
}

@media (width <=375px) {
  /* header */

  .header_new {
    background: #50707c;
  }

  .header_new-wrap {
    padding: 0 16px;
  }

  .header_new-logo a {
    max-width: 139px;
  }

  .header_new-menu-list-item a {
    font-size: 24px;
  }

  /* end header */

  .pvmv_container {
    padding: 0 16px;
    margin-top: var(--header-height);
  }

  .section_fv {
    margin-top: 60px;

    .heading_fv {
      font-size: 32px;
    }

    .block_content {
      margin-top: 20px;
      font-size: 15px;
    }

    .block_video {
      margin-top: 60px;
    }

    .bg_img {
      width: 726px;
      right: 0;
      bottom: 0;
      transform: translate(52%, -5%);
    }

  }

  .section_second {
    margin-top: 60px;

    & .box_content {
      margin-bottom: 40px;
    }

    .box_content .heading_box {
      font-size: 20px;
      padding: 10px 20px 10px 45px;

      &::after {
        font-size: 25px;
      }
    }

    .box_content .block {
      margin-top: 20px;
      margin-left: 0;

      .title {
        font-size: 20px;
      }

      .words {
        font-size: 13px;
        letter-spacing: 0.02em;
        line-height: 1.8;
      }
    }

    .box_content .list_mission {
      margin-top: 20px;
      margin-left: 0;
      flex-direction: column;
      gap: 8px;

      .title {
        font-size: 32px;
      }

      .sub_title {
        font-size: 18px;
        margin-top: 0;
      }

      .bottom {
        font-size: 13px;
        margin-top: 4px;
      }
    }

    .list_value {
      margin-top: 20px;

      .it {
        max-width: 160px;
      }

      /* .it_img {
        padding: 0 26px;
      } */

      .it_content {
        margin-top: 12px;
      }

      .it_title {
        font-size: 20px;
      }
    }

    .our_value-box {
      margin-top: 28px;

      .our_value-heading {
        font-size: 28px;
        margin-left: 0;
      }

      .block {
        margin-top: 28px;
      }

      .it {
        gap: 20px;

        &:nth-child(n + 2) {
          margin-top: 28px;
        }

        .content {
          max-width: 215px;
        }

        .heading {
          font-size: 20px;
          margin-bottom: 8px;
        }

        p {
          font-size: 13px;
          line-height: 1.8;
        }

        .sub_title {
          margin-bottom: 8px;
        }
      }

      .bg_img {

        display: block;

        img {
          animation-name: spinReverse;
        }
      }


    }

    .bg_img {
      width: 726px;
      top: 20%;
      left: 0;
      transform: translate(-45%, -22%);
    }
  }

  .section_bottom {
    .wrap {
      margin: 60px auto;
    }

    .block-text {
      margin-top: 40px;
      font-size: 20px;
      line-height: 2.3;
    }

    .contact-img {
      margin-top: 60px;
    }

    .contact_link {
      max-width: 141px;
    }

    .bg_img {
      width: 726px;
      bottom: -100%;
      right: -22%;

      img {
        animation-name: spin;
      }
    }

  }

  /* footer */

  .footer_new {
    font-family: var(--primary-font);
    padding: 16px 0 24px;
    background: #50707c;
  }

  .footer_new-menu {
    gap: 20px;
    margin-bottom: 10px;
  }

  .footer_new-menu-item a {
    font-size: 10px;
  }

  .copy_right {
    font-size: 10px;
    text-align: center;
  }

  /* end footer */
}