@charset "UTF-8";
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, time, a, abbr, acronym, address, em, strong, b, u, i, dl, dt, dd, ol, ul, li, img, form, fieldset, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, header, footer, nav, section, article, figure, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

header, footer, nav, section, article, figure, figcaption {
  display: block;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: #4a4a4a;
  background: #fff;
  font-weight: 400;
}

body, input, button {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, Meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", -apple-system, BlinkMacSystemFont, Verdana, Arial, Helvetica, sans-serif;
}

/* * {
    min-height: 0vw;
    min-height: 0;
}
*/
:root {
  --side-padding-max: calc((100vw - 1288px) / 2);
}

body.index [class^=str-outer] {
  z-index: 100;
}

@media print {
  body {
    zoom: 90%;
    -webkit-print-color-adjust: exact;
  }
}
body {
  overflow: hidden;
}

#mbk-wrapper {
  font-size: 1.6rem;
}
#mbk-wrapper a {
  color: #2c69ff;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
  opacity: 1;
}
#mbk-wrapper a:hover {
  transition: 0.3s;
}
#mbk-wrapper a:active {
  color: #2c69ff;
}
#mbk-wrapper a[target=_blank] {
  padding-left: 0;
}
#mbk-wrapper li {
  list-style-type: none;
}
#mbk-wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*---------- break point ----------*/
/*---------- フッターの空き調整 ----------*/
.site-main {
  margin: 0 0 1px 0;
}

.site-footer,
.site-footer-02 {
  margin: 0;
}

/*---------- fancyboxの設定 ----------*/
.fancybox-active .fancybox-bg {
  width: 100%;
  height: 100vh;
}

#fancybox-wrap #fancybox-close {
  font-size: 1.6rem;
}

/*---------- link ----------*/
/*---------- 幅 ----------*/
#mbk-wrapper .mbk-contents {
  box-sizing: border-box;
  max-width: 1320px;
  margin: 0 auto;
  padding: 150px 40px;
  /* @include mqsp(sm) {
      padding: 40px 20px;
  } */
}
@media screen and (max-width: 768px) {
  #mbk-wrapper .mbk-contents {
    padding: 70px 30px;
    width: 100%;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

/*---------- ボタン ----------*/
.button-white {
  text-align: center;
}
.button-white a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 400px;
  min-height: 64px;
  padding: 0;
  color: #0f1ed2 !important;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  background: #fff;
  border: solid 2px #0f1ed2;
  border-radius: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .button-white a {
    min-width: 280px;
    min-height: 54px;
  }
}
.button-white a span {
  position: relative;
  padding-right: 1em;
}
.button-white a span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  border-top: 2px solid #0f1ed2;
  border-right: 2px solid #0f1ed2;
  transform: rotate(45deg);
}
@media screen and (max-width: 576px) {
  .button-white a span::after {
    width: 10px;
    height: 10px;
  }
}
.button-white a:hover {
  border: solid 2px #fff;
  color: #fff !important;
}
.button-white a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.button-white a:hover span::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.button-white a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #0f1ed2;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

/* スクロールダウンの位置 */
.scroll {
  position: fixed;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .scroll {
    bottom: 60px;
  }
}

/* 矢印のアニメーション部分 */
.scroll::before {
  animation: scroll 3s infinite;
  border-bottom: 3px solid #ccc;
  border-left: 3px solid #ccc;
  content: "";
  height: 30px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
}
@media screen and (max-width: 768px) {
  .scroll::before {
    border-bottom: 2px solid #ccc;
    border-left: 2px solid #ccc;
    height: 20px;
    width: 20px;
  }
}

/* 矢印のアニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}
/* #section06までスクロールしたら消す */
.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/* 共通設定 */
.section-wrapper {
  position: relative;
}
.section-wrapper .bg-image-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0); /* 切り抜き */
  z-index: -2;
}
.section-wrapper .bg-image-clip .bg-image-fixed {
  position: fixed; /* 背景を固定 */
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

/* メインビジュアル */
#section01 {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: end;
  align-items: center;
  /* ニュース */
}
@media screen and (max-width: 768px) {
  #section01 {
    height: 95vh;
    justify-content: initial;
    align-items: initial;
  }
  #section01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(0deg, #0f1ed2, #0f1ed2 30%, transparent 55%);
  }
}
#section01 .bg-image-fixed {
  background-image: url(../img/mv_pc.jpg);
  position: static;
  background-position: 20% 0;
  /* @include mqsp(sm) {
  	background-image: url(../img/mv_sp.jpg);
  	background-position: 50% 100%;
  } */
}
@media screen and (max-width: 1025px), print {
  #section01 .bg-image-fixed {
    background-position: 30% 0;
  }
}
@media screen and (max-width: 768px) {
  #section01 .bg-image-fixed {
    background-image: url(../img/mv_sp.jpg);
    background-position: 50% 0;
  }
}
#section01 .title {
  margin-right: 10%;
  margin-top: 170px;
  /* @include mqsp(md) {
  	margin-right: 10px;
  } */
}
@media screen and (max-width: 1400px) {
  #section01 .title {
    margin-right: 5%;
  }
}
@media screen and (max-width: 1025px), print {
  #section01 .title {
    margin-top: 0;
    margin-right: 5%;
  }
}
@media screen and (max-width: 768px) {
  #section01 .title {
    margin-right: initial;
    position: absolute;
    bottom: 110px;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 420px) {
  #section01 .title {
    bottom: 90px;
  }
}
@media screen and (max-width: 380px) {
  #section01 .title {
    bottom: 70px;
  }
}
#section01 .title h1 {
  margin-bottom: 3em;
  line-height: 1.2;
  text-shadow: 0px 0px 7px rgb(0, 0, 0);
}
@media screen and (max-width: 1025px), print {
  #section01 .title h1 {
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  #section01 .title h1 {
    margin-bottom: 1em;
    line-height: 0.9;
    text-shadow: 0px 0px 7px rgb(15, 30, 210);
  }
}
#section01 .title h1 strong {
  display: block;
  font-size: clamp(4rem, 5.5vw, 9rem);
  margin-left: -0.5em;
  color: #fff;
}
#section01 .title h1 span {
  display: block;
  font-size: clamp(2rem, 3.5vw, 5.5rem);
  color: #fff;
}
@media screen and (max-width: 768px) {
  #section01 .title h1 {
    text-align: center;
  }
}
#section01 .title p {
  font-size: clamp(1.4rem, 2vw, 3rem);
  color: #fff;
  margin-bottom: 2em;
  text-shadow: 0px 0px 7px rgb(0, 0, 0);
}
@media screen and (max-width: 768px) {
  #section01 .title p {
    text-align: center;
    text-shadow: 0px 0px 7px rgb(15, 30, 210);
    margin-bottom: 1em;
  }
  #section01 .title p .pc-none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #section01 .title .button {
    text-align: center;
  }
}
#section01 .title .button a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px 10px 5px;
  color: #0f1ed2 !important;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 1025px), print {
  #section01 .title .button a {
    border-radius: 3px;
    padding: 5px 15px 5px 5px;
  }
}
#section01 .title .button a span {
  position: relative;
  padding-left: 75px;
  padding-right: 10px;
}
@media screen and (max-width: 1025px), print {
  #section01 .title .button a span {
    padding-left: 45px;
  }
}
#section01 .title .button a span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  vertical-align: middle;
  width: 70px;
  height: auto;
  background: url(../img/youtube.svg) 50% 50% no-repeat;
}
@media screen and (max-width: 1025px), print {
  #section01 .title .button a span::before {
    width: 40px;
  }
}
#section01 .title .button a span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  border-top: 1px solid #0f1ed2;
  border-right: 1px solid #0f1ed2;
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  #section01 .title .button a span::after {
    width: 8px;
    height: 8px;
  }
}
#section01 .title .button a:hover {
  color: #fff !important;
}
#section01 .title .button a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
#section01 .title .button a:hover span::before {
  background: url(../img/youtube_white.svg) 50% 50% no-repeat;
}
#section01 .title .button a:hover span::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
#section01 .title .button a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #0f1ed2;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
#section01 .news-area {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 1025px), print {
  #section01 .news-area {
    border-top: solid 1px #d9dfe9;
  }
}
#section01 .news-area dt {
  background-color: #0f1ed2;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 2.5em;
  white-space: nowrap;
}
@media screen and (max-width: 1025px), print {
  #section01 .news-area dt {
    padding: 0.5em 1em;
  }
}
#section01 .news-area dd {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5em 1em;
}
#section01 .news-area dd ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1025px), print {
  #section01 .news-area dd ul {
    display: block;
  }
}
#section01 .news-area dd ul li {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.2;
}
#section01 .news-area dd ul li:first-child {
  border-right: solid 1px #565a65;
  margin-right: 1em;
  padding-right: 1em;
}
@media screen and (max-width: 1025px), print {
  #section01 .news-area dd ul li:first-child {
    border: none;
    width: 100%;
  }
}
#section01 .news-area dd ul li a {
  color: #282d3c;
}
#section01 .news-area dd ul li a:hover {
  color: #0f1ed2;
  text-decoration: underline;
}
#section01 .news-area dd ul li span {
  color: #0f1ed2;
  padding-right: 0.3em;
  font-weight: 700;
}

/* NECの役割 */
#section02 .mbk-contents {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#section02 .mbk-contents h2 {
  font-size: clamp(5rem, 7vw, 10rem);
  font-weight: 700;
  text-align: center;
  color: #0f1ed2;
}

/* 背景宇宙 */
#section03 .bg-image-fixed {
  background-image: url(../img/section03_pc.jpg);
  background-position: 70% 50%;
}
@media screen and (max-width: 768px) {
  #section03 .bg-image-fixed {
    background-image: url(../img/section03_sp.jpg);
    background-position: 80% 50%;
  }
}
#section03 .mbk-contents {
  padding-top: 300px;
  padding-bottom: 300px;
  /* ３つのリンク */
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
#section03 .mbk-contents h3 {
  font-size: clamp(2rem, 3.5vw, 5rem);
  text-align: center;
  color: #fff;
  margin-bottom: 120px;
  text-shadow: 0px 0px 7px rgb(0, 0, 0);
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents h3 {
    margin-bottom: 50px;
  }
}
#section03 .mbk-contents #section03-01 {
  margin-bottom: 250px;
  /* 宇宙ソリューション */
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-01 {
    margin-bottom: 150px;
  }
}
#section03 .mbk-contents #section03-01 .solution {
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-01 .solution {
    border-radius: 20px;
  }
}
#section03 .mbk-contents #section03-01 .solution ul {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-01 .solution ul {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
#section03 .mbk-contents #section03-01 .solution ul li:first-child {
  width: 50%;
  padding: 80px 0 80px 80px;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  #section03 .mbk-contents #section03-01 .solution ul li:first-child {
    padding: 60px 0 60px 60px;
  }
}
@media screen and (max-width: 1025px), print {
  #section03 .mbk-contents #section03-01 .solution ul li:first-child {
    padding: 40px 0 40px 40px;
  }
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-01 .solution ul li:first-child {
    padding: 25px;
    width: 100%;
  }
}
#section03 .mbk-contents #section03-01 .solution ul li:first-child .copy {
  width: 100%;
  font-size: clamp(2rem, 2.5vw, 3rem);
  color: #0f1ed2;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-01 .solution ul li:first-child .copy {
    text-align: center;
  }
}
#section03 .mbk-contents #section03-01 .solution ul li:first-child .button-white {
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-01 .solution ul li:first-child .button-white {
    text-align: center;
  }
}
#section03 .mbk-contents #section03-01 .solution ul li:first-child .button-white a {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  min-width: 70%;
  min-height: 40px;
}
@media screen and (max-width: 1025px), print {
  #section03 .mbk-contents #section03-01 .solution ul li:first-child .button-white a {
    min-width: 90%;
    min-height: 35px;
  }
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-01 .solution ul li:first-child .button-white a {
    min-width: 70%;
  }
}
@media screen and (max-width: 576px) {
  #section03 .mbk-contents #section03-01 .solution ul li:first-child .button-white a {
    min-width: 100%;
  }
}
#section03 .mbk-contents #section03-01 .solution ul li:first-child .button-white a span::after {
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 576px) {
  #section03 .mbk-contents #section03-01 .solution ul li:first-child .button-white a span::after {
    width: 8px;
    height: 8px;
  }
}
#section03 .mbk-contents #section03-01 .solution ul li:last-child {
  aspect-ratio: 5/3.1;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 1025px), print {
  #section03 .mbk-contents #section03-01 .solution ul li:last-child {
    aspect-ratio: 5/3.5;
  }
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-01 .solution ul li:last-child {
    aspect-ratio: 5/3;
    width: 100%;
  }
}
#section03 .mbk-contents #section03-01 .solution ul li:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}
#section03 .mbk-contents #section03-02 {
  margin-top: -100px;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-02 {
    margin-top: -50px;
    padding-top: 50px;
  }
}
#section03 .mbk-contents #section03-02 h3 {
  margin-bottom: 10px;
}
#section03 .mbk-contents #section03-02 .h3-copy {
  font-size: clamp(1.8rem, 2.5vw, 3.6rem);
  color: #fff;
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-02 .h3-copy {
    margin-bottom: 50px;
  }
}
#section03 .mbk-contents #section03-02 .box-link ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-02 .box-link ul {
    display: block;
  }
}
#section03 .mbk-contents #section03-02 .box-link ul li {
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-02 .box-link ul li {
    width: 100%;
    border-radius: 20px;
  }
  #section03 .mbk-contents #section03-02 .box-link ul li:nth-child(2) {
    margin: 20px 0;
  }
}
#section03 .mbk-contents #section03-02 .box-link ul li:first-child {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-02 .box-link ul li:first-child {
    width: 100%;
  }
}
#section03 .mbk-contents #section03-02 .box-link ul li:nth-child(2) {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-02 .box-link ul li:nth-child(2) {
    width: 100%;
  }
}
#section03 .mbk-contents #section03-02 .box-link ul li:last-child {
  width: 100%;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-02 .box-link ul li:last-child {
    margin-top: initial;
  }
}
#section03 .mbk-contents #section03-02 .box-link ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 35px;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-02 .box-link ul li a {
    padding: 20px;
  }
}
#section03 .mbk-contents #section03-02 .box-link ul li a p.copy {
  font-size: clamp(2.2rem, 2vw, 3rem);
  line-height: 1.8;
  color: #282d3c;
}
@media screen and (max-width: 768px) {
  #section03 .mbk-contents #section03-02 .box-link ul li a p.copy {
    line-height: 1.4;
  }
}
#section03 .mbk-contents #section03-02 .box-link ul li a p.link {
  position: relative;
  display: inline-block;
  margin-top: 1em;
  font-size: clamp(1.8rem, 1.8vw, 2rem);
  color: #0f1ed2;
}
#section03 .mbk-contents #section03-02 .box-link ul li a p.link span {
  position: #0f1ed2;
  padding-right: 0.75em;
}
#section03 .mbk-contents #section03-02 .box-link ul li a p.link span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  border-top: 2px solid #0f1ed2;
  border-right: 2px solid #0f1ed2;
  transform: rotate(45deg);
}
@media screen and (max-width: 576px) {
  #section03 .mbk-contents #section03-02 .box-link ul li a p.link span::after {
    width: 10px;
    height: 10px;
    border-top: 1px solid #0f1ed2;
    border-right: 1px solid #0f1ed2;
  }
}
#section03 .mbk-contents #section03-02 .box-link ul li a p.description01 {
  font-size: clamp(1.6rem, 1.8vw, 2.8rem);
  color: #282d3c;
  margin-top: 0.5em;
}
#section03 .mbk-contents #section03-02 .box-link ul li a p.description02 {
  font-size: clamp(1.4rem, 1.8vw, 2.4rem);
  color: #282d3c;
  margin-top: 0.3em;
}
#section03 .mbk-contents #section03-02 .box-link ul li a:hover {
  background: #0f1ed2;
}
#section03 .mbk-contents #section03-02 .box-link ul li a:hover p.copy {
  color: #fff;
}
#section03 .mbk-contents #section03-02 .box-link ul li a:hover p.link {
  color: #fff;
}
#section03 .mbk-contents #section03-02 .box-link ul li a:hover p.link span::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
#section03 .mbk-contents #section03-02 .box-link ul li a:hover p.description01 {
  color: #fff;
}
#section03 .mbk-contents #section03-02 .box-link ul li a:hover p.description02 {
  color: #fff;
}

/* 「みちびき」を支え続けるひとたち */
#section04 .mbk-contents {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#section04 .mbk-contents h2 {
  font-size: clamp(4rem, 5vw, 7.5rem);
  font-weight: 700;
  text-align: center;
  color: #0f1ed2;
}

#section05 {
  background-image: linear-gradient(0deg, #eff2f6, #eff2f6 40%, transparent);
}
#section05 .mbk-contents #section05-01 h3 {
  font-size: clamp(2rem, 3vw, 4.2rem);
  text-align: center;
  color: #0f1ed2;
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  #section05 .mbk-contents #section05-01 h3 {
    margin-bottom: 40px;
  }
}
#section05 .mbk-contents #section05-01 .specialist {
  display: flex;
  justify-content: space-between;
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #section05 .mbk-contents #section05-01 .specialist {
    width: 100%;
    display: block;
  }
}
#section05 .mbk-contents #section05-01 .specialist li {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 768px) {
  #section05 .mbk-contents #section05-01 .specialist li {
    width: 100%;
  }
  #section05 .mbk-contents #section05-01 .specialist li:first-child {
    margin-bottom: 40px;
  }
}
#section05 .mbk-contents #section05-01 .specialist li a .img {
  aspect-ratio: 700/360;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #section05 .mbk-contents #section05-01 .specialist li a .img {
    border-radius: 20px;
  }
}
#section05 .mbk-contents #section05-01 .specialist li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
  transition: 0.5s;
}
#section05 .mbk-contents #section05-01 .specialist li a p {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.4;
  color: #000;
}
#section05 .mbk-contents #section05-01 .specialist li a .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
#section05 .mbk-contents #section05-01 .specialist li a .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
  transition: 0.5s;
}
#section05 .mbk-contents #section05-01 .specialist li a:hover .img img {
  opacity: 0.7;
  transform: scale(1.03);
}
#section05 .mbk-contents #section05-01 .specialist li a:hover p {
  text-decoration: underline;
  color: #0f1ed2;
}

/* 採用情報 */
#section06 .mbk-contents {
  padding: 200px 0;
}
@media screen and (max-width: 768px) {
  #section06 .mbk-contents {
    padding: 100px 0;
  }
}
#section06 .mbk-contents h2 {
  font-size: clamp(2rem, 3vw, 4.2rem);
  text-align: center;
  color: #0f1ed2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #section06 .mbk-contents h2 {
    margin-bottom: 20px;
  }
}
#section06 .mbk-contents .button-white {
  margin-top: 0;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #section06 .mbk-contents .button-white {
    margin-bottom: 50px;
  }
}
#section06 .mbk-contents .mod-media-video {
  margin-bottom: 1.5em;
}
#section06 .mbk-contents .mod-media-video.bottom {
  margin-top: 86px;
}
#section06 .mbk-contents .mod-media-video .outer {
  max-width: 800px;
}
@media screen and (max-width: 1025px), print {
  #section06 .mbk-contents .mod-media-video .outer {
    margin: 0 20px 0 20px;
  }
}
#section06 .mbk-contents .video-txt {
  text-align: center;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

/* NECは社会価値を創造しています */
#section07 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0f1ed2;
}
#section07 .mbk-contents {
  padding: 230px 0;
}
@media screen and (max-width: 768px) {
  #section07 .mbk-contents {
    padding: 150px 0;
  }
}
#section07 .mbk-contents h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

/* html:has(.inner-nav.active) {
    overflow: hidden;
} */
/* ハンバーガーメニューボタン */
#mbk-wrapper {
  /* スマホメニューを開いてる時のボタン */
}
#mbk-wrapper .hamburger {
  background-color: #d9dfe9;
  display: block;
  position: fixed;
  z-index: 100;
  right: 30px;
  top: 130px;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  cursor: pointer;
  text-align: center;
  transition: all 0.6s;
}
@media screen and (max-width: 1025px), print {
  #mbk-wrapper .hamburger {
    top: 110px;
    right: 10px;
    width: 60px;
    height: 60px;
  }
}
#mbk-wrapper .hamburger span {
  display: block;
  position: absolute;
  width: 50px;
  height: 3px;
  left: 25px;
  background: #7d869a;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1025px), print {
  #mbk-wrapper .hamburger span {
    width: 28px;
    height: 2px;
    left: 16px;
  }
}
#mbk-wrapper .hamburger span:nth-child(1) {
  top: 35px;
}
@media screen and (max-width: 1025px), print {
  #mbk-wrapper .hamburger span:nth-child(1) {
    top: 20px;
  }
}
#mbk-wrapper .hamburger span:nth-child(2) {
  top: 50px;
}
@media screen and (max-width: 1025px), print {
  #mbk-wrapper .hamburger span:nth-child(2) {
    top: 29px;
  }
}
#mbk-wrapper .hamburger span:nth-child(3) {
  top: 65px;
}
@media screen and (max-width: 1025px), print {
  #mbk-wrapper .hamburger span:nth-child(3) {
    top: 39px;
  }
}
#mbk-wrapper .hamburger.active span:nth-child(1) {
  top: 49px;
  left: 14x;
  background: #535a6e;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 1025px), print {
  #mbk-wrapper .hamburger.active span:nth-child(1) {
    top: 30px;
  }
}
#mbk-wrapper .hamburger.active span:nth-child(2),
#mbk-wrapper .hamburger.active span:nth-child(3) {
  top: 49px;
  background: #535a6e;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1025px), print {
  #mbk-wrapper .hamburger.active span:nth-child(2),
  #mbk-wrapper .hamburger.active span:nth-child(3) {
    top: 30px;
  }
}

.inner-nav {
  display: none;
}

#mbk-wrapper .inner-nav {
  display: block;
  padding: 60px 0;
  position: fixed;
  z-index: 20;
  top: 63px;
  left: 0;
  color: #fff;
  background: #eff2f6;
  text-align: center;
  width: 100%;
  transform: translateY(-140%);
  border-bottom: 3px solid #535a6e;
  transition: all 0.3s;
}
@media screen and (max-width: 1025px), print {
  #mbk-wrapper .inner-nav {
    top: 39px;
    padding: 30px 10px;
  }
}
#mbk-wrapper .inner-nav.active {
  display: block;
  opacity: 100;
  transform: translateY(0%);
}
#mbk-wrapper .inner-nav ul {
  display: block;
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  #mbk-wrapper .inner-nav ul {
    width: 70%;
  }
}
@media screen and (max-width: 1025px), print {
  #mbk-wrapper .inner-nav ul {
    width: calc(100% - 80px);
    margin: initial;
  }
}
#mbk-wrapper .inner-nav ul li {
  transition: 0.2s all;
  border-bottom: 1px solid #dcdcdc;
}
#mbk-wrapper .inner-nav ul li:first-child {
  border-top: 1px solid #dcdcdc;
}
#mbk-wrapper .inner-nav ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f1ed2;
  position: relative;
}
@media screen and (max-width: 768px) {
  #mbk-wrapper .inner-nav ul li a {
    padding: 0 10px;
    font-size: 1.4rem;
  }
}

.overlay {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.overlay.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100vh;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */