/*
Theme Name:   LIQUID LIGHT Child
Theme URI:    http://www.maebashi-pcdock24.digilico.jp/
Description:  パソコンドック24 前橋店 カスタムテーマ
Author:       パソコンドック24 前橋店
Template:     liquid-light
Version:      2.0.0
*/

@import url("../liquid-light/style.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@700;900&display=swap");

/* ===== ブランドカラー ===== */
:root {
  --vk-color-primary:      #006943;
  --vk-color-primary-dark: #004d30;
  --green:      #006943;
  --green-dark: #004d30;
  --green-deep: #003d26;
  --lime:       #8FC31F;
  --lime-light: #a8d93a;
  --white:      #ffffff;
  --off-white:  #f6f8f4;
  --gray-100:   #eef0eb;
  --gray-200:   #d8dcd2;
  --gray-400:   #9aa090;
  --gray-500:   #6b7268;
  --gray-700:   #3a3f37;
  --black:      #1a1d17;
  --radius:     8px;
}

/* ===== LIQUID LIGHTのヘッダー・フッター・パンくずを非表示 ===== */
body.page-template-front-page .l-header,
body.page-template-front-page #l-header,
body.page-template-front-page .site-header,
body.page-template-front-page #masthead { display: none !important; }

body.page-template-front-page .l-footer,
body.page-template-front-page #l-footer,
body.page-template-front-page .site-footer,
body.page-template-front-page #colophon { display: none !important; }

body.page-template-front-page .l-breadcrumb,
body.page-template-front-page .breadcrumb,
body.page-template-front-page .vk_breadcrumb { display: none !important; }

body.page-template-front-page .l-main,
body.page-template-front-page .site-main,
body.page-template-front-page #main,
body.page-template-front-page .entry-content {
  padding: 0 !important; margin: 0 !important; max-width: 100% !important;
}
body.page-template-front-page .l-contents,
body.page-template-front-page #contents { padding: 0 !important; margin: 0 !important; }

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

body.page-template-front-page {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--black); background: var(--white);
  overflow-x: hidden; line-height: 1.8; font-size: 16px;
}

.pcd-wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

.pcd-eyebrow {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; color: var(--lime);
  text-transform: uppercase; margin-bottom: 12px;
}
.pcd-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 3.2vw, 38px); font-weight: 900;
  color: var(--black); line-height: 1.3; margin: 0;
}
.pcd-heading em {
  font-style: normal; color: var(--green);
  border-bottom: 3px solid var(--lime); padding-bottom: 1px;
}
.pcd-sec-head { text-align: center; margin-bottom: 52px; }

/* ===== TOPBAR ===== */
.pcd-topbar {
  background: var(--green-dark); color: rgba(255,255,255,0.8);
  padding: 9px 28px; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  flex-wrap: wrap;
}
.pcd-topbar-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.pcd-topbar-item svg { opacity: 0.7; flex-shrink: 0; }
.pcd-topbar a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 700; }
.pcd-topbar a:hover { color: var(--lime); }

/* ===== HEADER ===== */
.pcd-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); border-bottom: 3px solid var(--green);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.pcd-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
}
.pcd-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.pcd-logo-mark {
  width: 52px; height: 52px; background: var(--green);
  border-radius: 5px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pcd-logo-mark::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 5px; background: var(--lime);
}
.pcd-logo-mark .l-sub { font-size: 10px; font-weight: 900; color: var(--white); line-height: 1; }
.pcd-logo-mark .l-num { font-size: 24px; font-weight: 900; color: var(--white); font-style: italic; line-height: 1; }
.pcd-logo-text .l-name { font-size: 18px; font-weight: 900; color: var(--green); }
.pcd-logo-text .l-sub2 { font-size: 11px; color: var(--gray-400); }
.pcd-nav { display: flex; align-items: center; gap: 2px; }
.pcd-nav a {
  font-size: 13px; font-weight: 700; color: var(--gray-700);
  text-decoration: none; padding: 8px 13px; border-radius: var(--radius);
  transition: all 0.15s; white-space: nowrap;
}
.pcd-nav a:hover { color: var(--green); background: var(--off-white); }
.pcd-nav .nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 10px 20px; margin-left: 6px;
  box-shadow: 0 3px 10px rgba(0,105,67,0.3);
}
.pcd-nav .nav-cta:hover { background: var(--green-dark); }

/* ===== HERO ===== */
.pcd-hero {
  background: var(--green-deep);
  position: relative; overflow: hidden;
  min-height: 580px; display: flex; align-items: center;
}
/* 幾何学的な背景装飾 */
.pcd-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, var(--green) 0%, #005538 100%);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.pcd-hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55.6%; height: 6px;
  background: var(--lime);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}
.pcd-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 30px 30px;
}
.pcd-hero-inner {
  position: relative; z-index: 2;
  max-width: 1080px; margin: 0 auto; padding: 80px 28px;
  display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: center;
}
.pcd-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(143,195,31,0.15); border: 1px solid rgba(143,195,31,0.4);
  color: var(--lime); font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px; letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.pcd-hero-badge::before { content: '●'; font-size: 7px; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.pcd-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 4.5vw, 54px); font-weight: 900;
  color: var(--white); line-height: 1.25; margin-bottom: 22px;
}
.pcd-hero h1 .acc {
  background: var(--lime); color: var(--green-deep);
  padding: 2px 10px; border-radius: 4px; font-size: 88%;
  display: inline-block;
}
.pcd-hero-desc {
  font-size: 15px; color: rgba(255,255,255,0.78);
  line-height: 2; margin-bottom: 34px;
}
.pcd-hero-desc strong { color: var(--lime); font-weight: 700; }
.pcd-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.pcd-btn-lime {
  background: var(--lime); color: var(--green-deep);
  padding: 15px 30px; border-radius: var(--radius);
  font-size: 15px; font-weight: 900; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 18px rgba(143,195,31,0.4);
  transition: all 0.2s; white-space: nowrap;
}
.pcd-btn-lime:hover { background: var(--lime-light); transform: translateY(-2px); }
.pcd-btn-ghost {
  border: 2px solid rgba(255,255,255,0.3); color: var(--white);
  background: transparent; padding: 14px 24px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; white-space: nowrap;
}
.pcd-btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); }
.pcd-hero-trust { display: flex; gap: 18px; flex-wrap: wrap; }
.pcd-trust-item { font-size: 13px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 5px; }
.pcd-trust-item::before { content: '✓'; color: var(--lime); font-weight: 900; font-size: 14px; }

/* HERO パネル */
.pcd-hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-top: 3px solid var(--lime);
  border-radius: 10px; padding: 28px 24px;
}
.pcd-panel-ttl {
  font-size: 11px; font-weight: 700; color: var(--lime);
  letter-spacing: 0.15em; text-align: center; margin-bottom: 20px;
}
.pcd-stat-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pcd-stat-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.pcd-s-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.pcd-s-val { font-family: 'Noto Serif JP', serif; font-size: 26px; font-weight: 900; color: var(--white); line-height: 1; }
.pcd-s-val small { font-size: 13px; color: var(--lime); }
.pcd-panel-btn {
  display: flex; align-items: center; justify-content: center;
  background: var(--lime); color: var(--green-deep);
  padding: 13px; border-radius: var(--radius);
  font-size: 14px; font-weight: 900; text-decoration: none;
  margin-top: 20px; transition: background 0.2s;
}
.pcd-panel-btn:hover { background: var(--lime-light); }

/* ===== RIBBON ===== */
.pcd-ribbon {
  background: var(--lime);
  padding: 15px 28px;
  display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.pcd-ribbon-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 700; color: var(--green-deep);
  white-space: nowrap;
}
.pcd-ribbon-svg { width: 18px; height: 18px; stroke: var(--green); flex-shrink: 0; }

/* ===== 選ばれる理由 ===== */
.pcd-reasons { padding: 88px 0; background: var(--off-white); }
.pcd-reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pcd-reason-card {
  background: var(--white); border-radius: 12px; padding: 34px 26px;
  border-top: 3px solid var(--green);
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s; position: relative;
}
.pcd-reason-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,105,67,0.1); }
.pcd-reason-num {
  position: absolute; top: 18px; right: 22px;
  font-family: 'Noto Serif JP', serif; font-size: 38px; font-weight: 900;
  color: var(--gray-100); line-height: 1; user-select: none;
}
.pcd-reason-icon { width: 42px; height: 42px; stroke: var(--green); display: block; margin-bottom: 16px; }
.pcd-reason-card h3 { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.pcd-reason-card p { font-size: 15px; color: var(--gray-500); line-height: 1.8; }

/* ===== 修理メニュー ===== */
.pcd-menu-section { padding: 88px 0; background: var(--white); }
.pcd-tab-wrap { display: flex; justify-content: center; gap: 4px; margin-bottom: 36px; }
.pcd-tab-btn {
  padding: 11px 36px; border-radius: var(--radius);
  border: 2px solid var(--gray-200); background: var(--white);
  font-size: 15px; font-weight: 700; color: var(--gray-500);
  cursor: pointer; transition: all 0.2s; font-family: 'Noto Sans JP', sans-serif;
}
.pcd-tab-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }
.pcd-menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pcd-menu-card {
  border: 1.5px solid var(--gray-200); border-radius: 12px;
  padding: 30px 18px 24px; text-align: center;
  cursor: pointer; transition: all 0.22s; text-decoration: none; color: inherit;
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  position: relative; overflow: hidden;
}
.pcd-menu-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transition: transform 0.25s;
}
.pcd-menu-card:hover::after { transform: scaleX(1); }
.pcd-menu-card:hover { border-color: var(--green); box-shadow: 0 8px 28px rgba(0,105,67,0.1); transform: translateY(-3px); }
.pcd-menu-svg { width: 50px; height: 50px; stroke: var(--green); stroke-width: 1.5; padding: 11px; background: var(--off-white); border-radius: 12px; transition: background 0.2s; }
.pcd-menu-card:hover .pcd-menu-svg { background: #ddf0e5; }
.pcd-menu-card h3 { font-size: 16px; font-weight: 700; color: var(--black); }
.pcd-menu-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.pcd-m-link { font-size: 13px; font-weight: 700; color: var(--green); margin-top: 2px; }

/* ===== 修理の流れ ===== */
.pcd-flow-section {
  padding: 88px 0; background: var(--green-deep);
  position: relative; overflow: hidden;
}
.pcd-flow-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}
.pcd-flow-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: var(--lime);
}
.pcd-flow-head { text-align: center; margin-bottom: 36px; position: relative; z-index: 1; }
.pcd-flow-head .pcd-eyebrow { color: var(--lime); }
.pcd-flow-head .pcd-heading { color: var(--white); }
.pcd-flow-head .pcd-heading em { color: var(--lime); border-color: rgba(143,195,31,0.4); }

/* フロー用タブ */
.pcd-flow-tabs {
  display: flex; justify-content: center; gap: 4px;
  margin-bottom: 48px; position: relative; z-index: 1;
}
.pcd-flow-tab {
  padding: 10px 32px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent; color: rgba(255,255,255,0.65);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-family: 'Noto Sans JP', sans-serif;
}
.pcd-flow-tab.active {
  background: var(--lime); border-color: var(--lime);
  color: var(--green-deep);
}
.pcd-flow-tab:hover:not(.active) { border-color: rgba(255,255,255,0.5); color: var(--white); }

.pcd-flow-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; z-index: 1;
}
.pcd-flow-steps::before {
  content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--lime), rgba(143,195,31,0.2));
}
.pcd-flow-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.pcd-flow-circle {
  width: 70px; height: 70px; margin: 0 auto 18px;
  background: var(--green); border: 3px solid var(--lime); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;
}
.f-step { font-size: 9px; font-weight: 700; color: var(--lime); letter-spacing: 0.08em; }
.f-num { font-size: 26px; font-weight: 900; color: var(--white); font-family: 'Noto Serif JP', serif; }
.pcd-flow-tag {
  display: inline-block; margin-bottom: 10px;
  background: rgba(143,195,31,0.15); border: 1px solid rgba(143,195,31,0.35);
  color: var(--lime); font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 100px;
}
.pcd-flow-step h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pcd-flow-step p { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.75; }
.pcd-flow-note {
  text-align: center; color: rgba(255,255,255,0.45);
  font-size: 12px; margin-top: 36px; position: relative; z-index: 1;
}

/* ===== 来店・宅配 ===== */
.pcd-types-section { padding: 88px 0; background: var(--off-white); }
.pcd-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pcd-type-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07); border-bottom: 4px solid var(--green);
}
.pcd-type-head { background: var(--green); padding: 24px 30px; }
.pcd-type-badge {
  display: inline-block; background: var(--lime); color: var(--green-deep);
  font-size: 11px; font-weight: 900; padding: 3px 10px; border-radius: 3px;
  margin-bottom: 8px; letter-spacing: 0.04em;
}
.pcd-type-head h3 { font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 3px; }
.pcd-type-head p { font-size: 13px; color: rgba(255,255,255,0.72); }
.pcd-type-body { padding: 26px 30px; }
.pcd-type-features { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 11px; }
.pcd-type-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-700); line-height: 1.55; }
.pcd-type-features li::before {
  content: '✓'; min-width: 20px; height: 20px; margin-top: 1px;
  background: var(--lime); color: var(--green-deep); font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0;
}
.pcd-btn-green {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--green); color: var(--white);
  padding: 14px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; text-decoration: none; transition: background 0.2s;
}
.pcd-btn-green:hover { background: var(--green-dark); }

/* ===== CTA ===== */
.pcd-cta-section {
  padding: 88px 28px; background: var(--green); text-align: center;
  position: relative; overflow: hidden;
}
.pcd-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 20px);
}
.pcd-cta-section::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: var(--lime); }
.pcd-cta-section h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3vw, 34px); font-weight: 900;
  color: var(--white); margin-bottom: 12px; position: relative;
}
.pcd-cta-section p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 36px; position: relative; }
.pcd-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.pcd-btn-cta-w {
  background: var(--white); color: var(--green);
  padding: 17px 38px; border-radius: var(--radius);
  font-size: 16px; font-weight: 900; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); transition: transform 0.2s;
}
.pcd-btn-cta-w:hover { transform: translateY(-2px); }
.pcd-btn-cta-l {
  background: var(--lime); color: var(--green-deep);
  padding: 17px 38px; border-radius: var(--radius);
  font-size: 16px; font-weight: 900; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(143,195,31,0.4); transition: transform 0.2s;
}
.pcd-btn-cta-l:hover { transform: translateY(-2px); }

/* ===== FOOTER ===== */
.pcd-footer { background: var(--green-deep); border-top: 4px solid var(--lime); }
.pcd-footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px;
  padding: 56px 28px 40px;
}
.pcd-f-logo-mark {
  width: 50px; height: 50px; background: var(--green);
  border-radius: 5px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden; margin-bottom: 16px;
}
.pcd-f-logo-mark::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--lime); }
.pcd-footer-info p,
.pcd-footer-info address {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.9; margin-top: 10px; font-style: normal;
}
.pcd-footer-info a { color: rgba(255,255,255,0.55); text-decoration: none; }
.pcd-footer-info a:hover { color: var(--lime); }
.pcd-footer-col h4 { font-size: 12px; font-weight: 700; color: var(--lime); letter-spacing: 0.14em; margin-bottom: 16px; }
.pcd-footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pcd-footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.pcd-footer-col ul li a:hover { color: var(--lime); }
.pcd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 28px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.3);
  max-width: 1080px; margin: 0 auto;
}

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
  .pcd-hero-inner { grid-template-columns: 1fr; }
  .pcd-hero-panel { display: none; }
  .pcd-reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .pcd-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .pcd-flow-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pcd-flow-steps::before { display: none; }
  .pcd-types-grid { grid-template-columns: 1fr; }
  .pcd-footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .pcd-topbar { gap: 12px; font-size: 12px; }
  .pcd-nav a:not(.nav-cta) { display: none; }
  .pcd-reasons-grid { grid-template-columns: 1fr; }
  .pcd-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .pcd-flow-steps { grid-template-columns: 1fr; }
  .pcd-hero h1 { font-size: 30px; }
}
