@charset "UTF-8";
/*
Theme Name: WANGAN AUTO
Theme URI: https://wanganauto.com/
Author: WANGAN AUTO / 株式会社サウスシティー
Description: 国産旧車・絶版スポーツカー専門店 WANGAN AUTO（湾岸オート）公式WordPressテーマ
Version: 1.0.1
*/

/* =========================================================
   1. 基本変数・リセット設定
   ========================================================= */
:root {
  --wf-red: #c1272d;
  --wf-red-glow: rgba(193, 39, 45, 0.4);
  --bg-black: #08080a;
  --bg-surface: #121216;
  --bg-card: #18181f;
  --text-main: #f5f5f7;
  --text-sub: #9e9ea6;
  --border-line: #24242c;
  --slant: -12deg;

  /* STOCK CAR & GALLERY 共通カラー（黒・赤・白 / 完全四角形） */
  --wf-black: #000000;
  --wf-dark: #0a0a0c;
  --wf-surface: #121214;
  --wf-white: #ffffff;
  --wf-border: #27272a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-black);
  color: var(--text-main);
  font-family: 'Oswald', 'Noto Sans JP', 'Noto Sans CJK JP', sans-serif;
  overflow-x: hidden;
  line-height: 1.8;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-wrap {
  padding: 70px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-wrap {
    padding: 95px 40px;
  }
}

.sec-header {
  text-align: center;
  margin-bottom: 40px;
}

.sec-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 3px;
  color: var(--wf-red);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sec-badge::before,
.sec-badge::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--wf-red);
}

.sec-title {
  font-size: clamp(2rem, 6.5vw, 3rem);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.15;
  text-align: center;
}

.sec-line {
  width: 50px;
  height: 3px;
  background: var(--wf-red);
  margin: 14px auto 0;
  transform: skew(var(--slant));
  box-shadow: 0 0 10px var(--wf-red-glow);
}

/* =========================================================
   2. ヘッダー・ドロワーナビゲーション
   ========================================================= */
.wf-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-line);
  transition: all 0.3s ease;
}

.wf-header.scrolled {
  border-bottom: 2px solid var(--wf-red);
  background: rgba(8, 8, 10, 0.98);
  box-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 12px 35px;
  }
}

.header-logo-anchor {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .header-logo-img {
    height: 44px;
  }
}

.header-nav-pc {
  display: none;
}

@media (min-width: 1100px) {
  .header-nav-pc {
    display: flex;
    gap: 22px;
    list-style: none;
    align-items: center;
  }

  .header-nav-pc a {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #d0d0d8;
    transition: color 0.3s;
    position: relative;
    padding: 6px 0;
  }

  .header-nav-pc a:hover,
  .header-nav-pc li.active a {
    color: var(--wf-red);
  }

  .header-nav-pc a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--wf-red);
    transition: width 0.3s;
  }

  .header-nav-pc a:hover::after,
  .header-nav-pc li.active a::after {
    width: 100%;
  }
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 19px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1200;
}

@media (min-width: 1100px) {
  .hamburger-icon {
    display: none;
  }
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform-origin: left center;
}

.mobile-overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(8, 8, 10, 0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-overlay-menu.open {
  transform: translateY(0);
}

.drawer-close-btn {
  position: absolute;
  top: 22px;
  right: 25px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-line);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  z-index: 2100;
}

.drawer-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 2.2;
  transition: stroke 0.3s;
  display: block;
}

.drawer-close-btn:hover {
  background: var(--wf-red);
  border-color: var(--wf-red);
  transform: rotate(90deg);
}

.mobile-overlay-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-overlay-list a {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.2s;
}

.mobile-overlay-list a:hover,
.mobile-overlay-list li.active a {
  color: var(--wf-red);
}

/* =========================================================
   3. トップページ（ヒーロー・NEWS・ABOUT・その他事業・協賛）
   ========================================================= */
.hero-carousel-section {
  position: relative;
  width: 100%;
  background: #050507;
  border-bottom: 2px solid var(--wf-red);
  overflow: hidden;
}

.carousel-stage {
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  align-items: center;
}

@media (max-width: 1600px) {
  .hero-carousel-section { padding: 0; }
  .carousel-stage { overflow: hidden; }
  .carousel-track { gap: 0; }
  .carousel-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto;
    position: relative;
    overflow: hidden;
    background: #141418;
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1601px) {
  .hero-carousel-section {
    aspect-ratio: 32 / 9;
    max-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }
  .carousel-stage {
    height: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
  }
  .carousel-track {
    height: 88%;
    gap: 24px;
  }
  .carousel-slide {
    height: 100% !important;
    width: auto !important;
    aspect-ratio: 16 / 9 !important;
    flex: 0 0 auto !important;
    position: relative;
    overflow: hidden;
    background: #141418;
    border: 1px solid var(--border-line);
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.4;
    transform: scale(0.92);
    transition: transform 0.5s ease, opacity 0.5s ease, border-color 0.5s ease;
  }
  .carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--wf-red);
    box-shadow: 0 10px 35px rgba(193, 39, 45, 0.35);
    z-index: 5;
  }
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9 !important;
}

.slide-caption-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 25px 25px;
  background: linear-gradient(0deg, rgba(8,8,10,0.95) 0%, rgba(8,8,10,0.5) 60%, transparent 100%);
}

.slide-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wf-red);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.slide-main-text {
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1.5px;
  line-height: 1.1;
  text-transform: uppercase;
}

.slide-main-text span {
  color: var(--wf-red);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(14, 14, 18, 0.85);
  border: 1px solid var(--border-line);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.carousel-arrow:hover {
  background: var(--wf-red);
  border-color: var(--wf-red);
}

.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }

.carousel-bars {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

@media (min-width: 1601px) {
  .carousel-bars { bottom: 20px; }
}

.carousel-bar {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-bar.active {
  background: var(--wf-red);
  width: 55px;
  box-shadow: 0 0 8px var(--wf-red);
}

.news-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

.news-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}

.news-card:hover {
  border-color: var(--wf-red);
  transform: translateY(-3px);
}

.news-thumb-16-9 {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.news-thumb-16-9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 0.5s ease;
}

.news-card:hover .news-thumb-16-9 img {
  transform: scale(1.05);
}

.news-info { padding: 18px 20px; }

.news-headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}

.about-section-container {
  position: relative;
  background: linear-gradient(rgba(8, 8, 10, 0.5), rgba(8, 8, 10, 0.6)),
              url('images/image_about.jpg') center / cover no-repeat;
  background-attachment: fixed;
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
}

.about-card-box {
  background: rgba(8, 8, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--wf-red);
  padding: 35px 22px;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

@media (min-width: 768px) {
  .about-card-box { padding: 55px 50px; }
}

.about-inner-title {
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 2px;
  color: var(--wf-red);
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.about-body-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.98rem;
  line-height: 2.1;
  color: #f0f0f5;
  white-space: pre-line;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.about-btn-wrap {
  text-align: center;
  margin-top: 35px;
}

.compact-grid-32-9 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 900px) {
  .compact-grid-32-9 {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.small-strip-32-9 {
  width: 100%;
  aspect-ratio: 32 / 9;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-line);
  background-color: var(--bg-card);
  border-radius: 2px;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.small-strip-32-9:hover {
  border-color: var(--wf-red);
  transform: scale(1.02);
  box-shadow: 0 4px 15px var(--wf-red-glow);
}

.small-strip-32-9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 32 / 9;
}

.sponsors-wrap-bg {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
}

/* =========================================================
   4. フッターセクション
   ========================================================= */
.wf-footer-rebuild {
  background: var(--bg-black);
  padding: 60px 20px 30px;
  border-top: 2px solid var(--wf-red);
  text-align: center;
}

.footer-center-content {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav-top {
  display: flex;
  justify-content: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 40px;
  padding: 0 10px;
}

.footer-nav-top a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #cfcfd8;
  transition: color 0.3s;
}

.footer-nav-top a:hover,
.footer-nav-top li.active a {
  color: var(--wf-red);
}

.footer-logo-anchor {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.footer-policy-btn-wrap {
  margin-bottom: 22px;
}

.footer-policy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #757582;
  padding: 5px 14px;
  background: transparent;
  border: 1px solid #2e2e38;
  border-radius: 0;
  transition: all 0.25s ease;
}

.footer-policy-btn i {
  font-size: 0.65rem;
  color: #757582;
  opacity: 0.85;
}

.footer-policy-btn:hover {
  color: #a8a8b6;
  border-color: #4a4a58;
  background: rgba(255, 255, 255, 0.02);
}

.footer-profile {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 520px;
}

.footer-sns-center {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 1.35rem;
  margin-bottom: 40px;
}

.footer-sns-center a {
  color: #888;
  transition: color 0.3s, transform 0.2s;
}

.footer-sns-center a:hover {
  color: var(--wf-red);
  transform: translateY(-3px);
}

.footer-bottom-copy {
  border-top: 1px solid var(--border-line);
  padding-top: 25px;
  font-size: 0.78rem;
  color: #555;
  letter-spacing: 2px;
  width: 100%;
}

/* =========================================================
   5. 共通UIコンポーネント（ボタン・パンくず・ページネーション・モーダル）
   ========================================================= */
.btn-square {
  display: inline-block;
  padding: 14px 34px;
  background-color: var(--wf-red);
  color: var(--wf-white);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--wf-red);
  border-radius: 0;
  transition: all 0.25s ease;
  cursor: pointer;
  font-size: 0.95rem;
  text-align: center;
}

.btn-square:hover {
  background-color: var(--wf-black);
  color: var(--wf-red);
  border-color: var(--wf-red);
}

.btn-square-outline {
  background-color: transparent;
  border: 1px solid var(--wf-border);
  color: var(--wf-white);
}

.btn-square-outline:hover {
  border-color: var(--wf-red);
  color: var(--wf-red);
  background-color: var(--wf-black);
}

.breadcrumb-area {
  background-color: var(--wf-dark);
  border-bottom: 1px solid var(--wf-border);
  padding: 10px 20px;
  font-size: 0.78rem;
}

.breadcrumb-container {
  max-width: 1280px;
  margin: 0 auto;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  color: var(--wf-white);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
}

.breadcrumb-item a {
  color: var(--wf-white);
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--wf-red);
}

.breadcrumb-item.current {
  opacity: 1;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

@media (min-width: 768px) {
  .breadcrumb-item.current {
    max-width: 600px;
  }
}

.breadcrumb-separator {
  color: var(--wf-red);
  font-size: 0.65rem;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 35px auto 60px;
  max-width: 1280px;
  padding: 0 15px;
}

.page-num-btn,
.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  color: var(--wf-white);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.page-num-btn:hover,
.pagination-wrap a.page-numbers:hover {
  border-color: var(--wf-red);
  color: var(--wf-red);
  background: var(--wf-black);
}

.page-num-btn.active,
.pagination-wrap .page-numbers.current {
  background: var(--wf-red);
  border-color: var(--wf-red);
  color: var(--wf-white);
  cursor: default;
}

.page-num-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.gallery-modal-overlay,
.image-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 15px;
}

.gallery-modal-overlay.open,
.image-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-box,
.image-modal-box {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-modal-box img,
.image-modal-box img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--wf-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.95);
}

.modal-caption-area {
  margin-top: 14px;
  text-align: center;
}

.modal-caption-title {
  font-size: 1.2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--wf-white);
  letter-spacing: 1px;
}

.modal-caption-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: var(--wf-white);
  opacity: 0.7;
}

.modal-circle-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--wf-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
  z-index: 10001;
}

.modal-circle-close svg {
  width: 22px;
  height: 22px;
  stroke: var(--wf-white);
  stroke-width: 2.2;
  transition: transform 0.25s ease;
}

.modal-circle-close:hover {
  background: var(--wf-red);
  border-color: var(--wf-red);
  transform: scale(1.08);
}

.modal-circle-close:hover svg {
  transform: rotate(90deg);
}

.modal-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(18, 18, 20, 0.8);
  border: 1px solid var(--wf-border);
  color: var(--wf-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  z-index: 10000;
}

.modal-nav-arrow:hover {
  background: var(--wf-red);
  border-color: var(--wf-red);
}

.modal-nav-arrow.prev { left: 15px; }
.modal-nav-arrow.next { right: 15px; }

@media (min-width: 768px) {
  .modal-nav-arrow.prev { left: 30px; }
  .modal-nav-arrow.next { right: 30px; }
}

/* =========================================================
   6. STOCK CAR（在庫車両 一覧 & 詳細）
   ========================================================= */
.stock-list-hero {
  padding: 45px 20px 30px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .stock-list-hero { padding: 60px 40px 40px; }
}

.page-main-title {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 2px;
  font-style: italic;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-lead-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  color: var(--wf-white);
  opacity: 0.75;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.9;
}

.filter-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 30px auto 35px;
  max-width: 1280px;
  padding: 0 15px;
}

.filter-tab-btn {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  color: var(--wf-white);
  opacity: 0.7;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.25s ease;
}

.filter-tab-btn:hover,
.filter-tab-btn.active {
  opacity: 1;
  background: var(--wf-red);
  border-color: var(--wf-red);
  color: var(--wf-white);
}

.stock-grid-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px 50px;
}

@media (min-width: 768px) {
  .stock-grid-wrap { padding: 0 40px 60px; }
}

.stock-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 720px) {
  .stock-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }
}

@media (min-width: 1040px) {
  .stock-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
}

.car-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
  min-width: 0;
}

.car-card:hover {
  border-color: var(--wf-red);
  transform: translateY(-4px);
}

.car-card-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  background-color: var(--wf-black);
  overflow: hidden;
}

.car-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9 !important;
  transition: transform 0.4s ease;
}

.car-card:hover .car-card-thumb {
  transform: scale(1.05);
}

.card-status-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--wf-red);
  color: var(--wf-white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 0;
  z-index: 2;
}

.card-status-badge.sold { background: #44444c; }
.card-status-badge.hold { background: #7a1519; }

.car-card-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  min-width: 0;
}

.card-brand-tag {
  font-size: 0.72rem;
  color: var(--wf-white);
  opacity: 0.6;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.card-car-name {
  font-size: 1.25rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.25;
  color: var(--wf-white);
  margin-bottom: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-mini-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  background: var(--wf-black);
  border: 1px solid var(--wf-border);
  padding: 8px 10px;
  margin-bottom: 18px;
}

.mini-spec-cell {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mini-spec-cell span.label {
  font-size: 0.65rem;
  color: var(--wf-white);
  opacity: 0.5;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-spec-cell span.value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wf-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--wf-border);
  padding-top: 14px;
  margin-top: auto;
}

.card-price-area { display: flex; flex-direction: column; }
.card-price-label { font-size: 0.68rem; color: var(--wf-white); opacity: 0.5; letter-spacing: 1px; }
.card-price-value { font-size: 1.35rem; font-weight: 900; color: var(--wf-red); line-height: 1.1; }
.card-price-value span { font-size: 0.78rem; color: var(--wf-white); }
.card-detail-btn { padding: 8px 18px; font-size: 0.8rem; }

.order-custom-banner {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-left: 4px solid var(--wf-red);
  padding: 30px 20px;
  max-width: 1280px;
  margin: 0 auto 60px;
  text-align: center;
}

@media (min-width: 768px) {
  .order-custom-banner {
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    text-align: left;
  }
}

.order-banner-content h3 {
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1.5px;
  color: var(--wf-red);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.order-banner-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--wf-white);
  opacity: 0.8;
  line-height: 1.8;
}

.order-banner-btn-wrap { margin-top: 18px; flex-shrink: 0; }
@media (min-width: 768px) { .order-banner-btn-wrap { margin-top: 0; } }

/* STOCK CAR 個別詳細 */
.stock-detail-wrap {
  padding: 20px 15px 70px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .stock-detail-wrap { padding: 45px 30px 90px; }
}

.car-header-info {
  border-bottom: 1px solid var(--wf-border);
  padding-bottom: 22px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 992px) {
  .car-header-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.car-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.badge-status {
  background: var(--wf-red);
  color: var(--wf-white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 0;
  display: inline-block;
}

.badge-category {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  color: var(--wf-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 0;
}

.car-title {
  font-size: clamp(1.6rem, 4.5vw, 2.7rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--wf-white);
}

.car-subname {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--wf-white);
  opacity: 0.75;
  margin-top: 4px;
}

.car-price-box {
  background: var(--wf-surface);
  padding: 14px 20px;
  border: 1px solid var(--wf-border);
  border-left: 3px solid var(--wf-red);
  border-radius: 0;
  min-width: 240px;
}

.price-label { font-size: 0.72rem; color: var(--wf-white); opacity: 0.6; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.price-val { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 900; color: var(--wf-red); letter-spacing: 1px; line-height: 1.1; }
.price-val span { font-size: 0.9rem; color: var(--wf-white); }
.price-note { font-size: 0.72rem; color: var(--wf-white); opacity: 0.5; margin-top: 2px; font-family: 'Noto Sans JP', sans-serif; }

.gallery-container { display: flex; flex-direction: column; gap: 12px; margin-bottom: 35px; width: 100%; }
.gallery-main-view {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  background-color: var(--wf-black);
  border: 1px solid var(--wf-border);
  border-radius: 0;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-main-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9 !important;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.gallery-main-view:hover img { transform: scale(1.02); }
.gallery-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--wf-border);
  color: var(--wf-white);
  padding: 4px 10px;
  font-size: 0.72rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.gallery-thumbnails { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.thumb-item {
  aspect-ratio: 16 / 9 !important;
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  transition: all 0.25s ease;
}

.thumb-item:hover, .thumb-item.active { opacity: 1; border-color: var(--wf-red); }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 9 !important; }

.spec-overview-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-top: 3px solid var(--wf-red);
  border-radius: 0;
  padding: 24px 18px;
  margin-bottom: 40px;
  width: 100%;
}

@media (min-width: 992px) { .spec-overview-card { padding: 35px 40px; margin-bottom: 50px; } }

.card-block-title {
  font-size: 1.25rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1.5px;
  color: var(--wf-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--wf-border);
  padding-bottom: 12px;
  text-align: center;
}

.card-block-title i { color: var(--wf-red); font-size: 1rem; }

.spec-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 25px;
  width: 100%;
}

@media (min-width: 992px) {
  .spec-tile-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
}

.spec-tile-item {
  background: var(--wf-black);
  border: 1px solid var(--wf-border);
  border-left: 3px solid var(--wf-border);
  padding: 10px 12px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.2s ease;
}

.spec-tile-item:hover { border-left-color: var(--wf-red); }
.spec-tile-label { font-size: 0.72rem; color: var(--wf-white); opacity: 0.6; font-family: 'Noto Sans JP', sans-serif; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.spec-tile-val { font-size: 0.95rem; font-weight: 700; color: var(--wf-white); word-break: break-word; line-height: 1.35; }
.spec-tile-val.highlight { color: var(--wf-red); }

.quick-cta-box { display: flex; justify-content: center; width: 100%; }
.quick-cta-box .btn-square { width: 100%; max-width: 380px; }

.custom-spec-section {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: 0;
  padding: 25px 16px;
  margin-bottom: 35px;
  text-align: center;
}

@media (min-width: 992px) { .custom-spec-section { padding: 35px 40px; margin-bottom: 45px; } }

.spec-grid-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  list-style: none;
  margin-top: 18px;
  text-align: left;
}

@media (min-width: 768px) { .spec-grid-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 16px; } }
@media (min-width: 1100px) { .spec-grid-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.spec-tag-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wf-black);
  border: 1px solid var(--wf-border);
  border-left: 2px solid var(--wf-red);
  padding: 10px 14px;
  border-radius: 0;
  min-width: 0;
  transition: all 0.2s ease;
}

.spec-tag-item:hover { border-color: var(--wf-red); background-color: var(--wf-card); }
.spec-tag-icon { color: var(--wf-red); font-size: 0.75rem; flex-shrink: 0; }
.spec-tag-text { font-family: 'Noto Sans JP', sans-serif; font-size: 0.88rem; font-weight: 500; color: var(--wf-white); word-break: break-word; }

.contact-inquiry-banner {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-left: 4px solid var(--wf-red);
  border-radius: 0;
  padding: 30px 20px;
  margin-bottom: 35px;
  text-align: center;
}

@media (min-width: 992px) {
  .contact-inquiry-banner {
    padding: 40px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    text-align: left;
  }
}

.inquiry-content h3 { font-size: 1.35rem; font-weight: 900; font-style: italic; letter-spacing: 1.5px; color: var(--wf-red); margin-bottom: 8px; text-transform: uppercase; }
.inquiry-content p.jp-text { font-family: 'Noto Sans JP', sans-serif; font-size: 0.92rem; color: var(--wf-white); line-height: 1.8; margin-bottom: 6px; }
.inquiry-content p.en-text { font-size: 0.78rem; color: var(--wf-white); opacity: 0.55; line-height: 1.5; }
.inquiry-action-btn { margin-top: 20px; flex-shrink: 0; }
@media (min-width: 992px) { .inquiry-action-btn { margin-top: 0; } }
.inquiry-action-btn .btn-square { width: 100%; max-width: 320px; }
.back-action-wrap { text-align: center; margin-top: 15px; }

/* =========================================================
   7. GALLERY ページ
   ========================================================= */
.gallery-hero-sec {
  padding: 45px 20px 25px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .gallery-hero-sec { padding: 60px 40px 35px; }
}

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 30px auto 35px;
  max-width: 1280px;
  padding: 0 15px;
}

.gallery-grid-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px 50px;
}

@media (min-width: 768px) {
  .gallery-grid-wrap { padding: 0 40px 60px; }
}

.gallery-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .gallery-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 1024px) {
  .gallery-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
  }
}

.gallery-item {
  position: relative;
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
  min-width: 0;
}

.gallery-item:hover {
  border-color: var(--wf-red);
  transform: translateY(-4px);
}

.gallery-thumb-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  background-color: var(--wf-black);
  overflow: hidden;
}

.gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9 !important;
  transition: transform 0.45s ease;
}

.gallery-item:hover .gallery-thumb-img {
  transform: scale(1.06);
}

.gallery-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--wf-border);
  color: var(--wf-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  text-transform: uppercase;
  z-index: 2;
}

.gallery-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px 16px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-caption-title {
  font-size: 1.1rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  color: var(--wf-white);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-caption-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: var(--wf-white);
  opacity: 0.7;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--wf-border);
  color: var(--wf-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  opacity: 0.8;
  transition: all 0.2s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-zoom-icon {
  background: var(--wf-red);
  border-color: var(--wf-red);
  opacity: 1;
}

.gallery-cta-container {
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .gallery-cta-container {
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

.gallery-cta-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-left: 4px solid var(--wf-red);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.gallery-cta-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1.5px;
  color: var(--wf-red);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.gallery-cta-card p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--wf-white);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* =========================================================
   8. MADE TO ORDER ページ
   ========================================================= */
.order-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 15px 80px;
}

@media (min-width: 768px) {
  .order-page-wrap {
    padding: 60px 40px 100px;
  }
}

.sec-title-h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 2px;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.2;
}

.order-hero-block {
  text-align: center;
  margin-bottom: 60px;
}

.order-lead-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--wf-white);
  opacity: 0.8;
  max-width: 760px;
  margin: 0 auto 35px;
  line-height: 2;
}

.order-hero-banner-16-9 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  background: var(--wf-dark);
  border: 1px solid var(--wf-border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  margin-bottom: 60px;
}

.order-hero-banner-16-9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9 !important;
}

.section-block {
  margin-bottom: 70px;
}

.section-block-header {
  text-align: center;
  margin-bottom: 35px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

.advantage-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-top: 3px solid var(--wf-red);
  border-radius: 0;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.advantage-card:hover {
  border-color: var(--wf-red);
  transform: translateY(-4px);
}

.advantage-num {
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--wf-red);
  line-height: 1;
  margin-bottom: 12px;
}

.advantage-title {
  font-size: 1.2rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  color: var(--wf-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.advantage-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--wf-white);
  opacity: 0.75;
  line-height: 1.85;
}

.flow-steps-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .flow-steps-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1040px) {
  .flow-steps-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flow-step-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-left: 3px solid var(--wf-red);
  border-radius: 0;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.step-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--wf-red);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-name {
  font-size: 1.15rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  color: var(--wf-white);
  margin-bottom: 8px;
}

.step-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  color: var(--wf-white);
  opacity: 0.7;
  line-height: 1.7;
}

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

.faq-item {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open {
  border-color: var(--wf-red);
}

.faq-question {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wf-white);
  font-family: 'Noto Sans JP', sans-serif;
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-q-icon {
  color: var(--wf-red);
  font-weight: 900;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
}

.faq-toggle-icon {
  font-size: 0.85rem;
  color: var(--wf-white);
  opacity: 0.6;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--wf-red);
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  background: var(--wf-black);
  border-top: 1px solid transparent;
  padding: 0 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--wf-white);
  opacity: 0.8;
  line-height: 1.85;
}

.faq-item.open .faq-answer {
  padding: 18px 22px;
  border-top-color: var(--wf-border);
}

.contact-redirect-banner {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-left: 4px solid var(--wf-red);
  border-radius: 0;
  padding: 40px 24px;
  max-width: 900px;
  margin: 20px auto 0;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-redirect-banner {
    padding: 55px 60px;
  }
}

.contact-redirect-banner h3 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1.5px;
  color: var(--wf-white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-redirect-banner h3 span {
  color: var(--wf-red);
}

.contact-redirect-banner p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--wf-white);
  opacity: 0.8;
  line-height: 2;
  max-width: 680px;
  margin: 0 auto 30px;
}

/* =========================================================
   9. CORPORATE ページ
   ========================================================= */
.corporate-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 16px 80px;
}

@media (min-width: 992px) {
  .corporate-wrap { padding: 55px 30px 100px; }
}

.page-title-box {
  text-align: center;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .page-title-box { margin-bottom: 45px; }
}

.page-title-h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 2px;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-lead-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* スマホ版（991px以下：完全中央寄せ） */
@media (max-width: 991px) {
  .page-corporate .pc-layout-block { display: none; }

  .page-corporate .sp-statement-card {
    background: linear-gradient(145deg, #16161c 0%, #0e0e12 100%);
    border: 1px solid var(--border-line);
    border-top: 3px solid var(--wf-red);
    padding: 24px 18px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    text-align: center;
  }

  .page-corporate .sp-statement-label {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--wf-red);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .page-corporate .sp-statement-title {
    font-size: 1.15rem;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: center;
  }

  .page-corporate .sp-statement-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    color: #d8d8e0;
    line-height: 1.85;
    text-align: center;
  }

  .page-corporate .sp-spec-section {
    margin-bottom: 24px;
    text-align: center;
  }

  .page-corporate .sp-section-title {
    font-size: 1.05rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 1.5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    text-align: center;
  }

  .page-corporate .sp-section-title i {
    color: var(--wf-red);
    font-size: 0.9rem;
  }

  .page-corporate .sp-spec-card {
    background: var(--border-line);
    border: 1px solid var(--border-line);
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .page-corporate .sp-spec-item {
    background: var(--bg-surface);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3px;
  }

  .page-corporate .sp-spec-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.72rem;
    color: var(--text-sub);
    text-align: center;
  }

  .page-corporate .sp-spec-val {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    text-align: center;
  }

  .page-corporate .sp-spec-val .en-sub {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    color: var(--text-sub);
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
  }

  .page-corporate .sp-spec-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: var(--border-line);
  }

  .page-corporate .license-highlight-box {
    background: rgba(193, 39, 45, 0.08);
    border: 1px solid rgba(193, 39, 45, 0.35);
    border-top: 2px solid var(--wf-red);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    margin-bottom: 24px;
  }

  .page-corporate .license-badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--wf-red);
    letter-spacing: 1px;
    text-align: center;
  }

  .page-corporate .license-number {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #fff;
    text-align: center;
  }

  .page-corporate .business-chips-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    background: var(--bg-surface);
  }

  .page-corporate .chip-item {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.78rem;
    padding: 6px 12px;
    background: #0a0a0d;
    border: 1px solid var(--border-line);
    color: #cfcfd8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
  }

  .page-corporate .chip-item.primary {
    background: rgba(193, 39, 45, 0.15);
    border-color: var(--wf-red);
    color: #fff;
    font-weight: 700;
  }

  .page-corporate .chip-item.primary i { color: var(--wf-red); }
}

/* PC版（992px以上：テクニカルスペックボード） */
@media (min-width: 992px) {
  .page-corporate .sp-layout-block { display: none; }

  .page-corporate .pc-hero-statement {
    background: linear-gradient(rgba(18, 18, 22, 0.8), rgba(8, 8, 10, 0.95)),
                url('images/image_about.jpg') center / cover no-repeat;
    border: 1px solid var(--border-line);
    border-top: 4px solid var(--wf-red);
    padding: 42px 50px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
  }

  .page-corporate .pc-statement-badge {
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--wf-red);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .page-corporate .pc-statement-h2 {
    font-size: 1.95rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 1.5px;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 15px;
  }

  .page-corporate .pc-statement-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.94rem;
    color: #dedee8;
    line-height: 2.1;
    max-width: 860px;
    margin: 0 auto;
  }

  .page-corporate .pc-spec-board-wrap {
    background: var(--bg-surface);
    border: 1px solid var(--border-line);
    border-top: 3px solid var(--wf-red);
    margin-bottom: 40px;
    padding: 38px 45px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.6);
  }

  .page-corporate .pc-spec-board-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid var(--border-line);
    padding-bottom: 18px;
    margin-bottom: 25px;
  }

  .page-corporate .pc-spec-title-group .en-tag {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: var(--wf-red);
    text-transform: uppercase;
  }

  .page-corporate .pc-spec-title-group h2 {
    font-size: 1.6rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 1.5px;
    color: #fff;
  }

  .page-corporate .pc-spec-license-pill {
    background: #09090c;
    border: 1px solid var(--border-line);
    border-left: 3px solid var(--wf-red);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .page-corporate .pc-spec-license-pill .pill-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-sub);
    font-family: 'Noto Sans JP', sans-serif;
  }

  .page-corporate .pc-spec-license-pill .pill-num {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #fff;
  }

  .page-corporate .pc-spec-grid-sheet {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 50px;
  }

  .page-corporate .pc-spec-row-item {
    display: grid;
    grid-template-columns: 145px 1fr;
    align-items: baseline;
    border-bottom: 1px solid #1a1a24;
    padding-bottom: 16px;
    border-left: 2px solid transparent;
    padding-left: 8px;
    transition: all 0.25s ease;
  }

  .page-corporate .pc-spec-row-item:hover {
    border-left-color: var(--wf-red);
    background: rgba(255, 255, 255, 0.015);
    padding-left: 14px;
  }

  .page-corporate .pc-spec-k-side {
    display: flex;
    flex-direction: column;
  }

  .page-corporate .pc-spec-k-side .k-en {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--wf-red);
    text-transform: uppercase;
  }

  .page-corporate .pc-spec-k-side .k-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-sub);
  }

  .page-corporate .pc-spec-v-side {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
  }

  .page-corporate .pc-spec-v-side .sub-info {
    display: block;
    font-size: 0.82rem;
    color: var(--text-sub);
    font-weight: 400;
    margin-top: 2px;
  }

  .page-corporate .pc-spec-v-side .brand-accent {
    color: var(--wf-red);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    font-style: italic;
  }

  .page-corporate .pc-business-section {
    background: var(--bg-surface);
    border: 1px solid var(--border-line);
    padding: 35px 45px;
  }

  .page-corporate .pc-biz-header {
    font-size: 1.25rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .page-corporate .pc-biz-header i { color: var(--wf-red); }

  .page-corporate .pc-biz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .page-corporate .pc-biz-item {
    background: #09090c;
    border: 1px solid var(--border-line);
    padding: 12px 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.88rem;
    color: #cfcfdc;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
  }

  .page-corporate .pc-biz-item:hover {
    border-color: #333342;
    background: #101015;
  }

  .page-corporate .pc-biz-item i {
    color: var(--wf-red);
    font-size: 0.8rem;
  }

  .page-corporate .pc-biz-item.lead-item {
    grid-column: span 4;
    background: rgba(193, 39, 45, 0.12);
    border-color: var(--wf-red);
    color: #fff;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 16px 20px;
  }

  .page-corporate .pc-biz-item.lead-item i { font-size: 1.1rem; }
}

/* =========================================================
   10. NEWS（お知らせ 一覧 & 詳細）
   ========================================================= */
.news-page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 45px 20px 80px;
}

@media (min-width: 768px) {
  .news-page-wrap {
    padding: 60px 40px 100px;
  }
}

.news-hero-sec {
  text-align: center;
  margin-bottom: 35px;
}

.news-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 30px auto 40px;
  max-width: 1280px;
  padding: 0 10px;
}

.news-tab-btn {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  color: var(--wf-white);
  opacity: 0.75;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.news-tab-btn:hover,
.news-tab-btn.active {
  opacity: 1;
  background: var(--wf-red);
  border-color: var(--wf-red);
  color: var(--wf-white);
  box-shadow: 0 0 14px var(--wf-red-glow);
}

.news-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 45px;
}

@media (min-width: 720px) {
  .news-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }
}

@media (min-width: 1040px) {
  .news-articles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
}

.news-card-item {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  min-width: 0;
}

.news-card-item:hover {
  border-color: var(--wf-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(193, 39, 45, 0.25);
}

.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-card-thumb-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  background-color: var(--wf-black);
  overflow: hidden;
}

.news-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9 !important;
  transition: transform 0.45s ease;
}

.news-card-item:hover .news-card-thumb {
  transform: scale(1.06);
}

.news-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--wf-red);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 0;
}

.news-card-body {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.news-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  color: var(--text-sub);
}

.news-date {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  font-weight: 700;
  color: #cfcfd8;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.news-headline-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  color: #ffffff;
  margin-bottom: 16px;
  transition: color 0.2s ease;
}

.news-card-item:hover .news-headline-title {
  color: var(--wf-red);
}

.news-readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--wf-red);
  text-transform: uppercase;
  margin-top: auto;
  border-top: 1px solid var(--wf-border);
  padding-top: 12px;
}

.news-readmore-link i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.news-card-item:hover .news-readmore-link i {
  transform: translateX(4px);
}

.news-bottom-cta {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-left: 4px solid var(--wf-red);
  padding: 32px 20px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .news-bottom-cta {
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 30px;
  }
}

.news-cta-content h3 {
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1.5px;
  color: var(--wf-red);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.news-cta-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--wf-white);
  opacity: 0.8;
  line-height: 1.8;
}

.news-cta-btn-wrap {
  margin-top: 18px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news-cta-btn-wrap {
    margin-top: 0;
  }
}

/* NEWS 詳細 */
.news-detail-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 20px 90px;
}

@media (min-width: 768px) {
  .news-detail-wrap {
    padding: 60px 30px 110px;
  }
}

.news-article-box {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-top: 4px solid var(--wf-red);
  padding: 30px 20px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .news-article-box {
    padding: 45px 45px 55px;
  }
}

.article-header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--wf-border);
  padding-bottom: 20px;
}

.article-meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.article-meta-info .news-cat-badge {
  position: static;
}

.article-date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-sub);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 1px;
}

.article-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  font-weight: 900;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.article-featured-banner {
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  background-color: var(--wf-black);
  border: 1px solid var(--wf-border);
  overflow: hidden;
  margin-bottom: 35px;
}

.article-featured-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9 !important;
}

.article-body-content {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  line-height: 2.1;
  color: #e0e0ea;
}

.article-body-content p {
  margin-bottom: 20px;
}

.article-highlight-card {
  background: #09090c;
  border: 1px solid var(--wf-border);
  border-left: 3px solid var(--wf-red);
  padding: 22px 24px;
  margin: 28px 0 32px;
}

.highlight-title {
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1.5px;
  color: var(--wf-red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-title i {
  font-size: 0.9rem;
}

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

.highlight-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
  font-size: 0.88rem;
}

.highlight-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hl-k {
  color: var(--text-sub);
  font-weight: 700;
  font-size: 0.82rem;
}

.hl-v {
  color: #ffffff;
  font-weight: 500;
}

.article-pager-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--wf-border);
  border-bottom: 1px solid var(--wf-border);
  padding: 20px 0;
  margin: 40px 0 30px;
}

.pager-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wf-white);
  transition: color 0.2s ease;
  min-width: 0;
}

.pager-arrow:hover {
  color: var(--wf-red);
}

.pager-arrow.prev {
  text-align: left;
}

.pager-arrow.next {
  text-align: right;
  justify-content: flex-end;
}

.pager-arrow.disabled {
  opacity: 0.35;
  pointer-events: none;
}

.pager-arrow i {
  font-size: 0.95rem;
  color: var(--wf-red);
  flex-shrink: 0;
}

.pager-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pager-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-sub);
}

.pager-tit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pager-archive-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--wf-dark);
  border: 1px solid var(--wf-border);
  color: var(--wf-white);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.pager-archive-btn span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 1px;
  margin-top: 2px;
}

.pager-archive-btn:hover {
  background: var(--wf-red);
  border-color: var(--wf-red);
  color: #ffffff;
}

.article-back-wrap {
  text-align: center;
  margin-top: 15px;
}

/* =========================================================
   11. SERVICES ページ
   ========================================================= */
.services-hero-sec {
  padding: 45px 16px 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .services-hero-sec {
    padding: 60px 40px 30px;
  }
}

.services-grid-wrap {
  padding: 20px 16px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-grid-wrap {
    padding: 30px 40px 100px;
  }
}

.services-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 900px) {
  .services-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
  }
}

.service-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-top: 3px solid var(--wf-red);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s ease, border-color 0.25s ease;
  min-width: 0;
}

.service-card:hover {
  border-color: var(--wf-red);
  transform: translateY(-4px);
}

.service-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9 !important;
  background-color: var(--wf-black);
  overflow: hidden;
}

.service-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9 !important;
  transition: transform 0.45s ease;
}

.service-card:hover .service-thumb-img {
  transform: scale(1.05);
}

.service-num-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--wf-red);
  color: var(--wf-white);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  font-style: italic;
  z-index: 2;
  border-radius: 0;
}

.service-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .service-card-body {
    padding: 30px 28px;
  }
}

.service-head-group {
  margin-bottom: 16px;
  border-bottom: 1px solid var(--wf-border);
  padding-bottom: 14px;
}

.service-en-title {
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1.5px;
  color: var(--wf-white);
  line-height: 1.2;
}

.service-jp-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--wf-red);
  font-weight: 700;
  margin-top: 4px;
}

.service-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: #dedee6;
  line-height: 1.95;
  margin-bottom: 20px;
}

.service-feature-list {
  list-style: none;
  background: #09090d;
  border: 1px solid var(--wf-border);
  padding: 14px 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: #b8b8c2;
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-align: left;
}

.service-feature-list li i {
  color: var(--wf-red);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.service-action-wrap {
  margin-top: auto;
}

.service-action-wrap .btn-square,
.service-action-wrap .btn-square-outline {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.85rem;
}

/* =========================================================
   12. POLICY ページ
   ========================================================= */
.policy-page-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 35px 18px 90px;
}

@media (min-width: 768px) {
  .policy-page-wrap {
    padding: 55px 35px 110px;
  }
}

.policy-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-line);
  border-top: 3px solid var(--wf-red);
  border-radius: 0;
  padding: 30px 20px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .policy-card {
    padding: 45px 40px;
    margin-bottom: 45px;
  }
}

.card-header-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-line);
  padding-bottom: 18px;
  margin-bottom: 26px;
}

.section-num {
  font-size: 1.75rem;
  font-weight: 900;
  font-style: italic;
  color: var(--wf-red);
  line-height: 1;
  letter-spacing: 1px;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1.5px;
  color: #fff;
  text-align: center;
}

.section-title span {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  font-style: normal;
  color: var(--text-sub);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-align: center;
}

.policy-content-block {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  line-height: 1.95;
  color: #e0e0ea;
}

.policy-content-block p {
  margin-bottom: 16px;
}

.policy-article-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 26px 0 10px;
  padding-left: 10px;
  border-left: 3px solid var(--wf-red);
}

.policy-list {
  list-style: none;
  margin: 10px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-list li {
  position: relative;
  padding-left: 20px;
  color: #d2d2dc;
}

.policy-list li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--wf-red);
  font-size: 0.65rem;
}

.policy-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  background: #09090c;
  border: 1px solid var(--border-line);
  font-size: 0.88rem;
}

.policy-table th,
.policy-table td {
  padding: 13px 16px;
  border: 1px solid var(--border-line);
  text-align: left;
}

.policy-table th {
  background: #14141a;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  width: 28%;
}

.policy-table td {
  color: #d6d6e2;
}

@media (max-width: 600px) {
  .policy-table th {
    width: 36%;
    font-size: 0.8rem;
  }
  .policy-table td {
    font-size: 0.82rem;
  }
}

/* =========================================================
   13. CONTACT ページ
   ========================================================= */
body.page-contact {
  background: linear-gradient(rgba(8, 8, 10, 0.82), rgba(8, 8, 10, 0.88)),
              url('images/rx7_fd3s.jpeg') center center / cover no-repeat fixed;
  min-height: 100vh;
}

.contact-page-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 45px 20px 90px;
}

.sec-title-h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 2px;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.15;
  text-align: center;
}

.contact-lead-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--wf-white);
  opacity: 0.85;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 2;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.contact-form-card {
  background: rgba(18, 18, 22, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--wf-red);
  padding: 35px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 50px 48px;
  }
}

.form-group {
  margin-bottom: 26px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wf-white);
  margin-bottom: 8px;
}

.badge-req {
  background: var(--wf-red);
  color: #fff;
  font-size: 0.68rem;
  padding: 2px 6px;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

.badge-opt {
  background: #2a2a32;
  color: #9e9ea6;
  font-size: 0.68rem;
  padding: 2px 6px;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
}

.form-control {
  width: 100%;
  background: rgba(8, 8, 10, 0.85);
  border: 1px solid var(--wf-border);
  color: var(--wf-white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  padding: 13px 16px;
  outline: none;
  transition: all 0.25s ease;
  border-radius: 0;
}

.form-control:focus {
  border-color: var(--wf-red);
  box-shadow: 0 0 12px var(--wf-red-glow);
  background: rgba(14, 14, 18, 0.95);
}

.form-control::placeholder {
  color: #555562;
  font-size: 0.88rem;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23c1272d' d='M7 9L0 0h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

select.form-control option {
  background: #121216;
  color: #fff;
  padding: 10px;
}

select.form-control option:disabled {
  color: #777782;
}

textarea.form-control {
  min-height: 180px;
  resize: vertical;
  line-height: 1.8;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.privacy-check-box {
  margin: 32px 0;
  text-align: center;
}

.custom-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--wf-white);
  cursor: pointer;
}

.custom-checkbox-label input {
  accent-color: var(--wf-red);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.privacy-link {
  color: var(--wf-red);
  text-decoration: underline;
}

.btn-submit-wrap {
  text-align: center;
}

.btn-square-submit {
  width: 100%;
  max-width: 380px;
  padding: 16px 30px;
  background: var(--wf-red);
  color: #fff;
  border: 1px solid var(--wf-red);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 2px;
  font-style: italic;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px var(--wf-red-glow);
}

.btn-square-submit:hover {
  background: #000;
  color: var(--wf-red);
  border-color: var(--wf-red);
  box-shadow: 0 0 25px rgba(193, 39, 45, 0.7);
}

/* =========================================================
   14. スマホ最適化レスポンシブ（991px以下一括統合）
   ========================================================= */
@media (max-width: 991px) {
  /* トップページ */
  .about-body-text { text-align: center; }
  .news-headline { text-align: center; }
  .slide-caption-box { text-align: center; }
  .slide-eyebrow { text-align: center; }
  .slide-main-text { text-align: center; }
  .footer-profile { text-align: center; }

  /* STOCK CAR 一覧 */
  .page-stock-list .stock-list-hero { text-align: center; }
  .page-stock-list .page-main-title { font-size: 2.1rem; }
  .page-stock-list .card-car-name { text-align: center; }
  .page-stock-list .card-brand-tag { text-align: center; }
  .page-stock-list .card-bottom-row { flex-direction: column; align-items: center; gap: 12px; }
  .page-stock-list .card-price-area { text-align: center; }
  .page-stock-list .card-detail-btn { width: 100%; }
  .page-stock-list .order-banner-content h3,
  .page-stock-list .order-banner-content p { text-align: center; }
  .page-stock-list .order-banner-btn-wrap .btn-square { width: 100%; max-width: 320px; }

  /* STOCK CAR 詳細 */
  .page-stock-detail .stock-detail-wrap { display: flex; flex-direction: column; }
  .page-stock-detail .gallery-container { order: 1; margin-bottom: 25px; }
  .page-stock-detail .car-header-info { order: 2; text-align: center; align-items: center; }
  .page-stock-detail .spec-overview-card { order: 3; }
  .page-stock-detail .custom-spec-section { order: 4; }
  .page-stock-detail .contact-inquiry-banner { order: 5; }
  .page-stock-detail .back-action-wrap { order: 6; }
  .page-stock-detail .car-badges { justify-content: center; }
  .page-stock-detail .car-title { text-align: center; font-size: 1.7rem; }
  .page-stock-detail .car-subname { text-align: center; font-size: 0.82rem; }
  .page-stock-detail .car-price-box { text-align: center; width: 100%; max-width: 380px; margin: 0 auto; padding: 12px 16px; }
  .page-stock-detail .price-val { text-align: center; }
  .page-stock-detail .price-note { text-align: center; }
  .page-stock-detail .custom-spec-section .sec-badge { margin: 0 auto 6px; }
  .page-stock-detail .custom-spec-section .car-title { font-size: 1.45rem !important; text-align: center; }

  /* GALLERY */
  .page-gallery .gallery-hero-sec { text-align: center; }
  .page-gallery .page-main-title { font-size: 2.1rem; }
  .page-gallery .gallery-hover-overlay { padding: 20px 12px 10px; }
  .page-gallery .gallery-caption-title { font-size: 0.95rem; }
  .page-gallery .gallery-caption-sub { font-size: 0.7rem; }
  .page-gallery .gallery-cta-card { text-align: center; }
  .page-gallery .gallery-cta-card .btn-square { width: 100%; max-width: 280px; margin: 0 auto; }

  /* MADE TO ORDER */
  .page-made-to-order .order-hero-block { text-align: center; }
  .page-made-to-order .sec-title-h2 { text-align: center; }
  .page-made-to-order .advantage-card { text-align: center; }
  .page-made-to-order .flow-step-card { text-align: center; }
  .page-made-to-order .contact-redirect-banner { text-align: center; }
  .page-made-to-order .contact-redirect-banner .btn-square { width: 100%; max-width: 320px; }

  /* NEWS 一覧 & 詳細 */
  .page-news .news-hero-sec { text-align: center; }
  .page-news .page-main-title { font-size: 2.1rem; }
  .page-news .news-headline-title { font-size: 0.98rem; line-height: 1.5; }
  .page-news .news-bottom-cta { text-align: center; }
  .page-news .news-cta-btn-wrap .btn-square { width: 100%; max-width: 320px; }

  .page-news-detail .news-detail-wrap { padding: 24px 14px 70px; }
  .page-news-detail .news-article-box { padding: 24px 16px 30px; }
  .page-news-detail .article-header { margin-bottom: 18px; padding-bottom: 16px; }
  .page-news-detail .article-meta-info { margin-bottom: 10px; gap: 10px; }
  .page-news-detail .article-meta-info .news-cat-badge { font-size: 0.65rem; padding: 2px 7px; }
  .page-news-detail .article-date { font-size: 0.75rem; }
  .page-news-detail .article-title { font-size: 1.25rem !important; line-height: 1.45; letter-spacing: 0.3px; }
  .page-news-detail .article-featured-banner { margin-bottom: 24px; }
  .page-news-detail .article-body-content { font-size: 0.88rem !important; line-height: 1.95; color: #dedee6; }
  .page-news-detail .article-body-content p { margin-bottom: 15px; }
  .page-news-detail .article-highlight-card { padding: 16px 14px; margin: 22px 0 24px; }
  .page-news-detail .highlight-title { font-size: 0.92rem; margin-bottom: 10px; }
  .page-news-detail .highlight-list li { grid-template-columns: 1fr; gap: 3px; padding-bottom: 8px; font-size: 0.82rem; }
  .page-news-detail .hl-k { font-size: 0.75rem; color: var(--wf-red); }
  .page-news-detail .hl-v { font-size: 0.85rem; }
  .page-news-detail .article-pager-nav { display: flex; flex-direction: column; gap: 12px; padding: 16px 0; margin: 30px 0 25px; }
  .page-news-detail .pager-arrow { width: 100%; justify-content: flex-start; padding: 8px 12px; background: #0a0a0d; border: 1px solid var(--wf-border); }
  .page-news-detail .pager-arrow.next { justify-content: flex-end; }
  .page-news-detail .pager-archive-btn { width: 100%; height: 38px; flex-direction: row; gap: 8px; }
  .page-news-detail .pager-archive-btn span { margin-top: 0; font-size: 0.75rem; }
  .page-news-detail .article-back-wrap .btn-square { width: 100%; max-width: 320px; }

  /* SERVICES */
  .page-services .services-hero-sec { text-align: center; }
  .page-services .page-main-title { font-size: 2.1rem; text-align: center; }
  .page-services .page-lead-text { font-size: 0.88rem; line-height: 1.85; text-align: center; }
  .page-services .service-card-body { text-align: center; padding: 22px 18px; }
  .page-services .service-head-group { text-align: center; }
  .page-services .service-en-title { font-size: 1.22rem; text-align: center; }
  .page-services .service-jp-title { text-align: center; }
  .page-services .service-desc { text-align: center; font-size: 0.86rem; line-height: 1.85; }
  .page-services .service-action-wrap { display: flex; justify-content: center; }
  .page-services .service-action-wrap .btn-square,
  .page-services .service-action-wrap .btn-square-outline { width: 100%; max-width: 320px; margin: 0 auto; }
}
