/* ********共通******** */
body{
  margin: 0;
  padding: 0;
  font-family:  "游ゴシック", Verdana, Roboto, "Droid Sans",YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  background-color: #F5F5F5;
}

img{
  max-width: 100%;
  height:auto;
}

ul{
  list-style: none;
  padding: 0;
}

p{
  margin: 0;
}

a{
  text-decoration: none;
}

video{
  display: block;
  width: 100%;
}

button {
  font-family:  "游ゴシック", Verdana, Roboto, "Droid Sans",YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  padding: 0;
}

/* 読み込み中表記 */
#loader_top{
    width: 80px;
    height: 80px;
    display: none;
    position: absolute;
    _position: absolute;     /* IE6対策 */
    top: 50%;
    left: 50%;
    margin-top: -40px;       /* heightの半分のマイナス値 */
    margin-left: -40px;      /* widthの半分のマイナス値 */
    z-index: 10;             /* #fadeより多い値を入れて下さい */
}

#loader_vr-drone{
    width: 80px;
    height: 80px;
    display: none;
    position: absolute;
    _position: absolute;     /* IE6対策 */
    top: 50%;
    left: 50%;
    margin-top: -40px;       /* heightの半分のマイナス値 */
    margin-left: -40px;      /* widthの半分のマイナス値 */
    z-index: 10;             /* #fadeより多い値を入れて下さい */
}

#fade_top{
    width: 100%;
    height: 820px;
    display: none;
    background-color: #f5f5f5;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;              /* #loaderより少ない値を入れて下さい */
}

#fade_vr{
    width: 100%;
    height: 1030px;
    display: none;
    background-color: #f5f5f5;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;              /* #loaderより少ない値を入れて下さい */
}

#fade_drone{
    width: 100%;
    height: 1100px;
    display: none;
    background-color: #f5f5f5;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;              /* #loaderより少ない値を入れて下さい */
}

@media screen and (max-width: 768px){
  #fade_top{
      height: 275px;
  }

  #fade_vr{
      height: 320px;
  }

  #fade_drone{
      height: 320px;
  }
}

.content{
  /* width: 1903px; */
  margin: 0 auto;
  margin-top: 8px;
}

.main-content{
  max-width: 1440px;
  margin: 0 auto;
}

p.move-title span:nth-child(1) {
    font-size: 150%;
}

p.move-title span:nth-child(2) {
    font-size: 80%;
    color: #ed254e;
    padding-left: 30px;
}

.move-title {
	color: #444;
	font-size: 24px;
	display: flex;
	align-items: center;
}
.move-title:before, .move-title:after {
	content: "";
	flex-grow: 1;
	height: 1px;
	display: block;
}
.move-title:before {
	margin-right: .4em;
	background: linear-gradient(-90deg, #888, transparent);
}
.move-title:after {
	margin-left: .4em;
	background: linear-gradient(90deg, #888, transparent);
}

@media screen and (max-width: 768px){
  .content{
    margin: 0 auto;
    padding: 0px 5px;
  }

  .main-content{
    margin-left: 0;
    width: 100%;
  }

  p.move-title span:nth-child(1) {
      font-size: 7vw;
  }

  p.move-title span:nth-child(2) {
      font-size: 5vw;
  }
}


/* フェードイン用CSS */
.box{
  transform:translateY(100px);
  opacity:0;
  transition:opacity 2s,transform 1.5s;
}

.box-sp{
  transform:translateY(100px);
  opacity:0;
  transition:opacity 2s,transform 1.5s;
}

.fadein{
  opacity:1;
  transform:translateY(0);
}

@media screen and (max-width: 768px){
  .box-sp{
    transform:none;
    opacity:1;
    transition:none;
  }
}


/* グローバルメニュー */
.global-navi {
  text-align: center;
  font-weight: bold;
  width: 165px;
}

.global-navi_list{
  width: 100%;
}

.global-navi_list ul li{
  width: 100%;
  border-top: 1px dashed #bfbfbf;
}

.global-navi_list ul li a{
  text-decoration: none;
  color: #000000;
  display: block;
  padding: 20px;
}

.global-navi_list ul li:last-child a {
  color: #fff;
  padding: 10px;
  margin-top: 10px;
  background-color: #64a3ff;
}

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


/* お問い合わせ用ボタン（ＶＲ・ドローン） */
.info-area{
  margin-bottom: 8vw;
}

.info-button {
  margin-bottom: 1vw;
}

.info-button_contact_mail {
  width: 50%;
  background-color: #79D1B0;
  color: #fff;
  padding: 30px 50px;
  margin: 0 auto;
  border-radius: 100px;
  text-align: center;
}

.info-button_contact_mail_form {
  padding: 20px;
}

.info-button_contact_mail_form a {
    border: 1px solid;
    border-radius: 30px;
    padding: 10px 50px;
    font-size: 150%;
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    text-align: center;
    overflow: hidden;
    transition: .4s;
}

.info-button_contact_tel {
  width: 50%;
  background-color: #F58E7E;
  color: #fff;
  padding: 30px 50px;
  margin: 0 auto;
  border-radius: 100px;
  text-align: center;
}

.info-button_contact_mail_tel {
  padding: 20px;
}

.info-button_contact_tel_number p {
  padding: 10px 50px 0px 50px;
  font-size: 145%;
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  overflow: hidden;
}

.info-button_contact_tel_number p:nth-child(2) {
  font-size: 200%;
  padding: 0;
}

.info-button_contact_mail_form a:hover {
  background: #fff;
  color: #79D1B0;
}
.info-button_contact_tel_number p span {
  padding: 0px 10px;
}

@media screen and (max-width: 768px){
  .info-button_contact_mail {
    width: 90%;
    background-color: #79D1B0;
    color: #fff;
    padding: 15px 0px 20px 0px;
    margin: 0 auto;
    border-radius: 100px;
    text-align: center;
  }
  .info-button_contact_mail p {
    font-size: 90%;
    padding-bottom: 5px;
  }
  .info-button_contact_mail_form {
    padding: 0;
  }
  .info-button_contact_mail_form a {
    border: 1px solid;
    border-radius: 30px;
    padding: 5px 20px;
    font-size: 100%;
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    text-align: center;
    overflow: hidden;
    transition: .4s;
  }
  .info-button_contact_tel {
    width: 90%;
    color: #fff;
    padding: 15px 0px 20px 0px;
    margin: 0 auto;
    border-radius: 100px;
    text-align: center;
  }
  .info-button_contact_tel_number {
    padding: 0;
  }
  .info-button_contact_tel_number p {
    display: block;
  }
  .info-button_contact_tel_number p:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
    line-height: 7vw;
    justify-content: center;
  }
  .info-button_contact_tel_number p span:nth-child(1) {
    font-size: 6vw;
  }
  .info-button_contact_tel_number p span:nth-child(2) {
    font-size: 60%;
  }
  .info-button_contact_tel_number a{
    color: #fff;
  }
}


/* フッター */
.footer {
  background-color: #737373;
  color: #fff;
  display: flex;
  margin-top: 10px;
}

.footer_top-page {
  display: flex;
  margin: 0 auto;
  width: 100%;
}

.footer_sub-page {
  width: 1330px;
  display: flex;
  margin: 0 auto;
}

.footer-element{
  display: flex;
  justify-content: space-between;
  width: 1330px;
  margin: 0 auto;
}

.footer ul {
  margin: 0;
  padding: 20px;
  padding-top: 115px;
  display: flex;
  justify-content: flex-end;
}

.footer li {
  margin: 15px 0px;
  position: relative;
  height: 20px;
  padding-left: 68px;
  width: 100px;
  text-align: center;
}

.footer ul li a{
  text-decoration: none;
  color: #fff;
  position: relative;
  display: inline-block;
}

.footer ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #F5F5F5;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
.footer ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
  opacity: 1.0;
}

.footer ul li span:hover{
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}

.footer_address {
  padding: 20px;
  width: 42%;
}

.footer_address_info {
  padding-left: 50px;
}

.footer_address_company {
  font-size: 150%;
  margin: 15px 0px;
}

.footer_address p:last-child {
  margin-top: 15px;
}

.footer_right {
    width: 61%;
}

.copyright {
  color: #fff;
  font-size: 80%;
  padding: 12px 20px;
  text-align: right;
}

@media screen and (max-width: 768px){
  .footer {
    flex-wrap: wrap;
    margin: 0;
  }

  .footer ul {
    width: 100%;
    padding: 0;
    justify-content: space-around;
  }

  .footer_address {
    width: 100%;
    padding: 0;
    font-size: 90%;
  }

  .footer_address_info {
    padding-left: 0;
    font-size: 83%;
  }

  .footer_address_info a{
    color: #fff;
  }

  .footer_right {
    width: 100%;
  }

  .copyright{
    font-size: 66%;
    text-align: left;
    padding: 12px 0px;
  }

  .footer li{
    padding: 0;
    width: auto;
  }

  .footer_sub-page {
    display: block;
    width: 100%;
    padding: 20px;
  }

  .footer_top-page {
    display: block;
    width: 100%;
    padding: 20px;
  }
}


/* スマホ用ハンバーガーメニュー */

/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}



/* ********ＴＯＰページ******** */
.top_content_bsn-logo {
  position: absolute;
  right: 13px;
}

/* メインビジュアル */
.top_main-visual_vr-logo{
  /* display: none; */
  position: absolute;
  z-index: 9999;
  left: 467px;
}

.top_main-visual_drone-logo{
  /* display: none; */
  position: absolute;
  z-index: 9999;
  left: 697px;
}

.top_main-visual p img {
    width: 26%;
}

.top_main-visual img{
  display: block;
}

.bxslider{
  display: none;
}

.global-navi_sp{
  display: none;
}

@media screen and (max-width: 1024px){
  .bxslider{
    display: inline;
  }
  video {
    display: none;
  }
  .top_content_bsn-logo{
    display: none;
  }
  .global-navi_sp{
    display: flex;
    height: 50px;
    padding: 10px;
  }
  .global-navi_sp_bsn-logo{
    width: 50%;
    line-height: 84px;
  }
  .global-navi_sp_bsn-logo img{
    height: 80%;
    width: auto;
  }
  .global-navi_list_sp{
    display: none;
  }
  /* .global-navi_sp_bsn-logo a{
    height: 100%;
    display: inline-block;
  } */
}


/* ＶＲ・ドローン　メニュー */
.top_content-menu_vr_cent button{
  background:#FFCC80;
  color:#fff;
  border:none;
  position:relative;
  height:150px;
  font-size:3.6em;
  /* padding:0 2em; */
  cursor:pointer;
  transition:800ms ease all;
  outline:none;
  width: 100%;
}

.top_content-menu_vr_cent button:hover{
  background:#fff;
  color:#f7b501;
}

.top_content-menu_vr_cent button:before,.top_content-menu_vr_cent button:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #f7b501;
  transition:400ms ease all;
}

.top_content-menu_vr_cent button:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
button:hover:before,button:hover:after{
  width:100%;
  transition:800ms ease all;
}

.hover {
  display: none;
}

button:hover .nomal {
  display: none;
  -webkit-transition: all 1s;
      -moz-transition: all 1s;
      -ms-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
      opacity: 1;
}

button:hover .hover {
  display: inline;
  -webkit-transition: all 1s;
      -moz-transition: all 1s;
      -ms-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
}

.top_content-menu_drone_cent button{
  background: #64B5F6;
  color:#fff;
  border:none;
  position:relative;
  height:150px;
  font-size:3.6em;
  /* padding:0 2em; */
  cursor:pointer;
  transition:800ms ease all;
  outline:none;
  width: 100%;
}

.top_content-menu_drone_cent button:hover{
  background:#fff;
  color:#0052a5;
}

.top_content-menu_drone_cent button:before,.top_content-menu_drone_cent button:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #0052a5;
  transition:400ms ease all;
}

.top_content-menu_drone_cent button:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
button:hover:before,button:hover:after{
  width:100%;
  transition:800ms ease all;
}

.hover {
  display: none;
  font-size: 80%;
}

button:hover .nomal {
  display: none;
  -webkit-transition: all 1s;
      -moz-transition: all 1s;
      -ms-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
      opacity: 1;
}

button:hover .hover {
  display: inline;
  -webkit-transition: all 1s;
      -moz-transition: all 1s;
      -ms-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
}

span.button_sub-font {
    font-size: 50%;
    padding-left: 1.2em;
}

.top_content-menu{
  display: flex;
  text-align: center;
  margin: 10px 0px;
}

.top_content-menu_vr{
  width: 50%;
  /* background-color: #b55cfc; */
  color: #fff;
  position: relative;
  padding-right: 5px;
}

.top_content-menu_drone{
  width: 50%;
  /* background-color: #ffcc1e; */
  color: #fff;
  position: relative;
  padding-left: 5px;
}

.top_content-menu_vr_cent p:nth-child(1) {
  font-weight: bold;
  font-size: 120%;
  /* padding: 10px 0px; */
}

.top_content-menu_vr_cent p:nth-child(2) {
    font-size: 30%;
}

.top_content-menu_drone_cent p:nth-child(1) {
  font-weight: bold;
  font-size: 120%;
  /* padding: 10px 0px; */
}

.top_content-menu_drone_cent p:nth-child(2) {
    font-size: 30%;
}

.top_content-menu_vr_link{
  height: 60px;
}

.top_content-menu_vr_link p{
  position: absolute;
  height: 40px;
  width: 150px;
  line-height: 40px;
  top: 90px;
  right: 30px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 10px;
  color: #000000;
}

.top_content-menu_drone_link{
  height: 60px;
}

.top_content-menu_drone_link p{
  position: absolute;
  height: 40px;
  width: 150px;
  line-height: 40px;
  top: 90px;
  right: 30px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 10px;
  color: #000000;
}

@media screen and (max-width: 768px){
  .top_content-menu {
      flex-wrap: wrap;
  }

  .top_content-menu_vr {
      width: 100%;
      padding: 0;
  }

  .top_content-menu_drone {
      width: 100%;
      padding: 0;
  }
  .top_content-menu_vr_cent button{
    height: 80px;
    font-size: 2.6em;
  }
  .top_content-menu_drone_cent button{
    height: 80px;
    font-size: 2.6em;
  }
  .top_content-menu{
    margin: 0;
  }
  .top_content-menu_drone_cent p:nth-child(1){
    font-size: 80%;
  }
  .top_content-menu_vr_cent p:nth-child(1){
    font-size: 80%;
  }
}


/* 新着情報 */
.top_new-info{
  /* background-color: #93B8CA; */
  color: #fff;
  font-weight: bold;
  /* padding: 30px 34px 30px 33px; */
  width: 50%;
  padding-right: 5px;
  box-sizing: border-box;
}

.top_new-info-box{
  background-color: #93B8CA;
  padding: 30px 34px 30px 33px;
  height: 100%;
  box-sizing: border-box;
}

.top_new-info_title{
  font-size: 150%;
}

.top_new-info ul li{
  padding: 20px 0px;
  border-top: 1px solid #F5F5F5;
}

.top_new-info ul li:last-child {
  border-bottom: 1px solid #f5f5f5;
}

.top_new-info ul li a{
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}

.top_new-info ul li a::after{
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #F5F5F5;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.top_new-info ul li a:hover::after{
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px){
  .top_new-info {
    background-color: #93B8CA;
    padding: 20px 10px;
    font-size: 90%;
    width: 100%;
  }
  .top_new-info-box{
    padding: 0;
  }
}


/* 新着情報＆ドローン動画 */
.top_new-info_drone-movie{
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  height: 403px;
}

@media screen and (max-width: 768px){
  .top_new-info_drone-movie{
    flex-wrap: wrap;
    height: auto;
  }
}


/* ＴＯＰドローン動画 */
.top_drone-movie-box{
  width: 50%;
  padding-left: 5px;
  box-sizing: border-box;
}

.top_drone-movie_link {
  width: 100%;
  height: 100%;
}

.top_drone-movie {
  height: 100%;
}

.top_drone-movie iframe{
  /* width: 715px;
  height: 402px; */
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px){
  .top_drone-movie-box{
    width: 100%;
    padding: 0;
  }
  .top_drone-movie_link{
    width: 100%;
  }
  .top_drone-movie {
    width: 100%;
  }
  .top_drone-movie iframe{
    width: 100%;
    height: auto;
  }
}


/* お問い合わせ */
.top_contact{
  display: flex;
  text-align: center;
  padding: 10px 0;
}

.top_contact_tel{
  width: 50%;
  background-color: #F58E7E;
  color: #fff;
  padding: 30px 50px;
  margin-right: 5px;
}

.top_contact_mail{
  width: 50%;
  background-color: #79D1B0;
  color: #fff;
  padding: 30px 50px;
  margin-left: 5px;
}

.top_contact_tel p:nth-child(2) {
  font-size: 140%;
  padding-top: 10px;
}

.top_contact_tel p:nth-child(3) {
    font-size: 200%;
}

.top_contact_mail_form {
  padding: 20px;
}

.top_contact_mail_form a {
  border: 1px solid;
  border-radius: 30px;
  padding: 10px 50px;
  font-size: 150%;
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  overflow: hidden;
  transition: .4s;
}

.top_contact_mail_form a:hover {
  background: #fff;
  color: #79D1B0;
}

@media screen and (max-width: 768px){
  .top_contact {
      flex-wrap: wrap;
      padding: 0;
  }

  .top_contact_tel {
      width: 100%;
      margin: 0;
  }

  .top_contact_tel a{
      color: #fff;
  }

  .top_contact_mail {
      width: 100%;
      margin: 0;
      padding: 30px 5px;
  }
  .top_contact_mail_form a{
    font-size: 130%;
  }

}



/* ********ＶＲページ******** */
.vr-content{
  max-width: 1330px;
  margin: 0 auto;
  margin-top: 8px;
}

.vr_main-visual {
  width: 100%;
  height: 54vw;
}

.vr_main-content{
  width: 100%;
}

/* メインビジュアル */
.vr_main-visual img{
  display: block;
}

@media screen and (max-width: 1024px){
  .vr_main-visual_video{
    display: none;
  }
  .vr-content{
    width: 100%;
  }
  .vr_main-visual {
    width: 100%;
    height: auto;
  }
}


/* ＶＲグロナビ */
.vr-global-navi {
  text-align: center;
  font-weight: bold;
  width: 86%;
  z-index: 9999;
  position: absolute;
  top: 0;
  right: 0;
  height: 100px;
  line-height: 100px;
  background-color: #fff;
  opacity: 0.8;
  background: linear-gradient(45deg, rgba(255,255,255,0), rgba(255,255,255,1.0));
}

.vr-global-navi_list {
  width: 100%;
  height: 100%;
  padding-right: 50px;
  float: right;
  display: flex;
  justify-content: flex-end;
}

.vr-global-navi_list_bsn-logo {
  line-height: 145px;
}

.vr-global-navi_list ul {
  margin: 0;
  display: flex;
}

.vr-global-navi_list ul li {
    position: relative;
    height: 100%;
    width: 100px;
    text-align: center;
}

.vr-global-navi_list ul li:nth-child(1) {
  padding: 0 4vw 0 4vw;
}

.vr-global-navi_list ul li:nth-child(2) {
  padding-right: 4vw;
}

.vr-global-navi_list ul li a{
  text-decoration: none;
  color: #fff;
  position: relative;
  display: inline-block;
}

.vr-global-navi_list ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #181818;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
.vr-global-navi_list ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
  opacity: 1.0;
}

.vr-global-navi_list ul li span:hover{
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}

.vr-global-navi_list ul li a {
  color: #181818;
  line-height: 20px;
  height: 20px;
}

.vr-global-navi_list ul li a img {
  padding-top: 15px;
}

.vr_content_bsn-logo{
  display: none;
}


@media screen and (max-width: 1024px){
  .vr-global-navi{
    display: none;
  }
}


/* パンくず */
.vr_breadcrumb{
  margin: 10px;
}


/* ＶＲ説明 */
.vr_explain {
  margin: 0px 0 150px 0;
  text-align: center;
  line-height: 40px;
}

.vr_explain p:nth-child(1) {
  font-size: 250%;
  font-weight: bold;
  margin-bottom: 30px;
}

.vr_explain p:nth-child(3) {
  font-weight: bold;
}

.vr_explain-video {
  text-align: center;
}

.vr_explain-video p {
  margin: 10px;
}

.vr_explain span {
    display: none;
}

@media screen and (max-width: 768px){
  .vr_explain {
    margin: 100px 0 100px 0;
    padding: 20px;
  }
  .vr_explain p:nth-child(1) {
    font-size: 140%;
  }
  .vr_explain span {
      display: inline;
  }
}


/* ＶＲ配信中動画 */
.vr_video-list{
  margin-top: 3vw;
  margin-bottom: 10vw;
}

.vr_video-list_title{
  text-align: center;
  margin-bottom: 70px;
}

.vr_video-list_title p{
  color: #181818;
  padding: 10px 0;
  /* display: inline-block; */
  width: 100%;
  font-size: 30px;
  font-weight: bold;
}

.vr_video-list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.vr_video-list ul li{
  width: 40%;
  padding: 2% 0;
  text-align: center;
}

.vr_video-list iframe{
  width: 100%;
  height: 288px;
}

@media screen and (max-width: 768px){
  .vr_video-list ul li{
    width: 100%;
    padding-bottom: 10vw;
  }
  .vr_video-list_title{
    margin-bottom: 30px;
  }
  .vr_video-list iframe{
    width: auto;
    height: auto;
  }
  .vr_video-list ul li p {
    width: 80%;
    margin: 0 auto;
  }
  .vr_video-list_title p {
    font-size: 140%;
  }
}


/* ＶＲアプリ */
.vr_app{
  margin-top: 3vw;
  text-align: center;
  margin-bottom: 8vw;
}

.vr_app_explain p:first-child {
  font-size: 200%;
  font-weight: bold;
  margin-bottom: 30px;
}

.vr_app_logo{
  margin: 30px 0;
}

.vr_app_logo img{
  width: 20%;
}

@media screen and (max-width: 768px){
  .vr_app{
    padding: 20px;
  }
  .vr_app_logo img{
    width: 30%;
  }
  .vr_app_explain p:first-child {
    font-size: 140%;
  }
  .vr_app_explain span{
    display: block;
  }
  .vr_app_dw-logo img {
    margin: 0!important;
  }
}



/* ********ドローンページ******** */
.drone-content{
  max-width: 1330px;
  margin: 0 auto;
  margin-top: 16px;
}

@media screen and (max-width: 768px){
  .drone-content{
    width: 100%;
  }
}

.drone_main-visual {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px){
  .drone_main-visual {
    width: 100%;
    height: auto;
  }
  .drone_main-visual_video{
    display: none;
  }
}

.vr-wrap {
  margin-top: -8px;
  max-width: 1903px;
}

@media screen and (max-width: 768px){
  .vr-wrap {
      margin-top: 0px;
  }
}

.test1 {
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    color: #fff;
    position: absolute;
    z-index: 9999;
    font-size: 3.5vw;
    top: 20%;
    left: 13%;
}

.test2 {
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    color: #fff;
    position: absolute;
    z-index: 9999;
    font-size: 3.5vw;
    top: 40%;
    left: 21%;
}

.test3 {
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    color: #fff;
    position: absolute;
    z-index: 9999;
    font-size: 3.5vw;
    top: 64%;
    left: 58%;
}

.css-fade1{
  /* アニメーション設定 */
  animation-name:fade-in1;
  animation-duration:5s; アニメーション時間
  animation-timing-function: ease-out;
  animation-delay:-10s;
  animation-iteration-count:1;
  animation-direction:normal;
  animation-fill-mode: forwards;
}

.css-delay1{
  animation-delay:2s;
  opacity: 0;
}

.css-delay2{
  animation-delay:9s;
  opacity: 0;
}

.css-delay3{
  animation-delay:23s;
  opacity: 0;
}

/* アニメーション */
@keyframes fade-in1 {
  0% {opacity: 0}
  100% {opacity: 0.9}
}

/* ドローングロナビ */
.drone-global-navi {
  text-align: center;
  font-weight: bold;
  width: 1903px;
  z-index: 9999;
  position: absolute;
  top: 0;
  height: 100px;
  line-height: 100px;
  background-color: #fff;
  opacity: 0.8;
}

.drone-global-navi_list {
  width: 1330px;
  margin: 0 auto;
  height: 100%;
  padding-left: 50px;
  display: flex;
}

.drone-global-navi_list_bsn-logo {
  line-height: 145px;
}

.drone-global-navi_list ul {
  margin: 0;
  display: flex;
  height: 100%;
}

.drone-global-navi_list ul li {
  position: relative;
  height: 100%;
  padding-left: 68px;
  width: 100px;
  text-align: center;
}

.drone-global-navi_list ul li a{
  text-decoration: none;
  color: #fff;
  position: relative;
  display: inline-block;
}

.drone-global-navi_list ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #181818;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
.drone-global-navi_list ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
  opacity: 1.0;
}

.drone-global-navi_list ul li span:hover{
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}

.drone-global-navi_list ul li a {
  color: #181818;
  line-height: 20px;
  height: 20px;
}

.drone-global-navi_list ul li a img {
  padding-top: 15px;
}

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

/* ドローン募集 */
.drone_recruit {
  text-align: center;
  margin: 200px 0 190px 0;
}

.drone_recruit p:first-child{
  font-size: 250%;
  font-weight: bold;
  margin-bottom: 30px;
}

.drone_recruit p:nth-child(3){
  font-size: 120%;
  margin: 20px 0;
}

@media screen and (max-width: 768px){
  .drone_recruit {
    margin: 100px 0 100px 0;
    padding: 20px;
  }
  .drone_recruit p:first-child {
    font-size: 8vw;
    margin-bottom: 30px;
  }
  .drone_recruit_title p {
    font-size: 74%;
  }
}


/* ドローン配信中動画 */
.drone_video-list{
  margin-top: 0vw;
  margin-bottom: 10vw;
}

.drone_video-list_title{
  text-align: center;
  margin-bottom: 70px;
}

.drone_video-list_title p{
  color: #181818;
  padding: 10px 0;
  /* display: inline-block; */
  width: 100%;
  font-size: 30px;
  font-weight: bold;
}

.drone_video-list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.drone_video-list ul li{
  width: 19%;
  padding: 2% 0;
  text-align: center;
}

.drone_video-list iframe{
  width: 100%;
  height: 144px;
}

@media screen and (max-width: 768px){
  .drone_video-list{
    margin-top: 10vw;
  }
  .drone_video-list ul li{
    width: 100%;
    padding-bottom: 10vw;
  }

  .drone_video-list iframe{
    width: auto;
    height: auto;
  }
  .drone_video-list_title {
    margin-bottom: 30px;
  }
  .drone_video-list_title p {
    font-size: 140%;
  }
}


/* ドローンイベント */
.drone_event-list{
  margin-top: 3vw;
  margin-bottom: 7vw;
}

.drone_event-list_title{
  text-align: center;
  margin-bottom: 70px;
}

.drone_event-list_title p{
  color: #181818;
  padding: 10px 0;
  /* display: inline-block; */
  width: 100%;
  font-size: 30px;
  font-weight: bold;
}

.drone_event-list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.drone_event-list ul li{
  width: 40%;
  padding: 2% 0;
}

.drone_event-list iframe{
  width: 100%;
  height: 350px;
}

@media screen and (max-width: 768px){
  .drone_event-list ul li{
    width: 80%;
    padding-bottom: 10vw;
  }
  .drone_event-list_title{
    margin-bottom: 30px;
  }
  .drone_event-list_title p {
    font-size: 100%;
  }
  .drone_event-list_title p.move-title span:nth-child(1) {
    font-size: 200%;
  }
  .drone_event-list_title p.move-title span:nth-child(2) {
    padding-left: 10px;
  }
}


/* 2023年2月2日　タネマキスキー削除対応 */

.top_content_bsn-logo img{
  width: 100px;
}

.vr-global-navi_list_bsn-logo {
  line-height: 100px;
}
.vr-global-navi_list_bsn-logo img {
  width: 90px;
  vertical-align: middle;
}



/* end */
