@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", HiraKakuProN-W3, Meryo, "メイリオ", sans-serif;
  font-size: 16px;
  color: var(--black, #2A3342);
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 540px) {
  body {
    font-size: 14px;
  }
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  transition-property: opacity;
  transition-duration: 400ms;
  color: #000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2);
  word-break: break-all;
}
a.txt_link {
  color: var(--light-blue, #008EA8);
}
a.link-new:after {
  width: 16px;
  height: 16px;
  background-image: url(../../common/img/icon-opennew.svg);
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  vertical-align: middle;
  filter: brightness(2) saturate(0%);
  margin-left: 4px;
}

@media (min-width: 541px) {
  a:hover {
    opacity: 0.75;
  }
}

.f-jp {
  font-family: "Noto Sans JP", sans-serif;
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.f-en {
  font-family: "Inter", sans-serif;
}

.btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.btn-br {
  background: #575050;
  color: #fff;
}
.btn-gr {
  background: var(--Green, #3B9521);
  color: #fff;
}
.btn-bk {
  background-color: #333;
  color: #fff;
}
.btn-sm {
  font-size: 14px;
  height: 40px;
  padding: 0 20px;
}
.btn-md {
  font-size: 18px;
  height: 56px;
  padding: 0 24px;
}
@media (max-width: 540px) {
  .btn-md {
    font-size: 16px;
    height: 48px;
  }
}
.btn-lg {
  height: 64px;
  font-size: 22px;
  padding: 0 64px;
}
@media (max-width: 540px) {
  .btn-lg {
    padding: 0 32px;
  }
}
.btn-contact {
  color: #fff;
  text-align: center;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  height: 80px;
  width: 400px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 2px;
  background: var(--linear-red, linear-gradient(94deg, #BB1D1D 18.67%, #A30D0D 97.51%));
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.4);
  transition-property: all;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
@media (max-width: 540px) {
  .btn-contact {
    width: 100%;
    font-size: 16px;
    height: 64px;
  }
}
.btn-contact:hover {
  opacity: 1;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.4);
  transform: translateY(2px);
}
.btn-contact:before, .btn-contact:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: brightness(10);
}
.btn-contact:before {
  width: 32px;
  height: 32px;
  background-image: url(../../common/img/icon-mail.svg);
}
.btn-contact:after {
  width: 20px;
  height: 20px;
  background-image: url(../../common/img/icon-opennew.svg);
  opacity: 0.5;
}
.btn-contact-head {
  color: #fff;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  height: 100%;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: var(--linear-red, linear-gradient(94deg, #BB1D1D 18.67%, #A30D0D 97.51%));
  padding: 0 32px;
  transition-property: all;
  transition-duration: 400ms;
  transition-timing-function: ease;
  position: relative;
}
.btn-contact-head:after {
  width: 16px;
  height: 16px;
  background-image: url(../../common/img/icon-opennew.svg);
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: brightness(10);
  position: absolute;
  top: 8px;
  right: 8px;
  opacity: 0.5;
}
@media (min-width: 1280px) {
  .btn-contact-head br {
    display: none;
  }
}
@media (max-width: 540px) {
  .btn-contact-head {
    flex: 1;
  }
}

@media (min-width: 541px) {
  .is-mb {
    display: none;
  }
}
@media (max-width: 540px) {
  .is-pc {
    display: none;
  }
}
@media (max-width: 1220px) {
  .is-pc-lg {
    display: none;
  }
}
h1, h2, h3 {
  font-weight: 700;
}

.anker {
  margin-top: -68px;
  padding-top: 68px;
}

article {
  overflow: hidden;
  padding-top: 68px;
}
@media (min-width: 541px) {
  article {
    min-width: 1080px;
  }
}
@media (max-width: 540px) {
  article {
    padding-top: 92px;
  }
}

section {
  padding: 80px 0 80px;
}
@media (max-width: 540px) {
  section {
    padding-top: 48px;
  }
}
section .inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.sec-heading {
  margin: 0;
  color: var(--blue, #164287);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.25;
}
@media (max-width: 540px) {
  .sec-heading {
    font-size: 40px;
  }
}
.sec-heading-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
@media (max-width: 540px) {
  .sec-heading-wrap {
    margin-bottom: 24px;
  }
}
.sec-heading-sub {
  color: var(--gray-4, #39414F);
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.44px;
}
@media (max-width: 540px) {
  .sec-heading-sub {
    font-size: 14px;
  }
}
.sec-heading.md {
  font-size: 48px;
}
@media (max-width: 540px) {
  .sec-heading.md {
    font-size: 32px;
  }
}
.sec-heading.sm {
  font-size: 32px;
}
@media (max-width: 540px) {
  .sec-heading.sm {
    font-size: 24px;
  }
}

header {
  padding: 0 0 0 24px;
  align-items: center;
  justify-content: space-between;
  display: flex;
  height: 68px;
  width: 100%;
  position: fixed;
  z-index: 20;
  background-color: #fff;
  transition-property: box-shadow;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
@media (min-width: 541px) {
  header {
    min-width: 1080px;
  }
}
@media (max-width: 540px) {
  header {
    height: 92px;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
header.fix {
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1);
}
header .left {
  align-items: flex-end;
  display: flex;
}
header .left > div {
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(31, 37, 47, 0.16);
}
@media (max-width: 1279px) {
  header .left > div {
    padding-right: 16px;
    margin-right: 16px;
  }
}
@media (max-width: 540px) {
  header .left > div {
    padding-right: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 540px) {
  header .left {
    padding: 8px 0 0 8px;
  }
  header .left .logo-nse {
    width: 180px;
  }
  header .left .logo-stanrock {
    width: 130px;
  }
}
header .right {
  align-self: stretch;
  display: flex;
}
@media (max-width: 540px) {
  header .right {
    flex: 1;
    border-top: 1px solid rgba(31, 37, 47, 0.16);
  }
}
header .right .link-btn {
  display: flex;
  align-self: stretch;
  align-items: center;
  padding: 0 32px;
  text-decoration: none;
  font-weight: 700;
}
header .right .link-btn.has-border {
  border-left: 1px solid rgba(31, 37, 47, 0.16);
}
@media (max-width: 1279px) {
  header .right .link-btn {
    padding: 0 24px;
  }
}
@media (max-width: 540px) {
  header .right .link-btn {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 540px) {
  header .right .link-btn.ns {
    display: none;
  }
}
@media (max-width: 1279px) {
  header .right .logo-ns {
    width: 120px;
  }
}

.main {
  background: var(--linear, linear-gradient(134deg, #315389 26.62%, #0E2851 100%));
  height: 560px;
  position: relative;
  padding: 0;
  overflow: hidden;
}
@media (max-width: 540px) {
  .main {
    height: 420px;
  }
}
.main .inner {
  height: 100%;
  position: relative;
  padding-top: 106px;
}
@media (max-width: 1200px) {
  .main .inner {
    padding-top: 96px;
    padding-left: 48px;
  }
}
@media (max-width: 540px) {
  .main .inner {
    display: block;
    padding: 48px 28px 0;
  }
}
.main-title {
  position: relative;
  z-index: 10;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (max-width: 540px) {
  .main-title {
    gap: 32px;
  }
}
.main-title h1 {
  margin: 0;
}
@media (max-width: 540px) {
  .main-title h1 {
    width: 250px;
  }
}
.main-btn {
  text-decoration: none;
  border-radius: 3px;
  background: var(--white, #FFF);
  width: 320px;
  height: 72px;
  align-items: center;
  display: flex;
  padding-left: 68px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  color: var(--blue, #164287);
  background-image: url(../img/main-icon-play.svg);
  background-repeat: no-repeat;
  background-position: left 16px center;
  position: relative;
}
@media (max-width: 540px) {
  .main-btn {
    transform: scale(0.9);
    transform-origin: left top;
  }
}
.main-btn .txt-lg {
  font-size: 18px;
  font-weight: 800;
}
.main-btn:after {
  width: 16px;
  height: 16px;
  background-image: url(../../common/img/icon-opennew.svg);
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: brightness(2) saturate(0%);
  position: absolute;
  top: 8px;
  right: 8px;
}
.main-right {
  width: 1007px;
  height: 100%;
  background-image: url(../img/main-img02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left bottom;
  display: flex;
  align-items: flex-end;
  position: absolute;
  right: -90px;
  bottom: 0;
  z-index: 6;
}
@media (max-width: 540px) {
  .main-right {
    width: 500px;
  }
}
.main:before {
  background-color: rgba(22, 44, 78, 0.75);
  content: "";
  display: block;
  position: absolute;
  width: calc(50% + 98px);
  height: 100%;
  clip-path: polygon(0 0, 100% 0, calc(100% - 196px) 100%, 0% 100%);
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 540px) {
  .main:before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, calc(100% - 180px) 100%, 0% 100%);
  }
}
.main:after {
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 184px;
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0% 100%);
  bottom: 0;
  right: 0;
  z-index: 0;
}
@media (max-width: 540px) {
  .main:after {
    height: 150px;
  }
}

.about {
  position: relative;
}
.about:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 394px);
  bottom: 0;
  left: 0;
  background: #F0F4FA;
  z-index: -1;
}
@media (max-width: 540px) {
  .about:after {
    height: calc(100% - 256px);
  }
}
.about .inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 540px) {
  .about .inner {
    gap: 16px;
  }
}
.about-primary {
  align-items: center;
  justify-content: space-between;
  display: flex;
  margin-bottom: 48px;
  gap: 24px;
}
@media (max-width: 540px) {
  .about-primary {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (min-width: 541px) {
  .about-primary .left {
    min-width: 390px;
  }
}
.about-primary-head {
  color: var(--black, #2A3342);
  font-size: 32px;
  font-weight: 900;
  line-height: 175%; /* 56px */
  margin-bottom: 24px;
}
@media (max-width: 540px) {
  .about-primary-head {
    font-size: 26px;
  }
}
.about-primary-head span {
  font-weight: 300;
}
.about-primary-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 175%; /* 28px */
  font-family: "Noto Sans JP", sans-serif;
}
.about-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 64px;
}
@media (min-width: 541px) {
  .about-secondary .item1 {
    grid-area: 1/1/2/3;
  }
}
@media (max-width: 540px) {
  .about-secondary {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.about-secondary .head {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 540px) {
  .about-secondary .head {
    margin-bottom: 8px;
  }
}
.about-secondary .head > div {
  color: var(--blue, #164287);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
}
@media (max-width: 540px) {
  .about-secondary .head > div {
    font-size: 16px;
  }
}
.about-secondary .head > div span {
  font-size: 28px;
}
.about-secondary .head > span {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--white, #FFF);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  background: var(--blue, #164287);
  display: inline-block;
  padding: 0px 4px;
  min-width: 228px;
}
@media (max-width: 540px) {
  .about-secondary .head > span {
    font-size: 18px;
    min-width: 188px;
  }
}
.about-secondary-row {
  align-items: center;
  display: flex;
  gap: 24px;
}
@media (max-width: 540px) {
  .about-secondary-row {
    flex-direction: column;
    gap: 16px;
  }
  .about-secondary-row-symbol {
    transform: rotate(90deg);
  }
}
.about-secondary-row .item {
  flex: 1 0 0;
  align-self: stretch;
  display: flex;
  padding: 40px 80px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--white, #FFF);
  box-shadow: 0px 2px 32px 0px rgba(0, 0, 0, 0.08);
}
@media (max-width: 540px) {
  .about-secondary-row .item {
    padding: 24px 32px;
  }
}
.about-secondary-row .item-head {
  color: var(--gray-4, #39414F);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}
.about-secondary-row .item .value {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
  color: var(--black, #2A3342);
  font-size: 20px;
  font-weight: 700;
  line-height: 100%; /* 20px */
}
.about-secondary-row .item .value span {
  color: var(--light-blue, #008EA8);
  display: block;
}
.about-secondary-row .item .value span.large {
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 800;
}
.about-secondary-row .item .value span.medium {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 800;
}
.about-secondary-row .item p {
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
}
.about-secondary-row .item:last-child {
  background: var(--light-blue, #008EA8);
  color: #fff;
}
.about-secondary-row .item:last-child .item-head, .about-secondary-row .item:last-child .value, .about-secondary-row .item:last-child .value span, .about-secondary-row .item:last-child p {
  color: #fff;
}
.about-secondary-row .item-inner {
  display: flex;
  padding-bottom: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex: 1 0 0;
}
.about-secondary-heading {
  color: var(--gray-4, #39414F);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 24px;
}
@media (max-width: 540px) {
  .about-secondary-heading {
    margin-bottom: 8px;
    font-size: 22px;
  }
}
.about-secondary-txt {
  color: var(--black, #2A3342);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.system {
  position: relative;
}
.system:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 630px);
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #416BAC 0%, #164287 100%);
  z-index: -1;
}
@media (max-width: 540px) {
  .system:after {
    height: calc(100% - 534px);
  }
}
.system-main {
  margin-bottom: 64px;
}
@media (max-width: 540px) {
  .system-main {
    margin-bottom: 24px;
  }
}
.system-main .left {
  display: inline-flex;
  padding: 0px 24px 16px 0px;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  width: 356px;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 540px) {
  .system-main .left {
    position: initial;
    width: auto;
    padding-right: 0;
  }
}
@media (max-width: 540px) {
  .system-main-img {
    width: 140%;
    max-width: none;
    margin-left: -28%;
  }
}
.system-main-txt {
  color: #1F252F;
  font-size: 18px;
  font-weight: 700;
  line-height: 175%; /* 31.5px */
}
@media (max-width: 540px) {
  .system-main-txt {
    font-size: 16px;
  }
}
.system-row {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  .system-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    padding: 0 20px;
  }
}
.system-row .item {
  background: #fff;
  max-width: 283px;
  flex: 1 0 0;
}
@media (max-width: 540px) {
  .system-row .item {
    max-width: none;
    flex: auto;
  }
}
.system-row .item-inner {
  padding: 16px 24px 24px 24px;
}
.system-row .item .tag {
  display: flex;
  color: #FFF;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1.44px;
  background: #008EA8;
  width: 180px;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 16px;
  margin-top: -13px;
  position: relative;
  z-index: 2;
}
.system-row .item .head1 {
  color: #39414F;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.system-row .item .txt {
  color: #546176;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.system-secondary {
  color: #fff;
  text-align: center;
}
.system-secondary-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}
@media (max-width: 540px) {
  .system-secondary-heading {
    font-size: 22px;
  }
}
.system-secondary-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 540px) {
  .system-secondary-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
}
.system-secondary-row .item {
  display: flex;
  height: 180px;
  padding: 8px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 540px) {
  .system-secondary-row .item {
    font-size: 14px;
    height: 128px;
    gap: 8px;
  }
  .system-secondary-row .item img {
    width: 48px;
  }
}

.additional {
  padding: 64px 0;
}
@media (max-width: 540px) {
  .additional {
    padding: 48px 0;
  }
}
.additional-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  .additional-row {
    flex-direction: column;
    gap: 16px;
  }
}
.additional-row .left h3 {
  color: var(--blue, #164287);
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  border-left: 4px solid var(--blue, #164287);
  padding-left: 16px;
  margin: 0 0 24px;
}
@media (max-width: 540px) {
  .additional-row .left h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.additional-row .left p {
  color: #39414F;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 175%; /* 28px */
}
@media (min-width: 541px) {
  .additional-row .right {
    min-width: 728px;
  }
}
.additional-btn {
  color: var(--blue, #164287);
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  padding: 0 16px 0 24px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 64px;
  border: 1px solid var(--blue, #164287);
  text-decoration: none;
}
.additional-btn div {
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 4px;
}
.additional-hide {
  display: none;
}
.additional-hide .container {
  gap: 30px;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 4.3fr 5.7fr;
  gap: 24px 48px;
}
@media (min-width: 541px) {
  .additional-hide .container .div1 {
    grid-area: 1/1/3/2;
  }
}
@media (max-width: 540px) {
  .additional-hide .container {
    grid-template-columns: 1fr;
  }
}
.additional-hide .container .table-wrapper {
  flex: 1 1 300px;
  min-width: 280px;
}
.additional-hide .container .table-wrapper h4 {
  color: var(--blue, #164287);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.additional-hide .container .table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}
@media (max-width: 540px) {
  .additional-hide .container .table-wrapper table {
    font-size: 12px;
  }
}
.additional-hide .container .table-wrapper table th,
.additional-hide .container .table-wrapper table td {
  border: 1px solid #dadfe8;
  padding: 8px 10px;
  vertical-align: top;
}
.additional-hide .container .table-wrapper table th {
  background: #f1f4fb;
  font-weight: bold;
  text-align: left;
  color: var(--gray-4, #39414F);
  width: 160px;
}
@media (min-width: 541px) {
  .additional-hide .container .table-wrapper table th {
    white-space: nowrap;
  }
}
@media (max-width: 540px) {
  .additional-hide .container .table-wrapper table th {
    width: 100px;
  }
}
.additional-hide .container .table-wrapper table td {
  color: var(--black, #2A3342);
}
.additional-hide .container .table-wrapper table thead th {
  background: var(--gray-5, #546176);
  color: #fff;
  white-space: nowrap;
}

.sec-location {
  background: #F0F4FA;
  padding: 64px 0;
}
@media (max-width: 540px) {
  .sec-location {
    padding: 48px 0;
  }
}
.sec-location-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 540px) {
  .sec-location-row {
    flex-direction: column;
    gap: 24px;
  }
}
.sec-location-row .left {
  border-left: 4px solid var(--light-blue, #008EA8);
  padding-left: 16px;
  color: var(--light-blue, #008EA8);
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 175%; /* 42px */
  letter-spacing: 0.04em;
  margin-right: -80px;
}
@media (max-width: 540px) {
  .sec-location-row .left {
    font-size: 18px;
    line-height: 1.5;
  }
}

.case-head {
  align-items: center;
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
}
@media (max-width: 540px) {
  .case-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
  }
}
.case-head .sec-heading-wrap {
  margin: 0;
}
@media (min-width: 541px) {
  .case-head .sec-heading-wrap {
    padding-right: 48px;
    border-right: 1px solid rgba(31, 37, 47, 0.3);
  }
}
.case-head p {
  font-weight: 500;
}
.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 540px) {
  .case-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.case-list .item {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.case-list .item img {
  transition-property: all;
  transition-duration: 600ms;
  transition-timing-function: ease;
}
.case-list .item .data {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  color: #fff;
  gap: 2px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(1.1);
  transition-property: all;
  transition-duration: 400ms;
  transition-timing-function: ease;
}
.case-list .item .data .location {
  font-size: 14px;
  margin-bottom: 8px;
}
.case-list .item .data .area {
  font-size: 18px;
}
.case-list .item.has-in:hover img {
  opacity: 0;
  transform: scale(1.1);
}
.case-list .item:hover .data {
  opacity: 1;
  transform: scale(1);
}

.news {
  background: #F0F4FA;
}
@media (max-width: 540px) {
  .news {
    padding: 40px 0;
  }
}
.news-block {
  align-items: flex-start;
  display: flex;
  gap: 48px;
}
@media (max-width: 540px) {
  .news-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.news-block .sec-heading-wrap {
  margin: 0;
}
@media (min-width: 541px) {
  .news-block .sec-heading-wrap {
    padding-right: 48px;
    border-right: 1px solid rgba(31, 37, 47, 0.3);
  }
}
.news-list {
  flex: 1 0 0;
  display: grid;
  grid-template-columns: 102px 1fr;
  gap: 16px 24px;
  margin: 0;
}
@media (max-width: 540px) {
  .news-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.news-list dt {
  color: var(--light-blue, #008EA8);
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.news-list dd {
  padding: 0;
  margin: 0;
}
@media (max-width: 540px) {
  .news-list dd {
    margin-bottom: 12px;
  }
  .news-list dd:last-child {
    margin-bottom: 0px;
  }
}
.news-list dd a {
  text-decoration: none;
}
.news-list dd a:hover {
  text-decoration: underline;
}

.contact {
  background: linear-gradient(93deg, #315389 42.19%, #0E2851 100%);
  color: #fff;
  position: relative;
  padding: 40px 0;
}
.contact .sec-heading-wrap {
  margin-bottom: 0;
  gap: 4px;
}
.contact .sec-heading {
  color: #fff;
}
.contact .sec-heading-sub {
  color: rgba(240, 244, 250, 0.8);
  font-weight: 700;
}
.contact-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 160px;
  position: relative;
  z-index: 2;
}
@media (max-width: 540px) {
  .contact-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.contact-block-right p {
  font-weight: 500;
  margin: 0 0 24px;
}
.contact:before {
  background-color: rgba(22, 44, 78, 0.75);
  content: "";
  display: block;
  position: absolute;
  width: calc(50% - 94px);
  height: 100%;
  clip-path: polygon(0 0, 100% 0, calc(100% - 85px) 100%, 0% 100%);
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 540px) {
  .contact:before {
    width: calc(50% + 100px);
    clip-path: polygon(0 0, 100% 0, calc(100% - 85px) 100%, 0% 100%);
  }
}

footer {
  padding: 40px 20px;
}
footer .link {
  margin-bottom: 64px;
  display: flex;
  gap: 140px;
  justify-content: center;
  font-size: 14px;
}
@media (max-width: 540px) {
  footer .link {
    gap: 48px;
    flex-direction: column;
  }
}
footer .link .item {
  align-items: flex-start;
  display: flex;
  gap: 40px;
}
@media (max-width: 540px) {
  footer .link .item {
    flex-direction: column;
    gap: 24px;
  }
}
footer .link .item ul {
  list-style: none;
  padding: 0 0 0 40px;
  margin: 0;
  border-left: 1px solid rgba(31, 37, 47, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 540px) {
  footer .link .item ul {
    padding-left: 24px;
  }
}
footer .copyright {
  color: var(--gray-5, #546176);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
}
