@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Noto+Sans+JP:wght@400;700&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #222222;
}
@media (min-width: 768px) {
  body {
    line-height: 1.6;
  }
}
body.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}

img {
  max-width: 100%;
  display: block;
}

a,
a:link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.link,
a:link.link {
  display: inline;
  color: #DD1C1A;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  border: 0;
  background: transparent;
  border-radius: 0;
  text-align: inherit;
}
button:hover {
  cursor: pointer;
}

h1 {
  text-transform: uppercase;
  font-family: "Cairo", sans-serif;
}

h2 {
  text-transform: uppercase;
  color: #17aace;
  font-size: 1.5em;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

body:not(.ja) h2 {
  font-weight: 600;
}

iframe {
  width: 100%;
  height: 50rem;
}

strong {
  font-weight: 700;
}

.container {
  position: relative;
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
  padding: 7rem 2rem;
  box-sizing: border-box;
}

.flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .flex {
    flex-direction: row;
  }
}

.short {
  max-width: 75rem;
  width: 95%;
  margin: 0 auto 2em;
}
.short .list {
  margin-left: 2em;
  margin-right: 0;
}
@media (min-width: 768px) {
  .short .list {
    margin-left: 3em;
  }
}

.iblock {
  display: inline-block;
}

.icon--open {
  position: relative;
}
.icon--open span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  right: 1em;
  top: 0;
}
@media (min-width: 768px) {
  .icon--open span {
    justify-content: space-evenly;
  }
}
.icon--open .fa-play {
  font-size: 1.2rem;
}
.icon--open:hover .fa-play {
  transform: rotate(90deg);
}

a.bt {
  width: 20rem;
  padding: 1rem;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  background-color: #0d3683;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 3px 5px 7px -3px #ccc;
  border: 1px solid #fff;
  border-radius: 5rem;
}
a.bt:hover {
  background-color: #2e7ed2;
}
a.bt--contact {
  width: 15rem;
  padding: 1rem;
  text-align: center;
  background-color: #DD1C1A;
  box-shadow: none;
  border-color: #ff9b9b;
}
a.bt--contact:hover {
  background-color: #ff9300;
}

.bg {
  background-color: #cbf3ff;
}

.big {
  font-size: 1.2em;
}

.header {
  position: fixed;
  width: 100vw;
  height: 6rem;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgb(0, 13, 38) 0%, rgba(2, 121, 219, 0.01) 100%);
  color: #17aace;
  z-index: 100000000;
}
@media (min-width: 992px) {
  .header {
    height: 5.3rem;
  }
}
.header a {
  color: #fff;
  letter-spacing: 1px;
}
.header .container {
  max-width: 1900px;
  height: 100%;
  padding: 0 2.5rem 0 1.5rem;
}
.header .container.flex {
  flex-direction: row;
}
.header .menu {
  display: none;
  position: relative;
  text-transform: uppercase;
  transform: translateX(130%);
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  flex-direction: column;
}
@media (min-width: 992px) {
  .header .menu {
    display: block;
    transform: translateX(0);
    max-width: 23rem;
    margin-right: 0;
    height: auto;
  }
}
.header .menu li {
  list-style: none;
}
.header .menu span {
  padding: 1.5rem 0.5em;
}
.header .menu a {
  display: block;
  padding: 1.5rem 1em;
}
.header .menu a:hover {
  color: #8bc3ff;
  font-weight: bold;
}
.header .menu__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .header .menu__block {
    flex-direction: row;
  }
}
.header .icon--open i {
  display: none;
}
.header .icon--hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  padding: 0;
}
.header .btn-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: 0.2s;
}
.header .btn-line::before, .header .btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.2s;
}
.header .btn-line::before {
  transform: translateY(-10px);
}
.header .btn-line::after {
  transform: translateY(10px);
}
@media (max-width: 992px) {
  .header .open .menu {
    display: flex;
    justify-content: center;
    transform: translateX(0%);
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 13, 38, 0.8);
    z-index: -1;
  }
  .header .open .menu li {
    margin: 2em 0;
  }
  .header .open .menu li a {
    font-size: 3rem;
  }
  .header .open .icon--hamburger {
    transform: rotate(180deg);
  }
  .header .open .btn-line {
    background-color: transparent;
  }
  .header .open .btn-line::before, .header .open .btn-line::after {
    background-color: #fff;
    transition: 0.2s;
  }
  .header .open .btn-line::before {
    transform: rotate(135deg);
  }
  .header .open .btn-line::after {
    transform: rotate(-135deg);
  }
}
@media (min-width: 992px) {
  .header .icon--open i {
    display: block;
  }
  .header .icon--hamburger {
    display: none;
  }
}

.logo {
  width: 20rem;
  cursor: pointer;
}
@media (min-width: 992px) {
  .logo {
    width: 24rem;
  }
}

.header__headering {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (min-width: 992px) {
  .header__headering {
    justify-content: space-between;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

main .container__block {
  max-width: 90rem;
  width: 100%;
  margin: 0 auto 2em;
  box-sizing: border-box;
  text-align: center;
}
main .container__block img {
  border-radius: 2rem;
}
main .mission.container article {
  max-width: 70rem;
  margin: 0 auto 3rem;
}
main .mission.container article h2 span {
  display: inline-block;
}
main .products--intro {
  max-width: 85rem;
  width: 90%;
  margin: 0 auto 4rem;
}
@media (min-width: 768px) {
  main .products--intro {
    font-size: 1.2em;
  }
}
main .products__block {
  max-width: 85rem;
  background-size: 11rem 11rem;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 12rem 0 5rem;
  margin: auto;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  main .products__block {
    padding: 3rem 0 3rem 16rem;
    background-position: left center;
  }
}
main .products__block.security {
  background-image: url(../images/svg/secuity.svg);
}
main .products__block.power {
  background-image: url(../images/svg/power.svg);
  padding-top: 14rem;
}
@media (min-width: 768px) {
  main .products__block.power {
    padding-top: 3rem;
  }
}
main .products__block.equipment {
  background-image: url(../images/svg/equipment.svg);
}
main .products__block.network {
  background-image: url(../images/svg/network.svg);
  background-size: 12rem 12rem;
  padding: 15rem 0 3rem;
}
@media (min-width: 768px) {
  main .products__block.network {
    padding: 3rem 0 3rem 16rem;
  }
}
main .products__block dt {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1em;
  color: #17aace;
}

.lang {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 8rem;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-evenly;
}
.lang a {
  width: 100%;
  height: 100%;
  color: rgba(254, 254, 254, 0.6);
}
.lang a:hover {
  color: #fff;
}
.lang li {
  width: 50%;
  background-color: #0251a0;
  text-align: center;
  border: 1px solid #ccc;
}
.lang li.active {
  background-color: #fff;
  color: #0d3683;
  font-weight: bold;
}
.lang li.active a {
  color: #0d3683;
}
.lang li:first-child {
  border-right: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.lang li:last-child {
  border-left: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.ja main .subpage__block--headering {
  margin-left: -1.9rem;
}
.ja main .intro strong {
  font-size: 1.3em;
}
@media (min-width: 768px) {
  .ja main .intro strong {
    font-size: 1.7em;
  }
}

footer {
  position: relative;
  background-color: #000d26;
  color: #ccc;
  font-size: 1.4rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4em 1em;
}
@media (min-width: 768px) {
  footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
footer .company-info {
  text-align: center;
  margin-bottom: 1em;
}
footer .company-info__title {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  footer .company-info {
    text-align: left;
    margin-bottom: 0;
  }
}
footer .copyright {
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.cover {
  width: 100%;
  height: 20rem;
  background-color: #000d26;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/mission.webp);
  background-position: bottom;
}
.cover.products {
  background-image: url(../images/products.webp);
}
.cover .container {
  position: relative;
  height: 100%;
}
.cover h1 {
  position: absolute;
  bottom: -0.7rem;
  font-size: 5rem;
  left: 2rem;
  line-height: 1;
  color: #fff;
}
@media (min-width: 992px) {
  .cover {
    height: 25rem;
  }
  .cover h1 {
    bottom: -2.1rem;
    left: 0;
    font-size: 11rem;
  }
}

.top {
  background-color: #000;
}
.top .header {
  padding: 0;
}
.top .header__headering .logo {
  width: 25rem;
}
.top .header .lang li {
  border: none;
}
.top .cover {
  position: relative;
  background-image: url(../images/top.webp);
  background-position: center bottom;
  height: 100vh;
  box-sizing: border-box;
}
.top .cover .container {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top .cover .container p {
  max-width: 75rem;
  text-align: center;
  font-size: 1.7em;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 0 5px #000d26;
  margin-bottom: 2em;
}
@media (min-width: 576px) {
  .top .cover .container p {
    font-size: 1.8em;
  }
}
.top .cover .bts {
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.5em;
       column-gap: 1.5em;
}
.top .cover .bts a {
  margin: 0;
  width: 15rem;
  border: none;
  box-shadow: none;
  background-color: #2e7ed2;
  box-shadow: 0 0 5px #707070;
}
.top .cover .bts a:hover {
  background-color: #fff;
  color: #2e7ed2;
  font-weight: bold;
}
@media (min-width: 576px) {
  .top .cover .bts {
    -moz-column-gap: 3em;
         column-gap: 3em;
  }
  .top .cover .bts a {
    width: 18rem;
  }
}

/*動きのきっかけの起点となるクラス名 はじめは非表示に*/
.fadeInUpTrigger,
.fadeInLeftTrigger,
.fadeInRightTrigger {
  opacity: 0;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time {
  animation-delay: 0.5s;
}/*# sourceMappingURL=style.css.map */