@charset "UTF-8";
/******************
html&body
*******************/
html {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif !important;
}

a {
  color: rgb(46, 46, 46);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

html {
  padding: 0;
  width: 100% !important;
  margin: 0 !important;
  height: 100% !important;
}

html::-webkit-scrollbar {
  display: none;
}

style {
  margin: 0 !important;
}

a {
  display: block;
}

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

/******************
header
*******************/
header {
  display: flex;
  height: 50px;
  align-items: center;
}
header .logo a {
  margin-left: 50px;
}
header .logo img {
  width: 150px;
}
header nav {
  display: flex;
  margin-left: auto;
  margin-right: 50px;
}
header nav li {
  margin-left: 50px;
  list-style: none;
  font-size: 16px;
}

.menu-list {
  position: relative;
}
.menu-list a {
  cursor: pointer;
}

.hover-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  z-index: 500;
  padding-top: 16px;
  width: -moz-max-content;
  width: max-content;
  transition: opacity .22s ease, transform .22s ease;
}
.hover-menu ul {
  margin: 0;
  border: none;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 22px 56px rgba(20, 30, 70, 0.18);
  padding: 12px;
  min-width: 250px;
  position: relative;
}
/* 吹き出しの三角 */
.hover-menu ul::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 3px;
}
.hover-menu ul li {
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 11px;
  list-style: none;
}
.hover-menu ul li:hover {
  background: transparent;
}
.hover-menu ul li a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #14141a;
  border-radius: 11px;
  white-space: nowrap;
  position: relative;
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}
.hover-menu ul li a:hover {
  background: linear-gradient(90deg, rgba(58, 160, 255, 0.12), rgba(43, 212, 212, 0.12));
  padding-left: 24px;
}
.hover-menu ul li a:hover::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3aa0ff, #2bd4d4);
}
/* 先頭「サービス一覧」を強調 */
.hover-menu ul li:first-child a {
  color: #2bd4d4;
  font-weight: 800;
}
.menu-list:hover .hover-menu {
  transform: translateX(-50%) translateY(0);
}

.menu-list:hover .hover-menu {
  opacity: 1;
  pointer-events: auto;
}
.menu-list label {
  cursor: pointer;
  margin: 0;
}
.menu-list input {
  display: none;
}

#menu_bar1:checked ~ .hover-menu {
  opacity: 1 !important;
  pointer-events: auto;
}

#menu_bar2:checked ~ .hover-menu {
  opacity: 1 !important;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  border: none;
  border-radius: 50%;
  line-height: 100%;
  padding: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 50;
  border: solid 2px rgb(46, 46, 46);
}
#scrollToTopBtn img {
  padding: 15px;
}

/*********************
パンくずリスト
**********************/
.breadcrumb {
  display: flex;
  width: 90%;
  margin: 30px auto;
  margin-bottom: 0px;
  font-size: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a {
  margin-right: 5px;
  font-size: 14px;
}
.breadcrumb span {
  margin-left: 5px;
  font-size: 14px;
}

/*********************
メニュー
**********************/
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: white;
  border-radius: 5px;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #707070;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check:checked ~ .menu-btn {
  background-color: transparent;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0%; /**/
  z-index: 80;
  background-color: transparent;
}

/*
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}*/
.menu-logo {
  display: flex;
  height: 50px;
  align-items: center;
}
.menu-logo img {
  width: 150px;
  margin-left: 5%;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: white;
  transition: all 0.5s; /*アニメーション設定*/
  display: none;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}

.menu-content {
  background-color: #f1f2ee;
}
.menu-content .menu-area {
  padding-top: 30px;
  text-align: center;
  width: 100%;
}
.menu-content .menu-area li {
  display: block;
  list-style: none;
  text-align: left;
  width: auto;
  font-size: 16px;
  margin: 20px auto;
  width: 80px;
}
.menu-content .menu-area .sns {
  display: flex;
  justify-content: center;
}
.menu-content .menu-area .sns li {
  margin: 30px 20px;
}

.menu-area input {
  display: none; /*チェックボックスを隠す*/
}

.menu-area label {
  cursor: pointer;
  display: block;
  text-decoration: none;
  position: relative;
}

.menu-content .menu-area .menu-anime li {
  font-size: 15px;
  margin: 0;
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
  -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}

#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li {
  width: 200px;
  height: auto; /*開いたときに表示されるliの高さ*/
  opacity: 1;
  padding: 10px;
}

.menu-content .menu-area .menu-anime {
  height: 0;
}

#menu_bar01:checked ~ #links01,
#menu_bar02:checked ~ #links02 {
  height: auto;
}

/*開いたときの下の余白*/
#menu_bar01:checked ~ #links01 li:last-child,
#menu_bar02:checked ~ #links02 li:last-child {
  margin-bottom: 0px;
}

/*閉じた状態の矢印描画*/
.menu-area label {
  position: relative;
}

.menu-bg {
  background-image: url("../../images/head/menu-bg.webp");
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.menu-area label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #707070 2px solid;
  border-right: #707070 2px solid;
  transform: rotate(135deg);
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 15%;
  margin: auto;
}

/*開いた状態の矢印描画*/
.menu-area input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: gray3 2px solid;
  border-right: gray3 2px solid;
  transform: rotate(-45deg);
  position: absolute;
  right: -20px;
  bottom: -5px;
  margin: auto;
}

.menu-area .about-us {
  display: flex;
  flex-wrap: wrap;
}
.menu-area .about-us li {
  text-align: center;
  border-bottom: solid 1px rgb(46, 46, 46);
  width: 33.3333333333%;
  margin: 0;
  border-right: solid 1px rgb(46, 46, 46);
}
.menu-area .about-us li a {
  padding: 20px 0;
}
.menu-area .about-us li:first-child {
  border-top: solid 1px rgb(46, 46, 46);
  width: 100%;
  border-right: 0;
  padding: 20px 0;
}
.menu-area .about-us li:last-child {
  border-right: 0;
}

.menu-footer {
  width: 100%;
  background-color: #3a3a3a;
  color: white;
  text-align: center;
}
.menu-footer a,
.menu-footer p {
  color: white;
}
.menu-footer img.logo {
  width: 100px;
  margin: 0 auto;
  padding: 20px 0;
  filter: invert(100%);
}
.menu-footer nav {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: center;
  margin-right: 0px;
}
.menu-footer nav li {
  list-style: none;
  margin: 0;
  width: 50%;
  border: solid 1px #6f6f6f;
  font-size: 15px;
}
.menu-footer nav li a {
  padding: 20px 0;
}
.menu-footer nav li:nth-child(odd) {
  border-left: 0;
}
.menu-footer nav li:nth-child(even) {
  border-right: 0;
}
.menu-footer p {
  padding: 30px 0;
  font-size: 13px;
}

/*メニューPC追加*/
.menu-content {
  display: block !important;
  width: 500px;
  transition: all 0.5s;
  top: 0;
  right: -100%;
  left: auto;
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.532);
  max-width: 100%;
}

#menu-btn-check:checked ~ .menu-content {
  right: 0;
  left: auto;
}

.menu-btn {
  top: 50px;
}

/******************
footer
*******************/
.card-section {
  background-color: #f1f2ee;
  padding: 50px 30px;
  text-align: center;
  padding-top: 100px;
}
.card-section h2,
.card-section .h2-plus {
  font-size: 40px;
  margin-bottom: 60px;
  line-height: 100%;
}
.card-section .h2-plus {
  font-weight: 800;
  font-size: 30px;
}
.card-section .h3 {
  font-size: 16px;
}

.card-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.card-box .card {
  width: 370px;
  max-width: 100%;
  background-color: white;
  margin-top: 0;
  text-align: left;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 50px;
}
.card-box .card .h4 {
  font-weight: 400;
  margin: 5px 3px 0 3px;
  list-style: none;
}
.card-box .card-info {
  padding: 10px;
  padding-bottom: 80px;
  height: 200px;
}
.card-box .tag {
  display: inline-flex;
  flex-wrap: wrap;
  color: white;
  font-size: 12px;
}
.card-box .tag span {
  background-color: rgb(46, 46, 46);
  padding: 5px 10px;
  border-radius: 8px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.card-box .date {
  display: inline-block;
  font-size: 12px;
  margin-left: auto;
  margin-right: 0;
}

.see-all {
  display: flex;
  justify-content: center;
}
.see-all a {
  width: 200px;
  background-color: white;
  border-radius: 20px;
  border: solid 3px rgb(46, 46, 46);
  padding: 15px 30px;
  margin: 30px 30px;
  position: relative;
}
.see-all a span {
  display: block;
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translate(0, -50%);
}

footer {
  width: 100%;
  background-color: #3a3a3a;
  color: white;
  text-align: center;
}
footer a,
footer p {
  color: white;
}
footer .logo {
  padding-top: 35px;
}
footer .logo a {
  width: 200px;
  margin: 0px auto 70px auto;
}
footer img.logo {
  filter: invert(100%);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5%;
  justify-content: center;
}
footer nav li {
  list-style: none;
  margin: 0 30px;
  margin-bottom: 20px;
}
footer p {
  padding: 60px 0;
}

/******************
hover
*******************/
.hover {
  justify-content: center;
  text-align: center;
  align-items: center;
  /*
  .content:nth-child(1) {
      width: 100%;
      border-top: solid 2px $black;
  }*/
}
.hover .content-block {
  display: flex;
  flex-wrap: wrap;
}
.hover .content,
.hover .content0 {
  padding: 0;
  width: 33.3333333333%;
  list-style: none;
  position: relative;
  border: solid 1px #707070;
  height: 300px;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  will-change: opacity;
  transform: translate3d(0, 0, 0);
}
.hover .content h2,
.hover .content .h2,
.hover .content0 h2,
.hover .content0 .h2 {
  width: 100%;
  font-size: 25px;
  padding-bottom: 5px;
  line-height: 100%;
}
.hover .content .h2,
.hover .content0 .h2 {
  font-weight: 800 !important;
}
.hover .content span.h2,
.hover .content span.h3,
.hover .content0 span.h2,
.hover .content0 span.h3 {
  display: inline;
  position: static;
}
.hover .content .h3,
.hover .content0 .h3 {
  width: 100%;
  font-size: 13px;
  font-weight: 400;
}
.hover .content h2,
.hover .content .h2,
.hover .content .h3,
.hover .content0 h2,
.hover .content0 .h2,
.hover .content0 .h3 {
  transition: 0.5s;
  pointer-events: none;
}
.hover .content .hover-boxs,
.hover .content0 .hover-boxs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 100%;
  background-color: white;
  position: absolute;
  pointer-events: none;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hover .content-title .content0 {
  width: 100%;
  height: 200px;
}
.hover span {
  font-size: 40px;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  font-weight: 400;
}
.hover .content-img .content {
  height: 400px;
}
.hover .content-img .content:hover .hover-boxs {
  height: 320px !important;
}
.hover video {
  transition: 0.1s;
}
.hover #backgroundVideo {
  transition: 0.1s;
}
.hover #backgroundVideo2 {
  z-index: -3;
  transition: 0.1s;
}

.hover .content-title .content0 .hover-boxs {
  background-color: #f1f2ee;
}

.hover1 .content-block {
  background-color: rgba(255, 255, 255, 0.2);
}
.hover1 .content-title .content0 {
  border-top: 0;
}

.hover2 .content-block {
  background-color: rgba(255, 255, 255, 0.2);
}

.filter {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../../images/home/filter.webp");
  background-size: 300px;
  z-index: -1;
  opacity: 0.5;
}

.hover2 .content:nth-child(1) {
  border-top: solid 0.5px #707070;
}
.hover2 .content:nth-child(4),
.hover2 .content:nth-child(5),
.hover2 .content:nth-child(6) {
  border-bottom: solid 1px #707070;
}

.hover:hover {
  /*
  .content:nth-child(1) {
      width: calc(100% - 60px);
      height: calc($block-height - 60px);
      margin: 30px;
  }*/
}
.hover:hover .content {
  border: 0;
}
.hover:hover .content .hover-boxs {
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3em;
  width: calc(100% - 60px);
  height: 240px;
  border: 0;
}
.hover:hover .content .hover-boxs h2,
.hover:hover .content .hover-boxs h3 {
  opacity: 0.6;
}
.hover:hover .content:hover .hover-boxs {
  background: rgba(255, 255, 255, 0.9);
  width: calc(100% - 80px);
  height: 220px;
}
.hover:hover .content:hover .hover-boxs h2,
.hover:hover .content:hover .hover-boxs h3 {
  opacity: 1;
}
.hover:hover .content-img .content .hover-boxs {
  height: 340px;
}

.content-block {
  overflow: hidden;
  position: relative;
  /*
  .content-bg2 {
      background-repeat: no-repeat;
      z-index: -3;
      background-image: url("../../images/img/message.webp");
      background-position: 20% center;
      background-color: #0790f4;
  }*/
}
.content-block video {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-block .content-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background: white;
}
.content-block .content-bg1 {
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  background-image: url("../../images/img/message-hover.webp?v=4");
  background-position: center center;
  background-color: #bebebe;
}
.content-block .content-bg2 {
  background-repeat: no-repeat;
  z-index: -3;
  background-image: url("../../images/img/business.webp");
  background-position: center center;
  background-size: contain;
  background-color: #757575;
}
.content-block .content-bg3 {
  z-index: -4;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../images/img/works-hover.webp?v=2");
  background-position: center center;
}
.content-block .content1:hover ~ .content-bg1 {
  z-index: -1;
  opacity: 1 !important;
}
.content-block .content2:hover ~ .content-bg2 {
  z-index: -1;
  opacity: 1 !important;
}
.content-block .content3:hover ~ .content-bg3 {
  z-index: -1;
  opacity: 1 !important;
}
.content-block .content-bg4 {
  z-index: -2;
  background-image: url("../../images/img/policy.webp");
}
.content-block .content-bg5 {
  z-index: -3;
  background-image: url("../../images/img/overview.webp");
  background-position: center center;
}
.content-block .content-bg6 {
  z-index: -4;
  background-image: url("../../images/img/sdgs.webp");
}
.content-block .content4:hover ~ .content-bg4 {
  z-index: -1;
  opacity: 1 !important;
}
.content-block .content5:hover ~ .content-bg5 {
  z-index: -1;
  opacity: 1 !important;
}
.content-block .content6:hover ~ .content-bg6 {
  z-index: -1;
  opacity: 1 !important;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

#backgroundVideo,
#backgroundVideo2 {
  display: block;
}

#backgroundVideo3 {
  display: none;
}

@media screen and (max-width: 950px) {
  header nav {
    display: none;
  }
  .menu-btn {
    display: flex;
    top: 10px;
  }
  .menu-content {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .card-section {
    padding: 50px 5%;
  }
  .card-section h2 {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 130%;
  }
  .card-section .h3 {
    font-size: 10px;
  }
  header .logo a {
    margin-left: 5%;
  }
  .hover .content-title .content0 {
    height: 150px;
  }
  .hover .content-block {
    display: flex;
    flex-wrap: wrap;
  }
  .hover .content {
    width: 100%;
  }
  .hover .content .content {
    height: 100px;
  }
  .hover2 .content {
    width: 50%;
  }
  .hover2 .content .content {
    height: 100px;
  }
  .hover .content0:nth-child(1) {
    border-top: 0;
    background-color: #f1f2ee;
  }
  .hover .content-img .content {
    height: 150px !important;
  }
  .hover2 .content-img .content0 {
    height: 150px !important;
  }
  .hover:hover .content {
    border: 0;
  }
  .hover:hover .content .hover-boxs {
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3em;
    width: calc(100% - 40px);
    height: 120px !important;
  }
  .hover:hover .content:hover .hover-boxs {
    width: calc(100% - 50px);
    height: 110px !important;
  }
  .hover.visible .content {
    border: 0;
  }
  .hover.visible .content .hover-boxs {
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3em;
    width: calc(100% - 40px);
    height: 120px !important;
  }
  .hover.visible .content:hover .hover-boxs {
    width: calc(100% - 50px);
    height: 110px !important;
  }
  .hover.visible .content .content0 {
    margin: 0;
  }
  .hover.visible .content-img .content:hover .hover-boxs {
    width: calc(100% - 50px);
    height: 110px !important;
  }
  .hover1.visible .content:nth-child(1) .hover-boxs {
    animation: autoHover1 7s infinite;
  }
  .hover1.visible .content:nth-child(2) .hover-boxs {
    animation: autoHover2 7s infinite;
  }
  .hover1.visible .content:nth-child(3) .hover-boxs {
    animation: autoHover3 7s infinite;
  }
  .hover1.visible:hover .content-bg1 {
    animation: none;
  }
  .hover1.visible:hover .content-bg2 {
    animation: none;
  }
  .hover1.visible:hover .content-bg3 {
    animation: none;
  }
  .hover1.visible:hover .content-bg4 {
    animation: none;
  }
  .hover1.visible:hover .content-bg5 {
    animation: none;
  }
  .hover1.visible:hover .content-bg6 {
    animation: none;
  }
  .hover1.visible:hover .content:nth-child(1) .hover-boxs {
    animation: none;
  }
  .hover1.visible:hover .content:nth-child(2) .hover-boxs {
    animation: none;
  }
  .hover1.visible:hover .content:nth-child(3) .hover-boxs {
    animation: none;
  }
  .hover.visible .content-bg1 {
    animation: autoFade1 7s infinite;
  }
  .hover.visible .content-bg2 {
    animation: autoFade2 7s infinite;
  }
  .hover.visible .content-bg3 {
    animation: autoFade3 7s infinite;
  }
  .hover.visible .content-bg4 {
    animation: autoFade1 7s infinite;
  }
  .hover.visible .content-bg5 {
    animation: autoFade2 7s infinite;
  }
  .hover.visible .content-bg6 {
    animation: autoFade3 7s infinite;
  }
  @keyframes autoHover1 {
    0% {
      width: calc(100% - 50px);
      height: 110px !important;
      background: rgba(255, 255, 255, 0.9);
    }
    30% {
      width: calc(100% - 50px);
      height: 110px !important;
      background: rgba(255, 255, 255, 0.9);
    }
    40% {
      width: calc(100% - 40px);
      height: 120px !important;
      background: rgba(255, 255, 255, 0.6);
    }
    90% {
      width: calc(100% - 40px);
      height: 120px !important;
      background: rgba(255, 255, 255, 0.6);
    }
    100% {
      width: calc(100% - 50px);
      height: 110px !important;
      background: rgba(255, 255, 255, 0.9);
    }
  }
  @keyframes autoHover2 {
    0% {
      width: calc(100% - 40px);
      height: 120px !important;
      background: rgba(255, 255, 255, 0.6);
    }
    30% {
      width: calc(100% - 40px);
      height: 120px !important;
      background: rgba(255, 255, 255, 0.6);
    }
    40% {
      width: calc(100% - 50px);
      height: 110px !important;
      background: rgba(255, 255, 255, 0.9);
    }
    60% {
      width: calc(100% - 50px);
      height: 110px !important;
      background: rgba(255, 255, 255, 0.9);
    }
    70% {
      width: calc(100% - 40px);
      height: 120px !important;
      background: rgba(255, 255, 255, 0.6);
    }
    100% {
      width: calc(100% - 40px);
      height: 120px !important;
      background: rgba(255, 255, 255, 0.6);
    }
  }
  @keyframes autoHover3 {
    0% {
      width: calc(100% - 40px);
      height: 120px !important;
      background: rgba(255, 255, 255, 0.6);
    }
    60% {
      width: calc(100% - 40px);
      height: 120px !important;
      background: rgba(255, 255, 255, 0.6);
    }
    70% {
      width: calc(100% - 50px);
      height: 110px !important;
      background: rgba(255, 255, 255, 0.9);
    }
    90% {
      width: calc(100% - 50px);
      height: 110px !important;
      background: rgba(255, 255, 255, 0.9);
    }
    100% {
      width: calc(100% - 40px);
      height: 120px !important;
      background: rgba(255, 255, 255, 0.6);
    }
  }
  @keyframes autoFade1 {
    0% {
      opacity: 1;
    }
    30% {
      opacity: 1;
    }
    40% {
      opacity: 0;
    }
    90% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes autoFade2 {
    0% {
      opacity: 0;
    }
    30% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
    60% {
      opacity: 1;
    }
    70% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes autoFade3 {
    0% {
      opacity: 0;
    }
    60% {
      opacity: 0;
    }
    70% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .hover2:hover .content .hover-boxs {
    width: calc(100% - 40px) !important;
    height: 160px !important;
  }
  .hover2:hover .content:hover .hover-boxs {
    width: calc(100% - 50px);
    height: 150px !important;
  }
  .hover2.visible .content .hover-boxs {
    width: calc(100% - 40px) !important;
    height: 160px !important;
  }
  .hover2.visible .content:hover .hover-boxs {
    width: calc(100% - 50px);
    height: 150px !important;
  }
  .hover .content {
    height: 200px;
  }
  .hover .content .h2 {
    font-size: 20px;
  }
  .hover span {
    font-size: 20px;
  }
  .content-block video {
    width: 100%;
    height: 100%;
    -o-object-position: 30% 50%;
       object-position: 30% 50%;
  }
  footer nav {
    padding: 0;
  }
  footer nav li {
    margin: 0;
    width: 50%;
    padding: 30px 0;
    border: solid 1px #6f6f6f;
  }
  footer nav li:nth-child(odd) {
    border-left: 0;
  }
  footer nav li:nth-child(even) {
    border-right: 0;
  }
  #backgroundVideo,
  #backgroundVideo2 {
    display: none;
  }
  #backgroundVideo3 {
    display: block;
  }
  .card-section .h2-plus {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .card-box .card {
    margin: 15px 0px;
  }
}
/******************
new footer
*******************/
footer {
  margin-top: 0px;
  background: #000000;
}

.footer-box {
  display: flex;
  flex-wrap: wrap;
  width: 1500px;
  max-width: 90%;
  margin: 0px auto;
  padding: 50px 0;
}
.footer-box .left {
  width: 400px;
  max-width: 100%;
}
.footer-box .left img {
  filter: invert(100%);
  width: 250px;
}
.footer-box .right {
  width: calc(100% - 400px);
  flex-grow: 1;
}
.footer-box .right-flex {
  display: flex;
  text-align: left;
  padding-top: 30px;
  justify-content: center;
}
.footer-box .foot-menu {
  width: 33.3333333333%;
}
.footer-box .foot-menu ul {
  margin-bottom: 20px;
  list-style: none;
  font-weight: 800;
}
.footer-box .foot-menu ul a {
  margin-bottom: 10px;
}
.footer-box .foot-menu ul li {
  font-weight: 400;
  margin-left: 40px;
  list-style: "ー ";
}
.footer-box .foot-menu ul li a {
  font-weight: 400;
  margin-bottom: 5px;
}

@media screen and (max-width: 1100px) {
  .footer-box {
    display: block;
  }
  .footer-box .right {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 30px;
    margin-left: auto;
  }
  .footer-box .foot-menu {
    width: 220px;
    max-width: 33.3%;
  }
}
@media screen and (max-width: 700px) {
  .footer-box .right-flex {
    flex-direction: column;
  }
  .footer-box .right {
    margin-left: 0;
  }
  .footer-box .foot-menu {
    width: 250px;
    max-width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 300px) {
  .footer-box .right {
    width: 100%;
  }
}/*# sourceMappingURL=index.css.map */
/* =========================================================
   共通：固定ヘッダー（header.php 使用ページ）
   黒背景・白文字・ハンバーガーをヘッダー内（左）に・スクロール追従
   ※ recruit/blog など別ヘッダーには影響しないよう .gx-fixed-header にスコープ
   ========================================================= */
.gx-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  /* デフォルトは常時表示。トップのみ home.css で「最上部非表示→スクロールで出現」に上書き */
  transition: transform 0.18s ease-out;
}
.gx-fixed-header.is-shown {
  transform: translateY(0);
}
/* トップレベルの項目のみ白文字に（ドロップダウンの中身には効かせない）。太さは service(svc-nav)と同じ700に揃える */
.gx-fixed-header nav > li > a,
.gx-fixed-header nav > li > a label {
  color: #fff;
  font-weight: 700;
}
/* 項目が増えても崩れないよう、幅に応じてフォント・間隔を自動縮小（1行維持）
   ※ 直接の子（トップレベル項目）のみに限定。ドロップダウン内は対象外 */
.gx-fixed-header nav {
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
}
.gx-fixed-header nav > li {
  font-size: clamp(12px, 1.15vw, 16px);
  margin-left: clamp(18px, 2.6vw, 50px);
}
/* ロゴ（白抜き）。左端のハンバーガーを避けて右へ寄せる */
.gx-fixed-header > .logo a {
  margin-left: 74px;
}
.gx-fixed-header > .logo img {
  filter: invert(1);
}
/* ハンバーガーをヘッダー内（左・上下中央）に */
.gx-fixed-header .menu-btn {
  position: absolute;
  top: 50%;
  left: 12px;
  right: auto;
  transform: translateY(-50%);
  background: transparent;
}
.gx-fixed-header .menu-btn span,
.gx-fixed-header .menu-btn span:before,
.gx-fixed-header .menu-btn span:after {
  background-color: #fff;
}
/* メニューを開いた時もXは白のまま（黒ヘッダー上のため） */
.gx-fixed-header #menu-btn-check:checked ~ .menu-btn span:before,
.gx-fixed-header #menu-btn-check:checked ~ .menu-btn span:after {
  background-color: #fff;
}
/* 常時表示ヘッダーぶんの余白（トップは home.css で 0 に上書き） */
.gx-header-spacer {
  height: 50px;
}
/* PC版はナビ＋フッターがあるためハンバーガー不要 → スマホのみ表示 */
@media screen and (min-width: 951px) {
  .gx-fixed-header .menu-btn {
    display: none;
  }
}

/* =========================================================
   モバイルメニュー（クリーン全画面ドロワー）
   ※ ヘッダー外に配置し transform の影響を受けない全画面オーバーレイ
   ========================================================= */
.gx-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: #0e0e14;
  padding: 66px 0 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 951px) {
  .gx-menu { display: none; }
}
body.menu-open .gx-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.menu-open { overflow: hidden; }

.gx-menu__list { list-style: none; margin: 0; padding: 0; }
.gx-menu__list > li { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.gx-menu__list > li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.gx-menu__link {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 19px 30px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.3;
}
.gx-menu__link:active { background: rgba(255, 255, 255, 0.05); }
.gx-menu__acctoggle { position: relative; }
.gx-menu__acctoggle::after {
  content: "＋";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #2bd4d4;
  font-weight: 800;
}
.gx-menu__acc.is-open .gx-menu__acctoggle::after { content: "−"; }
.gx-menu__sub {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: max-height 0.35s ease;
}
.gx-menu__acc.is-open .gx-menu__sub { max-height: 480px; }
.gx-menu__sub a {
  display: block;
  padding: 14px 30px 14px 46px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.gx-menu__foot { padding: 28px 30px 8px; font-size: 12px; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.4); }

/* =========================================================
   サービス（.hover2.is-spotlight）：背景に選択カードの専用動画を表示し
   6カードを半透明で重ね、ホバー/タップで中央へ移動＆拡大するスポットライト演出
   ========================================================= */
/* isolation:isolate で独立スタッキングコンテキストを作り、負のz-indexの背景動画が
   この地色より前面に描画されるようにする（動画が地色で隠れるのを防止）*/
.is-spotlight .content-mov { position: relative; background: #0b1020; isolation: isolate; }
/* 背景動画はカード背面。明るすぎたため暗めに落とす */
.is-spotlight .content-mov .svc-bgvideo { z-index: -2; filter: brightness(0.5) saturate(0.95); }
/* 選択カードの専用動画をクロスフェード表示 */
.is-spotlight .content-mov .svc-bg-over { opacity: 0; transition: opacity 0.5s ease; }
/* 動画の上に薄い暗幕（テクスチャ＋暗さ）。光を抑える */
.is-spotlight .filter { opacity: 0.22; background-color: rgba(8, 12, 24, 0.5); }

/* カード：選択時のみ動く。GPU合成で滑らかに */
.is-spotlight .content-mov .content {
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), z-index 0s;
  transform-origin: center center;
  border-color: #707070;
  will-change: transform;
}
/* 平常時：白い長方形カードを隙間なく敷き詰め（動画は隠す）。ぼかしは使わず軽量・滑らか */
.is-spotlight .content-mov .content .hover-boxs {
  background: #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: opacity 0.4s ease, box-shadow 0.4s ease, border-radius 0.4s ease;
}
.is-spotlight .content-mov .content .hover-boxs .h2,
.is-spotlight .content-mov .content .hover-boxs .h3 { color: #0e1424; }

/* 選択（is-active）時：最前面で浮く白カード（角丸＋影） */
.is-spotlight .content-mov .content.is-active { z-index: 20; border-color: transparent; }
.is-spotlight .content-mov .content.is-active .hover-boxs {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(10, 16, 32, 0.45);
  opacity: 1;
}
/* 選択中は他カードを沈めて背景動画を見せる */
.is-spotlight .content-mov.has-active .content:not(.is-active) .hover-boxs { opacity: 0.18; }

/* 既存の汎用ホバーCSS（.hover:hover .content:hover .hover-boxs が幅/高さを縮小）を打ち消し、
   移動中も含めてカードのサイズを常に一定に保つ（2サイズになるのを防止）。
   .is-spotlight.hover2 … で specificity を上げて確実に上書き */
.is-spotlight.hover2 .content-mov .content .hover-boxs,
.is-spotlight.hover2 .content-mov .content:hover .hover-boxs {
  width: 100%;
  height: 100%;
}
.is-spotlight.hover2 .content-mov .content.is-active .hover-boxs,
.is-spotlight.hover2 .content-mov .content.is-active:hover .hover-boxs {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
/* 文字も常に表示（汎用ホバーで .6 に薄まるのを打ち消し）*/
.is-spotlight.hover2 .content-mov .content.is-active .hover-boxs .h2,
.is-spotlight.hover2 .content-mov .content.is-active .hover-boxs .h3 { opacity: 1; }

/* 選択カードを中央へ移動＋拡大（is-active のみ。ホバーでは動かさずチラつき防止）*/
.is-spotlight .content-mov .content.is-active { z-index: 20; }

/* PC（3列×2段）：各位置から中央へ */
@media (min-width: 701px) {
  .is-spotlight .content-mov .content.is-active:nth-child(1) { transform: translate(100%, 50%) scale(1.3); }
  .is-spotlight .content-mov .content.is-active:nth-child(2) { transform: translate(0, 50%) scale(1.3); }
  .is-spotlight .content-mov .content.is-active:nth-child(3) { transform: translate(-100%, 50%) scale(1.3); }
  .is-spotlight .content-mov .content.is-active:nth-child(4) { transform: translate(100%, -50%) scale(1.3); }
  .is-spotlight .content-mov .content.is-active:nth-child(5) { transform: translate(0, -50%) scale(1.3); }
  .is-spotlight .content-mov .content.is-active:nth-child(6) { transform: translate(-100%, -50%) scale(1.3); }
}

/* スマホ（2列×3段）：各位置から中央へ */
@media (max-width: 700px) {
  .is-spotlight .content-mov .content.is-active:nth-child(1) { transform: translate(50%, 100%) scale(1.3); }
  .is-spotlight .content-mov .content.is-active:nth-child(2) { transform: translate(-50%, 100%) scale(1.3); }
  .is-spotlight .content-mov .content.is-active:nth-child(3) { transform: translate(50%, 0) scale(1.3); }
  .is-spotlight .content-mov .content.is-active:nth-child(4) { transform: translate(-50%, 0) scale(1.3); }
  .is-spotlight .content-mov .content.is-active:nth-child(5) { transform: translate(50%, -100%) scale(1.3); }
  .is-spotlight .content-mov .content.is-active:nth-child(6) { transform: translate(-50%, -100%) scale(1.3); }
}
