@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
/* Header CSS */

html {
  font-family: 'Noto Sans JP', sans-serif;
  ;
  font-size: 1rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

@media screen and (max-width:768px) {
  body {
    width: 900px;
  }
}

body {
  /* あとで修正 */
  background-color: rgb(0, 0, 0);
  color: rgb(240, 240, 240);
  /* min-width: 960px; */
}

h1, h2, h3, p, ul {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.2em;
}

ul {
  padding-left: 0;
}

ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

img {
  vertical-align: middle;
}

figure {
  display: block;
}

/*******************************************************************************
  * header navigationの設定
  *
  *****************************************************************************/

#page-header {
  /* background-color: rgb(26, 22, 46);
    color: rgb(240, 240, 240);
    width: 100%;
    height: 70px;
    /* min-width: 960px; */
  /* -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25); */
  /* box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25); */
  z-index: 0;
  display: flex;
}

#page-header.sticky {
  position: fixed;
  top: 0;
  z-index: 100;
}

/* 中央に寄せたいなら
  #page-header>.inner {
    margin: auto;
    width: 960px;
  }
  */

#page-header>.inner {
  position: fixed;
  display: flex;
  height: 70px;
  width: 100%;
  z-index: 100;
  text-align: center;
}

.site-logo {
  display: block;
  /* margin-left: -80px; */
}

nav ul {
  display: flex;
  justify-content: center;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/

nav ul li {
  position: relative;
}

/*ナビゲーションのリンク設定*/

nav ul li a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #eee;
  padding: 20px 0px;
  letter-spacing: 0.2em;
  font-size: 1.1rem;
  transition: all .3s;
  font-family: 'Times New Roman', Times, serif;
  margin: 0 1em;
  text-shadow: rgb(26, 22, 46) 1px 1px 10px;
}

/*==960px以下の形状*/

@media screen and (max-width:960px) {
  nav {
    padding: 0;
  }
  nav ul {
    display: block;
  }
  nav ul li a {
    border-bottom: 1px solid #ccc;
  }
}

#banner-nav a::after {
  position: absolute;
  bottom: 12px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background-color: rgb(255, 255, 255);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .2s;
}

#banner-nav a:hover::after {
  transform: scale(1, 1);
  /* text-decoration: underline; */
  /* background-color: rgb(68, 68, 248); */
}

#banner-nav {
  position: absolute;
  right: 0;
}

@media screen and (max-width:960px) {
  #banner-nav {
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: rgba(0, 0, 0, 0.8);
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #banner-nav.panelactive {
    top: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #banner-nav.panelactive #banner-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #banner-nav ul {
    /*ナビゲーション天地中央揃え*/
    width: 90%;
    margin: 100px auto 0 auto;
  }
  /*リストのレイアウト設定*/
  #banner-nav li {
    list-style: none;
    text-align: center;
  }
  #banner-nav li a {
    color: #aaa;
    text-decoration: none;
    padding: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  #banner-nav a::after {
    display: none;
  }
}

.banner-nav-openbtn {
  display: none;
}

@media screen and (max-width:960px) {
  .banner-nav-openbtn {
    display: block;
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 20px;
    cursor: pointer;
    width: 70px;
    height: 80px;
  }
  /*ボタン内側*/
  .banner-nav-openbtn .openbtn-area {
    position: relative;
    transition: all .4s;
  }
  .banner-nav-openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }
  .banner-nav-openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .banner-nav-openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .banner-nav-openbtn span:nth-of-type(3) {
    top: 31px;
  }
  /*activeクラスが付与されると線と周りのエリアが回転して×になる*/
  .banner-nav-openbtn.active .openbtn-area {
    transform: rotateY(-360deg);
  }
  .banner-nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }
  .banner-nav-openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .banner-nav-openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }
}

/*******************************************************************************
  * footer
  *
  *****************************************************************************/

#footer {
  position: relative;
  padding: 2% 5% 2% 5%;
  border-top: 2px solid #0078ff;
}

#footer-info {
  position: relative;
  display: block;
  text-align: center;
}

#footer-info .site-logo {
  position: relative;
  margin: 0 0 10px 0;
}

#footer-info address {
  font-style: normal;
  margin: 0 0 10px 0;
}

#footer-info ul li {
  margin: 0 0 10px 0;
}

#footer-info dt, #footer-info dd {
  box-sizing: border-box;
  display: inline-block;
}

#footer-info dt::after {
  content: ":";
}

#footer-link {
  margin-top: 15px;
}

#footer-link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 3;
}

#footer-link ul li {
  margin: 0 20px;
}

#footer-link ul ul li {
  margin: 0 10px 0 0;
}

#footer-link .sns-map {
  position: relative;
  margin-top: 15px;
  font-size: 20px;
}

#footer small {
  padding: 10px 0 0 0;
  display: block;
  text-align: right;
  color: #aaa;
}

#page-top-button {
  position: absolute;
  right: 5%;
  bottom: 80px;
  width: 4%;
  color: #aaa;
  background-color: inherit;
  border: 1px solid #aaa;
  cursor: pointer;
  font-size: 2vw;
}

#page-top-button .label {
  display: block;
  height: 18px;
  margin: auto;
}

/*
  #footer-link a {
    position: relative;
  }
  
  #footer-link a::after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: rgb(255, 255, 255);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .2s;
  }
  
  #footer-link a:hover::after {
    transform: scale(1, 1);
    /* text-decoration: underline; */

/* background-color: rgb(68, 68, 248); 
  }
  */

/*******************************************************************************
  * main
  *
  *****************************************************************************/

#page-main {
  position: relative;
  padding: 150px 0 0 0;
}

#robot {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.title {
  font-size: 38px;
  color: #fff;
  font-style: italic;
  font-weight: 800;
  padding: 0 0 0px 0;
  margin: 0 0 30px 0;
  border-bottom: 2px solid #0078ff;
}

.robot-info {
  width: 100%;
  box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.2);
}

.robot-info .swiper-container {
  height: 900px;
  width: 100%;
  position: relative;
}

.robot-info .swiper-wrapper {
  transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
  /* 遷移するときに使用 */
}

.robot-info .swiper-slide {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.robot-info .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -30%;
  bottom: -8%;
  width: 240px;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: -230px 0 150px 50vw rgba(0, 0, 0, 0.7);
  border-radius: 100%;
}

.robot-info .swiper-slide-content {
  position: absolute;
  text-align: center;
  width: 510px;
  max-width: 700px;
  right: 35%;
  top: 68%;
  transform: translateY(-50%);
  font-size: 12px;
  text-align: left;
  z-index: 2;
}

.robot-info .swiper-slide .robot-info-robot-name {
  display: block;
  font-style: italic;
  margin-bottom: 0;
  font-size: 32px;
  transform: translate3d(20px, 0, 0);
  color: #d4a024;
  font-weight: 300;
  opacity: 0;
  transition: 0.2s ease 0.4s;
}

.robot-info .swiper-slide .robot-info-title {
  font-weight: 800;
  font-size: 30px;
  margin: 0;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.5s;
  border-bottom: 2px solid #0078ff;
}

.robot-info .swiper-slide .robot-info-txt {
  line-height: 1.5;
  opacity: 0;
  font-size: 16px;
  padding-top: 20px;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.6s;
}

/* スマホ用 */
/* initial-scaleが0.5のため2倍 */
@media screen and (max-width:900px){
  .robot-info .swiper-slide {
    position: relative;
    color: #fff;
    overflow: hidden;
    background-size: 130%;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .robot-info .swiper-slide-content {
    position: absolute;
    text-align: center;
    width: 510px;
    max-width: 700px;
    left: 5%;
    right: 35%;
    top: 68%;
    transform: translateY(-50%);
    font-size: 12px;
    text-align: left;
    z-index: 2;
  }

  .robot-info .swiper-slide .robot-info-title {
    font-weight: 800;
    font-size: 30px;
    margin-right: 7%;
    opacity: 0;
    transform: translate3d(20px, 0, 0);
    transition: 0.2s ease 0.5s;
    border-bottom: 2px solid #0078ff;
  }
  .robot-info .swiper-slide .robot-info-txt {
    line-height: 1.5;
    padding-right: 7%;
    opacity: 0;
    font-size: 16px;
    padding-top: 20px;
    transform: translate3d(20px, 0, 0);
    transition: 0.2s ease 0.6s;
  }
  
}

.robot-info .swiper-slide-active .robot-info-robot-name {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.6s;
}

.robot-info .swiper-slide-active .robot-info-title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.7s;
}

.robot-info .swiper-slide-active .robot-info-txt {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.8s;
}

.robot-info .swiper-pagination {
  right: 15% !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  z-index: 1;
}

.robot-info .swiper-pagination::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.robot-info .swiper-pagination-bullet {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 1;
  background: transparent;
  color: #d4a024;
  margin: 15px 0 !important;
  position: relative;
}

.robot-info .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -32.5px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #d4a024;
  transform: scale(0);
  transition: 0.2s;
}

.robot-info .swiper-pagination-bullet-active {
  color: #d4a024;
}

.robot-info .swiper-pagination-bullet-active::before {
  transform: scale(1);
}

.robot-info .swiper-button-next, .robot-info .swiper-button-prev {
  background-size: 20px 20px;
  top: 15%;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 2;
  transition: 0.2s;
}

.robot-info .swiper-button-prev {
  top: 20%;
  left: auto;
  right: 15%;
  transform: translate(-40px, 10px);
  background-image: url("../img/robot/upper.svg");
}

.robot-info .swiper-button-prev:hover {
  transform: translate(-40px, 5px);
}

.robot-info .swiper-button-next {
  top: auto;
  bottom: 20%;
  right: 15%;
  background-image: url("../img/robot/down.svg");
  transform: translate(-40px, 10px);
}

.robot-info .swiper-button-next:hover {
  transform: translate(-40px, 15px);
}

@media screen and (min-width: 1024px) {
  .robot-info .swiper-slide::after {
    right: -20%;
    bottom: -12%;
    width: 240px;
    height: 50%;
    box-shadow: -230px 0 150px 39vw rgba(0, 0, 0, 0.7);
  }
  .robot-info .swiper-slide-content {
    left: 10%;
    top: 70%;
    width: 700px;
  }
}


.dropdown__lists {
  display: none;/*デフォルトでは非表示の状態にしておく*/
  width: 100%;
  position: absolute;
  top: 60px;
  left: 0;
}
.gnavi__list:hover .dropdown__lists {
  display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
  background-color: #494d50;
  height: 60px;
  transition: all .3s;
  position: relative;
}
.dropdown__list:not(:first-child)::before{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #494d50;
  position: absolute;
  top: 0;
  left: 0;
}
.dropdown__list:hover {
  background-color: #000406;
}
.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.dropdown__list a::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  /* border-top: 2px solid #852d6b85;
  border-left: 2px solid #683535; */
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

.un:hover {
  text-decoration:underline;
}