@charset "UTF-8";
/*==================================
一時しのぎのコードを書くときはこちら

バグ・緊急の対応などで使用する（メインのCSSを汚さないため）
正式に対応完了したら中身を必ず消す。（真っ白状態をデフォルトにする）
==================================*/

/* === スクロール進捗バー === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #d30d30, #ff6b6b);
  z-index: 10000;
  transition: width 0.05s linear;
}

/* === SP固定CTAボタン === */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0.6em 1em;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  text-align: center;
}

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

.fixed-cta a {
  display: block;
  background: #d30d30;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8em;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
}

@media screen and (min-width: 833px) {
  .fixed-cta {
    display: none;
  }
}

/* === カード共通ホバー強化 === */
.works-item,
.voice-compact,
.flow-step,
.project-list__item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.works-item:hover,
.voice-compact:hover,
.project-list__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

/* === 実績数字 アニメーション演出 === */
.achievement__item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.achievement__item:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(211, 13, 48, 0.15);
}

/* === フローステップ Lottieアイコン === */
.flow-step__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.3em;
}

@media screen and (min-width: 833px) {
  .flow-step__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5em;
  }
}

/* === Swiper アクティブスライド強調 === */
.works-swiper .swiper-slide-active .works-item,
.voice-swiper .swiper-slide-active .voice-compact {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* === セクション区切り線 === */
.works-section,
.voice-section {
  position: relative;
}

.works-section::before,
.voice-section::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #d30d30;
  border-radius: 2px;
  margin: 0 auto 1em;
}

/* ヘッダーロゴ（タイポ） */
.header__logo-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1e1e1e;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.header__logo-text span {
  font-weight: 900;
  color: #d30d30;
}

@media screen and (min-width: 1025px) {
  .header__logo-text {
    font-size: 1.4rem;
  }
}

/* === 旧IDスタイル競合リセット === */
#archive {
  background: radial-gradient(circle at 100%, #fff, #e5f1f7);
  padding: 3em 0 2.5em;
}

#archive .archive__contents {
  display: none;
}

#voice .archive__contents,
#voice .archive__box {
  display: none;
}

#voice {
  padding: 0;
  background: none;
}

/* content__border overflow解除（Swiper coverflow用） */
.content__border {
  overflow-x: visible !important;
}

/* Swiper pagination カスタム */
.works-pagination.swiper-pagination-bullets,
.voice-pagination.swiper-pagination-bullets {
  bottom: 0;
}

.works-pagination .swiper-pagination-bullet,
.voice-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
}

.works-pagination .swiper-pagination-bullet-active,
.voice-pagination .swiper-pagination-bullet-active {
  background: #d30d30;
}

.swiper-slide {
  height: auto;
}

/* Lottie コンテナ */
.lottie-container {
  width: 90%;
  max-width: 500px;
  margin: 1em auto 0;
}

@media screen and (min-width: 501px) {
  .lottie-container {
    width: 35%;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* フッターロゴ（タイポ） */
.footer__logo-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #1e1e1e;
  letter-spacing: 0.08em;
  line-height: 1;
}

.footer__logo-text span {
  font-weight: 900;
  color: #d30d30;
}

/* MV画像の位置最適化 */
.mv_img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mv_img img {
  object-fit: contain;
  object-position: center bottom;
}

@media screen and (min-width: 1025px) {
  .mv_img {
    max-width: 55%;
    height: 85vh;
    max-height: 900px;
  }
  .mv_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  .mv_img {
    justify-content: center;
  }
  .mv_img img {
    padding-top: 1em;
    max-width: 400px;
    width: 85%;
    margin: 0 auto;
  }
}

/* 実績セクション（スライダー置き換え） */
.achievement__wrap {
  max-width: 1100px;
  width: 95%;
  margin: 1.5em auto 0;
  padding: 0 0 1em;
}

.achievement__list {
  display: flex;
  justify-content: center;
  gap: 1em;
}

.achievement__item {
  flex: 1;
  max-width: 320px;
  background: #fff;
  border: 2px solid #d30d30;
  border-radius: 8px;
  padding: 1.5em 1em;
  text-align: center;
}

.achievement__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 0.5em;
}

.achievement__number {
  font-size: 1rem;
  font-weight: 900;
  color: #1e1e1e;
}

.achievement__number span {
  font-size: 2.5rem;
  color: #d30d30;
  line-height: 1.2;
}

.achievement__note {
  text-align: center;
  font-size: 0.75rem;
  color: #888;
  margin-top: 1em;
}

@media screen and (min-width: 833px) {
  .achievement__wrap {
    margin-top: 2.5em;
  }

  .achievement__list {
    gap: 2em;
  }

  .achievement__item {
    padding: 2em 1.5em;
  }

  .achievement__label {
    font-size: 1rem;
  }

  .achievement__number {
    font-size: 1.125rem;
  }

  .achievement__number span {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 500px) {
  .achievement__list {
    flex-direction: column;
    align-items: center;
    gap: 0.75em;
  }

  .achievement__item {
    width: 90%;
    max-width: 100%;
    padding: 1em;
  }

  .achievement__number span {
    font-size: 2rem;
  }
}

/* MVセクション サブコピー＆キーワードタグ */
.mv_subcopy {
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  margin-top: 1em;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.mv_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 1em;
}

.mv_tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #d30d30;
  background: #fff;
  border: 1.5px solid #d30d30;
  border-radius: 20px;
  padding: 0.3em 1em;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  .mv_subcopy {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 0.5em;
    margin-bottom: 0;
  }
  .mv_tags {
    justify-content: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  .mv_tag {
    font-size: 0.65rem;
    padding: 0.2em 0.7em;
  }
}

@media screen and (min-width: 1025px) {
  /* テキスト全体を上方向へずらして画像との重なりを回避 */
  .mv_txt .mv_txtjr {
    transform: translate(0, -48%);
  }
  .mv_subcopy {
    font-size: 0.95rem;
    margin-top: 0.8em;
  }
  .mv_tags {
    margin-top: 0.8em;
    gap: 0.5em;
  }
  .mv_tag {
    font-size: 0.8rem;
    padding: 0.3em 1em;
    transition: all 0.3s;
  }
  .mv_tag:hover {
    background: #d30d30;
    color: #fff;
  }
}

/* フローセクション */
.flow-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  max-width: 1100px;
  margin: 1.5em auto 2em;
  padding: 0;
  counter-reset: none;
  list-style: none;
}

.flow-step {
  background: #fff;
  border-radius: 8px;
  padding: 1.5em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
}

.flow-step__number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #d30d30;
  font-family: "Noto Sans", sans-serif;
  line-height: 1;
  min-width: 2.2em;
  text-align: center;
}

.flow-step__title {
  font-size: 1rem;
  font-weight: 900;
  color: #1e1e1e;
  flex-shrink: 0;
}

.flow-step__desc {
  width: 100%;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

/* SP: ステップ間の矢印 */
.flow-step + .flow-step::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #d30d30;
  position: absolute;
  top: -0.75em;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 833px) {
  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    margin: 2.5em auto 3em;
  }

  .flow-step {
    flex-direction: column;
    text-align: center;
    padding: 2em 1.5em;
  }

  .flow-step__number {
    font-size: 2rem;
  }

  .flow-step__title {
    font-size: 1.1rem;
  }

  .flow-step__desc {
    font-size: 0.875rem;
    text-align: center;
  }

  /* PC: 矢印を非表示（グリッドで並ぶため不要） */
  .flow-step + .flow-step::before {
    display: none;
  }
}

/* ===========================
   制作実績セクション
   =========================== */
.works-section {
  background: radial-gradient(circle at 100%, #fff, #e5f1f7);
  padding: 3em 0 2.5em;
  overflow: hidden;
}

.works-swiper {
  max-width: 1100px;
  width: 97%;
  margin: 1.5em auto 0;
  padding-bottom: 2.5em;
  overflow: visible !important;
}

.works-swiper .swiper-wrapper {
  overflow: visible;
}

.works-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.works-item__img {
  height: 140px;
  overflow: hidden;
}

.works-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.works-item__body {
  padding: 1em 1.2em 1.2em;
}

.works-item__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #d30d30;
  border: 1.5px solid #d30d30;
  border-radius: 20px;
  padding: 0.1em 0.7em;
  margin-bottom: 0.4em;
}

.works-item__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #1e1e1e;
  line-height: 1.3;
}

.works-item__title span {
  color: #d30d30;
}

.works-item__desc {
  font-size: 0.8rem;
  color: #555;
  margin-top: 0.3em;
  line-height: 1.5;
}

.works-item {
  height: 100%;
}

@media screen and (min-width: 833px) {
  .works-section {
    padding: 5em 0 4em;
  }

  .works-swiper {
    margin-top: 2em;
  }

  .works-item__img {
    height: 160px;
  }

  .works-item__body {
    padding: 1.2em 1.5em 1.5em;
  }
}

/* ===========================
   お客様の声セクション
   =========================== */
.voice-section {
  padding: 3em 0 2em;
  background: #fff;
  overflow: hidden;
}

.voice-swiper {
  max-width: 1100px;
  width: 97%;
  margin: 1.5em auto 0;
  padding-bottom: 2.5em;
  overflow: visible !important;
}

.voice-swiper .swiper-wrapper {
  overflow: visible;
}

.voice-compact {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  padding: 1.2em;
  display: flex;
  align-items: flex-start;
  gap: 1em;
}

.voice-compact__num {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #d30d30;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.voice-compact__num span {
  font-size: 0.55rem;
  font-weight: 700;
  display: block;
  margin-top: 0.1em;
}

.voice-compact__body {
  flex: 1;
  min-width: 0;
}

.voice-compact__meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 0.3em;
}

.voice-compact__tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: #d30d30;
  border: 1.5px solid #d30d30;
  border-radius: 20px;
  padding: 0.1em 0.6em;
  margin-right: 0.3em;
}

.voice-compact__title {
  font-size: 0.95rem;
  font-weight: 900;
  color: #1e1e1e;
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.voice-compact__title strong {
  color: #d30d30;
}

.voice-compact__ba {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.5;
  margin: 0;
  padding-left: 0.2em;
}

.voice-compact__ba span {
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #aaa;
  margin-right: 0.3em;
}

.voice-compact__ba--after {
  color: #d30d30;
}

.voice-compact__ba--after span {
  color: #d30d30;
}

.voice-compact {
  height: 100%;
}

@media screen and (min-width: 501px) {
  .voice-compact {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5em 1.2em;
  }

  .voice-compact__ba {
    text-align: left;
    padding-left: 0;
  }
}

@media screen and (min-width: 833px) {
  .voice-section {
    padding: 5em 0 2.5em;
  }

  .voice-swiper {
    margin-top: 2em;
  }

  .voice-compact {
    padding: 2em 1.5em;
  }

  .voice-compact__num {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .voice-compact__title {
    font-size: 1rem;
  }
}

/* ===========================
   お問い合わせセクション
   =========================== */
.contact-section {
  background: linear-gradient(135deg, #f8fbff 0%, #eef4fb 100%);
  padding: 3.5em 0 4em;
}

.contact-section__lead {
  font-size: 0.875rem;
  color: #555;
  margin-top: 1em;
  line-height: 1.8;
}

.contact-card {
  max-width: 780px;
  margin: 2em auto 0;
  background: #fff;
  border-radius: 12px;
  padding: 2em 1.5em;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.contact-form__row {
  margin-bottom: 1.4em;
}

.contact-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 0.4em;
}

.contact-form__label--required::after {
  content: "※";
  color: #d30d30;
  font-size: 0.75rem;
  margin-left: 0.3em;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.7em 1em;
  font-size: 1rem;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #d30d30;
  background: #fff;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #aaa;
}

.contact-form__input-wrap--half {
  display: flex;
  gap: 0.8em;
}

.contact-form__input-wrap--half .contact-form__input {
  width: 50%;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0;
  border: none;
  padding: 0;
}

.contact-form__checks label {
  width: 50%;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.3em 0;
}

.contact-form__checks label:hover {
  color: #d30d30;
}

.contact-form__checks input[type="checkbox"] {
  accent-color: #d30d30;
  width: 1.1em;
  height: 1.1em;
}

.contact-form__agree {
  text-align: center;
  margin: 1.5em 0 0.5em;
  font-size: 0.875rem;
}

.contact-form__agree a {
  color: #d30d30;
  text-decoration: underline;
  font-weight: 700;
}

.contact-form__agree input[type="checkbox"] {
  accent-color: #d30d30;
  margin-right: 0.3em;
}

.contact-form__submit {
  text-align: center;
  margin-top: 1.5em;
}

.contact-form__btn {
  display: inline-block;
  width: 100%;
  max-width: 360px;
  padding: 0.9em 2em;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: #d30d30;
  border: 2px solid #d30d30;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form__btn:hover {
  background: #fff;
  color: #d30d30;
}

@media screen and (min-width: 833px) {
  .contact-section {
    padding: 6em 0 5em;
  }

  .contact-section__lead {
    font-size: 1rem;
  }

  .contact-card {
    padding: 3em 3.5em;
    margin-top: 2.5em;
  }

  .contact-form__row {
    display: flex;
    align-items: flex-start;
    gap: 1.5em;
    margin-bottom: 1.6em;
  }

  .contact-form__label {
    min-width: 160px;
    padding-top: 0.7em;
    margin-bottom: 0;
    text-align: right;
    flex-shrink: 0;
  }

  .contact-form__input-wrap {
    flex: 1;
  }

  .contact-form__checks label {
    width: 33.3%;
  }
}

@media screen and (max-width: 500px) {
  .contact-card {
    padding: 1.5em 1em;
  }

  .contact-form__checks label {
    width: 100%;
  }

  .contact-form__input-wrap--half {
    flex-direction: column;
    gap: 0.6em;
  }

  .contact-form__input-wrap--half .contact-form__input {
    width: 100%;
  }
}

/* ===========================
   ユーティリティ
   =========================== */
.u-pc { display: none; }
@media screen and (min-width: 833px) { .u-pc { display: inline; } }
.u-sp { display: inline; }
@media screen and (min-width: 833px) { .u-sp { display: none; } }

/* ===========================
   サブページ共通レイアウト
   =========================== */
.sp-inner {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

.sp-section {
  padding: 3em 0;
}

.sp-section--accent {
  background: linear-gradient(135deg, #eef4fb 0%, #f8fbff 100%);
}

.sp-section--gray {
  background: #f5f6f8;
}

.sp-section--dark {
  background: linear-gradient(135deg, #1e1e1e 0%, #2c2c2c 100%);
}

.sp-section--cta {
  background: linear-gradient(135deg, #d30d30 0%, #e8334e 100%);
  padding: 3.5em 0;
}

@media screen and (min-width: 833px) {
  .sp-section { padding: 4.5em 0; }
  .sp-section--cta { padding: 5em 0; }
}

/* セクション見出し */
.sp-heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1e1e1e;
  text-align: center;
  line-height: 1.4;
  margin: 0 0 0.3em;
}

.sp-heading--white { color: #fff; }

.sp-heading::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #d30d30;
  border-radius: 2px;
  margin: 0.6em auto 0;
}

.sp-heading--white::after { background: rgba(255,255,255,0.5); }

@media screen and (min-width: 833px) {
  .sp-heading { font-size: 2rem; }
}

/* ページヒーロー */
.subpage-hero {
  background: linear-gradient(135deg, #1e1e1e 0%, #2c2c2c 100%);
  padding: 5em 1.5em 3em;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero--tall { padding: 5.5em 1.5em 3.5em; }

.subpage-hero__lottie {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  opacity: 0.15;
  pointer-events: none;
}

.subpage-hero__title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0;
}

.subpage-hero__lead {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.8em;
  line-height: 1.7;
}

@media screen and (min-width: 833px) {
  .subpage-hero { padding: 7em 2em 4em; }
  .subpage-hero--tall { padding: 8em 2em 5em; }
  .subpage-hero__lottie { width: 700px; height: 700px; opacity: 0.12; }
  .subpage-hero__title { font-size: 2.5rem; }
  .subpage-hero__lead { font-size: 1.05rem; }
}

/* Aboutページ メディアレイアウト（Lottie + テキスト横並び）*/
.about-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
}

.about-media__lottie {
  width: 240px;
  height: 240px;
  flex-shrink: 0;
}

.about-media__text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.9;
}

.about-media__text p { margin: 0 0 0.8em; }
.about-media__text p:last-child { margin-bottom: 0; }
.about-media__text strong { color: #d30d30; }

.sp-heading--left { text-align: left; }
.sp-heading--left::after { margin: 0.6em 0 0; }

@media screen and (min-width: 833px) {
  .about-media { flex-direction: row; gap: 3em; align-items: center; }
  .about-media__lottie { width: 340px; height: 340px; }
  .about-media__text { flex: 1; font-size: 1rem; }
}

/* 比較カード内Lottie */
.compare-card__lottie {
  width: 80px;
  height: 80px;
  margin-bottom: 0.5em;
}

@media screen and (min-width: 833px) {
  .compare-card__lottie { width: 100px; height: 100px; }
}

/* CTA ボタン */
.sp-cta-lead {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-top: 1em;
  line-height: 1.7;
}

.sp-cta-btn {
  margin-top: 1.8em;
}

.sp-cta-btn a {
  display: inline-block;
  padding: 0.9em 3em;
  font-size: 1.05rem;
  font-weight: 700;
  color: #d30d30;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.sp-cta-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* リードボックス */
.sp-lead-box {
  max-width: 820px;
  margin: 1.5em auto 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.9;
}

.sp-lead-box p { margin: 0 0 1em; }
.sp-lead-box p:last-child { margin-bottom: 0; }
.sp-lead-box strong { color: #d30d30; }

.sp-note {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 2em;
  line-height: 1.7;
}

.sp-note strong { color: #d30d30; }

@media screen and (min-width: 833px) {
  .sp-lead-box { font-size: 1rem; text-align: center; }
}

/* ===========================
   SEO × AIO 比較カード
   =========================== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2em;
  max-width: 800px;
  margin: 2em auto 0;
}

.compare-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2em 1.5em;
}

.compare-card--primary {
  border-color: #d30d30;
  box-shadow: 0 4px 20px rgba(211,13,48,0.1);
}

.compare-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 0.3em 1.2em;
  border-radius: 20px;
  background: #f0f0f0;
  color: #555;
  margin-bottom: 0.8em;
}

.compare-card__badge--primary {
  background: #d30d30;
  color: #fff;
}

.compare-card__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #1e1e1e;
  margin: 0 0 0.8em;
}

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

.compare-card__list li {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
  padding: 0.4em 0 0.4em 1.5em;
  position: relative;
}

.compare-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d30d30;
  font-weight: 700;
}

@media screen and (min-width: 833px) {
  .compare-grid { grid-template-columns: 1fr 1fr; gap: 1.5em; }
  .compare-card { padding: 2.5em 2em; }
  .compare-card__title { font-size: 1.2rem; }
}

/* ===========================
   数字セクション (Stats)
   =========================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  max-width: 900px;
  margin: 2em auto 0;
}

.stats-grid--compact {
  max-width: 700px;
  grid-template-columns: repeat(3, 1fr);
}

.stats-item {
  text-align: center;
  padding: 1.5em 0.5em;
}

.stats-item__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #d30d30;
  line-height: 1.1;
  font-family: "Noto Sans", sans-serif;
}

.sp-section--dark .stats-item__number { color: #ff6b6b; }

.stats-item__number small {
  font-size: 0.4em;
  font-weight: 700;
}

.stats-item__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5em;
}

.stats-item--light .stats-item__label { color: #555; }

@media screen and (min-width: 833px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5em; }
  .stats-grid--compact { grid-template-columns: repeat(3, 1fr); }
  .stats-item__number { font-size: 3.5rem; }
  .stats-item__label { font-size: 0.875rem; }
}

@media screen and (max-width: 500px) {
  .stats-grid--compact { grid-template-columns: 1fr; gap: 0.5em; }
  .stats-item { padding: 1em 0; }
  .stats-item__number { font-size: 2rem; }
}

/* ===========================
   3つの強み
   =========================== */
.reason-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1em !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 1.5em auto 0 !important;
  max-width: 1100px !important;
  width: 100% !important;
}

.reason-list__item {
  background: #fff !important;
  border-radius: 12px !important;
  border: none !important;
  padding: 1.2em 1.2em !important;
  display: flex !important;
  align-items: center !important;
  gap: 1em !important;
  width: 100% !important;
  margin: 0 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  flex-direction: row !important;
}

.reason-list__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.reason-list__num {
  font-size: 1.5rem;
  font-weight: 900;
  color: #d30d30;
  font-family: "Noto Sans", sans-serif;
  line-height: 1;
  opacity: 0.25;
  flex-shrink: 0;
}

.reason-list__icon {
  width: 48px !important;
  height: 48px;
  flex-shrink: 0;
  margin: 0 !important;
}

.reason-list__tit {
  font-size: 0.95rem !important;
  font-weight: 900;
  color: #1e1e1e;
  line-height: 1.4 !important;
  margin: 0 !important;
  text-align: left !important;
  width: auto !important;
}

.reason-list__tit::after {
  display: none !important;
}

.reason-list__lead {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.7;
  margin-top: 0.3em !important;
  display: none;
}

@media screen and (min-width: 833px) {
  .reason-list {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5em !important;
    margin-top: 2em !important;
  }
  .reason-list__item {
    flex-direction: column !important;
    text-align: center;
    padding: 1.8em 1.5em !important;
  }
  .reason-list__icon { width: 60px !important; }
  .reason-list__tit { font-size: 1.05rem !important; text-align: center !important; }
  .reason-list__lead { display: block; font-size: 0.85rem; }
  .reason-list__num { font-size: 1.8rem; }
}

/* ===========================
   ご契約までの流れ (about)
   =========================== */
.about-flow {
  list-style: none;
  padding: 0;
  margin: 2em auto 0;
  max-width: 780px;
}

.about-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 1.2em;
  padding: 1.5em 0;
  border-bottom: 1px solid #eee;
}

.about-flow__step:last-child { border-bottom: none; }

.about-flow__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #d30d30;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  font-family: "Noto Sans", sans-serif;
}

.about-flow__body h3 {
  font-size: 1rem;
  font-weight: 900;
  color: #1e1e1e;
  margin: 0 0 0.4em;
}

.about-flow__body p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

@media screen and (min-width: 833px) {
  .about-flow__step { padding: 2em 0; gap: 1.5em; }
  .about-flow__num { width: 52px; height: 52px; font-size: 1.3rem; }
  .about-flow__body h3 { font-size: 1.15rem; }
  .about-flow__body p { font-size: 0.9rem; }
}

/* ===========================
   制作実績カード
   =========================== */
.archive-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
  max-width: 960px;
  margin: 2em auto 0;
}

.archive-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.archive-card__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.archive-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.archive-card__body { padding: 1.5em; }

.archive-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  margin-bottom: 0.5em;
}

.archive-card__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #1e1e1e;
  line-height: 1.5;
  margin: 0;
}

.archive-card__client {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  margin-top: 0.4em;
}

.archive-card__text {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.8;
  margin-top: 0.8em;
}

/* 成果数字 */
.archive-card__result {
  display: flex;
  gap: 1.5em;
  margin-top: 1.2em;
  padding-top: 1em;
  border-top: 1px solid #eee;
}

.archive-card__result-item { text-align: center; }

.archive-card__result-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #d30d30;
  line-height: 1.2;
  font-family: "Noto Sans", sans-serif;
}

.archive-card__result-num small {
  font-size: 0.5em;
  font-weight: 700;
}

.archive-card__result-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #888;
  margin-top: 0.2em;
}

@media screen and (min-width: 833px) {
  .archive-card { flex-direction: row; align-items: stretch; }
  .archive-card__img { width: 320px; height: auto; min-height: 240px; flex-shrink: 0; }
  .archive-card__body { padding: 2em 2.5em; display: flex; flex-direction: column; justify-content: center; }
  .archive-card__title { font-size: 1.25rem; }
  .archive-card__text { font-size: 0.9rem; }
  .archive-card:nth-child(even) { flex-direction: row-reverse; }
  .archive-card__result-num { font-size: 2rem; }
}

/* サービスチップ */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6em;
  margin-top: 2em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-chip {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e1e1e;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 30px;
  padding: 0.5em 1.4em;
  transition: all 0.3s;
}

.service-chip:hover {
  border-color: #d30d30;
  color: #d30d30;
}

@media screen and (min-width: 833px) {
  .service-chip { font-size: 0.9rem; padding: 0.6em 1.8em; }
}

/* ===========================
   お客様の声カード
   =========================== */
.voice-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
}

.voice-card__header {
  display: flex;
  flex-direction: column;
}

.voice-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.voice-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.voice-card__meta {
  padding: 1.2em 1.5em 0;
}

.voice-card__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #1e1e1e;
  line-height: 1.5;
  margin: 0.5em 0 0;
}

.voice-card__title span { color: #d30d30; }

.voice-card__client {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  margin-top: 0.3em;
}

.voice-card__content {
  padding: 0 1.5em 1.5em;
}

.voice-card__quote {
  margin: 1.2em 0 0;
  padding: 1.2em 1.5em;
  background: #f9f9f9;
  border-left: 4px solid #d30d30;
  border-radius: 0 8px 8px 0;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.8;
  font-style: normal;
}

.voice-card__quote strong { color: #d30d30; }

@media screen and (min-width: 833px) {
  .voice-card__header { flex-direction: row; align-items: stretch; }
  .voice-card__img { width: 280px; height: auto; min-height: 200px; flex-shrink: 0; }
  .voice-card__meta { padding: 2em 2em 1em; display: flex; flex-direction: column; justify-content: center; }
  .voice-card__content { padding: 0 2em 2em; }
  .voice-card__title { font-size: 1.2rem; }
  .voice-card__quote { font-size: 0.9rem; }
}

/* 満足度ブロック */
.satisfaction-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}

.satisfaction-block__number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #d30d30;
  line-height: 1;
  font-family: "Noto Sans", sans-serif;
}

.satisfaction-block__number small {
  font-size: 0.4em;
  font-weight: 700;
}

.satisfaction-block__label {
  font-size: 1rem;
  font-weight: 900;
  color: #1e1e1e;
}

.satisfaction-block__note {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.3em;
}

@media screen and (min-width: 833px) {
  .satisfaction-block__number { font-size: 5rem; }
  .satisfaction-block__label { font-size: 1.2rem; }
}

/* Before / After ブロック */
.voice-detail-ba {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin-top: 1.2em;
  padding-top: 1em;
  border-top: 1px solid #eee;
}

.voice-detail-ba__item {
  padding: 1em 1.2em;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

.voice-detail-ba__item p { margin: 0.5em 0 0; }
.voice-detail-ba__item--before { background: #f5f5f5; }
.voice-detail-ba__item--after { background: #fdf0f2; }

.voice-detail-ba__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.2em 0.8em;
  border-radius: 4px;
}

.voice-detail-ba__item--before .voice-detail-ba__label { background: #ddd; color: #666; }
.voice-detail-ba__item--after .voice-detail-ba__label { background: #d30d30; color: #fff; }

@media screen and (min-width: 833px) {
  .voice-detail-ba { flex-direction: row; gap: 1.2em; }
  .voice-detail-ba__item { flex: 1; padding: 1.2em 1.5em; }
}
