/* ==========================================================
   STICKER OUTSIDE — Main Stylesheet
   ========================================================== */

/* --- CSS Variables --- */
:root {
  --color-black:   #111111;
  --color-dark:    #1a1a1a;
  --color-yellow:  #F5C518;
  --color-white:   #ffffff;
  --color-gray:    #888888;
  --color-light:   #f4f4f4;
  --color-border:  #333333;

  --font-heading:  'Oswald', 'Bebas Neue', 'Impact', sans-serif;
  --font-body:     'Noto Sans JP', sans-serif;

  --max-width: 1200px;
  --header-h: 72px;
}

/* --- Reset / Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-dark);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }

.bg-light { background: var(--color-light); }


/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  height: var(--header-h);
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.header-logo-text,
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: var(--color-white);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--color-white);
}

.logo-sub {
  font-size: 10px;
  color: var(--color-gray);
  letter-spacing: 1px;
}

/* Logo image */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  mix-blend-mode: screen;
}

/* Nav */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-navigation ul#primary-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.main-navigation ul#primary-menu li a {
  display: block;
  padding: 6px 10px;
  font-size: 13px;
  color: #cccccc;
  transition: color .2s;
  white-space: nowrap;
}

.main-navigation ul#primary-menu li a:hover,
.main-navigation ul#primary-menu li.current-menu-item a {
  color: var(--color-yellow);
}

/* Header right area */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Header CTA */
.header-cta { flex-shrink: 0; }

/* drawer-cta はスマホのみ表示 */
.drawer-cta { display: none; }

/* CTA Buttons */
.btn-estimate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 4px;
  transition: opacity .2s;
  white-space: nowrap;
}

.btn-estimate:hover { opacity: .85; }

.btn-estimate.btn-lg {
  font-size: 15px;
  padding: 14px 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 4px;
  transition: opacity .2s;
}

.btn-primary:hover { opacity: .85; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 28px;
  border-radius: 4px;
  border: 2px solid var(--color-white);
  transition: background .2s, color .2s;
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-yellow);
  padding-bottom: 2px;
  margin-top: 16px;
  transition: opacity .2s;
}

.btn-arrow::after { content: ' ›'; }

.btn-arrow:hover { opacity: .7; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: .3s;
}


/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  margin-top: 0;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

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

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}

.hero-dot.is-active {
  background: var(--color-yellow);
  transform: scale(1.3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.15) 40%,
    rgba(0,0,0,0) 70%
  );
  display: flex;
  align-items: flex-end;
}

.hero-content {
  width: 100%;
  padding: 0 56px 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  max-width: 520px;
}

.hero-right {
  flex-shrink: 0;
  padding-bottom: 8px;
}

.hero-subcopy {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-yellow);
  margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
}

.hero-lead {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
}

.hero-body {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
  line-height: 1.9;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}

.hero-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  align-self: flex-start;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}


/* ==========================================================
   STATS BAR
   ========================================================== */
.stats-bar {
  background: var(--color-white);
  padding: 36px 0;
  border-bottom: 1px solid #e8e8e8;
}

.stats-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  color: var(--color-dark);
  padding: 12px 24px;
  position: relative;
  flex: 1;
}

.stats-item + .stats-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #ddd;
}

.stats-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
  font-weight: 500;
}

.stats-num-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.laurel {
  width: 28px;
  height: 44px;
  flex-shrink: 0;
}

.stats-num {
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 1;
  color: var(--color-dark);
  letter-spacing: 1px;
}

.stats-num em {
  font-style: normal;
  font-size: 16px;
  color: #555;
  font-family: var(--font-body);
  font-weight: 700;
}


/* ==========================================================
   SECTION HEADINGS
   ========================================================== */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1.3;
  letter-spacing: .02em;
}

.section-en {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #5bb8c4;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 10px;
}

.section-title.has-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}

.section-title.has-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-yellow);
  border-radius: 2px;
}


/* ==========================================================
   USE CASES
   ========================================================== */
.use-cases {
  background: var(--color-white) url('../../images/bg1.png') no-repeat center center / cover;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.usecase-grid li { text-align: center; }

.usecase-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 8px;
  background: #ddd;
}

.usecase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.usecase-grid li:hover .usecase-img img { transform: scale(1.05); }

.usecase-grid li p {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.usecase-catch {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  margin-top: 40px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 8px;
}

.usecase-catch::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--color-yellow);
  border-radius: 2px;
}


/* ==========================================================
   USE CASE MORE BUTTON
   ========================================================== */
.usecase-more {
  text-align: center;
  margin-top: 32px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
  border-radius: 4px;
  padding: 12px 28px;
  transition: background .2s, color .2s;
}

.btn-more:hover {
  background: var(--color-dark);
  color: var(--color-white);
}


/* ==========================================================
   TOUGH STICKER
   ========================================================== */
.tough-sticker { background: var(--color-white); }

.tough-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}

.tough-label {
  font-size: 12px;
  font-weight: 700;
  color: #5bb8c4;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tough-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-dark);
  margin-bottom: 28px;
}

.tough-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.tough-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.tough-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-yellow);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--color-dark);
}

.tough-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tough-row {
  display: flex;
  gap: 10px;
}

.tough-thumb {
  flex: 1;
  text-align: center;
}

.tough-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  background: #ddd;
  margin-bottom: 6px;
}

.tough-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

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

.tough-thumb p {
  font-size: 11px;
  font-weight: 700;
  color: #555;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .tough-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .tough-row { flex-wrap: wrap; }
  .tough-thumb { flex: 0 0 calc(50% - 5px); }
}


/* ==========================================================
   SECTION ROW (素材・印刷・用途 共通)
   ========================================================== */
.section-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.section-row-left .section-title { text-align: left; font-size: 24px; }

.section-desc {
  font-size: 14px;
  color: #555;
  margin-top: 16px;
  line-height: 1.8;
}


/* ==========================================================
   CARD GRID（素材・印刷）
   ========================================================== */
.card-grid {
  display: grid;
  gap: 12px;
}

.card-grid-6 { grid-template-columns: repeat(6, 1fr); }
.card-grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8e8e8;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 8px 4px;
  line-height: 1.3;
}

.card p {
  font-size: 11px;
  color: #666;
  padding: 0 8px 10px;
  line-height: 1.5;
}


/* ==========================================================
   USAGE THUMBS
   ========================================================== */
.usage-thumb-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.usage-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 6px;
  background: #ddd;
}

.usage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.usage-thumb-list li:hover .usage-img img { transform: scale(1.05); }

.usage-thumb-list li p {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}


/* ==========================================================
   PAGE COMMON（固定ページ共通）
   ========================================================== */
.page-hero {
  margin-top: 0;
  background: var(--color-black);
  padding: calc(var(--header-h) + 48px) 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 背景画像 + 黒オーバーレイ */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
    url('../../images/hero-bg.png') no-repeat center 30% / cover;
}

/* 斜めハッチ（ダイヤ）メッシュオーバーレイ */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.1) 0px, rgba(255,255,255,.1) 1px, transparent 1px, transparent 7px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.1) 0px, rgba(255,255,255,.1) 1px, transparent 1px, transparent 7px);
}

.page-hero-inner { position: relative; }

.page-hero-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--color-yellow);
  margin-bottom: 8px;
}

.page-hero-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
}

.breadcrumb a { color: #888; transition: color .2s; }
.breadcrumb a:hover { color: var(--color-yellow); }

.page-main { background: var(--color-white); }

.page-section { padding: 80px 0; }
.page-section.bg-light { background: var(--color-light); }

.section-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 4px;
  color: #5bb8c4;
  margin-bottom: 8px;
}

.page-section-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.page-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-yellow);
  border-radius: 2px;
}

.section-intro {
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  margin-top: 20px;
}

/* About intro */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.about-intro-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-dark);
}

.about-features strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 2px;
}

.about-features p { font-size: 13px; color: #666; margin: 0; }

/* Material grid */
.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.material-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}

.material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.material-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: #e0e0e0;
  overflow: hidden;
}

.material-img img { width: 100%; height: 100%; object-fit: cover; }

.material-body { padding: 20px; }

.material-body h3 {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 4px;
}

.material-tag {
  font-size: 11px;
  color: #5bb8c4;
  font-weight: 700;
  margin-bottom: 10px;
}

.material-body > p { font-size: 13px; color: #555; line-height: 1.8; margin-bottom: 12px; }

.material-specs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.material-specs li { font-size: 12px; color: #777; font-weight: 700; }

/* Shape grid */
.shape-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 56px;
}

.shape-card {
  background: var(--color-light);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  transition: background .2s;
}

.shape-card:hover { background: #e8e8e8; }

.shape-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  color: var(--color-dark);
}

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

.shape-card h3 { font-size: 14px; font-weight: 900; margin-bottom: 6px; }
.shape-card p { font-size: 12px; color: #666; line-height: 1.6; }

/* Size table */
.size-table-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid var(--color-yellow);
}

.size-table-wrap, .choose-table-wrap { overflow-x: auto; margin-top: 48px; }

.size-table, .choose-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.size-table th, .choose-table th {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}

.size-table td, .choose-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
  color: #444;
}

.size-table tr:nth-child(even) td,
.choose-table tr:nth-child(even) td { background: #fafafa; }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  text-align: left;
}

.faq-q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-yellow);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.faq-arrow {
  margin-left: auto;
  font-size: 20px;
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(90deg); }

.faq-a {
  display: none;
  padding: 0 0 20px 40px;
  font-size: 14px;
  color: #555;
  line-height: 1.9;
}

.faq-a.is-open { display: block; }

/* Page CTA（固定ページ個別＆フッター共通） */
.page-cta {
  background: #1a2a1a;
  padding: 80px 0;
  text-align: center;
}

.footer-global-cta {
  border-bottom: 1px solid var(--color-border);
}

.page-cta-sub {
  font-size: 13px;
  color: var(--color-gray);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.page-cta-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-cta-desc {
  font-size: 14px;
  color: #aaa;
  line-height: 1.9;
  margin-bottom: 32px;
}

.page-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 4px;
  border: 2px solid #555;
  transition: border-color .2s, color .2s;
}

.btn-outline-dark:hover { border-color: var(--color-white); }

/* Responsive: page */
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .material-grid { grid-template-columns: repeat(2, 1fr); }
  .shape-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .page-hero-title { font-size: 26px; }
  .material-grid { grid-template-columns: 1fr; }
  .shape-grid { grid-template-columns: repeat(2, 1fr); }
  .page-section { padding: 56px 0; }
}


/* ==========================================================
   FOOTER
   ========================================================== */
.footer-cta-bar {
  background: var(--color-dark);
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-cta-label {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.footer-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 6px;
}

.footer-tel small {
  font-size: 11px;
  color: var(--color-gray);
  font-weight: 400;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gray);
  font-size: 13px;
}

.footer-main {
  background: var(--color-black);
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col-brand .footer-logo-text { margin-bottom: 16px; }

.footer-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-sns a {
  color: #777;
  transition: color .2s;
}

.footer-sns a:hover { color: var(--color-yellow); }

.footer-col-title {
  font-size: 13px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.footer-col ul li {
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.footer-col ul li a {
  display: block;
  font-size: 12px;
  color: #888;
  padding: 7px 0;
  transition: color .2s, padding-left .2s;
}

.footer-col ul li a:hover {
  color: var(--color-yellow);
  padding-left: 6px;
}

.footer-bottom {
  background: #0a0a0a;
  padding: 16px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.copyright {
  font-size: 11px;
  color: #555;
}

.footer-bottom-nav {
  display: flex;
  gap: 20px;
}

.footer-bottom-nav a {
  font-size: 11px;
  color: #555;
  transition: color .2s;
}

.footer-bottom-nav a:hover { color: var(--color-gray); }


/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .usecase-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid-6  { grid-template-columns: repeat(3, 1fr); }
  .card-grid-5  { grid-template-columns: repeat(3, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section-row { grid-template-columns: 1fr; }
  .section-row-left { text-align: center; }
  .section-row-left .btn-arrow { margin-left: auto; margin-right: auto; }
  .stats-list { flex-wrap: wrap; }
  .usage-thumb-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .header-cta { display: flex; }
  .drawer-cta { display: block; }

  /* ---- Drawer (左からスライド) ---- */
  .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: 280px;
    height: 100dvh;
    background: #111;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 1100;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-top: calc(var(--header-h) + 8px);
  }

  .main-navigation.is-open {
    transform: translateX(0);
  }

  .main-navigation ul#primary-menu {
    flex-direction: column;
    gap: 0;
    padding: 8px 0 32px;
  }

  .main-navigation ul#primary-menu li a {
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: #ccc;
  }

  .main-navigation ul#primary-menu li a:hover,
  .main-navigation ul#primary-menu li.current-menu-item a {
    color: var(--color-yellow);
    background: rgba(255,255,255,.03);
  }

  /* ドロワーの見積りボタン */
  .drawer-cta {
    padding: 20px 28px 0;
    margin-top: auto;
  }

  .drawer-cta .btn-estimate {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 14px;
  }

  /* オーバーレイ */
  .drawer-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
  }

  body.drawer-open .drawer-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  body.drawer-open { overflow: hidden; }

  /* ハンバーガー → × アニメーション */
  .menu-toggle { display: flex; z-index: 1200; position: relative; }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero mobile */
  .hero-slides { min-height: 100svh; }
  .hero-slide img {
    min-height: 100svh;
    object-position: 25% center;
  }
  .hero-content {
    padding: 0 20px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero-left { max-width: 100%; }
  .hero-body { font-size: 13px; }
  .hero-btns {
    flex-direction: row;
    gap: 12px;
  }
  .btn-primary, .btn-outline {
    font-size: 14px;
    padding: 12px 20px;
  }
  .hero-badges { gap: 12px; }
  .hero-badges li { font-size: 12px; }

  .usecase-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .usage-thumb-list { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }

  .section-pad { padding: 56px 0; }
}

@media (max-width: 480px) {
  .logo-main { font-size: 18px; }
  .header-cta .btn-estimate { font-size: 12px; padding: 8px 12px; }

  .stats-num { font-size: 32px; }
  .usecase-grid { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}


/* ==========================================================
   素材・加工ページ
   ========================================================== */
.mat-list { display: flex; flex-direction: column; gap: 64px; margin-top: 48px; }

.mat-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.mat-item-rev { direction: rtl; }
.mat-item-rev > * { direction: ltr; }

.mat-img { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; background: #e0e0e0; }
.mat-img img { width: 100%; height: 100%; object-fit: cover; }

.mat-tag { font-size: 11px; font-weight: 700; color: #5bb8c4; letter-spacing: 2px; margin-bottom: 8px; }
.mat-body h3 { font-size: 24px; font-weight: 900; margin-bottom: 12px; }
.mat-desc { font-size: 14px; color: #555; line-height: 1.9; margin-bottom: 16px; }
.mat-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.mat-specs li { font-size: 12px; font-weight: 700; background: #f4f4f4; padding: 4px 10px; border-radius: 20px; color: #444; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.process-card { background: var(--color-white); border-radius: 8px; padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.process-icon { font-size: 28px; margin-bottom: 12px; }
.process-card h3 { font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.process-card p { font-size: 13px; color: #666; line-height: 1.8; }

@media (max-width: 900px) {
  .mat-item { grid-template-columns: 1fr; }
  .mat-item-rev { direction: ltr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ==========================================================
   印刷・制作ページ
   ========================================================== */
.print-method-list { display: flex; flex-direction: column; gap: 56px; margin-top: 48px; }

.print-method-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.print-method-item-rev { direction: rtl; }
.print-method-item-rev > * { direction: ltr; }

.print-method-img { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; background: #e0e0e0; }
.print-method-img img { width: 100%; height: 100%; object-fit: cover; }

.print-badge { display: inline-block; background: var(--color-yellow); color: var(--color-dark); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.print-method-body h3 { font-size: 22px; font-weight: 900; margin-bottom: 12px; }
.print-method-body > p { font-size: 14px; color: #555; line-height: 1.9; margin-bottom: 16px; }
.print-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.print-specs li { font-size: 12px; font-weight: 700; background: #f4f4f4; padding: 4px 10px; border-radius: 20px; color: #444; }

.flow-steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 48px auto 0; }
.flow-step { display: flex; align-items: flex-start; gap: 20px; position: relative; }
.flow-num { width: 64px; height: 64px; border-radius: 50%; background: var(--color-yellow); color: var(--color-dark); font-family: var(--font-heading); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.flow-body { padding: 12px 0 40px; }
.flow-body h3 { font-size: 17px; font-weight: 900; margin-bottom: 6px; }
.flow-body p { font-size: 14px; color: #555; line-height: 1.8; }
.flow-step:not(:last-child) .flow-body { border-left: 2px dashed #ddd; margin-left: -41px; padding-left: 59px; }

.spec-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.spec-card { background: var(--color-dark); color: var(--color-white); border-radius: 8px; padding: 32px 20px; text-align: center; }
.spec-num { font-family: var(--font-heading); font-size: 36px; line-height: 1.1; color: var(--color-yellow); margin-bottom: 8px; }
.spec-num span { font-size: 16px; color: #aaa; font-family: var(--font-body); }
.spec-card p { font-size: 13px; color: #aaa; }

@media (max-width: 900px) {
  .print-method-item { grid-template-columns: 1fr; }
  .print-method-item-rev { direction: ltr; }
  .spec-grid { grid-template-columns: repeat(2,1fr); }
}


/* ==========================================================
   ご利用ガイドページ
   ========================================================== */
.guide-flow { max-width: 720px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 0; }
.guide-step { position: relative; }
.guide-step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.guide-step-num { font-family: var(--font-heading); font-size: 13px; letter-spacing: 2px; color: var(--color-yellow); font-weight: 700; }
.guide-step-icon { font-size: 20px; }
.guide-step-body { padding: 0 0 32px 0; border-left: 2px solid #e8e8e8; margin-left: 8px; padding-left: 24px; }
.guide-step-body h3 { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.guide-step-body p { font-size: 14px; color: #555; line-height: 1.9; }
.guide-step-arrow { color: #ccc; font-size: 24px; margin: 0 0 8px 8px; }

.guide-info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; margin-top: 16px; }
.guide-info-block { background: var(--color-white); border-radius: 8px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.guide-info-title { font-size: 17px; font-weight: 900; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.guide-note { font-size: 12px; color: #888; margin-top: 12px; }
.guide-pay-list li { font-size: 14px; padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-weight: 700; }
.guide-pay-list li::before { content: '✔ '; color: var(--color-yellow); }

@media (max-width: 768px) { .guide-info-grid { grid-template-columns: 1fr; } }


/* ==========================================================
   制作事例ページ
   ========================================================== */
.works-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.works-filter-btn { font-size: 13px; font-weight: 700; padding: 8px 20px; border-radius: 20px; border: 2px solid #ddd; color: #555; transition: all .2s; }
.works-filter-btn.is-active, .works-filter-btn:hover { background: var(--color-dark); border-color: var(--color-dark); color: var(--color-white); }

.works-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.works-card { display: block; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.08); transition: transform .2s, box-shadow .2s; background: var(--color-white); }
.works-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.works-card-img { aspect-ratio: 4/3; background: #e8e8e8; overflow: hidden; }
.works-card-img img { width: 100%; height: 100%; object-fit: cover; }
.works-card-noimg { width: 100%; height: 100%; background: linear-gradient(135deg,#e8e8e8,#d0d0d0); }
.works-card-body { padding: 16px; }
.works-card-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.works-card-cats span { font-size: 11px; background: #f0f0f0; padding: 2px 8px; border-radius: 10px; color: #666; font-weight: 700; }
.works-card-body h3 { font-size: 15px; font-weight: 900; margin-bottom: 6px; line-height: 1.4; }
.works-card-body p { font-size: 12px; color: #777; line-height: 1.7; }
.works-empty { text-align: center; padding: 80px 0; color: #999; font-size: 15px; }

@media (max-width: 900px) { .works-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .works-grid { grid-template-columns: 1fr; } }


/* ==========================================================
   コラムページ
   ========================================================== */
.column-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.column-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 40px; }
.column-card { display: block; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.07); transition: transform .2s; background: var(--color-white); }
.column-card:hover { transform: translateY(-3px); }
.column-card-img { aspect-ratio: 16/9; background: #e8e8e8; overflow: hidden; }
.column-card-img img { width: 100%; height: 100%; object-fit: cover; }
.column-card-noimg { width: 100%; height: 100%; background: linear-gradient(135deg,#e8e8e8,#d0d0d0); }
.column-card-body { padding: 14px; }
.column-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.column-card-meta time { font-size: 12px; color: #999; }
.column-cat { font-size: 11px; background: var(--color-yellow); padding: 2px 8px; border-radius: 10px; font-weight: 700; }
.column-card-body h3 { font-size: 14px; font-weight: 900; line-height: 1.5; margin-bottom: 6px; }
.column-card-body p { font-size: 12px; color: #777; line-height: 1.7; }

.column-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.sidebar-block { background: var(--color-white); border-radius: 8px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,.06); margin-bottom: 20px; }
.sidebar-title { font-size: 14px; font-weight: 900; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--color-yellow); }
.sidebar-cats li a { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 7px 0; border-bottom: 1px solid #f0f0f0; color: #555; transition: color .2s; }
.sidebar-cats li a:hover { color: var(--color-dark); }
.sidebar-cats li a span { font-size: 11px; background: #f0f0f0; padding: 2px 8px; border-radius: 10px; }
.sidebar-recent li { border-bottom: 1px solid #f0f0f0; }
.sidebar-recent li a { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 12px; color: #555; line-height: 1.4; }
.sidebar-recent li a img { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.sidebar-cta { background: var(--color-dark) !important; text-align: center; }
.sidebar-cta p { color: #ccc; font-size: 13px; line-height: 1.7; margin-bottom: 14px; }

.pagination { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 4px; font-size: 13px; font-weight: 700; border: 2px solid #ddd; color: #555; transition: all .2s; }
.pagination .current { background: var(--color-dark); border-color: var(--color-dark); color: #fff; }
.pagination a:hover { border-color: var(--color-dark); color: var(--color-dark); }
.pagination .prev, .pagination .next { width: auto; padding: 0 12px; }

@media (max-width: 900px) {
  .column-layout { grid-template-columns: 1fr; }
  .column-sidebar { position: static; }
}
@media (max-width: 600px) { .column-grid { grid-template-columns: 1fr; } }


/* ==========================================================
   FAQページ
   ========================================================== */
.faq-cats-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; justify-content: center; }
.faq-cat-btn { font-size: 13px; font-weight: 700; padding: 8px 20px; border-radius: 20px; border: 2px solid #ddd; color: #555; transition: all .2s; }
.faq-cat-btn:hover { background: var(--color-dark); border-color: var(--color-dark); color: #fff; }

.faq-section { margin-bottom: 56px; }
.faq-section-title { font-size: 20px; font-weight: 900; margin-bottom: 16px; padding: 12px 20px; background: var(--color-dark); color: var(--color-white); border-radius: 6px; border-left: 5px solid var(--color-yellow); }


/* ==========================================================
   お問い合わせページ
   ========================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; }
.contact-lead { font-size: 15px; color: #555; line-height: 1.9; margin-bottom: 36px; }
.contact-form-wrap .wpcf7 input:not([type=submit]),
.contact-form-wrap .wpcf7 textarea,
.contact-form-wrap .wpcf7 select {
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  margin-bottom: 4px;
  transition: border-color .2s;
  background: var(--color-white);
}
.contact-form-wrap .wpcf7 input:focus,
.contact-form-wrap .wpcf7 textarea:focus { outline: none; border-color: var(--color-yellow); }
.contact-form-wrap .wpcf7 textarea { min-height: 180px; resize: vertical; }
.contact-form-wrap .wpcf7 input[type=submit] {
  background: var(--color-yellow);
  color: var(--color-dark);
  border: none;
  font-size: 16px;
  font-weight: 900;
  padding: 16px 48px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .2s;
  margin-top: 8px;
}
.contact-form-wrap .wpcf7 input[type=submit]:hover { opacity: .85; }
.contact-form-wrap .wpcf7 label { font-size: 13px; font-weight: 700; display: block; margin-bottom: 6px; margin-top: 16px; }
.cf7-notice { background: #fff3cd; border: 1px solid #ffc107; padding: 16px; border-radius: 6px; font-size: 14px; color: #856404; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-block { background: var(--color-light); border-radius: 8px; padding: 20px; }
.contact-info-block h3 { font-size: 14px; font-weight: 900; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.contact-tel { font-size: 28px; font-weight: 900; font-family: var(--font-heading); color: var(--color-dark); letter-spacing: 1px; }
.contact-hours { font-size: 12px; color: #888; margin-top: 4px; }
.contact-info-block a { color: #5bb8c4; }
.contact-info-note ul li { font-size: 13px; padding: 4px 0; }
.contact-info-note ul li::before { content: '→ '; color: var(--color-yellow); font-weight: 700; }

@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }


/* ==========================================================
   見積もりページ
   ========================================================== */
.estimate-intro { text-align: center; margin-bottom: 48px; }
.estimate-lead { font-size: 16px; line-height: 1.9; color: #444; margin-bottom: 24px; }
.estimate-lead strong { color: var(--color-dark); font-weight: 900; }
.estimate-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px; }
.estimate-points li { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.ep-icon { color: var(--color-yellow); font-size: 16px; }

.estimate-flow-block ol.estimate-mini-flow { counter-reset: flow; display: flex; flex-direction: column; gap: 10px; }
.estimate-mini-flow li { counter-increment: flow; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.estimate-mini-flow li::before { content: counter(flow); display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--color-yellow); color: var(--color-dark); font-size: 12px; font-weight: 900; flex-shrink: 0; }

.estimate-hint-list li { font-size: 13px; padding: 5px 0; border-bottom: 1px solid #eee; line-height: 1.6; color: #555; }
.estimate-hint-list li::before { content: '💡 '; }

/* CF7 フィールド */
.cf7-field-row { margin-bottom: 4px; }
.cf7-field-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf7-field-2col label { margin-top: 0; }

/* CF7 デフォルトのlabel間余白を上書き */
.contact-form-wrap .wpcf7 label {
  font-size: 13px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  margin-top: 20px;
}

/* サイズフィールドは半幅 */
.cf7-field-size {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 50%;
}

.contact-form-wrap .wpcf7 select {
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.wpcf7-acceptance { display: flex; align-items: center; gap: 8px; margin: 16px 0; font-size: 13px; color: #555; }
.wpcf7-acceptance input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--color-yellow); }

@media (max-width: 600px) { .cf7-field-2col { grid-template-columns: 1fr; } }

.cf7-section-title {
  font-size: 13px;
  font-weight: 900;
  color: var(--color-dark);
  margin: 24px 0 8px;
  padding: 6px 12px;
  background: #f4f4f4;
  border-left: 3px solid var(--color-yellow);
  border-radius: 2px;
}
