@charset "UTF-8";

/* ===========================
   CSS カスタムプロパティ
   =========================== */
:root {
  --primary: #1A3A6E;          /* ネイビー（信頼） */
  --primary-dark: #0F2347;
  --primary-light: #E8F2FF;
  --accent: #FF6B35;           /* オレンジ（CTA） */
  --accent-dark: #E55520;
  --accent-light: #FFF1EA;
  --text-dark: #1F2937;
  --text-mid: #4B5563;
  --text-light: #6B7280;
  --bg-white: #FFFFFF;
  --bg-gray: #F9FAFB;
  --bg-lightblue: #E8F2FF;
  --border: #E5E7EB;
  --success: #16A34A;
  --line-green: #06C755;
  --font-jp: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Noto Sans JP', sans-serif;
  --font-num: 'Montserrat', 'Hiragino Kaku Gothic ProN', sans-serif;
}

body {
  font-family: var(--font-jp);
  color: var(--text-dark);
  line-height: 1.8;
  background: var(--bg-white);
}

/* ===========================
   ユーティリティ
   =========================== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
.section-alt { background: var(--bg-gray); }
.section-blue { background: var(--primary-light); }
.section-navy { background: var(--primary); color: #fff; }

.section-label {
  display: block;
  text-align: center;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 800;
  text-align: center;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.section-title .accent { color: var(--accent); }
.section-title .marker {
  background: linear-gradient(transparent 60%, #FFD9C7 60%);
  padding: 0 4px;
}
.section-navy .section-title { color: #fff; }
.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 56px;
  font-weight: 500;
}
.section-navy .section-subtitle { color: #C9D6EC; }

.badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 14px;
  letter-spacing: 0.05em;
}

/* ===========================
   CTAボタン
   =========================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  padding: 20px 36px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(255,107,53,0.30);
  transition: all 0.2s;
  min-width: 320px;
  text-align: center;
  line-height: 1.3;
}
.cta-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.40);
}
.cta-btn .arrow { font-size: 20px; }
.cta-btn.outline {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 2px 8px rgba(26,58,110,0.10);
}
.cta-btn.outline:hover { background: var(--primary-light); }
.cta-btn.small {
  padding: 12px 22px;
  font-size: 14px;
  min-width: auto;
}
.cta-wrap {
  text-align: center;
  margin-top: 40px;
}
.cta-note {
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
  margin-top: 14px;
}

/* ===========================
   固定ヘッダー
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  height: 68px;
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 800;
  color: var(--primary);
  font-size: 18px;
  letter-spacing: 0.02em;
}
.logo .logo-sub {
  display: block;
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  transition: all 0.2s;
}
.header-action-ico {
  font-size: 16px;
  line-height: 1;
}
.header-action-text--short {
  display: none;
}
.header-action-tel {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.header-action-tel:hover {
  background: var(--primary-light);
}
.header-action-mail {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(255,107,53,0.25);
}
.header-action-mail:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* ===========================
   ファーストビュー
   =========================== */
.hero {
  background: url("../images/fv_bg.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 92px 0 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-fv-wrap {
  position: relative;
  width: min(100%, 1040px);
  line-height: 0;
}
.hero-fv-wrap picture {
  display: block;
  width: 100%;
  line-height: 0;
}
.hero-fv {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: -1px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.14));
}
.hero-btns {
  position: absolute;
  left: 1.5%;
  bottom: 5.6%;
  width: 58.4%;
  display: flex;
  align-items: center;
  gap: 0.8%;
}
.hero-btn {
  flex: 1;
  display: block;
  line-height: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.hero-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}
.hero-btn img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===========================
   スクロール誘導
   =========================== */
.scroll-down {
  text-align: center;
  margin-top: 40px;
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.2em;
}
.scroll-down::after {
  content: "↓";
  display: block;
  font-size: 18px;
  margin-top: 6px;
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===========================
   課題提起セクション
   =========================== */
.pain-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(232,247,255,0.88) 100%),
    url("../images/fv_bg.png") center / cover no-repeat;
}
.pain-section::before,
.pain-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.pain-section::before {
  inset: 0;
  background:
    linear-gradient(34deg, rgba(255,255,255,0.42) 0 16%, transparent 16% 100%),
    linear-gradient(145deg, transparent 0 58%, rgba(255,255,255,0.52) 58% 72%, transparent 72% 100%),
    linear-gradient(118deg, transparent 0 21%, rgba(0,132,196,0.07) 21% 22%, transparent 22% 100%);
}
.pain-section::after {
  right: -170px;
  bottom: -230px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,126,191,0.14) 0%, rgba(0,126,191,0) 68%);
}
.pain-section .container {
  position: relative;
  z-index: 1;
}
.pain-section .section-title {
  color: #050505;
  font-size: clamp(34px, 4.8vw, 56px);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 0 rgba(255,255,255,0.75);
}
.pain-section .section-title::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 48px;
  margin: 0 24px 4px 0;
  background:
    linear-gradient(58deg, transparent 0 44%, #2E7CD6 44% 56%, transparent 56% 100%),
    linear-gradient(72deg, transparent 0 43%, #2E7CD6 43% 56%, transparent 56% 100%);
  transform: rotate(-16deg);
  vertical-align: middle;
}
.pain-section .section-title::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 48px;
  margin: 0 0 4px 24px;
  background:
    linear-gradient(122deg, transparent 0 44%, #2E7CD6 44% 56%, transparent 56% 100%),
    linear-gradient(108deg, transparent 0 43%, #2E7CD6 43% 56%, transparent 56% 100%);
  transform: rotate(16deg);
  vertical-align: middle;
}
.pain-section .section-title .accent {
  color: #0759AF;
  background: none;
  padding: 0 4px;
}
.pain-section .section-subtitle {
  display: block;
  width: min(100%, 900px);
  margin: 14px auto 34px;
  padding: 18px 18px 0;
  box-sizing: border-box;
  border: 0;
  border-top: 3px solid #2E8AD9;
  background: transparent;
  color: #071120;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.45;
  box-shadow: none;
  position: relative;
}
.pain-section .section-subtitle::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 22px;
  height: 22px;
  border-right: 3px solid #2E8AD9;
  border-bottom: 3px solid #2E8AD9;
  background: rgba(245,251,255,0.9);
  transform: translate(-50%, -50%) rotate(45deg);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pain-card {
  background: rgba(255,255,255,0.94);
  border: 0;
  border-radius: 18px;
  padding: 30px 30px 26px;
  box-sizing: border-box;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  box-shadow: 0 14px 28px rgba(26,58,110,0.18);
  overflow: hidden;
}
.pain-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: var(--pain-color);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(26,58,110,0.22);
}
.pain-icon {
  width: 154px;
  height: 116px;
  margin: 0 auto 18px;
  background-image: url("../images/pain-illustrations.png");
  background-repeat: no-repeat;
  background-size: 462px 154px;
  background-position: left center;
}
.pain-card-red { --pain-color: #FFB6B8; --pain-title: #CF1731; --pain-icon-x: left center; }
.pain-card-blue { --pain-color: #9DCAFA; --pain-title: #0759AF; --pain-icon-x: center center; }
.pain-card-green { --pain-color: #B7E19C; --pain-title: #2D7F27; --pain-icon-x: right center; }
.pain-card .pain-icon {
  background-position: var(--pain-icon-x);
}
.pain-card h3 {
  display: block;
  color: var(--pain-title);
  margin-bottom: 16px;
  font-weight: 900;
  font-size: clamp(24px, 2.35vw, 30px);
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.01em;
  background: none;
  padding: 0 0 15px;
  border-bottom: 2px dashed #A9AEB6;
}
.pain-card p {
  margin-top: 0;
  color: #050505;
  font-size: 19px;
  line-height: 1.8;
  font-weight: 900;
}
.pain-arrow {
  text-align: center;
  margin-top: 38px;
}
.pain-arrow .pain-arrow-text {
  display: inline-block;
  width: min(100%, 720px);
  background: rgba(255,255,255,0.92);
  color: #050505;
  padding: 14px 44px;
  box-sizing: border-box;
  border: 2px solid #2E8AD9;
  border-radius: 10px;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.25;
  position: relative;
  box-shadow: 0 14px 28px rgba(26,58,110,0.16);
  text-decoration: none;
  white-space: nowrap;
}
.pain-arrow .pain-arrow-text::after {
  content: "✦";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  color: #2E7CD6;
  font-size: 24px;
}
.pain-arrow .pain-arrow-text::before {
  content: "✦";
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #2E7CD6;
  font-size: 24px;
}
.pain-arrow .store-em,
.pain-arrow .solve-em {
  color: #0759AF;
}
.pain-arrow .solve-em {
  background: linear-gradient(transparent 62%, #FFF15A 62%);
  padding: 0 5px;
}

/* ===========================
   USP (5つの特徴)
   =========================== */
.usp-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(232,247,255,0.88) 100%),
    url("../images/fv_bg.png") center / cover no-repeat;
}
.usp-section::before,
.usp-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.usp-section::before {
  inset: 0;
  background:
    linear-gradient(34deg, rgba(255,255,255,0.42) 0 16%, transparent 16% 100%),
    linear-gradient(145deg, transparent 0 58%, rgba(255,255,255,0.52) 58% 72%, transparent 72% 100%),
    linear-gradient(118deg, transparent 0 21%, rgba(0,132,196,0.07) 21% 22%, transparent 22% 100%);
}
.usp-section::after {
  left: -190px;
  top: 210px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,126,191,0.12) 0%, rgba(0,126,191,0) 70%);
}
.usp-section .container {
  position: relative;
  z-index: 1;
}
.usp-section .section-title {
  color: #050505;
  font-size: clamp(34px, 4.8vw, 56px);
  text-shadow: 0 2px 0 rgba(255,255,255,0.78);
}
.usp-section .section-title::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 48px;
  margin: 0 24px 4px 0;
  background:
    linear-gradient(58deg, transparent 0 44%, #2E7CD6 44% 56%, transparent 56% 100%),
    linear-gradient(72deg, transparent 0 43%, #2E7CD6 43% 56%, transparent 56% 100%);
  transform: rotate(-16deg);
  vertical-align: middle;
}
.usp-section .section-title::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 48px;
  margin: 0 0 4px 24px;
  background:
    linear-gradient(122deg, transparent 0 44%, #2E7CD6 44% 56%, transparent 56% 100%),
    linear-gradient(108deg, transparent 0 43%, #2E7CD6 43% 56%, transparent 56% 100%);
  transform: rotate(16deg);
  vertical-align: middle;
}
.usp-section .section-title .accent {
  color: #0759AF;
  background: none;
  padding: 0 4px;
}
.usp-section .section-subtitle {
  display: block;
  width: min(100%, 840px);
  margin: 14px auto 34px;
  padding: 18px 18px 0;
  box-sizing: border-box;
  border: 0;
  border-top: 3px solid #2E8AD9;
  background: transparent;
  color: #071120;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  box-shadow: none;
  position: relative;
}
.usp-section .section-subtitle::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 22px;
  height: 22px;
  border-right: 3px solid #2E8AD9;
  border-bottom: 3px solid #2E8AD9;
  background: rgba(245,251,255,0.9);
  transform: translate(-50%, -50%) rotate(45deg);
}
.usp-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
}
.usp-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-column: span 2;
  background: rgba(255,255,255,0.94);
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow: 0 12px 24px rgba(26,58,110,0.16);
  border: 1px solid rgba(46,138,217,0.24);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.usp-row:nth-child(4) {
  grid-column: 2 / span 2;
}
.usp-row:nth-child(5) {
  grid-column: 4 / span 2;
}
.usp-row::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 6px;
  background: color-mix(in srgb, var(--usp-color), white 25%);
}
.usp-row.alt {
  background: rgba(255,255,255,0.94);
  border-color: rgba(46,138,217,0.24);
}
.usp-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(26,58,110,0.20);
}
.usp-num {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  background: transparent;
  color: var(--usp-color);
  border: 0;
  padding: 0;
  text-align: center;
}
.usp-num .n-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  opacity: 0.9;
}
.usp-num .n-big {
  font-family: var(--font-num);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--usp-color);
  border-radius: 8px;
  padding: 6px 12px;
  box-shadow: 0 3px 0 color-mix(in srgb, var(--usp-color), black 20%);
}
.usp-num .n-icon {
  display: none;
}
.usp-content {
  padding: 0;
}
.usp-content h3 {
  font-size: clamp(22px, 2vw, 28px);
  color: #050505;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.35;
}
.usp-content h3 .em {
  color: var(--usp-color);
  background: linear-gradient(transparent 60%, #FFF15A 60%);
  padding: 0 4px;
}
.usp-content p {
  color: #071120;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 800;
}
.usp-tags {
  margin-top: 12px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.usp-tag {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--usp-color);
  color: var(--usp-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}
.usp-row.alt .usp-tag { background: rgba(255,255,255,0.88); }
.usp-blue { --usp-color: #0759AF; --usp-icon-x: 0; }
.usp-green { --usp-color: #2D7F27; --usp-icon-x: -112px; }
.usp-orange { --usp-color: #E76616; --usp-icon-x: -224px; }
.usp-teal { --usp-color: #119A9A; --usp-icon-x: -336px; }
.usp-purple { --usp-color: #6742A2; --usp-icon-x: -448px; }
.usp-section .usp-cta-wrap {
  margin-top: 26px;
}
.usp-section .usp-cta-btn {
  min-width: 0;
  width: min(100%, 720px);
  min-height: 74px;
  border-radius: 16px;
  background: linear-gradient(180deg, #20B65E 0%, #0B8F3C 100%);
  box-shadow: 0 8px 18px rgba(8,137,58,0.28);
  border: 2px solid rgba(255,255,255,0.9);
  font-size: clamp(26px, 3.6vw, 44px);
  letter-spacing: 0.03em;
  position: relative;
}
.usp-section .usp-cta-btn::after {
  content: "›";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #078C3B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.14);
}
.usp-section .cta-note {
  display: table;
  margin: -14px auto 0;
  padding: 4px 42px;
  border-radius: 999px;
  background: #fff;
  color: #0B8F3C;
  font-size: 18px;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

/* ===========================
   募集業種セクション
   =========================== */
.industry-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(232,247,255,0.88) 100%),
    url("../images/fv_bg.png") center / cover no-repeat;
}
.industry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(34deg, rgba(255,255,255,0.42) 0 16%, transparent 16% 100%),
    linear-gradient(145deg, transparent 0 58%, rgba(255,255,255,0.52) 58% 72%, transparent 72% 100%),
    linear-gradient(118deg, transparent 0 21%, rgba(0,132,196,0.07) 21% 22%, transparent 22% 100%);
}
.industry-section .container {
  position: relative;
  z-index: 1;
}
.industry-section .section-title {
  color: #050505;
  font-size: clamp(34px, 4.8vw, 56px);
  text-shadow: 0 2px 0 rgba(255,255,255,0.78);
}
.industry-section .section-title::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 48px;
  margin: 0 24px 4px 0;
  background:
    linear-gradient(58deg, transparent 0 44%, #2E7CD6 44% 56%, transparent 56% 100%),
    linear-gradient(72deg, transparent 0 43%, #2E7CD6 43% 56%, transparent 56% 100%);
  transform: rotate(-16deg);
  vertical-align: middle;
}
.industry-section .section-title::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 48px;
  margin: 0 0 4px 24px;
  background:
    linear-gradient(122deg, transparent 0 44%, #2E7CD6 44% 56%, transparent 56% 100%),
    linear-gradient(108deg, transparent 0 43%, #2E7CD6 43% 56%, transparent 56% 100%);
  transform: rotate(16deg);
  vertical-align: middle;
}
.industry-section .section-title .accent {
  color: #0759AF;
  background: none;
  padding: 0 4px;
}
.industry-section .section-subtitle {
  display: block;
  width: min(100%, 900px);
  margin: 14px auto 22px;
  padding: 18px 18px 0;
  box-sizing: border-box;
  border-top: 3px solid #2E8AD9;
  color: #071120;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
  position: relative;
}
.industry-section .section-subtitle::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 22px;
  height: 22px;
  border-right: 3px solid #2E8AD9;
  border-bottom: 3px solid #2E8AD9;
  background: rgba(245,251,255,0.9);
  transform: translate(-50%, -50%) rotate(45deg);
}
.industry-intro {
  text-align: center;
  color: #071120;
  font-size: 17px;
  max-width: 1080px;
  margin: 0 auto 28px;
  line-height: 1.8;
  font-weight: 800;
}
.industry-intro strong {
  color: #0759AF;
  background: linear-gradient(transparent 60%, #FFF15A 60%);
  padding: 0 4px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 20px;
}
.industry-card {
  --industry-color: #9DCAFA;
  --industry-x: 0%;
  --industry-y: 0%;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(46,138,217,0.20);
  border-radius: 14px;
  padding: 12px 16px 20px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(26,58,110,0.16);
}
.industry-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 8px;
  background: var(--industry-color);
  opacity: 1;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(26,58,110,0.20);
  border-color: rgba(46,138,217,0.36);
}
.industry-icon {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto 12px;
  background-image: url("../images/industry-services.png");
  background-size: 400% 200%;
  background-position: var(--industry-x) var(--industry-y);
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}
.industry-name {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  color: #0759AF;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.industry-desc {
  font-size: 17px;
  color: #050505;
  line-height: 1.6;
  font-weight: 800;
}
.industry-more {
  grid-column: 1 / -1;
  text-align: center;
  color: #071120;
  font-size: 17px;
  margin-top: 8px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.90);
  border-radius: 10px;
  border: 2px solid #2E8AD9;
  font-weight: 900;
}
.industry-more strong {
  color: #0759AF;
  background: linear-gradient(transparent 60%, #FFF15A 60%);
  padding: 0 3px;
}
.industry-aircon { --industry-color: #9DCAFA; --industry-x: 0%; --industry-y: 0%; }
.industry-plumbing { --industry-color: #84DDE0; --industry-x: 33.333%; --industry-y: 0%; }
.industry-cleaning { --industry-color: #FFE08A; --industry-x: 66.666%; --industry-y: 0%; }
.industry-junk { --industry-color: #CFA4F2; --industry-x: 100%; --industry-y: 0%; }
.industry-garden { --industry-color: #B7E19C; --industry-x: 0%; --industry-y: 100%; }
.industry-pest { --industry-color: #FFBC91; --industry-x: 33.333%; --industry-y: 100%; }
.industry-key { --industry-color: #9DCAFA; --industry-x: 66.666%; --industry-y: 100%; }
.industry-glass { --industry-color: #84DDE0; --industry-x: 100%; --industry-y: 100%; }

/* ===========================
   共通：セクションヘッダー（Case / Flow / Pricing / FAQ）
   =========================== */
.case-section,
.flow-section,
.pricing-section,
.faq-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(232,247,255,0.88) 100%),
    url("../images/fv_bg.png") center / cover no-repeat;
}
.case-section::before,
.flow-section::before,
.pricing-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(34deg, rgba(255,255,255,0.42) 0 16%, transparent 16% 100%),
    linear-gradient(145deg, transparent 0 58%, rgba(255,255,255,0.52) 58% 72%, transparent 72% 100%),
    linear-gradient(118deg, transparent 0 21%, rgba(0,132,196,0.07) 21% 22%, transparent 22% 100%);
}
.case-section::after {
  content: "";
  position: absolute;
  right: -170px;
  top: 120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,126,191,0.12) 0%, rgba(0,126,191,0) 70%);
  pointer-events: none;
}
.flow-section::after {
  content: "";
  position: absolute;
  left: -190px;
  bottom: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,126,191,0.12) 0%, rgba(0,126,191,0) 70%);
  pointer-events: none;
}
.pricing-section::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,126,191,0.10) 0%, rgba(0,126,191,0) 70%);
  pointer-events: none;
}
.faq-section::after {
  content: "";
  position: absolute;
  left: -160px;
  top: 80px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,126,191,0.10) 0%, rgba(0,126,191,0) 70%);
  pointer-events: none;
}
.case-section .container,
.flow-section .container,
.pricing-section .container,
.faq-section .container {
  position: relative;
  z-index: 1;
}
.case-section .section-title,
.flow-section .section-title,
.pricing-section .section-title,
.faq-section .section-title {
  color: #050505;
  font-size: clamp(34px, 4.8vw, 56px);
  text-shadow: 0 2px 0 rgba(255,255,255,0.78);
}
.case-section .section-title::before,
.flow-section .section-title::before,
.pricing-section .section-title::before,
.faq-section .section-title::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 48px;
  margin: 0 24px 4px 0;
  background:
    linear-gradient(58deg, transparent 0 44%, #2E7CD6 44% 56%, transparent 56% 100%),
    linear-gradient(72deg, transparent 0 43%, #2E7CD6 43% 56%, transparent 56% 100%);
  transform: rotate(-16deg);
  vertical-align: middle;
}
.case-section .section-title::after,
.flow-section .section-title::after,
.pricing-section .section-title::after,
.faq-section .section-title::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 48px;
  margin: 0 0 4px 24px;
  background:
    linear-gradient(122deg, transparent 0 44%, #2E7CD6 44% 56%, transparent 56% 100%),
    linear-gradient(108deg, transparent 0 43%, #2E7CD6 43% 56%, transparent 56% 100%);
  transform: rotate(16deg);
  vertical-align: middle;
}
.case-section .section-title .accent,
.flow-section .section-title .accent,
.pricing-section .section-title .accent,
.faq-section .section-title .accent {
  color: #0759AF;
  background: none;
  padding: 0 4px;
}
.case-section .section-subtitle,
.flow-section .section-subtitle,
.pricing-section .section-subtitle,
.faq-section .section-subtitle {
  display: block;
  width: min(100%, 900px);
  margin: 14px auto 34px;
  padding: 18px 18px 0;
  box-sizing: border-box;
  border-top: 3px solid #2E8AD9;
  background: transparent;
  color: #071120;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  position: relative;
}
.case-section .section-subtitle::before,
.flow-section .section-subtitle::before,
.pricing-section .section-subtitle::before,
.faq-section .section-subtitle::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 22px;
  height: 22px;
  border-right: 3px solid #2E8AD9;
  border-bottom: 3px solid #2E8AD9;
  background: rgba(245,251,255,0.9);
  transform: translate(-50%, -50%) rotate(45deg);
}
.faq-section .section-label {
  display: block;
  text-align: center;
  color: #0759AF;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.25em;
  margin-bottom: 6px;
}

/* ===========================
   事例セクション
   =========================== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  --case-color: #0759AF;
  background: rgba(255,255,255,0.94);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(26,58,110,0.16);
  border: 1px solid rgba(46,138,217,0.24);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.case-card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 8px;
  background: var(--case-color);
}
.case-card:nth-child(1) { --case-color: #0759AF; }
.case-card:nth-child(2) { --case-color: #2D7F27; }
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(26,58,110,0.20);
}
.case-head {
  background: transparent;
  padding: 28px 28px 20px;
  border-bottom: 2px dashed #A9AEB6;
}
.case-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.case-meta .meta-chip {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--case-color);
  color: var(--case-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}
.case-bignum {
  font-family: var(--font-num);
  font-size: 72px;
  font-weight: 900;
  color: var(--case-color);
  line-height: 1;
  letter-spacing: -0.02em;
}
.case-bignum .unit {
  font-size: 28px;
  color: #050505;
  margin-left: 4px;
  font-weight: 900;
}
.case-bignum.alt {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  color: #050505;
  line-height: 1.3;
  margin-bottom: 4px;
}
.case-bignum-value {
  display: inline-block;
  font-size: 72px;
  color: var(--case-color);
  line-height: 1;
}
.case-title {
  font-size: clamp(20px, 2vw, 26px);
  color: #050505;
  font-weight: 900;
  margin: 10px 0 6px;
  line-height: 1.4;
}
.case-title .em {
  color: var(--case-color);
  background: linear-gradient(transparent 60%, #FFF15A 60%);
  padding: 0 4px;
}
.case-subtitle {
  color: #071120;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}
.case-body {
  padding: 24px 28px 32px;
}
.case-quote {
  background: rgba(232,247,255,0.55);
  border-left: 4px solid var(--case-color);
  padding: 16px 18px;
  border-radius: 0 10px 10px 0;
  color: #071120;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 800;
  font-style: normal;
  margin-bottom: 18px;
}
.case-quote::before {
  content: "“";
  color: var(--case-color);
  font-size: 28px;
  font-weight: 900;
  line-height: 0;
  margin-right: 4px;
}
.case-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}
.case-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--case-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(26,58,110,0.18);
  flex-shrink: 0;
}
.case-pname {
  font-weight: 900;
  color: #0759AF;
  font-size: 14px;
}
.case-pcompany {
  color: #071120;
  font-size: 13px;
  font-weight: 800;
}

/* ===========================
   ご利用の流れ
   =========================== */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.flow-step {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(46,138,217,0.24);
  border-radius: 14px;
  padding: 22px 16px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 24px rgba(26,58,110,0.14);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.flow-step::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 6px;
  background: var(--flow-color, #0759AF);
}
.flow-step:nth-child(1) { --flow-color: #0759AF; }
.flow-step:nth-child(2) { --flow-color: #2D7F27; }
.flow-step:nth-child(3) { --flow-color: #E76616; }
.flow-step:nth-child(4) { --flow-color: #119A9A; }
.flow-step:nth-child(5) { --flow-color: #6742A2; }
.flow-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(26,58,110,0.18);
}
.flow-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--flow-color, #0759AF);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: var(--font-num);
  font-size: 11px;
  color: var(--flow-color, #0759AF);
  letter-spacing: 0.18em;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1;
  box-shadow: 0 2px 0 color-mix(in srgb, var(--flow-color, #0759AF), white 70%);
}
.flow-num .flow-num-big {
  display: inline-block;
  font-size: 28px;
  color: var(--flow-color, #0759AF);
  background: transparent;
  line-height: 1;
  margin-top: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  letter-spacing: 0.02em;
}
.flow-icon {
  width: 52px;
  height: 52px;
  margin: 12px auto;
  background: rgba(232,247,255,0.8);
  border: 2px solid rgba(46,138,217,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--flow-color, #0759AF);
  font-size: 24px;
  line-height: 1;
}
.flow-title {
  font-size: clamp(15px, 1.4vw, 17px);
  color: #050505;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.35;
}
.flow-desc {
  color: #071120;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 800;
  text-align: left;
}

.flow-step:nth-child(3) .flow-icon::before {
  content: "";
  display: block;
  width: 20px;
  height: 24px;
  border: 3px solid var(--flow-color, #E76616);
  border-radius: 3px;
  box-shadow: inset 0 -8px 0 rgba(231,102,22,0.15);
}

/* ===========================
   料金セクション
   =========================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.price-card {
  --price-color: #0759AF;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(46,138,217,0.24);
  border-radius: 14px;
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 24px rgba(26,58,110,0.16);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 8px;
  background: var(--price-color);
}
.price-card:nth-child(1) { --price-color: #0759AF; }
.price-card:nth-child(2) { --price-color: #2D7F27; }
.price-card:nth-child(3) { --price-color: #E76616; }
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(26,58,110,0.20);
}
.price-card.highlight {
  border-color: rgba(231,102,22,0.45);
  box-shadow: 0 14px 28px rgba(231,102,22,0.18);
}
.price-card .price-label {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--price-color);
  font-weight: 900;
  margin-bottom: 12px;
}
.price-card .price-big {
  font-family: var(--font-num);
  font-size: 80px;
  font-weight: 900;
  color: var(--price-color);
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.price-amount .price-big {
  margin-bottom: 0;
}
.price-amount .price-unit {
  font-size: 28px;
  color: var(--price-color);
  font-weight: 900;
  margin-bottom: 0;
}
.price-card .price-big-text {
  font-size: clamp(36px, 4vw, 48px);
  padding-top: 14px;
  font-family: var(--font-jp);
  letter-spacing: 0.04em;
}
.price-card.highlight .price-big { color: #E76616; }
.price-card .price-unit {
  font-size: 16px;
  color: #071120;
  font-weight: 800;
  margin-bottom: 12px;
}
.price-card .price-note {
  font-size: 14px;
  color: #071120;
  font-weight: 800;
  line-height: 1.6;
}
.price-card .ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  left: auto;
  transform: rotate(32deg);
  background: #E76616;
  color: #fff;
  padding: 6px 40px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(231,102,22,0.25);
}
.price-note-block {
  background: rgba(255,255,255,0.90);
  border: 2px solid #2E8AD9;
  border-radius: 10px;
  padding: 18px 24px;
  color: #071120;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  line-height: 1.85;
  box-shadow: 0 10px 22px rgba(26,58,110,0.12);
}
.price-note-block strong {
  color: #0759AF;
}

/* ===========================
   FAQ
   =========================== */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(46,138,217,0.24);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(26,58,110,0.10);
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 12px 26px rgba(26,58,110,0.14);
}
.faq-item.open {
  border-color: rgba(46,138,217,0.40);
  box-shadow: 0 12px 28px rgba(26,58,110,0.16);
}
.faq-q {
  padding: 20px 24px;
  font-weight: 900;
  color: #050505;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1.5;
}
.faq-q:hover { background: rgba(232,247,255,0.55); }
.faq-q .q-mark {
  background: #0759AF;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 3px 0 #054A8F;
}
.faq-q .q-toggle {
  margin-left: auto;
  color: #2E7CD6;
  font-size: 24px;
  font-weight: 900;
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .q-toggle { transform: rotate(45deg); color: #E76616; }
.faq-a {
  padding: 0 24px 22px 70px;
  color: #071120;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 800;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-a .a-mark {
  color: #E76616;
  font-family: var(--font-num);
  font-weight: 900;
  margin-right: 6px;
}

/* ===========================
   最終CTA
   =========================== */
.final-cta {
  background:
    linear-gradient(135deg, rgba(7,89,175,0.96) 0%, rgba(15,35,71,0.98) 100%),
    url("../images/fv_bg.png") center / cover no-repeat;
  color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(34deg, rgba(255,255,255,0.06) 0 16%, transparent 16% 100%),
    linear-gradient(145deg, transparent 0 58%, rgba(255,255,255,0.08) 58% 72%, transparent 72% 100%);
}
.final-cta::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255,241,90,0.12) 0%, transparent 62%);
  border-radius: 50%;
  bottom: -220px;
  right: -120px;
  pointer-events: none;
}
.final-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.final-cta .final-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 44px;
  line-height: 1.85;
  font-weight: 800;
}
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}
.contact-block {
  text-align: center;
}
.contact-block + .contact-block {
  border-left: 1px solid rgba(255,255,255,0.22);
}
.contact-label {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #FFF15A;
  font-weight: 900;
  margin-bottom: 12px;
}
.contact-tel {
  font-family: var(--font-num);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.contact-tel .tel-icon {
  background: #0B8F3C;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.contact-hours {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  font-weight: 800;
}
.contact-hours-spaced {
  margin-top: 14px;
}
.contact-form-btn {
  margin-top: 6px;
  min-width: 0;
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  background: linear-gradient(180deg, #20B65E 0%, #0B8F3C 100%);
  box-shadow: 0 8px 18px rgba(8,137,58,0.32);
  border: 2px solid rgba(255,255,255,0.85);
}
.contact-form-btn:hover {
  background: linear-gradient(180deg, #1CA855 0%, #087A33 100%);
}
.final-trust {
  display: flex;
  gap: 16px 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  font-weight: 800;
}
.final-trust span {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 16px;
}
.final-trust span::before {
  content: "✓";
  color: #FFF15A;
  margin-right: 6px;
  font-weight: 900;
}

/* ===========================
   フッター
   =========================== */
footer {
  background: #050505;
  color: rgba(255,255,255,0.72);
  padding: 40px 0 80px;
  font-size: 13px;
  border-top: 4px solid #2E8AD9;
}
footer .footer-inner {
  text-align: center;
}
footer .footer-logo {
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
}
footer .footer-links {
  margin: 18px 0;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
footer .footer-links a:hover { color: #fff; text-decoration: underline; }
footer .copyright {
  margin-top: 18px;
  font-size: 12px;
  color: #8AA0C7;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1100px) {
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
}

@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .hero { padding: 86px 0 0; }
  .hero-inner { padding: 0 16px; }
  .hero-fv-wrap { width: min(100%, 980px); }
  .hero-btns {
    left: 1.2%;
    bottom: 4.8%;
    width: 60%;
    gap: 1%;
  }
  .pain-section .section-title { font-size: 34px; }
  .pain-section .section-title::before,
  .pain-section .section-title::after {
    width: 28px;
    height: 34px;
    margin-bottom: 2px;
  }
  .pain-section .section-title::before { margin-right: 12px; }
  .pain-section .section-title::after { margin-left: 12px; }
  .pain-section .section-subtitle {
    display: block;
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.7;
  }
  .pain-grid { grid-template-columns: 1fr; gap: 18px; }
  .pain-card { padding: 26px 22px 28px; }
  .pain-icon { margin-top: 0; }
  .usp-section .section-title { font-size: 34px; }
  .usp-section .section-title::before,
  .usp-section .section-title::after {
    width: 28px;
    height: 34px;
    margin-bottom: 2px;
  }
  .usp-section .section-title::before { margin-right: 12px; }
  .usp-section .section-title::after { margin-left: 12px; }
  .usp-section .section-subtitle {
    display: block;
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.7;
  }
  .usp-list { grid-template-columns: 1fr; gap: 18px; }
  .usp-row,
  .usp-row:nth-child(4),
  .usp-row:nth-child(5) {
    grid-column: auto;
    padding: 18px 16px 18px;
  }
  .usp-num .n-big { font-size: 26px; }
  .usp-section .usp-cta-btn {
    width: min(100%, 520px);
    min-height: 62px;
    font-size: 24px;
  }
  .usp-section .usp-cta-btn::after {
    right: 18px;
    width: 38px;
    height: 38px;
    font-size: 34px;
  }
  .usp-section .cta-note {
    font-size: 14px;
    padding-inline: 28px;
  }
  .industry-section .section-title { font-size: 34px; }
  .industry-section .section-title::before,
  .industry-section .section-title::after {
    width: 28px;
    height: 34px;
    margin-bottom: 2px;
  }
  .industry-section .section-title::before { margin-right: 12px; }
  .industry-section .section-title::after { margin-left: 12px; }
  .industry-section .section-subtitle {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.7;
  }
  .industry-intro {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .industry-card { padding: 10px 12px 18px; }
  .industry-name { font-size: 22px; }
  .industry-desc { font-size: 15px; }
  .case-section .section-title,
  .flow-section .section-title,
  .pricing-section .section-title,
  .faq-section .section-title { font-size: 34px; }
  .case-section .section-title::before,
  .case-section .section-title::after,
  .flow-section .section-title::before,
  .flow-section .section-title::after,
  .pricing-section .section-title::before,
  .pricing-section .section-title::after,
  .faq-section .section-title::before,
  .faq-section .section-title::after {
    width: 28px;
    height: 34px;
    margin-bottom: 2px;
  }
  .case-section .section-title::before,
  .flow-section .section-title::before,
  .pricing-section .section-title::before,
  .faq-section .section-title::before { margin-right: 12px; }
  .case-section .section-title::after,
  .flow-section .section-title::after,
  .pricing-section .section-title::after,
  .faq-section .section-title::after { margin-left: 12px; }
  .case-section .section-subtitle,
  .flow-section .section-subtitle,
  .pricing-section .section-subtitle,
  .faq-section .section-subtitle {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.7;
  }
  .case-grid { grid-template-columns: 1fr; gap: 20px; }
  .case-head { padding: 24px 22px 18px; }
  .case-body { padding: 20px 22px 28px; }
  .case-bignum { font-size: 56px; }
  .case-bignum-value { font-size: 56px; }
  .flow-grid { grid-template-columns: 1fr; gap: 28px; }
  .flow-step { padding: 22px 20px 26px; }
  .flow-desc { text-align: center; }
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card .price-big { font-size: 72px; }
  .price-amount .price-unit { font-size: 26px; }
  .faq-q { font-size: 15px; padding: 18px 20px; }
  .faq-a { padding: 0 20px 20px 20px; }
  .contact-box { grid-template-columns: 1fr; padding: 28px 20px; gap: 28px; }
  .contact-block + .contact-block { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 28px; }
  .site-header {
    height: auto;
    min-height: 56px;
    padding: 8px 0;
  }
  .header-inner { gap: 10px; }
  .logo { font-size: 15px; }
  .header-tools { gap: 6px; }
  .header-action {
    padding: 8px 10px;
    font-size: 12px;
  }
  .header-action-ico { font-size: 14px; }
  .header-action-text--full { display: none; }
  .header-action-text--short { display: inline; }
  .cta-btn { min-width: auto; width: 100%; padding: 18px 24px; font-size: 16px; }
  .pain-arrow { margin-top: 36px; }
  .pain-arrow .pain-arrow-text {
    width: min(100%, 520px);
    padding: 14px 36px;
    font-size: 20px;
    white-space: normal;
  }
  .pain-arrow .pain-arrow-text::before { left: 12px; font-size: 18px; }
  .pain-arrow .pain-arrow-text::after { right: 12px; font-size: 18px; }
}

@media (max-width: 768px) {
  .hero {
    padding: 82px 0 24px;
  }
  .hero-inner {
    padding: 0 16px;
    align-items: center;
  }
  .hero-fv-wrap {
    width: min(100%, 480px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-fv {
    filter: none;
  }
  .hero-btns {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-btn {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .hero-fv-wrap { width: min(100%, 480px); }
  .hero-btns { gap: 8px; }
  .pain-section { background-position: center top; }
  .pain-section .section-title { font-size: 28px; }
  .pain-section .section-title::before,
  .pain-section .section-title::after {
    display: none;
  }
  .pain-section .section-title .accent {
    display: table;
    margin: 2px auto 0;
  }
  .pain-section .section-subtitle {
    text-align: center;
    font-size: 15px;
    padding-inline: 0;
  }
  .pain-card h3 { font-size: 25px; }
  .pain-card p { font-size: 16px; }
  .pain-icon {
    width: 138px;
    height: 104px;
    background-size: 414px 138px;
  }
  .usp-section .section-title { font-size: 26px; }
  .usp-section .section-title::before,
  .usp-section .section-title::after {
    display: none;
  }
  .usp-section .section-title .accent {
    display: table;
    margin: 2px auto 0;
  }
  .usp-section .section-subtitle {
    text-align: center;
    font-size: 15px;
    padding-inline: 0;
  }
  .usp-row,
  .usp-row:nth-child(4),
  .usp-row:nth-child(5) {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .usp-num { flex-direction: row; justify-content: flex-start; }
  .usp-content h3 { font-size: 21px; }
  .usp-content p { font-size: 14px; }
  .usp-section .usp-cta-btn {
    min-height: 56px;
    padding: 14px 54px 14px 18px;
    font-size: 20px;
  }
  .usp-section .usp-cta-btn::after {
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 30px;
  }
  .industry-section .section-title { font-size: 28px; }
  .industry-section .section-title::before,
  .industry-section .section-title::after {
    display: none;
  }
  .industry-section .section-title .accent {
    display: table;
    margin: 2px auto 0;
  }
  .industry-section .section-subtitle {
    text-align: center;
    font-size: 15px;
    padding-inline: 0;
  }
  .industry-intro {
    font-size: 14px;
    text-align: left;
  }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-name { font-size: 23px; }
  .industry-more { font-size: 14px; }
  .case-section .section-title,
  .flow-section .section-title,
  .pricing-section .section-title,
  .faq-section .section-title { font-size: 28px; }
  .case-section .section-title::before,
  .case-section .section-title::after,
  .flow-section .section-title::before,
  .flow-section .section-title::after,
  .pricing-section .section-title::before,
  .pricing-section .section-title::after,
  .faq-section .section-title::before,
  .faq-section .section-title::after {
    display: none;
  }
  .case-section .section-title .accent,
  .flow-section .section-title .accent,
  .pricing-section .section-title .accent,
  .faq-section .section-title .accent {
    display: table;
    margin: 2px auto 0;
  }
  .case-section .section-subtitle,
  .flow-section .section-subtitle,
  .pricing-section .section-subtitle,
  .faq-section .section-subtitle {
    text-align: center;
    font-size: 15px;
    padding-inline: 0;
  }
  .case-bignum { font-size: 44px; }
  .case-bignum-value { font-size: 44px; }
  .case-title { font-size: 20px; }
  .case-quote { font-size: 14px; }
  .flow-title { font-size: 17px; }
  .price-card .price-big { font-size: 64px; }
  .price-amount .price-unit { font-size: 24px; }
  .price-card .price-big-text { font-size: 32px; }
  .price-note-block { font-size: 14px; text-align: left; }
  .final-trust span { font-size: 12px; padding: 7px 12px; }
}

/* ===========================
   Laravel popup（プライバシーポリシー・会社概要）
   =========================== */
#privacy,
#company,
#popup-privacy,
#popup-company,
.popup-wrap,
.popup-overlay,
.popup-box,
.popup-modal,
[class*="popup-overlay"],
[class*="popup-box"] {
  z-index: 10001 !important;
}
