@charset "UTF-8";
/*! normalize.scss v8.0.1 | MIT License | github.com/necolas/normalize.css - Lightweight version */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* Sections
   ========================================================================== */
body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header,
main, menu, nav, section {
  display: block;
}

/* グループ化コンテンツ
   ========================================================================== */
hr {
  height: 0;
  overflow: visible;
}

/* メディア
   ========================================================================== */
img {
  border: 0;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

/* テキストレベル
   ========================================================================== */
a {
  background-color: transparent;
  text-decoration: none;
}

a:active, a:hover {
  outline: 0;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

/* インタラクティブ
   ========================================================================== */
audio, canvas, progress, video {
  display: inline-block;
}

/* フォーム
   ========================================================================== */
button, input, select, textarea {
  font: inherit;
  margin: 0;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

input {
  line-height: normal;
}

textarea {
  overflow: auto;
}

/* テーブル
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

td, th {
  padding: 0;
}

/* リセット
   ========================================================================== */
figure, ul, ol, li, p, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

/* ===============================================
   基本設定・共通カラー
=============================================== */
:root {
  --primary-color: #0066cc;
  --primary-gradient: linear-gradient(135deg, #0066cc, #0099ff);
  --primary-shadow: rgba(0, 102, 204, 0.3);
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #bdc3c7;
  --bg-light: #f8f9fa;
  --white: #fff;
  --border-light: #eee;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================================
   ボタン
=============================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px var(--primary-shadow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0055bb, #0088ee);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* ===============================================
   ヘッダー
=============================================== */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: var(--transition);
}

/* スクロール時のヘッダー変更 */
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header.scrolled .header-top {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.header.scrolled .header-main {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* ナビゲーションは常に表示 */
.header.scrolled .header-nav {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header-top {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
  max-height: 50px;
  transition: var(--transition);
  overflow: hidden;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.header-phone a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header-phone a:hover {
  color: var(--text-lighter);
}

.header-main {
  padding: 5px 0;
  border-bottom: 1px solid #e9ecef;
  max-height: 100px;
  transition: var(--transition);
  overflow: hidden;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo .logo-text {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--text-color);
}
.header-logo .logo-image {
  height: 90px;
  width: auto;
  max-width: 200px;
  flex-shrink: 0;
}
.header-logo .company-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.header-logo .company-main {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}
.header-logo .company-sub {
  display: block;
  font-size: 16px;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.2;
}
.header-logo .logo-main {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}
.header-logo .logo-sub {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 2px;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-area {
  text-align: center;
}

.area-text {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.area-list {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}

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

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  position: relative;
}
.nav-menu li a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}
.nav-menu li a:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* ハンバーガーメニュー */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10001;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
}

.hamburger-icon {
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
}
.hamburger-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 3px;
  left: 9px;
  transition: all 0.35s ease-in-out;
}
.hamburger-icon span:nth-child(1) {
  top: 0;
}
.hamburger-icon span:nth-child(2) {
  top: 9px;
}
.hamburger-icon span:nth-child(3) {
  top: 18px;
}

/* ハンバーガーメニュー開いた状態 */
.hamburger-menu.is-open .hamburger-icon span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.hamburger-menu.is-open .hamburger-icon span:nth-child(2) {
  width: 0%;
  left: 50%;
}
.hamburger-menu.is-open .hamburger-icon span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  z-index: 10000;
  padding-top: 80px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .mobile-nav {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* モバイルナビゲーションのオーバーレイ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

body.is-menu-open .mobile-nav-overlay {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 300px;
  margin: 0 auto;
}
.mobile-nav-menu li a {
  display: block;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  border-bottom: 1px solid var(--border-light);
  font-weight: 500;
  transition: var(--transition);
}
.mobile-nav-menu li a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}
.mobile-nav-menu li:last-child a {
  border-bottom: none;
}

.mobile-logo-image {
  height: 40px;
  width: auto;
  max-width: 120px;
}

.mobile-nav-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav-header .logo-text a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-color);
}
.mobile-nav-header .mobile-nav-company-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}
.mobile-nav-header .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-color);
  cursor: pointer;
}

/* スマホ版固定ヘッダーロゴ */
.mobile-header-logo {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1000;
  display: none;
}
@media (max-width: 768px) {
  .mobile-header-logo {
    display: block;
  }
}
.mobile-header-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.mobile-header-logo .mobile-header-logo-image {
  height: 50px;
  width: auto;
  max-width: 80px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
  flex-shrink: 0;
}
.mobile-header-logo .mobile-company-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}
@media (max-width: 365px) {
  .mobile-header-logo .mobile-company-name {
    font-size: 12px;
  }
}

/* ===============================================
   メインビジュアル
=============================================== */
.hero {
  position: relative;
  color: var(--white);
  padding: 200px 0 100px;
  text-align: center;
  margin-top: 130px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 50px 0px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.9), -1px -1px 0 rgba(0, 0, 0, 0.9), 1px -1px 0 rgba(0, 0, 0, 0.9), -1px 1px 0 rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
  color: var(--white);
  letter-spacing: 1px;
}
.hero-content .hero-subtitle {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 500;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.9), -1px -1px 0 rgba(0, 0, 0, 0.9), 1px -1px 0 rgba(0, 0, 0, 0.9), -1px 1px 0 rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
  color: #fff;
}
.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.8;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.9), -1px -1px 0 rgba(0, 0, 0, 0.9), 1px -1px 0 rgba(0, 0, 0, 0.9), -1px 1px 0 rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-weight: 500;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 4;
  padding: 0 20px;
}

.slider-arrow {
  background-color: transparent;
  color: var(--white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
.slider-arrow:hover {
  opacity: 0.7;
}

.slider-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.slider-pagination .dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.slider-pagination .dot.active {
  background-color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* ===============================================
   特徴セクション
=============================================== */
.features {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: var(--white);
}

/* ===============================================
   事業内容セクション
=============================================== */
.services {
  padding: 80px 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.service-card:hover .service-image img {
  transform: scale(1.15);
}
.service-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.service-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.service-image {
  width: 100%;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.service-image .service-image-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.service-image .service-image-gallery img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.section-link {
  text-align: center;
  margin-top: 50px;
}

/* ===============================================
   代表メッセージセクション
=============================================== */
.message {
  padding: 80px 0;
  background: var(--white);
}

.message-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

.message-image {
  text-align: center;
}
.message-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.message-text h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* ===============================================
   対応エリアセクション
=============================================== */
.area {
  padding: 80px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.area-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.area-content > p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 50px;
  line-height: 1.8;
}
.area-content > p:last-child {
  margin-top: 50px;
  margin-bottom: 0;
  font-size: 16px;
  color: var(--text-lighter);
  font-style: italic;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 0;
}

.area-item {
  background: linear-gradient(135deg, var(--white) 0%, #f9fafc 100%);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
.area-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 15px 15px 0 0;
}
.area-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}
.area-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  padding-left: 25px;
}
.area-item h3::before {
  content: "📍";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}
.area-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

/* ===============================================
   CTAセクション
=============================================== */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: var(--white);
  text-align: center;
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.cta p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
  border: 2px solid transparent;
}
.cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #0055bb, #0088ee);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}
.cta-buttons .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.cta-buttons .btn-secondary:hover {
  background: var(--white);
  color: #1e3a8a;
}

/* ===============================================
   フッター
=============================================== */
.footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 60px 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-info {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo .logo-main {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.footer-logo .logo-sub {
  color: #bdc3c7;
  font-size: 14px;
}

.footer-logo-image {
  height: 140px;
  width: auto;
  max-width: 250px;
}

.footer-description {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.8;
  color: #bdc3c7;
}

.footer-info h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 1px solid #3498db;
  padding-bottom: 10px;
}

.footer-contact p,
.footer-office p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #bdc3c7;
}

.footer-phone strong {
  font-size: 20px;
  color: #fff;
}

.footer-phone a,
.footer-email a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-phone a:hover,
.footer-email a:hover {
  color: var(--primary-color);
}

.footer-social {
  margin-top: 15px;
  text-align: center;
}
.footer-social a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s ease;
}
.footer-social a:hover {
  transform: scale(1.1);
}
.footer-social a img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-nav {
  border-top: 1px solid #34495e;
  padding: 30px 0;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px 30px;
}

.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-menu li a:hover {
  color: #3498db;
}

.footer-bottom {
  background: #233140;
  padding: 25px 0;
}

.copyright {
  text-align: center;
  font-size: 13px;
  color: #95a5a6;
}

@media (min-width: 769px) {
  .footer-company {
    flex: 1 1 300px;
  }
  .footer-contact, .footer-office {
    flex: 1 1 200px;
  }
  .footer-info {
    flex: 2 1 500px;
  }
}
/* ===============================================
   レスポンシブ設定
=============================================== */
@media (max-width: 1200px) {
  .header-logo .company-sub {
    display: none;
  }
  .header-logo .company-main {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .footer-info {
    gap: 30px;
  }
  .header-logo .company-name {
    display: none;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 15px;
  }
  .header {
    display: none;
  }
  /* ハンバーガーメニューを表示 */
  .hamburger-menu {
    display: block !important;
  }
  .mobile-nav,
  .mobile-nav-overlay {
    display: block;
  }
  .mobile-logo-image {
    height: 80px;
  }
  .footer-logo-image {
    height: 120px;
    margin: auto;
    display: block;
  }
  .hero {
    padding: 120px 0 60px;
    margin-top: 0;
  }
  .hero-content {
    padding: 40px 0px;
    margin: 0 15px;
  }
  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.9), -1px -1px 0 rgba(0, 0, 0, 0.9), 1px -1px 0 rgba(0, 0, 0, 0.9), -1px 1px 0 rgba(0, 0, 0, 0.9), 0 0 12px rgba(0, 0, 0, 0.8), 0 0 24px rgba(0, 0, 0, 0.6);
  }
  .hero-content .hero-subtitle {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .hero-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .btn {
    padding: 12px 20px;
    width: 85%;
    max-width: 300px;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .features, .services, .message, .area, .cta {
    padding: 40px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 20px 15px;
  }
  .feature-card h3 {
    font-size: 18px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .message-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .message-image img {
    max-width: 200px;
  }
  .message-text h3 {
    font-size: 20px;
  }
  .area-item {
    padding: 25px 20px;
    margin-bottom: 20px;
  }
  .area-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .area-item p {
    font-size: 14px;
  }
  .area-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .area-content > p {
    font-size: 16px;
    margin-bottom: 35px;
  }
  .area-content > p:last-child {
    margin-top: 35px;
    font-size: 15px;
  }
  .cta h2 {
    font-size: 18px;
    line-height: 1.5;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .footer-info {
    flex-direction: column;
  }
  .mobile-contact a {
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .hero .hero-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.9), -1px -1px 0 rgba(0, 0, 0, 0.9), 1px -1px 0 rgba(0, 0, 0, 0.9), -1px 1px 0 rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
  }
  .hero .hero-content .hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.9), -1px -1px 0 rgba(0, 0, 0, 0.9), 1px -1px 0 rgba(0, 0, 0, 0.9), -1px 1px 0 rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.8);
  }
  .hero .hero-content p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.9), -1px -1px 0 rgba(0, 0, 0, 0.9), 1px -1px 0 rgba(0, 0, 0, 0.9), -1px 1px 0 rgba(0, 0, 0, 0.9), 0 0 6px rgba(0, 0, 0, 0.8);
  }
  .hero-buttons {
    padding: 0 10px;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.3);
  }
  /* ハンバーガーメニューのサイズ調整 */
  .hamburger-menu {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(0, 102, 204, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .hamburger-icon {
    width: 24px;
    height: 24px;
  }
  #js-close-btn {
    display: none;
  }
  .mobile-nav {
    padding-top: 10px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.95), rgba(0, 153, 255, 0.95));
  }
  .mobile-nav .mobile-nav-menu li a {
    padding: 5px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  .mobile-nav .mobile-nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }
  .mobile-nav .mobile-contact {
    padding: 20px;
  }
  .mobile-nav .mobile-contact .btn {
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  .section-title {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
  }
  .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
  }
  .features, .services, .message, .area, .cta {
    padding: 40px 0;
  }
  .feature-card {
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .feature-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .feature-card p {
    font-size: 14px;
    line-height: 1.6;
  }
  .feature-card .feature-icon {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .service-card {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .service-card h3 {
    font-size: 17px;
  }
  .service-card p {
    font-size: 14px;
    line-height: 1.6;
  }
  .message-content {
    gap: 20px;
  }
  .message-content .message-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .message-content .message-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  .area-item {
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  .area-item h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  .area-item p {
    font-size: 14px;
    line-height: 1.6;
  }
  .cta h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .cta p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .cta .cta-buttons {
    gap: 15px;
  }
  .cta .cta-buttons .btn {
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
}
/* ===============================================
   アンカーリンク調整
=============================================== */
#waterproofing,
#leak-repair,
#major-renovation,
#renovation,
#painting {
  scroll-margin-top: 150px;
}
@media (max-width: 768px) {
  #waterproofing,
  #leak-repair,
  #major-renovation,
  #renovation,
  #painting {
    scroll-margin-top: 80px;
  }
}

/* ===============================================
   下層ページ共通スタイル
=============================================== */
.page-content {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .page-content {
    padding-top: 0;
  }
}

.page-header {
  background: var(--bg-light);
  padding: 60px 0 0;
  margin-bottom: 60px;
  position: relative;
  border-bottom: 1px solid rgba(36, 149, 210, 0.1);
}
@media (max-width: 768px) {
  .page-header {
    padding: 30px 0 0;
    margin: 0;
  }
}
.page-header .container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 50px;
}
@media (max-width: 768px) {
  .page-header .container {
    padding: 30px 15px 45px;
  }
}
.page-header .page-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 30px;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .page-header .page-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
}
.page-header .breadcrumb {
  position: absolute;
  bottom: 10px;
  left: 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
@media (max-width: 768px) {
  .page-header .breadcrumb {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 0.8rem;
  }
}
.page-header .breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-header .breadcrumb a:hover {
  color: var(--primary-color);
}
.page-header .breadcrumb span {
  margin: 0 8px;
  color: var(--text-lighter);
}

/* ===============================================
   会社情報ページ
=============================================== */
.company-message {
  padding: 60px 0;
}
.company-message .message-content {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .company-message .message-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.company-message .message-image img {
  width: 100%;
  border-radius: 10px;
}
.company-message .message-text h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.company-message .message-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.company-message .message-text .representative-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  text-align: right;
}

.company-overview {
  padding: 60px 0;
  background: var(--white);
}
.company-overview .company-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.company-overview .company-table table th, .company-overview .company-table table td {
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}
.company-overview .company-table table th {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  width: 200px;
}
@media (max-width: 768px) {
  .company-overview .company-table table th {
    width: 120px;
    padding: 15px 10px;
  }
}
.company-overview .company-table table tr:last-child th, .company-overview .company-table table tr:last-child td {
  border-bottom: none;
}

.company-features {
  padding: 60px 0;
}
.company-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.company-features .feature-item {
  text-align: center;
  padding: 30px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  transition: var(--transition);
}
.company-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.company-features .feature-item .feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.company-features .feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.company-access {
  padding: 60px 0;
  background: var(--bg-light);
}
.company-access .office-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.company-access .office-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.company-access .office-item h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.company-access .office-item p {
  margin-bottom: 10px;
}

/* ===============================================
   事業内容ページ
=============================================== */
.business-overview {
  padding: 60px 0;
}
.business-overview .business-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.business-services {
  padding: 60px 0;
  background: var(--bg-light);
}
.business-services .services-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}
.business-services .service-detail {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .business-services .service-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.business-services .service-detail:nth-child(even) {
  grid-template-columns: 1fr 400px;
}
@media (max-width: 992px) {
  .business-services .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
.business-services .service-detail:nth-child(even) .service-image {
  order: 2;
}
@media (max-width: 992px) {
  .business-services .service-detail:nth-child(even) .service-image {
    order: 0;
  }
}
.business-services .service-image {
  overflow: hidden;
  border-radius: 10px;
}
.business-services .service-image img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.business-services .service-image img:hover {
  transform: scale(1.1);
}
.business-services .service-image .service-image-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.business-services .service-image .service-image-gallery img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.business-services .service-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.business-services .service-content .service-list {
  margin: 20px 0;
  padding-left: 20px;
}
.business-services .service-content .service-list li {
  margin-bottom: 8px;
  position: relative;
}
.business-services .service-content .service-list li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: -20px;
}
.business-services .service-content .service-features {
  margin-top: 30px;
  padding: 20px;
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  border-radius: 5px;
}
.business-services .service-content .service-features h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.work-flow {
  padding: 60px 0;
}
.work-flow .flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.work-flow .flow-step {
  text-align: center;
  position: relative;
}
.work-flow .flow-step .step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}
.work-flow .flow-step h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* ===============================================
   施工事例ページ
=============================================== */
.works-archive {
  padding: 60px 0;
}
.works-archive .works-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.works-archive .category-filter {
  margin-bottom: 40px;
  text-align: center;
}
.works-archive .category-filter h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}
.works-archive .category-filter .filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .works-archive .category-filter .filter-list {
    gap: 8px;
    margin-bottom: 20px;
  }
}
.works-archive .category-filter .filter-list li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .works-archive .category-filter .filter-list li {
    margin-bottom: 12px;
  }
}
.works-archive .category-filter .filter-list li a {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 25px;
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
  display: inline-block;
}
@media (max-width: 768px) {
  .works-archive .category-filter .filter-list li a {
    padding: 8px 16px;
    font-size: 14px;
  }
}
.works-archive .category-filter .filter-list li a:hover, .works-archive .category-filter .filter-list li a.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
.works-archive .works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .works-archive .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .works-archive .works-grid {
    grid-template-columns: 1fr;
  }
}
.works-archive .work-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.works-archive .work-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.works-archive .work-item .work-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.works-archive .work-item .work-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-archive .work-item .work-info {
  padding: 20px;
}
.works-archive .work-item .work-info .work-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.works-archive .work-item .work-info .work-category {
  margin-bottom: 10px;
}
.works-archive .work-item .work-info .work-category .category-tag {
  background: var(--primary-color);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.8rem;
  margin-right: 5px;
}
.works-archive .work-item .work-info .work-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.works-archive .work-item .work-info .work-date {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===============================================
   FAQページ
=============================================== */
.faq-section {
  padding: 60px 0;
}

.faq-intro {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--text-light);
}

.faq-categories {
  margin-bottom: 40px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border-light);
}

.category-tabs li {
  list-style: none;
}

.tab-link {
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  border-radius: 8px 8px 0 0;
  transition: var(--transition);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-bottom: none;
  position: relative;
}

.tab-link:hover {
  color: var(--primary-color);
  background: rgba(0, 102, 204, 0.05);
}

.tab-link.active {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
}

.tab-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
}

.faq-content {
  background: var(--white);
}

.faq-category {
  display: none;
  padding: 40px 0;
}

.faq-category.active {
  display: block;
}

.faq-category h2 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 15px;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background: var(--bg-light);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(0, 102, 204, 0.05);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  flex: 1;
}

.toggle-icon {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-left: 15px;
  transition: var(--transition);
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.faq-contact {
  background: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

.faq-contact h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.faq-contact p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .category-tabs {
    flex-direction: column;
    align-items: center;
  }
  .tab-link {
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    margin-bottom: 5px;
  }
  .tab-link.active::after {
    display: none;
  }
  .faq-question {
    padding: 15px;
  }
  .faq-question h3 {
    font-size: 16px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
  .contact-buttons {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .contact-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }
  .contact-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
/* ===============================================
   お問い合わせページ
=============================================== */
.contact-form-section {
  padding: 60px 0;
}
.contact-form-section .contact-info {
  margin-bottom: 50px;
}
.contact-form-section .contact-info .contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.contact-form-section .contact-info .contact-method {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.contact-form-section .contact-info .contact-method h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}
.contact-form-section .contact-info .contact-method .phone-number {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
}
.contact-form-section .contact-info .contact-note {
  background: var(--white);
  padding: 30px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .contact-form-section .contact-info .contact-note {
    padding: 30px 10px;
  }
}
.contact-form-section .contact-info .contact-note h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .contact-form-section .contact-info .contact-note h3 {
    margin: 0 0 15px 15px;
  }
}
.contact-form-section .contact-info .contact-note ul {
  padding-left: 20px;
}
.contact-form-section .contact-info .contact-note ul li {
  margin-bottom: 5px;
}
.contact-form-section .error-messages {
  background: #ffe6e6;
  border: 1px solid #ff9999;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.contact-form-section .error-messages h3 {
  color: #cc0000;
  margin-bottom: 10px;
}
.contact-form-section .error-messages ul {
  color: #cc0000;
  padding-left: 20px;
}
.contact-form-section .contact-form {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .contact-form-section .contact-form {
    padding: 40px 10px;
  }
}
.contact-form-section .contact-form h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}
.contact-form-section .contact-form .required-note {
  color: #cc0000;
  font-size: 0.9rem;
}
.contact-form-section .contact-form .form-group {
  margin-bottom: 25px;
}
.contact-form-section .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-form-section .contact-form .form-group label .required {
  color: #cc0000;
}
.contact-form-section .contact-form .form-group input,
.contact-form-section .contact-form .form-group select,
.contact-form-section .contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}
.contact-form-section .contact-form .form-group input:focus,
.contact-form-section .contact-form .form-group select:focus,
.contact-form-section .contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2);
}
.contact-form-section .contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-section .contact-form .form-group.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-form-section .contact-form .form-group.checkbox-group input {
  width: auto;
}
.contact-form-section .contact-form .form-group.checkbox-group .privacy-link {
  color: var(--primary-color);
  text-decoration: underline;
}
.contact-form-section .contact-form .form-submit {
  text-align: center;
  margin-top: 30px;
}
.contact-form-section .privacy-policy {
  display: none;
  margin-top: 30px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 5px;
}
.contact-form-section .privacy-policy h3, .contact-form-section .privacy-policy h4 {
  color: var(--primary-color);
}
.contact-form-section .privacy-policy h3 {
  margin-bottom: 20px;
}
.contact-form-section .privacy-policy h4 {
  margin: 20px 0 10px;
}
.contact-form-section .privacy-policy ul {
  padding-left: 20px;
  margin: 10px 0;
}

.contact-success {
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-success .success-message {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, #e6ffe6 0%, #f0fff0 100%);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}
@media (max-width: 768px) {
  .contact-success .success-message {
    padding: 40px 10px;
  }
}
.contact-success .success-message h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .contact-success .success-message h2 {
    font-size: 2rem;
  }
}
.contact-success .success-message p {
  color: var(--primary-color);
  margin-bottom: 40px;
  font-size: 1.2rem;
  line-height: 1.8;
}
.contact-success .success-message .btn {
  margin-top: 20px;
}

/* ===============================================
   採用情報ページ
=============================================== */
.recruit-message {
  padding: 60px 0;
}
.recruit-message .message-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .recruit-message .message-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.recruit-message .message-image img {
  width: 100%;
  border-radius: 10px;
}
.recruit-message .message-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.workplace-features {
  padding: 60px 0;
  background: var(--bg-light);
}
.workplace-features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .workplace-features .features-grid {
    grid-template-columns: 1fr;
  }
}

.job-openings {
  padding: 60px 0;
}
.job-openings .job-item {
  margin-bottom: 50px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
}
.job-openings .job-item .job-title {
  background: var(--primary-color);
  color: var(--white);
  padding: 20px;
  margin: 0;
  font-size: 1.3rem;
}
.job-openings .job-item .job-details {
  padding: 30px;
}
.job-openings .job-item .job-table {
  width: 100%;
  border-collapse: collapse;
}
.job-openings .job-item .job-table th, .job-openings .job-item .job-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
}
.job-openings .job-item .job-table th {
  background: var(--bg-light);
  font-weight: 600;
  width: 150px;
}
@media (max-width: 768px) {
  .job-openings .job-item .job-table th {
    width: 120px;
  }
}
.job-openings .job-item .job-table td a {
  color: var(--primary-color);
  text-decoration: none;
}
.job-openings .job-item .job-table td a:hover {
  text-decoration: underline;
}
.job-openings .job-item .job-table tr:last-child th, .job-openings .job-item .job-table tr:last-child td {
  border-bottom: none;
}

.recruitment-flow {
  padding: 60px 0;
  background: var(--bg-light);
}
.recruitment-flow .flow-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 700px;
  margin: auto;
}
@media (max-width: 768px) {
  .recruitment-flow .flow-steps {
    gap: 30px;
  }
}
.recruitment-flow .flow-step {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 768px) {
  .recruitment-flow .flow-step {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .recruitment-flow .flow-step {
    flex-direction: column;
    text-align: center;
  }
}
.recruitment-flow .flow-step .step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}
.recruitment-flow .flow-step .step-content {
  flex: 1;
  text-align: left;
}
.recruitment-flow .flow-step .step-content h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.recruitment-flow .flow-step .step-content p {
  line-height: 1.6;
  color: var(--text-light);
}

.recruit-faq {
  padding: 60px 0;
}

.recruit-contact {
  padding: 60px 0;
  background: var(--bg-light);
}
.recruit-contact .contact-info {
  text-align: center;
}
.recruit-contact .contact-info .contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}
.recruit-contact .contact-info .contact-method {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
}
.recruit-contact .contact-info .application-note {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.recruit-contact .contact-info .application-note h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}
.recruit-contact .contact-info .application-note ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

/* ===============================================
   ブログページ
=============================================== */
.blog-archive {
  padding: 60px 0;
}
.blog-archive .blog-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.blog-archive .blog-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}
@media (max-width: 992px) {
  .blog-archive .blog-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.blog-archive .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blog-archive .blog-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.blog-archive .blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.blog-archive .blog-item .blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-archive .blog-item .blog-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-archive .blog-item .blog-info {
  padding: 20px;
}
.blog-archive .blog-item .blog-info .blog-date {
  font-size: 0.85rem;
  color: var(--text-light);
}
.blog-archive .blog-item .blog-info .blog-title {
  font-size: 1.2rem;
  margin: 10px 0;
  color: var(--primary-color);
}
.blog-archive .blog-item .blog-info .blog-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.blog-archive .blog-item .blog-info .read-more {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
}
.blog-archive .blog-sidebar .sidebar-widget {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.blog-archive .blog-sidebar .sidebar-widget .widget-title {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}
.blog-archive .blog-sidebar .sidebar-widget.cta-widget {
  background: var(--bg-light);
  text-align: center;
}
.blog-archive .blog-sidebar .sidebar-widget.cta-widget p {
  margin-bottom: 20px;
}
.blog-archive .blog-sidebar .sidebar-widget.cta-widget .widget-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-archive .blog-sidebar .sidebar-widget.cta-widget .widget-buttons .btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.blog-archive .blog-sidebar .recent-posts .recent-post-item {
  margin-bottom: 20px;
}
.blog-archive .blog-sidebar .recent-posts .recent-post-item a {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.blog-archive .blog-sidebar .recent-posts .recent-post-item a:hover {
  opacity: 0.8;
}
.blog-archive .blog-sidebar .recent-posts .recent-post-item .recent-post-image {
  flex-shrink: 0;
}
.blog-archive .blog-sidebar .recent-posts .recent-post-item .recent-post-image img {
  width: 80px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.blog-archive .blog-sidebar .recent-posts .recent-post-item .recent-post-info time {
  font-size: 0.8rem;
  color: var(--text-light);
}
.blog-archive .blog-sidebar .recent-posts .recent-post-item .recent-post-info h4 {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-top: 5px;
}
.blog-archive .blog-sidebar .archive-list li {
  margin-bottom: 8px;
}
.blog-archive .blog-sidebar .archive-list li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
}
.blog-archive .blog-sidebar .archive-list li a:hover {
  color: var(--primary-color);
}

.blog-detail {
  padding: 60px 0;
}
.blog-detail .blog-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}
@media (max-width: 992px) {
  .blog-detail .blog-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.blog-detail .blog-main .blog-meta {
  margin-bottom: 30px;
}
.blog-detail .blog-main .blog-meta .blog-date {
  color: var(--text-light);
  font-size: 0.9rem;
}
.blog-detail .blog-main .blog-featured-image {
  margin-bottom: 40px;
}
.blog-detail .blog-main .blog-featured-image img {
  width: 100%;
  border-radius: 10px;
}
.blog-detail .blog-main .blog-body {
  line-height: 1.8;
  margin-bottom: 40px;
}
.blog-detail .blog-main .blog-body h2, .blog-detail .blog-main .blog-body h3, .blog-detail .blog-main .blog-body h4 {
  color: var(--primary-color);
  margin: 30px 0 15px;
}
.blog-detail .blog-main .blog-body p {
  margin-bottom: 20px;
}
.blog-detail .blog-main .blog-body img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 20px 0;
}
.blog-detail .blog-main .blog-footer .blog-share {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}
.blog-detail .blog-main .blog-footer .blog-share h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}
.blog-detail .blog-main .blog-footer .blog-share .share-buttons {
  display: flex;
  gap: 10px;
}
.blog-detail .blog-main .blog-footer .blog-share .share-buttons a {
  padding: 8px 16px;
  background: var(--bg-light);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.blog-detail .blog-main .blog-footer .blog-share .share-buttons a:hover {
  background: var(--primary-color);
  color: var(--white);
}
.blog-detail .blog-main .blog-footer .blog-share .share-buttons a.share-twitter:hover {
  background: #1da1f2;
}
.blog-detail .blog-main .blog-footer .blog-share .share-buttons a.share-facebook:hover {
  background: #3b5998;
}
.blog-detail .blog-main .blog-footer .blog-share .share-buttons a.share-line:hover {
  background: #00c300;
}
.blog-detail .blog-sidebar .sidebar-widget {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.blog-detail .blog-sidebar .sidebar-widget .widget-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}
.blog-detail .blog-sidebar .sidebar-widget.cta-widget {
  background: var(--primary-gradient);
  color: var(--white);
}
.blog-detail .blog-sidebar .sidebar-widget.cta-widget .widget-title {
  color: var(--white);
  border-bottom-color: var(--white);
}
.blog-detail .blog-sidebar .sidebar-widget.cta-widget p {
  color: var(--white);
  margin-bottom: 20px;
}
.blog-detail .blog-sidebar .sidebar-widget.cta-widget .widget-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-detail .blog-sidebar .recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-detail .blog-sidebar .recent-posts .recent-post-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.blog-detail .blog-sidebar .recent-posts .recent-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.blog-detail .blog-sidebar .recent-posts .recent-post-item a {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.blog-detail .blog-sidebar .recent-posts .recent-post-item a:hover {
  opacity: 0.8;
}
.blog-detail .blog-sidebar .recent-posts .recent-post-item .recent-post-image {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
}
.blog-detail .blog-sidebar .recent-posts .recent-post-item .recent-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.blog-detail .blog-sidebar .recent-posts .recent-post-item .recent-post-info {
  flex-grow: 1;
}
.blog-detail .blog-sidebar .recent-posts .recent-post-item .recent-post-info time {
  font-size: 12px;
  color: var(--text-light);
  display: block;
  margin-bottom: 5px;
}
.blog-detail .blog-sidebar .recent-posts .recent-post-item .recent-post-info h4 {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.blog-detail .blog-sidebar .archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-detail .blog-sidebar .archive-list li {
  margin-bottom: 10px;
}
.blog-detail .blog-sidebar .archive-list li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.blog-detail .blog-sidebar .archive-list li a:hover {
  color: var(--primary-color);
}

.related-posts {
  padding: 60px 0;
  background: var(--bg-light);
}
.related-posts .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .related-posts .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.related-posts .related-post-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.related-posts .related-post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.related-posts .related-post-item .related-post-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.related-posts .related-post-item .related-post-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.related-posts .related-post-item .related-post-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}
.related-posts .related-post-item .related-post-image:hover img {
  transform: scale(1.05);
}
.related-posts .related-post-item .related-post-info {
  padding: 20px;
}
.related-posts .related-post-item .related-post-info time {
  font-size: 12px;
  color: var(--text-light);
  display: block;
  margin-bottom: 8px;
}
.related-posts .related-post-item .related-post-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text-color);
}
.related-posts .related-post-item .related-post-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}
.related-posts .blog-link {
  text-align: center;
  margin-top: 40px;
}

/* ===============================================
   施工事例詳細ページ
=============================================== */
.work-detail {
  padding: 60px 0;
  background: var(--white);
}
.work-detail .work-content {
  max-width: 1000px;
  margin: 0 auto;
}
.work-detail .work-info-section {
  margin-bottom: 40px;
}
.work-detail .work-info-section .work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .work-detail .work-info-section .work-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.work-detail .work-info-section .work-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.work-detail .work-info-section .work-categories .category-tag {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}
.work-detail .work-info-section .work-date {
  color: var(--text-light);
  font-size: 14px;
}
.work-detail .work-main-image {
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.work-detail .work-main-image img {
  width: 100%;
  height: auto;
  display: block;
}
.work-detail .work-overview {
  margin-bottom: 50px;
}
.work-detail .work-overview h2 {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
}
.work-detail .work-overview h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
}
.work-detail .work-overview .overview-table {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.work-detail .work-overview .overview-table table {
  width: 100%;
  border-collapse: collapse;
}
.work-detail .work-overview .overview-table table th, .work-detail .work-overview .overview-table table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.work-detail .work-overview .overview-table table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-color);
  width: 30%;
}
@media (max-width: 768px) {
  .work-detail .work-overview .overview-table table th {
    width: 35%;
    padding: 12px 15px;
  }
}
.work-detail .work-overview .overview-table table td {
  font-weight: 500;
}
@media (max-width: 768px) {
  .work-detail .work-overview .overview-table table td {
    padding: 12px 15px;
  }
}
.work-detail .work-overview .overview-table table tr:last-child th,
.work-detail .work-overview .overview-table table tr:last-child td {
  border-bottom: none;
}
.work-detail .work-description {
  margin-bottom: 50px;
}
.work-detail .work-description h2 {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
}
.work-detail .work-description h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
}
.work-detail .work-description .description-content {
  line-height: 1.8;
}
.work-detail .work-description .description-content p {
  margin-bottom: 20px;
  color: var(--text-color);
}
.work-detail .work-description .description-content h3, .work-detail .work-description .description-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-color);
}
.work-detail .work-description .description-content ul, .work-detail .work-description .description-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
.work-detail .work-description .description-content ul li, .work-detail .work-description .description-content ol li {
  margin-bottom: 8px;
}
.work-detail .work-description .description-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.work-detail .before-after {
  margin-bottom: 50px;
}
.work-detail .before-after h2 {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
}
.work-detail .before-after h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
}
.work-detail .before-after .comparison-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .work-detail .before-after .comparison-images {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.work-detail .before-after .comparison-images .before-image,
.work-detail .before-after .comparison-images .after-image {
  text-align: center;
}
.work-detail .before-after .comparison-images .before-image h3,
.work-detail .before-after .comparison-images .after-image h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-color);
  padding: 10px;
  border-radius: 8px 8px 0 0;
}
.work-detail .before-after .comparison-images .before-image img,
.work-detail .before-after .comparison-images .after-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
.work-detail .before-after .comparison-images .before-image img:hover,
.work-detail .before-after .comparison-images .after-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.work-detail .before-after .comparison-images .before-image h3 {
  background: #ff6b6b;
  color: var(--white);
}
.work-detail .before-after .comparison-images .after-image h3 {
  background: #51cf66;
  color: var(--white);
}
.work-detail .customer-voice {
  margin-bottom: 50px;
  background: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
  border-left: 5px solid var(--primary-color);
}
@media (max-width: 768px) {
  .work-detail .customer-voice {
    padding: 25px 20px;
  }
}
.work-detail .customer-voice h2 {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-color);
  position: relative;
}
.work-detail .customer-voice h2::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
}
.work-detail .customer-voice .voice-content {
  position: relative;
}
.work-detail .customer-voice .voice-content::before {
  content: '"';
  font-size: 60px;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: serif;
  opacity: 0.3;
}
.work-detail .customer-voice .voice-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  font-style: italic;
  padding-left: 30px;
}

.related-works {
  padding: 60px 0;
  background: var(--bg-light);
}
.related-works .section-title {
  text-align: center;
  font-size: 32px;
  color: var(--text-color);
  margin-bottom: 50px;
  position: relative;
}
.related-works .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}
.related-works .related-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .related-works .related-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .related-works .related-works-grid {
    grid-template-columns: 1fr;
  }
}
.related-works .related-work-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}
.related-works .related-work-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.related-works .related-work-item .related-work-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.related-works .related-work-item .related-work-image {
  position: relative;
  overflow: hidden;
}
.related-works .related-work-item .related-work-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}
.related-works .related-work-item .related-work-image:hover img {
  transform: scale(1.05);
}
.related-works .related-work-item .related-work-info {
  padding: 20px;
}
.related-works .related-work-item .related-work-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .related-works .related-work-item .related-work-info h3 {
    font-size: 16px;
  }
}
.related-works .related-work-item .related-work-info time {
  color: var(--text-light);
  font-size: 14px;
}
.related-works .works-link {
  text-align: center;
}
.related-works .works-link .btn {
  padding: 15px 40px;
  font-size: 16px;
}/*# sourceMappingURL=base.css.map */