@charset "UTF-8";

/* Web fonts は tpl-drone-show.php の head で非同期読み込み */
/* ベース用 */
body,
html {
  line-height: 1.6;
  width: 100vw;
  height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
}

html {
  font-size: 62.5%;
}

a {
  text-decoration: none !important;
}

#droneshow {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴシック",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

#droneshow.loaded {
  opacity: 1;
}

#droneshow img {
  max-width: 100%;
  width: 100%;
  display: block;
  font-size: 0;
  line-height: 0;
  height: auto;
}

#droneshow h1,
#droneshow h2,
#droneshow h3,
#droneshow h4,
#droneshow h5,
#droneshow h6 {
  font-weight: normal;
}

#droneshow li {
  list-style: none;
}

#droneshow section {
  margin: 0;
}

#droneshow #responsibleCheck {
  width: 1px;
  height: 0;
}

#droneshow .spOnly {
  display: none !important;
}

#droneshow main {
  position: relative;
  display: block;
  width: 100%;
}

#droneshow main article section {
  display: block;
  width: 100%;
  position: relative;
}

#droneshow .minContainer {
  max-width: 1406px;
  padding: 0 20px;
  margin: auto;
}

@media screen and (max-width: 860px) {
  #droneshow .pcOnly {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  #droneshow {
    font-size: 100%;
  }

  #droneshow #responsibleCheck {
    width: 2px;
  }

  #droneshow .spOnly {
    display: block !important;
  }

  #droneshow .minContainer {
    padding: 0 5.333vw;
  }
}

/* header */
#droneshow #header {
  display: flex;
  height: 100px;
  padding: 0 80px;
  justify-content: space-between;
  align-items: center;
  gap: 18px;

  background: #fff;
  backdrop-filter: blur(8px);
}

#droneshow #header .headerLeft {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1 0 0;
}

#droneshow #header .headerRight {
  display: flex;
  align-items: center;
  gap: 18px;
}

#droneshow #header .logo_text {
  width: 186.93px;
  height: 17.376px;
}

#droneshow #header .headerLeft_menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

#droneshow #header .headerLeft_menu_item {
  display: flex;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #000;
  text-align: center;
  font-family: DIN, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 27px */
}

#droneshow #header .headerRight_menu_item {
  display: flex;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #000;
  text-align: center;
  font-family: DIN, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 27px */
}

#droneshow #header .logo_image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 69px;
  height: 27px;
  aspect-ratio: 23/9;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  #droneshow #header {
    padding: 0 40px;
  }
}

@media screen and (max-width: 767px) {
  #droneshow #header {
    padding: 0 20px;
  }

  #droneshow #header .logo_text {
    width: 100px;
  }

  #droneshow #header .headerRight {
    gap: 10px;
  }

  #droneshow #header .headerLeft_menu_item {
    font-size: 12px;
  }

  #droneshow #header .headerRight_menu_item {
    font-size: 12px;
    padding: 0 10px;
  }

  #droneshow #header .headerLeft {
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }

  #droneshow #header .headerLeft_menu_item {
    padding: 0 10px;
  }

  #droneshow #header .headerRight_menu_item {
    padding: 0 10px;
  }
}

/* section01 */
#droneshow #section01 {
  display: flex;
  width: 100%;
  height: 80vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 50.48%, #000 100%),
    url(/images/droneshow/index/drone_1000_takeoff_6.webp) center / cover no-repeat;
  background-repeat: no-repeat;
}

#droneshow #section01 .section01_title {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: DIN;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 54px */
}

#droneshow #section01 .section01_title span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 48px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

#droneshow #section01 .section01_subtitle {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: DIN;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 54px */
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  #droneshow #section01 {
    height: 60vh;
  }

  #droneshow #section01 .section01_title {
    font-size: 28px;
  }

  #droneshow #section01 .section01_subtitle {
    font-size: 28px;
  }

  #droneshow #section01 .section01_content {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  #droneshow #section01 .section01_title {
    font-size: 24px;
  }

  #droneshow #section01 .section01_title span {
    font-size: 42px;
  }

  #droneshow #section01 .section01_subtitle {
    font-size: 24px;
  }
}

/* section02 */
#droneshow #section02 {
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: #000;
}

#droneshow #section02 .section02_title {
  color: #fff;
  font-family: DIN, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

#droneshow #section02 .section02_title span {
  color: #39f;
  font-weight: 700;
}

#droneshow #section02 .section02_content {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: DIN, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  #droneshow #section02 {
    padding: 80px 40px;
  }
}

@media screen and (max-width: 767px) {
  #droneshow #section02 {
    padding: 60px 20px;
  }

  #droneshow #section02 .section02_title {
    font-size: 24px;
    text-align: center;
  }

  #droneshow #section02 .section02_content {
    font-size: 16px;
  }
}

/* section03 */
#droneshow #section03 {
  display: flex;
  padding: 80px 0;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: #000;
}

#droneshow #section03 .section03_inner {
  display: flex;
  width: 100%;
  padding: 0 40px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}

#droneshow #section03 .section03_item {
  display: flex;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
}

#droneshow #section03 .section03_item_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}

#droneshow #section03 .section03_item_content_title {
  color: #fff;
  font-family: DIN, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

#droneshow #section03 .section03_item_content_title span {
  color: #39f;
  font-weight: 700;
}

#droneshow #section03 .section03_item_content_text {
  color: rgba(255, 255, 255, 0.8);
  font-family: DIN, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

#droneshow #section03 .section03_item_logos {
  display: flex;
  width: 100%;
  padding: 24px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.8) 0%,
      #fff 25%,
      #fff 50%,
      #fff 74.92%,
      rgba(255, 255, 255, 0.8) 99.85%);
}

#droneshow #section03 .section03_item_logos_item {
  display: flex;
  width: 670px;
  height: 66.958px;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

#droneshow #section03 .section03_item_logos_item_ksd {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 128.286px;
  height: 50.83px;
}

#droneshow #section03 .section03_item_logos_item_ksd_img {
  width: 100%;
  height: 100%;
}

#droneshow #section03 .section03_item_logos_item_dsj {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 189px;
  height: 38px;
}

#droneshow #section03 .section03_item_logos_item_dsj_img {
  width: 100%;
  height: 100%;
}

#droneshow #section03 .section03_item_logos_item_dentsu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 142px;
  height: 37px;
}

#droneshow #section03 .section03_item_logos_item_dentsu_img {
  width: 100%;
  height: 100%;
}

#droneshow #section03 .section03_image {
  height: 100%;
  max-width: 710px;
  max-height: 710px;
  margin: 0 auto;
}

#droneshow #section03 .section03_image_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  #droneshow #section03 .section03_item_logos_item {
    width: 100%;
    max-width: 100%;
    height: auto;
    gap: 20px;
  }

  #droneshow #section03 .section03_item_logos_item_ksd_img {
    width: 70%;
    height: 70%;
  }

  #droneshow #section03 .section03_item_logos_item_dsj_img {
    width: 70%;
    height: 70%;
  }

  #droneshow #section03 .section03_item_logos_item_dentsu_img {
    width: 70%;
    height: 70%;
  }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  #droneshow #section03 .section03_inner {
    justify-content: flex-start;
    gap: 12px;
    padding: 0 20px;
  }

  #droneshow #section03 .section03_item_content_title {
    font-size: 26px;
  }

  #droneshow #section03 .section03_item_content_text {
    font-size: 16px;
  }

  #droneshow #section03 .section03_item {
    flex: 0 0 50% !important;
    max-width: 50%;
    padding: 0;
  }

  #droneshow #section03 .section03_image {
    flex: 0 0 50% !important;
    max-width: 50%;
    width: auto;
    margin: 0;
  }

  #droneshow #section03 .section03_item_logos {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 0;
  }
}

@media screen and (max-width: 767px) {
  #droneshow #section03 {
    padding: 60px 20px;
    flex: 0;
    max-width: 100%;
  }

  #droneshow #section03 .section03_inner {
    flex-direction: column;
    padding: 0;
    gap: 40px;
  }

  #droneshow #section03 .section03_item {
    flex: 0;
    max-width: 100%;
    padding: 0;
  }

  #droneshow #section03 .section03_item_content {
    align-items: center;
  }

  #droneshow #section03 .section03_item_content_title {
    font-size: 24px;
    text-align: center;
  }

  #droneshow #section03 .section03_item_content_text {
    font-size: 14px;
  }

  #droneshow #section03 .section03_image {
    width: 100%;
    height: 100%;
    max-width: 355px;
    max-height: 355px;
    margin: 0 auto;
  }

  #droneshow #section03 .section03_item_logos_item {
    width: 100%;
    max-width: 100%;
    height: auto;
    gap: 0;
  }

  #droneshow #section03 .section03_item_logos_item_ksd_img {
    width: 60%;
    height: 60%;
  }

  #droneshow #section03 .section03_item_logos_item_dsj_img {
    width: 60%;
    height: 60%;
  }

  #droneshow #section03 .section03_item_logos_item_dentsu_img {
    width: 60%;
    height: 60%;
  }

  #droneshow #section03 .section03_item_logos {
    width: 100%;
    padding: 8px 0;
  }
}

/* section04 */
#droneshow #section04 {
  display: flex;
  padding: 80px 0;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(/images/droneshow/common/bg.png) center / cover no-repeat, #000;
}

#droneshow #section04 .section04_inner {
  display: flex;
  width: 100%;
  padding: 0 40px;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}

#droneshow #section04 .section04_image {
  flex: 0 0 50%;
  height: 100%;
  max-width: 710px;
  max-height: 710px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

#droneshow #section04 .section04_image_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  object-position: 45%;
}

#droneshow #section04 .section04_item {
  display: flex;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
  align-items: center;
  flex: 1 0 0;
}

#droneshow #section04 .section04_item_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}

#droneshow #section04 .section04_item_content_title {
  color: #fff;
  font-family: DIN, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

#droneshow #section04 .section04_item_content_title span {
  color: #39f;
  font-weight: 700;
}

#droneshow #section04 .section04_item_content_text {
  color: rgba(255, 255, 255, 0.8);
  font-family: DIN, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  #droneshow #section04 .section04_inner {
    justify-content: flex-start;
    gap: 12px;
    padding: 0 20px;
  }

  #droneshow #section04 .section04_item_content_title {
    font-size: 26px;
  }

  #droneshow #section04 .section04_item_content_text {
    font-size: 16px;
  }

  #droneshow #section04 .section04_item {
    flex: 0 0 50% !important;
    max-width: 50%;
    padding: 0;
  }

  #droneshow #section04 .section04_image {
    flex: 0 0 50% !important;
    max-width: 50%;
    width: auto;
    margin: 0;
  }

  #droneshow #section04 .section04_item_content_title {
    font-size: 26px;
  }

  #droneshow #section04 .section04_item_content_text {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  #droneshow #section04 {
    padding: 60px 20px;
  }

  #droneshow #section04 .section04_inner {
    flex-direction: column;
    padding: 0;
    gap: 40px;
  }

  #droneshow #section04 .section04_item {
    flex: 0;
    max-width: 100%;
    padding: 0;
  }

  #droneshow #section04 .section04_image {
    width: 100%;
    height: 100%;
    max-width: 355px;
    max-height: 355px;
    margin: 0 auto;
  }

  #droneshow #section04 .section04_item_content {
    align-items: center;
  }

  #droneshow #section04 .section04_item_content_title {
    font-size: 24px;
    text-align: center;
  }

  #droneshow #section04 .section04_item_content_text {
    font-size: 14px;
  }
}

/* section05 */
#droneshow #section05 {
  display: flex;
  padding: 80px 0;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: #000;
}

#droneshow #section05 .section05_inner {
  display: flex;
  width: 100%;
  padding: 0 40px;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}

#droneshow #section05 .section05_item {
  display: flex;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
}

#droneshow #section05 .section05_item_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}

#droneshow #section05 .section05_item_content_title {
  color: #fff;
  font-family: DIN, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

#droneshow #section05 .section05_item_content_title span {
  color: #39f;
  font-weight: 700;
}

#droneshow #section05 .section05_item_content_text {
  color: rgba(255, 255, 255, 0.8);
  font-family: DIN, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

#droneshow #section05 .section05_image {
  height: 100%;
  max-width: 710px;
  max-height: 710px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#droneshow #section05 .section05_image_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  #droneshow #section05 .section05_inner {
    justify-content: flex-start;
    gap: 12px;
    padding: 0 20px;
  }

  #droneshow #section05 .section05_item_content_title {
    font-size: 26px;
  }

  #droneshow #section05 .section05_item_content_text {
    font-size: 16px;
  }

  #droneshow #section05 .section05_item {
    flex: 0 0 50% !important;
    max-width: 50%;
    padding: 0;
  }

  #droneshow #section05 .section05_image {
    flex: 0 0 50% !important;
    max-width: 50%;
    width: auto;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  #droneshow #section05 {
    padding: 60px 20px;
  }

  #droneshow #section05 .section05_inner {
    flex-direction: column;
    padding: 0;
    gap: 40px;
  }

  #droneshow #section05 .section05_item {
    flex: 0;
    max-width: 100%;
    padding: 0;
  }

  #droneshow #section05 .section05_image {
    width: 100%;
    height: 100%;
    max-width: 355px;
    max-height: 355px;
    margin: 0 auto;
  }

  #droneshow #section05 .section05_item_content {
    align-items: center;
  }

  #droneshow #section05 .section05_item_content_title {
    font-size: 24px;
    text-align: center;
  }

  #droneshow #section05 .section05_item_content_text {
    font-size: 14px;
  }
}

/* section06 */
#droneshow #section06 {
  display: flex;
  padding: 80px 0;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(/images/droneshow/common/bg.png) center / cover no-repeat, #000;
}

#droneshow #section06 .section06_inner {
  display: flex;
  width: 100%;
  padding: 0 40px;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
}

#droneshow #section06 .section06_image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 20px;
}

#droneshow #section06 .section06_image_img {
  width: 480px;
  height: 192px;
  aspect-ratio: 5/2;
  object-fit: cover;
}

#droneshow #section06 .section06_image_text {
  width: 240px;
  height: 95px;
  aspect-ratio: 48/19;
}

#droneshow #section06 .section06_item {
  display: flex;
  max-width: 50%;
  padding: 0 20px;
  align-items: center;
}

#droneshow #section06 .section06_item_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
}

#droneshow #section06 .section06_item_content_title {
  color: #fff;
  font-family: DIN, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

#droneshow #section06 .section06_item_content_title span {
  color: #39f;
  font-weight: 700;
}

#droneshow #section06 .section06_item_content_text {
  color: rgba(255, 255, 255, 0.8);
  font-family: DIN, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  #droneshow #section06 .section06_inner {
    justify-content: flex-start;
    gap: 12px;
    padding: 0 20px;
  }

  #droneshow #section06 .section06_item_content_title {
    font-size: 26px;
  }

  #droneshow #section06 .section06_item_content_text {
    font-size: 16px;
  }

  #droneshow #section06 .section06_item {
    max-width: 50%;
    padding: 0;
  }

  #droneshow #section06 .section06_image {
    flex: 0 0 50% !important;
    max-width: 50%;
    width: auto;
    margin: 0;
  }

  #droneshow #section06 .section06_item_content_title {
    font-size: 26px;
  }

  #droneshow #section06 .section06_item_content_text {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  #droneshow #section06 {
    padding: 60px 20px;
  }

  #droneshow #section06 .section06_inner {
    flex-direction: column;
    padding: 0;
    gap: 40px;
  }

  #droneshow #section06 .section06_item {
    flex: 0;
    max-width: 100%;
    padding: 0;
  }

  #droneshow #section06 .section06_image {
    height: 100%;
    max-width: 355px;
    max-height: 355px;
    margin: 0 auto;
  }

  #droneshow #section06 .section06_item_content {
    align-items: center;
  }

  #droneshow #section06 .section06_item_content_title {
    font-size: 24px;
    text-align: center;
  }

  #droneshow #section06 .section06_item_content_text {
    font-size: 14px;
  }
}

/* section07 */
#droneshow #section07 {
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: #fff;
  margin: 0;
}

#droneshow #section07 .section07_inner {
  display: flex;
  padding: 0 40px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

#droneshow #section07 .section07_item_content_title {
  color: #000;
  text-align: center;
  font-family: DIN, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 54px */
}

#droneshow #section07 .section07_item_content_text {
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  font-family: DIN, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}

#droneshow #section07 .section07_item_button_container {
  display: flex;
  width: 200px;
  height: 40px;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #000;
}

#droneshow #section07 .section07_item_button {
  color: #fff;
  text-align: center;
  font-family: DIN, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* 20px */
}

#droneshow #section07 .section07_item_button a {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#droneshow #section07 *,
#droneshow #section07 *::before,
#droneshow #section07 *::after {
  box-sizing: unset !important;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  #droneshow #section07 .section07_item_content_title {
    font-size: 26px;
  }

  #droneshow #section07 .section07_item_content_text {
    font-size: 16px;
  }

  #droneshow #section07 .section07_item_button {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  #droneshow #section07 .section07_inner {
    padding: 0 24px;
  }

  #droneshow #section07 .section07_item_content_title {
    font-size: 24px;
  }

  #droneshow #section07 .section07_item_content_text {
    font-size: 14px;
  }

  #droneshow #section07 .section07_item_button_container {
    width: 60%;
    height: 40px;
    padding: 10px 15px;
  }

  #droneshow #section07 .section07_item_button {
    font-size: 16px;
  }
}

/* section08 */
#droneshow #section08 {
  display: flex;
  padding: 80px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(/images/droneshow/common/bg.png) center / cover no-repeat, #000;
}

#droneshow #section08 .section08_inner {
  display: flex;
  width: 100%;
  padding: 0;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  align-self: stretch;
}

#droneshow #section08 .section08_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  align-self: stretch;
}

#droneshow #section08 .section08_item_content_title {
  width: 100%;
  color: #fff;
  text-align: center;
  font-family: DIN, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 54px */
}

#droneshow #section08 .section08_item_content_text {
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: DIN, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}

#droneshow #section08 .section08_item2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

#droneshow #section08 .section08_item2_content_title_box {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

#droneshow #section08 .section08_item2_content_title {
  color: #fff;
  font-family: DIN, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 36px */
  flex: 0 0 auto;
}

#droneshow #section08 .section08_item2_content_title_rectangle {
  flex: 1;
  height: 1px;
  background: #fff;
  min-width: 0;
}

#droneshow #section08 .section08_item2_content_box {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

#droneshow #section08 .section08_item2_content_box_img {
  width: 100%;
  max-width: 700px;
  height: 400px;
  aspect-ratio: 702/394.88;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  #droneshow #section08 .section08_item_content_title {
    font-size: 26px;
  }

  #droneshow #section08 .section08_item_content_text {
    font-size: 16px;
  }

  #droneshow #section08 .section08_item2_content_title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  #droneshow #section08 {
    padding: 60px 20px;
  }

  #droneshow #section08 .section08_inner {
    flex-direction: column;
    padding: 0;
    gap: 40px;
  }

  #droneshow #section08 .section08_item_content_title {
    font-size: 26px;
  }

  #droneshow #section08 .section08_item_content_text {
    font-size: 16px;
  }

  #droneshow #section08 .section08_item2_content_title {
    width: fit-content;
    font-size: 16px;
  }
}

/* footer */
#droneshow #footer {
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  background: #000;
}

#droneshow #footer .footer_inner {
  display: flex;
  padding: 0 20px;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  align-self: stretch;
}

#droneshow #footer .footer_item_content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: stretch;
}

#droneshow #footer .footer_item_content span {
  color: #fff;
  font-family: DIN, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}

#droneshow #footer .footer_item_content a {
  color: #fff;
  text-align: center;
  font-family: DIN, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}

#droneshow #footer .footer_item_content_copyright {
  align-self: stretch;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: DIN, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}

@media screen and (max-width: 1100px) and (min-width: 1024px) {
  #droneshow #footer .footer_item_content a {
    font-size: 12px;
  }

  #droneshow #footer .footer_item_content_copyright {
    font-size: 12px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  #droneshow #footer {
    padding: 60px 0;
  }

  #droneshow #footer .footer_item_content a {
    font-size: 12px;
  }

  #droneshow #footer .footer_item_content_copyright {
    font-size: 12px;
  }
}

@media screen and (max-width: 860px) {
  #droneshow #footer {
    padding: 40px 0;
  }

  #droneshow #footer .footer_item_content {
    flex-direction: column;
  }

  #droneshow #footer .footer_item_content a {
    font-size: 12px;
  }

  #droneshow #footer .footer_item_content_copyright {
    font-size: 12px;
  }
}

#droneshow #section08 .swiper {
  width: 100% !important;
  max-width: 1410px !important;
  /* 700px × 2 + 10px (spaceBetween) */
  height: 400px !important;
  overflow: hidden !important;
  position: relative !important;
  box-sizing: border-box !important;
}

#droneshow #section08 .swiper-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  height: 400px !important;
  display: flex !important;
  align-items: stretch !important;
  box-sizing: border-box !important;
}

#droneshow #section08 .swiper-slide {
  flex-shrink: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  box-sizing: border-box !important;
  height: 400px !important;
  min-height: 400px !important;
  max-height: 400px !important;
}

#droneshow #section08 .swiper-slide img {
  width: 100% !important;
  max-width: 700px !important;
  height: 400px !important;
  min-height: 400px !important;
  max-height: 400px !important;
  object-fit: cover !important;
  display: block !important;
  box-sizing: border-box !important;
}

@media screen and (max-width: 1024px) and (min-width: 500px) {
  #droneshow #section08 .swiper {
    width: auto !important;
    max-width: auto !important;
    height: 400px !important;
    min-height: 400px !important;
    max-height: 400px !important;
    aspect-ratio: 702/394.88 !important;
  }
}

@media screen and (max-width: 500px) {
  #droneshow #section08 .swiper {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    max-height: 300px !important;
    object-fit: cover !important;
  }

  #droneshow #section08 .swiper-wrapper {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
  }

  #droneshow #section08 .swiper-slide {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    object-fit: cover !important;
  }

  #droneshow #section08 .swiper-slide img {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    min-height: 300px !important;
    object-fit: cover !important;
  }
}