@charset "UTF-8";

/* =========================================================
   Boundary Gyoseishoshi Hojin – Drone 包括申請 LP
   Responsive: Mobile-first → PC at min-width: 960px
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --c-navy:        #002B4C;
  --c-navy-2:      #005799;
  --c-orange:      #F4AA00;
  --c-sky-pale:    #CCE9FF;
  --c-sky-bg:      #E8F4FF;
  --c-white:       #FFFFFF;
  --c-text:        #002B4C;
  --c-text-muted:  #1A3A5C;

  --ff-base: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
             "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;

  --container-max: 1280px;
  --header-h-sp:   72px;
  --header-h-pc:   100px;

  --shadow-btn:    0 2px 2px rgba(0, 43, 76, 0.20);
  --shadow-card:   0 4px 12px rgba(0, 43, 76, 0.12);
  --radius-pill:   9999px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-base);
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.6;
  background-color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; vertical-align: middle; }

a { color: inherit; text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .85; }

button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

ul { list-style: none; margin: 0; padding: 0; }

@media (max-width: 959.98px) {
  body {
    background-image: url(../../images/dronecomprehensive/SPback.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
  }
  .container {
    margin: 0 auto;
    max-width: 375px;
    background-color: var(--c-white);
  }
}

/* =========================================================
   COMMON section title (Zen Kaku Gothic New)
   ========================================================= */
h2 {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: var(--c-navy);
  margin: 0 0 32px;
  letter-spacing: .04em;
}

h3 {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: var(--c-navy);
  margin: 0 0 32px;
  letter-spacing: .04em;
}

p {
  font-size: 16px;
}


/* =========================================================
   HEADER
   メインビジュアルに重ねて配置 → 背後の空写真が透けて見える
   ========================================================= */
.site-header {
  position: fixed;   /* SP / PC: スクロール追従 。タブレットは後述のMQで上書き */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.5);
  height: var(--header-h-sp);
  transition: background-color .3s ease, box-shadow .3s ease;
}

/* スクロール時：JS が付与するクラスで背景を不透明化 */
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 8px rgba(0, 43, 76, 0.10);
}

.site-header__inner {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { width: 90px; height: auto; display: block; }

.site-header__nav { display: flex; align-items: center; gap: 8px; }

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.header-icon svg { width: 100%; height: 100%; display: block; }

.header-icon--tel,
.header-icon--mail {
  display: inline-flex;
}

.header-icon--menu { width: 32px; height: 32px; }


/* =========================================================
   ARTICLE HEADER (MV + features 共通の relative コンテナ)
   斜めオーバーレイをセクションを跨いで絶対配置するための親
   ========================================================= */
.article_header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.article_header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* SP: MV(=100vh) の高さ分のみカバー */
  height: 100vh;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path d='M0 0 L100 0 L100 70.46 L54.5 99.85 L46.81 100 L0 70.67 Z' fill='%23CCE9FF' fill-opacity='0.5'/></svg>");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}


/* =========================================================
   MAIN VISUAL (Hero)
   ========================================================= */
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(180deg, #7CB8E8 0%, #B5DBF2 100%);
}

.mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.mv__inner {
  position: relative;
  z-index: 3;     /* 斜めオーバーレイ(z:1)・背景(z:0)より前面 */
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--header-h-sp) + 16px) 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 0;
  gap: 2%;
}

.mv__body { display: contents; }

.mv__heading { order: 1; }
.mv__cta     { order: 2; }
.mv__people  { order: 3; }
.mv__drone   { order: 4; }

.mv__heading {
  margin: 0 0 10px;
  width: 100%;
  max-width: 340px;
}
.mv__heading img { width: 100%; height: auto; display: block; }

.mv__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.cta {
  display: block;
  width: 100%;
  border-radius: var(--radius-pill);
  overflow: hidden;
  transition: transform .2s ease, opacity .2s ease;
}
.cta img { width: 100%; height: auto; display: block; }
.cta:hover { transform: translateY(-2px); opacity: 1; }

.mv__people {
  width: 100px;
  max-width: 200px;
  margin-top: auto;
  align-self: center;
}
.mv__people img { width: 100%; height: auto; display: block; }

.mv__drone { display: none; }

.features {
  position: relative;
  background: transparent;     /* 背景は ::before へ移動 */
  padding: 32px 16px 48px;
}

.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-sky-bg);
  z-index: 1;                  /* オーバーレイ(z:2)の下に潜る */
}

.features__inner {
  position: relative;
  z-index: 3;                  /* オーバーレイより前にコンテンツを乗せる */
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.features__ribbons {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 400px;
}

/* SP: リボン2枚は非表示（デザインに含まれない） */
@media (max-width: 959.98px) {
  .features__ribbons { display: none; }
}

.ribbon { display: flex; justify-content: center; }
.ribbon img { width: 100%; max-width: 182px; height: auto; display: block; }

.features__awards {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 100px;
}

/* PC用ブロック（3medal.svg 一体型）は SP では非表示 */
.features__awards--pc { display: none; }
.features__awards--pc img { width: 100%; height: auto; display: block; }

/* 3冠の見出し（月桂樹+「お客様満足で3冠」） */
.features__title {
  margin: 0 0 24px;
  text-align: center;
}
.features__title img {
  width: 100%;
  max-width: 331px;
  height: auto;
  display: inline-block;
}

/* メダル3枚：SPは縦並び、PCで横3列
   各SVGの「メダル円が SVG 全体に占める割合」が異なるため、要素幅を個別指定
   - homu: 円が SVG の 77% を占める
   - kigaru: 90%
   - irai: 58%（左右余白が広い） */
.features__medals {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.medal {
  display: flex;
  justify-content: center;
}
.medal img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* SP: メダル円幅を約 150px に揃える */
.medal--homu   { width: 195px; }   /* 150 / 0.77 */
.medal--kigaru { width: 167px; }   /* 150 / 0.90 */
.medal--irai   { width: 259px; }   /* 150 / 0.58 */
.features__awards img { width: 100%; height: auto; display: block; }

/* =========================================================
   WORRIES section (こんなお悩み、ありませんか？)
   ========================================================= */
.worries {
  background: var(--c-white);
  padding: 56px 16px 40px;
}

.worries__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.worries__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.worry {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 364px;
}

.worry__bubble {
  width: 100%;
  margin-bottom: 0;
}

.worry__bubble img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.worry__person {
  max-width: 180px;
  margin-top: 10px;
}

.worry__person img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* =========================================================
   BRIDGE section (青背景: プロの伴走 + チーム)
   ========================================================= */
.bridge {
  display: block;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.bridge__team--sp { display: block; height: auto; margin: 0 auto; }
.bridge__team--pc { display: none; }


/* =========================================================
   CLIENTS section (実績豊富なバウンダリにお任せ！)
   ========================================================= */
.clients {
  background: var(--c-white);
  padding: 56px 16px 56px;
}

.clients__inner {
  max-width: 375px;
  margin: 0 auto;
  text-align: center;
}

.clients__sub {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-text);
  margin: -20px 0 32px;
  letter-spacing: .04em;
}

.clients__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}


/* =========================================================
   CTA1 / CTA2 section
   ========================================================= */
.cta1, .cta2 {
  position: relative;
  background-image: url("../../images/dronecomprehensive/SP_cta1_back.png");
  background-position: center top;
  background-repeat: no-repeat;
  padding: 80px 16px 200px;
  min-height: 700px;
}

.cta1__inner, .cta2__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta1__title, .cta2__title {
  margin: 0 0 32px;
}

.cta1__buttons, .cta2__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 32px;
}

.cta1__comment, .cta2__comment {
  margin: 0 auto;
  width: 90%;
  max-width: 360px;
  display: block;
}

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

.cta1__comment .cta1__comment-pc,
.cta2__comment-pc { display: none; }
.cta1__comment .cta1__comment-sp,
.cta2__comment-sp { display: block; }


/* =========================================================
   ABOUT section
   ========================================================= */
.about {
  background: var(--c-white);
  padding: 56px 16px 32px;
}

.about__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.about__main-title {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 900;
  font-size: 24px;
  text-align: center;
  color: var(--c-navy);
  margin: 0 0 6px;
  letter-spacing: .02em;
  line-height: 1.5;
}

.about__lead {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-muted);
  margin: 0 0 24px;
}

/* -------------------------------------------------------
   共通ブロック枠（帯タイトル＋コンテンツ）
------------------------------------------------------- */
.about__block {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.about__block-header {
  background: var(--c-navy);
  padding: 10px 10px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about__block-title {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-white);
  letter-spacing: .04em;
  line-height: 1.5;
  text-align: left;
  vertical-align: bottom;
}

.about__block-icon {
  display: inline-block;
  margin-bottom: 4px;
  margin-left: -20px;
}

.about__block-icon img {
  width: auto;
  height: 20px;
}

.about__block-body {
  padding: 18px 16px 20px;
  background: var(--c-white);
}

.about__box-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text);
  margin: 0;
}
.about__box-text strong { font-weight: 700; }

.about__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 16px;
  color: var(--c-navy-2);
  text-decoration: underline;
  cursor: pointer;
}

/* -------------------------------------------------------
   図解エリア（SP: 縦並び / PC: 横並び・高さ揃え）
------------------------------------------------------- */
.about__diagram-img--pc { display: none; }
.about__diagram-img--sp { display: block; }

.about__diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  gap: 0;
}

.about__diagram-left .about__diagram-img,
.about__diagram-right .about__diagram-img {
  width: 100%;
  height: auto;
}

.about__diagram-plus {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 900;
  font-size: 32px;
  color: var(--c-navy);
  line-height: 1;
  padding: 8px 0;
  text-align: center;
  flex-shrink: 0;
  align-self: center;
}

/* -------------------------------------------------------
   YouTube 枠
------------------------------------------------------- */
.about__youtube {
  margin: 16px 0 0;
  border: 1.5px solid #C5DCF0;
  border-radius: 8px;
  padding: 20px 16px;
  background: var(--c-white);
  text-align: center;
}

.about__youtube-lead {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-navy);
  margin: 0 0 6px;
}

.about__youtube-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text-muted);
  margin: 0 0 16px;
  text-align: left;
}

.about__youtube-videos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.about__youtube-thumb {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  line-height: 0;
  aspect-ratio: 16 / 9;
}

.about__youtube-thumb iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.about__youtube-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E8F4FF;
  border: 1.5px solid #93C4E8;
  border-radius: var(--radius-pill);
  padding: 9px 28px;
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-navy);
  text-decoration: none;
  transition: background .2s;
  margin-bottom: 16px;
}
.about__youtube-btn:hover { background: #CCE9FF; opacity: 1; }

.about__youtube-btn-ico {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.about__youtube-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding-top: 16px;
}

.about__youtube-chara {
  max-width: 150px;
  flex-shrink: 0;
}
.about__youtube-chara img { width: 100%; height: auto; display: block; }

.about__youtube-comment-text {
  font-size: 12px;
  line-height: 1.75;
  color: var(--c-text-muted);
  margin: 0;
  flex: 1 1 auto;
}


/* =========================================================
   RISKS section
   ========================================================= */
.risks {
  background: var(--c-white);
  padding: 56px 16px 56px;
}

.risks__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.risks__header-box {
  background: var(--c-navy);
  border-radius: 4px;
  padding: 11px 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.risks__title {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-white);
  text-align: center;
  letter-spacing: .03em;
  line-height: 1.5;
}

.risks__lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text);
  margin: 0 0 24px;
}

.risks__scene {
  background: var(--c-white);
  padding: 16px 0 32px;
}

.risks__person-sp img { margin: 0 auto; display: block; }
.risks__person img { display: none; }


/* =========================================================
   PRE-CTA section
   ========================================================= */
.precta {
  background-image: url("../../images/dronecomprehensive/SP_yellowBack.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  padding: 100px 16px 200px;
  text-align: center;
  position: relative;
  margin-top: -160px;
  z-index: 2;
}

.precta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.precta__eyebrow {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-size: 20px;
  color: var(--c-text-muted);
  margin: 0 0 6px;
  letter-spacing: .04em;
}

.precta__title {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 900;
  font-size: 22px;
  color: var(--c-navy);
  margin: 0 0 20px;
  line-height: 1.4;
  letter-spacing: .02em;
}

.precta__text {
  font-size: 16px;
  text-align: left;
  line-height: 1.9;
  color: var(--c-text);
  margin: 0 0 28px;
}

.precta__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
  margin: 0 auto;
}


/* =========================================================
   REASONS section
   ========================================================= */
.reasons {
  position: relative;
  background: #F7F7F5;
  padding: 0 0 64px;
  overflow: visible;
  margin-top: -150px;
}

/* 四隅の水色三角 */
.reasons__deco { position: absolute; z-index: 0; }

.reasons__deco--tl {
  top: 0; left: 0;
  width: 0; height: 0;
  border-top: 30px solid #CCE9FF;
  border-right: 30px solid transparent;
}
.reasons__deco--tr {
  top: 0; right: 0;
  width: 0; height: 0;
  border-top: 30px solid #CCE9FF;
  border-left: 30px solid transparent;
}
.reasons__deco--bl {
  bottom: 0; left: 0;
  width: 0; height: 0;
  border-bottom: 30px solid #CCE9FF;
  border-right: 30px solid transparent;
}
.reasons__deco--br {
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-bottom: 30px solid #CCE9FF;
  border-left: 30px solid transparent;
}

.reasons__inner {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 800px;
  margin: -40px auto 0;
  background: var(--c-white);
  border-radius: 8px;
  padding: 48px 12px;
}

.reasons__eyebrow {
  text-align: center;
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-size: 20px;
  color: var(--c-text-muted);
  letter-spacing: .15em;
  margin: 0 0 8px;
}

.reasons__title {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 900;
  font-size: 24px;
  color: var(--c-navy);
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.55;
}

.reasons__title span { display: none; }

.reasons__list { list-style: none; margin: 0; padding: 0; }
.reasons__item { display: block; line-height: 0; }
.reasons__img { width: 100%; height: auto; display: block; }
.reasons__img--pc { display: none; }
.reasons__img--sp { display: block; margin-bottom: 10px; }


/* =========================================================
   SERVICE section
   ========================================================= */
.service {
  background-color: #F7F7F5;
  padding: 48px 0 100px;
  margin-top: -10px;
}

.service__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.service__main-title img {
  width: 100%;
}

.service__consultant-wrap {
  position: relative;
  line-height: 0;
}

.service__consultant-btn {
  position: absolute;
  bottom: 10%;
  left: 6%;
  display: inline-flex;
  align-items: center;
  background: var(--c-sky-bg);
  border: 2px solid var(--c-navy-2);
  border-radius: var(--radius-pill);
  padding: 10px 28px;
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-navy);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
  transition: background .2s;
}

.service__consultant-btn:hover {
  background: var(--c-sky-pale);
  opacity: 1;
}

/* 帯タイトル（料金のご案内 / お手続き方法） */
.service__band {
  background: var(--c-navy);
  border-radius: 4px;
  padding: 12px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.service__band-text {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-white);
  letter-spacing: .06em;
}

/* SVG カード共通 */
.service__card {
  margin-bottom: 20px;
  line-height: 0;
}

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

.service__img--pc { display: none; }
.service__img--sp { display: block; }

.service__consultant {
  margin-bottom: 40px;
  line-height: 0;
}

/* お手続き6ステップ */
.service__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service__step { line-height: 0; }

/* =========================================================
   REASONS — スクロール pop アニメーション
   画面に入ったら中心から少し膨らんで元のサイズに戻る。
   JS が .is-popped を付与した場合のみ発火。
   ========================================================= */
@keyframes reasons-pop {
  0%   { transform: scale(1); }
  55%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.reasons__inner.is-popped {
  transform-origin: center center;
  animation: reasons-pop .75s ease-in-out forwards;
}


/* スクロール登場アニメーション初期状態
   JS が .js-animate を付与した場合のみ適用（JS 無効時は常に表示） */
.service__steps.js-animate .service__step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.service__steps.js-animate .service__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.cta2 { margin-top: -30px; }


/* =========================================================
   FAQ section（よくあるご質問）
   ========================================================= */
.faq {
  background: var(--c-white);
  padding: 56px 16px 64px;
}

.faq__inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq__title {
  text-align: center;
  margin: 0 0 36px;
}

.faq__title img {
  max-width: 280px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: var(--c-sky-pale);
  border-radius: 6px;
  overflow: hidden;
  border: solid 2px;
}

.faq__question {
  width: 100%;
  background: var(--c-white);
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-navy);
  line-height: 1.5;
  transition: background .2s;
}

.faq__question:hover { background: #f5f8fc; }

.faq__q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: .02em;
}

.faq__q-text { flex: 1 1 auto; }

/* ＋ / − アイコン */
.faq__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--c-navy);
  position: relative;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--c-navy);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::before { width: 10px; height: 2px; }
.faq__icon::after  { width: 2px; height: 10px; transition: transform .25s; }

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* アコーディオン 回答 */
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
  background: #f5f8fc;
}

.faq__answer.is-open { grid-template-rows: 1fr; }

.faq__answer-inner {
  overflow: hidden;
  padding: 0 20px 0 64px;
}

.faq__answer.is-open .faq__answer-inner { padding-bottom: 20px; }

.faq__answer-inner p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text);
  margin: 12px 0 0;
}

.faq__answer-inner p:first-child { margin-top: 16px; }

.faq__sub-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.faq__sub-list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text);
  padding-left: 1em;
  position: relative;
}

.faq__sub-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}


/* =========================================================
   SNS section（気になるあの情報）
   ========================================================= */
.sns {
  background: var(--c-white);
  padding: 40px 16px 48px;
}

.sns__inner {
  max-width: 700px;
  margin: 0 auto;
}

.sns__card {
  background: var(--c-sky-bg);
  border-radius: 10px;
  padding: 24px 20px 20px;
  text-align: center;
}

.sns__lead {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-navy);
  margin: 0 0 16px;
  letter-spacing: .03em;
}

.sns__icons {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 20px;
}

.sns__icons li a {
  display: block;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
  transition: opacity .2s, transform .2s;
}

.sns__icons li a img {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 50%;
}

.sns__icons li a:hover { opacity: .8; transform: translateY(-2px); }

.sns__comment-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  flex-direction: column-reverse;
}

.sns__bounta {
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

.sns__comment { flex: 1 1 auto; max-width: 300px; }

.sns__comment-img { width: 100%; height: auto; display: block; }
.sns__comment-img--pc { display: none; }
.sns__comment-img--sp { display: block; }


/* =========================================================
   CONTACT section（最短1分！無料相談予約）
   ========================================================= */
.contact {
  background: #FFF0CC;
  padding: 56px 16px 64px;
}

.contact__inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact__title {
  text-align: center;
  margin: 0 0 36px;
}

.contact__title img {
  max-width: 480px;
  width: 90%;
  height: auto;
  display: inline-block;
}

.contact__form {
  width: 100%;
  background-color: var(--c-white);
  padding: 24px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 43, 76, 0.08);
}


/* =========================================================
   PARTNER section（Your partner）
   ========================================================= */
.partner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 56px 16px 48px;
  background-color: var(--c-sky-bg);
}

.partner__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.partner__title { margin: 0 0 28px; }

.partner__title img {
  max-width: 500px;
  width: 90%;
  height: auto;
  display: inline-block;
}

.partner__list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.partner__list li {
  font-size: 13px;
  line-height: 1.8;
  color: var(--c-navy);
  padding-left: 1.4em;
  position: relative;
}

.partner__list li::before {
  content: "＞";
  position: absolute;
  left: 0;
  color: var(--c-navy-2);
  font-size: 13px;
}

.partner__mgz-link {
  margin: 0 auto;
  width: 90%;
  display: block;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,43,76,.12);
  transition: opacity .2s, transform .2s;
}

.partner__mgz-link:hover { opacity: .9; transform: translateY(-2px); }

.partner__mgz-link img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* =========================================================
   PUBLICATIONS section（出版実績）
   ========================================================= */
.publications {
  background-color: var(--c-white);
  padding: 56px 16px 64px;
}

.publications__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.publications__title { margin: 0 0 28px; }

.publications__title img {
  max-width: 380px;
  width: 80%;
  height: auto;
  display: inline-block;
}

.publications__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.publications__book {
  width: 160px;
  flex-shrink: 0;
}

.publications__book img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 20px rgba(0,43,76,.2);
}

.publications__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--c-navy);
  margin: 0;
  text-align: center;
}


/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: transparent;
  padding: 0 16px 0;
  position: relative;
}

.footer-top-return {
  display: block;
  max-width: 180px;
  margin: 30px auto 0;
  transform: translateX(90px);
  line-height: 0;
  transition: opacity .2s, transform .2s;
}
.footer-top-return:hover { opacity: .85; transform: translateY(-44px); }

/* ふわふわ飛行アニメーション
   コンテナの transform: translateX(90px) と競合しないよう img に適用。
   ホバー時はアニメーションを一時停止し、コンテナの hover 動作を優先する。 */
@keyframes footer-float {
  0%   { transform: translateY(0)    rotate(0deg);  }
  45%  { transform: translateY(-7px) rotate(-2deg); }
  100% { transform: translateY(0)    rotate(0deg);  }
}

.footer-top-return img {
  width: 100%;
  height: auto;
  display: block;
  animation: footer-float 3s ease-in-out infinite;
}

.footer-top-return:hover img {
  animation-play-state: paused;
}

.site-footer__inner {
  max-width: 375px;
  margin: 0 auto;
  padding-bottom: 0;
}

.site-footer__logo {
  margin: 0 0 24px;
  text-align: left;
}
.site-footer__logo img {
  max-width: 80px;
  height: auto;
  display: inline-block;
}

.site-footer__offices {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.site-footer__office-name {
  font-family: 'Zen Kaku Gothic New', var(--ff-base);
  font-weight: 600;
  font-size: 12px;
  color: var(--c-white);
  margin: 0 0 4px;
  letter-spacing: .04em;
}

.site-footer__office-addr {
  font-size: 11px;
  line-height: 1.7;
  color: var(--c-white);
  margin: 0;
}

.site-footer__contact {
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 24px;
}

.site-footer__contact p {
  font-size: 12px;
  color: var(--c-white);
  margin: 4px 0;
}

.site-footer__contact a {
  color: var(--c-navy-2);
  text-decoration: underline;
}

.site-footer__copy {
  font-size: 10px;
  color: rgba(255,255,255,.7);
  text-align: center;
  margin: 0;
  letter-spacing: .04em;
  background: var(--c-navy);
  width: 100%;
  padding: 14px 16px;
  border-top: none;
}


/* =========================================================
   TEXT LINK STATES (hover / visited)
   対象: テキストリンクのみ。CTA・ボタン類には影響しない。
   hover  → ブランドオレンジ var(--c-orange) / #F4AA00
   visited → ミュートスチールブルー #6b93b3（ネイビー系トンマナ内）

   ※ グローバルの a { transition: opacity } のみでは色変化が
     アニメーションしないため、各リンクに transition: color を追加。
     publications は <a> が <p> を囲む構造のため p にも個別指定。
   ========================================================= */

/* --- ベース：color トランジションを付与 --- */
.about__link {
  transition: color .2s ease, opacity .2s ease;
}

.partner__list li a {
  transition: color .2s ease, opacity .2s ease;
}

.publications__content a .publications__desc {
  transition: color .2s ease;
}

.site-footer__contact a {
  transition: color .2s ease, opacity .2s ease;
}

/* --- about セクション：個別申請リンク --- */
.about__link:hover {
  color: var(--c-orange);
  opacity: 1;
}
.about__link:visited { color: #6b93b3; }

/* --- partner セクション：サービス一覧リンク --- */
.partner__list li a:hover {
  color: var(--c-orange);
  opacity: 1;
}
.partner__list li a:visited { color: #6b93b3; }

/* --- publications セクション：書籍リンク ---
   <a> が <p class="publications__desc"> を囲む構造のため
   p にも直接 color を指定する */
.publications__content a:hover .publications__desc,
.publications__content a:hover p {
  color: var(--c-orange);
}
.publications__content a:hover { opacity: 1; }
.publications__content a:visited .publications__desc,
.publications__content a:visited p { color: #6b93b3; }

/* --- フッター：電話・メールリンク --- */
.site-footer__contact a:hover {
  color: var(--c-orange);
  opacity: 1;
}
.site-footer__contact a:visited { color: #6b93b3; }


/* =========================================================
   SP 固定 CTA バー (〜767.98px)
   ヘッダー固定に合わせ、下部にも tel / mail を横並び固定。
   ========================================================= */
.fixed-cta-sp {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -2px 10px rgba(0, 43, 76, 0.12);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
  align-items: center;
}

.fixed-cta-sp__item {
  flex: 1;
  display: block;
  border-radius: var(--radius-pill);
  overflow: hidden;
  line-height: 0;
  transition: opacity .2s, transform .2s;
}

.fixed-cta-sp__item:hover { opacity: .85; transform: translateY(-1px); }

.fixed-cta-sp__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* SP のみ body 下部に余白を確保（固定バー分） */
@media (max-width: 767.98px) {
  body { padding-bottom: 0; }
.site-footer__copy { padding-bottom: calc(14px + 76px); }
}


/* =========================================================
   タブレット 固定ロゴ（左上 / 768〜959.98px）
   ヘッダーが消えてもロゴだけその場に残るイメージ。
   背景透過・ヘッダーロゴと同じ位置・サイズ。
   ========================================================= */
.fixed-logo-tablet {
  display: none; /* タブレットMQで表示 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  height: var(--header-h-pc);   /* ヘッダーと同じ高さ */
  padding-left: 24px;           /* ヘッダーinner と同じ左余白 */
  align-items: center;
  background: transparent;
}

.fixed-logo-tablet a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity .2s;
}

.fixed-logo-tablet a:hover { opacity: .85; }

.fixed-logo-tablet img {
  width: 130px;   /* タブレット時のヘッダーロゴ幅と同じ */
  height: auto;
  display: block;
}


/* =========================================================
   タブレット 固定 CTA ピル（右中央 / 768〜959.98px）
   空のスカイブルー背景のピルに tel・mail・menu アイコンを
   縦並びで載せ、画面右中央に固定。
   ========================================================= */
.fixed-cta-tablet {
  display: none; /* タブレットMQで表示 */
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background: var(--c-sky-bg);
  border-radius: 40px;
  padding: 16px 10px;
  box-shadow: 0 4px 20px rgba(0, 43, 76, 0.18);
}

.fixed-cta-tablet__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}

.fixed-cta-tablet__icon:hover { opacity: .85; transform: scale(1.08); }

.fixed-cta-tablet__icon svg { display: block; }


/* =========================================================
   TABLET LAYOUT (768px 〜 959.98px)
   ヘッダーは固定しない。ロゴ＋CTAピルを右側に固定。
   ========================================================= */
@media (min-width: 768px) and (max-width: 959.98px) {

  /* ヘッダー：タブレットではスクロールで消える（固定しない） */
  .site-header {
    position: absolute;
    height: var(--header-h-pc);
  }

  .site-header__inner { padding: 0 24px; }
  .site-header__logo img { width: 130px; }
  .site-header__nav { gap: 14px; }

  .header-icon--tel,
  .header-icon--mail { width: 44px; height: 44px; }

  /* SP固定バー：非表示 */
  .fixed-cta-sp { display: none; }

  /* タブレット固定ロゴ・CTAピル：表示 */
  .fixed-logo-tablet { display: flex; }
  .fixed-cta-tablet  { display: flex; }
}


/* =========================================================
   PC LAYOUT (≥ 960px)
   ========================================================= */

@media (min-width: 960px) {

  .spBr { display: none; }

  p { font-size: 18px; }

  /* ---- Header ---- */
  .site-header {
    position: fixed;   /* PC: スクロール追従 */
    height: var(--header-h-pc);
  }
  .site-header__inner { padding: 0 40px; }
  .site-header__logo img { width: 167px; }
  .site-header__nav { gap: 20px; }

  /* 両固定バーはPC非表示 */
  .fixed-cta-sp,
  .fixed-cta-tablet,
  .fixed-logo-tablet { display: none; }

  .header-icon--tel,
  .header-icon--mail {
    display: inline-flex;
    width: 50px;
    height: 50px;
  }
  .header-icon--menu { width: 44px; height: 39px; }


  /* ---- Main Visual: PC layout ---- */
  .mv {
    height: 100vh;
    min-height: 600px;
  }

  .mv__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "heading drone"
      "body    drone";
    column-gap: 24px;
    padding: calc(var(--header-h-pc) + 24px) 40px 0;
    text-align: left;
    align-items: start;
    height: 100%;
    min-height: 0;
  }

  .mv__heading {
    grid-area: heading;
    width: 100%;
    max-width: 640px;
    margin: 0 0 20px;
  }
  .mv__heading img { width: 100%; }

  .mv__body {
    grid-area: body;
    display: flex;
    align-items: flex-end;
    gap: 24px;
    height: 100%;
  }

  .mv__heading,
  .mv__cta,
  .mv__people,
  .mv__drone { order: initial; }

  .mv__people {
    width: 180px;
    max-width: 180px;
    margin: 0;
    flex-shrink: 0;
    align-self: end;
  }

  .mv__people img {
    width: auto;
    height: 86%;
    display: block;
  }

  .mv__cta {
    max-width: 300px;
    width: 100%;
    margin: 0 0 32px;
    gap: 14px;
    align-self: center;
  }

  .mv__drone {
    grid-area: drone;
    display: block;
    width: 100%;
    max-width: 440px;
    align-self: center;
    justify-self: center;
    margin: 0;
  }
  .mv__drone img { width: 100%; height: auto; display: block; }


  /* ---- PC: 斜めオーバーレイを横長台形＋全高に上書き ---- */
  .article_header::before {
    height: 100%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'><path d='M0 0 L62 0 L18 100 L0 100 Z' fill='%23CCE9FF' fill-opacity='0.5'/></svg>");
    width: 120%;
    overflow: hidden;
  }


  /* ---- Features: PC layout ---- */
  .features { padding: 0 40px 80px; }

  .features__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: var(--container-max);
  }

  .features__ribbons {
    flex: 0 0 auto;
    max-width: 388px;
    gap: 24px;
  }

  .features__awards {
    flex: 1 1 auto;
    max-width: 728px;
    padding-top: 40px;
    margin-top: 0;
  }

  .features__awards--pc { display: flex; }
  .features__awards--sp { display: none; }

  .section-title {
    font-size: 36px;
    margin-bottom: 48px;
  }


  /* ---- Worries ---- */
  .worries { padding: 96px 40px 64px; }

  .worries__list {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .worry {
    flex: 1 1 0;
    max-width: 364px;
  }


  /* ---- Clients ---- */
  .clients { padding: 80px 40px 80px; }

  .clients__inner { max-width: 2560px; }

  .clients__sub {
    font-size: 24px;
    margin: -32px 0 48px;
  }

  .clients__logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 32px;
    max-width: 960px;
  }

  .client-logo { height: 80px; }


  /* ---- Bridge ---- */
  .bridge__team--sp { display: none; }
  .bridge__team--pc { display: block; width: 100%; height: auto; }


  /* ---- CTA1 ---- */
  .cta1 {
    background-image: url("../../images/dronecomprehensive/cta1_back.png");
    padding: 94px 40px 280px;
    min-height: 700px;
  }

  .cta1__title { margin-bottom: 48px; }

  .cta1__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    max-width: 700px;
    margin-bottom: 48px;
  }

  .cta1__buttons .cta { max-width: 334px; }

  .cta1__comment {
    margin-left: 6%;
    max-width: 460px;
  }

  .cta1__comment .cta1__comment-pc,
  .cta2__comment-pc { display: block; }
  .cta1__comment .cta1__comment-sp,
  .cta2__comment-sp { display: none; }


  /* ---- About ---- */
  .about { padding: 64px 40px 40px; }
  .about__main-title { font-size: 36px; margin-bottom: 8px; }
  .about__lead       { font-size: 24px; margin-bottom: 32px; }

  .about__block      { margin-bottom: 28px; }
  .about__block-title { font-size: 32px; }
  .about__block-body  { padding: 20px 32px 24px; }
  .about__box-text    { font-size: 18px; }
  .about__link        { font-size: 18px; }

  .about__diagram {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
    margin-top: 24px;
    gap: 0;
  }

  .about__diagram-left,
  .about__diagram-right {
    flex: 0 0 auto;
    width: auto;
  }

  .about__diagram-left .about__diagram-img,
  .about__diagram-right .about__diagram-img {
    height: 56vh;
    width: auto;
  }

  .about__diagram-plus {
    font-size: 48px;
    padding: 0 24px;
    align-self: center;
    flex-shrink: 0;
  }

  .about__diagram-img--sp { display: none; }
  .about__diagram-img--pc { display: block; }

  .about__block-icon { margin-left: 5px; }
  .about__block-icon img { height: 32px; }

  .about__youtube { margin: 24px 0 0; padding: 28px 32px 24px; }
  .about__youtube-lead { font-size: 24px; }
  .about__youtube-desc { font-size: 18px; margin-bottom: 20px; }

  .about__youtube-videos {
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    margin-bottom: 20px;
  }

  .about__youtube-thumb {
    width: 424px;
    aspect-ratio: unset;
    height: 240px;
  }

  .about__youtube-btn { font-size: 24px; padding: 11px 40px; margin-bottom: 20px; }
  .about__youtube-btn img { width: 50px; height: 50px; }

  .about__youtube-footer { gap: 16px; flex-direction: row-reverse; justify-content: center; }
  .about__youtube-chara { width: 180px; }
  .about__youtube-comment-text { font-size: 13px; }


  /* ---- Risks ---- */
  .risks { padding: 64px 40px 80px; }
  .risks__header-box { padding: 13px 40px; }
  .risks__title { font-size: 32px; }
  .risks__lead  { font-size: 18px; }

  .risks__scene { padding: 24px 0 48px; }

  .risks__person img { margin: 0 auto; display: block; }
  .risks__person-sp img { display: none; }


  /* ---- Pre-CTA ---- */
  .precta {
    background-image: url("../../images/dronecomprehensive/PC_yellowBack.png");
    padding: 100px 40px 200px;
    margin-top: -190px;
  }

  .precta__eyebrow { font-size: 24px; font-weight: 700; }
  .precta__title   { font-size: 36px; margin-bottom: 24px; }
  .precta__text    { font-size: 18px; }
  .precta__buttons { flex-direction: row; justify-content: center; gap: 24px; max-width: 680px; }
  .precta__buttons .cta { max-width: 320px; }


  /* ---- Reasons ---- */
  .reasons { padding: 0 0 80px; }

  .reasons__deco--tl { border-top-width:    100px; border-right-width:  100px; }
  .reasons__deco--tr { border-top-width:    100px; border-left-width:   100px; }
  .reasons__deco--bl { border-bottom-width: 100px; border-right-width:  100px; }
  .reasons__deco--br { border-bottom-width: 100px; border-left-width:   100px; }

  .reasons__eyebrow { font-size: 24px; font-weight: 700; }
  .reasons__inner   { margin: -48px auto 0; padding: 56px 48px; }
  .reasons__title   { font-size: 32px; margin-bottom: 40px; }
  .reasons__title span { display: block; }
  .reasons__item:nth-child(4) { margin-bottom: 20px; }

  .reasons__img--sp { display: none; }
  .reasons__img--pc { display: block; }


  /* ---- Service ---- */
  .service { padding: 72px 0 140px; }
  .service__inner { padding: 0 40px; }

  .service__main-title { font-size: 28px; margin-bottom: 40px; }
  .service__main-title img { max-width: 560px; }

  .service__band { padding: 14px 28px; margin-bottom: 24px; }
  .service__band-text { font-size: 32px; }

  .service__card { margin-bottom: 24px; }
  .service__consultant { margin-bottom: 56px; }

  .service__img--sp { display: none; }
  .service__img--pc { display: block; }

  .service__steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .service__step {
    flex: 1 1 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }

  .service__consultant-btn {
    bottom: 14%;
    left: 4%;
    font-size: 16px;
    padding: 12px 36px;
  }


  /* ---- CTA2 ---- */
  .cta2 {
    padding: 94px 40px 56px;
    background-image: url(../../images/dronecomprehensive/cta2_back.png);
    margin-top: -60px;
    background-size: cover;
  }

  .cta2__title { font-size: 36px; }

  .cta2__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    max-width: 640px;
    margin: 50px auto 100px;
  }

  .cta2__buttons .cta { max-width: 300px; }

  .cta2__comment {
    max-width: 460px;
    margin-right: 6%;
  }


  /* ---- FAQ ---- */
  .faq { padding: 72px 40px 80px; }

  .faq__title img { max-width: 560px; width: 100%; }

  .faq__q-text { font-size: 20px; }
  .faq__question { font-size: 15px; padding: 18px 24px; }
  .faq__q-badge { width: 36px; height: 36px; font-size: 12px; }
  .faq__answer-inner { padding: 0 24px 0 76px; }
  .faq__answer-inner p { font-size: 16px; }
  .faq__sub-list li { font-size: 16px; }


  /* ---- SNS ---- */
  .sns { padding: 72px 40px 64px; }

  .sns__inner { max-width: 896px; margin: 0 auto; }
  .sns__card { padding: 32px 40px 28px; }
  .sns__lead { font-size: 32px; margin-bottom: 36px; }
  .sns__icons { display: flex; }

  .sns__comment-img--sp { display: none; }
  .sns__comment-img--pc { display: block; }
  .sns__comment { max-width: 500px; }
  .sns__bounta { width: 150px; }

  .sns__comment-area {
    gap: 8px;
    margin-top: 8px;
    flex-direction: row;
  }

  .sns__icons li a svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }


  /* ---- Contact ---- */
  .contact {
    padding: 72px 40px 300px;
    position: relative;
    z-index: 1;
  }
  .contact__title img { max-width: 560px; }
  .contact__form { padding: 40px; }


  /* ---- Partner ---- */
  .partner {
    background-image: url("../../images/dronecomprehensive/grayBack.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    height: 900px;
  }

  .partner__inner {
    padding: 80px;
    background-image: url("../../images/dronecomprehensive/partner__back.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin: 0;
    margin-top: -180px;
    margin-right: auto !important;
    position: relative;
    z-index: 3;
  }

  .partner__mgz {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 0;
  }
  .partner__mgz-link { max-width: 760px; margin: 0 auto; }


  /* ---- Publications ---- */
  .publications {
    background-color: #EFF8FF;
    padding: 56px 0 16px 64px;
  }

  .publications__inner {
    background-image: url("../../images/dronecomprehensive/publications_back.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    padding: 40px 0 40px 40px;
    max-width: 900px;
    height: 450px;
    margin: 0;
    margin-top: -200px;
    margin-left: auto;
    position: relative;
    z-index: 3;
  }

  .publications__title img { max-width: 560px; }

  .publications__content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .publications__book { width: 130px; }
  .publications__book img { width: 100%; }

  .publications__desc { font-size: 18px; text-align: left; }


  /* ---- Footer ---- */
  .site-footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 80px 40px 40px;
    background-color: #EFF8FF;
  }

  .footer-top-return {
    order: 2;
    transform: none;
    margin: 0;
    align-self: flex-end;
  }

  .site-footer__inner {
    order: 1;
    max-width: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .site-footer__logo {
    order: 3;
    margin-top: 24px;
    margin-bottom: 0;
    display: block;
  }
  .site-footer__logo img { max-width: 120px; }

  .site-footer__offices {
    order: 1;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
  .site-footer__office-name { font-size: 16px; color: var(--c-text); }
  .site-footer__office-addr { font-size: 14px; color: var(--c-text); }

  .site-footer__contact {
    order: 2;
    color: var(--c-text);
    padding-top: 8px;
  }
  .site-footer__contact p { font-size: 16px; color: var(--c-text); }

  .site-footer__copy { width: 100%; }

} /* end @media (min-width: 960px) */


/* =========================================================
   Larger screens fine-tuning
   ========================================================= */
@media (min-width: 1100px) {
  .mv__inner { column-gap: 40px; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
