@charset "UTF-8";

/**
 * オリジナルcss
 */

/* content */

section.content {
  padding-top: 80px;
}

.content_bg_lb {
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 70px;
  text-align: center;
  background: linear-gradient(
    90deg,
    var(--color-bg-blue) calc(50% + 660px),
    #fff calc(50% + 660px)
  );
}

.block_header {
  .subtitle_en {
    font-size: 3.2rem;
    font-family: var(--font-en);
    color: #d0e6f2;
    opacity: 0.7;
  }
  .block_title {
    font-size: 3.6rem;
    font-weight: 700;
  }
  p {
    margin-top: 40px;
  }
}

.block_header_center {
  text-align: center;
}

.block_header_general {
  border-bottom: 1px solid rgba(221, 221, 221, 1);
  padding-bottom: 24px;
  .subtitle_en {
    font-size: 1.2rem;
  }
  .block_title {
    font-size: 2.8rem;
  }
}

.page_info {
  position: relative;
  .block_header {
    max-width: 64%;
    height: 550px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    .block_header_sub {
      display: flex;
      flex-direction: column;
      h2 {
        display: flex;
        flex-direction: column;
        gap: 16px;
        font-size: 3.2rem;
        font-family: var(--font-zen);
        span {
          display: block;
          width: fit-content;
          background: #f8fbfe;
          border-radius: 10px;
          padding: 20px;
        }
      }
      p {
      }
    }
  }
  .block_header_noimage {
    max-width: none;
    height: auto;
  }
  .page_info_image {
    img {
      position: absolute;
      top: 0;
      right: 0;
      width: calc(120px + 29%);
      height: 100%;
      object-fit: cover;
    }
  }
}

.breadcrumbs {
  padding-top: 10px;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  a {
    text-decoration: none;
  }
}

/* works */

.top_content_works {
  margin-top: 80px;
}

/* arrow_content */

.arrow_content_detail {
  position: relative;
}

.arrow_content_detail::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: calc(50% + 640px);
  left: 0;
  height: 68px;
  background-color: var(--color-theme-sub); /* 矢印の色 */
  z-index: 1; /* 背景より手前、コンテンツより奥 */
}
.arrow_content_detail::after {
  content: "";
  position: absolute;
  top: calc(50% - 67px);
  left: calc(50% + 640px);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 69px solid transparent;
  border-bottom: 69px solid transparent;
  border-left: 82px solid var(--color-theme-sub);
  border-right: 0;
}

.drone_content_flow {
  .arrow_content_detail::before {
    top: calc(50% + 50px);
  }
  .arrow_content_detail::after {
    top: calc(50% - 17px);
  }
}

@media screen and (max-width: 1450px) {
  .arrow_content_detail::before {
    width: calc(100vw - 82px);
  }
  .arrow_content_detail::after {
    left: calc(100vw - 82px + (100% - 100vw));
  }
}

@media screen and (max-width: 740px) {
  .arrow_content_detail {
    margin-top: 32px;
  }
  .arrow_content_detail::before {
    width: 68px;
    height: calc(100%);
    left: 104px;
  }
  .arrow_content_detail::after {
    transform: rotate(90deg);
    top: auto;
    bottom: -109px;
    left: 94px;
  }
}

.arrow_content_elements {
  padding-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
  justify-content: center;
  position: relative;
  z-index: 10;
  .arrow_content_element {
    width: calc((100% - 80px) / 6);
    .icon {
      width: 114px;
      background: #fff;
      border-radius: 50%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        max-width: 73px;
      }
      margin: 0 auto;
    }
    .icon::before {
      content: "";
      display: block;
      padding-top: 100%;
    }
    .icon_arrow {
      width: 0;
      height: 0;
      border-style: solid;
      border-right: 6px solid transparent;
      border-left: 6px solid transparent;
      border-top: 27px solid #ffffff;
      border-bottom: 0;
      margin: -5px auto 0 auto;
    }
    h3 {
      margin-top: 46px;
      font-size: 2rem;
      text-align: center;
      height: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    ul {
      padding: 0;
      margin: 28px 0 0 0;
      list-style: none;
      li {
        text-align: left;
        font-size: 1.3rem;
        position: relative;
        padding-left: 11px;
      }
      li::before {
        content: "";
        display: block;
        background: #373737;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 0.8rem;
      }
    }
  }
}

/* pagination */

.p_pagination {
  margin-top: 40px;
  text-align: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  span,
  a {
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  span.current {
    color: #fff;
    background: var(--color-theme-sub);
    border-radius: 50%;
  }
}

/* post_navigation */

.post_navigation {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
  align-items: center;
  a {
    text-decoration: none;
  }
  .post_navigation_center {
    max-width: 335px;
    width: 100%;
    a {
      width: 100%;
      display: block;
      text-align: center;
      background: var(--color-theme-sub);
      color: #fff;
      padding: 13px 10px;
      border-radius: 50px;
    }
  }
  .post_navigation_prev {
    position: relative;
    width: 90px;
  }
  .post_navigation_prev::before {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    transform: translateY(-50%);
    right: calc(100% + 16px);
    border-top: 1px solid var(--color-text);
    border-left: 1px solid var(--color-text);
    width: 7px;
    height: 7px;
    transform: rotate(-45deg);
  }
  .post_navigation_next {
    position: relative;
    width: 90px;
  }
  .post_navigation_next::before {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    transform: translateY(-50%);
    left: calc(100% + 16px);
    border-top: 1px solid var(--color-text);
    border-right: 1px solid var(--color-text);
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
  }
  .no_arrow::before {
    content: none;
  }
}

/* single content */

.single_content {
  margin-top: 64px;
  overflow: hidden;
  #toc_container {
    width: 100%;
    border: 1px solid #C6DFF6;
    border-radius: 5px;
    padding: 40px;
    .toc_title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-theme-sub);
    }
    .toc_title + .toc_list {
      margin-top: 30px;
    }
    .toc_list {
      line-height: 160%;
    }
  }
  h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-theme-sub);
    background: #e7f7ff;
    padding: 5px 20px;
    margin: 16px 0 22px;
  }
  h3 {
    font-size: 2rem;
    padding: 10px 5px;
    margin: 12px 0;
    color: var(--color-theme-sub);
    border-bottom: 1px solid #2b82b1;
  }
  h4 {
    font-size: 1.8rem;
    color: var(--color-theme-sub);
    margin: 12px 0;
  }
  h5 {
    font-size: 1.6rem;
    color: var(--color-theme-sub);
    margin: 12px 0;
  }
  p {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 1110px) {
}
@media screen and (max-width: 860px) {
}
@media screen and (max-width: 740px) {
  .breadcrumbs {
    padding-top: 16px;
    font-size: 1.2rem;
  }
  section.content {
    padding-top: 40px;
  }
  .page_info {
    .block_header {
      max-width: none;
      height: auto;
      .block_header_sub {
        margin-top: 32px;
        h2 {
          font-size: 2rem;
          gap: 8px;
          span {
            padding: 10px 4px;
          }
        }
      }
      p {
        margin-top: 32px;
      }
    }
    .page_info_image {
      img {
        position: relative;
        width: 100%;
        margin-top: 32px;
      }
    }

    /* SP：.inner 内の画像を右端まで伸ばす */
    .page_info_image.view_sp,
    .page_info_image_sp {
      width: calc(100% + var(--inner-padding-x));
      margin-right: calc(-1 * var(--inner-padding-x));

      img {
        width: 100%;
        max-width: none;
        height: auto;
      }
    }
  }
  .block_header {
    .block_title {
      font-size: 2.9rem;
    }
    .subtitle_en {
      font-size: 2.8rem;
    }
  }
  .arrow_content_elements {
    flex-direction: column;
    .arrow_content_element {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 60px;
      position: relative;
      justify-content: space-between;
      align-items: flex-start;
      .icon {
        width: 114px;
        height: 114px;
        margin: 0;
        img {
          width: auto;
          height: auto;
        }
      }
      .icon_arrow {
        position: absolute;
        left: 114px;
        transform: rotate(-90deg);
        top: 48px;
        margin: 0;
      }
      /* h3が直下にある場合（drone / business） */
      > h3 {
        width: calc(100% - 174px);
        padding-top: 31px;
        margin-top: 0;
        justify-content: flex-start;
        align-items: flex-start;
        height: auto;
        text-align: left;
        font-size: 1.8rem;
      }
      .arrow_content_text {
        width: calc(100% - 174px);
        h3 {
          padding-top: 31px;
          margin-top: 0;
          justify-content: flex-start;
          align-items: flex-start;
          height: auto;
          text-align: left;
          font-size: 1.8rem;
        }
        ul {
          margin-top: 8px;
        }
      }
    }
  }
  .post_navigation {
    .post_navigation_center {
      order: 1;
      max-width: none;
    }
    .post_navigation_prev {
      order: 2;
    }
    .post_navigation_next {
      order: 3;
    }
  }
  .single_content {
    margin-top: 40px;
    #toc_container {
      padding: 40px 16px;
    }
  }
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 500px) {
}
