@charset "UTF-8";

/* ============================================================
   WORKS PAGE
   /works/css/works.css
   hero・CTAは area ページの印象を引き継ぎつつ、
   本文は works 専用で整理
============================================================ */

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes charaIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes charaBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes balloonIn {
  from { opacity: 0; transform: scale(.9) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ============================================================
   SECTION BACKGROUNDS
============================================================ */
.works-intro .container,
.works-filter-section .container,
.works-policy .container,
.works-faq .container{
	position: relative;
}

/* ============================================================
   HERO BASE
============================================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 0;
}
@media (max-width: 767px) {
  .hero .container {
    width: 100% !important;
  }
}

.hero-sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24vw;
  background: linear-gradient(180deg, #3d8fc0 0%, #4e9fd1 25%, #72b5de 55%, #ffffff 100%);
  will-change: transform;
}

.hero-illust {
  position: absolute;
  top: 0;
  left: 25%;
  width: 80%;
  z-index: -2;
  opacity: .92;
}
.hero-illust img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 12% auto 0;
  padding: 0 5%;
}
.hero-inner::before {
  content: "WORKS";
  position: absolute;
  z-index: -1;
  top: -12vw;
  left: 2%;
  font-size: clamp(84px, 16vw, 220px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  color: #fff;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .hero-inner::before {
    top: -12vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(10px, 18vw, 220px);
  }
}

.hero-chara-wrap {
  position: relative;
  z-index: 4;
  width: 24%;
  animation: charaIn .9s var(--ease) .28s both;
}
.hero-chara-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(10,30,60,.12));
  animation: charaBob 4.2s ease-in-out infinite;
}
.chara-balloon {
  position: absolute;
  top: 0;
  left: 80%;
  margin-top: 9%;
  background: #fff;
  border-radius: 100px;
  padding: 1em;
  box-shadow: 0 4px 16px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.8);
  font-size: clamp(12px, 1.1vw, 17px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  white-space: nowrap;
  z-index: 15;
  pointer-events: none;
  animation: balloonIn .65s var(--ease) 1.2s both;
}
.chara-balloon::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 13%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 6px solid transparent;
  border-top: 13px solid #fff;
}
.chara-balloon em {
  font-style: normal;
  color: var(--accent);
}

/* ============================================================
   WORKS HERO PANEL
============================================================ */
.works-page-hero {
  position: relative;
  padding-top: 7% !important;
  padding-bottom: 92px;
  overflow: visible;
}
.works-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(74,124,255,.14) 22%,
    rgba(74,124,255,.26) 50%,
    rgba(74,124,255,.14) 78%,
    transparent 100%
  );
}

.works-page-hero__panel {
  position: relative;
}

.works-page-hero__body {
  position: relative;
  z-index: 1;
  padding: 46px 44px 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow:
    0 18px 60px rgba(21, 41, 84, .08),
    inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}
.works-page-hero__body::before {
  content: "WORKS";
  position: absolute;
  top: -3%;
  right: 24px;
  font-size: clamp(54px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: 1;
  color: rgba(74,124,255,.08);
  pointer-events: none;
  user-select: none;
}

.works-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  color: rgba(var(--soft-r), var(--soft-g), var(--soft-b), .78);
}

.works-page-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.32;
  letter-spacing: -.045em;
  font-weight: 800;
  text-align: center;
}
.works-page-hero__lead,
.works-page-hero__lead-sub {
  max-width: 760px;
  margin: 0 auto;
  padding-left: 0;
  border-left: 0;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.95;
  text-align: justify;
}
.works-page-hero__lead {
  font-weight: 600;
  margin-bottom: 1em;
}
.works-page-hero__lead-sub {
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .88);
}

.works-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.works-hero-actions .btn {
  min-width: 190px;
}

.works-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(74,124,255,.10);
  list-style: none;
}
.works-hero-points li {
  padding: 0;
  background: transparent;
  border: 0;
}
.point-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.point-num {
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
  opacity: .9;
}
.works-hero-points li:nth-child(1) .point-num { color: #4a7cff; }
.works-hero-points li:nth-child(2) .point-num { color: #3db87a; }
.works-hero-points li:nth-child(3) .point-num { color: #8e6cff; }

.point-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: -.01em;
  color: rgba(var(--text-r), var(--text-g), var(--text-b), .88);
}

/* ============================================================
   SECTION LABEL PARALLAX TARGET
============================================================ */
.section-label02 {
  will-change: transform;
}

/* ============================================================
   INTRO / HOW TO READ
============================================================ */
.works-intro {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}
.area-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.area-result-card {
  position: relative;
  padding: 40px 38px 36px;
  background: linear-gradient(145deg, #f7f8fb 0%, #eef0f6 100%);
  border: 1px solid rgba(74,124,255,.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(255,255,255,.9) inset, 0 6px 24px rgba(12,35,80,.05);
  transition: transform .26s ease, box-shadow .26s ease;
}
.area-result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 0 rgba(255,255,255,.9) inset, 0 16px 40px rgba(12,35,80,.10);
}
.area-result-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -14px;
  right: 20px;
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  color: rgba(74,124,255,.07);
  font-family: var(--font-ui, "Inter", sans-serif);
  pointer-events: none;
  user-select: none;
}
.area-result-card::before {
  content: attr(data-num);
  position: absolute;
  top: 26px;
  left: 38px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1;
  color: rgba(74,124,255,.5);
  font-family: var(--font-ui, "Inter", sans-serif);
  pointer-events: none;
  user-select: none;
}
.area-result-card h3 {
  margin-top: 26px;
  margin-bottom: 12px;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -.035em;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  position: relative;
  z-index: 1;
}
.area-result-card h3::before {
  content: none;
}
.area-result-card p {
  font-size: 14px;
  line-height: 1.95;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .78);
  position: relative;
  z-index: 1;
  padding-left: 0;
}
.card-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  padding-left: 0;
  position: relative;
  z-index: 1;
}
.card-kw {
  padding: 4px 11px;
  border-radius: 999px;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  background: rgba(255,255,255,.8);
  color: rgba(var(--text-r), var(--text-g), var(--text-b), .52);
  border: 1px solid rgba(74,124,255,.14);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

/* ============================================================
   FILTER
============================================================ */
.works-filter-section {
  padding-top: 0 !important;
  padding-bottom: 96px !important;
}

/* タブバー全体 */
.works-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 38px;
  margin-bottom: 32px;
  padding: 5px;
  background: linear-gradient(145deg, #f4f5f8, #eceef4);
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .12);
  border-radius: 14px;
  width: fit-content;
	width: 100%;
}

.works-filter-btn {
  appearance: none;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  color: rgba(var(--text-r), var(--text-g), var(--text-b), .48);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.works-filter-btn:hover {
  color: rgba(var(--text-r), var(--text-g), var(--text-b), .8);
  background: rgba(255,255,255,.5);
}
.works-filter-btn.is-active {
  background: #fff;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  box-shadow: 0 1px 6px rgba(12,35,80,.09), 0 0 0 1px rgba(0,0,0,.05);
}

/* 業種ドット */
.filter-btn-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.filter-btn-dot--care   { background: #4a7cff; }
.filter-btn-dot--beauty { background: #d4537e; }
.filter-btn-dot--food   { background: #e08b28; }

/* 件数 */
.works-count {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .5);
  letter-spacing: .04em;
}

/* ============================================================
   WORKS GRID — 画像付きカード
============================================================ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* カード本体 */
.works-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .10);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 16px rgba(12,35,80,.05);
  transition: transform .30s cubic-bezier(.25,.46,.45,.94),
              box-shadow .30s ease;
}
.works-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(12,35,80,.12);
}

/* サムネイル */
.works-card-thumb {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #edf0f5;
  flex-shrink: 0;
}
.works-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .50s cubic-bezier(.25,.46,.45,.94);
}
.works-card:hover .works-card-thumb img {
  transform: scale(1.03) translateY(0);
}

/* ホバーオーバーレイ */
.works-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,20,55,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .28s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.works-card:hover .works-card-overlay {
  opacity: 1;
}
.works-card-overlay-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.works-card-overlay-label svg {
  stroke: #fff;
}

/* 本文エリア */
.works-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 26px;
}

/* バッジ＋エリア行 */
.works-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.works-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
}
.works-card-badge--care {
  background: rgba(74,124,255,.1);
  color: #2457c5;
}
.works-card-badge--beauty {
  background: rgba(212,83,126,.1);
  color: #a63060;
}
.works-card-badge--food {
  background: rgba(224,139,40,.1);
  color: #9b5a0a;
}
.works-card-area {
  font-size: 11px;
  font-weight: 600;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .52);
  letter-spacing: .02em;
}

/* 名称 */
.works-card-name {
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.3;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  margin: 0 0 6px;
}

/* キャッチ */
.works-card-catch {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .68);
  margin: 0 0 16px;
}

/* 課題／改善ストーリー */
.works-card-story {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  background: linear-gradient(145deg, #f6f7fb, #eff1f7);
  border-radius: 12px;
  margin-bottom: 16px;
  flex: 1;
}
.works-card-story-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.6;
}
.works-card-story-label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(var(--border-r), var(--border-g), var(--border-b), .14);
  color: rgba(var(--text-r), var(--text-g), var(--text-b), .40);
}
.works-card-story-row--result .works-card-story-label {
  background: rgba(74,124,255,.12);
  color: #2457c5;
}
.works-card-story-text {
  color: rgba(var(--text-r), var(--text-g), var(--text-b), .68);
}

/* 担当ロール（カード下部） */
.works-card-role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(74,124,255,.65);
  margin-top: auto;
}
.works-card-role::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .7;
}

/* ============================================================
   POLICY
============================================================ */
.works-policy {
  padding-top: 0 !important;
  padding-bottom: 96px !important;
}
.works-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.works-policy-card {
  padding: 30px 26px 24px;
  background: rgba(var(--panel-strong-r), var(--panel-strong-g), var(--panel-strong-b), .74);
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
}
.works-policy-card h3 {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.works-policy-card p {
  font-size: 14px;
  line-height: 2;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .82);
}

/* ============================================================
   FAQ
============================================================ */
.works-faq {
  padding-top: 0 !important;
  padding-bottom: 100px !important;
}
.area-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.area-faq-item {
  border: 1px solid rgba(var(--border-r), var(--border-g), var(--border-b), .08);
  border-radius: 3px;
  background: rgba(var(--panel-strong-r), var(--panel-strong-g), var(--panel-strong-b), .74);
  overflow: hidden;
}
.area-faq-item summary {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 22px 58px 22px 22px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.55;
  color: rgb(var(--text-r), var(--text-g), var(--text-b));
  user-select: none;
}
.area-faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74,124,255,.1);
  border: 1px solid rgba(74,124,255,.2);
  color: #4a7cff;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  top: 1px;
}
.area-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  color: rgba(var(--text-r), var(--text-g), var(--text-b), .36);
}
.area-faq-item[open] summary::after {
  content: "−";
  color: rgba(74,124,255,.6);
}
.area-faq-answer {
  padding: 0 22px 22px 56px;
  font-size: 14px;
  line-height: 2;
  color: rgba(var(--muted-r), var(--muted-g), var(--muted-b), .82);
}

/* ============================================================
   MOBILE / TABLET
============================================================ */
@media (max-width: 1100px) {
  .works-page-hero__body {
    padding: 40px 34px 30px;
  }
}

@media (max-width: 900px) {
  .area-result-grid {
    grid-template-columns: 1fr;
  }
  .works-grid,
  .works-policy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .works-page-hero {
    padding-top: 18px !important;
    padding-bottom: 68px;
  }

  .works-page-hero__body {
    padding: 28px 22px 24px;
    border-radius: 24px;
  }
  .works-page-hero__body::before {
    top: auto;
    bottom: -1%;
    right: 16px;
    font-size: clamp(52px, 20vw, 96px);
  }

  .works-page-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: .18em;
  }

  .works-page-hero h1 {
    text-align: left;
    font-size: clamp(20px, 5.2vw, 40px);
  }

  .works-page-hero__lead,
  .works-page-hero__lead-sub {
    max-width: inherit;
    line-height: 1.9;
  }

  .works-hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }
  .works-hero-actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .works-hero-points {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
    padding-top: 18px;
  }

  .hero-inner {
    padding: 0 5% 15%;
  }
  .hero-chara-wrap {
    width: 44%;
    padding-top: 10%;
  }
  .chara-balloon {
    top: 12%;
    left: 87%;
    font-size: clamp(6px, 3.1vw, 17px);
  }
  .hero-illust {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .works-intro,
  .works-filter-section,
  .works-policy,
  .works-faq {
    padding-bottom: 72px !important;
  }

  /* area-result-card モバイル */
  .area-result-card {
    padding: 28px 24px 24px;
  }
  .area-result-card::before {
    top: 22px;
    left: 24px;
  }
  .area-result-card::after {
    font-size: 72px;
  }

  /* works-card モバイル */
  .works-card {
    border-radius: 16px;
  }
  .works-card-body {
    padding: 18px 20px 20px;
  }
  .works-card-name {
    font-size: 18px;
  }
  .works-card-story {
    padding: 12px 14px;
  }
  .works-policy-card {
    padding: 26px 20px 22px;
  }

  /* フィルタータブ モバイル */
  .works-filter {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 20px;
    padding: 4px;
    gap: 3px;
    border-radius: 12px;
  }
  .works-filter-btn {
    flex: 1;
    justify-content: center;
    padding: 9px 10px;
    font-size: 12px;
    border-radius: 9px;
    gap: 4px;
  }
  .filter-btn-dot {
    width: 6px;
    height: 6px;
  }

  .area-faq-item summary {
    padding: 18px 44px 18px 18px;
    font-size: 14px;
  }
  .area-faq-answer {
    padding: 0 18px 18px 18px;
  }
  .faq-q-icon {
    display: none;
  }
}
/* ============================================================
   WC2 — INDEX PAGE WORKS GRID (NEW DESIGN)
   カテゴリフィルター + 画像付きカードグリッド
============================================================ */

/* ---- フィルタータブ ---- */
.wc2-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 38px;
  margin-bottom: 32px;
  padding: 6px;
  background: rgba(var(--border-r, 180), var(--border-g, 190), var(--border-b, 210), .07);
  border: 1px solid rgba(var(--border-r, 180), var(--border-g, 190), var(--border-b, 210), .12);
  border-radius: 14px;
  width: fit-content;
}
.wc2-filter-btn {
  appearance: none;
  border: none;
  background: transparent;
  padding: 9px 20px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(var(--text-r, 20), var(--text-g, 30), var(--text-b, 50), .55);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.wc2-filter-btn:hover {
  color: rgba(var(--text-r, 20), var(--text-g, 30), var(--text-b, 50), .88);
  background: rgba(255,255,255,.6);
}
.wc2-filter-btn.is-active {
  background: #fff;
  color: var(--accent, #4a7cff);
  box-shadow: 0 1px 4px rgba(12,35,80,.10), 0 0 0 1px rgba(74,124,255,.14);
}

/* ---- カードグリッド ---- */
.wc2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* ---- カード本体 ---- */
.wc2-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(var(--border-r, 180), var(--border-g, 190), var(--border-b, 210), .12);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(12,35,80,.04);
  transition: transform .28s cubic-bezier(.25,.46,.45,.94), box-shadow .28s ease;
}
.wc2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(12,35,80,.11);
}

/* ---- サムネイル ---- */
.wc2-thumb {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f2f6;
}
.wc2-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .48s cubic-bezier(.25,.46,.45,.94);
}
.wc2-card:hover .wc2-thumb img {
  transform: scale(1.04);
}
.wc2-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,30,70,.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .28s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.wc2-card:hover .wc2-thumb-overlay {
  opacity: 1;
}
.wc2-view-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}
.wc2-view-label svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

/* ---- カード本文 ---- */
.wc2-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}

/* ---- タグ・エリア ---- */
.wc2-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.wc2-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: none;
}
.wc2-badge--care {
  background: rgba(74,124,255,.1);
  color: #2e5fd4;
}
.wc2-badge--beauty {
  background: rgba(210,100,160,.1);
  color: #b0386e;
}
.wc2-badge--food {
  background: rgba(230,140,40,.1);
  color: #a05a10;
}
.wc2-area {
  font-size: 11px;
  font-weight: 600;
  color: rgba(var(--muted-r, 100), var(--muted-g, 110), var(--muted-b, 130), .6);
  letter-spacing: .02em;
}

/* ---- 名称・キャッチ ---- */
.wc2-name {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.32;
  color: rgb(var(--text-r, 20), var(--text-g, 30), var(--text-b, 50));
  margin: 0 0 6px;
}
.wc2-catch {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(var(--muted-r, 100), var(--muted-g, 110), var(--muted-b, 130), .72);
  margin: 0 0 16px;
}

/* ---- 課題 / 改善 ---- */
.wc2-point {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px 16px;
  background: rgba(var(--border-r, 180), var(--border-g, 190), var(--border-b, 210), .06);
  border-radius: 10px;
  margin-bottom: 14px;
  flex: 1;
}
.wc2-point-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.6;
}
.wc2-point-label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(var(--border-r, 180), var(--border-g, 190), var(--border-b, 210), .12);
  color: rgba(var(--text-r, 20), var(--text-g, 30), var(--text-b, 50), .48);
}
.wc2-point-row--result .wc2-point-label {
  background: rgba(74,124,255,.1);
  color: #2e5fd4;
}
.wc2-point-text {
  color: rgba(var(--text-r, 20), var(--text-g, 30), var(--text-b, 50), .72);
}

/* ---- ロール (下部) ---- */
.wc2-role {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(74,124,255,.7);
  margin-top: auto;
}
.wc2-role::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 6px;
  opacity: .6;
}

/* ---- レスポンシブ ---- */
@media (max-width: 900px) {
  .wc2-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wc2-thumb {
    aspect-ratio: 16 / 8;
  }
}
@media (max-width: 767px) {
  .wc2-filter {
    width: 100%;
    justify-content: flex-start;
    gap: 4px;
    padding: 4px;
  }
  .wc2-filter-btn {
    font-size: 12px;
    padding: 8px 14px;
  }
  .wc2-body {
    padding: 18px 18px 20px;
  }
  .wc2-point {
    padding: 12px 14px;
  }
}
