/* ページ全体の横スクロールを止めるために */
html, body {
  overflow-x: hidden;
}


/* ================= Header ================= */

/* 企業ロゴ */
.fv__logo {
  width: 17vw;
}

/* 右上：キャラ＋メニュー */
.fv__rightTop {
  position: absolute;
  top: clamp(6px, 1.8vw, 18px);
  right: 5vw;
  width: min(280px, 22vw);
}

/* 雲 */
.fv__rightCloud {
  position: absolute;
  top: clamp(60px, 6vw, 110px);
  right: clamp(18px, 3vw, 40px);
  width: min(260px, 20vw);
  opacity: 0.95;
}

@media (max-width: 800px) {

  /* 企業ロゴ */
  .fv__logo {
    width: vw;
    left: -6vw;
  }
}

/* ================= FV(PC) ================= */
.fv {
  /* 建物と芝生の高さ */
  --grass-h: 9vw;
  --town-h: 9.7vw;

  /* FVの背景 */
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 70vw;
  margin-top: 90px;
}



/* =================================
FVアニメーション
===================================== */

/* 初期状態 */
.fv__title,
.fv__medals {
  opacity: 0;
  will-change: transform, opacity;
}

/* ① タイトル：左からフェードイン */
.fv__title {
  animation: fvFadeInLeft 1s ease-out .2s forwards;
}

/* ② メダル：下から上にフェードイン */
.fv__medals {
  animation: fvFadeInUp 1s ease-out .8s forwards;
}

@keyframes fvFadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fvFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 動きが苦手な人向け */
@media (prefers-reduced-motion: reduce) {
  .fv__title,
  .fv__medals {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* 背景（街） */
.fv::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: var(--grass-h);
  width: 100%;
  max-width: 1800px;
  height: var(--town-h);
  background: url(../../images/droneconstruction/fv/fv_bg_town.png) bottom center / 100% 100% no-repeat;
  z-index: 1;
}

/* 背景（芝生） */
.fv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: var(--grass-h);
  background: url(../../images/droneconstruction/fv/fv_bgGlass.png) bottom center / 100% 100% no-repeat;
  z-index: 2;
}

/* 中身の最大幅 */
.fv__inner {
  position: relative;

  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  justify-content: center;
  /* グリッドエリア */

  grid-template-areas:
    "pr title ."
    "pr medals rightWorker";
}

/* 左の3つのPR */
.fv__leftPr {
  grid-area: pr;
  width: 19vw;
  margin-top: 6vh;
  justify-content: center;
}

/* タイトル */
.fv__title {
  grid-area: title;
  width: 59vw;
}

/* 3冠メダルの幅（PC） */
.fv__medals {
  grid-area: medals;
  width: 39vw;
  margin: 0 auto;
}

.fv__logo img,
.fv__leftPr img,
.fv__title img,
.fv__medals img,
.fv__col--right img {
  display: block;
  width: 100%;
  height: auto;
}

/* 右下：ドローン操縦者 */
.fv__rightWorker {
  grid-area: rightWorker;
  right: 0;
  bottom: 0;
  width: 16vw;
  z-index: 10;
}


.fv__rightWorker img {
  transform: translateY(7vw);
  width: 100%;
  height: auto;
  display: block;
}

/* ドローン単体(PC)(fv__innerの外にポジアブで入れてる) */
.fv__rightDrone {
  position: absolute;
  bottom: -6vw;
  right: 14vw;
  width: 12vw;
  z-index: 6;
}

.fv__rightDrone img {
  width: 100%;
  height: auto;
  display: block;

  animation: floatDrone 5s ease-in-out infinite;
  will-change: transform;
}

/* ドローンの動き */
@keyframes floatDrone {
  0% {
    transform: translateY(-28vw) translateX(0) rotate(-6deg);
  }

  20% {
    transform: translateY(calc(-28vw - 12px)) translateX(5px) rotate(-4deg);
  }

  50% {
    /* ← 一番揺れるポイント */
    transform: translateY(calc(-28vw - 26px)) translateX(6px) rotate(-10deg);
  }

  80% {
    transform: translateY(calc(-28vw - 12px)) translateX(-5px) rotate(-13deg);
  }

  100% {
    transform: translateY(-28vw) translateX(0) rotate(-6deg);
  }
}

.fv_bgSp--bottom {
  display: none;
}

/* =====FV（TB）===== */

@media (max-width: 768px) {
  .fv {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    padding: 60px 0 0;
    margin-top: 0;
  }

  .fv__rightWorker img {
    display: block;
    width: 90%;
    height: auto;
    transform: translate(0, 3vw);
  }

}



/* =====FV（SP）===== */

@media (max-width: 500px) {

  .fv {
    position: relative;
    overflow: visible;
    width: 100%;
    height: auto;
    padding: 78px 0 0;
    margin-top: 0;
  }

  /* PCの擬似要素は消す */
  .fv::before,
  .fv::after {
    content: none;
  }

  .fv__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr;
    grid-template-areas:
      "title title"
      "rightWorker pr"
      "bgSp bgSp";
  }

  .fv__title {
    grid-area: title;
    width: 100%;
    margin: 0 auto 0;
  }

  .fv__title img {
    display: block;
    width: 100%;
    height: auto;
  }

  .fv__leftPr {
    grid-area: pr;
    width: 46vw;
    margin-top: -10vw;
    justify-self: end;
    align-self: center;
    z-index: 3;
  }

  .fv__leftPr img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* 人物を下にはみ出させる */
  .fv__rightWorker {
    grid-area: rightWorker;
    width: 38vw;
    margin-top: -14vw;
    transform: scale(-1, 1);
    z-index: 1;
  }

  .fv__rightWorker img {
    display: block;
    width: 90%;
    height: auto;
    transform: translate(0vw, 22vw);
  }

  /* メダルはSPでは芝生と同化させる */
  .fv__medals,
  .fv__medals img {
    display: none;
  }

  /* 芝生・街・メダルのまとめ画像 */
  .fv_bgSp--bottom {
    grid-area: bgSp;
    width: 100%;
    z-index: 2;
    display: block;
    margin-top: -22vw;
  }

  .fv_bgSp--bottom img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* ドローン */
  .fv__rightDrone {
    position: absolute;
    left: 37vw;
    top: 118vw;
    width: 18vw;
    z-index: 6;
  }

  .fv__rightDrone img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* ドローンの動き（SP） */
  @keyframes floatDrone {
    0% {
      transform: translateY(-28vw) translateX(0) rotate(-6deg);
    }

    20% {
      transform: translateY(calc(-28vw - 12px)) translateX(5px) rotate(-4deg);
    }

    50% {
      /* ← 一番揺れるポイント */
      transform: translateY(calc(-28vw - 26px)) translateX(2px) rotate(-10deg);
    }

    80% {
      transform: translateY(calc(-28vw - 12px)) translateX(-3px) rotate(-13deg);
    }

    100% {
      transform: translateY(-28vw) translateX(0) rotate(-6deg);
    }
  }
}

/* =================================
 フローティング CTA ★★★PC★★★
===================================== */
.floatingCta {
  position: fixed;
  right: 0;
  bottom: clamp(14px, 2vw, 24px);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity .3s ease,
    transform .3s ease,
    visibility .3s ease;
}

.floatingCta.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.floatingCta__item {
  display: block;
  width: clamp(56px, 5vw, 72px);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floatingCta__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .24);
}

.floatingCta__item picture,
.floatingCta__item img {
  display: block;
  width: 100%;
  height: auto;
}

/* =================================
 フローティング CTA ★★★SP★★★
===================================== */
@media (max-width: 500px) {
  .floatingCta {
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%) translateY(12px);

    width: 100%;
    padding: 16px 14px calc(16px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
    background: rgba(255, 255, 255, 0.62);
  }

  .floatingCta.is-show {
    transform: translateX(-50%) translateY(0);
  }

  .floatingCta__item {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  /* SP版はホバー無しで */
  .floatingCta__item:hover {
    transform: none;
    box-shadow: none;
  }
}

/* =================================
intro  ★★★PC★★★
===================================== */

.intro {
  position: relative;
  background-image: url(../../images/droneconstruction/intro/intro_bgGray.png);
}

/* 建物 */
.intro::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 13px;
  width: 100%;
  height: 100px;
  background: url(../../images/droneconstruction/intro/intro_bg_town.png) bottom center / contain no-repeat;
  z-index: 0;
}

/* 地面 */
.intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background: url(../../images/droneconstruction/intro/intro_bg_ground.png) bottom center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.intro__inner {
  max-width: 1440px;
  position: relative;
  z-index: 2;
  /* テキストや看板を背景より前へ */
  margin: 0 auto;
  padding: clamp(56px, 6vw, 88px) 20px 0;
  text-align: center;
  z-index: 10;
}

/* 上部の左右人物 */
.intro__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(-160px, -13vw, -180px);
  width: 100%;
  height: clamp(260px, 30vw, 420px);
  z-index: 20;

  background-image:
    url(../../images/droneconstruction/fv/fv_human01.png),
    url(../../images/droneconstruction/fv/fv_human02.png);
  background-repeat: no-repeat;
  background-position:
    left clamp(-10vw, 1.8vw, 20px) top 0,
    right clamp(80px, 12vw, 240px) bottom 20px;
  background-size:
    22%,
    10%;
}

/* 上部の左右人物（SPの時は消す） */
@media (max-width: 500px) {
  .intro__inner::before {
    display: none;
  }
}

/* introの見出し部分 */

.intro__title {
  text-align: center;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-size: clamp(2.0rem, 22vw, 2.4rem);
}

/* 傍点 */
.intro__titleLine--blue {
  text-emphasis-style: dot;
  text-emphasis-color: var(--color-accent);
}

.intro__titleLine {
  display: block;
}

/* 青文字 */
.intro__titleBlue,
.intro__titleLine--blue {
  color: var(--color-navy-dark);
}

/* 赤文字 */
.intro__titleRed {
  color: var(--color-accent);
}

.intro__inner h2 {
  margin: 0;
  font-size: clamp(2.2rem, 2.4vw, 3.4rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.intro__inner p {
  margin: clamp(14px, 1.4vw, 18px) auto 0;
  max-width: 920px;
  font-size: clamp(1.4rem, 1.0vw, 1.6rem);
  line-height: 2;
  color: var(--color-navy-dark);
}

/* 看板エリア */
.intro__box {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 4vw;
  overflow: hidden;

  /* 街＋worryManの逃げ */
  padding-bottom: 8vw;
}

/* 中央worryMan（PC） */
.intro__box::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 14vw;
  height: 14vw;
  max-width: 800px;
  background: url(../../images/droneconstruction/intro/intro_worryMan.png) center / contain no-repeat;
  z-index: 5;
}

/* 2カラム */
.intro__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8vw;
  align-items: start;
}

/* ================= 看板 ================= */

/* 木枠（板の部分） */
.intro__card {
  position: relative;
  background-image: url(../../images/droneconstruction/intro/intro_card_wood.png);
  background-position: center;
  background-size: 100% 100%;
  padding: 1vw;
  border-radius: 4px;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.8),
    0 2px 4px rgba(0, 0, 0, .7);
  z-index: 3;
}

/*木枠（支柱/上部分）： */
.intro__card::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2vw;
  width: 1.6vw;
  height: 3vw;
  background-image: url(../../images/droneconstruction/intro/intro_card_wood.png);
  background-position: center;
  background-size: 100% 100%;
  border-radius: 4px;
  z-index: -10;
}

/*木枠（支柱/下部分）： */
.intro__card::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  /* 看板の下から生える */
  top: 80%;
  width: 1.6vw;
  height: 30vw;
  background-image: url(../../images/droneconstruction/intro/intro_card_wood.png);
  background-position: center;
  background-size: 100% 100%;
  border-radius: 4px;
  z-index: -10;
}

/* 看板の中の白い紙 */
.intro__whitebox {
  position: relative;
  z-index: 5;
  background: var(--color-white);
  border-radius: 4px;
  margin: 0 auto;
  padding: 1vw;
}

/* ================= 看板の飾り(PC) ================= */

/* 左のドローン */
.intro__cardDeco--L {
  position: relative;
}

.intro__cardDeco--L::before {
  content: "";
  position: absolute;
  top: -4vw;
  left: 1vw;
  width: clamp(5vw, 8vw, 10vw);
  max-width: 300px;
  height: 10vw;
  background-image: url(../../images/droneconstruction/intro/intro_decoSign--L.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
}

/* 右の工事イラスト */
.intro__cardDeco--R {
  position: relative;
}

.intro__cardDeco--R::after {
  content: "";
  position: absolute;
  top: clamp(-3vw, -6vw, -8vw);
  right: 2vw;
  width: clamp(5vw, 8vw, 10vw);
  height: 14vw;
  max-width: 300px;
  background-image: url(../../images/droneconstruction/intro/intro_decoSign--R.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 6;
}

/* 青帯 */
.intro__head {
  padding: clamp(10px, 1.2vw, 12px) clamp(12px, 1.4vw, 14px);
  background: var(--color-blue-bright);
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.intro__head span {
  font-size: 1.6rem;
}

.intro__list {
  margin: 0;
  padding: clamp(8px, 1.4vw, 10px) clamp(14px, 1.6vw, 18px);
  list-style: none;
  text-align: left;
}

.intro__list li {
  position: relative;
  padding: clamp(10px, 0.8vw, 12px) 0 clamp(10px, 0.8vw, 12px) clamp(36px, 3.0vw, 48px);
  line-height: 1.3;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gray-dark);
  border-bottom: 2px dotted var(--color-navy-dark);
  letter-spacing: 0.02em;
}

/* 左のチェックマーク */
.intro__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: clamp(16px, 2.0vw, 24px);
  height: clamp(16px, 2.0vw, 24px);

  background-image: url(../../images/droneconstruction/intro/intro_ck_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ================= スマホver（縦並びにする）================= */

@media (max-width: 700px) {

  /* 看板（SP） */
  .intro__cols {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  /* 木枠（板の部分）(SP)  */
  .intro__card {
    padding: 1.5vw;
    border-radius: 6px;
  }

  /*木枠（支柱/上部分）(SP)*/
  .intro__card::before {
    content: "";
    top: -2vw;
    width: 2vw;
    height: 3vw;
    border-radius: 4px;

  }

  /*木枠（支柱/下部分）(SP) */
  .intro__card::after {
    content: "";
    position: absolute;

    /* 看板の下から生える */
    top: 80%;
    width: 2vw;
    height: 90vw;
  }

  /* 看板の中の白い紙(SP) */
  .intro__whitebox {
    position: relative;
    border-radius: 6px;
    margin: 0 auto;
    padding: 1.5vw;
  }

  .intro__box {
    padding-bottom: 36vw;
    /* worryManと街の逃げ */
  }

  /* 中央worryMan（SP） */
  .intro__box::after {
    content: "";
    bottom: 0;
    width: 60vw;
    height: 30vw;
    max-height: 200px;
    z-index: 5;
  }

  /*  看板の飾り(SP)  */

  /* 左のドローン */
  .intro__cardDeco--L {
    position: relative;
  }

  .intro__cardDeco--L::before {
    content: "";
    position: absolute;
    top: -4vw;
    left: 1vw;
    width: 20vw;
    max-width: 300px;
    background-image: url(../../images/droneconstruction/intro/intro_decoSign--L.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
  }

  /* 右の工事イラスト */
  .intro__cardDeco--R {
    position: relative;
  }

  .intro__cardDeco--R::after {
    content: "";
    position: absolute;
    top: -5.2vw;
    right: 2vw;
    width: 16vw;
    max-width: 300px;
    background-image: url(../../images/droneconstruction/intro/intro_decoSign--R.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 6;
  }
}

/* ================= ここまでintro ================= */


/* =================================
sec01-01 ★★★PC★★★
===================================== */

.sec01 {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 20px;
  text-align: center;
}

.sec01__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* sec01-01 タイトル（PC） */
/* 右の文字 */
.sec01__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 18px);
  margin: 0 0 clamp(18px, 2.2vw, 28px);
  font-weight: 900;
  font-size: clamp(2.2rem, 2.6vw, 4rem);
  line-height: 1.25;
  letter-spacing: .01em;
  color: var(--color-navy);
  text-align: left;
}

/* 左の注意アイコン（PC）*/
.sec01__icon {
  flex: 0 0 auto;
  width: 4vw;
  height: 4vw;
  background: url(../../images/droneconstruction/sec01/sec01_atention.png) center / contain no-repeat;
  align-self: start;
  margin-top: -0.5vw;
  max-width: 100px;
}

/* 文字下の赤い下線（PC） */
.sec01__u {
  display: inline-block;
  padding-bottom: 0.1em;
  border-bottom: 2px solid var(--color-accent);
}

/* 700px以下は折り返し */
@media (max-width: 700px) {
  .sec01__title {
    justify-content: flex-start;
  }

  .sec01__titleText {
    white-space: normal;
  }
}

/* 4カード＋中央（bg画像）の配置 */
.sec01__grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px) 1fr;
  grid-template-rows: auto auto;
  gap: clamp(8px, 1.6vw, 18px) clamp(8px, 2vw, 24px);
  align-items: center;
}

/* 中央：background-image */
.sec01__center {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* 正方形の箱。必要なら 4/3 などに変更OK */
  background-image: url(../../images/droneconstruction/sec01/sec01_worryWoman.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* カード共通 */
.sec01__card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
  overflow: hidden;
  text-align: center;
}

.sec01__head {
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 800;
  text-align: center;
  padding: 10px 12px;
  font-size: 2.4rem;
}

.sec01__body {
  padding: 14px 16px 16px;
  position: relative;
}

/*
/* ▼（青帯の下の三角） */
/* .sec01__body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 80px;
  transform: translate(-50%, -100%);
  width: 4px;
  height: 4px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--color-navy);
} */

.sec01__main {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.4;
  font-size: 1.8rem;
}

.sec01__sub {
  margin: 0;
  color: var(--color-accent);
  font-weight: 800;
  line-height: 1.5;
  font-size: 1.8rem;
}

/* 配置（四隅） */
.sec01__card--lt {
  grid-column: 1;
  grid-row: 1;
}

.sec01__card--rt {
  grid-column: 3;
  grid-row: 1;
}

.sec01__card--lb {
  grid-column: 1;
  grid-row: 2;
}

.sec01__card--rb {
  grid-column: 3;
  grid-row: 2;
}

/* 900px以下：縦積み */
@media (max-width: 900px) {
  .sec01__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }


  /* 右の文字（SP） */
  .sec01__title {
    display: block;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: .01em;
    text-align: center;
  }

  /* 左の注意アイコン（SP）*/
  .sec01__icon {
    width: 8vw;
    height: 8vw;
    display: block;
    justify-content: center;
    margin: -20px auto 10px;
  }

  /* 文字下の赤い下線（SP） */
  .sec01__u {
    display: inline-block;
    border-bottom: 2px solid var(--color-accent);
    line-height: 1.2;

  }

  /* 真ん中の女性のイラスト（PC） */
  .sec01__center {
    grid-column: 1;
    grid-row: 0;
    width: min(460px, 90%);
    margin: -48px auto -30px;
  }

  .sec01__card--lt,
  .sec01__card--rt,
  .sec01__card--lb,
  .sec01__card--rb {
    grid-column: 1;
    grid-row: auto;
  }
}

/* ================= ここまでがsec01 ================= */

/* =================================
ここからがsec01-2 ★★★PC★★★
===================================== */

.sec01__block2 {
  margin-top: clamp(42px, 5vw, 72px);
}

/* 上段（バクダン＋見出し）（PC）*/
.sec01__top2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin: 0 auto;
}

/* バクダン */
.sec01__badCase {
  flex: 0 0 auto;
  width: clamp(120px, 10vw, 170px);
}

.sec01__badCase img {
  display: block;
  width: 100%;
  height: auto;
}

/* 見出し(PC) */
.sec01__title2 {
  margin: 0;
  color: var(--color-navy);
  font-weight: 900;
  line-height: 1.25;
  font-size: clamp(2.2rem, 2.6vw, 3.2rem);
}

/* 赤い下線(PC) */
.sec01__u2 {
  display: inline-block;
  padding-bottom: 0.1em;
  border-bottom: 2px solid var(--color-accent);
}

/* 中段(PC) */
.sec01__mid2 {
  position: relative;
  margin-bottom: vw;
  padding-top: -0.5vw;
}

/* 赤い矢印部分(PC) */
.sec01__mid2__allow {
  position: relative;
  z-index: 0;
  margin: 0 auto;

  width: clamp(360px, 46vw, 560px);
  height: clamp(78px, 10vw, 120px);
  display: flex;
  align-items: flex-start;
  justify-content: center;

  /* 矢印の中の文字 */
  padding-top: 1vw;
  color: var(--color-white);
  font-weight: 900;
  line-height: 1;
  font-size: clamp(1.8rem, 2.6vw, 3.0rem);
  letter-spacing: 0.04em;
  align-items: center;

  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.40) 16%,
      #ff8c92 34%,
      #ff666c 62%,
      #ff5e65 100%);

  clip-path: polygon(14% 0,
      86% 0,
      86% 48%,
      100% 48%,
      50% 100%,
      0 48%,
      14% 48%);
}

/* 右ドローン */
.sec01__drone {
  position: absolute;
  right: 6vw;
  top: -3vw;
  width: 12vw;
  height: 15vw;
  max-width: 180px;
  background: url(../../images/droneconstruction/sec01/sec01_drone.png) center/contain no-repeat;
}

/* まるッと！から下(PC) */
.sec01__catch2 {
  position: relative;
  display: block;
  margin: 5vw 0 2vw;
  color: var(--color-navy);
  font-weight: 900;
  line-height: 1.15;
  font-size: clamp(2.4rem, 3.2vw, 4.6rem);
}

/* 「まるッと！」画像(PC) */
.sec01__catch2::before {
  content: "";
  position: absolute;
  left: 10vw;
  top: 0vw;
  margin-top: -9vw;
  width: 14vw;
  height: 12vw;
  background-image: url(../../images/droneconstruction/sec01/sec01_marruto.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(-10deg);
  max-width: 200px;

}

.sec01__chips {
  list-style: none;
  padding: 0 0 3vw;
  margin: clamp(12px, 1.6vw, 18px) auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

/* 「青ボタン + ×」(PC) */
.sec01__chipUnit {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.sec01__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(200px, 22vw, 240px);
  padding: clamp(12px, 1.6vw, 18px) clamp(20px, 2.6vw, 34px);
  text-align: center;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: 8px;
  font-weight: 900;
  font-size: clamp(1.8rem, 2.4vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: 0.2em;
}

.sec01__chipsSep {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--color-accent);
  font-weight: 900;
  font-size: clamp(2.4rem, 2.8vw, 3.6rem);
  line-height: 1;
}

/* 下段：人物＋吹き出し（PC） */
.sec01__bottom2 {
  display: grid;
  grid-template-columns: clamp(140px, 16vw, 170px) 1fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
}

.sec01__person {
  width: clamp(140px, 16vw, 170px);
  height: clamp(140px, 16vw, 170px);
  background: url(../../images/droneconstruction/sec01/sec01_woman_guts.png) center/contain no-repeat;
  justify-self: end;
  transform: translateY(8px);
}

/* 吹き出し */
.sec01__balloon {
  position: relative;
  border: 3px solid var(--color-navy);
  border-radius: 14px;
  padding: clamp(18px, 2.4vw, 26px) clamp(20px, 2.6vw, 30px);
  text-align: left;
  background: var(--color-white);
}

/* 吹き出しの三角 */
.sec01__balloon::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 18px solid var(--color-navy);
}

.sec01__balloon::after {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 16px solid var(--color-white);
}

/* 吹き出し内の文字の装飾 */

.sec01__balloonLead {
  margin: 0 0 clamp(10px, 1.4vw, 14px);
  font-weight: 900;
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent-yellow);
  font-size: 2.2rem;
}

.sec01__balloonText {
  font-size: 1.6rem;
  line-height: 1.5;
}

.sec01__red {
  color: var(--color-accent);
  font-weight: 900;
}

/* SP（600px以下） */

@media (max-width: 600px) {
  .sec01__block2 {
    overflow: hidden;
  }

  /* ================= 上段 ================= */
  .sec01__top2 {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .sec01__badCase {
    width: 120px;
  }

  .sec01__title2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2rem);
    line-height: 1.45;
  }

  .sec01__drone {
    display: none;
  }

  /* 赤い矢印(SP) */
  .sec01__mid2__allow {
    width: min(92vw, 340px);
    margin: -2vw auto 5vw;
    line-height: 1;

    /* 矢印の中の文字 */
    padding-top: 2vw;
  }


  /* ======= まるっと！+見出し（SP） === */
  .sec01__catch2 {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 14vw auto 2vw;
    padding-top: 4vw;
    text-align: center;
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.2;
  }

  .sec01__catch2::before {
    left: 1vw;
    bottom: -6vw;
    width: 120px;
    height: 44px;
    transform: rotate(-10deg);
    background-position: left top;
    background-size: contain;

  }

  /* ================= ボタン群 ================= */
  .sec01__chips {
    margin: 0 auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .sec01__chipUnit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .sec01__chip {
    min-width: 0;
    width: min(78vw, 220px);
    padding: 12px 16px;
    font-size: clamp(1.6rem, 5vw, 2rem);
    letter-spacing: 0.06em;
  }

  .sec01__chipsSep {
    font-size: 1.8rem;
    line-height: 1;
  }

  /* ======人物 + 吹き出し ===== */
  .sec01__bottom2 {
    position: relative;
    display: block;
    margin-top: 18px;
    padding-top: 120px;
    /* 人物の置き場 */
  }

  /* ガッツポーズする女性（SP） */
  .sec01__person {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 110px;
    height: 110px;
    margin: 0;
    transform: none;
    justify-self: auto;
    background-size: contain;
    background-position: center;
  }

  .sec01__person {
    transform: translateX(-50%);
    margin-top: -4vw;
  }

  .sec01__balloon {
    position: relative;
    width: 100%;
    padding: 24px 16px 18px;
    border-width: 2px;
    border-radius: 18px;
  }

  /* 吹き出しの三角を上に */
  .sec01__balloon::before,
  .sec01__balloon::after {
    display: block;
    left: 50%;
    width: 0;
    height: 0;
    border: none;
  }

  /* 吹き出し（SP） */
  .sec01__balloon::before {
    top: -18px;
    transform: translateX(-50%);
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 18px solid var(--color-navy);
  }

  .sec01__balloon::after {
    top: -15px;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--color-white);
  }

  .sec01__balloonLead {
    font-size: 1.8rem;
    line-height: 1.3;
    text-align: center;
    letter-spacing: .05em;
  }

  .sec01__balloonText {
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
  }
}

/* =================================
sec01-3（法制度カード） ★★★PC★★★
===================================== */

.sec01__laws {
  margin-top: clamp(48px, 6vw, 90px);
}

/* 上の水彩帯タイトル（PC） */
.sec01__lawsTitle {
  margin: 0 auto clamp(40px, 4.5vw, 50px);
  width: min(1080px, 100%);
  padding: clamp(14px, 1.8vw, 22px) 20px;
  text-align: center;
  background: url(../../images/droneconstruction/sec01/sec01_lawsTitle_bg.png) center/cover no-repeat;
}

.sec01__lawsTitleText {
  position: relative;
  display: inline-block;
  color: var(--color-white);
  font-weight: 900;
  font-size: clamp(2.0rem, 2.2vw, 3.0rem);
  letter-spacing: .08em;
  line-height: 1.2;
  padding: 90 clamp(20px, 2vw, 28px);
}

/* 左右の「 / 」（PC）*/
.sec01__lawsTitleText::before,
.sec01__lawsTitleText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(2px, 0.2vw, 3px);
  height: clamp(28px, 3vw, 46px);
  background-color: var(--color-white);
}

/* 左 */
.sec01__lawsTitleText::before {
  left: 0;
  transform: translate(-14px, -50%) rotate(-22deg);
}

/* 右 */
.sec01__lawsTitleText::after {
  right: 0;
  transform: translate(14px, -50%) rotate(22deg);
}

/* 左右の「/」削除（文字が2行になるとズレるので）（SP） */
@media (max-width: 500px) {

  .sec01__lawsTitleText::before,
  .sec01__lawsTitleText::after {
    content: none;
  }
}

/* ===== カード5枚：flexで 上3 / 下2（ジグザグ）（PC） ===== */
.sec01__lawsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;

  gap: clamp(36px, 4.4vw, 60px);
  max-width: 1100px;
  margin: 0 auto;
}

.sec01__lawCard {
  position: relative;

  /* 3枚並びが成立する幅（vwで可変） */
  width: clamp(240px, 26vw, 320px);

  background: var(--color-cream);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
  padding: 18px 18px 16px;
}

/* テープ（擬似要素）（PC） */
.sec01__lawCard::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 40px;
  background: url(../../images/droneconstruction/sec01/sec01_tape.png) center/contain no-repeat;
  opacity: .85;
}

.sec01__lawHead {
  margin: 0 0 14px;
  padding: 12px 12px;
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 900;
  font-size: clamp(1.6rem, 1.8vw, 2.0rem);
  text-align: center;
  letter-spacing: .13em;
}

.sec01__lawImg {
  width: 100%;
  height: clamp(120px, 12vw, 150px);
  margin: 0 auto 12px;
  background: center/contain no-repeat;
}

.sec01__lawImg--air {
  background-image: url(../../images/droneconstruction/sec01/sec01_law_air.png);
}

.sec01__lawImg--const {
  background-image: url(../../images/droneconstruction/sec01/sec01_law_const.png);
}

.sec01__lawImg--subsidy {
  background-image: url(../../images/droneconstruction/sec01/sec01_law_subsidy.png);
}

.sec01__lawImg--survey {
  background-image: url(../../images/droneconstruction/sec01/sec01_law_survey.png);
}

.sec01__lawImg--bid {
  background-image: url(../../images/droneconstruction/sec01/sec01_law_bid.png);
}

.sec01__lawText {
  margin: 0;
  font-size: clamp(1.4rem, 1.0vw, 1.6rem);
  line-height: 1.3;
  color: var(--color-gray-dark);
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* 下段2枚だけ：ジグザグ調整 */
.sec01__lawCard--zigR,
.sec01__lawCard--zigL {
  margin-top: clamp(18px, 2.6vw, 34px);
}

/* ▼矢印 */
.sec01__lawsArrow {
  width: 0;
  height: 0;
  margin: clamp(44px, 4.2vw, 76px) auto clamp(32px, 3.2vw, 60px);
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 14px solid var(--color-navy);
}

/* 「これらをまるッと！…丸投げ！」 */
.sec01__zeroVisual {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.sec01__zeroVisual picture {
  display: block;
}

.sec01__zeroVisual img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
}

/* SP */
@media screen and (max-width: 500px) {

  /* これらをまるッと！（SP） */
  .sec01__zeroVisual {
    width: 100%;
  }

  .sec01__zeroVisual img {
    width: 100%;
    max-width: 500px;
  }
}

/* ================= 相談エリア ================= */

.consult {
  background: var(--color-navy);
  padding: clamp(28px, 4vw, 48px) 20px;
}

.consult__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.consult__panel {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 34px) clamp(24px, 3vw, 36px) clamp(20px, 2.6vw, 28px);
  background: var(--color-cream);
  border: 1px solid var(--color-white);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .16);
}

/* CTAのテープ（PC） */
.consult__panel::before {
  content: "";
  position: absolute;
  top: -1.8vw;
  left: 50%;
  transform: translateX(-50%);
  max-width: 260px;
  width: 19vw;
  height: 4vw;
  background: url(../../images/droneconstruction/sec01/sec01_tape.png) center / contain no-repeat;
  opacity: .95;
}

/* CTA（上の部分）(PC) */
.consult__top {
  display: grid;
  grid-template-columns: 1fr 70% 1fr;
  align-items: center;
  column-gap: 0.3vw;
  margin-bottom: 2vw;
}

/* 人のイラスト */
.consult__person {
  display: flex;
  justify-content: center;
  align-items: center;
}

.consult__person img {
  display: block;
  width: 100%;
  max-width: 20vw;
  height: auto;
}

/*
ここから文字の部分 */
.consult__heading {
  text-align: center;
  color: var(--color-navy-dark);
}

/* お気軽にご相談ください（PC） */
.consult__lead {
  position: relative;
  display: inline-block;
  margin: 1vw 0 1vw;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.2vw, 1.8rem);
  line-height: 1.4;
}

.consult__lead::before,
.consult__lead::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.5px;
  height: 2.5vw;
  background-color: var(--color-navy-dark);
}

/* 左の「/」 */
.consult__lead::before {
  left: -0.6em;
  /* ←文字基準で寄せる */
  transform: translateY(-50%) rotate(-20deg);
}

/* 右の「/」 */
.consult__lead::after {
  right: -0.6em;
  transform: translateY(-50%) rotate(20deg);
}

.consult__sub {
  margin: 0 0 1vw;
  text-align: center;
}

.consult__subText {
  position: relative;
  display: inline-block;
  padding: 0 0 0.1vw;

  font-weight: 700;
  font-size: clamp(1.8rem, 1.8vw, 2.2rem);
  line-height: 1.3;
  letter-spacing: .04em;
  color: var(--color-navy-dark);
}

.consult__subAccent {
  color: var(--color-accent);
}

/* 無料相談タイトル */
.consult__title {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
  flex-wrap: wrap;

  color: var(--color-blue-bright);
  font-weight: 900;
  font-size: clamp(3.0rem, 3.8vw, 5.4rem);
  line-height: 1.15;
  letter-spacing: .08em;
}

.consult__titleText {
  color: var(--color-navy);
}

.consult__badgeGroup {
  display: inline-flex;
  gap: clamp(6px, .7vw, 10px);
  align-items: center;
}

.consult__badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: clamp(48px, 5vw, 68px);
  height: clamp(48px, 5vw, 68px);
  padding: 0 6px;

  background: var(--color-blue-bright);
  color: #fff;
  border-radius: 8px;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, .18),
    0 2px 4px rgba(0, 0, 0, .12);

  font-size: clamp(2.4rem, 3vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

/* CTAボタン3つ */

.consult__cta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.4vw, 16px);
  align-items: stretch;
}

.consult__ctaItem {
  display: block;
  transform: translateY(0);
  transition:
    transform .28s ease,
    opacity .28s ease;
}

.consult__ctaItem img {
  display: block;
  width: 100%;
  height: auto;
  transition:
    filter .28s ease,
    transform .28s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .12));
}

.consult__ctaItem:hover {
  opacity: 1;
  transform: translateY(-6px);
}

.consult__ctaItem:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .22)) brightness(1.03);
}

.consult__ctaItem:active {
  transform: translateY(-1px);
}

.consult__ctaItem:active img {
  transform: scale(.99);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .16));
}

/* ===== SP ===== */
@media (max-width: 500px) {

  /* CTAのテープ（SP） */
  .consult__panel::before {
    top: -14vw;
    left: 50%;
    transform: translateX(-50%);
    width: 40vw;
    height: 30vw;
  }

  .consult {
    padding: 24px 14px;
  }

  .consult__panel {
    padding: 22px 16px 18px;
  }

  .consult__top {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .consult__person {
    display: none;
  }

  .consult__cta {
    grid-template-columns: 1fr;
  }

  .consult__title {
    letter-spacing: .08em;
  }


  /* お気軽にご相談ください（SP） */
  .consult__lead {
    margin: 2.5vw 0 2vw;
    font-weight: 700;
  }

  .consult__lead::before,
  .consult__lead::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.5px;
    height: 5.5vw;
    background-color: var(--color-navy-dark);
  }

  .consult__subText {
    padding: 1vw 1.8vw 2vw;
  }

  .consult__subText::before {
    transform: translate(-6px, -50%) rotate(-20deg);
  }

  .consult__subText::after {
    transform: translate(6px, -50%) rotate(20deg);
  }
}

/* =================================
 ここからがsec02（選ばれる理由） ★★★PC★★★
===================================== */

.sec02 {
  background: #efefef;
  padding: 6vw 3vw 6vw;
}

.sec02__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sec02__title {
  width: min(1210px, 100%);
  min-height: clamp(74px, 6.8vw, 96px);
  margin: 0 auto;
  padding: 0 24px;
  border-radius: 12px;
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.sec02__titleInner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 22px);
}

.sec02__titleIcon {
  width: clamp(34px, 3vw, 52px);
  height: auto;
  flex-shrink: 0;
}

.sec02__titleText {
  color: var(--color-white);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.sec02__lead {
  margin-top: clamp(22px, 2.8vw, 36px);
  text-align: center;
  color: var(--color-navy-dark);
  font-size: clamp(1.8rem, 2.0vw, 3.4rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

/* 理由１〜３（PC） */
.sec02__cards {
  margin: clamp(28px, 2vw, 48px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  align-items: start;
}

.sec02__card {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.12));
}

.sec02__card img {
  display: block;
  width: 100%;
  height: auto;
}

.sec02__text {
  width: min(1220px, 100%);
  margin: clamp(44px, 4.8vw, 72px) auto 0;
  color: var(--color-gray-dark);
  text-align: center;
  font-size: clamp(1.6rem, 1.55vw, 1.8rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.sec02__text p+p {
  margin-top: 0.35em;
}

/* =================================
sec02 カード順番アニメーション
===================================== */

/* 初期状態 */
.animateCards .sec02__card {
  opacity: 0;
  transform: translateY(48px);
  will-change: transform, opacity;
}

/* 発火後 */
.animateCards.is-show .sec02__card {
  animation: sec02FadeUp 0.8s ease-out forwards;
}

/* 左から順番に遅延 */
.animateCards.is-show .sec02__card:nth-child(1) {
  animation-delay: 0s;
}

.animateCards.is-show .sec02__card:nth-child(2) {
  animation-delay: 0.2s;
}

.animateCards.is-show .sec02__card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes sec02FadeUp {
  0% {
    opacity: 0;
    transform: translateY(48px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== sp ===== */
@media screen and (max-width: 600px) {
  .sec02 {
    padding: 56px 16px 72px;
  }

  .sec02__title {
    min-height: auto;
    padding: 18px 16px;
    border-radius: 12px;
    background: var(--color-navy);
    display: block;
  }

  .sec02__titleInner {
    gap: 10px;
  }

  .sec02__titleText {
    font-size: 22px;
    line-height: 1.45;
  }

  .sec02__lead {
    margin-top: 28px;
    font-size: 2.0rem;
    line-height: 1.5;
  }

  /* 理由１〜３（SP） */
  .sec02__cards {
    grid-template-columns: 1fr;
    gap: clamp(30px, 3vw, 200px);
    padding-top: clamp(20px, 3vw, 100px);
    width: clamp(320px, 1.55vw, 320px);
    margin: 0 auto;
  }

  .sec02__text {
    margin-top: 32px;
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }
}

/* ================= sec02 企業との取り組み（PC） ================= */
.sec02__collab {
  margin-top: 6vw;
}

/* 上の水彩帯タイトル */
.sec02__collabTitle {
  margin: 0 auto clamp(40px, 4.5vw, 50px);
  width: min(1080px, 100%);
  padding: clamp(14px, 1.8vw, 22px) 20px;
  text-align: center;
  background: url(../../images/droneconstruction/sec01/sec01_lawsTitle_bg.png) center/cover no-repeat;
}

.sec02__collabTitleText {
  position: relative;
  display: inline-block;
  color: var(--color-white);
  font-weight: 900;
  font-size: clamp(2.0rem, 2.2vw, 3.0rem);
  letter-spacing: .08em;
  line-height: 1.2;
  padding: 90 clamp(20px, 2vw, 28px);
}

/* 左右の「 / 」*/
.sec02__collabTitleText::before,
.sec02__collabTitleText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(2px, 0.2vw, 3px);
  height: clamp(28px, 3vw, 46px);
  background-color: var(--color-white);
}

/* 左 */
.sec02__collabTitleText::before {
  left: 0;
  transform: translate(-14px, -50%) rotate(-22deg);
}

/* 右 */
.sec02__collabTitleText::after {
  right: 0;
  transform: translate(14px, -50%) rotate(22deg);
}

/* ここから企業ロゴ */
.sec02__logoMarqueeWrap {
  width: min(1320px, 100%);
  margin: clamp(40px, 6vw, 80px) auto 0;
  display: grid;
  gap: clamp(36px, 3vw, 52px);
}

.sec02__logoMarquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.sec02__logoRow {
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: clamp(20px, 2.4vw, 32px);
  align-items: stretch;
  will-change: transform;
}

.sec02__logoItem {
  width: 280px;
  flex: 0 0 280px;
  min-width: 0;
}

.sec02__logoFigure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.sec02__logoMark {
  width: 100%;
  min-height: clamp(56px, 5vw, 88px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec02__logoMark img {
  display: block;
  max-width: min(180px, 100%);
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sec02__logoName {
  color: var(--color-gray-dark);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}

/* ここからがロゴ下の丸のやつ */

.sec02__featureList {
  width: min(1350px, 100%);
  margin: clamp(64px, 6vw, 110px) auto 0;
  padding: 0;
  list-style: none;

  display: grid;
  grid-template-columns: clamp(220px, 20vw, 290px) minmax(0, 1fr) clamp(220px, 20vw, 290px);
  gap: clamp(20px, 2.8vw, 56px);
  align-items: center;
}

.sec02__feature {
  min-width: 0;
}

.sec02__feature--circle {
  display: flex;
  justify-content: center;
}

.sec02__featureCircleText {
  width: clamp(220px, 20vw, 290px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--color-navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  color: var(--color-white);
  text-align: center;
  font-size: clamp(1.6rem, 1.65vw, 1.8rem);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

.sec02__featureCircleText::before,
.sec02__featureCircleText::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sec02__featureCircleText::before {
  inset: 0;
  border: 3px solid var(--color-navy);
}

.sec02__featureCircleText::after {
  inset: 6px;
  border: 1px solid var(--color-white);
}

.sec02__feature--text {
  color: var(--color-gray-dark);
  text-align: center;
  font-size: clamp(1.6rem, 1.75vw, 1.8rem);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.03em;
}

/* <!-- SP/tablet用（700px以下） --> */
@media screen and (max-width: 700px) {
  .sec02__logoList {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }

  .sec02__featureList {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sec02__feature--text {
    order: 2;
    font-size: 1.6rem;
    line-height: 1.9;
  }

  .sec02__feature--circle:first-child {
    order: 1;
  }

  .sec02__feature--circle:last-child {
    order: 3;
  }
}

.sec02__collab {
  margin-top: 4vw;
}

.sec02__collabTitle {
  min-height: auto;
  padding: 20px 16px;
}

.sec02__collabTitleText {
  font-size: 2.2rem;
  line-height: 1.6;
}

.sec02__logoList {
  margin-top: 4.5vw;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  row-gap: 32px;
}

.sec02__logoFigure {
  gap: 10px;
}

.sec02__logoMark {
  min-height: 52px;
}

.sec02__logoMark img {
  max-width: 140px;
  max-height: 54px;
}

.sec02__logoName {
  font-size: 1.3rem;
  line-height: 1.5;
}

.sec02__featureList {
  margin-top: 48px;
  gap: 20px;
}

.sec02__featureCircleText {
  width: 220px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.sec02__feature--text {
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: left;
}

@media screen and (max-width: 500px) {

  /* 企業の取り組みの上の余白(SP) */
  .sec02__collab {
    margin-top: 6vw;
  }

  /* 左右の「 / 」SP版では消す*/
  .sec02__collabTitleText::before,
  .sec02__collabTitleText::after {
    content: none;
  }
}

/* =======================================
ここからが「3冠達成」　 ★★★PC★★★
========================================== */

.threeCrowns {
  padding: clamp(72px, 8vw, 120px) 20px clamp(60px, 7vw, 96px);
  background: url(../../images/droneconstruction/3crowns/3crowns_bg.png) center top / cover no-repeat;
}

.threeCrowns__inner {
  width: min(1000px, 100%);
  margin: 0 auto;
}

.threeCrowns__title {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.threeCrowns__title picture,
.threeCrowns__title img,
.threeCrowns__medal picture,
.threeCrowns__medal img {
  display: block;
  width: 100%;
  height: auto;
}

.threeCrowns__list {
  margin: clamp(34px, 4vw, 58px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.8vw, 36px);
  align-items: start;
}

/* ===============================
タイトル：左からフェードイン
=============================== */

.threeCrowns__title {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s ease;
}

.threeCrowns__title.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* ===============================
メダル：下からフェードイン
=============================== */

.threeCrowns__item {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.threeCrowns__item.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 順番 */
.threeCrowns__item:nth-child(1) {
  transition-delay: 0.1s;
}

.threeCrowns__item:nth-child(2) {
  transition-delay: 0.35s;
}

.threeCrowns__item:nth-child(3) {
  transition-delay: 0.6s;
}

.threeCrowns__medal {
  width: min(100%, 360px);
  margin: 0 auto;
}

.threeCrowns__caption {
  margin-top: clamp(28px, 3vw, 44px);
  color: var(--color-white);
  font-size: clamp(1.1rem, 0.9vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}


/* ===== tablet用（1024px以下）===== */

@media screen and (max-width: 1024px) {
  .threeCrowns__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .threeCrowns__item:last-child {
    grid-column: 1 / -1;
    width: min(48%, 360px);
    margin: 0 auto;
  }

  .threeCrowns__caption {
    font-size: 1.2rem;
    line-height: 1.9;
  }
}

/* =========================
SP
========================= */
@media screen and (max-width:600px) {
  .threeCrowns {
    padding: 48px 16px 40px;
    background: url(../../images/droneconstruction/3crowns/3crowns_bg.png) center top / cover no-repeat;
  }

  .threeCrowns__inner {
    width: 100%;
  }

  .threeCrowns__title {
    width: 100%;
    max-width: 640px;
  }

  .threeCrowns__list {
    grid-template-columns: 1fr;
    gap: 2vw;
    margin-top: 24px;
  }

  .threeCrowns__item {
    width: 100%;
  }

  .threeCrowns__medal {
    width: 100%;
    max-width: 640px;
  }

  .threeCrowns__item:last-child {
    width: 100%;
    grid-column: auto;
    margin: 0;
  }

  .threeCrowns__caption {
    margin-top: 24px;
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: left;
  }
}

/* <!-- ===== ここからがsec03（50人体制だからこそ〜） ======= --> */

.sec03 {
  background: var(--color-white);
  padding: clamp(72px, 8vw, 80px) 20px clamp(72px, 8vw, 80px);
  overflow: hidden;
}

.sec03__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

/* ===== 社員の方達 ===== */

.sec03__peopleWrap {
  position: relative;
  width: min(1080px, 100%);
  margin: clamp(28px, 3vw, 48px) auto 0;
}

/* sec03 人物写真：下から上にふわっと表示 */
.sec03__peopleWrap {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: opacity, transform;
}

.sec03__peopleWrap.is-show {
  opacity: 1;
  transform: translateY(0);
}

.sec03__people picture,
.sec03__people img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.sec03__peopleWrap {
  position: relative;
  width: min(1080px, 100%);
  margin: clamp(28px, 3vw, 48px) auto 0;

  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.sec03__peopleWrap.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 比較図 ===== */

.sec03__compare {
  display: grid;
  grid-template-columns: 1fr clamp(160px, 16vw, 240px) 1fr;
  align-items: center;
  margin-top: clamp(42px, 4vw, 72px);
}

.sec03__compareItem img,
.sec03__arrow img {
  display: block;
  width: 100%;
  height: auto;
}

.sec03__compareItem--left {
  justify-self: end;
  width: min(100%, 470px);
}

/* 中央の矢印 */
.sec03__arrow {
  width: min(100%, 470px);
  height: clamp(160px, 16vw, 240px);
  background: url('../../images/droneconstruction/sec03/sec03_graph_arrow.png') no-repeat center / contain;
}

/* == 下部の吹き出し付きの帯 == */

.sec03__bottom {
  position: relative;
  width: min(1180px, 100%);
  margin: clamp(42px, 4vw, 64px) auto 0;
  padding: clamp(28px, 2.4vw, 40px) 20px;
  border-radius: 16px;
  background: var(--color-blue-sky);
  text-align: center;
}

/* 吹き出しの三角部分 */
.sec03__bottom::before {
  content: "";
  position: absolute;
  top: -24px;
  right: 22%;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 24px solid var(--color-blue-sky);
}

.sec03__bottomText {
  color: var(--color-white);
  font-size: clamp(2.2rem, 2.2vw, 4rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.sec03__bottomAccent {
  color: var(--color-accent-yellow);
}

/* ===== sp ===== */

@media screen and (max-width: 767px) {
  .sec03 {
    padding: 56px 16px 72px;
  }

  .sec03__peopleWrap {
    margin-top: 22px;
  }

  .sec03__compare {
        grid-template-columns: 1fr;

    margin-top: 28px;
    gap: 20px;
  }

  .sec03__compareItem--left,
  .sec03__compareItem--right {
   justify-self: center;
    width: min(100%, 440px);
  }

  .sec03__arrow {
        background: url('../../images/droneconstruction/sec03/sec03_graph_arrowSp.png') no-repeat center / contain;
    width: 80%;
    justify-self: center;
  }

/* 吹き出しの三角部分 */
.sec03__bottom::before {
  content: "";
  top: -24px;
  right: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 24px solid var(--color-blue-sky);
}

  .sec03__bottom {
    margin-top: 32px;
    padding: 22px 14px;
    border-radius: 12px;
  }

  .sec03__bottomText {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}


/* =================================
sec04（ワンストップで何が変わるの？） ★★★PC★★★
===================================== */
.sec04 {
  padding: 80px 20px 80px;
  background: var(--color-bg);
}

.sec04__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.sec04__heading {
  text-align: center;
  margin-bottom: 56px;
}

.sec04__title {
  margin: 0 0 10px;
  color: var(--color-navy);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
  font-size: clamp(2.8rem, 3.6vw, 5.4rem);
}

.sec04__title span {
  color: var(--color-accent);
}

.sec04__lead {
  margin: 0;
  color: var(--color-navy-dark);
  font-weight: 700;
  line-height: 1.5;
  font-size: clamp(1.8rem, 1.8vw, 2.8rem);
}

/* 上画像 + 下3カラム全体 */
.sec04__content {
  position: relative;
  padding-top: 220px;
}

.sec04__topVisual {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  z-index: 3;
}

.sec04__topVisual img {
  display: block;
  width: 100%;
  height: auto;
}

/* 3カラム本体 */
.sec04__board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  border: 2px solid var(--color-blue-light);
  background: var(--color-white);
  overflow: hidden;
}

.sec04__panel {
  padding: 40px 28px 30px;
}

.sec04__panel--left {
  background: #dfe8c8;
  height: 100%;
}

.sec04__panel--center {
  background: #f0dfc9;
}

.sec04__panel--right {
  background: #dbe9f4;
}

/* タイトル帯 */
.sec04__panelTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  min-height: 72px;
  margin: -10px auto 24px;
  padding: 10px 20px;
  border-radius: 999px;

  color: var(--color-white);
  font-weight: 900;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  font-size: clamp(2.1rem, 2vw, 3.4rem);
}
.sec04__panelTitle--green {
  background: #9ac70c;
}

.sec04__panelTitle--orange {
  background: #ff9800;
}

.sec04__panelTitle--blue {
  background: var(--color-navy);
}

/* 画像共通 */
.sec04__img img {
  display: block;
  width: 100%;
  height: auto;
}

.sec04__img--leftTop,
.sec04__img--rightTop {
  margin-bottom: 20px;
  width: min(88%, 340px);
}

.sec04__img--leftBottom,
.sec04__img--centerBottom,
.sec04__img--rightBottom {
  margin-top: 24px;
  width: min(88%, 340px);
}

.sec04__img--centerTop {
  width: min(88%, 340px);
  margin: 0 auto 20px;
}

.sec04__img--centerBottom {
  width: min(92%, 360px);
  margin-left: auto;
  margin-right: auto;
}

/* テキストリスト */
.sec04__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-top: 1vw;
  list-style: none;
}

.sec04__list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-gray-dark);
  font-weight: 700;
  line-height: 1.5;
  font-size: clamp(1.6rem, 1.35vw, 2.4rem);
}

.sec04__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  margin-top: 0.35em; /* ここで縦位置微調整 */
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.sec04__list--green li::before {
  border-left: 10px solid #95c60d;
}

.sec04__list--orange li::before {
  border-left: 10px solid #ff9800;
}

.sec04__list--blue li::before {
  border-left: 10px solid var(--color-navy);
}

/* ========= レスポンシブ========= */

@media (max-width: 768px) {
  .sec04__content {
    padding-top: 180px;
  }

  .sec04__topVisual {
    width: 420px;
    top: -46px;
  }

  .sec04__board {
    grid-template-columns: 1fr;
  }

  .sec04__panel {
    min-height: auto;
  }

  .sec04__img--centerTop,
  .sec04__img--centerBottom {
    width: min(78%, 360px);
  }

  .sec04__img--centerTop,
  .sec04__img--centerBottom,
  .sec04__img--leftTop,
  .sec04__img--rightTop,
  .sec04__img--leftBottom,
  .sec04__img--centerBottom,
  .sec04__img--rightBottom {
    margin: 0 auto;
  }

  /* 文字の部分(TAB) */
.sec04__list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding-top: 2vw;
  list-style: none;
}
}

/* SP(400px以下） */
@media (max-width: 400px) {

.sec04 {
  padding: 40px 0px 40px;}

  /* 見出し(400px以下）  */
.sec04__title {
  margin: 0 20px 10px;
  color: var(--color-navy);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
  font-size: clamp(2.8rem, 3.6vw, 5.4rem);
}

.sec04__lead {
  margin: 0 20px 0px;
  color: var(--color-navy-dark);
  font-weight: 700;
  line-height: 1.5;
  font-size: clamp(1.8rem, 1.8vw, 2.8rem);
}

/* 外の青い枠線消すため */
.sec04__board {
  border: 0px ;
}
}

/* =================================
sec05（手厚いサポート体制） ★★★PC★★★
===================================== */

.sec05 {
  padding: clamp(40px, 6vw, 80px) 20px clamp(80px, 8vw, 120px);
  background: var(--color-white);
}

.sec05__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sec05__heading {
  text-align: center;
  margin-bottom: clamp(34px, 4vw, 56px);
}

.sec05__subTitle {
  margin: 0 0 12px;
}

.sec05__subTitleText {
  position: relative;
  display: inline-block;
  padding: 0 clamp(18px, 2vw, 28px);
  color: var(--color-accent);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .06em;
  font-size: clamp(2.2rem, 2.4vw, 3.6rem);
}

.sec05__subTitleText::before,
.sec05__subTitleText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(2px, 0.2vw, 3px);
  height: clamp(24px, 2.8vw, 38px);
  background-color: var(--color-accent);
}

.sec05__subTitleText::before {
  left: 0;
  transform: translate(-12px, -50%) rotate(-24deg);
}

.sec05__subTitleText::after {
  right: 0;
  transform: translate(12px, -50%) rotate(24deg);
}

.sec05__title {
  margin: 0 0 16px;
  color: var(--color-navy);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .04em;
  font-size: clamp(3.4rem, 4vw, 6rem);
}

.sec05__lead {
  margin: 0;
  color: var(--color-navy-dark);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .03em;
  font-size: clamp(1.8rem, 1.8vw, 2.2rem);
}

/* 比較エリア */
.sec05__compare {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) clamp(160px, 16vw, 220px) minmax(280px, 1.1fr);
  align-items: center;
  margin-bottom: clamp(34px, 4vw, 56px);
}

.sec05__graph img,
.sec05__arrow img {
  display: block;
  width: 100%;
  height: auto;
}

/* 中央の矢印 */
.sec05__arrow {
  width: min(100%, 470px);
  height: clamp(160px, 16vw, 240px);
  background: url('../../images/droneconstruction/sec05/sec05_graph_arrow.png') no-repeat center / contain;
}

/* ===吹き出しボックス ==== */

.sec05__bottom {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  margin: 0 auto;
  width: min(980px, 100%);
  padding: clamp(28px, 3.2vw, 44px) clamp(18px, 2.4vw, 34px);
  border-radius: 18px;
  background: var(--color-blue-sky);
  overflow: visible;
}

/* 上中央の三角（PC：横並び時） */
.sec05__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 78%;
  transform: translate(-50%, -62%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 24px solid var(--color-blue-sky);
}

/* 上の強調文（大きい1行） */
.sec05__bottomLead {
  margin: 0 0 clamp(14px, 1.6vw, 18px);
}

.sec05__bottomLead p {
  color: var(--color-white);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .04em;
  font-size: clamp(2.2rem, 2.4vw, 3.6rem);
}

.sec05__bottomLead span {
  color: var(--color-accent-yellow);
}

/* 下の説明文*/

.sec05__bottomText p {
  margin: 0;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .03em;
  font-size: clamp(1.6rem, 1.35vw, 2.2rem);
}

/* ===== 1024px以下 ===== */

@media screen and (max-width: 767px) {
  .sec05__compare {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sec05__arrow {
    background: url('../../images/droneconstruction/sec03/sec03_graph_arrowSp.png') no-repeat center / contain;
    width: 80%;
    justify-self: center;
  }

  .sec05__compareItem--left,
  .sec05__compareItem--right {
    justify-self: center;
    width: min(100%, 440px);
  }

  .sec05__graph--left {
    width: min(100%, 280px);
    justify-self: center;
  }

  .sec05__graph--right {
    width: min(100%, 440px);
    justify-self: center;
  }

  /* 上中央の三角（SP：縦並び時） */
  .sec05__bottom::before {
    top: 0;
    left: 50%;
    transform: translate(-50%, -58%);
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 18px solid var(--color-blue-sky);
  }

  .sec05__bottomText p br {
    display: none;
  }
}


/* =================================

  sec06（3つのサービス内容）
  ワンストップのフロー（PC）

===================================== */

/* ========= セクション土台 ========= */
.sec06_flow {
  padding: 80px 0;
  background: var(--color-bg);
}

.sec06_flow__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ここからメインパーツ */

/* ========= 見出し（PC） ========= */
.sec06_flow__headline {
  text-align: center;
  font-weight: 900;
  color: var(--color-navy-dark);
  letter-spacing: .04em;
  font-size: clamp(2.2rem, 2.6vw, 3.4rem);
  margin: 0 0 34px;
}
/* 「３」の青い箱 */
.sec06_flow__headlineNum {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--color-blue-bright);
  color: var(--color-white);
  margin: 0 6px;
}

/* 「多種多様！」の改行(PCでは改行しない) */
.spBr{
display: none;
}

/* 左右の「/」（PC） */
.sec06_flow__headlineSlash {
  display: inline-block;
  width: 2px;
  height: 48px;
  background: var(--color-navy-dark);
  transform: rotate(-18deg);
  border-radius: 999px;
  margin-right: 14px;
  margin-bottom: -6px;
}

.sec06_flow__headlineSlash.is-right {
  transform: rotate(18deg);
  margin-left: 14px;
  margin-right: 0;
}

/* ===STEPのとこの縦ライン（軸）(PC) ===== */

/* 縦ラインの中心X */
.sec06_flow__steps {
  --axis-x: 34px;

  /* stepの番号バッジ */
  --badge-size: 46px;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec06_flow__steps::before {
  content: "";
  position: absolute;
  left: var(--axis-x);
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--color-blue-bright);
  border-radius: px;
  transform: translateX(-50%);
}

/* ========= 各ステップ(PC)  ========= */
.sec06_flow__step {
  position: relative;
  padding-left: 90px;
  padding-bottom: 48px;
}

/* ========= 各ステップの区切りの線 (PC) ========= */

.sec06_flow__step:not(:last-child) {
  border-bottom: 1px solid var(--color-blue-bright);
  margin-bottom: 28px;
}

/* ========= stepヘッダー (PC) ========= */
.sec06_flow__stepHead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* 1/2/3 (PC) */
.sec06_flow__no {
  position: absolute;
  left: var(--axis-x);
  top: -8px;
  transform: translateX(-50%);
  width: var(--badge-size);
  height: var(--badge-size);
  border-radius: 8px;
  background: var(--color-blue-bright);
  color: var(--color-white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.1;
}

.sec06_flow__title {
  margin: 0;
  color: var(--color-navy-dark);
  font-weight: 900;
  font-size: clamp(2.2rem, 2.3vw, 3.2rem);
}

/* ========= 本体ボックス(PC)  ========= */
.sec06_flow__stepBody {
  background: var(--color-white);
  padding: clamp(18px, 1.8vw, 28px);
  border: 1px solid var(--color-navy-dark);
  border-radius: 10px;
}

/* =================================
/* メインパーツのレスポンシブ(SP) */
/* ===================================== */

/* ========= 見出し（SP） ========= */

@media (max-width: 600px) {

  .sec06_flow {
  padding: 40px 0;}

  /* 文字部分(SP) */
  .sec06_flow__headline {
line-height: 1.8;
  margin: 0 auto 34px;
}

    /* 左右の「/」（SP） */
  .sec06_flow__headlineSlash {
    display: none;
  }

  /* 多種多様！で改行する */
.spBr{
display: block;
}

/* 「３」の青い箱(SP) */
.sec06_flow__headlineNum {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--color-blue-bright);
  color: var(--color-white);
}

/* ===STEPのとこの縦ライン（軸）(SP) ===== */

/* 縦ラインの中心X(SP) */
.sec06_flow__steps {
  --axis-x: 17px;

  /* stepの番号バッジ(SP) */
  --badge-size: 36px;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec06_flow__steps::before {
  content: "";
  position: absolute;
  left: var(--axis-x);
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--color-blue-bright);
  border-radius: px;
  transform: translateX(-50%);
}

/* ========= 各ステップ(SP)  ========= */
.sec06_flow__step {
  position: relative;
  padding-left: 20px;
  padding-bottom: 36px;
}

/* ========= 各ステップの区切りの線 (SP) ========= */

.sec06_flow__step:not(:last-child) {
  border-bottom: 1px solid var(--color-blue-bright);
  margin-bottom: 28px;
}

/* ========= stepヘッダー(SP)  ========= */
.sec06_flow__stepHead {
  gap: 14px;
  margin-bottom: 18px;
}

/* 1/2/3 (SP)  */
.sec06_flow__no {
  border-radius:4px;
  font-size: 2.4rem;
  line-height: 1.0;
}

.sec06_flow__title {
  margin: 0;
}

/* ========= 本体ボックス(SP)  ========= */
.sec06_flow__stepBody {
  border-radius: 6px;
}
}

/* =================================
  その1「顧問プラン」
===================================== */

/* 上段（料金/説明） (PC） */
.sec06_flow__topGrid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  margin-bottom: 22px;
}

/* 左：料金BOX */
.sec06_flow__priceBox {
  border-radius: 8px;
  padding: 0px 18px 0px;
  background: var(--color-white);
}

.sec06_flow__priceLabel {
  margin: 0 0 10px;
  background: var(--color-blue-light);
  color: var(--color-white);
  font-weight: 900;
  text-align: center;
  border-radius: 6px;
  padding: 10px 12px;
  letter-spacing: .04em;
}

.sec06_flow__priceSub {
  margin: 0 0 10px;
  color: var(--color-navy);
  font-weight: 800;
  text-align: center;
}

.sec06_flow__priceMain {
  margin: 0;
  text-align: center;
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-accent);
}

.sec06_flow__priceYen {
  font-size: clamp(1.8rem, 2.0vw, 2.2rem);
  vertical-align: baseline;
}

.sec06_flow__priceValue {
  font-size: clamp(4.2rem, 4.2vw, 6.2rem);
  letter-spacing: .02em;
}

.sec06_flow__priceTax {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-left: 0px;
  font-weight: 900;
}

.sec06_flow__priceTail {
  display: inline-block;
  font-size: 1.6rem;
  margin-left: 10px;
  color: var(--color-accent);
  font-weight: 900;
}

/* 右：説明 */
.sec06_flow__descTitle {
  margin: 0 0 10px;
  color: var(--color-navy-dark);
  font-weight: 900;
  font-size: clamp(1.9rem, 1.6vw, 2.4rem);
}

.sec06_flow__descText {
  margin: 0;
  color: var(--color-gray-dark);
  line-height: 1.75;
  font-size: 1.6rem;
}

/* =================================
  年2回以上 → 矢印
===================================== */
.sec06_flow__recommendLead {
  margin: 20px 0 12px;
  border: 1px solid var(--color-navy-dark);
  border-radius: 6px;
  padding: 14px 16px;
  background: var(--color-white);
}

.sec06_flow__recommendLeadText {
  margin: 0;
  text-align: center;
  color: var(--color-navy-dark);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(1.8rem, 2.0vw, 2.4rem);
}

.sec06_flow__recommendNum {
  color: var(--color-accent);
  font-size: clamp(2.4rem, 2.8vw, 3.2rem);
  letter-spacing: 0.05em;
}

.sec06_flow__recommendArrow {
  display: flex;
  justify-content: center;
  margin: 12px 0 18px;
}

.sec06_flow__recommendArrow img {
  width: min(400px, 100%);
  height: auto;
  display: block;
}
/* =================================
ライトプランの部分(PC)
===================================== */
.sec06_flow__plan {
  display: grid;
  grid-template-columns: 140px 1fr 1.45fr;
  border: 1px solid var(--color-gray-dark);
  border-radius: 10px;
  background: var(--color-white);
  margin: 12px 0 18px;
  overflow: hidden;
  align-items: stretch;
}

/* 1列目：リボン */
.sec06_flow__planRibbonCol {
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 0 12px 18px 18px;
  min-width: 0;
}

.sec06_flow__planRibbon {
  display: block;
  transform: translateY(-2px);
  margin-top: 0px;
}

.sec06_flow__planRibbon img {
  display: block;
  width: 100%;
  height: auto;
}

/* 2列目：文字 */
.sec06_flow__planTextCol {
  display: grid;
  align-content: center;
  padding: 18px 18px 18px 8px;
  min-width: 0;
  border-right: 1px solid var(--color-navy-dark);
}

.sec06_flow__planName {
  margin: 0 0 6px;
  color: var(--color-navy-dark);
  font-weight: 900;
  font-size: clamp(2.2rem, 2vw, 3.2rem);
  line-height: 1.15;
}

.sec06_flow__planPer {
  margin: 0 0 10px;
  color: var(--color-navy-dark);
  font-weight: 900;
  line-height: 1.2;
  font-size: 1.8rem;
}

.sec06_flow__planPrice {
  margin: 0;
  color: var(--color-accent);
  font-weight: 900;
  line-height: 1.05;
}

.sec06_flow__planPrice .sec06_flow__priceValue {
  font-size: clamp(3.6rem, 3.2vw, 5rem);
}

.sec06_flow__planPrice .sec06_flow__priceYen {
  font-size: clamp(2rem, 1.8vw, 3rem);
}

/* 3列目：右側 */
.sec06_flow__planSide {
  display: grid;
  align-content: start;
  padding: 16px 18px;
  min-width: 0;
}

/* バッジ */
.sec06_flow__planBadges {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: stretch;
  gap: 8px;
  margin-bottom: 12px;
  min-width: 0;
}

.sec06_flow__badge,
.sec06_flow__badge--outlineArrow {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  min-width: 0;
  box-sizing: border-box;
}

.sec06_flow__badge {
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: .03em;
  line-height: 1.2;
  white-space: nowrap;
}

.sec06_flow__badge.is-plus {
  background: transparent;
  color: var(--color-accent);
  padding: 0;
  min-height: auto;
  font-size: 2.2rem;
  line-height: 1;
}

.sec06_flow__planBadges .sec06_flow__badge:last-of-type {
  background: var(--color-blue-light);
  white-space: normal;
  line-height: 1.3;
  text-align: center;
  padding: 10px 14px;
}

/* 左の白バッジ */
.sec06_flow__badge--outlineArrow {
  padding: 10px 18px 10px 16px;
  border: 2px solid var(--color-navy);
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: .03em;
}

/* おすすめラベル */
.sec06_flow__planHint {
  margin: 0 0 10px;
  display: inline-block;
  justify-self: start;
  color: var(--color-accent);
  font-weight: 900;
  border: 1px solid var(--color-accent);
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--color-white);
  font-size: 1.4rem;
  line-height: 1.2;
}

/* リスト */
.sec06_flow__planList {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-gray-dark);
  line-height: 1.6;
  font-weight: 700;
  font-size: 1.4rem;
}

.sec06_flow__planList li {
  position: relative;
  padding-left: 1em; /* 三角分の余白 */
}

.sec06_flow__planList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0;
  height: 0;
  border-top: 0.34em solid transparent;
  border-bottom: 0.34em solid transparent;
  border-left: 0.5em solid var(--color-navy);
}



/* =================================
  さらに！法務相談（chips＋アコーディオン）
===================================== */
.sec06_flow__extra {
  margin-top: 10px;
}

.sec06_flow__extraTitle {
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.sec06_flow__extraBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.6rem;
  transform: rotate(-10deg);
}

.sec06_flow__extraText {
  font-weight: 900;
  color: var(--color-navy-dark);
  font-size: clamp(2.2rem, 2.0vw, 3.0rem);
  border-bottom: 6px solid var(--color-accent-yellow);
  padding-bottom: 6px;
  line-height: 1.1;
}

.sec06_flow__extraNote {
  color: var(--color-navy-dark);
  font-weight: 900;
  font-size: 1.6rem;
}

/* chips（横長ボタン感） */
.sec06_flow__chips {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.sec06_flow__chips li {
  background: var(--color-blue-light);
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.4rem;
  padding: 12px 10px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.25;
}

.sec06_flow__chips li:nth-child(odd) {
  background: var(--color-blue-bright);
}

/* ＼ ... ／ 見出し */
.sec06_flow__accLead {
  margin: 18px 0 16px;
  text-align: center;
}

.sec06_flow__accLeadText {
  position: relative;
  display: inline-block;
  padding: 0 6px;
  color: var(--color-navy-dark);
  font-weight: 900;
  letter-spacing: .04em;
  font-size: clamp(1.8rem, 2.0vw, 2.2rem);
  line-height: 1.2;
}

.sec06_flow__accLeadText::before,
.sec06_flow__accLeadText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  height: 28px;
  background: var(--color-navy-dark);
  border-radius: 999px;
}

.sec06_flow__accLeadText::before {
  left: 0;
  transform: translate(-16px, -50%) rotate(-18deg);
}

.sec06_flow__accLeadText::after {
  right: 0;
  transform: translate(16px, -50%) rotate(18deg);
}

/* ========= アコーディオン：2カラム========= */
.sec06_flow__accordionGrid {
  --left: 1fr;
  --right: 1.55fr;
  display: grid;
  grid-template-columns: var(--left) var(--right);
  gap: 14px;
  align-items: start;
}

.sec06_flow__details {
  border: 1px solid var(--color-gray-dark);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
}

.sec06_flow__summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--color-navy-dark);
  color: var(--color-white);
  font-weight: 900;
}

.sec06_flow__summary::-webkit-details-marker {
  display: none;
}

.sec06_flow__summaryText {
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: .05em;
}

/* 右上の＋ */
.sec06_flow__plus {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--color-white);
  flex: 0 0 auto;
}

.sec06_flow__plus::before,
.sec06_flow__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 3px;
  background: var(--color-navy-dark);
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.sec06_flow__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sec06_flow__details[open] .sec06_flow__plus::after {
  opacity: 0;
  /* ＋ → － */
}

.sec06_flow__detailBody {
  padding: 14px 16px 16px;
  background: var(--color-bg);
}

/* アコーディオン内カード */
.sec06_flow__accCards {
  display: grid;
  gap: 14px;
}

.sec06_flow__accCards--one {
  grid-template-columns: 1fr;
  max-width: 380px;
}

.sec06_flow__accCards--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sec06_flow__accCard {
  border: 1px solid var(--color-navy-dark);
  padding: 18px 16px 16px;
  background: var(--color-white);
    min-width: 0;
  box-sizing: border-box;
}

.sec06_flow__accName {
  margin: 0 0 10px;
  color: var(--color-navy-dark);
  font-weight: 900;
  font-size: clamp(2.0rem, 1.6vw, 2.6rem);
  text-align: center;
  line-height: 1.25;
  min-width: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.sec06_flow__accHint {
  margin: 0 0 10px;
  text-align: center;
  color: var(--color-accent);
  font-weight: 900;
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 1.4rem;
}
.sec06_flow__accList {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  color: var(--color-gray-dark);
  line-height: 1.7;
  font-weight: 700;
  font-size: 1.5rem;
}

.sec06_flow__accList li {
  position: relative;
  padding-left: 1.2em;
}

.sec06_flow__accList li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.52em;
  width: 0;
  height: 0;
  border-top: 0.34em solid transparent;
  border-bottom: 0.34em solid transparent;
  border-left: 0.5em solid var(--color-navy);
}

/* （文字）1ヶ月あたり（PC） */
.sec06_flow__accPer {
  margin: 0 0 6px;
  text-align: center;
  color: var(--color-navy-dark);
  font-weight: 900;
  position: relative;
  padding-top: 10px;
}

/* （飾り）上の罫線（PC） */

.sec06_flow__accPer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: var(--color-gray-dark);
}

.sec06_flow__accPrice {
  margin: 0;
  text-align: center;
  color: var(--color-accent);
  font-weight: 900;
  line-height: 1.05;
  min-width: 0;
}

.sec06_flow__accPriceValue {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  letter-spacing: .02em;
}

.sec06_flow__accPriceTax {
  font-size: 1.3rem;
  margin-left: 6px;
}

.sec06_flow__accPriceTail {
  font-size: 2.2rem;
  margin-left: 4px;
}

/* ========= <!-- 無料相談バナー -->(PC)   ========= */

.sec06_flow__banner img {
  width: 100%;
  height: auto;
  display: block;
  padding-top: 20px;

}

/* （注釈）手続きについては別途〜 */

.sec06__attention {
  padding: 10px 0 0;
}

.sec06__attention--01 {
  font-size: 1.8rem;
  color: var(--color-accent);
  padding-bottom: 4px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;

}

.sec06__attention--02 {
  font-size: 1.4rem;
}

/* =================================
  レスポンシブ
===================================== */
@media (max-width: 700px) {
  .sec06_flow__topGrid {
    grid-template-columns: 1fr;
  }

  .sec06_flow__plan {
    grid-template-columns: 1fr;
  }

  .sec06_flow__planRibbonCol {
    justify-items: center;
    padding: 0 16px;
  }

  .sec06_flow__planRibbon {
    max-width: 500px;
    transform: translateY(-4px);
  margin-top: 20px;
}

  .sec06_flow__planTextCol {
    display: grid;
    align-content: center;
    padding: 10px 18px 18px;
    min-width: 0;
    border-bottom: 1px solid var(--color-navy-dark);
    border-right: 0;
  }

  .sec06_flow__planSide {
    padding: 14px 18px 18px;
  }

  .sec06_flow__planBadges {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sec06_flow__badge {
    white-space: normal;
    text-align: center;
  }

  .sec06_flow__badge.is-plus {
    justify-self: center;
    font-size: 2rem;
  }

  .sec06_flow__accordionGrid {
    grid-template-columns: 1fr;
  }

  .sec06_flow__accCards--two {
    grid-template-columns: 1fr;
  }

  .sec06_flow__chips {
    grid-template-columns: 1fr;
  }

  .sec06_flow__accLeadText::before,
  .sec06_flow__accLeadText::after {
    content: none;
  }

  .sec06_flow__extraTitle {
    margin: 0 auto 12px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .sec06_flow__extraNote {
    line-height:1.5 ;
}

  .sec06_flow__step {
    padding-left: 50px;
  }
}

/* =================================
  その2（各種申請手続き代行）
===================================== */

/* その2だけの微調整 */
.sec06_flow__stepBody--s2 {
  padding: clamp(18px, 1.8vw, 30px);
}

/* リード文 */
.sec06_flow__s2Lead {
  justify-items: center;
  margin-top: 10px;
  padding-bottom: 10px;
}

.sec06_flow__s2LeadText {
  margin: 0 auto;
  color: var(--color-navy-dark);
  font-weight: 900;
  line-height: 1.45;
  font-size: clamp(1.8rem, 1.6vw, 2.2rem);
  text-align: center;
}

.sec06_flow__s2LeadText span {
  color: var(--color-accent);
}

/* 親を基準にする */
.sec06_flow__stepBody--s2 {
  position: relative;
}

/* イラスト配置 */
.sec06_flow__s2Illust {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 12vw;
  z-index: 2;
  max-width: 200px;

}

.sec06_flow__s2Illust img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(-30%);
}

/* 「主な申請手続き※一例」 */
.sec06_flow__s2MidTitle {
  margin: 8px 0 8px;
  text-align: center;
  color: var(--color-navy-dark);
  font-weight: 900;
  letter-spacing: .04em;
  font-size: clamp(1.6rem, 1.4vw, 2.0rem);
}

.sec06_flow__s2MidTitle span {
  font-weight: 800;
  font-size: 1.2rem;
  margin-left: .4em;
}

/* チップ（2行×3列） */
.sec06_flow__s2Chips {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sec06_flow__s2Chips li {
  color: var(--color-white);
  font-weight: 900;
  text-align: center;
  border-radius: 10px;
  padding: 20px 14px;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  line-height: 1.2;
  background: var(--color-blue-bright);
}

/*色の差” を付ける（好みでON/OFF） */
.sec06_flow__s2Chips li:nth-child(odd) {
  background: var(--color-blue-light);
}

/* 参考価格（枠） */
.sec06_flow__s2PriceBox {
  border: 1px solid var(--color-gray-dark);
  border-radius: 8px;
  background-color:aliceblue;
  padding: 18px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

/* 左の「参考価格」ラベル*/
.sec06_flow__s2PriceLabel {
  border: 1.5px solid var(--color-navy);
  border-radius: 8px;
  color: var(--color-navy);
  font-weight: 900;
  display: grid;
  place-items: center;
  height: 140px;
  background-color: var(--color-white);
}

.sec06_flow__s2PriceLabel span {
  font-size: clamp(1.8rem, 1.6vw, 2.4rem);
  letter-spacing: .04em;
}

/* 右側の価格リスト */
.sec06_flow__s2PriceList {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-navy-dark);
  font-weight: 900;
  line-height: 1.7;
  font-size: clamp(1.6rem, 1.4vw, 2.1rem);
}

.sec06_flow__s2PriceList li {
  position: relative;
  margin: 6px 0;
  padding-left: 0.8em;
}

.sec06_flow__s2PriceList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 0;
  height: 0;
  border-top: 0.34em solid transparent;
  border-bottom: 0.34em solid transparent;
  border-left: 0.5em solid var(--color-navy);
}


.sec06_flow__s2PriceList .is-red {
  color: var(--color-accent);
}

/* ===== レスポンシブ（その2だけ追加） ===== */
@media (max-width: 980px) {
  .sec06_flow__s2Lead {
    justify-items: start;
  }

  .sec06_flow__s2Chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sec06_flow__s2PriceBox {
    grid-template-columns: 1fr;
  }

  .sec06_flow__s2PriceLabel {
    height: 10vw;
    clip-path: none;
  }
}

@media (max-width: 768px) {
  .sec06_flow__s2Chips {
    grid-template-columns: 1fr;
  }


  .sec06_flow__s2Illust img {
    display: none;
}

}

/* =================================
  その3：測量業登録（完成イメージ寄せ）
===================================== */

/* その3は stepBody を使わず、上下2段に分ける */
.sec06_flow__step--s3 {
  padding-bottom: 0;
  /* 余白は下段側で調整 */
}

/* 上段：白背景 */
.sec06_flow__s3Panel {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-navy);
  padding: clamp(18px, 2.2vw, 28px);
  margin: 10px 0 0;
  border-radius: 8px;
}

/* 上段：料金＋イラスト（あなたの既存ベースを流用しつつ微調整） */
.sec06_flow__s3Top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
}

.sec06_flow__s3TopLeft {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
  flex-wrap: wrap;
}

/* 「３」測量業登録の参考価格 */

.sec06_flow__s3PriceTag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 56px;
  padding: 0 18px;
  border: 1.5px solid var(--color-navy);
  border-radius: 8px;
  color: var(--color-navy);
  font-weight: 900;
}

.sec06_flow__s3Price {
  margin: 0;
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-accent);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.sec06_flow__s3Illust img {
  position: absolute;
  top: -80px;
  right: 10vw;
  width: clamp(100px, 14vw, 160px);
  height: auto;
  display: block;
}

.sec06_flow__s3Bottom {
  padding: 30px 0 10px;
}
/* =================================
  その3の縦ラインの終点（三角）
===================================== */

/* その3のli自体を基準にする */
.sec06_flow__step--s3 {
  position: relative;
  padding-bottom: 56px;
  /* 三角分の余白を確保 */
}

/* 青い縦ラインを少し下まで伸ばす */
.sec06_flow__step--s3::before {
  content: "";
  position: absolute;
  left: var(--axis-x);
  top: 0;
  bottom: 18px;
  /* 三角の少し上まで */
  width: 3px;
  background: var(--color-blue-bright);
  border-radius: 999px;
  transform: translateX(-50%);
}

/* 一番下の下向き三角 */
.sec06_flow__step--s3::after {
  content: "";
  position: absolute;
  left: var(--axis-x);
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 18px solid var(--color-blue-bright);
}

/* 最後の人の集合イラスト（PC） */
.sec06_flow__s3People {
  width: 90vw;
  margin-left: 0;
  max-width: 1100px;
}

.sec06_flow__s3People img {
  width: 100%;
  height: auto;
  display: block;
}

/* 税込の注釈(PC) */
.sec06_tax__info {
  font-size: 1.2rem;
  transform: translateX(50%);
}

/* レスポンシブ */

/* =================================
お客様の声 カルーセル
===================================== */
.voice {
  padding: clamp(60px, 7vw, 100px) 20px;
}

.voice__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.voice__title {
  background: var(--color-blue-bright);
  color: var(--color-white);
  text-align: center;
  font-weight: 900;
  font-size: clamp(2.2rem, 2.4vw, 3.2rem);
  line-height: 1.2;
  padding: 18px 20px;
}

.voice__leadRow {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.voice__labelList {
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.voice__label {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: var(--color-blue-bright);
  color: var(--color-white);
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.voice__lead {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(1.4rem, 1.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.6;
}

.voice__carousel {
  margin-top: 28px;
}

.voice__slides {
  position: relative;
}

.voice__slide {
  display: none;
}

.voice__slide.is-active {
  display: block;
}

.voice__content {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: clamp(20px, 2.4vw, 34px);
  align-items: start;
}

.voice__media img {
  display: block;
  width: 100%;
  height: auto;
}

.voice__company {
  margin-top: 14px;
  color: var(--color-navy);
  font-size: clamp(1.8rem, 1.5vw, 2.4rem);
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
}

.voice__balloon {
  position: relative;
  border: 2px solid var(--color-blue-bright);
  background: var(--color-white);
  padding: clamp(26px, 2.8vw, 38px) clamp(20px, 2.2vw, 32px);
}

.voice__balloon::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 46%;
  width: 24px;
  height: 24px;
  background: var(--color-white);
  border-left: 2px solid var(--color-blue-bright);
  border-bottom: 2px solid var(--color-blue-bright);
  transform: rotate(45deg);
}

.voice__heading {
  margin: 0 0 18px;
  text-align: center;
  color: var(--color-navy);
  font-size: clamp(2rem, 2vw, 3rem);
  line-height: 1.55;
  font-weight: 900;
}

.voice__heading span {
  color: #f05c66;
}

.voice__balloon p {
  margin: 0 0 1.2em;
  color: var(--color-gray-dark);
  font-size: clamp(1.5rem, 1.15vw, 1.8rem);
  line-height: 1.95;
}

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

.voice__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  margin-top: 34px;
}

.voice__dot {
  position: relative;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--color-blue-bright);
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.voice__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--color-white);
}

.voice__dot.is-active {
  transform: scale(1.12);
}

.voice__dot:hover {
  transform: scale(1.08);
}

@media screen and (max-width: 900px) {
  .voice__content {
    grid-template-columns: 1fr;
  }

  .voice__balloon::before {
    left: 50%;
    top: -13px;
    transform: translateX(-50%) rotate(135deg);
  }

  .voice__nav {
    gap: 24px;
  }
}

@media screen and (max-width: 500px) {
  .voice {
    padding-inline: 14px;
  }

  .voice__title {
    font-size: 2rem;
    padding: 14px 12px;
  }

  .voice__leadRow {
    gap: 12px;
  }

  .voice__label {
    width: 30px;
    height: 30px;
    font-size: 1.7rem;
  }

  .voice__company {
    font-size: 1.8rem;
  }

  .voice__heading {
    font-size: 1.9rem;
    line-height: 1.5;
  }

  .voice__balloon p {
    font-size: 1.45rem;
    line-height: 1.85;
  }

  .voice__dot {
    width: 28px;
    height: 28px;
  }

  .voice__dot::before {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 8px;
  }
}
/* =========================
 ここからが（お申し込みの流れ）apply_flow
========================= */

.apply_flow {
  padding: 70px 0 60px;
  background: var(--color-bg);
}

.apply_flow__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出しバー */
.apply_flow__title {
  margin: 0 0 28px;
  background: var(--color-blue-bright);
  color: var(--color-white);
  text-align: center;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: clamp(2.2rem, 2.2vw, 3.0rem);
  padding: 18px 16px;
  border-radius: 2px;
}

/* 6枚のカード */
.apply_flow__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 34px;
}

.apply_flow__item {
  position: relative;
  background: var(--color-white);
  border-radius: 10px;
  padding: 34px 22px 22px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
  text-align: center;
  min-height: 300px;
}

/* 左上の番号 */
.apply_flow__num {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--color-blue-bright);
  color: var(--color-white);
  font-weight: 900;
  font-size: 2.2rem;
}

/* 画像 */
.apply_flow__figure {
  margin: 0 0 12px;
  height: 140px;
  display: grid;
  place-items: center;
}

.apply_flow__figure img {
  width: min(190px, 100%);
  height: auto;
  display: block;
}

/* タイトルと文章 */
.apply_flow__itemTitle {
  margin: 0 0 10px;
  color: var(--color-blue-bright);
  font-weight: 900;
  letter-spacing: .06em;
  font-size: clamp(2.0rem, 2.0vw, 2.6rem);
}

.apply_flow__text {
  margin: 0;
  color: var(--color-gray-dark);
  font-weight: 700;
  line-height: 1.75;
  font-size: 1.6rem;
}

/* 赤い三角矢印（横方向だけ：1→2→3、4→5→6） */
.apply_flow__item::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid var(--color-accent);
  opacity: .95;
}

/* 各行の最後（3,6）には矢印を出さない */
.apply_flow__item:nth-child(3)::after,
.apply_flow__item:nth-child(6)::after {
  display: none;
}

/* 注釈 */
.apply_flow__note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-gray-dark);
  font-weight: 700;
  line-height: 1.6;
}

/* ========= レスポンシブ ========= */
@media (max-width: 980px) {
  .apply_flow__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 26px;
  }

  /* 2列では 2,4,6 が行末 */
  .apply_flow__item:nth-child(2)::after,
  .apply_flow__item:nth-child(4)::after,
  .apply_flow__item:nth-child(6)::after {
    display: none;
  }

  .apply_flow__item:nth-child(3)::after {
    display: block;
  }
}

@media (max-width: 640px) {
  .apply_flow__list {
    grid-template-columns: 1fr;
  }

  /* 1列では矢印不要 */
  .apply_flow__item::after {
    display: none;
  }

  .apply_flow__item {
    min-height: auto;
  }
}

/* =========================
 ここからが F＆Q アコーディオン
========================= */
.faq {
  padding: 80px 0;
  background: var(--color-white);
}

.faq__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 20px;
}

.faq__title {
  margin: 0 auto 26px;
  width: min(920px, 100%);
  background: var(--color-navy-dark);
  color: var(--color-white);
  text-align: center;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: clamp(2.2rem, 2.2vw, 3.0rem);
  padding: 18px 16px;
}

.faq__list {
  display: grid;
  gap: 18px;
}

.faq__item {
  width: min(920px, 100%);
  margin: 0 auto;
  border: 1px solid var(--color-navy-dark);
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .06);
}

/* summary default marker off */
.faq__item>summary {
  list-style: none;
}

.faq__item>summary::-webkit-details-marker {
  display: none;
}

/* Q row */
.faq__q {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 54px;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  cursor: pointer;
  background: #dfeff9;
  /* 画像の薄い水色に寄せる */
  border-bottom: 1px solid var(--color-navy-dark);
}

.faq__qText {
  color: var(--color-navy-dark);
  font-weight: 900;
  line-height: 1.45;
  font-size: clamp(1.5rem, 1.5vw, 1.8rem);
}

/* Q/A badges */
.faq__badge {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: .06em;
}

.faq__badge--q {
  background: var(--color-navy-dark);
  color: var(--color-white);
}

.faq__badge--a {
  background: var(--color-accent);
  color: var(--color-white);
}

/* plus / minus in the right circle */
.faq__icon {
  justify-self: end;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--color-navy-dark);
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 3px;
  background: var(--color-navy-dark);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* open => minus */
.faq__item[open] .faq__icon {
  border-color: var(--color-blue-bright);
}

.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: var(--color-blue-bright);
}

.faq__item[open] .faq__icon::after {
  opacity: 0;
}

/* A area */
.faq__a {
  position: relative;
  padding: 18px 16px 22px;
  background: #fbf4e5;
  /* 画像の薄いクリーム */
}

.faq__aRow {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: start;
}

.faq__aText {
  margin: 0;
  color: var(--color-navy-dark);
  font-weight: 700;
  line-height: 1.8;
  font-size: clamp(1.4rem, 1.35vw, 1.6rem);
}

@media (max-width: 768px) {
  .faq__q {
    grid-template-columns: 44px 1fr 44px;
    padding: 14px 12px;
  }

  .faq__badge {
    width: 36px;
    height: 36px;
  }

  .faq__icon,
  .faq__close {
    width: 36px;
    height: 36px;
  }
}

/* =================================
  sec07（メルマガ・出版・動画）
===================================== */

.sec07 {
  padding: 40px 0 60px;
  background: var(--color-bg);
  /* うすい水色背景 */
}

.sec07__inner {
  width: min(1000px, 92vw);
  margin: 0 auto;
}

/* ===== 共通カード ===== */
.sec07__card {
  background: #fff;
  border: 2px solid #1a3f75;
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: 26px;
}

/* ===== ① バナー ===== */
.sec07__banner {
  position: relative;
  border-radius: 12px;
  height: clamp(180px, 20vw, 280px);
  margin-bottom: 40px;
  overflow: hidden;
  cursor: pointer;

  /* ★ box-shadowじゃなくてdrop-shadow */
  filter: drop-shadow(0 6px 14px rgba(26, 63, 117, 0.18));

  /* ★ ゆっくり */
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 画像 */
.sec07__bannerBg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 500px) {
  .sec07__bannerBg {
    content: url("../../images/droneconstruction/sec07/sec07_bannerSp.png");
width: 100%;
  height: 100%;
  scale: 0.95;
  }
}

/* 光 */
.sec07__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(255, 255, 255, 0) 20%,
      rgba(255, 255, 255, 0.18) 50%,
      rgba(255, 255, 255, 0) 80%);
  transform: translateX(-150%);
  transition: transform 1.2s ease;
  z-index: 2;
  pointer-events: none;
}

/* ===== ホバー ===== */
.sec07__banner:hover {
  transform: translateY(-10px);

  /* ★ 影もふわっと強く */
  filter: drop-shadow(0 18px 28px rgba(26, 63, 117, 0.28));
}

.sec07__banner:hover .sec07__bannerBg {
  transform: scale(1.03);
}

.sec07__banner:hover::before {
  transform: translateX(150%);
}

/* ===== ② 出版実績 ===== */
.sec07__pub {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 24px;
}

.sec07__label {
  display: inline-flex;
  gap: 6px;
  background: #0b5fa8;
  color: #fff;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: .12em;
  width: fit-content;
  margin-bottom: 14px;
}

.sec07__pubTitle {
  color: #0b2f66;
  font-weight: 900;
  line-height: 1.25;
  font-size: clamp(20px, 2.2vw, 34px);
  margin: 0 0 10px;
}

.sec07__pubSub {
  color: #0b2f66;
  font-weight: 800;
  margin: 0 0 18px;
}

.sec07__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  min-width: min(420px, 100%);
  background: #3a8df2;
  color: #fff;
  font-weight: 900;
  border-radius: 12px;
  text-decoration: none;
}

.sec07__pubRight {
  display: grid;
  place-items: center;
}

.sec07__book {
  width: min(320px, 100%);
  height: auto;
  display: block;
}

/* ===== ③ お役立ち情報 ===== */
.sec07__infoBar {
  background: #0b5fa8;
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding: 18px 16px;
  border-radius: 10px;
  margin: 0 0 18px;
  font-size: clamp(18px, 2.4vw, 30px);
}

.sec07__infoLead {
  text-align: center;
  color: #0b2f66;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 34px);
  margin: 0 0 18px;
}

.sec07__videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sec07__video {
  display: grid;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.sec07__video img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.sec07__videoCap {
  color: var(--color-navy-dark);
  font-weight: 900;
  font-size: 14px;
  margin: 0;
}

/* ===== レスポンシブ ===== */
@media (max-width: 860px) {
  .sec07__pub {
    grid-template-columns: 1fr;
  }

  .sec07__pubRight {
    order: -1;
  }

  .sec07__videos {
    grid-template-columns: 1fr;
  }

  .sec07__bannerCenter {
    padding-inline: 18px;
    /* SPはキャラ重なり回避優先 */
  }

  .sec07__bannerLeft,
  .sec07__bannerRight {
    opacity: .85;
  }
}

/* =================================
  footer(PC)
===================================== */

.footer {
  position: relative;
  width: 100%;
  background: url(../../images/droneconstruction/footer/footer_bgSky.png) center/cover no-repeat;
  overflow: hidden;
  z-index: 20;
}

/* 街（建物） */
.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 98px;
  max-width: 1200px;
  width: 100%;
  height: 100px;
  background: url(../../images/droneconstruction/footer/footer_bg_town.png) bottom center / 100% 100% no-repeat;
  pointer-events: none;
}

/* 芝生 */
.footer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: url(../../images/droneconstruction/footer/footer_bgGlass.png) bottom center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: -10;
}

/* 中身の基準 */
.footer__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 320px;
  padding: 48px 20px 0px;
  /* 下は芝生/街に被らないように厚め */
  z-index: 1;
}

/* 3カラム固定（左：装飾 / 中央：住所 / 右：TOP+キャラ） */
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  grid-template-areas:
    /* "logo  . top" */
    "drone address address"
    "worker address address"
    ". . copy";
  gap: 0px 24px;
}

/* 配置 */
.footer__logo { grid-area: logo; }
.footer__address { grid-area: address; color: white; line-height: 1.6; letter-spacing: .03em;}
.footer__top { grid-area: top; }
.footer__drone { grid-area: drone; }
.footer__worker { grid-area: worker; }
.footer__copy { grid-area: copy; }

/* 共通 */
.footer__logo img,
.footer__top img,
.footer__drone img,
.footer__worker img {
  width: 100%;
  height: auto;
  display: block;
}

/* サイズ調整 */
.footer__logo {
  width: 200px;
}

.footer__top {
  width: 80px;
  justify-self: end;
}

.footer__drone {
  width: 150px;
  align-self: center;
}

.footer__drone img {
 transform: translateX(6vw);
}

.footer__worker {
  width: clamp(220px, 4vw, 18vw);
  align-self: self-end;

}

.footer__worker img {
 transform: translateY(clamp(4vw, 7vw, 10vw));
}

.footer__copy {
  color: #fff;
  font-size: 12px;
  align-items: center;
  padding-bottom: 10px;
}


@media (max-width: 500px) {
  body {
    padding-bottom: 170px;
  }

  .footer::before {
    bottom: 84px;
    height: 42px;
    background: url(../../images/droneconstruction/footer/footer_bg_townSp.png) bottom center / cover no-repeat;
  }

  .footer::after {
    height: 84px;
    background-size: cover;
    z-index: 0;
  }

  .footer__inner {
    min-height: auto;
    padding: 16px 14px 0px;
  }

  .footer__grid {
display: block;
  }

  .footer__address {
    color: #fff;
    line-height: 1.55;
    letter-spacing: 0.02em;
    font-size: 1.2rem;
    align-self: start;
    justify-self: start;
    width: 100%;
    padding: 20px 6px;
    z-index: 2;
  }

  .footer__office {
    font-size: 1.3rem;
    margin-bottom: 2px;
  }

  .footer__contact {
    margin-top: 12px;
    font-weight: 700;
    word-break: break-word;
  }

  .footer__drone {
    width: 110px;
    justify-self: center;
    align-self: end;
    z-index: 2;
  }

  .footer__drone img {
    transform: scaleX(-1) translate(-10vw, 4vw);
    transform-origin: center;
  }

  .footer__worker {
    width: 32vw;
    justify-self: end;
    align-self: end;
    z-index: 2;
  }

  .footer__worker img {
    transform: scaleX(-1) translate(10vw, 10vw);
    transform-origin: bottom center;
  }

  .footer__copy {
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    justify-self: start;
    align-self: end;
    position: relative;
    z-index: 2;
    padding-left: 6px;
    padding-bottom: 10px;
    bottom:10px
  }

}
