@charset "UTF-8";
.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: white;
  border: 1px solid black;
  font-weight: 600;
  padding: 10px 40px;
  margin: 10px auto;
  cursor: pointer;
  transition: all 0.3s;
  color: black;
  text-decoration: none !important;
}
.btn.float:hover {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled {
  background-color: #33CCFF;
  color: black;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled:hover {
  background-color: white;
  color: black;
  box-shadow: none;
}
.btn.letter-spacing:hover {
  background-color: black;
  letter-spacing: 3px;
  color: white;
}
.btn.shadow {
  box-shadow: none;
}
.btn.shadow:hover {
  transform: translate(-2.5px, -2.5px);
  box-shadow: 5px 5px 0 0 black;
}
.btn.solid {
  box-shadow: 2px 2px 0 0 black;
  border-radius: 7px;
}
.btn.solid:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.btn.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn.slide-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.btn.slide-bg:hover {
  color: white;
}
.btn.slide-bg:hover::before {
  transform: none;
}
.btn.cover-3d {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 300px;
}
.btn.cover-3d span {
  display: inline-block;
  transform: translateZ(20px);
}
.btn.cover-3d::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateX(90deg);
  transition: all 0.3s;
  transform-origin: top center;
  opacity: 0;
}
.btn.cover-3d:hover {
  color: white;
}
.btn.cover-3d:hover::before {
  transform: none;
  opacity: 1;
}

.btn-cubic {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 300px;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 600;
}
.btn-cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
  transform-origin: center center -25px;
  color: black;
}
.btn-cubic .hovering {
  background-color: black;
  color: white;
  transform: rotateX(90deg);
}
.btn-cubic .default {
  background-color: white;
  color: black;
  transform: rotateX(0);
}
.btn-cubic:hover .hovering {
  transform: rotateX(0);
}
.btn-cubic:hover .default {
  transform: rotateX(-90deg);
}

.swiper-container {
  overflow: visible !important;
}

.swiper-slide {
  height: 500px;
  overflow: hidden;
}
.swiper-slide > img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.3);
  transition: transform 1.9s ease;
}
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 61, 125, 0.1);
}
.swiper-slide-active > img {
  transform: none;
}
.swiper-slide-active .hero__title {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero {
  overflow: hidden;
  padding-top: 100px;
}
.hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  color: white;
  font-size: 25px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease 1s, transform 0.3s ease 1s;
}
.hero__footer {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  height: 68px;
  width: 22px;
  overflow: hidden;
}
.hero__downarrow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6px;
  animation-name: kf-arrow-anime;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.hero__scrolltext {
  position: absolute;
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.7);
  left: -8px;
  top: 11px;
  font-size: 1.2em;
}

@keyframes kf-arrow-anime {
  0%, 50%, 100% {
    transform: translateY(-10%);
  }
  30% {
    transform: none;
  }
}
.animate-title,
.tween-animate-title {
  opacity: 0;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  animation-delay: 0.04s;
}
.animate-title.inview .char:nth-child(2) {
  animation-delay: 0.08s;
}
.animate-title.inview .char:nth-child(3) {
  animation-delay: 0.12s;
}
.animate-title.inview .char:nth-child(4) {
  animation-delay: 0.16s;
}
.animate-title.inview .char:nth-child(5) {
  animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(6) {
  animation-delay: 0.24s;
}
.animate-title.inview .char:nth-child(7) {
  animation-delay: 0.28s;
}
.animate-title.inview .char:nth-child(8) {
  animation-delay: 0.32s;
}
.animate-title.inview .char:nth-child(9) {
  animation-delay: 0.36s;
}
.animate-title.inview .char:nth-child(10) {
  animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(11) {
  animation-delay: 0.44s;
}
.animate-title.inview .char:nth-child(12) {
  animation-delay: 0.48s;
}
.animate-title.inview .char:nth-child(13) {
  animation-delay: 0.52s;
}
.animate-title.inview .char:nth-child(14) {
  animation-delay: 0.56s;
}
.animate-title.inview .char:nth-child(15) {
  animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(16) {
  animation-delay: 0.64s;
}
.animate-title.inview .char:nth-child(17) {
  animation-delay: 0.68s;
}
.animate-title.inview .char:nth-child(18) {
  animation-delay: 0.72s;
}
.animate-title.inview .char:nth-child(19) {
  animation-delay: 0.76s;
}
.animate-title.inview .char:nth-child(20) {
  animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(21) {
  animation-delay: 0.84s;
}
.animate-title.inview .char:nth-child(22) {
  animation-delay: 0.88s;
}
.animate-title.inview .char:nth-child(23) {
  animation-delay: 0.92s;
}
.animate-title.inview .char:nth-child(24) {
  animation-delay: 0.96s;
}
.animate-title.inview .char:nth-child(25) {
  animation-delay: 1s;
}
.animate-title.inview .char:nth-child(26) {
  animation-delay: 1.04s;
}
.animate-title.inview .char:nth-child(27) {
  animation-delay: 1.08s;
}
.animate-title.inview .char:nth-child(28) {
  animation-delay: 1.12s;
}
.animate-title.inview .char:nth-child(29) {
  animation-delay: 1.16s;
}
.animate-title.inview .char:nth-child(30) {
  animation-delay: 1.2s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eaebe6;
  opacity: 0;
}
.cover-slide.inview::after {
  opacity: 1;
  animation-name: kf-cover-slide;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

@keyframes kf-cover-slide {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.img-zoom, .bg-img-zoom {
  opacity: 0;
}
.inview .img-zoom, .inview .bg-img-zoom {
  opacity: 1;
  transition: transform 0.3s ease;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.inview .img-zoom:hover, .inview .bg-img-zoom:hover {
  transform: scale(1.05);
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
.hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.3s ease;
  pointer-events: none;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.hover-darken:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-img-zoom {
  background-image: url(images/image-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.img-bg50 {
  position: relative;
}
.img-bg50::before {
  display: block;
  content: "";
  padding-top: 50%;
}

.drone-mobile-menu {
  position: fixed;
  right: 0;
  top: 60px;
  width: 300px;
}
.drone-mobile-menu .drone-logo {
  padding: 0 40px;
  font-size: 38px;
}
.drone-mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}
.drone-mobile-menu__btn > span {
  background-color: black;
  width: 35px;
  height: 2px;
  display: block;
  margin-bottom: 9px;
  transition: transform 0.7s;
}
.drone-mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
.drone-mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 200;
}
.drone-mobile-menu__main {
  padding: 0;
  perspective: 2000px;
  transform-style: preserve-3d;
}
.drone-mobile-menu__item {
  list-style: none;
  display: block;
  transform: translate3d(0, 0, -1000px);
  padding: 0 40px;
  transition: transform 0.3s, opacity 0.2s;
  opacity: 0;
}
.drone-mobile-menu__link {
  display: block;
  margin-top: 30px;
  color: black;
  text-decoration: none !important;
}

.menu-open #container {
  transform: translate(-300px, 60px);
  box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
}
.menu-open .drone-mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}
.menu-open .drone-mobile-menu__item {
  transform: none;
  opacity: 1;
}
.menu-open .drone-mobile-menu__item:nth-child(1) {
  transition-delay: 0.07s;
}
.menu-open .drone-mobile-menu__item:nth-child(2) {
  transition-delay: 0.14s;
}
.menu-open .drone-mobile-menu__item:nth-child(3) {
  transition-delay: 0.21s;
}
.menu-open .drone-mobile-menu__item:nth-child(4) {
  transition-delay: 0.28s;
}
.menu-open .drone-mobile-menu__item:nth-child(5) {
  transition-delay: 0.35s;
}
.menu-open .drone-mobile-menu__btn > span {
  background-color: black;
}
.menu-open .drone-mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(11px) rotate(135deg);
}
.menu-open .drone-mobile-menu__btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open .drone-mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-11px) rotate(-135deg);
}

/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
body {
  font-family: "Kameron", "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.font-sm, .sub-title {
  font-size: 14px;
}

.font-md, .popular__title {
  font-size: 17px;
}

.font-lr, .drone-career__heading, .drone-career__title {
  font-size: 17px;
}

.font-lg, .main-title {
  font-size: 25px;
}

.mb-sm, .popular__title, .drone-career__heading, .drone-career__title, .drone-intro__img, .drone-intro__sub {
  margin-bottom: 16px !important;
}

.mb-lg, .popular__btn, .drone-career, .drone-intro {
  margin-bottom: 80px !important;
}

.pb-sm, .popular__container, .drone-intro__texts {
  padding-bottom: 16px !important;
}

.pb-lg, .hero {
  padding-bottom: 80px !important;
}

.content-width, .drone-footer, .popular__container, .popular__header, .drone-career, .drone-intro, .drone-header__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1070px;
}

.main-title {
  font-weight: 600;
  margin-bottom: 0;
  display: block;
}

.sub-title {
  color: #535353;
}

.flex, .drone-footer__ul, .drone-footer__nav, .popular__container, .drone-career__tableitem, .drone-career__tableinner, .drone-career__inner, .drone-intro__inner {
  display: flex;
  flex-direction: column;
}

.purple {
  color: #020147;
}

#main-content {
  position: relative;
  z-index: 0;
}

main {
  position: relative;
  z-index: -1;
  padding-top: 100px;
}

#container {
  background-color: white;
  position: relative;
  z-index: 10;
  transition: transform 0.5s, box-shadow 0.5s;
}

.drone-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: transparent;
  display: flex;
  align-items: center;
  z-index: 100;
}
.drone-header.triggered {
  background-color: #fffefd;
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.drone-header__nav {
  display: none;
}
.drone-header__ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.drone-header__li {
  margin-left: 20px;
}
.drone-header__li > a {
  color: black;
  text-decoration: none !important;
  text-transform: uppercase;
}
.drone-header .drone-logo {
  font-size: 38px;
  justify-content: center;
}
@media (max-width: 600px) {
  .drone-header .drone-logo {
    font-size: 18px;
  }
}
.drone-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drone-intro__inner {
  justify-content: space-between;
  padding: 15px;
  position: relative;
  z-index: 0;
}
.drone-intro__inner .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  outline: none;
  z-index: 3;
}
.drone-intro__inner .arrows .prev {
  left: 30px;
}
.drone-intro__inner .arrows .prev:hover .svg {
  left: -10px;
}
.drone-intro__inner .arrows .next {
  right: 30px;
}
.drone-intro__inner .arrows .next:hover .svg {
  left: 10px;
}
.drone-intro__inner .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}
.drone-intro__inner h2 {
  margin-bottom: 0px;
}
.drone-intro__inner form {
  width: 100%;
}
.drone-intro__inner input {
  margin-bottom: 20px;
  width: 100%;
  height: 50px;
}
.drone-intro__inner textarea {
  margin-bottom: 40px;
  width: 100%;
}
.drone-intro__inner .sendbutton {
  width: 150px;
  height: 50px;
  display: block;
  background-color: rgb(0, 225, 255);
  border: none;
  outline: none;
  margin: 0 auto;
  color: black;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.drone-intro__inner #emailnull, .drone-intro__inner #titlenull, .drone-intro__inner #messagenull {
  color: red;
}
.drone-intro__title {
  position: relative;
}
.drone-intro__title::before {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: -120px;
  width: 100px;
  height: 1px;
  background-color: black;
  transform: translateY(-50%) scaleX(0);
  transition: transform 0.3s ease 1.6s;
  transform-origin: right;
}
.drone-intro__img {
  height: 300px;
  transition: box-shadow 1ms linear 0.8s;
}
.drone-intro__img > img {
  position: relative;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.drone-intro__img > img.main_slide {
  opacity: 1;
}
.drone-intro__img > img.fadeout {
  animation: fadeOut 2s;
  animation-fill-mode: both;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.drone-intro__img.inview {
  box-shadow: inset 0 0 30px black;
}
.drone-career__tableinner {
  border: solid 1px black;
  text-align: center;
  color: rgba(19, 26, 37, 0.7254901961);
  text-align: center;
  vertical-align: middle;
  margin-bottom: 30px;
}
.drone-career__tableitem {
  border: solid 1px black;
}
.drone-career__heading {
  border-bottom: solid 1px black;
  background-color: #7affff;
}
.drone-career__btn {
  text-align: center;
  flex-basis: 100%;
}

.popular__inner {
  position: relative;
}
.popular__inner::before {
  display: block;
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 90%;
  background: rgba(255, 252, 93, 0.8235294118);
}
.popular__container {
  position: relative;
  z-index: 2;
}
.popular__btn {
  text-align: center;
  flex-basis: 100%;
}
.popular__img {
  height: 150px;
  overflow: hidden;
  margin-bottom: 5px;
}
.popular__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.drone-logo {
  font-size: 42px;
  display: flex;
}
.drone-logo__img {
  width: 0.7em;
}
.drone-logo__world {
  color: #020147;
}

.drone-footer {
  padding: 60px 0;
}
.drone-footer__nav {
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.drone-footer__ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.drone-footer__li {
  padding: 0;
  margin: 10px;
}
.drone-footer__li > a {
  color: #535353;
}
.drone-footer .drone-logo {
  font-size: 38px;
  justify-content: center;
}

.drone-side {
  display: none;
  position: fixed;
  top: 70%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in;
}
.drone-side .tween-animate-title {
  color: black;
  text-decoration: none !important;
  margin: 0 40px;
  vertical-align: middle;
  letter-spacing: 2px;
}
.drone-side.left {
  left: -50px;
}
.drone-side.left.inview {
  left: 50px;
}
.drone-side.left .side__inner {
  transform-origin: top left;
  transform: rotate(-90deg);
}
.drone-side.right {
  right: -50px;
}
.drone-side.right.inview {
  right: 50px;
}
.drone-side.right .side__inner {
  transform-origin: top right;
  transform: rotate(90deg);
}

.icon {
  position: relative;
}
.icon::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 1em;
  height: 1em;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.icon.twitter::before {
  background-image: url(../images/twitter.svg);
}
.icon.fb::before {
  background-image: url(../images/facebook.svg);
}

.google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.thumbnails {
  display: none;
}

#image_text {
  margin-top: 5px;
  text-align: center;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.price-table thead {
  background-color: #f5f5f5;
}
.price-table thead th {
  padding: 0.8rem;
  text-align: center;
  border: 1px solid #ccc;
  font-weight: 600;
  white-space: nowrap;
}
.price-table tbody tr:nth-child(odd) {
  background-color: #fafafa;
}
.price-table tbody td {
  padding: 0.7rem;
  text-align: center;
  border: 1px solid #ccc;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .price-table thead {
    display: none;
  }
  .price-table tbody tr {
    display: block;
    margin-bottom: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.5rem;
  }
  .price-table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border: none;
    border-bottom: 1px solid #eee;
  }
  .price-table tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    flex: 0 0 45%;
    color: #555;
  }
}

.price-strong {
  color: #d9534f;
  font-weight: bold;
}

.drone-intro__title {
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #222;
}
.drone-intro__title span {
  display: block;
}
@media (max-width: 600px) {
  .drone-intro__title {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}

.drone-intro__sub {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: #555;
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .drone-intro__sub {
    font-size: 0.9rem;
  }
}

.feature-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0;
}
.feature-section .feature-text {
  flex: 1;
}
.feature-section .feature-image {
  flex: 1;
}
.feature-section .feature-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
  }
}

.drone-intro {
  background-image: url("../images/sky-background.png");
  background-size: cover;
  background-position: center;
  padding: 2rem;
  color: #fff;
  font-weight: bold;
}
.drone-intro .drone-intro__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}
.drone-intro .drone-intro__inner .drone-intro__img {
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.drone-intro .drone-intro__inner .drone-intro__texts {
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.35);
  padding: 1.5rem;
  border-radius: 8px;
}
.drone-intro .drone-intro__inner .drone-intro__texts .drone-intro__title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.drone-intro .drone-intro__inner .drone-intro__texts .drone-intro__sub {
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .drone-intro .drone-intro__inner {
    flex-direction: column;
    align-items: center;
  }
  .drone-intro .drone-intro__inner .drone-intro__texts {
    max-width: 100%;
  }
}

.hero-section {
  text-align: center;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .hero-section .hero-section {
    height: 100vh;
  }
  .hero-section .hero-section video {
    width: 100vw;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  position: absolute;
  top: 60%;
  left: 2%;
}

.hero-inner {
  position: absolute;
  top: 65%;
  left: 10%;
  color: white;
  width: 100%;
  z-index: 10000;
}

.hero-subtitle {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

@media (max-width: 768px) {
  .hero-section .hero-inner {
    top: 5%;
  }
  .hero-section .hero-title {
    width: 80%;
    font-size: 1.5rem;
    font-weight: 500;
    top: 50%;
  }
  .hero-section .hero-subtitle {
    top: 6rem;
  }
  .hero-section .hero-button {
    left: 30%;
    top: 60%;
  }
}
.hero-button {
  background-color: #ff6600;
  color: #fff;
  padding: 2rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: absolute;
  top: 30%;
  left: 63%;
  z-index: 10000;
}
.hero-button:hover {
  background-color: #ff7b00;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .hero-button {
    left: 50%;
    padding: 1rem 2rem;
  }
}
.features-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}
.features-section .features-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .features-section .features-title {
    font-size: 1rem;
  }
}
.features-section .features-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}
.features-section .features-list li {
  background: #fff;
  margin-bottom: 1rem;
  padding: 1rem;
  border-left: 6px solid #ff6600;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.features-section .features-list li.limited {
  border-left: 6px solid #84ff00;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin: 3rem 0 1.5rem;
  color: #333;
}

.price-section {
  background: #f9f9f9;
  padding: 3rem 2rem;
}
.price-section .price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.price-section .price-table thead {
  background-color: #f5f5f5;
}
.price-section .price-table thead th {
  padding: 0.8rem;
  text-align: center;
  border: 1px solid #ccc;
  font-weight: 600;
  white-space: nowrap;
}
.price-section .price-table tbody tr:nth-child(odd) {
  background-color: #fafafa;
}
.price-section .price-table tbody td {
  padding: 0.7rem;
  text-align: center;
  border: 1px solid #ccc;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .price-section .price-table thead {
    display: none;
  }
  .price-section .price-table tbody tr {
    display: block;
    margin-bottom: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.5rem;
  }
  .price-section .price-table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border: none;
    border-bottom: 1px solid #eee;
  }
  .price-section .price-table tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    flex: 0 0 45%;
    color: #555;
  }
}
.price-section .price-strong {
  color: #d9534f;
  font-weight: bold;
}

.support-section {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
.support-section .support-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.support-section .support-list li {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  text-indent: -1.2rem;
  position: relative;
}
.support-section .support-list li::before {
  content: "✔";
  color: #ff6600;
  margin-right: 0.5rem;
}

.instructor-section {
  background: #f0f8ff;
  padding: 3rem 2rem;
  text-align: center;
}
.instructor-section .instructor-card img {
  width: 250px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.faq-section {
  background: #fff;
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.faq-section dt {
  font-weight: bold;
  margin-top: 1.5rem;
}
.faq-section dd {
  margin-bottom: 1rem;
}

.cta-footer {
  background: linear-gradient(to right, #ffe6d5, rgba(250, 207, 116, 0.8));
  color: #333;
  padding: 3rem 1.5rem;
  text-align: center;
}
.cta-footer .cta-footer-inner {
  max-width: 800px;
  margin: 0 auto;
}
.cta-footer .cta-footer-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.cta-footer .cta-footer-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-footer .cta-footer-button {
  background-color: #df6718;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.cta-footer .cta-footer-button:hover {
  background-color: #ff7b00;
}

.drone-license-section {
  padding: 4rem 1.5rem;
  background-color: #f9f9f9;
}
.drone-license-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #333;
}
@media screen and (max-width: 600px) {
  .drone-license-section .section-title {
    font-size: 1rem;
  }
}
.drone-license-section .license-category {
  margin-bottom: 4rem;
}
.drone-license-section .license-category .license-title {
  font-size: 1.5rem;
  color: #d85500;
  margin-bottom: 1.5rem;
  text-align: center;
}
.drone-license-section .license-category .license-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.drone-license-section .license-category .license-items .license-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  max-width: 300px;
  text-align: center;
}
.drone-license-section .license-category .license-items .license-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.drone-license-section .license-category .license-items .license-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.important-text {
  color: red;
}

.video-wrapper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.video-wrapper .video-poster,
.video-wrapper video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.video-wrapper video {
  z-index: 2;
}
body.line-view .video-wrapper .video-poster {
  display: block;
  top: 0;
  left: 0;
}

.news-item {
  margin-bottom: 2rem;
}
.news-item img {
  width: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-item .category {
  font-size: 0.8rem;
  color: #888;
}
.news-item time {
  font-size: 0.9rem;
  color: #aaa;
}
.news-item h3 {
  font-weight: bold;
}

@media (min-width: 480px) {
  /******************************************************************

  Stylesheet: 480px以上(スマホの横向き)のモニタで適用

  ******************************************************************/
}
@media (min-width: 600px) {
  /******************************************************************

  Stylesheet: 600px以上のタブレットやモニタで適用

  ******************************************************************/
  .flex, .drone-intro__inner, .drone-career__inner, .drone-career__tableinner, .drone-career__tableitem, .popular__container, .drone-footer__nav, .drone-footer__ul {
    flex-wrap: wrap;
  }
  .drone-career__item {
    flex-basis: 45%;
    margin-bottom: 60px;
  }
  .drone-career__item:nth-of-type(2n+1) {
    margin-right: 10%;
  }
  .drone-career__tableitem {
    display: inline-block;
    flex-basis: 25%;
  }
  .drone-career__tableitem:nth-of-type(2n) {
    border-left: solid 1px #020147;
    border-right: solid 1px #020147;
  }
  .drone-career__tableitem:nth-last-of-type(1) {
    border-right: none;
  }
  .popular__container {
    justify-content: space-between;
  }
  .popular__item {
    flex-basis: 47%;
  }
  .drone-intro__inner {
    padding: 50px;
  }
  .drone-intro__texts {
    display: flex;
    align-items: flex-end;
  }
  .drone-footer .drone-logo {
    justify-content: flex-start;
  }
  .drone-footer__li {
    margin-left: 0;
    margin-right: 30px;
  }
  #image_text {
    margin-top: 10px;
  }
}
@media (min-width: 960px) {
  /******************************************************************

  Stylesheet: 960px以上のモニタで適用

  ******************************************************************/
  .font-sm, .sub-title {
    font-size: 16px;
  }
  .font-md, .popular__title {
    font-size: 19px;
  }
  .font-lr, .drone-career__title, .drone-career__heading {
    font-size: 23px;
  }
  .font-lg, .main-title {
    font-size: 36px;
  }
  .mb-lg, .drone-intro, .drone-career, .popular__btn {
    margin-bottom: 150px !important;
  }
  .pb-lg, .hero {
    padding-bottom: 150px !important;
  }
  .popular__item {
    flex-basis: 25%;
  }
  .popular__img {
    height: 335px;
  }
  .drone-intro__inner {
    padding: 50px;
  }
  .drone-intro__texts, .drone-intro__img {
    flex-basis: 47%;
  }
  .drone-intro__texts {
    display: flex;
    align-items: flex-end;
  }
  .drone-footer__li {
    justify-content: flex-start;
  }
  .drone-header__nav {
    display: block;
  }
  .drone-mobile-menu__btn {
    display: none;
  }
  .swiper-slide {
    box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
  }
  .thumbnails {
    display: block;
  }
  .thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 56px);
    gap: 5px;
  }
  .thumbnails li {
    cursor: pointer;
    opacity: 0.4;
  }
  .thumbnails li:hover,
  .thumbnails li.current {
    opacity: 1;
  }
  .thumbnails img {
    width: 56px;
    height: 56px;
  }
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
}
@media (min-width: 1280px) {
  /******************************************************************

  Stylesheet: 1280px以上のモニタで適用

  ******************************************************************/
  .drone-intro__inner {
    padding: 50px 150px;
  }
  .popular__item {
    flex-basis: 23%;
  }
  .drone-side {
    display: block;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /******************************************************************

  Stylesheet: Retinaディスプレイで適用

  ******************************************************************/
  /* 

  EXAMPLE 
  .icon {
  	background: url(images/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  */
}
@media print {
  /******************************************************************

  Stylesheet: プリンタのみに適用

  ******************************************************************/
}/*# sourceMappingURL=style.css.map */