@charset "UTF-8";

.page-drone .p-sub-fv {
  background-image: url("../images/drone-fv.jpg");
}


@media screen and (max-width: 767px) {
	.page-drone .p-sub-fv {
		background-image: url("../images/drone-fv-sp.jpg");
	}
}

.page-drone .p-sub-fv__header {
  background-color: var(--c-bg-gray);
}

.page-drone .p-breadcrumb {
  background-color: var(--c-bg-gray);
}


/* ==========================================================================
   Drone Vision
   ========================================================================== */

.p-drone-vision {
  padding: 10.0rem 0;
  background-color: var(--c-bg-gray);
}

.p-drone-vision__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.0rem 0;
}

.p-drone-vision__content {
  width: 100%;
  text-align: center;
}

.p-drone-vision__catch {
  margin-bottom: 5.0rem;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.5;
  font-style: italic;
}

.p-drone-vision__text {
  font-weight: 700;
}

/* ==========================================================================
   Responsive - SP (Drone Vision)
   ========================================================================== */

@media screen and (max-width: 767px) {
  .p-drone-vision {
    padding: 6.0rem 0;
  }

  .p-drone-vision__inner {
    gap: 4.0rem 0;
  }

  .p-drone-vision__catch {
    margin-bottom: 2.5rem;
    font-size: 2.4rem;
  }

  .p-drone-vision__text {
    font-size: 1.4rem;
  }
}

/* ============================================
   Project - Drone Lesson (ドローン体験会で叶うこと)
   ============================================ */

.p-drone-lesson {
  background-color: var(--c-bg-gray);
  background-size: 102% auto;
  background-position: top 5% right;
  background-repeat: no-repeat;
  background-image: url("../images/drone-lesson__bg.svg");
}

.p-drone-lesson__wrap {
  position: relative;
  padding: 2.0rem 0;
  margin-bottom: 10.0rem;
}

/* --- マーキーエリア --- */
.p-drone-lesson__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.p-drone-lesson__marquee-track {
  display: flex;
  width: max-content;
}

.p-drone-lesson__img-box {
  width: 55vw;
  max-width: 103rem;
  min-width: 40rem;
  margin: 0 0.5%;
  overflow: hidden;
}

.p-drone-lesson__img-box img {
  display: block;
}

/* アニメーション：左へ */
.-flow-left {
  animation: marquee-flow-left 40s linear infinite;
}

@keyframes marquee-flow-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.p-drone-lesson__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-drone-lesson__list {
  display: flex;
  flex-direction: column;
  gap: 10.0rem 0;
}

.p-drone-lesson__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 8.0rem;
  /* テキストと画像の間の余白 */
}

/* テキストエリア（左側） */
.p-drone-lesson__content {
  flex: 1;
}

.p-drone-lesson__item-title {
  margin-bottom: 2.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}

/* 画像エリア（右側） */
.p-drone-lesson__img {
  width: 47.5%;
  flex-shrink: 0;
}

.p-drone-lesson__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
   Responsive - SP (768px未満)
   ============================================ */

@media screen and (max-width: 767px) {
  .p-drone-lesson {
    padding: 0 0 6.0rem;
  }

  .p-drone-lesson__title {
    margin-bottom: 2.0rem;
    font-size: 2.4rem;
    padding: 3rem 0;
    background-size: auto 5rem;
  }


  .p-drone-lesson__list {
    gap: 6.0rem 0;
  }

  /* スマホでは画像が上、テキストが下になるように反転 */
  .p-drone-lesson__item {
    flex-direction: column-reverse;
    gap: 3.0rem 0;
  }

  .p-drone-lesson__img {
    width: 100%;
  }

  .p-drone-lesson__item-title {
    font-size: 2.0rem;
    margin-bottom: 1.5rem;
  }

  .p-drone-lesson__item-text {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .p-drone-lesson__banner {
    margin-top: 5.0rem;
  }
}

/* ============================================
   Project - Drone Schedule (タイムスケジュール)
   ============================================ */

.p-drone-schedule {
  padding: 10.0rem 0;
  background-color: var(--c-white);
}

.p-drone-schedule__list {
  position: relative;
  max-width: 90.0rem;
  /* タイムラインが広がりすぎないように制限 */
  margin: 0 auto;
}

/* 垂直のライン */
.p-drone-schedule__list::before {
  position: absolute;
  top: 0;
  left: 12.0rem;
  /* 時間の右側にラインを配置 */
  bottom: 0;
  width: 0.1rem;
  content: "";
  background-color: var(--c-main-violet);
}

.p-drone-schedule__item {
  position: relative;
  display: flex;
  margin-bottom: 6.0rem;
}

.p-drone-schedule__item:last-child {
  margin-bottom: 0;
}

/* 左側：時間 */
.p-drone-schedule__time {
  position: relative;
  width: 12.0rem;
  flex-shrink: 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-main-violet);
  text-align: left;
}

/* タイムライン上のドット */
.p-drone-schedule__time::after {
  position: absolute;
  top: 1.5rem;
  right: -0.7rem;
  z-index: 2;
  width: 1.4rem;
  height: 1.4rem;
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/drone-schedule__time.svg");
}

/* 右側：内容 */
.p-drone-schedule__body {
  position: relative;
  flex: 1;
  padding-left: 6.0rem;
  padding-right: 4.0rem;
  padding-top: 0.6rem;
}

.p-drone-schedule__item-title {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-text-main);
}

.p-drone-schedule__item-text {
  line-height: 1.8;
}

/* 右上に重なる画像パーツ */
.p-drone-schedule__img {
  position: absolute;
  top: -22.0rem;
  right: 0;
  width: 28.0rem;
  z-index: 1;
}

.p-drone-schedule__img img {
  width: 100%;
  height: auto;
  box-shadow: 0 1.0rem 3.0rem rgba(0, 0, 0, 0.1);
}

.p-drone-schedule__note {
  max-width: 90.0rem;
  margin: 0 auto;
}

.p-drone-schedule__note-text {
  display: block;
  padding-left: 6.0rem;
  padding-right: 4.0rem;
  padding-top: 0.6rem;
  width: calc(100% - 12.0rem);
  margin: 5.0rem 0 auto auto;
}

/* ============================================
   Responsive - SP (768px未満)
   ============================================ */

@media screen and (max-width: 767px) {
  .p-drone-schedule {
    padding: 6.0rem 0;
  }

  .p-drone-schedule__list::before {
    left: 0;
    /* ラインを左端へ */
  }

  .p-drone-schedule__item {
    flex-direction: column;
    padding-left: 2.5rem;
    /* ラインの右側に余白 */
    margin-bottom: 4.0rem;
  }

  .p-drone-schedule__time {
    width: 100%;
    margin-bottom: 1.0rem;
    font-size: 2.0rem;
  }

  .p-drone-schedule__time::after {
    left: -3.0rem;
    /* ラインに合わせてドットを移動 */
    right: auto;
  }

  .p-drone-schedule__body {
    padding-left: 0;
    padding-right: 0;
  }

  .p-drone-schedule__item-title {
    font-size: 1.8rem;
    margin-bottom: 1.0rem;
  }

  .p-drone-schedule__item-text {
    font-size: 1.4rem;
  }

  /* スマホでは画像は本文の下に配置 */
  .p-drone-schedule__img {
    position: static;
    width: 100%;
    margin-top: 2.0rem;
  }

  .p-drone-schedule__note-text {
    width: 100%;
    margin: 2.0rem auto 0;
    padding: 0;
    font-size: 1.4rem;
  }

  .p-drone-schedule__sep {
    padding: 0;
  }
}

/* ============================================
   Drone Schedule Separator
   ============================================ */

.p-drone-schedule__sep {
  width: 100%;
  padding: 0;
  background-image: linear-gradient(180deg, var(--c-white) 0%, var(--c-white) 50%, var(--c-bg-light2) 50%, var(--c-bg-light2) 100%);
  overflow: hidden;
}

.p-drone-schedule__sep-inner {
  width: 100%;
}

.p-drone-schedule__sep-item {
  width: 39rem;
  height: 29.4rem;
  margin: 0 3rem;
  transform: translate3d(0px,0,0) scale(0.8) !important;
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
  border-radius: 2rem;
  overflow: hidden;
  z-index: 1;
}

.p-drone-schedule__sep-img {
  width: 100%;
  height: 100%;
}

.p-drone-schedule__sep-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide-prev.p-drone-schedule__sep-item,
.swiper-slide-next.p-drone-schedule__sep-item {
  transform: translate3d(0px,0,0) scale(1) !important;
  z-index: 10;
}


/* --- スマホ対応 (767px以下) --- */
@media screen and (max-width: 767px) {
  .p-drone-schedule__sep-item {
    width: 20rem;
    height: 14rem;
    margin: 0 1rem;
  }
}

/* ============================================
   Project - Drone Detail (体験会詳細)
   ============================================ */

.p-drone-detail {
  padding: 10.0rem 0 0;
  background-color: var(--c-bg-light2);
}

.p-drone-detail__exp {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.0rem;
}

/* 行の設定：左(term)・右(desc)の並び */
.p-drone-detail__row {
  display: flex;
  padding: 4.0rem 0;
}

/* 左側：項目名 */
.p-drone-detail__term {
  width: 24.0rem;
  /* 項目の固定幅 */
  flex-shrink: 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-main-purple);
  line-height: 1.4;
}

/* 右側：詳細内容 */
.p-drone-detail__desc {
  flex: 1;
}

.p-drone-detail__box {
  display: inline-block;
  color: var(--c-main-purple);
  background-color: var(--c-white);
  padding: 0 1.4rem;
  margin-bottom: 1.8rem;
  font-weight: 700;
}

/* desc内の小見出し */
.p-drone-detail__sub-title {
  display: block;
  margin-bottom: 1.0rem;
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--c-text-main);
  line-height: 1.6;
}

/* desc内の本文テキスト */
.p-drone-detail__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--c-text-main);
}

/* ============================================
   Responsive - SP (768px未満)
   ============================================ */

@media screen and (max-width: 767px) {
  .p-drone-detail {
    padding: 6.0rem 0;
  }

  .p-drone-detail__heading {
    margin-bottom: 4.0rem;
  }

  /* スマホでは縦並びにする */
  .p-drone-detail__row {
    flex-direction: column;
    gap: 1.5rem 0;
    padding: 3.0rem 0;
  }

  .p-drone-detail__term {
    width: 100%;
    font-size: 1.8rem;
  }

  .p-drone-detail__sub-title {
    font-size: 1.6rem;
    margin-bottom: 1.0rem;
  }

  .p-drone-detail__text {
    font-size: 1.4rem;
  }

  .p-drone-detail__banner {
    margin-top: 5rem;
  }
}