@charset "utf-8";
/* CSS Document */

body,h1,h2,h3,p,img,table,a,ul,li,input,textarea,dl,dd,dt{
	margin: 0;
	padding: 0;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"
}
img{
	width: 100%;
}
.clear{
	clear: both
}
a{
	text-decoration: none;
}.drawer{
	position: fixed;
	top: 2px;
	right: 5px;
    z-index: 9999999;
}

/*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
  
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
	top: -5px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 999999;/* 重なり順を一番上に */
  cursor: pointer;
}
h1 span{
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    text-indent: 100%;
    white-space: nowrap;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fdd300;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: #0a1e30;
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #0a1e30;
}
  
/* メニューのデザイン*/
.drawer-content {
  width: calc(80% - 40px);
	padding: 10px 20px;
  height: 100%;
  position: fixed;
  top: 0;
  right: -83%;/* メニューを画面の外に飛ばす */
  z-index: 999;
	background:white;
  transition: .5s;
	box-shadow: 0px 0px 10px gray
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  right: 0;/* メニューを画面に入れる */
}
.drawer-item{
	list-style: none;
	width:90%;
	margin-left: auto;
	margin-right: auto;
}
.drawer_contact{
	list-style: none;
}
.drawer-item a{
	color: #0a1e30;
	font-weight: bold;
	margin-bottom: 7px;
	display: block;
	text-decoration: none
}
.drawer-logo{
	display: block;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
.drawer_contact a{
	color: white;
	background: #0a1e30;
	width: 80%;
	text-align: center;
	font-weight: bold;
	border-radius: 8px;
	padding-top: 3px;
	padding-bottom: 2px;
	margin-bottom: 7px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	margin-top: 20px;
	text-decoration: none
}
#slider {
    width: 100%;
    height:100vh;
	z-index: 1;
}
.scroll_menu{
	width: 100%;
	padding-top: 8px;
	background: #0a1e30;
	box-shadow: 0px 0px 10px #aeaeae;
	position: fixed;
	z-index: 99999;
}
.scroll_menu_area{
	margin-left: auto;
	margin-right: auto;
}
.top_nav_logo{
}
.logo_sp{
	width: 150px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.logo_pc{
	display: none;
}
.scroll_nav_ul{
	display: none;
}
.top_header{
	z-index: 1;
	height: 100vh;
}
.header_logo{
	width: 80%;
	padding-top: 35vh;
	margin-left: auto;
	margin-right: auto;
}
.top_nav_area{
	display: none;
}
.wrap{
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 60px;
	padding-bottom: 60px;
}
.top_news_left{
	width: 100%;
}
.top_news_right{
	width: 100%;
}
.top_news_left_title{
	font-size: 32px;
	background: url("../image/title_logo.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	text-align: center;
	color: #0a1e30;
	margin-bottom: 30px;
	line-height: 26px;
}
.top_news_left_title span{
	font-size: 18px;
}
.top_news_ul{
	list-style: none;
}
.top_news_li{
	width: 45%;
	float: left;
	margin-left: 2.5%;
	margin-right: 2.5%;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e9ebf3
}
.top_news_li:first-child{
}
.top_news_image{
	width: 100%;
	height: 100px;
	margin-bottom: 5px;
}
.top_news_li a{
	text-decoration: none;
}
.top_news_day{
	font-size: 12px;
	color: #efa01f;
	font-weight: bold;
}
.top_news_day span{
	background: #e9ebf3;
	color: black;
	font-size: 12px;
	padding: 2px 10px;
	margin-left: 5px;
}
.top_news_title{
	width: 90%;
	color: #0a1e30;
	font-size: 14px;
	font-weight: bold;
	margin-top: 5px;
	overflow: hidden;
	height: 17px;
}
.top_what{
	padding-top: 60px;
}
.main_title{
	padding-top: 60px;
	font-size: 26px;
	background: url("../image/title_logo.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	text-align: center;
	color: #0a1e30;
	line-height: 26px;
}
.main_title span{
	font-size: 14px;
}
.top_what_area{
	padding-top: 40px;
}
.top_what_image{
	width: 100%;
}
.top_what_text{
	width: 100%;
	line-height: 18px;
	color: #0a1e30;
	font-size: 14px;
}
.top_what_bottan{
	background: #0a1e30;
	display: block;
	width: 200px;
	color: white;
	font-weight: bold;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	font-size: 14px;
	border-radius: 8px;
}
.top_vision{
	padding-top: 120px;
}
.top_vision_box{
	width: calc(100% - 20px);
	padding: 10px;
	background: #fffbee;
	position: relative;
	margin-top: 120px;
}
.top_vision_image{
	display: none;
}
.top_vision_textarea{
	width: 100%;
	margin-top: -65px;
	font-size: 14px;
}
.top_vision_title{
	color: #0a1e30;
	font-size: 28px;
	font-weight: bold;
	line-height: 32px;
	margin-bottom: 20px;
}
.top_vision_title span{
	color: #f5c72b;
	font-size: 14px;
}
.top_vision_box02{
	width: calc(100% - 20px);
	padding: 10px;
	background: #fffbee;
	position: relative;
	margin-top: 120px;
}
.top_vision_image02{
	display: none;
}
.top_vision_textarea02{
	width: 100%;
	margin-top: -65px;
	font-size: 14px;
}
.top_message{
	padding-top: 120px;
}
.top_app{
	width: 48%;
	float: left;
	margin-left: 1%;
	margin-right: 1%;
	margin-top: 40px;
}
.top_app_title{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}
.top_app_image{
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}
.top_app_bottan{
	background: #0a1e30;
	display: block;
	width: 80%;
	color: white;
	font-weight: bold;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	font-size: 14px;
	border-radius: 8px;
}
/*インスタ*/
.eapps-instagram-feed-title-container{
	display: none;
}
.eapps-link{
	display: none;
	z-index: 0
}
.eui-widget-title .eapps-instagram-feed-title{
	display: none;
}
.top_gallery{
	margin-top: 120px;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}
.top_gallery_area{
	margin-bottom: 60px;
}
.top_gallery_bottan_area{
	width: 80%;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	background: white;
}
.insta_bottan{
	background: #0a1e30;
	display: block;
	width: 100%;
	color: white;
	position: absolute;
	top: -80px;
	z-index: 999997;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	text-decoration: none;
}
.whitearea{
	background: white;
	width: 100%;
	position: absolute;
	height: 150px;
	top: -130px;
	z-index: 99999;
}
.top_company{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 60px;
}
.company_logo{
	display: none
}
.company_table{
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	font-size: 16px;
	border-collapse: collapse;
}
.company_table th{
	width: 25%;
	border-bottom: 1px solid #e0e0e0;
}
.company_table td{
	padding: 15px 20px;
	border-bottom: 1px solid #e0e0e0;
}
.company_map{
	width: 100%;
	height: 240px;
	margin-top: 60px;
	display: block;
}
.top_recruit{
	background: url("../image/top_recruit.jpg");
	width: 100%;
	padding-top: 120px;
	padding-bottom: 120px;
	background-size: cover
}
.top_recruit_area{
	margin-right: auto;
	text-align: center;
}
.top_contact{
	background: url("../image/top_company.jpg");
	width: 100%;
	padding-top: 120px;
	padding-bottom: 120px;
	background-size: cover
}
.top_contact_area{
	margin-left: auto;
	text-align: center;
}
.top_contact_title, .top_recruit_title{
	color: white;
	font-size: 24px;
	line-height: 20px;
}
.top_contact_title span , .top_recruit_title span{
	font-size: 14px;
	font-weight: normal;
}
.top_drone_small{
	display: none;
}
.top_vision_image02_sp{
	width: 50%;
	float: left;
	margin-bottom: 10px;
}
.top_drone_small_sp{
	width: 50%;
	float: left;
	margin-bottom: 10px;
}
@media (max-width: 569px){
	.top_contact , .top_recruit{
	padding-top: 80px;
	padding-bottom: 80px;
	}
	
}
.footer{
	width: 100%;
	background: #0a1e30;
	padding-top: 10px;
}
.footer_area{
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;
}
.footer_logo{
	display: block;
	width: 140px;
	margin-left: auto;
	margin-right: auto;
}
.footer_menu{
	width: 95%;
	padding-top: 20px;
	margin-left: auto;
	margin-right: auto;
}
.footer_ul{
	list-style: none;
}
.footer_ul li{
	float: left;
	margin-right: 20px;
}
.footer_ul li a{
	color: white;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
}
.copy{
	color: white;
	font-size: 10px;
	text-align: center;
	margin-top: 20px;
	padding-bottom: 10px;
	display: block
}
.page_nav_area{
	width: 100%;
	padding-top: 15px;
	padding-bottom: 5px;
	background: #0a1e30;
	box-shadow: 0px 0px 10px #aeaeae;
	position: fixed;
	z-index: 99999;
}
.page_nav{
	margin-left: auto;
	margin-right: auto;
}
.page_nav_logo{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.page_nav_ul{
	display: none
}
.page_nav_li{
}
.page_nav_li a{
	color: #0a1e30;
	font-weight: bold;
	text-decoration: none;
}
.page_nav_contact{
	width: 150px;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: -5px;
	background: #0a1e30;
	display: block;
	float: left;
}
.page_nav_contact a{
	color: white;
	text-decoration: none;
}
.page_header{
	width: 100%;
	padding-top: 120px;
	height: 160px;
}
.page_header_area{
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.page_header_box{
	width: calc(100% - 40px);
	padding: 20px;
	position: absolute;
	background: #0a1e30;
	bottom:-205px;
	color: white;
}
.page_header_title{
	display: inline-block;
	font-size: 24px;
	border-bottom: 2px solid white;
	margin-bottom: 5px;
}
.page_wrap{
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 80px;
	border-bottom: 1px solid #e9ebf3;
	margin-bottom: 80px;
	padding-bottom: 60px;
}
.single_area_title{
	font-size: 18px;
	padding-bottom: 10px;
	margin-top: 40px;
	font-weight: bold;
	border-bottom: 1px solid black;
}
.single_area_title:first-letter{
	color: #0a1e30;
	font-size: 28px;
}
.single_area_day{
	text-align: right;
	margin-top: 10px;
	margin-bottom: 40px;
}
.single_area{
	font-size: 18px;
}
.single_area p{
	font-size: 18px;
	margin-bottom: 3px;
}
.single_area img{
	width: 80%;
	height: auto;
}
/*お問い合わせ*/
.contact_table{
	width: 100%;
}
.contact_table th{
	text-align: left;
	width: 20%;
	font-size: 14px;
	border-top:1px solid #eee;
}
.contact_table td{
	padding: 20px;
	border-top:1px solid #eee;
	
}
.required{
	color: #0a1e30;
}
.short_form{
	color: #212121;
	background: #f8f8f8;
	border: none;
	font-weight: 500;
	font-size: 16px;
	padding: 10px;
	width: calc(100% - 20px);
}
.textarea{
	color: #212121;
	background: #f8f8f8;
	border: none;
	font-weight: 500;
	font-size: 16px;
	padding: 10px;
	width: calc(100% - 20px);
	height: 160px;
}
.borderbottom{
	border-bottom:1px solid #eee;
}
.submit{
	background: #0a1e30;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: none;
	color: white;
	display: block;
	width: 240px;
	font-size: 18px;
	font-weight: bold;
	margin-top: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-left:auto;
	margin-right:auto;
}
.thanks_title{
	font-size: 28px;
	font-weight: bold;
}
.thanks_text{
	font-size: 16px;
	margin-top: 10px;
}
.privacy{
	width:80%;
	height: 150px;
	padding: 20px;
	overflow-y:scroll;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	border:1px solid #eee;
}
.privacy a{
	color: black;
	text-decoration: none;
}
.privacy_title{
	font-weight: bold;
	font-size: 16px;
}
.privacy_text{
	font-size: 12px;
	margin-bottom: 20px;
}
.privacy_dl dt{
	font-weight: bold;
	font-size: 14px;
}
.privacy_dl dd{
	font-size: 12px;
	margin-bottom: 10px;
}
.privacy_check{
	text-align: center;
	display: block;
	margin-top: 30px;
	margin-bottom: 50px;
	font-weight: bold;
}
.privacy_check_text{
	font-size: 14px;
	text-align: center;
	margin-top: 40px;
}
.feature{
}
.feature_area{
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 60px;
	padding-bottom: 60px;
}
.feature_title{
	color: #0a1e30;
	text-align: center;
	font-weight: bold;
	font-size: 26px;
	position: relative;
	margin-bottom: 60px;
}
.feature_title:before{
	content: "";
	width: 150px;
	height: 3px;
	background: #0a1e30;
	position: absolute;
	bottom:-5px;
	left: calc(50% - 75px);
}
.feature_box{
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-left: auto;
	position: relative;
	background: white;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	margin-bottom: 40px;
	margin-top: 60px;
}
.feature_box2{
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-right: auto;
	position: relative;
	background: white;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	margin-bottom: 40px;
	margin-top: 60px;
}
.feature_box .feature_box_iphone{
	display: none;
}
.feature_box2 .feature_box_iphone{
	display: none;
}
.feature_box .feature_textarea{
}
.feature_box2 .feature_textarea{
}
.feature_tag{
	background: #0a1e30;
	display: block;
	color: #fdd000;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
.feature_box_iphone_sp{
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}
.feature_title2{
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}
.feature_text{
	font-size: 16px;
	margin-top: 10px;
}
.hikaku{
	padding-top: 60px;
}
.hikaku_area{
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}
.hikaku_title{
	color: #0a1e30;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	position: relative;
	margin-bottom: 60px;
}
.hikaku_title:before{
	content: "";
	width: 150px;
	height: 3px;
	background: #0a1e30;
	position: absolute;
	bottom:-5px;
	left: calc(50% - 75px);
}
.point_box{
	margin-bottom: 80px;
}
.point_tag{
	background: #0a1e30;
	display: block;
	text-align: center;
	width: 130px;
	color: #fdd000;
	font-size: 16px;
	margin-left: auto;
	margin-right: auto;
	font-weight: bold;
	margin-bottom: 10px;
}
.point_title{
	color: #242424;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}
.point_table{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	border-collapse: collapse;
}
.gray{
	background: #d7d7d7;
	width: 40%;
	border: 2px solid white;
	font-size: 18px;
}
.th{
	background: #0a1e30;
	padding: 20px;
	border: 2px solid white;
}
.point_table td{
	font-size: 26px;
	font-weight: bold;
	background: #0a1e30;
	color: white;
	text-align: center;
	padding: 20px;
	border: 2px solid white;
}
.th img{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;
}
.point_text{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	font-size: 16px;
	margin-top: 10px;
	font-weight: bold;
}
.app_submit{
	margin-top: 40px;
	margin-bottom: 40px;
}
.app_header{
	border-top: 30px solid #0a1e30;
	padding-top: 50px;
}
.app_header_area{
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}
.app_header_iphone{
	display: none;
}
.app_header_right{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.app_header_logo{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
}
.download_area{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
}
.download_link{
	width: 45%;
	float: left;
	display: block;
	margin-left: 2.5%;
	margin-right: 2.5%;
}