/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
}

em {
  font-style: normal;
}

.sp-only { display: none !important; }
.pc-only { display: inline !important; }

/* ========================================
   HEADER
   ======================================== */
.header {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 220px;
}

.header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header__cta-btn {
  display: block;
  transition: opacity 0.3s ease;
}

.header__cta-btn:hover {
  opacity: 0.85;
}

.header__cta-btn img {
  height: 50px;
  width: auto;
}

/* ========================================
   FV (ファーストビュー)
   ======================================== */
.fv {
  position: relative;
  overflow: hidden;
}

.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fv__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bills */
.fv__bills {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.fv__bill {
  position: absolute;
  top: -200px;
  opacity: 0;
  animation: fallBill linear infinite;
  pointer-events: none;
}

@keyframes fallBill {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  5% { opacity: 0.85; }
  85% { opacity: 0.6; }
  100% {
    transform: translateY(calc(100vh + 400px)) rotate(720deg);
    opacity: 0;
  }
}

/* FV Content */
.fv__inner {
  position: relative;
  z-index: 3;
}

.fv__main-picture {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: -14vw;
}

.fv__main-img {
  width: 100%;
  display: block;
}

/* CTA Band */
.fv__cta-band {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.65);
  padding: 28px 20px;
}

.fv__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.fv__cta-btn {
  display: block;
  width: 48%;
  max-width: 480px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fv__cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.fv__cta-btn img {
  width: 100%;
}

/* ========================================
   sec1: お悩みセクション
   ======================================== */
.sec1 {
  background: #fff;
  padding: 60px 20px;
}

.sec1__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sec1__title {
  display: block;
  margin-bottom: 30px;
}

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

.sec1__list {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.sec1__unit {
  flex: 1;
  max-width: 310px;
}

/* ========================================
   sec2: 全面サポートセクション
   ======================================== */
.sec2 {
  position: relative;
  padding: 0 20px 70px;
  overflow: hidden;
}

.sec2__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sec2__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec2__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

/* タイトルエリア: 女性（左）+ テキスト画像（右）を横並び */
.sec2__title-area {
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
  margin-bottom: 15px;
}

.sec2__title {
  display: block;
  flex: 1;
  min-width: 0;
}

.sec2__title img {
  width: 100%;
  padding: 15px;
}

/* 女性画像: タイトル左横に配置。手が「超速」を支えるよう少し重なる */
.sec2__woman {
  flex-shrink: 0;
  width: 150px;
  margin-left: 15px;
  margin-right: -80px;
  margin-bottom: -120px;
  position: relative;
  z-index: 2;
}

.sec2__boxes {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 10px;
}

.sec2__box {
  display: block;
}

.sec2__box img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

/* ========================================
   sec3: 比較表セクション
   ======================================== */
.sec3 {
  background: #fff;
  padding: 60px 20px;
}

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

.sec3__title {
  display: block;
}

.sec3__title img {
  width: 100%;
}

.sec3__table-wrap {
  /* SP で横スクロール */
}

.sec3__table {
  display: block;
}

.sec3__table img {
  width: 100%;
}

.sec3__scroll-hint {
  font-size: 1.2rem;
  color: #999;
  text-align: center;
  margin-top: 8px;
}

/* ========================================
   sec4: 動画セクション
   ======================================== */
.sec4 {
  position: relative;
  padding: 50px 50px;
  overflow: hidden;
}

.sec4__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sec4__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec4__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.sec4__video-wrap video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* ========================================
   sec5: 3つのスピード対応
   ======================================== */
.sec5 {
  background: #FFF9F0;
  padding: 70px 20px;
}

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

.sec5__title {
  display: block;
  margin-bottom: 40px;
}

.sec5__title img {
  width: 100%;
}

.sec5__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec5__item {
  display: block;
}

.sec5__item img {
  width: 100%;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  padding: 35px 20px;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-section__btn {
  display: block;
  width: 48%;
  max-width: 480px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cta-section__btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.cta-section__btn img {
  width: 100%;
}

/* ========================================
   sec6: ホワイト求人多数
   ======================================== */
.sec6 {
  background: #f8f8f8;
  padding: 70px 20px;
}

.sec6__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.sec6__title {
  display: block;
  text-align: center;
  margin-bottom: 35px;
}

.sec6__title img {
  max-width: 600px;
}

.sec6__cards {
  display: flex;
  gap: 22px;
  justify-content: center;
}

.sec6__card {
  flex: 1;
  max-width: 320px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.sec6__card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.sec6__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec6__card-body {
  padding: 18px;
}

.sec6__card-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}

.sec6__card-checks {
  list-style: none;
  margin-bottom: 12px;
}

.sec6__card-checks li {
  font-size: 1.2rem;
  font-weight: 700;
  color: #E50012;
  padding-left: 35px;
  position: relative;
  line-height: 40px;
  min-height: 40px;
}

.sec6__card-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  width: 40px;
  height: 40px;
  background: url('../png/compare_icon.png') center/contain no-repeat;
}

.sec6__card-salary {
  background: #FFF3E0;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  text-align: center;
}

.sec6__card-salary-monthly {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: #E50012;
}

.sec6__card-salary-monthly strong {
  font-size: 2.2rem;
}

.sec6__card-salary-hourly {
  font-size: 1.2rem;
  color: #666;
}

.sec6__card-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.sec6__card-table th {
  background: #f5f5f5;
  padding: 6px 10px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
  width: 80px;
  border: 1px solid #e0e0e0;
  vertical-align: top;
}

.sec6__card-table td {
  padding: 6px 10px;
  border: 1px solid #e0e0e0;
  line-height: 1.5;
}

.sec6__card-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sec6__card-note {
  font-size: 1.1rem;
  color: #666;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 4px;
}

.sec6__card-note--highlight {
  background: #E50012;
  color: #fff;
  font-weight: 700;
}

.sec6__scroll-hint {
  font-size: 1.2rem;
  color: #999;
  text-align: center;
  margin-top: 10px;
}

/* ========================================
   sec7: お客様の声
   ======================================== */
.sec7 {
  background: #fff;
  padding: 70px 20px;
}

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

.sec7__title {
  display: block;
  text-align: center;
  margin-bottom: 35px;
}

.sec7__title img {
  max-width: 250px;
}

.sec7__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sec7__item {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
}

.sec7__item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}

.sec7__item-avatar {
  width: 80px;
  flex-shrink: 0;
}

.sec7__item-avatar img {
  width: 100%;
  height: auto;
}

.sec7__item-meta {
  flex: 1;
}

.sec7__item-voicetitle {
  font-size: 1.5rem;
  font-weight: 900;
  color: #333;
  line-height: 1.4;
  margin-bottom: 4px;
}

.sec7__item-badge {
  display: inline-block;
  background: #E50012;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 3px;
}

.sec7__item-review {
  margin: 0 20px 20px;
}

.sec7__item-review img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* ========================================
   sec8: ご入社までの流れ
   ======================================== */
.sec8 {
  background: #f8f8f8;
  padding: 70px 20px;
}

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

.sec8__title {
  display: block;
  margin-bottom: 35px;
}

.sec8__title img {
  max-width: 350px;
}

.sec8__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sec8__step {
  display: block;
  width: 100%;
}

.sec8__step img {
  width: 100%;
}

.sec8__arrow {
  width: 30px;
  margin: 8px 0;
}

/* ========================================
   sec9: よくあるご質問
   ======================================== */
.sec9 {
  background: #fff;
  padding: 70px 20px;
}

.sec9__inner {
  max-width: 800px;
  margin: 0 auto;
}

.sec9__title {
  display: block;
  text-align: center;
  margin-bottom: 35px;
}

.sec9__title img {
  max-width: 350px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 2px solid #E50012;
  border-radius: 10px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 18px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.5rem;
  text-align: left;
  gap: 12px;
  transition: background 0.3s ease;
}

.faq__question:hover {
  background: #FFF5F5;
}

.faq__q-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: #E50012;
  color: #fff;
  font-weight: 900;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq__q-text {
  flex: 1;
  font-weight: 700;
  color: #333;
}

.faq__toggle {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}

.faq__toggle::before,
.faq__toggle::after {
  content: '';
  position: absolute;
  background: #E50012;
  transition: transform 0.3s ease;
}

.faq__toggle::before {
  width: 18px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq__toggle::after {
  width: 3px;
  height: 18px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq__item.is-open .faq__toggle::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq__answer {
  display: none;
  padding: 0 18px 18px;
  border-top: 1px solid #eee;
  align-items: flex-start;
  gap: 12px;
}

.faq__item.is-open .faq__answer {
  display: flex;
  padding-top: 18px;
}

.faq__a-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: #F39800;
  color: #fff;
  font-weight: 900;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq__a-text {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
}

/* ========================================
   sec10: 会社概要
   ======================================== */
.sec10 {
  background: #f8f8f8;
  padding: 70px 20px;
}

.sec10__inner {
  max-width: 800px;
  margin: 0 auto;
}

.sec10__title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 40px;
  color: #333;
}

.sec10__title-line {
  display: block;
  width: 40px;
  height: 4px;
  background: #bbbbbb;
  margin: 12px auto 0;
  border-radius: 2px;
}

.sec10__table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.sec10__table th,
.sec10__table td {
  padding: 16px 20px;
  border-bottom: 1px solid #ddd;
  font-size: 1.5rem;
  text-align: left;
  vertical-align: middle;
}

.sec10__table th {
  width: 140px;
  font-weight: 700;
  background: #bbbbbb;
  color: #fff;
  white-space: nowrap;
}

.sec10__table td {
  background: #fff;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #a80700;
  padding: 25px 20px;
  text-align: center;
}

.footer__copy {
  color: #fff;
  font-size: 1.3rem;
}

/* ========================================
   CTA SHINE ANIMATION
   ======================================== */
.fv__cta-btn,
.cta-section__btn,
.header__cta-btn {
  position: relative;
  overflow: hidden;
}

.fv__cta-btn::after,
.cta-section__btn::after,
.header__cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0) 25%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0) 75%,
    transparent 100%
  );
  animation: shineBtn 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shineBtn {
  0%   { left: -100%; }
  40%  { left: 150%; }
  100% { left: 150%; }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   追従CTA
   ======================================== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.fixed-cta.is-visible {
  transform: translateY(0);
}

.fixed-cta__inner {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

/* PC: 画像ボタン */
.fixed-cta__btn--img {
  display: block;
  width: 48%;
  max-width: 400px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fixed-cta__btn--img:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.fixed-cta__btn--img img {
  width: 100%;
  display: block;
}

.fixed-cta__btn--img::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: shineBtn 3s infinite;
}

/* SP: CSSコーディングボタン */
.fixed-cta__btn--line,
.fixed-cta__btn--tel {
  display: none;
  width: 48%;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  padding: 12px 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: 2px solid rgba(255,255,255,0.5);
}

.fixed-cta__btn--line {
  background: linear-gradient(180deg, #6fbf44 0%, #3a8c1f 100%);
  box-shadow: 0 3px 8px rgba(0,128,0,0.4);
}

.fixed-cta__btn--tel {
  background: linear-gradient(180deg, #4da6ff 0%, #0066e0 100%);
  box-shadow: 0 3px 8px rgba(0,80,200,0.4);
}

.fixed-cta__sub {
  display: block;
  font-size: 0.75rem;
  color: #ffe14d;
  font-weight: 700;
  line-height: 1.2;
}

.fixed-cta__sub2 {
  display: block;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1px;
}

.fixed-cta__main {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 900;
  line-height: 1.3;
}

.fixed-cta__btn--line::after,
.fixed-cta__btn--tel::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  animation: shineBtn 3s infinite;
}

/* ========================================
   RESPONSIVE (SP: max-width 768px)
   ======================================== */
@media screen and (max-width: 768px) {
  .sp-only { display: inline !important; }
  .pc-only { display: none !important; }
  .sec3__scroll-hint,
  .sec6__scroll-hint { display: block !important; text-align: center; }

  /* Header - SP: ロゴのみ中央 */
  .header { padding: 8px 0; }
  .header__inner {
    justify-content: center;
  }
  .header__logo { width: 180px; }
  .header__cta { display: none; }

  /* FV */
  .fv__main-picture {
    margin-bottom: -10vw;
  }
  .fv__cta-band { padding: 18px 15px; margin-top: 20px; }
  .fv__cta-buttons {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    max-width: 100%;
  }
  .fv__cta-btn {
    width: 95%;
    max-width: 380px;
  }

  /* sec1 */
  .sec1 { padding: 45px 15px; }
  .sec1__title img { max-width: 90%; }
  .sec1__list {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .sec1__unit {
    max-width: 100%;
    width: 100%;
  }

  /* sec2 */
  .sec2 { padding: 0 15px 40px; }
  .sec2__title-area {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .sec2__woman {
    width: 100px;
    margin-left: 0;
    margin-right: -15px;
    margin-bottom: -50px;
  }
  .sec2__title img {
    padding: 20px 20px 10px 0;
  }
  .sec2__boxes {
    margin-left: 5px;
    gap: 12px;
  }

  /* sec3 */
  .sec3 { padding: 45px 15px; }
  .sec3__title img { max-width: 90%; }
  .sec3__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sec3__table-wrap .sec3__table img {
    min-width: 500px;
  }

  /* sec4 */
  .sec4 { padding: 25px 15px; }

  /* sec5 */
  .sec5 { padding: 50px 15px; }
  .sec5__title img { max-width: 90%; }

  /* CTA */
  .cta-section { padding: 25px 15px; }
  .cta-section__buttons {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }
  .cta-section__btn {
    width: 95%;
    max-width: 380px;
  }

  /* sec6 */
  .sec6 { padding: 50px 15px; }
  .sec6__title img { max-width: 90%; }
  .sec6__cards {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 5px;
  }
  .sec6__card {
    flex: 0 0 280px;
    max-width: 280px;
  }

  /* sec7 */
  .sec7 { padding: 50px 15px; }
  .sec7__item-header {
    padding: 16px 18px;
    gap: 12px;
  }
  .sec7__item-avatar {
    width: 70px;
  }
  .sec7__item-voicetitle {
    font-size: 1.4rem;
  }
  .sec7__item-review {
    margin: 0 15px 15px;
  }

  /* sec8 */
  .sec8 { padding: 50px 15px; }
  .sec8__title img { max-width: 80%; }

  /* sec9 */
  .sec9 { padding: 50px 15px; }
  .sec9__title img { max-width: 80%; }
  .faq__question {
    padding: 14px 12px;
    font-size: 1.4rem;
    gap: 10px;
  }
  .faq__q-icon,
  .faq__a-icon {
    width: 28px;
    height: 28px;
    font-size: 1.4rem;
  }

  /* sec10 */
  .sec10 { padding: 50px 15px; }
  .sec10__title { font-size: 2.2rem; }

  /* 追従CTA SP */
  .fixed-cta { padding: 8px 10px; }
  .fixed-cta__inner { gap: 8px; }
  .fixed-cta__btn--img { display: none !important; }
  .fixed-cta__btn--line,
  .fixed-cta__btn--tel { display: block !important; }

  /* footer余白（追従CTAと被り防止） */
  .footer { padding-bottom: 80px; }
}
