@charset "UTF-8";

/*
  Theme Name: Will Support v2 LP
  Description: BtoB中小企業向け月額制ホームページサービス ウィルサポ
  Author: Will LLC
  Version: 1.0
*/

/* ============================================
   リセットCSS
   ============================================ */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body { line-height: 1; }

ol, ul { list-style: none; }

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ""; content: none; }

table { border-collapse: collapse; border-spacing: 0; }

img { border-style: none; }

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

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input { overflow: visible; }

button, select { text-transform: none; }

* { box-sizing: border-box; }

body.no-scroll { overflow: hidden; }

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

/* ============================================
   カスタムプロパティ
   ============================================ */

:root {
  /* メインティール系 */
  --wsv2-primary: #28849c;
  --wsv2-primary-hover: #1e6b80;
  --wsv2-secondary: #7dacaf;
  --wsv2-fv-bg: #81c3cb;
  --wsv2-light-teal: #c9ddde;
  --wsv2-contact-bg: #7ec3cb;
  --wsv2-brand: #5898a2;

  /* イエロー系 */
  --wsv2-accent-yellow: #fbec47;
  --wsv2-accent-yellow-sub: #f9e614;

  /* グレースケール */
  --wsv2-text: #333333;
  --wsv2-border: #CCCCCC;
  --wsv2-bg: #F5F5F5;
  --wsv2-white: #ffffff;

  /* 意味づけ別エイリアス */
  --wsv2-heading: #333333;
  --wsv2-body: #333333;
  --wsv2-subtext: #333333;
  --wsv2-section-alt: #F5F5F5;
  --wsv2-surface: #ffffff;
}

/* ============================================
   共通スタイル
   ============================================ */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.page-wsv2 {
  min-height: 100vh;
  background: #F5F5F5;
  color: var(--wsv2-body);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.wsv2-fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   FABスタイル
   ============================================ */

/* ハンバーガーボタン（デフォルトはPC非表示） */
.wsv2-fab-menu {
  display: inline-flex;
  position: fixed;
  top: 5px;
  right: 20px;
  z-index: 1000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wsv2-primary);
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

/* スクロール後に表示 */
.has-fab-menu .wsv2-fab-menu {
  opacity: 1;
  pointer-events: auto;
}

.wsv2-fab-menu:hover {
  background: var(--wsv2-primary-hover);
}

/* ハンバーガーライン */
.wsv2-fab-menu__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wsv2-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 開いた状態（X変形） */
.fab-menu-open .wsv2-fab-menu__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fab-menu-open .wsv2-fab-menu__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.fab-menu-open .wsv2-fab-menu__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* オーバーレイ */
.wsv2-fab-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fab-menu-open .wsv2-fab-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* FABナビ */
.wsv2-fab-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  z-index: 950;
  background: var(--wsv2-white);
  border-left: 1px solid var(--wsv2-border);
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}

.fab-menu-open .wsv2-fab-nav {
  transform: translateX(0);
}

/* ============================================
   Section Styles（各セクションCSSは別プロンプトで追加）
   ============================================ */

/* ============================================
   header Section
   ============================================ */

.wsv2-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 245, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--wsv2-border);
  transition: transform 0.3s ease;
}

.has-fab-menu .wsv2-header {
  transform: translateY(-100%);
}

.wsv2-header .container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
}

.wsv2-header__brand {
  flex-shrink: 0;
}

.wsv2-header__logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: var(--wsv2-brand);
  letter-spacing: 0.05em;
  line-height: 1;
}

.wsv2-header__logo:focus-visible {
  outline: 2px solid var(--wsv2-primary);
  outline-offset: 4px;
  border-radius: 2px;
}

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

.wsv2-header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wsv2-header__link {
  display: inline-block;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--wsv2-text);
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.wsv2-header__link:hover {
  color: var(--wsv2-primary);
  background: rgba(40, 132, 156, 0.06);
}

.wsv2-header__link:focus-visible {
  outline: 2px solid var(--wsv2-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* CTAボタン（デフォルト：黒背景＋白文字 → hover：白背景＋黒文字） */
.wsv2-header__link--cta {
  padding: 17px 55px;
  margin-top: 7px;
  margin-bottom: 7px;
  background: var(--wsv2-text);
  color: var(--wsv2-white);
  border: 1px solid var(--wsv2-text);
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

/* 無料相談（後ろから2番目）：通常メニューと30px間隔 */
.wsv2-header__nav-list .wsv2-header__nav-item:nth-last-child(2) {
  margin-left: 30px;
}

/* 資料請求（最後）：無料相談と15px間隔 */
.wsv2-header__nav-list .wsv2-header__nav-item:last-child {
  margin-left: 15px;
}

.wsv2-header__link--cta:hover {
  background: var(--wsv2-white);
  color: var(--wsv2-text);
}

.wsv2-header__link--cta:focus-visible {
  outline: 2px solid var(--wsv2-text);
  outline-offset: 2px;
}

/* FABナビ ロゴ */
.wsv2-fab-nav__logo {
  margin-bottom: 32px;
}

.wsv2-fab-nav__logo a {
  display: inline-block;
}

.wsv2-fab-nav__logo img {
  display: block;
  width: 140px;
  height: auto;
}

/* FABナビ内リンク */
.wsv2-fab-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wsv2-fab-nav__link {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--wsv2-text);
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.wsv2-fab-nav__link:hover {
  background: rgba(40, 132, 156, 0.07);
  color: var(--wsv2-primary);
}

.wsv2-fab-nav__link:focus-visible {
  outline: 2px solid var(--wsv2-primary);
  outline-offset: 0;
  border-radius: 8px;
}

/* FABナビCTAリンク */
.wsv2-fab-nav__link--cta {
  display: block;
  margin-top: 12px;
  padding: 16px;
  text-align: center;
  background: var(--wsv2-text);
  color: var(--wsv2-white);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease;
}

.wsv2-fab-nav__link--cta:hover {
  background: var(--wsv2-primary);
  color: var(--wsv2-white);
}

.wsv2-fab-nav__link--cta:focus-visible {
  outline: 2px solid var(--wsv2-primary);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ============================================
   fv Section
   ============================================ */

.wsv2-fv {
  background: var(--wsv2-fv-bg);
  position: relative;
  overflow: hidden;
}

.wsv2-fv .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-fv__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 620px);
  gap: 40px;
  align-items: center;
  padding: 70px 0 0;
}

.wsv2-fv__label {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: var(--wsv2-white);
  letter-spacing: 5px;
  text-align: center;
  padding-top: 48px;
  margin-bottom: 0;
}

.wsv2-fv__label-text {
  background-image: linear-gradient(#f9e615, #f9e615);
  background-size: 100% 17px;
  background-position: 0 calc(100% + 3px);
  background-repeat: no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wsv2-fv__label-em {
  font-size: 40px;
  font-weight: 700;
}

.wsv2-fv__label-br,
.wsv2-fv__label-br-sp {
  display: none;
}

.wsv2-fv__sublabel {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: var(--wsv2-white);
  letter-spacing: 0.05em;
  margin-top: -3px;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.wsv2-fv__title {
  margin-top: 0;
  margin-bottom: 36px;
}

.wsv2-fv__title img {
  display: block;
  max-width: 95%;
  height: auto;
}

.wsv2-fv__title-em {
  display: inline;
}

.wsv2-fv__points {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  margin-bottom: 28px;
}

.wsv2-fv__point {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--wsv2-accent-yellow-sub);
  color: var(--wsv2-text);
  font-size: 20px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  line-height: 1.5;
  flex: 1;
}

.wsv2-fv__point::before {
  display: none;
}

.wsv2-fv__subcopy {
  font-size: 15px;
  font-weight: 500;
  color: var(--wsv2-white);
  line-height: 1.85;
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.wsv2-fv__cta {
  display: flex;
  justify-content: center;
}

.wsv2-fv__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 72px;
  background: var(--wsv2-text);
  color: var(--wsv2-white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
  border: 1px solid var(--wsv2-text);
  transition: background 0.2s ease, color 0.2s ease;
}

.wsv2-fv__cta-btn:hover {
  background: var(--wsv2-white);
  color: var(--wsv2-text);
}

.wsv2-fv__cta-btn:focus-visible {
  outline: 2px solid var(--wsv2-white);
  outline-offset: 3px;
}

.wsv2-fv__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wsv2-fv__visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  position: relative;
  top: -20px;
  right: 20px;
  transform: scale(1.10);
  transform-origin: center center;
}

.wsv2-fv__catchcopy {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--wsv2-white);
  letter-spacing: 3px;
  margin-top: 50px;
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* ============================================
   issue Section
   ============================================ */

.wsv2-issue {
  background: var(--wsv2-accent-yellow);
  padding: 110px 0;
}

.wsv2-issue .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-issue__section-head {
  text-align: center;
  margin-bottom: 64px;
}

.wsv2-issue__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: var(--wsv2-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wsv2-issue__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.65;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.wsv2-issue__lead {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.95;
  max-width: 680px;
  margin: 0 auto;
  background: #28849c;
  padding: 12px 24px;
  border-radius: 4px;
}

.wsv2-issue__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.wsv2-issue__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease;
}

.wsv2-issue__item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

/* 05 は運用カテゴリの直後なので常に1列目に単独表示 */
.wsv2-issue__item:last-child {
  grid-column: auto;
}

.wsv2-issue__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #28849c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: center;
  line-height: 1;
}

/* カテゴリ見出し行 */
.wsv2-issue__category {
  list-style: none;
  grid-column: 1 / -1;
  margin-top: 24px;
}

.wsv2-issue__category:first-child {
  margin-top: 0;
}

.wsv2-issue__category-label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #28849c;
  background: transparent;
  padding: 0 0 8px;
  border-bottom: 1px solid #28849c;
  margin-bottom: 4px;
}

.wsv2-issue__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--wsv2-text);
  line-height: 1.7;
}

/* ============================================
   concept Section
   ============================================ */

.wsv2-concept {
  background: var(--wsv2-bg);
  padding: 0 0 110px;
  border-top: 1px solid var(--wsv2-border);
  overflow: hidden;
}

/* Ticker */
@keyframes wsv2-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.wsv2-concept__ticker {
  background: transparent;
  padding: 14px 0;
  overflow: hidden;
  margin-bottom: 0;
}

.wsv2-concept__ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: wsv2-ticker-scroll 210s linear infinite;
}

.wsv2-concept__ticker-item {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #D4D4D4;
  opacity: 0.2;
  padding-right: 80px;
}

.wsv2-concept .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 40px 0;
}

.wsv2-concept__section-head {
  text-align: center;
  margin-bottom: 72px;
}

.wsv2-concept__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: var(--wsv2-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wsv2-concept__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--wsv2-primary);
  line-height: 1.65;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

/* 「選ばれるツール」イエロー下線装飾 */
.wsv2-concept__title-em {
  position: relative;
  display: inline-block;
}

.wsv2-concept__title-br-sp,
.wsv2-compare__title-br-sp,
.wsv2-cta__title-br-sp,
.wsv2-reason__title-br-sp {
  display: none;
}

.wsv2-cta__title-br-pc {
  display: block;
}

.wsv2-concept__title-em::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 14px;
  background: var(--wsv2-accent-yellow);
  border-radius: 3px;
  z-index: -1;
}

.wsv2-concept__lead {
  font-size: 15px;
  color: var(--wsv2-body);
  line-height: 1.95;
  text-align: left;
  max-width: 760px;
  margin: 0 auto 30px;
}

.wsv2-concept__lead:last-child {
  margin-bottom: 0;
}

/* ファネル図 */
.wsv2-concept__funnel-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 20px;
  align-items: center;
}

.wsv2-concept__funnel-step {
  background: var(--wsv2-white);
  border: 1px solid var(--wsv2-border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  justify-content: center;
}

.wsv2-concept__funnel-step--main {
  background: var(--wsv2-primary);
  border-color: var(--wsv2-primary);
}

.wsv2-concept__funnel-badge {
  display: inline-block;
  background: var(--wsv2-accent-yellow);
  color: var(--wsv2-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 40px;
  white-space: nowrap;
}

.wsv2-concept__funnel-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--wsv2-secondary);
  text-transform: uppercase;
}

.wsv2-concept__funnel-step--main .wsv2-concept__funnel-num {
  color: rgba(255, 255, 255, 0.7);
}

.wsv2-concept__funnel-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.5;
}

.wsv2-concept__funnel-step--main .wsv2-concept__funnel-label {
  color: var(--wsv2-white);
}

.wsv2-concept__funnel-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.wsv2-concept__funnel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.wsv2-concept__funnel-tags li {
  font-size: 12px;
  color: var(--wsv2-subtext);
  background: var(--wsv2-bg);
  border: 1px solid var(--wsv2-border);
  border-radius: 4px;
  padding: 3px 10px;
  line-height: 1.5;
}

/* 矢印（CSSボーダートライアングル）：PC＝右向き */
.wsv2-concept__funnel-arrow {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--wsv2-secondary);
  justify-self: center;
  flex-shrink: 0;
}

/* ============================================
   about Section
   ============================================ */

.wsv2-feature {
  background: var(--wsv2-light-teal);
  padding: 110px 0;
}

.wsv2-feature .container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 2カラムレイアウト */
.wsv2-feature__layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.wsv2-feature__sidebar {
  position: sticky;
  top: 100px;
}

.wsv2-feature__content {
  min-width: 0;
}

.wsv2-feature__section-head {
  text-align: left;
  margin-bottom: 0;
}

.wsv2-feature__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: var(--wsv2-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wsv2-feature__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.wsv2-feature__lead {
  font-size: 15px;
  color: var(--wsv2-body);
  line-height: 1.95;
}

.wsv2-feature__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.wsv2-feature__card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.wsv2-feature__card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wsv2-primary);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.wsv2-feature__card-icon svg {
  width: 100%;
  height: 100%;
}

.wsv2-feature__card-num {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--wsv2-secondary);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.wsv2-feature__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #28849c;
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.wsv2-feature__card-text {
  font-size: 14px;
  color: var(--wsv2-body);
  line-height: 1.9;
}

.wsv2-feature__card-benefit {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(40, 132, 156, 0.18);
  font-size: 13px;
  font-weight: 600;
  color: var(--wsv2-primary);
  line-height: 1.7;
}

/* ============================================
   who-for Section
   ============================================ */

.wsv2-who-for {
  background: #28849c;
  padding: 110px 0;
}

.wsv2-who-for .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-who-for__section-head {
  text-align: center;
  margin-bottom: 64px;
}

.wsv2-who-for__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wsv2-who-for__title {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.wsv2-who-for__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.wsv2-who-for__item {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 24px 24px 24px 48px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}

.wsv2-who-for__item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* CSS角形チェックマーク（border の右辺＋下辺を45°回転） */
.wsv2-who-for__item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 18px;
  width: 9px;
  height: 16px;
  border-right: 3px solid #28849c;
  border-bottom: 3px solid #28849c;
  transform: rotate(45deg);
}

.wsv2-who-for__item-title {
  font-size: 21px;
  font-weight: 700;
  color: #28849c;
  line-height: 1.6;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-color: #EDDB0E;
  text-decoration-thickness: 6px;
  text-underline-offset: -2px;
  text-decoration-skip-ink: none;
}

.wsv2-who-for__item-text {
  font-size: 16px;
  color: #333333;
  line-height: 1.9;
}

/* ============================================
   compare Section
   ============================================ */

.wsv2-compare {
  background: var(--wsv2-bg);
  padding: 110px 0;
  border-top: 1px solid var(--wsv2-border);
}

.wsv2-compare .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-compare__section-head {
  text-align: center;
  margin-bottom: 64px;
}

.wsv2-compare__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: var(--wsv2-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wsv2-compare__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.65;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.wsv2-compare__lead {
  font-size: 15px;
  color: var(--wsv2-body);
  line-height: 1.95;
  max-width: 600px;
  margin: 0 auto;
}

/* タイプ説明エリア */
.wsv2-compare__types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.wsv2-compare__type {
  background: var(--wsv2-white);
  border: 1px solid var(--wsv2-border);
  border-radius: 8px;
  padding: 28px 32px;
}

.wsv2-compare__type--wsv2 {
  background: #edf5f7;
  border-color: var(--wsv2-primary);
  border-width: 2px;
}

.wsv2-compare__type-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--wsv2-heading);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.wsv2-compare__type--wsv2 .wsv2-compare__type-label {
  color: var(--wsv2-primary);
}

.wsv2-compare__type-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  background: var(--wsv2-primary);
  color: #ffffff;
  border-radius: 3px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.wsv2-compare__type-desc {
  font-size: 14px;
  color: var(--wsv2-body);
  line-height: 1.9;
}

/* テーブルラッパー（SP横スクロール対応） */
.wsv2-compare__table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.wsv2-compare__table {
  width: 100%;
  min-width: 600px;
  table-layout: fixed;
  background: var(--wsv2-white);
}

/* カラム幅（固定レイアウト） */
.wsv2-compare__table thead th:nth-child(1) { width: 28%; }
.wsv2-compare__table thead th:nth-child(2),
.wsv2-compare__table thead th:nth-child(3),
.wsv2-compare__table thead th:nth-child(4) { width: 24%; }

/* ヘッダー行 */
.wsv2-compare__table thead th {
  padding: 28px 24px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  background: var(--wsv2-section-alt);
  color: var(--wsv2-heading);
  border: 1px solid var(--wsv2-border);
  letter-spacing: 0.02em;
}

/* ウィルサポ列：ヘッダー */
.wsv2-compare__table thead th.wsv2-compare__th--wsv2 {
  background: var(--wsv2-primary);
  color: var(--wsv2-white);
  border-top-color: var(--wsv2-border);
  border-bottom-color: rgba(255, 255, 255, 0.4);
  border-left-color: var(--wsv2-border);
  border-right-color: var(--wsv2-border);
}

/* ボディ：行見出しセル（比較項目名） */
.wsv2-compare__table tbody th {
  padding: 28px 24px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  background: var(--wsv2-white);
  color: var(--wsv2-heading);
  border: 1px solid var(--wsv2-border);
  line-height: 1.6;
}

/* ボディ：データセル */
.wsv2-compare__table tbody td {
  padding: 18px 16px;
  font-size: 16px;
  text-align: center;
  color: var(--wsv2-body);
  border: 1px solid var(--wsv2-border);
  background: var(--wsv2-white);
  line-height: 1.6;
}

/* ウィルサポ列：データセル */
.wsv2-compare__table tbody td.wsv2-compare__td--wsv2 {
  background: var(--wsv2-primary);
  color: var(--wsv2-white);
  font-weight: 700;
  border-top-color: rgba(255, 255, 255, 0.4);
  border-bottom-color: rgba(255, 255, 255, 0.4);
  border-left-color: var(--wsv2-border);
  border-right-color: var(--wsv2-border);
}

/* ウィルサポ列の浮き上がり */
.wsv2-compare__th--wsv2,
.wsv2-compare__td--wsv2 {
  position: relative;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.13), inset -2px 0 0 var(--wsv2-primary-hover), inset 2px 0 0 var(--wsv2-primary-hover);
}

/* ゼブラストライプ */
.wsv2-compare__table tbody tr:nth-child(even) td,
.wsv2-compare__table tbody tr:nth-child(even) th {
  background-color: #eaf1f3;
}
.wsv2-compare__table tbody tr:nth-child(even) td.wsv2-compare__td--wsv2 {
  background: var(--wsv2-primary);
}

/* 行ホバー */
.wsv2-compare__table tbody tr {
  transition: background-color 0.2s ease;
}
.wsv2-compare__table tbody tr:hover td,
.wsv2-compare__table tbody tr:hover th {
  background-color: #e8f2f4;
}
.wsv2-compare__table tbody tr:hover td.wsv2-compare__td--wsv2 {
  background: var(--wsv2-primary);
}

/* 初期費用行強調 */
.wsv2-compare__row--highlight td,
.wsv2-compare__row--highlight th {
  padding-top: 29px;
  padding-bottom: 29px;
  background-color: #fffae8;
}
.wsv2-compare__row--highlight td.wsv2-compare__td--wsv2 {
  background: var(--wsv2-primary);
}

/* アイコン（◯△×） */
.wsv2-compare__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6em;
  height: 1.6em;
  margin-right: 0.4em;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85em;
  line-height: 1;
  flex-shrink: 0;
  vertical-align: middle;
}
.wsv2-compare__icon--ok {
  background-color: #ddf0ee;
  color: var(--wsv2-primary);
}
.wsv2-compare__icon--partial {
  background-color: #fff4e0;
  color: #c47f00;
}
.wsv2-compare__icon--ng {
  background-color: #f0f0f0;
  color: #888888;
}
.wsv2-compare__td--wsv2 .wsv2-compare__icon--ok {
  background-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

/* バッジ・ヘッダー表記 */
.wsv2-compare__badge {
  display: inline-block;
  padding: 2px 8px;
  margin-bottom: 6px;
  font-size: 0.65em;
  background-color: #ffffff;
  color: var(--wsv2-primary);
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.wsv2-compare__th-name {
  display: block;
}
.wsv2-compare__th-small {
  font-size: 0.8em;
  font-weight: normal;
  opacity: 0.75;
}

/* 金額強調 */
.wsv2-compare__price {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* セルテキスト */
.wsv2-compare__cell-text {
  vertical-align: middle;
}


/* ============================================
   works Section
   ============================================ */

.wsv2-works {
  background: #c9ddde;
  padding: 110px 0;
}

.wsv2-works .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-works__section-head {
  text-align: center;
  margin-bottom: 56px;
}

.wsv2-works__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: var(--wsv2-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wsv2-works__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.wsv2-works__lead {
  max-width: 650px;
  margin: 31px auto 0;
  text-align: left;
}

.wsv2-works__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.wsv2-works__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 2px solid var(--wsv2-border);
  border-radius: 40px;
  background: var(--wsv2-surface);
  font-size: 15px;
  font-weight: 600;
  color: var(--wsv2-body);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1;
}

.wsv2-works__tab:hover {
  border-color: var(--wsv2-primary);
  color: var(--wsv2-primary);
}

.wsv2-works__tab.is-active {
  background: var(--wsv2-primary);
  border-color: var(--wsv2-primary);
  color: #fff;
}

.wsv2-works__tab:focus-visible {
  outline: 2px solid var(--wsv2-primary);
  outline-offset: 3px;
}

.wsv2-works__tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.wsv2-works__tab.is-active .wsv2-works__tab-badge {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.wsv2-works__tab:not(.is-active) .wsv2-works__tab-badge {
  background: var(--wsv2-border);
  color: var(--wsv2-body);
}

.wsv2-works__panel {
  /* display managed by hidden attribute */
}

.wsv2-works__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 40px;
}

.wsv2-works__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.wsv2-works__card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #c9ddde;
}

.wsv2-works__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}

.wsv2-works__card-link:hover .wsv2-works__card-thumb img {
  transform: scale(1.03);
}

.wsv2-works__card-body {
  padding: 15px 0 0;
}

.wsv2-works__card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--wsv2-heading);
  line-height: 1.5;
  text-align: center;
}

.wsv2-works__card-tag {
  display: none;
}

/* ============================================
   pricing Section
   ============================================ */

.wsv2-pricing {
  background: var(--wsv2-primary);
  padding: 110px 0;
}

.wsv2-pricing .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-pricing__section-head {
  text-align: center;
  margin-bottom: 56px;
}

.wsv2-pricing__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wsv2-pricing__title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.wsv2-pricing__lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
}

.wsv2-pricing__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.wsv2-pricing__card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 32px 16px 28px;
  display: flex;
  flex-direction: column;
}

.wsv2-pricing__card--featured {
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-top: 4px solid var(--wsv2-accent-yellow);
}

.wsv2-pricing__featured-tag {
  position: absolute;
  top: 0;
  right: 20px;
  transform: translateY(-50%);
  background: var(--wsv2-accent-yellow);
  color: var(--wsv2-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.wsv2-pricing__plan-name {
  position: relative;
  font-size: 20px;
  font-weight: 800;
  color: var(--wsv2-heading);
  margin-bottom: 6px;
  padding-bottom: 12px;
  letter-spacing: 0.01em;
}

.wsv2-pricing__plan-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--wsv2-accent-yellow);
  border-radius: 2px;
}

.wsv2-pricing__subcopy {
  font-size: 16px;
  color: var(--wsv2-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.wsv2-pricing__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.wsv2-pricing__price-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--wsv2-body);
  letter-spacing: 0.05em;
}

.wsv2-pricing__price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--wsv2-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.wsv2-pricing__card--featured .wsv2-pricing__price-amount {
  color: var(--wsv2-heading);
}

.wsv2-pricing__price-unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--wsv2-body);
}

.wsv2-pricing__list {
  list-style: none;
  border-top: 1px solid var(--wsv2-border);
  margin-top: auto;
}

.wsv2-pricing__list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--wsv2-border);
  font-size: 16px;
}

.wsv2-pricing__list-key {
  color: var(--wsv2-body);
  font-weight: 500;
  flex-shrink: 0;
}

.wsv2-pricing__list-val {
  color: var(--wsv2-heading);
  font-weight: 600;
  text-align: right;
}

.wsv2-pricing__includes {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 28px 32px;
  width: fit-content;
  margin: 0 auto;
}

.wsv2-pricing__includes-title {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.wsv2-pricing__includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wsv2-pricing__includes-list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.wsv2-pricing__includes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wsv2-accent-yellow);
}

/* ============================================
   reason Section
   ============================================ */

.wsv2-reason {
  background: var(--wsv2-bg);
  padding: 110px 0;
}

.wsv2-reason .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-reason__section-head {
  text-align: center;
  margin-bottom: 64px;
}

.wsv2-reason__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: var(--wsv2-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wsv2-reason__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.wsv2-reason__lead {
  font-size: 16px;
  font-weight: 600;
  color: var(--wsv2-primary);
  line-height: 1.7;
}

.wsv2-reason__list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wsv2-reason__item {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 48px 0;
  border-bottom: 1px solid var(--wsv2-border);
}

.wsv2-reason__item:first-child {
  border-top: 1px solid var(--wsv2-border);
}

.wsv2-reason__num {
  flex-shrink: 0;
  font-size: 56px;
  font-weight: 800;
  color: var(--wsv2-heading);
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative;
  padding-bottom: 6px;
}

.wsv2-reason__num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--wsv2-accent-yellow);
  border-radius: 2px;
}

.wsv2-reason__body {
  padding-top: 8px;
}

.wsv2-reason__item-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.4;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.wsv2-reason__item-text {
  font-size: 15px;
  color: var(--wsv2-body);
  line-height: 1.9;
}

/* ============================================
   flow Section
   ============================================ */

.wsv2-flow {
  background: #fbec47;
  padding: 110px 0;
  border-top: 1px solid var(--wsv2-border);
}

.wsv2-flow .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-flow__section-head {
  text-align: center;
  margin-bottom: 64px;
}

.wsv2-flow__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: var(--wsv2-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wsv2-flow__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.wsv2-flow__lead {
  font-size: 15px;
  color: var(--wsv2-body);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
}

.wsv2-flow__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.wsv2-flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
}

.wsv2-flow__step::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 16px solid var(--wsv2-primary);
  z-index: 1;
}

.wsv2-flow__step:nth-child(3n)::after,
.wsv2-flow__step:last-child::after {
  display: none;
}

.wsv2-flow__step:last-child {
  padding-bottom: 28px;
}

.wsv2-flow__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wsv2-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  letter-spacing: 0;
}

.wsv2-flow__body {
  flex: 1;
}

.wsv2-flow__step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.4;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.wsv2-flow__text {
  font-size: 15px;
  color: var(--wsv2-body);
  line-height: 1.9;
  margin-bottom: 10px;
}

.wsv2-flow__text:last-child {
  margin-bottom: 0;
}

.wsv2-flow__note {
  font-size: 0.75rem;
  color: var(--wsv2-primary);
  line-height: 1.8;
}

/* ============================================
   faq Section
   ============================================ */

.wsv2-faq {
  background: var(--wsv2-bg);
  padding: 110px 0;
  border-top: 1px solid var(--wsv2-border);
}

.wsv2-faq .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-faq__section-head {
  text-align: center;
  margin-bottom: 56px;
}

.wsv2-faq__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: var(--wsv2-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wsv2-faq__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.wsv2-faq__list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wsv2-faq__item {
  background: var(--wsv2-surface);
  border: 1px solid var(--wsv2-border);
  border-radius: 8px;
  overflow: hidden;
}

.wsv2-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 64px 22px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}

.wsv2-faq__question::-webkit-details-marker {
  display: none;
}

.wsv2-faq__question::before {
  content: "Q";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wsv2-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.wsv2-faq__question::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2328849c' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='10' y1='4' x2='10' y2='16'/%3E%3Cline x1='4' y1='10' x2='16' y2='10'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s;
}

.wsv2-faq__item[open] > .wsv2-faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}

.wsv2-faq__item[open] > .wsv2-faq__question {
  background: rgba(40, 132, 156, 0.05);
}

.wsv2-faq__question:focus-visible {
  outline: 2px solid var(--wsv2-primary);
  outline-offset: -2px;
  border-radius: 8px;
}

.wsv2-faq__answer {
  padding: 20px 24px 24px 68px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wsv2-faq__answer p {
  font-size: 14px;
  color: var(--wsv2-body);
  line-height: 1.9;
}

.wsv2-faq__link-wrap {
  margin-top: 8px;
}

.wsv2-faq__link-cta {
  display: inline-block;
  padding: 12px 24px;
  background: var(--wsv2-surface);
  border: 1px solid var(--wsv2-primary);
  border-radius: 4px;
  color: var(--wsv2-primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.wsv2-faq__link-cta:hover {
  background: var(--wsv2-primary);
  color: var(--wsv2-white);
}

/* ============================================
   cta Section
   ============================================ */

.wsv2-cta {
  background: linear-gradient(90deg, #28849c 0%, #28849c 50%, #7dacaf 50%, #7dacaf 100%);
  padding: 110px 0;
}

.wsv2-cta .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-cta__section-head {
  text-align: center;
  margin-bottom: 56px;
}

.wsv2-cta__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wsv2-cta__lead-top {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.wsv2-cta__title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.wsv2-cta__lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.wsv2-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.wsv2-cta__panel {
  background: #fff;
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wsv2-cta__panel:first-child {
  transform: translateX(-24px);
}

.wsv2-cta__panel:last-child {
  transform: translateX(24px);
}

.wsv2-cta__panel-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--wsv2-heading);
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-align: center;
}

.wsv2-cta__panel-text {
  font-size: 14px;
  color: var(--wsv2-body);
  line-height: 1.9;
}

.wsv2-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: var(--wsv2-heading);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: auto;
}

.wsv2-cta__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.wsv2-cta__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ============================================
   contact Section
   ============================================ */

.wsv2-contact {
  background: var(--wsv2-contact-bg);
  padding: 120px 0;
}

.wsv2-contact .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-contact__section-head {
  text-align: center;
  margin-bottom: 48px;
}

.wsv2-contact__eyebrow {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
  opacity: 0.3;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.wsv2-contact__title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.wsv2-contact__lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.wsv2-contact__form {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  padding: 40px 48px;
}

/* ============================================
   footer Section
   ============================================ */

.wsv2-footer {
  background: var(--wsv2-bg);
  border-top: 1px solid var(--wsv2-border);
  padding: 48px 0 32px;
}

.wsv2-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.wsv2-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

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

.wsv2-footer__logo {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s;
}

.wsv2-footer__logo img {
  display: block;
  width: 200px;
  height: auto;
}

.wsv2-footer__logo:hover {
  opacity: 0.7;
}

.wsv2-footer__site-link a {
  font-size: 13px;
  color: var(--wsv2-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.wsv2-footer__site-link a:hover {
  opacity: 0.7;
}

.wsv2-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  justify-content: flex-end;
}

.wsv2-footer__link {
  display: inline-block;
  padding: 6px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--wsv2-body);
  text-decoration: none;
  transition: color 0.2s;
}

.wsv2-footer__link:hover {
  color: var(--wsv2-primary);
}

.wsv2-footer__link--cta {
  margin-left: 8px;
  padding: 10px 24px;
  background: var(--wsv2-primary);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  transition: opacity 0.2s;
}

.wsv2-footer__link--cta:hover {
  color: #fff;
  opacity: 0.85;
}

.wsv2-footer__link:focus-visible {
  outline: 2px solid var(--wsv2-primary);
  outline-offset: 2px;
  border-radius: 3px;
}

.wsv2-footer__link--cta:focus-visible {
  outline-color: #fff;
}

.wsv2-footer__bottom {
  padding-top: 24px;
  text-align: center;
}

.wsv2-footer__copy {
  font-size: 12px;
  color: var(--wsv2-subtext);
  letter-spacing: 0.04em;
}

/* ============================================
   Media Queries
   ============================================ */

@media (max-width: 1200px) {
  /* fv */
  .wsv2-fv__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    gap: 32px;
    padding: 56px 0 0;
  }

  .wsv2-fv__label {
    font-size: 22px;
    letter-spacing: 4px;
  }

  .wsv2-fv__label-em {
    font-size: 36px;
  }

  .wsv2-fv__sublabel {
    font-size: 28px;
  }

  .wsv2-fv__catchcopy {
    font-size: 22px;
    letter-spacing: 2.5px;
    margin-top: 36px;
    margin-bottom: 32px;
  }

  .wsv2-fv__point {
    font-size: 18px;
    padding: 9px 16px;
  }

  .wsv2-fv__cta-btn {
    padding: 18px 60px;
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  /* header */
  .wsv2-header .container {
    padding: 0 24px;
  }

  .wsv2-header__link {
    padding: 8px 10px;
    font-size: 12px;
  }

  .wsv2-header__link--cta {
    padding: 10px 16px;
  }

  /* fv */
  .wsv2-fv .container {
    padding: 0 24px;
  }

  .wsv2-fv__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
    gap: 24px;
    padding: 48px 0 0;
  }

  .wsv2-fv__label {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .wsv2-fv__label-em {
    font-size: 32px;
  }

  .wsv2-fv__sublabel {
    font-size: 26px;
  }

  .wsv2-fv__title {
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  }

  .wsv2-fv__catchcopy {
    font-size: 20px;
    letter-spacing: 2px;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .wsv2-fv__point {
    font-size: 17px;
    padding: 8px 14px;
  }

  .wsv2-fv__cta-btn {
    padding: 16px 48px;
    font-size: 16px;
  }

  /* issue */
  .wsv2-issue {
    padding: 96px 0;
  }

  .wsv2-issue .container {
    padding: 0 24px;
  }

  .wsv2-issue__section-head {
    margin-bottom: 52px;
  }

  /* concept */
  .wsv2-concept {
    padding: 96px 0;
  }

  .wsv2-concept .container {
    padding: 0 24px;
  }

  .wsv2-concept__funnel-label {
    font-size: 16px;
  }

  /* about */
  .wsv2-feature {
    padding: 96px 0;
  }

  .wsv2-feature .container {
    padding: 0 24px;
  }

  .wsv2-feature__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .wsv2-feature__sidebar {
    position: static;
  }

  .wsv2-feature__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .wsv2-feature__card {
    padding: 32px 24px;
  }

  /* who-for */
  .wsv2-who-for {
    padding: 96px 0;
  }

  .wsv2-who-for .container {
    padding: 0 24px;
  }

  /* compare */
  .wsv2-compare {
    padding: 96px 0;
  }

  .wsv2-compare .container {
    padding: 0 24px;
  }

  /* works */
  .wsv2-works {
    padding: 96px 0;
  }

  .wsv2-works .container {
    padding: 0 24px;
  }

  .wsv2-works__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  /* pricing */
  .wsv2-pricing {
    padding: 96px 0;
  }

  .wsv2-pricing .container {
    padding: 0 24px;
  }

  .wsv2-pricing__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .wsv2-pricing__includes-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* reason */
  .wsv2-reason {
    padding: 96px 0;
  }

  .wsv2-reason .container {
    padding: 0 24px;
  }

  .wsv2-reason__num {
    font-size: 48px;
  }

  .wsv2-reason__item {
    gap: 28px;
  }

  /* flow */
  .wsv2-flow {
    padding: 96px 0;
  }

  .wsv2-flow .container {
    padding: 0 24px;
  }

  /* faq */
  .wsv2-faq {
    padding: 96px 0;
  }

  .wsv2-faq .container {
    padding: 0 24px;
  }

  /* cta */
  .wsv2-cta {
    padding: 96px 0;
  }

  .wsv2-cta .container {
    padding: 0 24px;
  }

  .wsv2-cta__panel {
    padding: 32px 28px;
  }

  .wsv2-cta__panel:first-child {
    transform: translateX(-12px);
  }

  .wsv2-cta__panel:last-child {
    transform: translateX(12px);
  }

  /* contact */
  .wsv2-contact {
    padding: 96px 0;
  }

  .wsv2-contact .container {
    padding: 0 24px;
  }

  .wsv2-contact__form {
    padding: 32px 36px;
  }

  /* footer */
  .wsv2-footer .container {
    padding: 0 24px;
  }

  .wsv2-footer__nav {
    gap: 4px 0;
  }
}

@media (max-width: 900px) {
  /* header: ハンバーガーメニューに切替 */
  .wsv2-header__nav {
    display: none;
  }

  .wsv2-fab-menu {
    opacity: 1;
    pointer-events: auto;
  }

  .wsv2-fab-overlay {
    display: block;
  }

  /* fv: ロゴとイラストを横並び、ラベルは2行表示 */
  .wsv2-fv__grid {
    grid-template-columns: 6fr 4fr;
    grid-template-areas:
      "sublabel visual"
      "logo     visual"
      "points   points"
      "cta      cta";
    gap: 12px 20px;
    padding: 40px 0 0;
    align-items: center;
  }

  .wsv2-fv__content {
    display: contents;
  }

  .wsv2-fv__sublabel {
    grid-area: sublabel;
    align-self: end;
    font-size: 20px;
    text-align: center;
  }

  .wsv2-fv__title {
    grid-area: logo;
    align-self: start;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wsv2-fv__title img {
    max-width: 100%;
  }

  .wsv2-fv__visual {
    grid-area: visual;
  }

  .wsv2-fv__visual img {
    max-width: 100%;
    margin: 0 auto;
    top: 0;
    right: 0;
    transform: scale(1);
  }

  .wsv2-fv__points {
    grid-area: points;
    justify-content: center;
  }

  .wsv2-fv__cta {
    grid-area: cta;
  }

  .wsv2-fv__label {
    font-size: 20px;
    letter-spacing: 2.5px;
  }

  .wsv2-fv__label-em {
    font-size: 28px;
  }

  .wsv2-fv__label-br {
    display: block;
  }

  .wsv2-fv__catchcopy {
    font-size: 20px;
    letter-spacing: 2px;
    margin-top: 28px;
    margin-bottom: 24px;
  }

  .wsv2-fv__point {
    font-size: 18px;
    padding: 10px 18px;
  }

  .wsv2-fv__cta-btn {
    padding: 18px 56px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  /* 各セクションの見出しを24pxに統一 */
  .wsv2-issue__title,
  .wsv2-concept__title,
  .wsv2-feature__title,
  .wsv2-who-for__title,
  .wsv2-compare__title,
  .wsv2-works__title,
  .wsv2-pricing__title,
  .wsv2-reason__title,
  .wsv2-flow__title,
  .wsv2-faq__title,
  .wsv2-contact__title {
    font-size: 24px;
  }

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

  .wsv2-cta__panel-title {
    font-size: 20px;
  }

  /* 通常テキストを14pxに統一 */
  .wsv2-issue__lead,
  .wsv2-issue__text,
  .wsv2-concept__lead,
  .wsv2-feature__lead,
  .wsv2-feature__card-text,
  .wsv2-feature__card-benefit,
  .wsv2-who-for__item-text,
  .wsv2-compare__lead,
  .wsv2-works__lead,
  .wsv2-pricing__lead,
  .wsv2-pricing__includes-list li,
  .wsv2-reason__lead,
  .wsv2-reason__item-text,
  .wsv2-flow__lead,
  .wsv2-flow__text,
  .wsv2-faq__answer p,
  .wsv2-cta__lead,
  .wsv2-cta__panel-text,
  .wsv2-contact__lead {
    font-size: 14px;
  }

  /* FAB関連のSP表示切替 */
  .wsv2-fab-overlay {
    display: block;
  }

  /* header */
  .wsv2-header .container {
    padding: 0 20px;
  }

  .wsv2-header__inner {
    height: 60px;
  }

  .wsv2-header__logo {
    font-size: 19px;
  }

  .wsv2-header__nav {
    display: none;
  }

  /* fv */
  .wsv2-fv .container {
    padding: 0 20px;
  }

  .wsv2-fv__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "sublabel"
      "logo"
      "points"
      "visual"
      "cta";
    min-height: auto;
    padding: 32px 0 0;
    gap: 20px;
  }

  .wsv2-fv__title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    white-space: normal;
    margin-top: -19px;
  }

  .wsv2-fv__title img {
    max-width: 95%;
    margin: 0 auto;
  }

  .wsv2-fv__visual {
    margin-top: -15px;
  }

  .wsv2-fv__visual img {
    max-width: 90%;
    margin: 0 auto;
    top: 0;
    right: 0;
    transform: scale(1);
  }

  .wsv2-fv__label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    padding-top: 32px;
  }

  .wsv2-fv__label-em {
    font-size: 22px;
  }

  .wsv2-fv__label-br-sp {
    display: block;
  }

  .wsv2-fv__label-text {
    background-size: 100% 10px;
    background-position: 0 calc(100% + 1px);
  }

  .wsv2-fv__sublabel {
    font-size: 18px;
    font-weight: 700;
  }

  .wsv2-fv__catchcopy {
    font-size: 18px;
    letter-spacing: 1.5px;
    margin-top: 8px;
    margin-bottom: 20px;
  }

  .wsv2-fv__point {
    font-size: 14px;
    padding: 8px 10px;
  }

  .wsv2-fv__cta-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }

  /* issue */
  .wsv2-issue {
    padding: 72px 0;
  }

  .wsv2-issue .container {
    padding: 0 20px;
  }

  .wsv2-issue__section-head {
    margin-bottom: 40px;
  }

  .wsv2-issue__list {
    grid-template-columns: 1fr;
  }

  .wsv2-issue__item:last-child {
    grid-column: auto;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .wsv2-issue__category {
    margin-top: 16px;
  }

  .wsv2-issue__item {
    padding: 20px 20px;
  }

  /* concept */
  .wsv2-concept {
    padding: 0 0 72px;
  }

  .wsv2-concept .container {
    padding: 0 20px;
  }

  .wsv2-concept__ticker {
    padding: 7px 0 14px;
  }

  .wsv2-concept__ticker-item {
    font-size: 36px;
  }

  .wsv2-concept__section-head {
    margin-bottom: 48px;
  }

  .wsv2-concept__title-em::after {
    height: 11px;
  }

  .wsv2-concept__title-br-sp,
  .wsv2-compare__title-br-sp,
  .wsv2-cta__title-br-sp,
  .wsv2-reason__title-br-sp {
    display: block;
  }

  .wsv2-cta__title-br-pc {
    display: none;
  }

  .wsv2-concept__funnel-grid {
    grid-template-columns: 1fr;
    gap: 16px 0;
  }

  /* SP時は矢印を下向きに切り替え */
  .wsv2-concept__funnel-arrow {
    border-top: 20px solid var(--wsv2-secondary);
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: none;
    justify-self: center;
    width: 0;
    height: 0;
  }

  .wsv2-concept__funnel-step {
    align-self: auto;
  }

  /* about */
  .wsv2-feature {
    padding: 72px 0;
  }

  .wsv2-feature .container {
    padding: 0 20px;
  }

  .wsv2-feature__section-head {
    margin-bottom: 48px;
  }

  .wsv2-feature__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wsv2-feature__card {
    padding: 28px 24px;
  }

  /* who-for */
  .wsv2-who-for {
    padding: 72px 0;
  }

  .wsv2-who-for .container {
    padding: 0 20px;
  }

  .wsv2-who-for__section-head {
    margin-bottom: 40px;
  }

  .wsv2-who-for__list {
    grid-template-columns: 1fr;
  }

  .wsv2-who-for__item-title {
    font-size: 18px;
  }

  .wsv2-who-for__item-title br {
    display: none;
  }

  /* compare */
  .wsv2-compare {
    padding: 72px 0;
  }

  .wsv2-compare .container {
    padding: 0 20px;
  }

  .wsv2-compare__section-head {
    margin-bottom: 48px;
  }

  /* compare */
  .wsv2-compare__types {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .wsv2-compare__type {
    padding: 20px 24px;
  }

  /* compare：横スクロール対応 */
  .wsv2-compare__table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wsv2-compare__table thead th,
  .wsv2-compare__table tbody th,
  .wsv2-compare__table tbody td {
    padding: 16px 14px;
    font-size: 14px;
  }

  .wsv2-compare__table tbody th {
    font-size: 14px;
  }

  /* works */
  .wsv2-works {
    padding: 72px 0;
  }

  .wsv2-works .container {
    padding: 0 20px;
  }

  .wsv2-works__section-head {
    margin-bottom: 40px;
  }

  .wsv2-works__tabs {
    gap: 8px;
    margin-bottom: 32px;
  }

  .wsv2-works__tab {
    padding: 10px 20px;
    font-size: 14px;
  }

  .wsv2-works__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .wsv2-works__card-body {
    padding: 12px 14px;
  }

  .wsv2-works__card-name {
    font-size: 13px;
  }

  /* contact */
  .wsv2-contact {
    padding: 72px 0;
  }

  .wsv2-contact .container {
    padding: 0 20px;
  }

  .wsv2-contact__section-head {
    margin-bottom: 36px;
  }

  .wsv2-contact__form {
    padding: 18px 14px;
    border-radius: 8px;
  }

  /* cta */
  .wsv2-cta {
    background: #28849c;
    padding: 72px 0;
  }

  .wsv2-cta .container {
    padding: 0 20px;
  }

  .wsv2-cta__section-head {
    margin-bottom: 40px;
  }

  .wsv2-cta__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wsv2-cta__panel {
    padding: 28px 22px;
    gap: 16px;
  }

  .wsv2-cta__panel:first-child,
  .wsv2-cta__panel:last-child {
    transform: none;
  }

  /* faq */
  .wsv2-faq {
    padding: 72px 0;
  }

  .wsv2-faq .container {
    padding: 0 20px;
  }

  .wsv2-faq__section-head {
    margin-bottom: 40px;
  }

  .wsv2-faq__question {
    padding: 18px 52px 18px 18px;
    font-size: 14px;
  }

  .wsv2-faq__question::after {
    right: 18px;
  }

  .wsv2-faq__answer {
    padding: 0 18px 20px 56px;
  }

  /* flow */
  .wsv2-flow {
    padding: 72px 0;
  }

  .wsv2-flow .container {
    padding: 0 20px;
  }

  .wsv2-flow__section-head {
    margin-bottom: 48px;
  }

  .wsv2-flow__steps {
    grid-template-columns: 1fr;
  }

  .wsv2-flow__step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num   title"
      ".     text"
      ".     note";
    column-gap: 16px;
    row-gap: 6px;
    padding: 24px 20px;
  }

  .wsv2-flow__body {
    display: contents;
  }

  .wsv2-flow__num {
    grid-area: num;
    align-self: center;
  }

  .wsv2-flow__step-title {
    grid-area: title;
    font-size: 16px;
    margin-bottom: 0;
    align-self: center;
  }

  .wsv2-flow__text {
    grid-area: text;
    font-size: 14px;
  }

  .wsv2-flow__note {
    grid-area: note;
  }

  .wsv2-flow__step::after {
    display: none;
  }

  /* reason */
  .wsv2-reason {
    padding: 72px 0;
  }

  .wsv2-reason .container {
    padding: 0 20px;
  }

  .wsv2-reason__section-head {
    margin-bottom: 48px;
  }

  .wsv2-reason__lead {
    font-size: 14px;
  }

  .wsv2-reason__item {
    flex-direction: column;
    gap: 16px;
    padding: 36px 0;
  }

  .wsv2-reason__num {
    font-size: 40px;
  }

  .wsv2-reason__body {
    padding-top: 0;
  }

  .wsv2-reason__item-title {
    font-size: 17px;
  }

  /* pricing */
  .wsv2-pricing {
    padding: 72px 0;
  }

  .wsv2-pricing .container {
    padding: 0 20px;
  }

  .wsv2-pricing__section-head {
    margin-bottom: 40px;
  }

  .wsv2-pricing__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .wsv2-pricing__card {
    padding: 24px 20px;
  }

  .wsv2-pricing__price-amount {
    font-size: 30px;
  }

  .wsv2-pricing__includes {
    padding: 20px;
  }

  .wsv2-pricing__includes-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* footer */
  .wsv2-footer {
    padding: 40px 0 28px;
  }

  .wsv2-footer .container {
    padding: 0 20px;
  }

  .wsv2-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    margin-bottom: 28px;
  }

  .wsv2-footer__brand {
    align-items: center;
  }

  .wsv2-footer__nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    gap: 0;
  }

  .wsv2-footer__link {
    width: 80vw;
    text-align: center;
    padding: 14px 14px;
    border-bottom: 1px solid var(--wsv2-border);
  }

  .wsv2-footer__link:first-child {
    border-top: 1px solid var(--wsv2-border);
  }

  .wsv2-footer__link--cta {
    margin-left: 0;
    margin-top: 20px;
    border-bottom: none;
  }
}

/* ============================================
   Loader (初回訪問時のみ表示)
   ============================================ */
.wsv2-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #81c3cb;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.9s ease-in-out, visibility 0s linear 0.9s;
}

.wsv2-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.wsv2-loader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wsv2-loader__logo {
  max-width: 480px;
  width: 70%;
  height: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease-out, transform 0.9s ease-in-out;
}

/* JSで .is-shown 付与時:ロゴがフェードイン */
.wsv2-loader.is-shown .wsv2-loader__logo {
  opacity: 1;
  transform: translateY(0);
}

/* JSで .is-hidden 付与時:ロゴが上にスライド (フェードアウトは親側で実施) */
.wsv2-loader.is-hidden .wsv2-loader__logo {
  transform: translateY(-14px);
}

/* JSで強制スキップ時(将来用) */
.wsv2-loader.is-skipped {
  display: none;
}

/* ローダー表示中は背面のスクロールを防止 */
body.wsv2-loading {
  overflow: hidden;
}

/* モーション設定を控える設定のユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .wsv2-loader__logo,
  .wsv2-loader.is-shown .wsv2-loader__logo,
  .wsv2-loader.is-hidden .wsv2-loader__logo {
    transform: none;
    transition: opacity 0.4s ease-in-out;
  }
  .wsv2-loader.is-shown .wsv2-loader__logo {
    opacity: 1;
  }
}

/* モバイル調整 */
@media (max-width: 768px) {
  .wsv2-loader__logo {
    max-width: 320px;
  }
}
