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

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "MS PGothic", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "MS PGothic", sans-serif !important;
}

a {
  color: rgb(46, 46, 46);
  font-family: "MS PGothic", 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: 20px;
  left: 0;
  z-index: 500;
  width: -moz-max-content;
  width: max-content;
}
.hover-menu ul {
  margin-top: 20px;
  border: solid 2px #888888;
}
.hover-menu ul li {
  padding-left: 0;
  margin-left: 0;
  padding: 5px;
  background-color: #888888;
  font-size: 16px;
}
.hover-menu ul li:hover {
  background-color: white;
}

.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;
}

#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;
  margin-bottom: 50px;
  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: 160px;
}
.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("../../src/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("../../src/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("../../src/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;
  z-index: -2;
  background-image: url("../../src/img/creative.webp");
  background-position: center center;
}
.content-block .content-bg2 {
  background-repeat: no-repeat;
  z-index: -3;
  background-image: url("../../src/img/business.webp");
  background-position: center center;
  background-size: contain;
  background-color: #757575;
}
.content-block .content-bg3 {
  z-index: -4;
  background-image: url("../../src/img/team.webp");
  background-position: 10% 70%;
}
.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("../../src/img/policy.webp");
}
.content-block .content-bg5 {
  z-index: -3;
  background-image: url("../../src/img/overview.webp");
  background-position: center center;
}
.content-block .content-bg6 {
  z-index: -4;
  background-image: url("../../src/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: 1000px) {
  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;
  padding-bottom: 200px;
}
.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 */