@charset "UTF-8";

/* ============================================================
   RESET / COMMON
   ============================================================ */
:root {
  font-style: normal;
  --color-navy:      #0b2b57;
  --color-navy-mid:  #163c6f;
  --color-blue:      #0367a6;
  --color-blue-mid:  #1446b4;
  --color-blue-pale: #e4f2fe;
  --color-blue-pale2:#eaf4ff;
  --color-yellow:    #f5c500;
  --color-yellow-br: #fffc00;
  --color-text:      #333333;
  --color-white:     #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", sans-serif;
  color: #333;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #333;
}

p {
  font-size: 20px;
  color: #333333;
}

h2 {
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 1px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", sans-serif;
}

img {
  vertical-align: bottom;
}

section {
  min-width: 1000px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.spNon {
  display: block;
}

.spOnly {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.font__big {
  font-size: 45px;
}

.font__ttl {
  font-size: 50px;
}

.font__ttl--sub {
  font-size: 32px;
}

.font__blue {
  color: #0367a6;
}

.font__gold {
  background: linear-gradient(to right, #a27d30, #fde98b, #ffcd54);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 1000px;
  margin: 0 auto;
}

/* ============================================================
   SITE HEADER（サービスページ共通）
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100; /* drawer(1050)より高く：ハンバーガーを常に前面に */
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
  }

  .site-header__logo {
    display: block;
    flex-shrink: 0;

    img {
      height: 40px;
      width: auto;
      display: block;
    }
  }

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

  .site-header__nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-header__nav-item {
    position: relative;

    .site-header__nav-link {
      font-size: 15px;
      font-weight: 600;
      color: #333;
      text-decoration: none;
      display: block;
      padding: 26px 0;
      letter-spacing: 0.04em;
    }

    .site-header__nav-link:hover {
      color: var(--color-blue);
    }

    .site-header__nav-sub {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background: #fff;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
      border-top: 3px solid var(--color-navy-mid);
      list-style: none;
      padding: 8px 0;
      margin: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s ease, visibility 0.2s ease;

      .site-header__nav-sub-link {
        display: block;
        padding: 10px 18px;
        font-size: 14px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
      }

      .site-header__nav-sub-link:hover {
        background: var(--color-blue-pale);
        color: var(--color-blue);
      }
    }
  }

  .site-header__nav-item--has-sub:hover .site-header__nav-sub {
    opacity: 1;
    visibility: visible;
  }

  .site-header__nav-item--cta .site-header__nav-cta {
    display: inline-block;
    padding: 10px 22px;
    background: var(--color-navy-mid);
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.06em;
  }

  .site-header__nav-item--cta .site-header__nav-cta:hover {
    opacity: 0.85;
  }
}

/* ============================================================
   HAMBURGER（SP）
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  flex-shrink: 0;

  .hamburger__line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-navy-mid);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}

.hamburger.is-active {
  .hamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger__line:nth-child(2) {
    opacity: 0;
  }

  .hamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ============================================================
   DRAWER（SP スライドメニュー）
   ============================================================ */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 65vw);
  background: #fff;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  padding: 80px 0 40px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);

  .drawer__nav {
    width: 100%;
  }

  .drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .drawer__item {
    border-bottom: 1px solid #f0f0f0;

    .drawer__link {
      display: block;
      padding: 16px 24px;
      font-size: 15px;
      font-weight: 600;
      color: #333;
      text-decoration: none;
      letter-spacing: 0.04em;
    }

    .drawer__link:hover {
      color: var(--color-blue);
      background: var(--color-blue-pale);
    }

    .drawer__sub {
      list-style: none;
      margin: 0;
      padding: 0;
      background: #f8f8f8;

      .drawer__sub-link {
        display: block;
        padding: 12px 24px 12px 38px;
        font-size: 14px;
        color: #555;
        text-decoration: none;
      }

      .drawer__sub-link::before {
        content: "›";
        margin-right: 6px;
        color: var(--color-blue);
      }

      .drawer__sub-link:hover {
        color: var(--color-blue);
      }
    }
  }
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   TOP PAGE：FV（header）〜固定フッターバー
   ============================================================ */
/*FV*/
header {
  min-width: 1000px;
}
header .inner {
  display: flex;
  justify-content: center;
  position: relative;
  height: 768px;
  background: url("img/fv_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
header .inner .fv__box--center {
  position: relative;
  width: 1100px;
  padding-left: 0px;
}
header .inner .fv__box--center:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 700px;
  width: 500px;
  height: 500px;
  background-image: url("img/fv_deco.png");
  background-repeat: no-repeat;
  background-size: contain;
}
header .inner .fv__box--center .header__ttl {
  margin-left: -15px;
  padding-top: 110px;
  width: 700px;
}
header .inner .fv__box--center .header__ttl img {
  width: 100%;
  object-fit: contain;
}
header .inner .fv__box--center .header__sub p {
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 50px;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 35px;
  color: #fff;
}
header .inner .fv__box--center .header__sub2 {
  margin-bottom: 50px;
}
header .inner .fv__box--center .header__sub2 p {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #fff;
}
header .inner .fv__box--center .header__sub2 p .text-shift {
  margin-left: -0.5em;
}
header .inner .fv__box--center .header__sub2 p .blue__line {
  position: relative;
  display: inline-block;
}
header .inner .fv__box--center .header__sub2 p .blue__line:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background-color: #36c2b4;
}
header .inner .fv__box--center .header__bottom {
  position: relative;
  height: 300px;
  width: 680px;
}
header .inner .fv__box--center .header__bottom .header__mock img {
  width: 100%;
  object-fit: contain;
}
header .inner .fv__box--center .header__bottom .header__cta {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
header .inner .fv__box--center .header__bottom .header__cta .cta {
  width: 450px;
  z-index: 1;
}
header .inner .fv__box--center .header__bottom .header__cta .cta img {
  width: 100%;
}
header .inner .fv__box--center .header__bottom .header__cta .cta.form__btn {
  left: 135px;
  bottom: 75px;
}
header .inner .fv__box--center .header__bottom .header__cta .cta.line__btn {
  left: 565px;
  bottom: 75px;
}
header .inner .fv__box--center .header__bottom .header__point {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
}
header .inner .fv__box--center .header__bottom .header__point img {
  width: 100%;
  object-fit: contain;
}

/* スライダー */
.fv-result {
  position: absolute;
  top: 110px;
  left: calc(50% + 430px);
  transform: translateX(-50%);
  width: 460px;
  height: 520px;
  z-index: 4;
}

/* スライダー本体 */
.fv-result__swiper {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden; /* 角丸 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

/* 画像は全面フィット */
.fv-result__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 左右ボタン */
.fv-result__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 5;
  background: rgba(1, 55, 93, 0.85);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.fv-result__prev {
  left: 14px;
}

.fv-result__next {
  right: 14px;
}

/* 矢印 */
.fv-result__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.fv-result__prev::before {
  transform: rotate(-135deg);
}

.fv-result__next::before {
  transform: rotate(45deg);
}

/* hover */
.fv-result__nav:hover {
  filter: brightness(1.08);
}

/* ===== プラン ===== */
#plan {
  padding: 56px 0 48px;
  background: #fff;
}
#plan .container {
  margin: 0 auto;
  text-align: center;
}
#plan .container .plan__label {
  display: inline-block;
  margin: 0 0 18px;
  padding: 10px 22px;
  background: #163c6f; /* 紺 */
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1;
  border-radius: 0;
}
#plan .container .plan__title {
  margin: 0 0 18px;
  color: #163c6f;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
}
#plan .container .plan__title .plan__title--strong {
  display: inline-block;
}
#plan .container .plan__desc {
  margin: 40px 0 80px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: bold;
}
#plan .container .plan__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 20px;
}
#plan .container .plan__list li {
  flex: 0 0 30%;
}
#plan .container .plan__list li:nth-of-type(2) {
  position: relative;
  top: -20px;
}
#plan .container .plan__list li img {
  width: 100%;
  object-fit: contain;
}
#plan .container .plan__tips {
  padding: 0 20px;
  font-size: 16px;
}

#why {
  position: relative;
  padding-top: 80px;
  padding-bottom: 90px;
  background: linear-gradient(145deg, #2d6fb7 0%, #163c6f 50%);
  color: #fff;
  font-weight: bold;
  overflow: hidden;
}
#why .container {
  text-align: center;
}
#why .container .why__title {
  position: relative;
  display: inline-block;
  margin-bottom: 90px;
}
#why .container .why__title span {
  position: relative;
  display: inline-block;
  padding: 28px 110px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}
#why .container .why__title span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 200px;
  background-color: #023869;
}
#why .container .why__title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
}
#why .container .why__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
}
#why .container .why__title span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
}
#why .container .why__title span:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
}
#why .container .why__content {
  display: grid;
  width: 700px;
  margin: 0 auto;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
}
#why .container .why__text p {
  margin: 0;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: left;
  color: #fff;
}
#why .container .why__text p .blue__line {
  position: relative;
  display: inline-block;
}
#why .container .why__text p .blue__line:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  background-color: #f3ff70;
}
#why .container .why__image {
  display: block;
  width: 300px;
}
#why .container .why__image img {
  width: 100%;
}
#why .container .why__bottom {
  width: 700px;
  margin: 90px auto 60px;
  padding-bottom: 120px;
}
#why .container .why__bottom img {
  width: 100%;
  object-fit: contain;
}
#why:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -160px;
  transform: translateX(-50%);
  width: 140%;
  min-width: 1000px;
  height: 320px;
  background: #e7f3ff; /* 下セクションの水色 */
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}

#service {
  background: #eaf4ff;
}
#service .container {
  padding: 0px 24px 0 0;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
#service .container .service__inner {
  position: relative;
  top: -60px;
  /* 下線 */
  /* 説明文 */
}
#service .container .service__inner .service__label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #0f2f59;
  font-weight: 700;
}
#service .container .service__inner .service__logo {
  height: 40px;
  width: auto;
}
#service .container .service__inner .service__title {
  margin: 0 0 24px;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(to top, #01309f, #63ccea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#service .container .service__inner .service__line {
  width: 550px;
  height: 4px;
  margin: 0 auto 36px;
  background: linear-gradient(to right, rgba(79, 127, 192, 0), rgba(62, 122, 204, 0.9), rgba(79, 127, 192, 0));
}
#service .container .service__inner .service__text {
  margin: 0 0 0px;
  line-height: 2;
  letter-spacing: 2px;
  font-weight: 600;
  color: #333;
}
#service .container .service__inner .service__bottom {
  position: relative;
  top: 50px;
  width: 900px;
  margin: 0 auto;
}
#service .container .service__inner .service__bottom img {
  width: 100%;
  object-fit: contain;
}

#comparison {
  position: relative;
  overflow: hidden;
}
#comparison .container {
  padding-bottom: 120px;
  /* 人物：上に飛び出す */
}
#comparison .container:before {
  content: "";
  position: absolute;
  right: -100px;
  bottom: 0;
  width: 400px;
  height: 400px;
  background-image: url("img/bg_deco2.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleX(-1) scaleY(-1);
  z-index: -1;
}
#comparison .container .comparison__heading {
  position: relative;
  text-align: center;
  padding: 200px 16px 90px;
}
#comparison .container .comparison__heading:before {
  content: "";
  position: absolute;
  left: -100px;
  top: 10px;
  width: 400px;
  height: 400px;
  background-image: url("img/bg_deco2.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
#comparison .container .comparison__jp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 10px;
  color: #1f2a37;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: clamp(24px, 2.4vw, 34px);
}
#comparison .container .comparison__line {
  flex: 1 1 240px;
  max-width: 380px;
  height: 1px;
  background: #0367a6;
}
#comparison .container .comparison__text {
  white-space: nowrap;
}
#comparison .container .comparison__en {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: #0367a6;
  font-weight: 300;
}
#comparison .container .comparison__table {
  margin: 0 auto 60px;
  width: 800px;
}
#comparison .container .comparison__table img {
  width: 100%;
  object-fit: contain;
}
#comparison .container .msgbox__card {
  position: relative;
  width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 4px solid #5c7697;
  border-radius: 5px;
  padding: 20px 20px 20px 0px;
  overflow: visible;
}
#comparison .container .msgbox__human {
  position: absolute;
  left: -10px;
  bottom: -20px;
  width: 150px;
  height: auto;
  display: block;
}
#comparison .container .msgbox__human img {
  width: 100%;
  object-fit: contain;
}
#comparison .container .msgbox__text {
  display: flex;
  justify-content: center;
  padding-left: 200px;
}
#comparison .container .msgbox__text p {
  margin: 0;
  max-width: 860px;
  width: 100%;
  color: #3a3a3a;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
#comparison:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  width: 105%;
  min-width: 1000px;
  height: 80px;
  background: #eaf4ff; /* 下セクションの水色 */
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
}

#achieve {
  padding-top: 100px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #1f4f85 0%, #0f2f57 100%);
}
#achieve .container {
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
#achieve .container h2 {
  position: relative;
  display: block;
  margin: 0 auto 60px;
  width: fit-content;
  letter-spacing: 5px;
  font-weight: 600;
}
#achieve .container h2:before, #achieve .container h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 50px;
  height: 70px;
  background-image: url("img/achieve_deco.png");
  background-repeat: no-repeat;
  background-size: contain;
}
#achieve .container h2:before {
  left: -50px;
}
#achieve .container h2:after {
  right: -50px;
  transform: scaleX(-1);
}
#achieve .container .achieve__desc {
  margin-bottom: 60px;
  font-weight: bold;
  color: #fff;
}
#achieve .container .achieve__list {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 20px;
}
#achieve .container .achieve__list li {
  flex: 0 0 30%;
}
#achieve .container .achieve__list li img {
  width: 100%;
  object-fit: contain;
}
#achieve .container .achieve__bottom {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}

#flow {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
#flow .container {
  padding-top: 80px;
}
#flow .container:before {
  content: "";
  position: absolute;
  left: 0;
  top: -100px;
  width: 400px;
  height: 400px;
  background-image: url("img/bg_deco2.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
#flow .container .flow-title {
  position: relative;
  margin: 0 auto 120px;
  padding: 22px 40px;
  width: 900px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  background: linear-gradient(to right, #1446b4 0%, #54aae5 100%);
}
#flow .container .flow__content {
  width: 900px;
  margin: 0 auto;
}
#flow .container .flow__content img {
  width: 100%;
  object-fit: contain;
}

#faq {
  overflow: hidden;
}
#faq .container {
  margin-top: 180px;
  position: relative;
  margin-bottom: 120px;
  /* 吹き出しのしっぽ */
}
#faq .container:before, #faq .container:after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background-image: url("img/bg_deco2.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
#faq .container:before {
  right: -200px;
  top: -120px;
  transform: scaleX(-1);
}
#faq .container:after {
  left: -100px;
  top: 550px;
}
#faq .container .faq-title {
  position: relative;
  display: block;
  margin: 0 auto 60px;
  padding: 20px 80px 20px 80px;
  width: 900px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.12em;
  background: linear-gradient(to right, #1446b4 20%, #54aae5 100%);
  border-radius: 999px;
}
#faq .container .faq-title::after {
  content: "";
  position: absolute;
  left: 300px;
  bottom: -18px;
  width: 0;
  height: 0;
  border-top: 18px solid #195ca4; /* 左端の色に合わせる */
  border-left: 18px solid transparent;
}
#faq .container ul {
  padding-left: 0;
  margin-bottom: 60px;
}
#faq .container ul li {
  width: 88%;
  margin: 0 auto 40px auto;
  background-color: #ffffff;
  box-shadow: 0 0 3px #777777;
  overflow-y: hidden;
}
#faq .container ul li .faq__q {
  position: relative;
  display: flex;
  width: 90%;
  padding-top: 15px;
  margin: 0 auto 20px auto;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
#faq .container ul li .faq__q span {
  font-weight: 600;
}
#faq .container ul li .faq__q span:nth-of-type(2) {
  padding-left: 5px;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: #01375d;
}
#faq .container ul li .faq__q::after {
  content: "";
  position: absolute;
  bottom: -8px;
  background-color: #01375d;
  height: 1px;
  width: 100%;
  box-shadow: #777777;
}
#faq .container ul li .faq__q .faq__icon {
  flex-shrink: 0;
  width: 30px;
}
#faq .container ul li .faq__q .faq__icon img {
  width: 100%;
  object-fit: cover;
}
#faq .container ul li .faq__a {
  display: flex;
  width: 90%;
  padding-bottom: 15px;
  padding-left: 3px;
  margin: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
}
#faq .container ul li .faq__a span {
  position: relative;
  left: -3px;
  font-size: 18px;
  font-weight: 600;
}
#faq .container ul li .faq__a span:nth-of-type(1) {
  color: #01375d;
  text-align: center;
  width: 30px;
}
#faq .container ul li .faq__a span:nth-of-type(2) {
  padding-left: 5px;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: left;
}
#faq .container ul li.faq-item {
  cursor: pointer;
}
#faq .container ul li.faq-item .faq__q {
  padding-right: 44px;
}
#faq .container ul li.faq-item .faq__q::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #01375d;
  border-bottom: 2px solid #01375d;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}
#faq .container ul li.faq-item .faq__a {
  display: none;
}
#faq .container ul li.faq-item.is-open .faq__a {
  display: flex;
}
#faq .container ul li.faq-item.is-open .faq__q::before {
  transform: translateY(-50%) rotate(-135deg);
}

#form {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #e4f2fe;
  overflow: hidden;
  /* 背景画像レイヤー */
}
#form:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/form_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  opacity: 0.3;
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0px, rgb(0, 0, 0) 300px, rgba(0, 0, 0, 0) 600px);
  pointer-events: none;
}
#form .container {
  text-align: center;
  /* 送信ボタン（黄色） */
  /* 区切り */
  /* LINEボタン */
}
#form .container h2 {
  position: relative;
  display: block;
  margin: 0 auto 60px;
  width: fit-content;
  font-weight: 600;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgb(255, 255, 255), 0 0 10px rgb(255, 255, 255);
}
#form .container h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(to right, #3f5fa8 0%, #6fb5e4 100%);
}
#form .container .form__desc {
  position: relative;
  letter-spacing: 2px;
  line-height: 40px;
  font-weight: 600;
  text-shadow: 0 0 5px rgb(255, 255, 255), 0 0 10px rgb(255, 255, 255);
  z-index: 1;
}
#form .container .contact-form {
  padding: 48px 16px;
  text-align: left;
  background: #e4f2fe;
}
#form .container .contact-form__wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  z-index: 1;
}
#form .container .form-card {
  background: #fff;
  border-radius: 32px;
  padding: 34px 34px 40px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
#form .container .f-row {
  margin: 0 0 22px;
}
#form .container .f-label {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #333;
  margin: 0 0 10px;
}
#form .container .req, #form .container .opt {
  font-size: 14px;
  font-weight: 700;
  color: #555;
}
#form .container .f-input, #form .container .f-textarea {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #f2f2f2;
  padding: 16px 16px;
  font-size: 16px;
  outline: none;
}
#form .container .f-input:focus, #form .container .f-textarea:focus {
  box-shadow: 0 0 0 3px rgba(111, 181, 228, 0.35);
  background: #fff;
}
#form .container .f-textarea {
  resize: vertical;
  min-height: 110px;
}
#form .container .f-radio {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 4px;
}
#form .container .radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
#form .container .radio input {
  width: 18px;
  height: 18px;
  accent-color: #5aa6da;
}
#form .container .btn-submit {
  display: block;
  margin: 0 auto;
  width: 500px;
  border: 0;
  cursor: pointer;
  background: transparent;
}
#form .container .btn-submit img {
  width: 100%;
  object-fit: contain;
}
#form .container .btn-submit .arrow {
  margin-left: 10px;
  font-size: 26px;
  vertical-align: -1px;
}
#form .container .btn-submit:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
}
#form .container .btn-submit:active {
  transform: translateY(1px);
}
#form .container .f-note {
  margin: 12px 0 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #444;
}
#form .container .divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 18px 0 20px;
}
#form .container .divider__line {
  height: 2px;
  background: rgba(0, 0, 0, 0.25);
}
#form .container .divider__text {
  font-size: 14px;
  font-weight: 800;
  color: #444;
  letter-spacing: 0.08em;
}
#form .container .btn-line {
  display: block;
  margin: 0 auto;
  width: 400px;
  border: 0;
  cursor: pointer;
  background: transparent;
}
#form .container .btn-line img {
  width: 100%;
  object-fit: contain;
}
#form .container .btn-line:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
}
#form .container .btn-line:active {
  transform: translateY(1px);
}

footer {
  background: #fff;
  padding: 20px 0 100px;
  /* 上段（ロゴ＋住所） */
  /* 区切り線 */
  /* リンク */
}
footer .footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
footer .footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
footer .footer-brand__logo {
  height: 54px;
  width: auto;
  display: block;
}
footer .footer-brand__addr {
  margin: 0;
  color: #9aa1a8;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
footer .site-footer__line {
  border: 0;
  height: 1px;
  background: #e6e6e6;
  margin: 10px auto 18px;
  max-width: 980px;
}
footer .site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #222;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 16px;
}
footer .site-footer__link:hover {
  opacity: 0.75;
}
footer .site-footer__arrow {
  font-size: 18px;
  line-height: 1;
}

/* 固定フッターバー */
.fixed-cta {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b2b57; /* 紺 */
  padding: 15px 16px;
  z-index: 9999;
  gap: 50px;
  /* iPhoneの下バー対策 */
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

/* クリック領域 */
.fixed-cta__btn {
  display: block;
  width: 350px;
  border-radius: 10px;
  overflow: hidden;
}

.fixed-cta__btn img {
  display: block;
  width: 100%;
  height: auto;
}
.fixed-cta__btn img.spOnly {
  display: none;
}

/* hover */
@media (hover: hover) {
  .fixed-cta__btn:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
  }
}

/* ============================================================
   SERVICE PAGES：共通ボタン
   ============================================================ */
.svc-btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #fef978 0%, #efc703 100%);
  color: #6c4002;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  padding: 18px 44px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(239, 199, 3, 0.45);
  transition: filter 0.2s ease, transform 0.2s ease;

  &:hover {
    filter: brightness(1.04);
    transform: translateY(-2px);
  }

  &:active {
    transform: translateY(0);
  }
}

/* ============================================================
   SERVICE PAGES：Hero（全サービスページ共通）
   ============================================================ */
.svc-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #082050 0%, #0b3070 45%, #1565d8 100%);
  padding-top: 72px; /* PC：固定ヘッダー分 */
  min-height: 520px;

  .svc-hero__image-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    /* left・width・top はページ固有オーバーライド（#hp-hero / #ads-hero）で指定 */

    .svc-hero__image {
      width: 100%;
      height: auto;
      display: block;
      opacity: 0.7;
    }
  }

  .svc-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 48px 80px;
    min-height: 448px;
    display: flex;
    align-items: center;
  }

  .svc-hero__content {
    max-width: 52%;
  }

  .svc-hero__tag {
    display: inline-block;
    background: linear-gradient(to right, #015eea, #23b3df);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.07em;
    padding: 7px 14px;
    border-radius: 0;
    margin: 0 0 18px;
  }

  .svc-hero__tag-place {
    color: #fffc00;
    font-weight: 800;
  }

  .svc-hero__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.1em;
    color: #fff;
  }

  .svc-hero__subtitle {
    margin: 0 0 36px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.04em;
    border-left: 3px solid rgba(255, 255, 255, 0.65);
    padding-left: 14px;
  }
}

/* ---- SERVICE HP：Hero image（ページ固有サイズ調整） ---- */
#hp-hero .svc-hero__image-wrap {
  left: 50%;
  width: 600px;
  top: 56%;
  -webkit-mask-image: linear-gradient(to right, black 40%, rgba(0,0,0,0.3) 60%, transparent 80%);
  mask-image: linear-gradient(to right, black 40%, rgba(0,0,0,0.3) 60%, transparent 80%);
}

/* ---- SERVICE ADS：Hero image（ページ固有サイズ調整） ---- */
#ads-hero .svc-hero__image-wrap {
  left: 50%;
  width: 340px;
  top: 59%;
  -webkit-mask-image: none;
  mask-image: none;
}

#ads-hero .svc-hero__image {
  opacity: 0.4;
}

/* CTAボタン 右矢印 */
.svc-btn-cta::after {
  content: "»";
  font-size: 1.4em;
  font-weight: 900;
  line-height: 1;
  margin-left: 6px;
  letter-spacing: 0;
  position: relative;
  top: -0.08em;
}

/* CTAボタン内「無料相談」強調 */
.svc-btn-cta__em {
  color: var(--color-blue);
  font-style: normal;
  font-weight: 900;
}

/* ============================================================
   SERVICE PAGES：Problem（全サービスページ共通）
   ============================================================ */
.svc-problem {
  position: relative;
  padding: 72px 24px 80px;
  background-image: url("img/service_problem_background.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
}

.svc-problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(195, 220, 248, 0.70);
  z-index: 0;
}

.svc-problem {
  .svc-problem__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .svc-problem__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--color-blue);
    margin-bottom: 8px;
  }

  .svc-problem__title {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--color-navy-mid);
    margin: 0 0 44px;
    line-height: 1.4;
  }

  .svc-problem__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;

    .svc-problem__item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: #fff;
      border-radius: 8px;
      padding: 16px 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);

      .svc-problem__icon {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        object-fit: contain;
      }

      span {
        font-size: 16px;
        font-weight: 600;
        color: var(--color-navy-mid);
        letter-spacing: 0.04em;
        line-height: 1.5;
      }

      /* 動画ページなどタイトル＋本文の2段構造に対応 */
      .svc-problem__body {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }

      .svc-problem__item-title {
        font-size: 16px;
        font-weight: 800;
        color: var(--color-navy-mid);
        margin: 0;
        letter-spacing: 0.04em;
      }

      .svc-problem__item-text {
        font-size: 14px;
        font-weight: 500;
        color: #666;
        margin: 0;
        line-height: 1.7;
      }
    }
  }
}

/* ---- VIDEO：Problem item（アイコンを上揃えに）---- */
#video-problem .svc-problem__item {
  align-items: flex-start;
}

/* ============================================================
   SERVICE HP：Flow（#hp-flow）
   ============================================================ */
.svc-hp-flow {
  padding: 0 0 88px;
  background: #fff;

  .svc-hp-flow__banner {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(to right, #22b4e0 0%, #1565d8 60%, #1a4fc8 100%);
    text-align: center;
    margin-bottom: 10px;
  }

  .svc-hp-flow__banner-text {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.18em;
  }

  .svc-hp-flow__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }

  .svc-hp-flow__title {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 900;
    letter-spacing: 0.06em;
    background: linear-gradient(to right, #22b4e0, #1a4fc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 32px;
    line-height: 1.45;
  }

  .svc-hp-flow__lead {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin: 0 0 24px;
  }

  .svc-hp-flow__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  .svc-hp-flow__step {
    .svc-hp-flow__step-img {
      width: 110px;
      height: auto;
      display: block;
    }
  }

  .svc-hp-flow__arrow {
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 20px solid var(--color-blue);
    flex-shrink: 0;
  }

  .svc-hp-flow__text {
    font-size: 15px;
    line-height: 2.0;
    color: #444;
    letter-spacing: 0.04em;
    margin: 0;
  }
}

/* ============================================================
   SERVICE PAGES：Service Cards（全サービスページ共通）
   ============================================================ */
.svc-service {
  padding: 72px 24px 80px;
  background: var(--color-blue-pale2);

  .svc-service__inner {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }

  .svc-service__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--color-blue);
    margin: 0 0 10px;
  }

  .svc-service__title {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--color-navy-mid);
    margin: 0 0 50px;
  }

  .svc-service__cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .svc-service__card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);

    .svc-service__card-top {
      background: linear-gradient(to right, #015eea, #23b3df);
      padding: 22px 28px;
      text-align: center;

      .svc-service__card-title {
        font-size: 19px;
        font-weight: 800;
        color: #fff;
        margin: 0;
        letter-spacing: 0.05em;
        line-height: 1.4;
      }
    }

    .svc-service__card-photo {
      position: relative;
      height: 220px;
      background-size: cover;
      background-repeat: no-repeat;

      .svc-service__card-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.55);
        padding: 18px 24px;
        text-align: center;

        .svc-service__card-text {
          font-size: 15px;
          color: #fff;
          line-height: 1.8;
          margin: 0;
          letter-spacing: 0.03em;
        }
      }
    }

    /* -- SERVICE HP 専用：カード背景画像 -- */
    .svc-service__card-photo--seo {
      background-image: url("img/service_hp_service_seo.jpg");
      background-position: center 30%;
    }

    .svc-service__card-photo--flow {
      background-image: url("img/service_hp_service_flow.jpg");
      background-position: center 30%;
    }

    .svc-service__card-photo--guideline {
      background-image: url("img/service_hp_service_guideline.jpg");
      background-position: left 40%;
    }

    /* -- SERVICE ADS 専用：カード背景画像 -- */
    .svc-service__card-photo--google {
      background-image: url("img/service_market_service_google.jpg");
      background-position: center center;
    }

    .svc-service__card-photo--sns {
      background-image: url("img/service_market_service_sns.jpg");
      background-position: center center;
    }

    .svc-service__card-photo--analyze {
      background-image: url("img/service_market_service_analyze.jpg");
      background-position: center center;
    }
  }
}


/* ============================================================
   SERVICE HP：Cost（#hp-cost）
   ============================================================ */
.svc-hp-cost {
  padding: 72px 24px 80px;
  background: #fff;

  .svc-hp-cost__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .svc-hp-cost__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--color-blue);
    margin: 0 0 10px;
  }

  .svc-hp-cost__title {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--color-navy-mid);
    margin: 0 0 40px;
  }

  .svc-hp-cost__scroll-hint {
    display: none; /* PCでは非表示 */
  }

  .svc-hp-cost__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .svc-hp-cost__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;

    .svc-hp-cost__table-head {
      .svc-hp-cost__table-th {
        padding: 14px 20px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.06em;
        background: var(--color-navy-mid);
        color: #fff;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.2);

        &.svc-hp-cost__table-th--label {
          background: transparent;
          border: none;
        }
      }
    }

    .svc-hp-cost__table-row {
      .svc-hp-cost__table-row-th {
        padding: 18px 16px;
        font-size: 14px;
        font-weight: 700;
        color: var(--color-navy-mid);
        background: var(--color-blue-pale);
        border: 1px solid #c8dff5;
        text-align: center;
        white-space: nowrap;
        width: 30%;
      }

      .svc-hp-cost__table-td {
        padding: 18px 20px;
        font-size: 15px;
        font-weight: 600;
        color: #333;
        border: 1px solid #c8dff5;
        text-align: center;
        line-height: 1.7;
      }

      &:nth-child(even) .svc-hp-cost__table-td {
        background: #fafcff;
      }
    }
  }
}

/* ============================================================
   SERVICE ADS：Service Card Photo Height（#ads-service 固有）
   ============================================================ */
#ads-service .svc-service__card-photo {
  height: 280px;
}

/* ============================================================
   SERVICE ADS：Flow（#ads-flow）
   ============================================================ */
.svc-ads-flow {
  padding: 72px 24px 88px;
  background: #fff;

  .svc-ads-flow__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }

  .svc-ads-flow__title {
    display: inline-block;
    position: relative;
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--color-navy-mid);
    margin: 0 0 40px;
    padding-top: 18px;
    line-height: 1.45;
  }
}

.svc-ads-flow__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #22b4e0, #1a4fc8);
  border-radius: 3px;
}

.svc-ads-flow {
  .svc-ads-flow__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  .svc-ads-flow__step {
    .svc-ads-flow__step-img {
      width: 110px;
      height: auto;
      display: block;
    }
  }

  .svc-ads-flow__arrow {
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 20px solid var(--color-blue);
    flex-shrink: 0;
  }

  .svc-ads-flow__text {
    font-size: 15px;
    line-height: 2.0;
    color: #444;
    letter-spacing: 0.04em;
    margin: 0;
  }
}

/* ============================================================
   SERVICE ADS：Cost（#ads-cost）
   ============================================================ */
.svc-ads-cost {
  padding: 72px 24px 80px;
  background: var(--color-blue-pale2);

  .svc-ads-cost__inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .svc-ads-cost__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--color-blue);
    margin: 0 0 10px;
  }

  .svc-ads-cost__title {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--color-navy-mid);
    margin: 0 0 40px;
  }

  .svc-ads-cost__box {
    background: #fff;
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }

  .svc-ads-cost__box-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-blue);
    border: 1.5px solid var(--color-blue);
    padding: 4px 18px;
    border-radius: 2px;
    margin: 0 0 18px;
  }

  .svc-ads-cost__service {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy-mid);
    margin: 0 0 12px;
    letter-spacing: 0.04em;
  }

  .svc-ads-cost__price {
    font-size: 32px;
    font-weight: 700;
    color: #e86500;
    margin: 0 0 18px;
    letter-spacing: 0.02em;
    line-height: 1;
    padding-left: 0.8em; /* 「月額」の幅ぶん右にずらし「3」を中央寄りに */

    .svc-ads-cost__price-prefix,
    .svc-ads-cost__price-suffix {
      font-size: 1em;
      font-weight: 700;
      vertical-align: baseline;
    }

    .svc-ads-cost__price-prefix {
      margin-right: 0.12em;
    }

    .svc-ads-cost__price-suffix {
      margin-left: 0.08em;
    }

    .svc-ads-cost__price-num {
      font-size: 2.5em;
      font-weight: 700;
      vertical-align: baseline;
      position: relative;
      top: 0.12em;
    }
  }

  .svc-ads-cost__note {
    font-size: 12px;
    color: #999;
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1.8;
  }
}

/* ============================================================
   SERVICE MEO：Flow（#meo-flow）
   ============================================================ */
.svc-meo-flow {
  padding: 0 0 88px;
  background: #fff;

  .svc-meo-flow__banner {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(to right, #22b4e0 0%, #1565d8 60%, #1a4fc8 100%);
    text-align: center;
    margin-bottom: 10px;
  }

  .svc-meo-flow__banner-text {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.18em;
  }

  .svc-meo-flow__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }

  .svc-meo-flow__title {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 900;
    letter-spacing: 0.06em;
    background: linear-gradient(to right, #22b4e0, #1a4fc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 32px;
    line-height: 1.45;
  }

  .svc-meo-flow__image-wrap {
    margin: 0 auto 28px;
    max-width: 480px;
  }

  .svc-meo-flow__image {
    width: 100%;
    height: auto;
    display: block;
  }

  .svc-meo-flow__text {
    font-size: 15px;
    line-height: 2.0;
    color: #444;
    letter-spacing: 0.04em;
    margin: 0;
    text-align: center;
  }
}

/* ============================================================
   SERVICE MEO：Cost（#meo-cost）
   ============================================================ */
.svc-meo-cost {
  padding: 88px 24px 96px;
  background: var(--color-bg-light);
  text-align: center;

  .svc-meo-cost__inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .svc-meo-cost__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-blue);
    margin: 0 0 10px;
    text-transform: uppercase;
  }

  .svc-meo-cost__title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: var(--color-navy-dark);
    letter-spacing: 0.06em;
    margin: 0 0 40px;
  }

  .svc-meo-cost__box {
    background: #fff;
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }

  .svc-meo-cost__box-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    background: var(--color-blue);
    padding: 4px 16px;
    border-radius: 4px;
    margin: 0 0 16px;
  }

  .svc-meo-cost__service {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy-mid);
    margin: 0 0 12px;
    letter-spacing: 0.04em;
  }

  .svc-meo-cost__price {
    font-size: 32px;
    font-weight: 700;
    color: #e86500;
    margin: 0 0 18px;
    letter-spacing: 0.02em;
    line-height: 1;
    padding-left: 0.8em;

    .svc-meo-cost__price-prefix,
    .svc-meo-cost__price-suffix {
      font-size: 1em;
      font-weight: 700;
      vertical-align: baseline;
    }

    .svc-meo-cost__price-prefix {
      margin-right: 0.12em;
    }

    .svc-meo-cost__price-suffix {
      margin-left: 0.08em;
    }

    .svc-meo-cost__price-num {
      font-size: 2.5em;
      font-weight: 700;
      vertical-align: baseline;
      position: relative;
      top: 0.12em;
    }
  }

  .svc-meo-cost__note {
    font-size: 12px;
    color: #999;
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1.8;
  }
}

/* ---- SERVICE MEO：Hero image（ページ固有サイズ調整） ---- */
#meo-hero .svc-hero__image-wrap {
  left: 48%;
  width: 510px;
  top: calc(55% - 10px);
  -webkit-mask-image: linear-gradient(to right, black 40%, rgba(0,0,0,0.3) 60%, transparent 80%);
  mask-image: linear-gradient(to right, black 40%, rgba(0,0,0,0.3) 60%, transparent 80%);
}

/* ---- SERVICE MEO：Hero title（PC：2行目折り返し防止） ---- */
#meo-hero .svc-hero__title {
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ---- SERVICE MEO：Service card backgrounds ---- */
#meo-service .svc-service__card-photo--meo-profile {
  background-image: url("img/service_market_service_sns.jpg");
}
#meo-service .svc-service__card-photo--meo-review {
  background-image: url("img/service_meo_service_review.jpg");
}
#meo-service .svc-service__card-photo--meo-update {
  background-image: url("img/service_meo_service_update.jpg");
}

/* ============================================================
   SERVICE VIDEO：Flow（#video-flow）
   ============================================================ */
.svc-video-flow {
  padding: 0 0 88px;
  background: #fff;

  .svc-video-flow__banner {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(to right, #22b4e0 0%, #1565d8 60%, #1a4fc8 100%);
    text-align: center;
    margin-bottom: 10px;
  }

  .svc-video-flow__banner-text {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.18em;
  }

  .svc-video-flow__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
  }

  .svc-video-flow__title {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 900;
    letter-spacing: 0.06em;
    background: linear-gradient(to right, #22b4e0, #1a4fc8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 52px;
    line-height: 1.45;
  }

  .svc-video-flow__platforms {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 0 0 32px;
  }

  .svc-video-flow__platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .svc-video-flow__platform-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .svc-video-flow__platform-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin: 0;
    letter-spacing: 0.04em;
  }

  .svc-video-flow__text {
    font-size: 15px;
    line-height: 2.0;
    color: #444;
    letter-spacing: 0.04em;
    margin: 0;
    text-align: center;
  }
}

/* ============================================================
   SERVICE VIDEO：Service header（リード文 ＋ プラットフォームボックス）
   ============================================================ */
.svc-video-service__header {
  margin-bottom: 64px;
}

.svc-video-service__lead {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin: 0 0 32px;
  letter-spacing: 0.04em;
  text-align: center;
}

.svc-video-service__platforms {
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
}

.svc-video-service__platforms-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: #1565d8;
  padding: 8px 32px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

.svc-video-service__platforms-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

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

.svc-video-service__platform-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.svc-video-service__platform-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy-dark);
  margin: 0;
}

/* ---- SERVICE VIDEO：Service card backgrounds ---- */
#video-service .svc-service__card-photo--video-planning {
  background-image: url("img/service_video_service_planning.jpg");
}
#video-service .svc-service__card-photo--video-create {
  background-image: url("img/service_video_service_create.jpg");
}
#video-service .svc-service__card-photo--video-management {
  background-image: url("img/service_video_service_management.jpg");
}
#video-service .svc-service__card-photo--video-flow {
  background-image: url("img/service_video_service_flow");
}
#video-service .svc-service__card-photo--video-improve {
  background-image: url("img/service_video_service_improve.jpg");
}

/* ---- SERVICE VIDEO：Service card height（5枚対応） ---- */
#video-service .svc-service__card-photo {
  height: 240px;
}

/* ============================================================
   SERVICE VIDEO：Cost（#video-cost）
   ============================================================ */
.svc-video-cost {
  padding: 88px 24px 96px;
  background: var(--color-bg-light);
  text-align: center;

  .svc-video-cost__inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .svc-video-cost__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-blue);
    margin: 0 0 10px;
    text-transform: uppercase;
  }

  .svc-video-cost__title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: var(--color-navy-dark);
    letter-spacing: 0.06em;
    margin: 0 0 40px;
  }

  .svc-video-cost__box {
    background: #fff;
    border-radius: 16px;
    padding: 44px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }

  .svc-video-cost__box-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    background: var(--color-blue);
    padding: 4px 16px;
    border-radius: 4px;
    margin: 0 0 16px;
  }

  .svc-video-cost__service {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy-mid);
    margin: 0 0 12px;
    letter-spacing: 0.04em;
  }

  .svc-video-cost__price {
    font-size: 32px;
    font-weight: 700;
    color: #e86500;
    margin: 0 0 18px;
    letter-spacing: 0.02em;
    line-height: 1;
    padding-left: 0.8em;

    .svc-video-cost__price-prefix,
    .svc-video-cost__price-suffix {
      font-size: 1em;
      font-weight: 700;
      vertical-align: baseline;
    }

    .svc-video-cost__price-prefix {
      margin-right: 0.12em;
    }

    .svc-video-cost__price-suffix {
      margin-left: 0.08em;
    }

    .svc-video-cost__price-num {
      font-size: 2.5em;
      font-weight: 700;
      vertical-align: baseline;
      position: relative;
      top: 0.12em;
    }
  }

  .svc-video-cost__note {
    font-size: 12px;
    color: #999;
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 1.8;
  }
}

/* ---- SERVICE VIDEO：Hero image（ページ固有サイズ調整） ---- */
#video-hero .svc-hero__image-wrap {
  left: 48%;
  width: 780px;
  top: 55%;
  -webkit-mask-image: linear-gradient(to right, black 40%, rgba(0,0,0,0.3) 60%, transparent 80%);
  mask-image: linear-gradient(to right, black 40%, rgba(0,0,0,0.3) 60%, transparent 80%);
}

/* ============================================================
   SHARED：CTAセクション（.svc-cta）
   ============================================================ */
.svc-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 88px;
  background: #f0f7ff;
  text-align: center;

  .svc-cta__bg-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;

    .svc-cta__bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      opacity: 0.45;
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    }
  }

  .svc-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
  }

  .svc-cta__title {
    font-size: clamp(22px, 3.8vw, 34px);
    font-weight: 900;
    line-height: 1.65;
    letter-spacing: 0.05em;
    color: var(--color-navy);
    margin: 0 0 8px;

    .svc-cta__title-em {
      background: linear-gradient(to right, #22b4e0, #1a4fc8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
  }

  .svc-cta__underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #22b4e0, #1a4fc8);
    border-radius: 2px;
    margin: 0 auto 28px;
  }

  .svc-cta__text {
    font-size: 15px;
    color: #444;
    line-height: 2.0;
    margin: 0 0 36px;
    letter-spacing: 0.04em;
  }
}

/* ============================================================
   NEW FOOTER（.site-footer）
   ============================================================ */
.site-footer {
  background: linear-gradient(to bottom, #ddeeff 0%, #f0f7ff 60%, #ffffff 100%);
  padding: 52px 24px 32px;

  .site-footer__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .site-footer__brand {
    margin-bottom: 36px;

    .site-footer__logo {
      height: 56px;
      width: auto;
      display: block;
      margin: 0 auto 8px;
    }

    .site-footer__brand-name {
      font-size: 16px;
      font-weight: 700;
      color: #333;
      margin: 0 0 8px;
      letter-spacing: 0.06em;
    }

    .site-footer__addr {
      font-size: 13px;
      color: #777;
      margin: 0;
      letter-spacing: 0.04em;
    }
  }

  .site-footer__nav {
    padding-top: 0;

    .site-footer__nav-card {
      background: #fff;
      border-radius: 14px;
      padding: 0 16px;
      margin-bottom: 24px;
    }

    .site-footer__nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      text-align: left;

      .site-footer__nav-item {
        border-bottom: 1px solid #ddeaf5;

        .site-footer__nav-link {
          display: block;
          padding: 15px 8px;
          font-size: 15px;
          font-weight: 600;
          color: var(--color-navy-mid);
          text-decoration: none;
          letter-spacing: 0.04em;

          &::before {
            content: ">";
            color: var(--color-blue);
            margin-right: 10px;
            font-weight: 700;
          }

          &:hover {
            color: var(--color-blue);
          }
        }

        .site-footer__nav-sub {
          list-style: none;
          margin: 0;
          padding: 0;

          .site-footer__nav-sub-item {
            border-top: 1px solid #ddeaf5;

            .site-footer__nav-sub-link {
              display: block;
              padding: 13px 8px 13px 36px;
              font-size: 14px;
              font-weight: 500;
              color: var(--color-navy-mid);
              text-decoration: none;

              &::before {
                content: ">";
                color: var(--color-blue);
                margin-right: 8px;
              }

              &:hover {
                color: var(--color-blue);
              }
            }
          }
        }
      }

      .site-footer__nav-item--last {
        border-bottom: none;
      }
    }

    .site-footer__privacy {
      display: inline-block;
      font-size: 14px;
      font-weight: 600;
      color: var(--color-navy-mid);
      text-decoration: none;
      letter-spacing: 0.06em;
      padding: 6px 0;

      &:hover {
        color: var(--color-blue);
      }
    }
  }

  .site-footer__copyright {
    display: block;
    margin-top: 24px;
    font-size: 11px;
    color: #aaa;
    letter-spacing: 0.06em;
  }
}

/* ============================================================
   ABOUT PAGE：Hero（#about-hero）
   ============================================================ */
.about-hero {
  background: linear-gradient(to bottom, #082050 0%, #0b3070 50%, #1565d8 100%);
  padding: 120px 24px 88px;
  text-align: center;

  .about-hero__inner {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-hero__icon {
    width: 72px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
  }

  .about-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: 0.12em;
  }

  .about-hero__subtitle {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    letter-spacing: 0.18em;
  }
}

/* ============================================================
   ABOUT PAGE：代表メッセージ（#about-message）
   ============================================================ */
.about-message {
  background: #fff;

  .about-message__header {
    background: linear-gradient(to right, #22b4e0 0%, #1565d8 100%);
    padding: 12px 24px;
  }

  .about-message__header-text {
    max-width: 760px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .about-message__inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 40px 24px 52px;
  }

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

  .about-message__text {
    flex: 1;

    p {
      font-size: 15px;
      font-weight: 500;
      line-height: 2.2;
      color: #333;
      margin: 0;
      letter-spacing: 1px;
    }
  }

  .about-message__photo {
    flex: 0 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .about-message__photo-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(21, 101, 216, 0.25);
    overflow: hidden;

    .about-message__photo-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
  }

  .about-message__photo-icon {
    width: 64px;
    height: 64px;
  }

  .about-message__photo-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-navy-mid);
    margin: 0;
    letter-spacing: 0.06em;
  }
}

/* ============================================================
   ABOUT PAGE：会社情報（#about-info）
   ============================================================ */
.about-info {
  background: #eef4fb;
  padding: 72px 24px 88px;

  .about-info__inner {
    max-width: 760px;
    margin: 0 auto;
  }

  .about-info__heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 40px;
    text-align: center;
  }

  .about-info__heading-line {
    flex: 1;
    height: 1px;
    background: #b8cfe8;
    display: block;
  }

  .about-info__heading-body {
    text-align: center;
    flex-shrink: 0;
  }

  .about-info__title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: var(--color-navy-dark);
    margin: 0 0 4px;
    letter-spacing: 0.08em;
  }

  .about-info__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--color-blue);
    margin: 0;
  }

  .about-info__table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  }

  .about-info__th {
    background: #1565d8;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 24px;
    text-align: left;
    letter-spacing: 0.08em;

    &:first-child {
      width: 28%;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
  }

  .about-info__td {
    padding: 18px 24px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #ddeaf7;
    vertical-align: top;
    line-height: 1.8;

    &:first-child {
      border-right: 1px solid #ddeaf7;
    }
  }

  .about-info__td--key {
    font-weight: 700;
    color: var(--color-navy-dark);
    background: #f4f8fc;
    letter-spacing: 0.04em;
  }

  .about-info__link {
    color: var(--color-blue);
    text-decoration: underline;
    text-underline-offset: 3px;

    &:hover {
      opacity: 0.75;
    }
  }
}

/* ============================================================
   SP（max-width: 700px）全スタイルまとめ
   ============================================================ */
@media (max-width: 700px) {


  /* ---- COMMON ---- */
  section {
    width: 100%;
    min-width: auto;
  }
  .container {
    width: 100%;
  }
  .spNon {
    display: none;
  }
  .spOnly {
    display: block;
  }
  .font__big {
    font-size: clamp(28px, 6vw, 35px);
  }
  .font__ttl--sub {
    font-size: 20px;
  }

  /* ---- SITE HEADER / HAMBURGER / DRAWER ---- */
  .site-header {
    background: transparent;
    box-shadow: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;

    .site-header__logo {
      display: none;
    }

    .site-header__nav {
      display: none;
    }
  }

  /* SP：スクロールしても背景・影を出さない */
  .site-header.is-scrolled {
    background: transparent !important;
    box-shadow: none !important;
  }

  /* SP：ハンバーガーはfixed・右上・常に最前面 */
  .hamburger {
    display: flex;
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 1200; /* drawerの1050より高く */

    .hamburger__line {
      background: #fff;
      filter: drop-shadow(0 0 3px rgba(21, 101, 216, 0.9));
    }
  }

  /* ドロワーが開いているとき → 濃いグレー（白いドロワー上で見やすく） */
  .hamburger.is-active {
    .hamburger__line {
      background: #333;
    }
  }

  /* SP：スクロール後も同じスタイルを維持 */
  .site-header.is-scrolled .hamburger {
    .hamburger__line {
      background: #fff;
      filter: drop-shadow(0 0 3px rgba(21, 101, 216, 0.9));
    }
  }


  /* ---- TOP PAGE：FV（header）〜固定フッターバー ---- */
  /*fv*/
  header {
    width: 100%;
    min-width: 100%;
  }
  header .inner {
    min-height: calc(100vh - 155px);
    height: auto;
    margin-bottom: 60px;
  }
  header .inner .fv__box--center {
    width: 95%;
    display: flex;
    flex-direction: column;
  }
  header .inner .fv__box--center .header__bottom { /*PCでは最下部、SPでは最上部のモックアップ*/
    order: 0;
    position: relative;
    padding-top: 5%;
    margin-left: 1%;
    width: 98%;
    height: fit-content;
  }
  header .inner .fv__box--center .header__bottom .header__mock {
    width: 100%;
  }
  header .inner .fv__box--center .header__ttl {
    order: 1;
    margin-left: 0;
    width: 95%;
    padding-top: 0%;
  }
  header .inner .fv__box--center .header__sub {
    order: 3;
    padding-left: 2%;
  }
  header .inner .fv__box--center .header__sub p {
    margin-top: 25px;
    margin-bottom: 0;
    font-size: clamp(18px, 4.5vw, 25px);
    letter-spacing: 0.5px;
    line-height: 35px;
    white-space: nowrap;
  }
  header .inner .fv__box--center .header__bottom--sp {
    order: 4;
    display: flex;
    padding-bottom: 30px;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: clamp(10px, (100vw - 375px) * 0.32, 50px);
  }
  header .inner .fv__box--center .header__bottom--sp .header__sub2 {
    margin-bottom: 0;
    padding-left: 2%;
  }
  header .inner .fv__box--center .header__bottom--sp .header__sub2 p {
    line-height: 30px;
    font-size: clamp(15px, 4vw, 20px);
    letter-spacing: clamp(0px, 0.25vw, 2px);
    white-space: nowrap;
  }
  header .inner .fv__box--center .header__bottom--sp .header__sub2 p .blue__line:after {
    bottom: 1px; /* 文字からの距離 */
  }
  header .inner .fv__box--center .header__bottom--sp .header__point--sp {
    flex: 0 0 30%;
    max-width: 130px;
  }
  header .inner .fv__box--center .header__bottom--sp .header__point--sp img {
    width: 100%;
    object-fit: contain;
  }
  header .inner .cta {
    display: none;
  }
  /* スライダー */
  .fv-result {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* 右半分で大きく */
    height: 50vh; /* FV内で見せたい高さ */
    aspect-ratio: 460/520;
    margin-top: 70px;
    z-index: 4; /* 人物などより上に出したい場合 */
  }
  /* スライダー本体 */
  .fv-result__swiper {
    width: 100%;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
  }
  /* hover */
  .fv-result__nav:hover {
    filter: brightness(1.08);
  }
  /*plan*/
  #plan {
    margin-top: 30px;
  }
  #plan .container .plan__title {
    line-height: 1.7;
  }
  #plan .container .plan__title.font__ttl--sub {
    letter-spacing: 0px;
    font-size: 19px;
  }
  #plan .container .plan__title .plan__title--strong.font__ttl {
    font-size: 35px;
  }
  #plan .container .plan__desc {
    margin-bottom: 60px;
    padding: 0 20px;
    line-height: 1.7;
    font-size: 20px;
  }
  #plan .container .plan__list {
    flex-direction: column;
  }
  #plan .container .plan__list li {
    width: 90%;
    margin: 0 auto;
  }
  #plan .container .plan__list li:nth-of-type(2) {
    position: relative;
    top: 0px;
  }
  /*why*/
  #why {
    padding-top: 0px;
  }
  #why .container .why__title {
    margin-top: 60px;
  }
  #why .container .why__title span {
    border-right: 2px solid #fff;
    border-left: 2px solid #fff;
    padding: 20px 25px;
  }
  #why .container .why__title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
  }
  #why .container .why__title:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
  }
  #why .container .why__content {
    grid-template-columns: 1fr; /* 縦並び */
    width: fit-content;
  }
  #why .container .why__content .why__text {
    order: 1;
  }
  #why .container .why__content .why__text p {
    font-size: 18px;
    width: fit-content;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
  }
  #why .container .why__content .why__image {
    order: 0;
    width: 70%;
    max-width: 400px;
    margin: 0 auto;
  }
  #why .container .why__bottom {
    width: 90%;
    max-width: 500px;
    margin-top: 30px;
    padding-bottom: 90px;
  }
  #why .container .why__title {
    padding: 20px 24px;
    margin-bottom: 60px;
  }
  .why__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why__title::before,
  .why__title::after {
    display: none;
  }
  #service .container {
    padding-right: 0;
  }
  #service .container .service__inner {
    /* 下線 */
  }
  #service .container .service__inner .service__label img {
    position: relative;
    top: -3px;
    height: 30px;
  }
  #service .container .service__inner .service__line {
    width: 90%;
  }
  #service .container .service__inner .service__text {
    padding: 0 20px;
    letter-spacing: 0px;
  }
  #service .container .service__inner .service__bottom {
    width: 90%;
  }
  /*plan*/
  .plan {
    padding: 44px 16px 36px;
  }
  .plan__label {
    padding: 9px 16px;
    margin-bottom: 14px;
    font-size: 14px;
  }
  .plan__desc {
    font-size: 16px;
    line-height: 1.9;
  }
  /*comparison*/
  #comparison .container {
    padding-bottom: 90px;
  }
  #comparison .container .comparison__heading {
    padding-top: 150px;
    padding-bottom: 60px;
  }
  #comparison .container .comparison__heading:before {
    width: 330px;
  }
  #comparison .container .comparison__table {
    margin: 0 auto 30px;
    width: 95%;
  }
  #comparison .container .comparison__jp {
    font-size: 30px;
  }
  #comparison .container .msgbox__card {
    width: 95%;
    border: 2px solid #5c7697;
    padding: 20px 20px 20px 0px;
  }
  #comparison .container .msgbox__human {
    display: none;
    position: absolute;
    left: -10px;
    bottom: -20px;
    width: 100px;
    height: auto;
  }
  #comparison .container .msgbox__human img {
    width: 100%;
    object-fit: contain;
  }
  #comparison .container .msgbox__text {
    display: flex;
    justify-content: center;
    padding-left: 20px;
  }
  #comparison .container .msgbox__text p {
    max-width: 500px;
    font-size: 18px;
  }
  #comparison .container:before {
    width: 330px;
  }
  #achieve {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  #achieve .container .font__ttl--sub {
    margin-bottom: 30px;
    font-size: 30px;
  }
  #achieve .container .achieve__desc {
    padding: 0 20px;
    line-height: 35px;
  }
  #achieve .container .achieve__list {
    flex-direction: column;
    margin-bottom: 0;
    gap: 0px;
  }
  #achieve .container .achieve__list li {
    margin: 0 auto 15px;
    width: 80%;
  }
  #achieve .container .achieve__bottom {
    padding: 0 20px;
  }
  #flow {
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
  }
  #flow .container {
    padding-top: 80px;
  }
  #flow .container .flow-title {
    width: 90%;
    padding: 20px 20px;
    margin-bottom: 60px;
    font-size: 28px;
  }
  #flow .container .flow__content {
    width: 100%;
  }
  #flow .container .flow__content .flow__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 15px;
  }
  #flow .container .flow__content .flow__list li {
    margin-bottom: 20px;
    flex: 0 0 45%;
    aspect-ratio: 3/4;
  }
  #flow .container .flow__content .flow__list li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #flow .container:before {
    top: -50px;
    left: -10%;
    width: 50%;
  }
  #faq {
    overflow: hidden;
  }
  #faq .container {
    margin-top: 120px;
  }
  #faq .container .faq-title {
    width: fit-content;
  }
  #faq .container .faq-title:after {
    left: 50px;
    border-top: 18px solid #1042c2;
  }
  #faq .container ul li {
    width: 90%;
    max-width: 500px;
  }
  #faq .container ul li .faq__q {
    align-items: flex-start;
  }
  #faq .container ul li .faq__q span {
    white-space: nowrap;
  }
  #faq .container ul li .faq__q span:nth-of-type(2) {
    font-size: 16px;
  }
  #faq .container ul li .faq__q .faq__icon {
    position: relative;
    top: -3px;
  }
  #faq .container ul li .faq__a span {
    font-size: 16px !important;
  }
  #faq .container:before {
    right: -10%;
    width: 50%;
  }
  /*form*/
  #form {
    padding-top: 110px;
  }
  #form .container h2 {
    margin-bottom: 70px;
    line-height: 25px;
  }
  #form .container h2:after {
    bottom: -40px;
    width: 50%;
    left: 48%;
    margin: 0 auto;
    transform: translateX(-50%);
  }
  #form .container .form__desc {
    padding: 0 20px;
  }
  #form .container .contact-form {
    padding-bottom: 30px;
  }
  #form .container .contact-form .contact-form__wrap .form-card {
    padding: 28px 18px 34px;
  }
  #form .container .contact-form .contact-form__wrap .form-card .btn-submit {
    width: 100%;
  }
  #form .container .contact-form .contact-form__wrap .form-card .btn-line {
    width: 80%;
  }
  #form:before {
    background-size: 150% auto;
  }
  /*footer*/
  .footer-brand {
    flex-direction: column;
    gap: 10px;
  }
  .footer-brand__addr {
    white-space: normal;
  }
  .footer-brand__logo {
    height: 48px;
  }
  /* 固定フッターバー */
  .fixed-cta {
    align-items: center;
    gap: 10px;
    background: rgba(11, 43, 87, 0.95);
  }
  .fixed-cta .fixed-cta__btn .spNon {
    display: none !important;
  }
  .fixed-cta .fixed-cta__btn .spOnly {
    display: block;
  }

  /* ---- SERVICE PAGES：Hero（.svc-hero）---- */
  .svc-hero {
    padding-top: 0; /* SP：ヘッダー透明のため不要 */
    min-height: auto;

    .svc-hero__inner {
      padding: 72px 20px 44px;
      min-height: auto;
      display: block;
    }

    .svc-hero__content {
      max-width: 100%;
    }

    .svc-hero__image-wrap {
      right: 22%;
      width: auto;
      transform: translateX(50%); /* 右端から半分だけ表示 */
      -webkit-mask-image: none;
      mask-image: none;
      /* top・height はJSで設定 */

      .svc-hero__image {
        height: 100%;
        width: auto;
        opacity: 0.6;
      }
    }

    .svc-hero__tag {
      font-size: 18px;
      padding: 8px 14px;
      margin-bottom: 14px;
      letter-spacing: 0.05em;
    }

    .svc-hero__title {
      font-size: 38px;
      line-height: 1.3;
      margin-bottom: 16px;
      letter-spacing: 0.04em;
    }

    .svc-hero__subtitle {
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .svc-btn-cta {
      display: block;
      width: 100%;
      font-size: 18px;
      padding: 20px 24px;
      text-align: center;

      &::after {
        top: 0.05em;
      }
    }
  }

  /* ---- SERVICE HP：Hero image（SP固有サイズ調整） ---- */
  #hp-hero .svc-hero__image-wrap {
    right: 5%;
    width: 48%;
    transform: translateX(30%);
  }

  /* ---- SERVICE ADS：Hero image（SP固有サイズ調整） ---- */
  #ads-hero .svc-hero__image-wrap {
    left: 55%;
    right: auto;
    width: 42%;
    transform: translateX(40%);
  }

  /* ---- SERVICE PAGES：Problem（全サービスページ共通）---- */
  .svc-problem {
    padding: 56px 20px 64px;

    .svc-problem__list {
      .svc-problem__item {
        padding: 14px 16px;

        span {
          font-size: 15px;
        }
      }
    }
  }

  /* ---- SERVICE HP：Flow（#hp-flow）---- */
  .svc-hp-flow {
    padding: 0 0 68px;

    .svc-hp-flow__banner {
      padding: 16px 20px;
      margin-bottom: 10px;
    }

    .svc-hp-flow__banner-text {
      font-size: 16px;
    }

    .svc-hp-flow__step {
      .svc-hp-flow__step-img {
        width: 80px;
      }
    }

    .svc-hp-flow__arrow {
      border-top-width: 10px;
      border-bottom-width: 10px;
      border-left-width: 14px;
    }
  }

  #hp-flow {
    .svc-hp-flow__inner {
      .svc-hp-flow__title {
        letter-spacing: 0;
        white-space: nowrap;
      }
    }
  }

  /* ---- SERVICE PAGES：Service Cards（全サービスページ共通）---- */
  .svc-service {
    padding: 56px 20px 64px;

    .svc-service__card {
      .svc-service__card-top {
        padding: 18px 20px;

        .svc-service__card-title {
          font-size: 17px;
        }
      }

      .svc-service__card-photo {
        height: 180px;

        .svc-service__card-caption {
          padding: 14px 18px;

          .svc-service__card-text {
            font-size: 14px;
          }
        }
      }
    }
  }

  /* ---- SERVICE HP：Cost（#hp-cost）---- */
  .svc-hp-cost {
    padding: 56px 20px 64px;

    .svc-hp-cost__scroll-hint {
      display: block;
      text-align: right;
      font-size: 12px;
      color: #888;
      margin: 0 0 6px;
      letter-spacing: 0.04em;
    }

    .svc-hp-cost__table {
      min-width: 400px;

      .svc-hp-cost__table-head {
        .svc-hp-cost__table-th {
          padding: 12px 12px;
          font-size: 13px;
        }
      }

      .svc-hp-cost__table-row {
        .svc-hp-cost__table-row-th {
          font-size: 13px;
          padding: 14px 12px;
        }

        .svc-hp-cost__table-td {
          font-size: 14px;
          padding: 14px 12px;
        }
      }
    }
  }

  /* ---- SERVICE ADS：Flow（#ads-flow）---- */
  .svc-ads-flow {
    padding: 56px 20px 68px;

    .svc-ads-flow__step {
      .svc-ads-flow__step-img {
        width: 80px;
      }
    }

    .svc-ads-flow__arrow {
      border-top-width: 10px;
      border-bottom-width: 10px;
      border-left-width: 14px;
    }
  }

  /* ---- SERVICE ADS：Cost（#ads-cost）---- */
  .svc-ads-cost {
    padding: 56px 20px 64px;

    .svc-ads-cost__box {
      padding: 32px 20px;
    }

    .svc-ads-cost__price {
      font-size: 26px;

      .svc-ads-cost__price-num {
        font-size: 2.4em;
      }
    }
  }

  /* ---- SERVICE MEO：Hero image（SP固有サイズ調整） ---- */
  #meo-hero .svc-hero__image-wrap {
    right: 10%;
    left: auto;
    width: 48%;
    top: calc(55% - 10px);
    transform: translateX(40%);
  }

  /* ---- SERVICE MEO：Hero title（SP：タイトル文字サイズ調整） ---- */
  #meo-hero .svc-hero__title {
    font-size: 32px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  /* ---- SERVICE MEO：Flow（#meo-flow）---- */
  .svc-meo-flow {
    padding: 0 0 68px;

    .svc-meo-flow__banner {
      padding: 16px 20px;
      margin-bottom: 10px;
    }

    .svc-meo-flow__banner-text {
      font-size: 16px;
    }

    .svc-meo-flow__title {
      letter-spacing: 0;
    }

    .svc-meo-flow__image-wrap {
      max-width: 100%;
    }
  }

  /* ---- SERVICE MEO：Cost（#meo-cost）---- */
  .svc-meo-cost {
    padding: 56px 20px 64px;

    .svc-meo-cost__box {
      padding: 32px 20px;
    }

    .svc-meo-cost__price {
      font-size: 26px;

      .svc-meo-cost__price-num {
        font-size: 2.4em;
      }
    }
  }

  /* ---- SERVICE VIDEO：Hero title（SP：タイトル文字サイズ調整） ---- */
  #video-hero .svc-hero__title {
    font-size: 30px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  /* ---- SERVICE VIDEO：Hero image（SP固有サイズ調整） ---- */
  #video-hero .svc-hero__image-wrap {
    right: 10%;
    left: auto;
    width: 48%;
    transform: translateX(40%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
  }

  /* ---- SERVICE VIDEO：Flow（#video-flow）---- */
  .svc-video-flow {
    padding: 0 0 68px;

    .svc-video-flow__banner {
      padding: 16px 20px;
    }

    .svc-video-flow__banner-text {
      font-size: 16px;
    }

    .svc-video-flow__platforms {
      gap: 28px;
    }

    .svc-video-flow__platform-icon {
      width: 60px;
      height: 60px;
    }
  }

  /* ---- SERVICE VIDEO：Service header（SP）---- */
  .svc-video-service__header {
    margin-bottom: 32px;
  }

  .svc-video-service__platforms {
    padding: 20px 16px;
  }

  .svc-video-service__platforms-grid {
    gap: 24px;
  }

  .svc-video-service__platform-icon {
    width: 44px;
    height: 44px;
  }

  /* ---- SERVICE VIDEO：Cost（#video-cost）---- */
  .svc-video-cost {
    padding: 56px 20px 64px;

    .svc-video-cost__box {
      padding: 32px 20px;
    }

    .svc-video-cost__price {
      font-size: 26px;

      .svc-video-cost__price-num {
        font-size: 2.4em;
      }
    }
  }

  /* ---- ABOUT PAGE：Hero（#about-hero）---- */
  .about-hero {
    padding: 64px 20px 72px;

    .about-hero__icon {
      width: 56px;
    }

    .about-hero__title {
      font-size: 36px;
    }

    .about-hero__subtitle {
      font-size: 13px;
    }
  }

  /* ---- ABOUT PAGE：代表メッセージ（#about-message）---- */
  .about-message {
    .about-message__header {
      text-align: center;
    }

    .about-message__inner {
      padding: 32px 20px 44px;
    }

    .about-message__content {
      flex-direction: column-reverse;
      gap: 24px;
      align-items: center;
    }

    .about-message__photo {
      align-self: center;
    }

    .about-message__photo-circle {
      width: 100px;
      height: 100px;
    }

    .about-message__photo-icon {
      width: 50px;
      height: 50px;
    }

    .about-message__text {
      width: 100%;
      text-align: center;

      p {
        font-size: 14px;
        line-height: 2.0;
        text-align: center;
      }
    }
  }

  /* ---- ABOUT PAGE：会社情報（#about-info）---- */
  .about-info {
    padding: 56px 16px 64px;

    .about-info__heading {
      gap: 12px;
      margin-bottom: 28px;
    }

    .about-info__th {
      padding: 12px 14px;
      font-size: 13px;
    }

    .about-info__td {
      padding: 14px 14px;
      font-size: 14px;
    }

    .about-info__td--key {
      width: 30%;
    }
  }

  /* ---- SHARED：CTA（.svc-cta）---- */
  .svc-cta {
    padding: 60px 20px 64px;

    .svc-cta__title {
      font-size: 22px;
    }

    .svc-cta__underline {
      width: 60px;
      margin-bottom: 24px;
    }

    .svc-btn-cta {
      width: 100%;
      font-size: 16px;
    }
  }

  /* ---- SITE FOOTER ---- */
  .site-footer {
    padding: 44px 20px 28px;

    .site-footer__brand {
      .site-footer__logo {
        height: 48px;
      }
    }
  }
}