/*
Designed by En-Graphiction Templates
https://en-graphiction.com
Refactored for Professional Quality Standard
*/

@charset "UTF-8";

/* ==========================================================================
   Design Tokens & Variables
   ========================================================================== */
:root {
  /* Color Palette */
  --color-bg-main: #f7f7f6;
  --color-bg-card: #ffffff;
  --color-text-main: #1d1d1f;
  --color-text-muted: #6e6e73;
  --color-text-light: #86868b;
  --color-accent: #111315;
  --color-accent-hover: #2d3035;
  --color-border: #e2e2e5;
  --color-border-subtle: #f0f0f2;

  /* Typography */
  --font-sans: 'Zen Kaku Gothic New', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Spacing */
  --container-max-width: 1200px;
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transition & Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out-expo);
  --transition-normal: 0.35s var(--ease-out-expo);

  /* Elevation Shadow */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  line-height: 1.8;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

.sp-only {
  display: none;
}

/* ==========================================================================
   Header (Glassmorphism Concept)
   ========================================================================== */
.site-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color var(--transition-normal);
}

.header-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-cta {
  display: inline-block;
  margin-left: auto;
}
/* PC表示 */
@media (min-width: 769px) {
  .header-cta {
    display: none !important;
  }
}

.site-logo a {
  display: flex;
  flex-direction: column;
}

.site-logo a:hover {
  opacity: 1;
}

.logo-text {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  text-transform: lowercase;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ヘッダー右側のお問い合わせボタン */
.btn-header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background-color var(--transition-fast);
}

.btn-header-contact:hover {
  background-color: var(--color-accent-hover);
  color: #ffffff;
  opacity: 1;
}

/* Navigation (PC Only Display) */
.site-nav {
  display: block;
}

.site-nav .nav-list {
  display: flex;
  gap: 40px;
  align-items: center;
}

.site-nav .nav-item a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text-main);
  padding: 8px 0;
  position: relative;
  display: inline-block;
  transition: color var(--transition-fast);
}
.site-nav .nav-item a i{
  font-size: 1.6rem;
  bottom: -3px;
  position: relative;
}

.site-nav .nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.site-nav .nav-item a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.site-nav .nav-item a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-item.active a {
  font-weight: 700;
  color: var(--color-accent);
}

.site-nav .nav-item.active a::after {
  transform: scaleX(1);
}

/* ==========================================================================
   Sections Common
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.align-left {
  text-align: left;
}

.section-en {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(120px, 18vw, 220px) 0 clamp(100px, 12vw, 160px);
  color: #ffffff;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 19, 21, 0.4) 0%, rgba(17, 19, 21, 0.75) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-catch {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  word-break: keep-all;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.hero-cta {
  margin-top: 36px;
}

.btn-hero {
  background-color: #ffffff;
  color: var(--color-accent);
  padding: 16px 40px;
  font-weight: 700;
}

.btn-hero:hover {
  background-color: var(--color-accent);
  color: #ffffff;
}

/* ==========================================================================
   Concept Section
   ========================================================================== */
.concept-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: var(--color-bg-card);
}

.concept-lead {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  color: var(--color-accent);
  margin-bottom: 32px;
  line-height: 1.5;
}

.concept-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-text-muted);
  text-align: justify;
  font-size: 1.02rem;
  line-height: 2;
}

/* ==========================================================================
   Service Section
   ========================================================================== */
.service-section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.service-card {
  background-color: var(--color-bg-card);
  padding: 48px 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.12);
}

.service-card-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-light);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-border-subtle);
  transition: border-color var(--transition-normal);
}

.service-card:hover .service-card-title {
  border-color: var(--color-accent);
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.85;
}

/* ==========================================================================
   About Brief Section
   ========================================================================== */
.about-brief-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background-color: var(--color-bg-card);
  border-top: 1px solid var(--color-border-subtle);
}

.about-brief-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 80px);
}

.about-brief-content {
  flex: 1;
  max-width: 540px;
}

.about-brief-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  line-height: 1.9;
}

/* 画像エリアのスタイル */
.about-brief-media {
  flex: 1;
  position: relative;
}

.about-brief-media img {
  width: 100%;
  height: clamp(320px, 30vw, 420px);
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* スマホ表示対応 (768px以下) */
@media screen and (max-width: 768px) {
  .about-brief-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-brief-content {
    max-width: 100%;
  }

  .about-brief-media {
    width: 100%;
  }

  .about-brief-media img {
    height: 260px;
  }
}

/* ==========================================================================
   Buttons (Modern Editorial Style)
   ========================================================================== */
.btn-wrapper {
  text-align: center;
}

.btn-wrapper.align-left {
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.btn:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: clamp(80px, 10vw, 120px) 0;
}

.faq-list {
  max-width: 840px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.faq-item:hover {
  border-color: #d1d1d6;
}

.faq-item.is-active {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-q-icon {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-right: 20px;
  flex-shrink: 0;
}

.faq-question-text {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--color-accent);
  flex-grow: 1;
}

.faq-arrow {
  font-size: 1.35rem;
  color: var(--color-text-light);
  transition: transform var(--transition-normal), color var(--transition-normal);
  margin-left: 20px;
  flex-shrink: 0;
}

.faq-item.is-active .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-normal);
}

.faq-item.is-active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 0 32px;
  background-color: var(--color-bg-main);
  transition: padding var(--transition-normal);
}

.faq-item.is-active .faq-answer-inner {
  padding: 24px 32px;
  border-top: 1px solid var(--color-border-subtle);
}

.faq-a-icon {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.3rem;
  color: #d9534f;
  margin-right: 20px;
  flex-shrink: 0;
  line-height: 1.5;
}

.faq-answer-text {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background-color: var(--color-bg-main);
  color: var(--color-accent);
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  color: var(--color-accent);
}

.cta-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.btn-cta {
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 20px 56px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.btn-cta:hover {
  background-color: var(--color-accent-hover);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--color-accent);
  color: #ffffff;
  padding: 80px 0 32px;
}

.footer-inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-transform: lowercase;
}

.footer-address,
.footer-tel {
  font-size: 0.9rem;
  color: #a1a1a6;
  line-height: 1.8;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 72px;
  max-width: 100%;
  align-items: center;
  align-content: center;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.7;
}
/* 右側ブロック全体 */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-message {
  color: #a1a1a6;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin: 0;
  text-align: right;
}

/* ロゴと住所のスタイル調整 */
.footer-logo {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-address,
.footer-tel {
  color: #a1a1a6;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 40px;
  max-width: 100%;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.7;
}
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 64px;
  padding-top: 32px;
  font-size: 0.8rem;
  color: #86868b;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .footer-top-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}
/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  background-color: var(--color-accent);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition-normal), visibility var(--transition-normal), transform var(--transition-normal), background-color var(--transition-fast);
  z-index: 99;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Responsive Settings (Mobile / Max-width: 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* Layout & Utility */
  body {
    padding-bottom: 56px;
  }

  .container {
    padding: 0 20px;
  }

  .sp-only {
    display: block;
  }

  /* Header & Navigation */
  .site-header {
    padding: 0;
  }

  .header-inner {
    padding: 12px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .logo-sub {
    font-size: 0.6rem;
  }

  .site-nav {
    display: none !important;
  }

  /* Bottom Fixed Nav */
  .bottom-fix-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  }

  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-text-main);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    border-right: 1px solid var(--color-border-subtle);
  }

  .bottom-nav-item:last-child {
    border-right: none;
  }

  .bottom-nav-item i {
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: var(--color-accent);
  }

  /* Hero Section */
  .hero-inner {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
    line-height: 1.4;
    letter-spacing: 0.05em;
    word-break: keep-all;
    overflow-wrap: break-word;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  /* Service Section */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 32px 24px;
  }

  /* FAQ Section */
  .faq-question {
    padding: 20px;
  }

  .faq-item.is-active .faq-answer-inner {
    padding: 20px;
  }

  .faq-q-icon,
  .faq-a-icon {
    margin-right: 14px;
  }

  /* Footer & Back-to-top */
  .footer-inner {
    flex-direction: column;
    gap: 36px;
    padding: 0 20px;
    align-items: center;
    text-align: center;
  }
/* 左側ブロック（ロゴ・住所） */
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* 右側ブロック */
  .footer-right {
    align-items: center;
    width: 100%;
  }

  /* 追加メッセージ */
  .footer-message {
    text-align: center;
    margin-bottom: 8px;
  }

  /* フッターナビゲーション */
  .footer-nav ul {
    justify-content: center;
    gap: 12px 24px;
  }

  .footer-address,
  .footer-tel {
    text-align: center;
  }
  .back-to-top {
    bottom: 76px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

body, .page-service {
  overflow-x: hidden;
}

/* ページヘッダー全体 */
.page-header {
  background-color: #f8f8f8;
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* メインタイトル構造 */
.page-header__title .en {
  display: block;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #111111;
  line-height: 1;
  margin-bottom: 12px;
}

.page-header__title .jp {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #888888;
  font-weight: 500;
}

/* 背景にうっすら浮かぶデカ文字 */
.page-header__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 140px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  letter-spacing: 0.1em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

/* リード文エリア */
.svc-lead {
  padding: 80px 20px 60px;
  text-align: center;
}

.svc-lead .inner {
  max-width: 800px;
  margin: 0 auto;
}

.svc-lead__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: #111111;
}

.svc-lead__text {
  font-size: 15px;
  line-height: 2;
  color: #555555;
  text-align: justify;
  text-align-last: center;
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 20px 40px;
  }
  .page-header__title .en {
    font-size: 28px;
  }
  .page-header__bg-text {
    font-size: 70px;
  }
  .svc-lead__title {
    font-size: 20px;
  }
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding: 60px 0;
}

/* 各サービスアイテムの基本設定 */
.svc-item {
  display: flex;
  align-items: center;
  width: 100%;
}

/* --- 画像が「左」へ突き抜け--- */
.svc-item.is-img-left {
  flex-direction: row;
}

.svc-item.is-img-left .svc-item__image {
  width: 55vw;
  margin-left: calc(50% - 50vw);
}

.svc-item.is-img-left .svc-item__body {
  width: 45vw;
  max-width: 500px;
  padding-left: 5%;
  padding-right: 5vw;
}

/* --- 画像が「右」へ突き抜け --- */
.svc-item.is-img-right {
  flex-direction: row-reverse;
}

.svc-item.is-img-right .svc-item__image {
  width: 55vw;
  margin-right: calc(50% - 50vw);
}

.svc-item.is-img-right .svc-item__body {
  width: 45vw;
  max-width: 500px;
  padding-right: 5%;
  padding-left: 5vw;
}

/* 画像共通定義 */
.svc-item__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* テキスト部分の装飾 */
.svc-item__num {
  font-size: 56px;
  font-weight: 700;
  color: #e2e2e2;
  line-height: 1;
  display: block;
}

.svc-item__title {
  font-size: 24px;
  margin: 8px 0 20px;
  letter-spacing: 0.05em;
}

.svc-item__text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

.svc-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-item__tags li {
  font-size: 12px;
  background-color: #f4f4f4;
  color: #666;
  padding: 4px 12px;
  border-radius: 20px;
}

/* --- スマホ表示時の崩れ防止 --- */
@media (max-width: 768px) {
  .svc-list {
    gap: 60px;
  }

  .svc-item.is-img-left,
  .svc-item.is-img-right {
    flex-direction: column;
  }

  .svc-item.is-img-left .svc-item__image,
  .svc-item.is-img-right .svc-item__image {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .svc-item__image img {
    height: 280px;
  }

  .svc-item.is-img-left .svc-item__body,
  .svc-item.is-img-right .svc-item__body {
    width: 100%;
    max-width: 100%;
    padding: 30px 20px 0;
  }
}
/* ==========================================================================
   Page About
   ========================================================================== */
.about-lead {
  padding: 80px 20px 60px;
  text-align: center;
}

.about-lead .inner {
  margin: 0 auto;
}

.about-lead__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--color-accent);
}

.about-lead__text {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-muted);
  text-align: justify;
  text-align-last: center;
}

/* メイン画像 */
.about-info {
  padding-bottom: 120px;
}

.about-info__media {
  margin-bottom: 64px;
}

.about-info__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* 会社概要テーブル（dl / dt / dd） */
.about-spec {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.about-spec__row {
  display: flex;
  padding: 24px 16px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.about-spec dt {
  width: 220px;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.about-spec dd {
  flex-grow: 1;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.about-spec dd ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-spec dd li {
  position: relative;
  padding-left: 1.2em;
}

.about-spec dd li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.tel-link {
  color: inherit;
  text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .about-lead {
    padding: 60px 20px 40px;
  }

  .about-lead__title {
    font-size: 20px;
  }

  .about-info {
    padding-bottom: 80px;
  }

  .about-info__media img {
    height: 240px;
    margin-bottom: 40px;
  }

  .about-spec__row {
    flex-direction: column;
    gap: 8px;
    padding: 20px 8px;
  }

  .about-spec dt {
    width: 100%;
    font-size: 0.9rem;
  }

  .about-spec dd {
    font-size: 0.9rem;
  }
}
/* ==========================================================================
   お問い合わせページ
   ========================================================================== */

/* Lead Section */
.contact-lead {
  padding: 80px 20px 40px;
  text-align: center;
}

.contact-lead .inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-lead__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--color-accent, #111);
}

.contact-lead__text {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-muted, #666);
}

/* Container */
.contact-container {
  padding-bottom: 120px;
}

.contact-container .inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Telephone Contact Box */
.contact-tel-box {
  background-color: var(--color-accent, #111);
  color: #fff;
  padding: 36px 24px;
  border-radius: var(--radius-md, 8px);
  text-align: center;
  margin-bottom: 48px;
}

.contact-tel-box__sub {
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin-bottom: 12px;
}

.contact-tel-box__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--font-en, sans-serif);
  transition: opacity 0.2s ease;
}

.contact-tel-box__num:hover {
  opacity: 0.8;
}

.contact-tel-box__num .tel-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-tel-box__time {
  font-size: 13px;
  margin-top: 12px;
  opacity: 0.7;
}

/* Divider Title */
.contact-divider {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.contact-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-border, #eee);
  z-index: 1;
}

.contact-divider span {
  position: relative;
  z-index: 2;
  background-color: var(--color-bg-main);
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent, #111);
}

/* Form Area */
.contact-form {
  background: var(--color-bg-subtle, #f9f9f9);
  padding: 56px 48px;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--color-border, #eee);
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent, #111);
  letter-spacing: 0.03em;
}

.badge-required {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-accent, #111);
  border-radius: 2px;
  line-height: 1.4;
}

/* Form Controls (Inputs & Textarea) */
.form-control input[type="text"],
.form-control input[type="email"],
.form-control input[type="tel"],
.form-control textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #111;
  background-color: #fff;
  border: 1px solid var(--color-border, #ccc);
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.form-control input::placeholder,
.form-control textarea::placeholder {
  color: #aaa;
}

.form-control input:focus,
.form-control textarea:focus {
  outline: none;
  border-color: var(--color-accent, #111);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.form-control textarea {
  resize: vertical;
  min-height: 160px;
}

/* Submit Button Block */
.tac {
  text-align: center;
  margin-top: 48px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 360px;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: var(--color-accent, #111);
  border: 1px solid var(--color-accent, #111);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-submit i {
  font-size: 1.1em;
}
.grecaptcha-badge {
    bottom: 12% !important;
}
.contact-privacy-note {
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: #666;
}

.contact-privacy-note a {
  color: #0066cc;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.contact-privacy-note a:hover {
  opacity: 0.7;
}
/* ==========================================================================
   Responsive (Max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .contact-lead {
    padding: 60px 20px 30px;
  }

  .contact-lead__title {
    font-size: 20px;
  }

  .contact-container {
    padding-bottom: 80px;
  }

  .contact-tel-box {
    padding: 28px 16px;
    margin-bottom: 36px;
  }

  .contact-tel-box__num {
    font-size: 26px;
  }

  .contact-tel-box__num .tel-icon {
    width: 22px;
    height: 22px;
  }

  .contact-divider {
    margin-bottom: 32px;
  }

  .contact-form {
    padding: 32px 20px;
  }

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

  .btn-submit {
    max-width: 100%;
  }
}
/* ==========================================================================
   Page Thanks
   ========================================================================== */
.thanks-content {
  padding: 80px 20px 120px;
}

.thanks-content .inner {
  max-width: 760px;
  margin: 0 auto;
}

.thanks-card {
  background: var(--color-bg-subtle, #f9f9f9);
  padding: 64px 48px;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--color-border, #eee);
  text-align: center;
}

.thanks-icon {
  font-size: 56px;
  color: var(--color-accent, #111);
  line-height: 1;
  margin-bottom: 24px;
}

.thanks-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent, #111);
  margin-bottom: 24px;
}

.thanks-text {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 24px;
}

.thanks-note {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-muted, #666);
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  border: 1px dashed var(--color-border, #ddd);
  margin-bottom: 40px;
  text-align: left;
}

/* ボタン調整 */
.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: var(--color-accent, #111);
  border: 1px solid var(--color-accent, #111);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background-color: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .thanks-content {
    padding: 60px 20px 80px;
  }

  .thanks-card {
    padding: 40px 20px;
  }

  .thanks-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .thanks-title {
    font-size: 20px;
  }

  .thanks-text {
    font-size: 14px;
  }

  .btn-back {
    max-width: 100%;
  }
}
/* ==========================================================================
   Page Error (404 / 403)
   ========================================================================== */
.error-content {
  padding: 80px 20px 120px;
}

.error-content .inner {
  max-width: 760px;
  margin: 0 auto;
}

.error-card {
  background: var(--color-bg-subtle, #f9f9f9);
  padding: 64px 48px;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--color-border, #eee);
  text-align: center;
}

.error-code {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-accent, #111);
  font-family: var(--font-en, sans-serif);
  margin-bottom: 16px;
  opacity: 0.2;
}

.error-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent, #111);
  margin-bottom: 24px;
}

.error-text {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-muted, #666);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .error-content {
    padding: 60px 20px 80px;
  }

  .error-card {
    padding: 40px 20px;
  }

  .error-code {
    font-size: 48px;
  }

  .error-title {
    font-size: 20px;
  }

  .error-text {
    font-size: 14px;
  }
}
/* ==========================================================================
   Service Works Gallery
   ========================================================================== */
.svc-gallery {
  padding: 100px 20px;
  background-color: var(--color-bg-subtle, #f9f9f9);
}

.svc-gallery .inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* セクション見出し（共通で使える場合は調整してください） */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header__en {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-muted, #777);
  margin-bottom: 8px;
  font-family: var(--font-en, sans-serif);
}

.section-header__jp {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent, #111);
}

/* グリッドレイアウト */
.svc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.svc-gallery__item {
  display: block;
  background: #fff;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  border: 1px solid var(--color-border, #eee);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.svc-gallery__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #eee;
}

.svc-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.svc-gallery__item:hover .svc-gallery__img img {
  transform: scale(1.05);
}

.svc-gallery__content {
  padding: 24px;
}

.svc-gallery__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background-color: var(--color-bg-subtle, #f0f0f0);
  color: var(--color-accent, #111);
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.svc-gallery__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent, #111);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.svc-gallery__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted, #666);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .svc-gallery {
    padding: 60px 20px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header__jp {
    font-size: 22px;
  }

  .svc-gallery__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-gallery__content {
    padding: 20px;
  }
}
/* ==========================================================================
   Service Works Gallery (Modal & Button Updates)
   ========================================================================== */
/* カード本体 */
button.svc-gallery__item {
  width: 100%;
  padding: 0;
  border: 1px solid var(--color-border, #eee);
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-gallery__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #eee;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.svc-gallery__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-insta i {
  font-size: 1.2em;
}

.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.image-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.image-modal__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-modal__content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.image-modal__caption {
  color: #fff;
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.image-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 0 8px;
  transition: opacity 0.2s ease;
}

.image-modal__close:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .image-modal__content img {
    max-height: 65vh;
  }

  .image-modal__close {
    top: -40px;
    right: -8px;
  }
}
/* =========================================
   プライバシーポリシー（privacy.php）
========================================= */

.page-privacy {
  padding-bottom: 80px;
}

.privacy-content {
  padding: 60px 0;
}

.privacy-lead {
  margin-bottom: 48px;
  line-height: 1.8;
  font-size: 0.95rem;
  color: #333;
}

.privacy-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privacy-item h2 {
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 2px solid #333;
  color: #222;
}

.privacy-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

.privacy-item p:last-child {
  margin-bottom: 0;
}

.privacy-item ul {
  margin-top: 12px;
  padding-left: 20px;
  list-style-type: disc;
}

.privacy-item ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 6px;
}

.privacy-item ul li:last-child {
  margin-bottom: 0;
}

/* お問い合わせ窓口ボックス */
.privacy-contact-box {
  margin-top: 16px;
  padding: 24px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.privacy-contact-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #222;
}

.privacy-contact-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 4px;
}

/* 制定日・改定日 */
.privacy-date {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px dashed #ccc;
  text-align: right;
}

.privacy-date p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

/* スマホ表示の調整 */
@media screen and (max-width: 767px) {
  .privacy-content {
    padding: 40px 0;
  }

  .privacy-lead {
    margin-bottom: 32px;
  }

  .privacy-body {
    gap: 32px;
  }

  .privacy-item h2 {
    font-size: 1.1rem;
  }

  .privacy-contact-box {
    padding: 16px;
  }
}
/* ==========================================================================
   Service Price Section (svc-price)
   ========================================================================== */
.svc-price {
  padding: 100px 20px;
  background-color: var(--color-bg-card);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}
.svc-price .inner {
  max-width: 1170px;
  margin: 0 auto;
}
.svc-price__lead {
  max-width: 720px;
  margin: 0 auto 56px;
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-muted);
  text-align: center;
}

/* 費用の内訳（4項目） */
.svc-price__breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 72px;
}
.svc-price__breakdown-item {
  background-color: var(--color-bg-main);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.svc-price__breakdown-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.svc-price__breakdown .svc-price__num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #dcdcdc;
  line-height: 1;
  margin-bottom: 14px;
}
.svc-price__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.svc-price__breakdown-item .svc-price__text {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--color-text-muted);
}

/* 台数別テーブル */
.svc-price__table-wrap {
  max-width: 620px;
  margin: 0 auto 56px;
}
.svc-price__table-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.svc-price__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.svc-price__table th,
.svc-price__table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
}
.svc-price__table th {
  background-color: var(--color-accent);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.svc-price__table td {
  border-bottom: 1px solid var(--color-border-subtle);
  color: var(--color-text-main);
}
.svc-price__table tbody tr:last-child td {
  border-bottom: none;
}
.svc-price__note {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-light);
  text-align: center;
}

/* 固定資産税 注記ボックス */
.svc-price__note-box {
  max-width: 760px;
  margin: 0 auto;
  background-color: var(--color-bg-main);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 36px;
}
.svc-price__note-box-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.svc-price__note-box-text {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--color-text-muted);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .svc-price {
    padding: 60px 20px;
  }
  .svc-price__lead {
    margin-bottom: 40px;
  }
  .svc-price__breakdown {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 48px;
  }
  .svc-price__breakdown-item {
    padding: 24px 18px;
  }
  .svc-price__table th,
  .svc-price__table td {
    padding: 12px 10px;
    font-size: 13px;
  }
  .svc-price__note-box {
    padding: 24px 20px;
  }
}
