@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap');

/*
Theme Name: サンケンシャッターサービス
Theme URI: https://sanken-shutter.com
Author: サンケンシャッターサービス
Description: サンケンシャッターサービス LP テーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: sanken
*/

/* ========================================
   SANKEN SHUTTER SERVICE - LP CSS
   カラーパレット:
     Primary Blue:  #00B9EB
     Dark Blue:     #0021A3
     Orange CTA:    #F76A0B
     Light Orange:  #FF921E
     Yellow:        #FFDF2A
     Red:           #F5243D
     White:         #FFFFFF
     BG Light:      #E8F7FC
======================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:        #00B9EB;
  --blue-dark:   #0021A3;
  --blue-light:  #E3F6FD;
  --blue-mid:    #B3E9F8;
  --orange:      #F76A0B;
  --orange-light:#FF921E;
  --yellow:      #FFEE55;
  --red:         #F5243D;
  --white:       #FFFFFF;
  --gray-light:  #F5F5F5;
  --gray:        #888888;
  --text-dark:   #333333;
  --text-mid:    #555555;
  --max-w:       1200px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

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

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

/* ===== UTILITY ===== */
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-yellow { color: var(--yellow); }
.sp-only { display: none; }
@media (max-width: 767px) { .sp-only { display: inline; } }

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #cce8f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  border-radius: 8px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header--white .section-header__title {
  color: var(--white);
}
.section-header__sub {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  padding: 4px 20px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-header__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.section-more {
  text-align: center;
  margin-top: 40px;
}
.btn-more {
  display: inline-block;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 12px 48px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.2s;
}
.btn-more:hover {
  background: var(--blue);
  color: var(--white);
}

/* Diagonal stripe background */
.stripe-section {
  background-color: var(--blue);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.12) 20px,
    rgba(255,255,255,0.12) 40px
  );
  padding: 60px 20px;
}


/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  padding: 10px 20px;
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
}
.header__logo {
  flex-shrink: 0;
}
.header__logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.header__nav {
  display: flex;
  gap: 16px;
  margin-left: auto;
  flex-wrap: wrap;
  align-items: center;
}
.header__nav a {
  font-size: 13px;
  color: var(--text-dark);
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.header__nav a:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.header__cta-btn {
  flex-shrink: 0;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  text-align: center;
  line-height: 1.3;
  transition: opacity 0.2s;
}
.header__cta-btn:hover { opacity: 0.85; }
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__tel-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header__tel-btn:hover { opacity: 0.75; }
.header__tel-label {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  color: #111;
}
.header__tel-num {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #e53535;
}


/* ===== STICKY BAR ===== */
.sticky-bar {
  display: none;
  background: var(--blue-dark);
  padding: 8px 20px;
}
.sticky-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}
.sticky-bar__count {
  color: var(--white);
  font-size: 13px;
  margin-right: auto;
}
.sticky-bar__count strong {
  color: var(--yellow);
  font-size: 16px;
}
.sticky-bar__tel {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}
.sticky-bar__btn {
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 4px;
}


/* ===== HERO ===== */
.hero {
  margin-top: 0;
  overflow: hidden;
  position: relative;
  background-image: url('images/hero_bg.webp');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 160px 40px 0px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 600px;
}
.hero__catch {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-align: center;
  -webkit-text-stroke: 5px var(--white);
  paint-order: stroke fill;
  stroke-linejoin: round;
}
.hero__catch--red { color: #e53535; }
.hero__catch--em {
  color: var(--orange);
  text-decoration: underline;
}
.hero__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 28px;
  text-align: center;
  -webkit-text-stroke: 10px var(--white);
  paint-order: stroke fill;
  stroke-linejoin: round;
}
.hero__title--blue   { color: var(--blue); }
.hero__title--orange { color: var(--orange); }
.hero__title--normal { color: var(--text-dark); }

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__badge-img {
  height: 80px;
  width: auto;
  display: block;
}
.hero__badges-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero__image {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  align-self: end;
  margin-bottom: -40px;
}
.hero__staff-img {
  width: 100%;
  height: auto;
  display: block;
}


/* ===== LINE CTA ===== */
.line-cta {
  background: var(--white);
  padding: 30px 20px;
}
.line-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.line-cta__banner {
  width: 100%;
  max-width: 750px;
  display: block;
  margin: 0 auto;
}


/* ===== INTRO ===== */
.intro {
  padding: 80px 20px;
  background: var(--white);
}
.intro__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.intro__stats {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.intro__stat {
  background: var(--blue);
  color: var(--white);
  border-radius: 12px;
  padding: 12px 28px;
  text-align: center;
}
.intro__stat-label {
  display: block;
  font-size: 13px;
  font-weight: 300;
  opacity: 0.85;
}
.intro__stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
}
.intro__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}
.intro__left {
  display: flex;
  flex-direction: column;
}
.intro__text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.intro__text p {
  color: var(--text-mid);
  margin-bottom: 16px;
}
.intro__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: #FFF8E1;
  border-radius: 20px;
  padding: 48px 32px 40px;
}
.intro__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.point-icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--blue-mid);
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(0, 185, 235, .2);
  flex-shrink: 0;
}
.intro__point strong {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 99px;
}
.intro__point p {
  font-size: 14px;
  margin: 0;
  text-align: left;
  color: var(--text-mid);
}


/* ===== PROBLEMS ===== */
.problems {
  background: var(--blue);
  position: relative;
  overflow: visible;
}
.problems::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border: 20px solid transparent;
  border-top-color: var(--blue);
  z-index: 2;
}
.problems .stripe-section {
  max-width: 100%;
}
.problems .section-header {
  max-width: var(--max-w);
  margin: 0 auto 40px;
}
.problems__grid {
  max-width: 1000px;
  margin: 0 auto;
}
.problems__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}


/* ===== FEATURES ===== */
.features {
  padding: 80px 20px;
  background: var(--blue-light);
}
.features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.features__item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,185,235,0.1);
  display: flex;
  flex-direction: column;
}
.features__badge {
  padding: 8px 0;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}
.features__badge--blue {
  background: var(--blue);
}
.features__image {
  padding: 16px 16px 0;
}
.features__img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.intro__img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}
.cases__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.results__img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  display: block;
}
.results__img--thumb {
  aspect-ratio: 5/3;
  border-radius: 8px 8px 0 0;
}
.maker-logo {
  width: 100%;
  max-width: 560px;
  margin-top: 16px;
  display: block;
}
.flow__img {
  flex-shrink: 0;
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.flow__step-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}
.flow__step-body p {
  font-size: 14px;
  color: var(--text-mid);
}
.features__item h3 {
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px 8px;
  color: var(--blue);
}
.features__item p {
  padding: 0 20px 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.features__label {
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px 8px;
  color: var(--blue);
}


/* ===== REASONS ===== */
.reasons {
  padding: 80px 20px;
  background: #EEF6FB;
}
.reasons__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.reason {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.reason:last-child {
  margin-bottom: 0;
}
.reason:nth-child(even) {
  flex-direction: row-reverse;
}
.reason__circle-col {
  flex-shrink: 0;
  position: relative;
  width: 200px;
}
.reason__num-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}
.reason__label {
  display: block;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.12em;
}
.reason__num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.reason__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.reason__circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reason__icon-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.5;
}
.reason__body {
  flex: 1;
}
.reason__title {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 8px 28px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.reason__body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}


/* ===== COMPARISON ===== */
.comparison {
  padding: 80px 20px;
  background: var(--blue-light);
}
.comparison__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.comparison__lead {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-dark);
  background: var(--yellow);
  display: inline-block;
  padding: 10px 28px;
  border-radius: 8px;
  position: relative;
  margin-bottom: 28px;
}
.comparison__lead::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--yellow);
}
.comparison__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.4;
}
.comparison__table-wrap {
  overflow-x: auto;
  display: flex;
  justify-content: center;
}
.comparison__table-img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  padding: 20px;
  background: #fff;
}


/* ===== CASES ===== */
.cases {
  padding: 80px 20px;
  background: #FFFDEB;
}
.cases__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.cases__group-title {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  padding: 8px 28px;
  border-radius: 99px;
  margin-bottom: 12px;
  text-align: center;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cases__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: -40px;
  margin-bottom: 32px;
  background: var(--white);
  padding: 60px;
  border-radius: 12px;
  border: 2px solid #0693e3;
}
.cases__block:last-child {
  margin-bottom: 0;
}
.cases__block-img {
  border-radius: 12px;
  overflow: hidden;
}
.cases__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.cases__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cases__item-title {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 99px;
  margin-bottom: 8px;
}



/* ===== REVIEWS ===== */
.reviews {
  padding: 80px 20px;
  background: var(--blue-light);
}
.reviews__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reviews__item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.reviews__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.reviews__stars {
  color: var(--yellow);
  font-size: 18px;
}
.reviews__source {
  font-size: 12px;
  color: var(--gray);
  background: var(--gray-light);
  padding: 2px 8px;
  border-radius: 4px;
}
.reviews__text {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.7;
}
.reviews__author {
  font-size: 13px;
  font-weight: bold;
  color: var(--blue);
}


/* ===== FLOW ===== */
.flow {
  padding: 80px 20px;
  background: var(--white);
}
.flow__inner {
  max-width: 800px;
  margin: 0 auto;
}
.flow__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.flow__step {
  width: 100%;
  background: var(--blue-light);
  border: 2px solid var(--blue);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.flow__step-num {
  flex-shrink: 0;
  text-align: center;
  min-width: 60px;
}
.flow__step-num span {
  display: block;
  font-size: 10px;
  font-weight: bold;
  color: var(--blue);
  letter-spacing: 0.1em;
}
.flow__step-num strong {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.flow__step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}
.flow__step p {
  font-size: 14px;
  color: var(--text-mid);
}
.flow__arrow {
  color: var(--blue);
  font-size: 24px;
  padding: 4px 0;
}


/* ===== AREA ===== */
.area {
  padding: 80px 20px;
  background: var(--blue-light);
}
.area__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.area__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.area__image {
  position: sticky;
  top: 90px;
}
.area__map-img {
  width: 70%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 0 auto;
}
.area__right {
  display: flex;
  flex-direction: column;
}
.area__badge {
  margin-bottom: 16px;
}
.area__badge-inner {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  padding: 6px 24px;
  border-radius: 4px;
}
.area__badge-inner strong {
  font-size: 20px;
  margin-left: 4px;
}
.area__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.area__desc {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.7;
}
.area__accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.area__accordion-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.area__accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
  list-style: none;
  gap: 8px;
}
.area__accordion-head::-webkit-details-marker { display: none; }
.area__accordion-head::after {
  content: '＋';
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.area__accordion-item[open] .area__accordion-head::after {
  content: '－';
}
.area__accordion-body {
  padding: 16px 20px;
}
.area__accordion-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}
.area__note {
  font-size: 14px;
  color: var(--blue-dark);
  font-weight: bold;
}


/* ===== FAQ ===== */
.faq {
  padding: 80px 20px;
  background: var(--white);
}
.faq__inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid #E0F4FB;
}
.faq__question {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  cursor: pointer;
}
.faq__answer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--blue-light);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 4px;
}
.faq__q,
.faq__a {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.faq__q {
  background: var(--orange);
  color: var(--white);
}
.faq__a {
  background: var(--blue);
  color: var(--white);
}
.faq__question p {
  font-size: 17px;
  font-weight: bold;
  padding-top: 6px;
  line-height: 1.5;
}
.faq__answer p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  padding-top: 6px;
}


/* ===== ACHIEVEMENTS ===== */
.achievements {
  position: relative;
  overflow: visible;
}
.achievements::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border: 20px solid transparent;
  border-top-color: var(--blue);
  z-index: 2;
}
.achievements .stripe-section {
  text-align: center;
}
.achievements__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.achievements__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.achievements__num {
  font-size: 56px;
  color: var(--yellow);
}
.achievements__sub {
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 16px;
}
.achievements__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}


/* ===== RESULTS ===== */
.results {
  padding: 80px 20px;
  background: var(--blue-light);
}
.results__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.results__swiper {
  padding-bottom: 48px !important;
}
.results__swiper-prev,
.results__swiper-next {
  color: var(--blue) !important;
}
.results__swiper-prev::after,
.results__swiper-next::after {
  font-size: 20px !important;
  font-weight: bold;
}
.results__swiper-pagination .swiper-pagination-bullet-active {
  background: var(--blue) !important;
}
.results__item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.results__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.results__img-wrap {
  position: relative;
}
.results__img-wrap .img-placeholder {
  border-radius: 0;
  aspect-ratio: 16/10;
}
.results__label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 11px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 4px;
}
.results__label--after {
  background: var(--blue);
}
.results__tags {
  padding: 14px 16px 8px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.results__tag {
  font-size: 11px;
  background: var(--blue-light);
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: bold;
}
.results__item h4 {
  font-size: 15px;
  font-weight: bold;
  padding: 8px 16px 12px;
  line-height: 1.5;
}
.results__link {
  display: inline-block;
  margin: 0 16px 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.results__link:hover { opacity: 0.85; }


/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(rgba(180,80,0,0.7), rgba(180,80,0,0.7)), url('images/hero_bg.webp') center/cover no-repeat;
}
.cta-banner__top {
  background: #F76A0B;
  width: 100%;
  text-align: center;
  padding: 48px 20px 50px;
  border-radius: 0 0 90% 90% / 0 0 90px 90px;
  margin-bottom: 40px;
}
.cta-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 60px;
}
.cta-banner__sub {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 0;
  line-height: 1.2;
}
.cta-banner__card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cta-banner__company {
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  margin: 0;
}
.cta-banner__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 52px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 4px;
  transition: opacity 0.2s;
}
.cta-banner__tel:hover { opacity: 0.75; }
.cta-banner__tel-icon {
  width: 40px;
  height: 40px;
  color: var(--blue);
}
.cta-banner__time {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 32px 32px;
}
.cta-banner__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 18px;
  font-weight: 700;
  min-width: 260px;
  transition: opacity 0.2s;
}
.cta-banner__btn-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.cta-banner__btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-banner__btn small {
  font-size: 11px;
  font-weight: normal;
  opacity: 0.85;
}
.cta-banner__btn:hover { opacity: 0.85; }
.cta-banner__btn--line {
  background: #06C755;
  color: var(--white);
}
.cta-banner__btn--mail {
  background: #F76A0B;
  color: var(--white);
}


/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  color: var(--text-dark);
  padding: 48px 20px 24px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer__nav a {
  font-size: 13px;
  color: var(--text-mid);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--text-dark); }
.footer__info {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer__logo {
  flex-shrink: 0;
}
.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer__desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer__address {
  font-size: 13px;
  color: var(--text-mid);
}
.footer__bottom {
  border-top: 1px solid #E0E0E0;
  padding-top: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__bottom a {
  font-size: 12px;
  color: var(--text-mid);
}
.footer__bottom span {
  font-size: 12px;
  color: var(--gray);
  margin-left: auto;
}


/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
.nav-mobile {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile__nav {
  display: flex;
  flex-direction: column;
}
.nav-mobile__link {
  display: block;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: bold;
  color: var(--text-dark);
  border-bottom: 1px solid #F0F0F0;
  transition: background 0.15s, color 0.15s;
}
.nav-mobile__link:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.nav-mobile__link--cta {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  border-bottom: none;
}
.nav-mobile__link--cta:hover {
  background: var(--orange-light);
  color: var(--white);
}
.nav-mobile__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: var(--blue);
  background: var(--blue-light);
}
.nav-mobile__tel-label {
  font-size: 11px;
  font-weight: 500;
}
.nav-mobile__tel-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
body.nav-open {
  overflow: hidden;
}


/* ========================================
   RESPONSIVE - SP (max-width: 767px)
======================================== */
@media (max-width: 767px) {

  /* Global */
  .section-header { margin-bottom: 30px; }

  /* Header */
  .header__nav { display: none; }
  .header__actions { display: none; }
  .header__inner { flex-wrap: nowrap; padding: 10px 16px; }
  .header__logo-img { height: 28px; }
  .hamburger { display: flex; }
  .nav-mobile { display: block; }

  /* Hero */
  .hero {
    margin-top: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 120px 16px 24px;
    min-height: 600px;
    gap: 24px;
  }
  .hero__title { font-size: 40px; }
  .hero__catch { font-size: 20px; }
  .hero__badges { gap: 8px; }
  .hero__badge-img { height: 60px; }

  /* Intro */
  .intro { padding: 48px 16px; }
  .intro__content { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
  .intro__left { order: 2; }
  .intro__image { order: 1; }
  .intro__text { margin-top: 10px; }
  .intro__text p { margin-bottom: 0; }
  .intro__text h3 { text-align: center; }
  .intro__stats { flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; width: 330px; margin: 0 auto; }
  .intro__points { grid-template-columns: 1fr; }
  .line-cta { padding: 15px; }

  /* Problems */
  .problems__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Features */
  .features { padding: 48px 16px; }
  .features__grid { grid-template-columns: 1fr; }

  /* Intro Points */
  .intro__points { grid-template-columns: 1fr; padding: 32px 20px; gap: 24px; }
  .intro__point { flex-direction: row; text-align: left; gap: 20px; }
  .point-icon { width: 80px; height: 80px; }
  .intro__point strong { font-size: 13px; padding: 5px 16px; }

  /* Reasons */
  .reasons { padding: 48px 16px; }
  .reason,
  .reason:nth-child(even) {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .reason__circle-col { width: 160px; }
  .reason__circle { width: 160px; height: 160px; }
  .reason__icon-text { font-size: 14px; }
  .reason__body { margin-top: -16px; width: 100%; position: relative; z-index: 1; }
  .reason__title { font-size: 16px; padding: 7px 20px; display: block; text-align: center; }
  .reason__body p { font-size: 14px; }

  /* Comparison */
  .comparison { padding: 48px 16px; }
  .comparison__title { font-size: 22px; }

  /* Cases */
  .cases { padding: 48px 16px; }
  .cases__block { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; padding: 40px; }
  .cases__img { aspect-ratio: 16/9; }

  /* Reviews */
  .reviews { padding: 48px 16px; }
  .reviews__grid { grid-template-columns: 1fr; }

  /* Flow */
  .flow { padding: 48px 16px; }
  .flow__step { flex-direction: row; }

  /* Area */
  .area { padding: 48px 16px; }
  .area__content { grid-template-columns: 1fr; gap: 24px; }
  .area__image { position: static; }
  .area__title { font-size: 22px; }

  /* FAQ */
  .faq { padding: 48px 16px; }

  /* Achievements */
  .achievements__num { font-size: 40px; }

  /* Results */
  .results { padding: 48px 16px; }
  .results__grid { grid-template-columns: 1fr; }

  /* CTA Banner */
  .cta-banner { padding: 0; }
  .cta-banner__top { padding: 32px 16px 56px; border-radius: 0 0 50% 50% / 0 0 40px 40px; margin-bottom: 24px; }
  .cta-banner__title { font-size: 30px; }
  .cta-banner__card { max-width: 330px; margin: 0 auto; }
  .cta-banner__tel { font-size: 27px; }
  .cta-banner__btns { padding: 0 16px 24px; flex-direction: column; }
  .cta-banner__btn { min-width: auto; width: 100%; font-size: 16px; }

  /* Footer */
  .footer__nav { gap: 12px; }
  .footer__bottom span { margin-left: 0; }

  /* Section headers */
  .section-header__title { font-size: 22px; }
}

/* ===== TABLET (768px - 1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero__title { font-size: 40px; }
  .features__grid { grid-template-columns: 1fr; }
  .problems__grid { grid-template-columns: repeat(3, 1fr); }
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   PAGE HERO（お問い合わせ・サンクス共通）
======================================== */
.page-hero {
  background-color: var(--blue);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.12) 20px,
    rgba(255,255,255,0.12) 40px
  );
  padding: 80px 20px 60px;
  text-align: center;
  color: var(--white);
}
.page-hero__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero__sub {
  font-size: 16px;
  opacity: .9;
}

/* ========================================
   お問い合わせフォーム
======================================== */
.contact-section {
  padding: 80px 20px;
  background: var(--gray-light);
}
.contact-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

/* 電話・LINE誘導 */
.contact-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-cta__item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.contact-cta__label {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 8px;
}
.contact-cta__tel {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 6px;
}
.contact-cta__time {
  font-size: 12px;
  color: var(--gray);
}
.contact-cta__line-btn {
  display: inline-block;
  background: #06C755;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  margin-top: 8px;
}

.contact-section__lead {
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.8;
}

/* CF7 フォームラッパー */
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

/* CF7 入力フィールド共通 */
.contact-form-wrap .wpcf7-form p {
  margin-bottom: 20px;
}
.contact-form-wrap .wpcf7-form input[type="text"],
.contact-form-wrap .wpcf7-form input[type="email"],
.contact-form-wrap .wpcf7-form input[type="tel"],
.contact-form-wrap .wpcf7-form select,
.contact-form-wrap .wpcf7-form textarea {
  width: 100%;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s;
}
.contact-form-wrap .wpcf7-form input:focus,
.contact-form-wrap .wpcf7-form select:focus,
.contact-form-wrap .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,185,235,.15);
}
.contact-form-wrap .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* CF7 送信ボタン */
.contact-form-wrap .wpcf7-form input[type="submit"] {
  display: block;
  margin: 0 auto;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 60px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(247,106,11,.35);
  transition: opacity .2s, transform .1s;
}
.contact-form-wrap .wpcf7-form input[type="submit"]:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* CF7 バリデーションエラー */
.contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 12px;
  color: var(--red);
  margin-top: 4px;
  display: block;
}
.contact-form-wrap .wpcf7-not-valid {
  border-color: var(--red) !important;
}
.contact-form-wrap .wpcf7-response-output {
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  margin-top: 16px;
}

/* ========================================
   サンクスページ
======================================== */
.thanks-section {
  padding: 80px 20px;
  background: var(--gray-light);
}
.thanks-section__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.thanks-box {
  background: var(--white);
  border-radius: 16px;
  padding: 56px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  margin-bottom: 40px;
}
.thanks-box__icon {
  font-size: 56px;
  margin-bottom: 20px;
}
.thanks-box__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 24px;
}
.thanks-box__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.thanks-box__note {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}
.thanks-box__note a {
  color: var(--blue);
  text-decoration: underline;
}

.thanks-urgent {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 40px;
}
.thanks-urgent__label {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: .85;
}
.thanks-urgent__tel {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}
.thanks-urgent__time {
  font-size: 12px;
  opacity: .8;
}

.thanks-section__back-btn {
  display: inline-block;
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 48px;
  border-radius: 50px;
  transition: opacity .2s;
}
.thanks-section__back-btn:hover { opacity: .85; }

/* ========================================
   お問い合わせ・サンクス レスポンシブ
======================================== */
@media (max-width: 767px) {
  .page-hero__title { font-size: 26px; }
  .contact-cta { grid-template-columns: 1fr; }
  .contact-cta__tel { font-size: 22px; }
  .contact-form { padding: 32px 20px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 6px; }
  .contact-form__label { padding-top: 0; }
  .contact-form__btn { width: 100%; padding: 18px 20px; }
  .thanks-box { padding: 40px 20px; }
  .thanks-box__title { font-size: 20px; }
  .thanks-urgent__tel { font-size: 26px; }
}

/* ========================================
   施工実績 アーカイブ
======================================== */
.jisseki-archive {
  background: var(--gray-light);
  min-height: 60vh;
}

/* ページヘッダー */
.page-header {
  background-color: var(--blue);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.12) 20px,
    rgba(255,255,255,0.12) 40px
  );
  padding: 72px 20px 56px;
  text-align: center;
  color: var(--white);
}
.page-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-header__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-header__desc {
  font-size: 15px;
  line-height: 1.8;
  opacity: .9;
}

/* コンテナ */
.archive-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 20px 80px;
}

/* フィルター */
.jisseki-filter {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.jisseki-filter__group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.jisseki-filter__group:last-child { border-bottom: none; }
.jisseki-filter__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  min-width: 120px;
  flex-shrink: 0;
}
.jisseki-filter__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jisseki-filter__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1.5px solid #ddd;
  color: var(--text-mid);
  background: var(--white);
  transition: all .2s;
}
.jisseki-filter__tag:hover,
.jisseki-filter__tag.is-active {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}
.jisseki-filter__count {
  font-size: 11px;
  opacity: .7;
}

/* カードグリッド */
.jisseki-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.jisseki-grid--small {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* カード */
.jisseki-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}
.jisseki-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.jisseki-card__link {
  display: block;
  color: inherit;
}

/* BEFORE/AFTER 画像エリア（カード） */
.jisseki-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.jisseki-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e0edf5;
}
.jisseki-card__img-wrap--after {
  border-left: 2px solid var(--white);
}
.jisseki-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.jisseki-card:hover .jisseki-card__img { transform: scale(1.04); }
.jisseki-card__img-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,33,163,.75);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .05em;
}
.jisseki-card__img-label--after {
  background: rgba(247,106,11,.85);
}

/* カード テキストエリア */
.jisseki-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 16px 0;
}
.jisseki-card__tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 700;
}
.jisseki-card__tag--type    { background: #fff3e8; color: var(--orange); }
.jisseki-card__tag--shutter { background: #f0f0f0; color: var(--text-mid); }
.jisseki-card__title {
  font-size: 15px;
  font-weight: 700;
  padding: 10px 16px 4px;
  line-height: 1.5;
}
.jisseki-card__location {
  font-size: 12px;
  color: var(--gray);
  padding: 0 16px 12px;
}
.jisseki-card__more {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  padding: 10px 16px 16px;
  border-top: 1px solid #f0f0f0;
}

/* ページネーション */
.archive-pagination {
  margin-top: 56px;
  text-align: center;
}
.archive-pagination .nav-links {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid #ddd;
  transition: all .2s;
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}
.archive-pagination .prev,
.archive-pagination .next {
  width: auto;
  padding: 0 16px;
}
.archive-empty {
  text-align: center;
  color: var(--gray);
  padding: 60px 0;
  font-size: 15px;
}

/* ========================================
   施工実績 シングル
======================================== */
.jisseki-single {
  background: var(--gray-light);
}
.single-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

/* パンくず */
.breadcrumb {
  margin-bottom: 32px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  font-size: 13px;
  color: var(--gray);
}
.breadcrumb__item + .breadcrumb__item::before {
  content: '›';
  margin-right: 4px;
  color: #ccc;
}
.breadcrumb__item a {
  color: var(--blue);
}
.breadcrumb__item a:hover { text-decoration: underline; }
.breadcrumb__item.is-current { color: var(--text-mid); }

/* 記事本体 */
.jisseki-detail {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  margin-bottom: 40px;
}
.jisseki-detail__header {
  padding: 40px 48px 32px;
  border-bottom: 1px solid #f0f0f0;
}
.jisseki-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.detail-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--blue-light);
  color: var(--blue-dark);
  transition: opacity .2s;
}
.detail-tag:hover { opacity: .75; }
.detail-tag--type    { background: #fff3e8; color: var(--orange); }
.detail-tag--shutter { background: #f0f0f0; color: var(--text-mid); }
.jisseki-detail__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 16px;
}
.jisseki-detail__meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--gray);
  flex-wrap: wrap;
}

/* BEFORE / AFTER 画像（シングル） */
.jisseki-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.jisseki-before-after__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e0edf5;
}
.jisseki-before-after__item--after {
  border-left: 3px solid var(--white);
}
.jisseki-before-after__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jisseki-before-after__label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,33,163,.8);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 6px;
  letter-spacing: .08em;
}
.jisseki-before-after__label--after {
  background: rgba(247,106,11,.9);
}

/* 本文 */
.jisseki-detail__body {
  padding: 40px 48px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  border-bottom: 1px solid #f0f0f0;
}
.jisseki-detail__body p { margin-bottom: 1.2em; }

/* 施工情報サマリー */
.jisseki-detail__summary {
  padding: 40px 48px;
}
.jisseki-detail__summary-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 4px solid var(--blue);
}
.jisseki-detail__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.jisseki-detail__table th,
.jisseki-detail__table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  vertical-align: top;
}
.jisseki-detail__table th {
  width: 140px;
  font-weight: 700;
  color: var(--text-mid);
  background: var(--gray-light);
  white-space: nowrap;
}
.jisseki-detail__table td a {
  color: var(--blue);
  text-decoration: underline;
}

/* 前後ナビ */
.single-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 48px;
}
.single-nav__prev { text-align: left; }
.single-nav__next { text-align: right; }
.single-nav__link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text-dark);
  transition: color .2s;
}
.single-nav__link:hover { color: var(--blue); }
.single-nav__dir {
  font-size: 12px;
  color: var(--gray);
}
.single-nav__title {
  font-weight: 700;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.single-nav__archive-btn {
  display: inline-block;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: opacity .2s;
}
.single-nav__archive-btn:hover { opacity: .85; }

/* 関連実績 */
.related-jisseki {
  margin-top: 8px;
}
.related-jisseki__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-left: 12px;
  border-left: 4px solid var(--orange);
}

/* ========================================
   施工実績 レスポンシブ
======================================== */
@media (max-width: 767px) {
  /* アーカイブ */
  .page-header__title { font-size: 26px; }
  .jisseki-filter { padding: 20px 16px; }
  .jisseki-filter__group { flex-direction: column; align-items: flex-start; }
  .jisseki-filter__label { min-width: unset; }
  .jisseki-grid { grid-template-columns: 1fr; }
  .jisseki-grid--small { grid-template-columns: 1fr 1fr; gap: 12px; }
  .archive-container { padding: 32px 16px 60px; }

  /* シングル */
  .single-container { padding: 32px 16px 60px; }
  .jisseki-detail__header { padding: 24px 20px 20px; }
  .jisseki-detail__title { font-size: 20px; }
  .jisseki-detail__body { padding: 24px 20px; }
  .jisseki-detail__summary { padding: 24px 20px; }
  .jisseki-detail__table th { width: 100px; }
  .single-nav { grid-template-columns: 1fr 1fr; }
  .single-nav__list { grid-column: 1 / -1; grid-row: 2; text-align: center; }
}


/* ========================================
   SP 固定フッターバー
======================================== */
.sp-fixed-bar {
  display: none;
}
@media (max-width: 767px) {
  .sp-fixed-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, .2);
  }
  .sp-fixed-bar__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px env(safe-area-inset-bottom, 12px);
    color: var(--white);
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 1;
  }
  .sp-fixed-bar__btn--tel  { background: var(--blue-dark); }
  .sp-fixed-bar__btn--line { background: #06C755; }
  .sp-fixed-bar__btn--mail { background: var(--orange); }
  .sp-fixed-bar__icon {
    width: 22px;
    height: 22px;
  }
  body { padding-bottom: 64px; }
}


/* ========================================
   プライバシーポリシー
======================================== */
.privacy-section {
  padding: 80px 20px;
  background: var(--white);
}
.privacy-section__inner {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-section__content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue);
}
.privacy-section__content h2:first-child {
  margin-top: 0;
}
.privacy-section__content p,
.privacy-section__content ul {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.privacy-section__content ul {
  padding-left: 1.5em;
}
.privacy-section__content ul li {
  list-style: disc;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .privacy-section { padding: 60px 20px; }
  .privacy-section__content h2 { font-size: 16px; }
}

/* ========================================
   プライバシーチェックボックス（お問い合わせ）
======================================== */
.privacy-check {
  text-align: center;
  margin: 24px 0 16px;
}
.privacy-check__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
}
.privacy-check__input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}
.privacy-check__label a {
  color: var(--blue);
  text-decoration: underline;
}

/* ========================================
   会社概要
======================================== */
.company-info {
  background: #F5F5F5;
}
.company-info__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
}
.company-info__table-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.company-info__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.7;
}
.company-info__table tr {
  border-bottom: 1px solid #e5e7eb;
}
.company-info__table tr:first-child {
  border-top: 1px solid #e5e7eb;
}
.company-info__table th {
  width: 200px;
  padding: 20px 24px;
  text-align: left;
  font-weight: bold;
  color: #00B9EB;
  vertical-align: top;
  white-space: nowrap;
}
.company-info__table td {
  padding: 20px 24px;
  color: var(--text-dark);
  vertical-align: top;
}
@media (max-width: 767px) {
  .company-info__inner { padding: 60px 20px; }
  .company-info__table th {
    width: auto;
    display: block;
    padding: 16px 0 4px;
    border-bottom: none;
    white-space: normal;
    font-size: 13px;
    color: #00B9EB;
  }
  .company-info__table td {
    display: block;
    padding: 0 0 16px;
  }
  .company-info__table tr {
    display: block;
    border-bottom: 1px solid #e5e7eb;
  }
}
