@import url("https://use.typekit.net/lpi0xnl.css");

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: futura-pt, "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif !important;
}

/* Color：1 */

:root {
  --primary-navy: #1a365d;
  --dark-navy: #0f2442;
  --gold: #d4af37;
  --light-gold: #f0dc82;
  --white: #ffffff;
  --light-gray: #f7fafc;
  --gray: #cbd5e0;
  --dark-gray: #2d3748;
  --success: #38a169;
}

/* :root {
  --primary-navy: #0D1B2A;
  --dark-navy: #040C16;
  --gold: #B08968;
  --light-gold: #DDB892;
  --white: #FFFFFF;
  --light-gray: #1B263B;
  --gray: #778DA9;
  --dark-gray: #E0E1DD;
  --success: #386641;
} */

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  color: var(--dark-gray);
  line-height: 1.7;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .hero .container {
    text-align: left;
  }

  .container {
    padding: 0;
  }
}

/* Header */
.header {
  /* background: var(--white); */
  background: #212121;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-navy);
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .logo a img {
    width: 88px;
  }
}

.nav {
  display: none;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  color: var(--dark-gray);
  font-weight: 500;
}

.header-cta {
  display: none;
  padding: 10px 16px !important;
}

.header-content .header-cta {
  display: none !important;
}

.header-cta.btn {
  /* display: block; */
  display: none !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  /* background: var(--primary-navy); */
  background: #fdfdfd;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  /* background: var(--white); */
  background: #212121;
  transition: 0.3s;
  overflow-y: auto;
  z-index: 100;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 20px;
}

.mobile-menu li {
  border-bottom: 1px solid #fdfdfd;
}

.mobile-menu a {
  display: block;
  padding: 15px 0;
  /* color: var(--dark-gray); */
  color: #fdfdfd;
  font-weight: 500;
}

/* Hero Section */
.hero {
  margin-top: 60px;
  /* background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%); */
  background-image: url(../img/hero-bg.JPG);
  background-position: center center;
  background-size: cover;
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.hero-banner {
  background: linear-gradient(to right, #24436d, #357399);
  font-weight: bold;
  font-size: 17px;
  width: fit-content;
  padding: 5px 11px;
}

.blocked-font {
  display: inline-block;
  /* display: flex; */
  float: left;
}

.blocked-font span {
  font-weight: bold;
  font-size: 32px;
  background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  /* mix-blend-mode: difference; 白地に抜き文字効果 */
}

@media (max-width: 768px) {
  .hero .container {
    text-align: left;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary-navy);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  /* color: var(--white);
  border: 2px solid var(--white); */
  color: #004e8f;
  border: solid 2px #004e8f;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-navy);
}

/* Section Styles */
section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  /* color: var(--primary-navy); */
  color: #004e8f;
  margin-bottom: 15px;
  font-weight: bold;
}

.section-subtitle {
  text-align: center;
  color: var(--dark-gray);
  margin-bottom: 50px;
  font-size: 16px;
}

/* Problems Section */
.problems {
  /* background: var(--light-gray); */
  background: #212121;
}

/* セクション全体 */
.trouble-section {
  background: #fff url(../img/_MG_1618.JPG\ のコピー.JPG) center/cover no-repeat;
  position: relative;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 半透明オーバーレイ（背景画像の上に白っぽくかける） */
.trouble-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(255, 255, 255, 0.7); */
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.7) 30%,
      rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(2px);
}

/* コンテンツボックス */
.trouble-container {
  position: relative;
  /* max-width: 420px; */
  /* background: #fff; */
  /* padding: 40px 30px; */
  /* border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1); */
  text-align: left;
}

/* タイトル */
.trouble-title {
  font-size: 20px;
  color: #24436d;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  border-bottom: 2px solid #24436d;
  display: inline-block;
  padding-bottom: 2px;
  display: block;
}

/* 英語サブタイトル */
.trouble-subtitle {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: #7a7a7a;
  margin-bottom: 20px;
}

/* チェックリスト */
.trouble-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trouble-list li {
  position: relative;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  padding-left: 28px;
  margin-bottom: 10px;
}

/* チェックマークデザイン */
.trouble-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #24436d;
  font-size: 18px;
  font-weight: 600;
}

.problems-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.problem-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.problem-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.problem-card h3 {
  color: var(--primary-navy);
  margin-bottom: 15px;
  font-size: 20px;
}

/* Solutions Section */
.aurelia-section {
  /* background: #fff; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  position: relative;
  width: 100%;
}

/* コンテナ */
.aurelia-container {
  position: relative;
  /* background: #fff; */
  text-align: center;
  max-width: 500px;
  padding: 60px 20px;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* 上の縦ライン */
.aurelia-accent-line {
  position: absolute;
  top: -34px;
  left: 50%;
  width: 1px;
  height: 50px;
  background-color: #24436d;
  transform: translateX(-50%);
}

/* タイトル部分 */
.aurelia-subtitle {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.aurelia-title {
  font-size: 22px;
  font-weight: 700;
  color: #24436d;
  margin: 0 0 20px;
  line-height: 1.6;
}

.aurelia-brand {
  font-weight: 600;
  color: #357399;
}

.aurelia-main {
  font-size: 26px;
  font-weight: 800;
  color: #24436d;
}

/* 説明文 */
.aurelia-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-top: 10px;
}

/* コーナー装飾 */
.aurelia-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 4px solid #24436d;
}

.aurelia-corner.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.aurelia-corner.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.aurelia-corner.bottom-left {
  bottom: 0;
  left: 0;
  border-top: none;
  border-right: none;
}

.aurelia-corner.bottom-right {
  bottom: 0;
  right: 0;
  border-top: none;
  border-left: none;
}

/* セクション全体 */
.benefit-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 中央円形画像コンテナ */
.benefit-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.benefit-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 吹き出し共通スタイル */
.benefit-item {
  position: absolute;
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.5;
}

/* チェックマーク */
.benefit-item .check {
  color: #357399;
  font-size: 18px;
}

/* 位置調整 */
.benefit-item.top-left {
  top: 0;
  left: -160px;
  transform: rotate(-5deg);
}

.benefit-item.top-right {
  top: 0;
  right: -160px;
  transform: rotate(5deg);
}

.benefit-item.bottom-left {
  bottom: 0;
  left: -170px;
  transform: rotate(3deg);
}

.benefit-item.bottom-right {
  bottom: 0;
  right: -170px;
  transform: rotate(-3deg);
}

.solutions-grid {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.solution-card {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  border: 2px solid var(--light-gold);
  transition: all 0.3s;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.solution-card h3 {
  color: var(--primary-navy);
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-icon {
  color: var(--gold);
  font-size: 24px;
}

/* POINT */
.point {
  background: #212121;
  color: #fff;
}

.float-right {
  float: right;
}

.point-num-2,
.point-num-4 {
  text-align: right;
}

.point-card-wrapper {
  margin: 30px 0px;
}

.outline-text {
  font-weight: 900;
  color: transparent;
  /* 中を透明にする */
  -webkit-text-stroke: 2px #fff;
  /* 輪郭の太さと色 */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.point-banner h1 {
  font-size: 80px;
}

.point-num {
  font-weight: 900;
  color: transparent;
  /* 中を透明にする */
  -webkit-text-stroke: 2px #fff;
  /* 輪郭の太さと色 */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 30px;
}

.point-prettl {
  font-size: 28px;
  font-weight: bold;
}

.point-ttl {
  font-size: 28px;
  color: #004e8f;
  background: #fff;
  width: fit-content;
  font-weight: bold;
  padding: 0px 5px;
  margin-bottom: 10px;
}

.point-img {
  width: 100%;
  margin-bottom: 10px;
}

.point-img img {
  width: 100%;
}

.point-desc {
  font-size: 18px;
  line-height: 1.7;
}

/* 他車比較セクション */
.comparison {
  /* background: #fff; */
  padding: 30px;
  border-radius: 12px;
  /* max-width: 500px; */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.comparison h2 {
  text-align: center;
  font-size: 1.6em;
  margin-bottom: 20px;
  color: #1a3252;
}

.comparison .en {
  display: block;
  font-size: 0.8em;
  color: #7a8aa2;
  letter-spacing: 1px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #212121;
  text-align: center;
  padding: 10px;
  font-size: 0.9em;
}

.comparison-table th {
  background: #212121;
  color: #fff;
  font-weight: bold;
}

.comparison-table th.brand {
  background: #e9f0f8;
  color: #1a3252;
  font-weight: 700;
}

.comparison-table .logo {
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.4;
}

.comparison-table .logo span {
  font-size: 0.8em;
  font-weight: 400;
  color: #777;
}

.comparison-table td.label {
  background: #f0f4f8;
  font-weight: 700;
  color: #1a3252;
  width: 25%;
}

.comparison-table .icon {
  font-size: 1.2em;
  font-weight: bold;
  color: #1a3252;
}

.comparison-table tr:nth-child(even) td {
  background: #fafafa;
}

.comparison-table th,
.comparison-table td {
  font-size: 18px;
  padding: 6px;
}

@media (max-width: 600px) {
  .comparison {
    padding: 20px;
  }

  .comparison-table th,
  .comparison-table td {
    font-size: 18px;
    padding: 6px;
  }
}

/* Services Section */
.services {
  background: var(--light-gray);
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.tab-btn.active {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
}

.service-content {
  display: none;
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.service-content.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-content h3 {
  color: var(--primary-navy);
  margin-bottom: 20px;
  font-size: 24px;
}

.service-features {
  list-style: none;
  margin: 20px 0;
}

.service-features li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.price-range {
  background: var(--light-gold);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
}

.price-range strong {
  font-size: 24px;
  color: var(--primary-navy);
}

/* Comparison Section */
.comparison {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--gray);
  border-bottom: 1px solid #212121;
  text-align: center;
}

.comparison-table th {
  /* background: var(--primary-navy); */
  background: #212121;
  color: var(--white);
  font-weight: 500;
}

.comparison-table tr:nth-child(even) {
  background: var(--light-gray);
}

.highlight {
  background: var(--light-gold) !important;
  font-weight: bold;
}

/* 料金プラン */
.price-plan {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.price-plan h2 {
  font-size: 1.8em;
  color: #1a3252;
  margin-bottom: 5px;
}

.price-plan .en {
  font-size: 0.9em;
  color: #7a8aa2;
  letter-spacing: 1px;
}

.note {
  font-size: 0.8em;
  color: #888;
  margin-bottom: 20px;
}

.plan-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* 各プランカード */
.plan {
  width: 320px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  float: left;
}

/* ヘッダー */
.plan-header {
  color: #fff;
  padding: 25px 0;
  position: relative;
}

.plan-header h3 {
  font-size: 2.2em;
  line-height: 1.2;
  margin: 0;
}

.plan-header h3 span {
  font-size: 0.8em;
  font-weight: 400;
}

/* プラン色 */
.alpha .plan-header {
  background: linear-gradient(135deg, #333, #555);
}

.beta .plan-header {
  background: linear-gradient(135deg, #1b4f7d, #3379b7);
}

.gamma .plan-header {
  background: linear-gradient(135deg, #b97c10, #f0b318);
}

/* 内容部分 */
.plan-body {
  padding: 20px;
}

.content-title {
  border: 1px solid #333;
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 15px;
  font-size: 0.9em;
}

.plan-body p {
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0 0 20px;
}

.price-title {
  background: #f5f5f5;
  padding: 8px;
  font-weight: bold;
  margin-bottom: 10px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
  font-size: 1em;
}

.price-list li span {
  color: red;
  font-weight: bold;
}

/* レスポンシブ */
@media (max-width: 960px) {
  .plan-container {
    flex-direction: column;
    align-items: center;
  }

  .plan {
    width: 90%;
  }
}

/* Process Section */
.process {
  background: var(--light-gray);
}

.process-steps {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.process-step {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  align-items: start;
}

.step-number {
  background: var(--gold);
  color: var(--primary-navy);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
  flex-direction: column;
}

.step-content h3 {
  color: var(--primary-navy);
  margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-navy);
}

.testimonial-info h4 {
  color: var(--primary-navy);
  margin-bottom: 5px;
}

.rating {
  color: var(--gold);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray);
  cursor: pointer;
  transition: 0.3s;
}

.slider-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}

/* Gallery Section */
.gallery {
  background: var(--light-gray);
  /* background: #212121; */
}

.gallery-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 20px;
  font-weight: 500;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--primary-navy);
  background: var(--white);
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-icon {
  transition: transform 0.3s;
  font-size: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

/* Blog Section */
.blog {
  background: var(--light-gray);
}

.blog-grid {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--dark-gray);
}

.blog-category {
  background: var(--light-gold);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  color: var(--primary-navy);
  font-weight: 500;
}

.blog-card h3 {
  color: var(--primary-navy);
  margin-bottom: 10px;
  font-size: 18px;
}

/* Final CTA Section */
/* .final-cta {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  background: #212121;
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.final-cta h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.final-cta p {
  margin-bottom: 30px;
  font-size: 18px;
}

.cta-options {
  display: grid;
  gap: 20px;
  max-width: 600px;
  margin: 40px auto 0;
}

.cta-option {
  background: var(--white);
  color: var(--primary-navy);
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.cta-icon {
  font-size: 32px;
  color: var(--gold);
} */

.final-cta {
  background: #212121;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.final-cta h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #fff;
}

.final-cta p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.final-cta-btn {
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  padding: 18px 0;
  border-radius: 50px;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 1px;
}

.final-cta-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-btn .icon svg {
  width: 30px;
  height: 30px;
}

/* 各ボタン色 */
.line {
  background: linear-gradient(135deg, #1a4e7a, #2d82b7);
}

.mail {
  background: linear-gradient(135deg, #6a6a6a, #b3b3b3);
}

/* ホバー時フェード */
.final-cta-btn:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

.icon {
  margin-right: 8px;
}

.arrow {
  margin-left: 10px;
}

/* 説明文 */
.note {
  background: transparent;
  border: 1px solid #fff;
  padding: 15px;
  margin-top: 50px;
  font-size: 0.9em;
  line-height: 1.6;
  color: #fff;
  display: inline-block;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .final-cta-btn {
    width: 90%;
  }
}

/* Footer */
.footer {
  /* background: var(--dark-navy); */
  background: #212121;
  color: var(--white);
  padding: 50px 20px 20px;
}

.footer-logo a img {
  width: 120px;
}

.footer-content {
  display: grid;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-section h3 {
  /* color: var(--gold); */
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--white);
  opacity: 0.8;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.social-icon:hover {
  background: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
  font-size: 14px;
}

/* Fixed Bottom CTA (Mobile) */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  z-index: 999;
}

.fixed-cta-btn {
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

.fixed-cta-btn.line {
  background: #06C755;
  color: var(--white);
}

.fixed-cta-btn.phone {
  background: var(--primary-navy);
  color: var(--white);
}

.fixed-cta-btn.quote {
  background: var(--gold);
  color: var(--primary-navy);
}

@media (max-width: 768px) {
  .fixed-cta {
    display: none;
  }
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #fdfdfd;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 998;
  transition: all 0.3s;
}

.scroll-top:hover {
  background: var(--primary-navy);
  color: var(--white);
}

.scroll-top.show {
  display: flex;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero .subtitle {
    font-size: 20px;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }

  .problems-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .fixed-cta {
    display: none;
  }

  section {
    padding: 80px 20px;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: block;
  }

  .header-content .header-cta {
    display: none !important;
  }

  .header-cta.btn {
    /* display: block; */
    display: none !important;
  }

  .hamburger {
    display: none;
  }

  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Service Page Styles
   ========================================== */

/* Page Hero Section */
.page-hero {
  margin-top: 60px;
  /* background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%); */
  background: #212121;
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.9;
}

.menudetail-card {
  /* width: 350px; */
  border: 1px solid #ddd;
  text-align: center;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 50px;
}

/* ヘッダー部分 */
.menudetailheader {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: linear-gradient(to right, #0b376d, #2979c3);
  color: white;
}

.wheel-coating {
  background: linear-gradient(to right, #747474, #fff);
  color: #000;
}

.window-coating {
  background: linear-gradient(to right, #feeb26, #fff);
  color: #000;

}

.w-coating {
  background: linear-gradient(to right, #99e5da, #fff);
  color: #000;

}

.menudetailheader-left {
  padding: 16px;
  text-align: left;
  flex: 1;
}

.menudetailheader-left .en {
  font-size: 14px;
  opacity: 0.9;
}

.menudetailheader-left .jp {
  font-size: 20px;
  margin-top: 4px;
  letter-spacing: 1px;
}

.menudetailheader-right {
  width: 100px;
  background: #d0d8e0;
  /* 画像なし部分の代替背景 */
}

/* コンテンツ部分 */
.content {
  padding: 20px;
}

.price {
  font-size: 22px;
  color: #e60000;
  margin: 10px 0;
  font-weight: bold;
}

.price span {
  color: #333;
  font-size: 16px;
}

.tandoku-ok {
  display: inline-block;
  background: #004d99;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.details {
  display: inline-flex;
  align-items: center;
  border: 1px solid #000;
  border-radius: 3px;
  padding: 4px 8px;
  margin-top: 12px;
  font-size: 14px;
}

.details .label {
  border-right: 1px solid #000;
  padding-right: 8px;
  margin-right: 8px;
}

/* Service Plans Section */
.service-plans {
  background: var(--light-gray);
}

.plan-detail {
  margin-bottom: 60px;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.plan-header {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: var(--white);
  padding: 40px 30px;
  text-align: center;
  position: relative;
}

.plan-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.plan-badge.alpha {
  /* background: var(--gold); */
  background: linear-gradient(to right, #24436d, #357399);
  color: var(--primary-navy);
}

.plan-badge.beta {
  /* background: var(--light-gold); */
  background: linear-gradient(135deg, #1b4f7d, #3379b7);
  color: var(--primary-navy);
}

.plan-badge.gamma {
  /* background: var(--white); */
  background: linear-gradient(135deg, #b97c10, #f0b318);
  color: var(--primary-navy);
}

.plan-header h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.plan-tagline {
  font-size: 16px;
  opacity: 0.9;
}

.plan-content {
  padding: 40px 30px;
}

.plan-content h4 {
  color: var(--primary-navy);
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gold);
}

.plan-description {
  margin-bottom: 40px;
}

.plan-recommend {
  list-style: none;
  display: grid;
  gap: 12px;
}

.plan-recommend li {
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.plan-recommend li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 20px;
}

.plan-features-detail {
  margin-bottom: 40px;
}

.feature-steps {
  display: grid;
  gap: 20px;
}

.feature-step {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s;
}

.feature-step:hover {
  background: var(--light-gold);
  transform: translateX(5px);
}

.step-number-small {
  background: var(--gold);
  color: var(--primary-navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
}

.step-detail h5 {
  color: var(--primary-navy);
  margin-bottom: 8px;
  font-size: 16px;
}

.step-detail p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-gray);
}

.plan-price-detail {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
}

.price-table {
  margin: 20px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row strong {
  color: var(--primary-navy);
  font-size: 20px;
}

.plan-duration {
  margin: 25px 0;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

.plan-duration p {
  margin-bottom: 8px;
  font-size: 15px;
}

.plan-duration p:last-child {
  margin-bottom: 0;
}

/* Plan Comparison Section */
.plan-comparison {
  background: var(--white);
}

.plan-feature-yes {
  color: var(--success);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.plan-feature-no {
  color: var(--gray);
  font-size: 20px;
  text-align: center;
}

/* Optional Services Section */
.optional-services {
  background: var(--light-gray);
}

.optional-grid {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.optional-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.optional-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.optional-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.optional-card h3 {
  color: var(--primary-navy);
  margin-bottom: 15px;
  font-size: 20px;
}

.optional-card p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.optional-price {
  display: inline-block;
  padding: 10px 25px;
  background: var(--light-gold);
  color: var(--primary-navy);
  font-weight: bold;
  border-radius: 20px;
  font-size: 18px;
}

/* Service Flow Section */
/* .service-flow {
  background: var(--white);
}

.flow-steps {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.flow-step {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  display: flex;
  gap: 25px;
  align-items: start;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.flow-step:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.flow-number {
  background: var(--gold);
  color: var(--primary-navy);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.flow-content h3 {
  color: var(--primary-navy);
  margin-bottom: 12px;
  font-size: 20px;
}

.flow-content p {
  line-height: 1.7;
  color: var(--dark-gray);
}

.flow-arrow {
  text-align: center;
  color: var(--gold);
  font-size: 24px;
  padding: 10px 0;
} */

.flow {
  background: #212121;
}

.flow .point-banner h2 {
  color: #fff;
}

.steps-section {
  width: 90%;
  max-width: 500px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step {
  display: flex;
  align-items: center;
  width: 100%;
  /* margin-bottom: 30px; */
}

.step-number {
  background-color: #1e5a9d;
  text-align: center;
  padding: 30px 15px;
  border-radius: 0px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  min-width: 70px;
  font-size: 14px;
}

.step-number span {
  font-size: 24px;
  display: block;
  /* margin-top: 3px; */
}

.step-content {
  flex: 1;
  background-color: #2d2d2d;
  padding: 15px 20px;
  border-radius: 6px;
  margin-left: 15px;
}

.flow-icon {
  display: block;
  width: 30px;
  height: 30px;
}

.step-content .step-title {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
  color: #fff;
}

.step-content .step-desc {
  font-size: 14px;
  color: #ccc;
  margin: 5px 0 0;
}

.flow-line {
  width: 2px;
  height: 30px;
  background-color: #555;
  margin: 0 auto;
}

.notes {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 6px;
  width: 100%;
  margin-top: 20px;
}

.notes h3 {
  font-size: 16px;
  margin-bottom: 10px;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
  color: #fff;
}

.notes ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  color: #fff;
}

.notes li::before {
  content: "■ ";
  color: #fff;
}

.notes p {
  font-size: 14px;
  color: #ccc;
}


/* Service FAQ Section */
/* .service-faq {
  background: var(--light-gray);
} */
.service-faq {
  background: #fff;
  padding: 60px 20px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #333;
}

.service-faq .container {
  max-width: 700px;
  margin: 0 auto;
}

.service-faq h2 {
  text-align: center;
  margin-bottom: 2em;
  font-size: 1.6em;
  font-weight: bold;
}

/* FAQ部分 */
.faq-container {
  width: 100%;
  margin: 0 auto;
}

.question {
  border-bottom: 1px solid #ddd;
  margin-bottom: 8px;
  padding: 10px 0;
}

dt {
  padding: 10px 40px 10px 30px;
  cursor: pointer;
  user-select: none;
  position: relative;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

dt:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

dt::before {
  content: 'Q';
  color: #0071bb;
  font-weight: bold;
  margin-right: 8px;
  position: absolute;
  left: 10px;
}

dt::after {
  content: '＋';
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 1.2em;
  transition: transform 0.3s;
  color: #0071bb;
}

.question.appear dt::after {
  content: '―';
  color: #d80000;
}

dd {
  padding: 10px 20px 10px 35px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  position: relative;
  line-height: 1.7;
}

dd::before {
  content: 'A';
  color: #d80000;
  font-weight: bold;
  margin-right: 8px;
  position: absolute;
  left: 10px;
}

.question.appear dd {
  max-height: 300px;
  /* 開く最大高さを調整 */
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

/* Responsive Design for Service Page */
@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .plan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .plan-price-detail {
    grid-column: 1 / -1;
  }

  .optional-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-steps {
    max-width: 800px;
    margin: 40px auto 0;
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 80px 20px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .plan-header {
    padding: 50px 40px;
  }

  .plan-header h3 {
    font-size: 32px;
  }

  .plan-content {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 50px 40px;
  }

  .plan-description,
  .plan-features-detail {
    margin-bottom: 0;
  }

  .optional-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================
   Achievements Page Styles
   ========================================== */

/* Filter Section */
.achievements-filter {
  background: var(--white);
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 14px;
  color: var(--dark-gray);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
}

/* Achievements Gallery Section */
.achievements-gallery {
  background: var(--light-gray);
  padding: 60px 20px;
}

.achievements-grid {
  display: grid;
  gap: 30px;
  margin-top: 0;
}

.achievement-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  opacity: 1;
  transform: scale(1);
}

.achievement-card.hidden {
  display: none;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.achievement-link {
  display: block;
  color: inherit;
}

.achievement-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
  background: var(--dark-navy);
}

.achievement-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.achievement-card:hover .achievement-image {
  transform: scale(1.1);
}

.achievement-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 54, 93, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.achievement-card:hover .achievement-overlay {
  opacity: 1;
}

.view-detail {
  color: var(--white);
  font-weight: bold;
  padding: 12px 30px;
  border: 2px solid var(--gold);
  border-radius: 25px;
  background: transparent;
  transition: all 0.3s;
}

.achievement-card:hover .view-detail {
  background: var(--gold);
  color: var(--primary-navy);
}

.achievement-content {
  padding: 25px;
}

.achievement-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.achievement-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.achievement-badge.alpha {
  /* background: var(--gold); */
  background: linear-gradient(to right, #24436d, #357399);
  color: #fff;
}

.achievement-badge.beta {
  /* background: linear-gradient(to right, #e89317, #feeb26); */
  background: linear-gradient(135deg, #1b4f7d, #3379b7);
  color: #212121;
}

.achievement-badge.gamma {
  /* background: linear-gradient(to right, #29a08c, #a6efe4); */
  background: linear-gradient(135deg, #b97c10, #f0b318);
  color: #212121;
  border: 2px solid var(--gray);
}

.achievement-date {
  font-size: 14px;
  color: var(--dark-gray);
}

.achievement-title {
  font-size: 20px;
  color: var(--primary-navy);
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
}

.achievement-model {
  font-size: 14px;
  color: var(--dark-gray);
  margin: 0;
}

/* No Achievements */
.no-achievements {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: 10px;
}

.no-achievements p {
  font-size: 18px;
  color: var(--dark-gray);
}

/* Pagination */
.achievements-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.achievements-pagination .page-numbers {
  display: inline-block;
  padding: 10px 18px;
  background: var(--white);
  border: 2px solid var(--gray);
  border-radius: 8px;
  color: var(--dark-gray);
  font-weight: 500;
  transition: all 0.3s;
  min-width: 45px;
  text-align: center;
}

.achievements-pagination .page-numbers:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.achievements-pagination .page-numbers.current {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
}

.achievements-pagination .page-numbers.prev,
.achievements-pagination .page-numbers.next {
  padding: 10px 20px;
  min-width: auto;
}

/* Stats Section */
.achievements-stats {
  /* background: var(--white); */
  background: #212121;
  padding: 60px 20px;
}

.achievements-stats .section-title {
  color: #fff;
}

.stats-grid {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.stat-card {
  background: var(--light-gray);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--dark-gray);
  font-weight: 500;
}

/* Responsive Design for Achievements Page */
@media (min-width: 768px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-buttons {
    gap: 15px;
  }

  .filter-btn {
    font-size: 15px;
    padding: 14px 28px;
  }
}

@media (min-width: 1024px) {
  .achievements-gallery {
    padding: 80px 20px;
  }

  .achievements-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .achievement-image-wrapper {
    height: 280px;
  }

  .stat-number {
    font-size: 56px;
  }
}

@media (min-width: 1200px) {
  .achievements-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================
   Single Works Page Styles
   ========================================== */

/* Works Hero Section */
.works-hero {
  margin-top: 60px;
  /* background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%); */
  background: #212121;
  color: var(--white);
  padding: 40px 20px;
}

.works-breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.works-breadcrumb a {
  color: var(--white);
  text-decoration: underline;
}

.works-breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-separator {
  margin: 0 10px;
}

.breadcrumb-current {
  opacity: 0.7;
}

.works-title {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.works-meta-info {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 15px;
  /* align-items: center; */
  flex-direction: column;
}

.works-badge {
  display: inline-block;
  width: fit-content;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.works-badge.alpha {
  /* background: var(--gold); */
  background: linear-gradient(to right, #24436d, #357399);
  color: var(--primary-navy);
}

.works-badge.beta {
  /* background: var(--light-gold); */
  background: linear-gradient(135deg, #1b4f7d, #3379b7);
  /* color: var(--primary-navy); */
  color: #fff;
}

.works-badge.gamma {
  /* background: var(--white); */
  background: linear-gradient(135deg, #b97c10, #f0b318);
  color: var(--primary-navy);
}

.works-date,
.works-car {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.date-icon,
.car-icon {
  font-size: 16px;
}

/* Before/After Comparison Section */
.works-comparison {
  background: var(--light-gray);
  padding: 60px 20px;
}

.comparison-container {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.comparison-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.comparison-label {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.comparison-label.before {
  background: rgba(203, 213, 224, 0.95);
  color: var(--primary-navy);
}

.comparison-label.after {
  background: rgba(212, 175, 55, 0.95);
  color: var(--primary-navy);
}

.before-img,
.after-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Works Details Section */
.works-details {
  background: var(--white);
  padding: 60px 20px;
}

.details-grid {
  display: grid;
  gap: 40px;
}

.details-main {
  display: grid;
  gap: 30px;
}

.details-card {
  background: var(--light-gray);
  /* padding: 30px; */
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.details-heading {
  font-size: 24px;
  color: var(--primary-navy);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #004e8f;
}

.details-subheading {
  font-size: 20px;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.details-content {
  line-height: 1.8;
  color: var(--dark-gray);
}

.details-content p {
  margin-bottom: 1em;
}

.details-content ul,
.details-content ol {
  margin-left: 20px;
  margin-bottom: 1em;
}

.details-content li {
  margin-bottom: 0.5em;
}

.excerpt-content {
  background: var(--white);
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.8;
}

/* Customer Review */
.customer-review {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border: 2px solid #004e8f;
  padding: 20px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.review-customer {
  display: flex;
  gap: 15px;
  align-items: center;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-navy);
  flex-shrink: 0;
}

.customer-info h4 {
  color: var(--primary-navy);
  margin-bottom: 5px;
  font-size: 18px;
}

.customer-info p {
  font-size: 14px;
  color: var(--dark-gray);
  margin: 0;
}

.review-rating {
  display: flex;
  gap: 2px;
}

.review-rating .star {
  font-size: 24px;
  color: var(--gray);
}

.review-rating .star.filled {
  color: var(--gold);
}

.review-text {
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  line-height: 1.8;
}

/* Sidebar */
.details-sidebar {
  display: grid;
  gap: 20px;
  align-content: start;
}

.sidebar-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-heading {
  font-size: 18px;
  color: var(--primary-navy);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #004e8f;
}

.info-list {
  display: grid;
  gap: 15px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 500;
  color: var(--dark-gray);
  font-size: 14px;
  white-space: nowrap;
}

.info-value {
  text-align: right;
  color: var(--primary-navy);
  font-weight: 500;
}

.plan-badge-small {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.plan-badge-small.alpha {
  /* background: var(--gold); */
  background: linear-gradient(to right, #24436d, #357399);
  color: var(--primary-navy);
}

.plan-badge-small.beta {
  /* background: var(--light-gold); */
  background: linear-gradient(135deg, #1b4f7d, #3379b7);
  color: var(--primary-navy);
}

.plan-badge-small.gamma {
  /* background: var(--light-gray); */
  background: linear-gradient(135deg, #b97c10, #f0b318);
  color: var(--primary-navy);
  border: 2px solid var(--gray);
}

.features-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.features-list li {
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #004e8f;
  font-weight: bold;
  font-size: 18px;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: var(--white);
  text-align: center;
}

.sidebar-cta .sidebar-heading {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.cta-text {
  margin-bottom: 20px;
  font-size: 14px;
}

.sidebar-cta .btn {
  width: 100%;
  display: block;
}

/* Related Works Section */
.related-works {
  background: var(--light-gray);
  padding: 60px 20px;
}

.related-grid {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.related-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-link {
  display: block;
}

.related-image-wrapper {
  height: 220px;
  overflow: hidden;
}

.related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.related-card:hover .related-image {
  transform: scale(1.1);
}

.related-content {
  padding: 20px;
}

.related-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

.related-badge.alpha {
  /* background: var(--gold); */
  background: linear-gradient(135deg, #333, #555);
  color: var(--primary-navy);
}

.related-badge.beta {
  /* background: var(--light-gold); */
  background: linear-gradient(135deg, #1b4f7d, #3379b7);
  /* color: var(--primary-navy); */
  color: #fff;
}

.related-badge.gamma {
  /* background: var(--light-gray); */
  background: linear-gradient(135deg, #b97c10, #f0b318);
  /* color: var(--primary-navy); */
  color: #fff;
  border: 2px solid var(--gray);
}

.related-title {
  font-size: 18px;
  color: var(--primary-navy);
  margin-bottom: 8px;
  font-weight: bold;
}

.related-model {
  font-size: 14px;
  color: var(--dark-gray);
  margin: 0;
}

/* Works Navigation */
.works-navigation {
  background: var(--white);
  padding: 40px 20px;
  border-top: 1px solid var(--gray);
}

.nav-links {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.nav-previous,
.nav-next,
.nav-list {
  text-align: center;
}

.nav-link,
.nav-link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 10px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.nav-link:hover,
.nav-link-list:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.nav-arrow {
  font-size: 14px;
  color: var(--dark-gray);
  font-weight: 500;
}

.nav-title {
  font-size: 16px;
  color: var(--primary-navy);
  font-weight: bold;
}

.nav-link-list {
  background: var(--primary-navy);
  color: var(--white);
}

.nav-link-list:hover {
  background: var(--dark-navy);
  border-color: var(--gold);
}

.nav-link-list span {
  font-weight: bold;
  font-size: 16px;
}

/* Responsive Design for Single Works */
@media (min-width: 768px) {
  .works-hero {
    padding: 60px 20px;
  }

  .works-title {
    font-size: 36px;
  }

  .comparison-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .details-grid {
    grid-template-columns: 2fr 1fr;
    gap: 50px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .nav-previous {
    text-align: left;
  }

  .nav-next {
    text-align: right;
  }
}

@media (min-width: 1024px) {

  .works-comparison,
  .works-details,
  .related-works {
    padding: 80px 20px;
  }

  .works-title {
    font-size: 42px;
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .comparison-label {
    top: 30px;
    left: 30px;
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* ==========================================
   Price Page Styles
   ========================================== */

/* Price Overview Section */
.price-overview {
  background: var(--light-gray);
}

.price-plans-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.price-plan-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  position: relative;
}

.price-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.price-plan-card.premium {
  border: 3px solid var(--gold);
}

.plan-badge-top {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 1;
}

.plan-badge-top.alpha {
  /* background: var(--gold); */
  background: linear-gradient(to right, #24436d, #357399);
  color: var(--primary-navy);
}

.plan-badge-top.beta {
  /* background: var(--light-gold); */
  background: linear-gradient(135deg, #1b4f7d, #3379b7);
  color: var(--primary-navy);
}

.plan-badge-top.gamma {
  /* background: var(--gray); */
  background: linear-gradient(135deg, #b97c10, #f0b318);
  color: var(--primary-navy);
}

.plan-header-price {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  color: var(--white);
  padding: 40px 30px 30px;
  text-align: center;
}

.plan-header-price h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.plan-description {
  opacity: 0.9;
  font-size: 16px;
}

.plan-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  background: var(--light-gray);
}

.price-from {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-navy);
}

.price-to {
  font-size: 24px;
  color: var(--dark-gray);
}

.plan-features-list {
  padding: 30px;
}

.plan-features-list h4 {
  color: var(--primary-navy);
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}

.plan-features-list ul {
  list-style: none;
}

.plan-features-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features-list li:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
}

.plan-specs {
  background: var(--light-gray);
  padding: 20px 30px;
  display: grid;
  gap: 15px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.spec-label {
  color: var(--dark-gray);
  font-size: 14px;
}

.spec-value {
  color: var(--primary-navy);
  font-weight: bold;
  font-size: 16px;
}

.btn-block {
  width: calc(100% - 60px);
  margin: 30px;
  text-align: center;
}

/* Detailed Pricing Section */
.detailed-pricing {
  background: var(--white);
}

.pricing-tables {
  margin-top: 40px;
  display: grid;
  gap: 40px;
}

.pricing-table-wrapper {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.pricing-table-title {
  background: var(--light-gray);
  padding: 20px 30px;
  margin: 0;
  font-size: 20px;
}

.plan-badge-inline {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

.plan-badge-inline.alpha {
  /* background: var(--gold); */
  background: linear-gradient(to right, #24436d, #357399);
  color: var(--primary-navy);
}

.plan-badge-inline.beta {
  /* background: var(--light-gold); */
  background: linear-gradient(135deg, #1b4f7d, #3379b7);
  color: var(--primary-navy);
}

.plan-badge-inline.gamma {
  /* background: var(--gray); */
  background: linear-gradient(135deg, #b97c10, #f0b318);
  color: var(--primary-navy);
}

.pricing-table-scroll {
  overflow-x: auto;
}

.pricing-detail-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-detail-table thead {
  background: var(--primary-navy);
  color: var(--white);
}

.pricing-detail-table th,
.pricing-detail-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray);
}

.pricing-detail-table tbody tr:hover {
  background: var(--light-gray);
}

.pricing-detail-table tbody tr:last-child td {
  border-bottom: none;
}

.price-cell {
  color: var(--primary-navy);
  font-weight: bold;
  font-size: 18px;
  white-space: nowrap;
}

.pricing-note {
  margin-top: 40px;
  padding: 30px;
  background: var(--light-gold);
  border-radius: 10px;
  border-left: 4px solid var(--gold);
}

.pricing-note p {
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-navy);
}

.pricing-note ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.pricing-note li {
  padding-left: 25px;
  position: relative;
}

.pricing-note li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 20px;
}

/* Optional Pricing Section */
.optional-pricing {
  background: var(--light-gray);
}

.optional-pricing-grid {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.optional-pricing-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.optional-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.optional-pricing-card .optional-icon {
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
}

.optional-pricing-card h3 {
  color: var(--primary-navy);
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.optional-pricing-card>p {
  margin-bottom: 25px;
  line-height: 1.7;
  text-align: center;
  color: var(--dark-gray);
}

.optional-price-detail {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray);
}

.price-line:last-child {
  border-bottom: none;
}

.price-line span {
  color: var(--dark-gray);
}

.price-line strong {
  color: var(--primary-navy);
  font-size: 18px;
}

/* What's Included Section */
.whats-included {
  background: var(--white);
}

.included-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.included-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.included-header {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.included-header.included {
  background: linear-gradient(135deg, var(--success) 0%, #2f855a 100%);
  color: var(--white);
}

.included-header.not-included {
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  color: var(--white);
}

.included-icon {
  font-size: 32px;
  font-weight: bold;
}

.included-header h3 {
  margin: 0;
  font-size: 22px;
}

.included-list {
  list-style: none;
  padding: 30px;
}

.included-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid var(--light-gray);
}

.included-list li:last-child {
  border-bottom: none;
}

.included-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 20px;
}

/* Payment Methods Section */
.payment-methods {
  background: var(--light-gray);
}

.payment-grid {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.payment-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.payment-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.payment-card h3 {
  color: var(--primary-navy);
  margin-bottom: 10px;
  font-size: 20px;
}

.payment-card p {
  color: var(--dark-gray);
  font-size: 14px;
}

.payment-notes {
  margin-top: 40px;
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.payment-notes h4 {
  color: var(--primary-navy);
  margin-bottom: 20px;
  font-size: 20px;
}

.payment-notes ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.payment-notes li {
  padding-left: 25px;
  position: relative;
  line-height: 1.7;
}

.payment-notes li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
}

/* Cancellation Policy Section */
.cancellation-policy {
  background: var(--white);
}

.policy-content {
  margin-top: 40px;
}

.policy-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
}

.policy-card h3 {
  background: var(--primary-navy);
  color: var(--white);
  padding: 20px 30px;
  margin: 0;
  font-size: 20px;
}

.policy-table {
  padding: 30px;
}

.policy-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--light-gray);
  gap: 20px;
}

.policy-row:last-child {
  border-bottom: none;
}

.policy-timing {
  color: var(--dark-gray);
  font-weight: 500;
  flex: 1;
}

.policy-fee {
  color: var(--primary-navy);
  font-weight: bold;
  font-size: 20px;
  padding: 8px 20px;
  background: var(--light-gray);
  border-radius: 20px;
}

.policy-fee.free {
  background: var(--success);
  color: var(--white);
}

.policy-notes {
  padding: 30px;
  background: var(--light-gold);
  border-radius: 10px;
  border-left: 4px solid var(--gold);
}

.policy-notes h4 {
  color: var(--primary-navy);
  margin-bottom: 20px;
  font-size: 18px;
}

.policy-notes ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.policy-notes li {
  padding-left: 25px;
  position: relative;
  line-height: 1.7;
}

.policy-notes li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 20px;
}

/* Price FAQ Section */
.price-faq {
  background: var(--light-gray);
}

/* Responsive Design for Price Page */
@media (min-width: 768px) {
  .price-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-plans-grid .price-plan-card:first-child {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .optional-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .price-plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-plans-grid .price-plan-card:first-child {
    grid-column: auto;
    max-width: none;
  }

  .payment-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .optional-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .policy-table {
    max-width: 800px;
    margin: 0 auto;
  }
}

/* ==========================================
   Blog Page Styles
   ========================================== */

/* Blog Page Hero */
.blog-page-hero {
  margin-top: 60px;
  /* background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%); */
  background: #212121;
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.blog-page-hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.blog-page-hero p {
  font-size: 16px;
  opacity: 0.9;
}

/* Blog Main Content */
.blog-main-content {
  background: var(--light-gray);
  padding: 60px 20px;
}

.blog-layout {
  display: grid;
  gap: 40px;
}

/* Blog Filter */
.blog-filter {
  background: var(--white);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-title {
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tag {
  padding: 8px 16px;
  background: var(--light-gray);
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.filter-tag:hover {
  background: var(--light-gold);
  transform: translateY(-2px);
}

.filter-tag.active {
  background: var(--primary-navy);
  color: var(--white);
  /* border-color: var(--gold); */
}

.tag-count {
  opacity: 0.7;
  font-size: 12px;
  margin-left: 4px;
}

/* Blog Posts Grid */
.blog-posts-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.blog-post-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-card-image {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}

.post-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-post-card:hover .post-card-image img {
  transform: scale(1.1);
}

.post-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-navy);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.post-card-content {
  padding: 15px;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.meta-separator {
  opacity: 0.5;
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-card-title {
  font-size: 16px;
  color: var(--primary-navy);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-excerpt {
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
}

.post-card-readmore {
  /* color: var(--gold); */
  color: #004d99;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.blog-post-card:hover .post-card-readmore {
  gap: 8px;
}

/* No Posts */
.no-posts {
  background: var(--white);
  padding: 60px 30px;
  text-align: center;
  border-radius: 12px;
}

.no-posts-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.no-posts h3 {
  color: var(--primary-navy);
  margin-bottom: 10px;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.blog-pagination a,
.blog-pagination span {
  padding: 10px 16px;
  background: var(--white);
  border-radius: 8px;
  color: var(--primary-navy);
  font-weight: 500;
  transition: all 0.3s;
}

.blog-pagination a:hover {
  background: var(--gold);
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.blog-pagination .current {
  background: var(--primary-navy);
  color: var(--white);
}

/* Sidebar */
.blog-sidebar {
  display: grid;
  gap: 25px;
}

.sidebar-widget {
  background: var(--white);
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 18px;
  color: var(--primary-navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #004d99;
  font-weight: 700;
}

/* Search Widget */
.search-form {
  display: flex;
  gap: 8px;
}

.search-field {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.search-field:focus {
  outline: none;
  border-color: var(--gold);
}

.search-submit {
  padding: 12px 24px;
  background: var(--primary-navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.search-submit:hover {
  background: var(--gold);
  color: var(--primary-navy);
}

/* Categories Widget */
.category-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.category-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--light-gray);
  border-radius: 8px;
  transition: all 0.3s;
}

.category-item a:hover {
  background: var(--light-gold);
  transform: translateX(5px);
}

.category-name {
  font-weight: 500;
  color: var(--primary-navy);
}

.category-count {
  background: var(--primary-navy);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* Popular Posts Widget */
.popular-posts-list,
.recent-posts-list {
  display: grid;
  gap: 15px;
}

.popular-post-item,
.recent-post-item {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray);
}

.popular-post-item:last-child,
.recent-post-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post-item a {
  display: flex;
  gap: 12px;
  align-items: start;
}

.popular-post-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.popular-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-post-title,
.recent-post-title {
  font-size: 14px;
  color: var(--primary-navy);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-post-item:hover .popular-post-title,
.recent-post-item:hover .recent-post-title {
  color: var(--gold);
}

.popular-post-date,
.recent-post-date {
  font-size: 12px;
  color: var(--dark-gray);
  opacity: 0.7;
}

/* Tags Widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  padding: 6px 12px;
  background: var(--light-gray);
  border-radius: 16px;
  font-size: 13px;
  transition: all 0.3s;
}

.tag-item:hover {
  background: var(--primary-navy);
  color: var(--white);
}

/* CTA Widget */
.widget-cta-content {
  text-align: center;
}

.widget-cta-title {
  font-size: 20px;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.widget-cta-text {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

/* ==========================================
   Single Article Styles
   ========================================== */

/* Breadcrumb */
.single-breadcrumb {
  margin-top: 60px;
  background: var(--light-gray);
  padding: 15px 20px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--dark-gray);
}

.breadcrumb-separator {
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--primary-navy);
  font-weight: 500;
}

/* Article Layout */
.single-article {
  background: var(--light-gray);
  padding: 40px 20px;
}

.article-layout {
  display: grid;
  gap: 40px;
}

/* Article Header */
.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-category {
  display: inline-block;
  background: var(--primary-navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.article-title {
  font-size: 28px;
  color: var(--primary-navy);
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 700;
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: var(--dark-gray);
}

.meta-icon {
  margin-right: 4px;
}

/* Featured Image */
.article-featured-image {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: auto;
}

/* Social Share */
.article-share {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.article-share.bottom {
  /* background: var(--light-gold); */
  /* background: #212121; */
  text-align: center;
}

.share-label {
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.share-btn.twitter {
  background: #1DA1F2;
  color: white;
}

.share-btn.facebook {
  background: #1877F2;
  color: white;
}

.share-btn.line {
  background: #06C755;
  color: white;
}

.share-btn.copy {
  background: var(--gray);
  color: var(--dark-gray);
}

.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Article Body */
.article-body {
  /* background: var(--white); */
  padding: 40px;
  border-radius: 12px;
  line-height: 1.9;
  font-size: 16px;
}

.article-body h2 {
  font-size: 24px;
  color: var(--primary-navy);
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #004d99;
  font-weight: 700;
}

.article-body h3 {
  font-size: 20px;
  color: var(--primary-navy);
  margin: 30px 0 15px;
  padding-left: 15px;
  border-left: 4px solid #004d99;
  font-weight: 700;
}

.article-body h4 {
  font-size: 18px;
  color: var(--primary-navy);
  margin: 25px 0 12px;
  font-weight: 600;
}

.article-body p {
  margin-bottom: 1.5em;
}

.article-body ul,
.article-body ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body a {
  color: var(--gold);
  text-decoration: underline;
}

.article-body a:hover {
  color: var(--primary-navy);
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.article-body blockquote {
  background: var(--light-gray);
  border-left: 4px solid var(--gold);
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
}

.article-body code {
  background: var(--light-gray);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 90%;
}

.article-body pre {
  background: var(--dark-gray);
  color: var(--white);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
}

.article-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* Article Tags */
.article-tags {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.tags-label {
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Author Box */
.article-author {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  display: none;
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--light-gold);
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.author-bio {
  line-height: 1.7;
  color: var(--dark-gray);
}

/* Article Navigation */
.article-navigation {
  display: grid;
  gap: 15px;
  margin-bottom: 40px;
}

.nav-item {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s;
}

.nav-item:hover {
  background: var(--light-gold);
  transform: translateX(5px);
}

.nav-label {
  font-size: 13px;
  color: var(--dark-gray);
  margin-bottom: 8px;
  font-weight: 600;
}

.nav-link {
  color: var(--primary-navy);
  font-weight: 600;
  display: block;
}

/* Related Posts */
.related-posts {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.related-title {
  font-size: 24px;
  color: var(--primary-navy);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.related-grid {
  display: grid;
  gap: 20px;
}

.related-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-image {
  position: relative;
  /* padding-top: 60%; */
  overflow: hidden;
}

.related-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-content {
  padding: 20px;
  background: var(--white);
}

.related-date {
  font-size: 13px;
  color: var(--dark-gray);
  margin-bottom: 8px;
  display: block;
}

.related-post-title {
  font-size: 16px;
  color: var(--primary-navy);
  font-weight: 600;
  line-height: 1.5;
}

/* Table of Contents */
.toc-widget {
  position: sticky;
  top: 80px;
}

@media (max-width: 768px) {
  .toc-widget {
    display: none;
  }
}

.toc-list-items {
  list-style: none;
}

.toc-item {
  margin-bottom: 8px;
}

.toc-item a {
  display: block;
  padding: 8px 12px;
  color: var(--dark-gray);
  border-left: 3px solid transparent;
  transition: all 0.3s;
  font-size: 14px;
  line-height: 1.5;
}

.toc-item a:hover {
  color: var(--primary-navy);
  background: var(--light-gray);
  border-left-color: var(--gold);
}

.toc-h3 {
  padding-left: 20px;
}

.no-toc {
  color: var(--dark-gray);
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive Design */
@media (min-width: 768px) {
  .blog-page-hero h1 {
    font-size: 42px;
  }

  .blog-layout {
    grid-template-columns: 1fr 320px;
  }

  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr 320px;
  }

  .article-title {
    font-size: 36px;
  }

  .article-navigation {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-body {
    padding: 60px;
  }
}

@media (max-width: 767px) {
  .blog-sidebar {
    order: 2;
  }

  .article-sidebar {
    order: 2;
  }

  .article-body {
    padding: 0px;
  }
}

/* ==========================================
   Pricavy Policy Page Styles
   ========================================== */
.pp-body {
  /* background: #212121;
  color: #ffffff; */
}

.pp-body h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.pp-body h2 {
  font-size: 18px;
}

.pp-body p {
  margin-bottom: 30px;
  font-size: 14px;
}

.pp-body ul {
  list-style: none;
  margin-bottom: 30px;
}

/* Companyページ */
/* ========================================
   企業沿革ページ専用スタイル
   ======================================== */

/* Page Hero Section */
.page-hero {
  /* background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%); */
  color: #ffffff;
  padding: 80px 20px 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.9;
  letter-spacing: 0.1em;
}

/* Company Story Section */
.company-story {
  padding: 80px 20px;
  background: #ffffff;
}

.company-story .container {
  max-width: 900px;
  margin: 0 auto;
}

.company-section {
  margin-bottom: 80px;
}

.company-section:last-child {
  margin-bottom: 0;
}

.company-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a365d;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.company-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  /* background: linear-gradient(90deg, #c9a961 0%, #d4af37 100%); */
  background: #212121;
}

.company-section-title .title-accent {
  /* color: #2b6cb0; */
  font-weight: 800;
}

.company-content {
  line-height: 2;
  color: #333;
}

.company-content p {
  margin-bottom: 24px;
  font-size: 16px;
}

.company-content p:last-child {
  margin-bottom: 0;
}

/* Mission Section */
.mission-content {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 40px 30px;
  border-radius: 12px;
  /* border-left: 5px solid #2b6cb0; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mission-content p {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  color: #1a365d;
}

/* Message Section */
.message-section {
  background: #f9fafb;
  padding: 60px 40px;
  /* border-radius: 16px; */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.message-content {
  position: relative;
}

.message-quote {
  background: #ffffff;
  /* border-left: 4px solid #c9a961; */
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.message-quote p {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  font-style: italic;
}

.message-quote p:last-child {
  margin-bottom: 0;
}

.message-strong {
  font-size: 18px;
  font-weight: 700;
  color: #2b6cb0;
  text-align: center;
  padding: 20px 0;
  margin: 32px 0 !important;
  position: relative;
}

.message-strong::before,
.message-strong::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #004d99;
}

.message-strong::before {
  top: 0;
}

.message-strong::after {
  bottom: 0;
}

/* Company Info Section */
.info-section {
  /* background: #212121; */
  padding: 0px;
  /* border-radius: 16px; */
  color: #ffffff;
}

.info-section .company-section-title {
  color: #212121;
}

.info-section .company-section-title::after {
  background: #004d99;
}

.info-section .title-accent {
  /* color: #d4af37; */
}

.company-info-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.company-info-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.company-info-table tr:last-child {
  border-bottom: none;
}

.company-info-table th {
  background: #f7fafc;
  color: #1a365d;
  font-weight: 700;
  padding: 20px 24px;
  text-align: left;
  width: 150px;
  vertical-align: top;
  font-size: 15px;
}

.company-info-table td {
  padding: 20px 24px;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}

.company-info-table td a {
  color: #2b6cb0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.company-info-table td a:hover {
  color: #1a365d;
  text-decoration: underline;
}

.info-note {
  font-size: 13px;
  color: #718096;
  display: inline-block;
  margin-top: 4px;
}

/* CTA Section */
.company-cta {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 80px 20px;
}

.company-cta .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.company-cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 16px;
}

.company-cta p {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.8;
}

.company-cta .btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #2b6cb0 0%, #357ab8 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(43, 108, 176, 0.3);
}

.company-cta .btn:hover {
  background: linear-gradient(135deg, #357ab8 0%, #4c8edc 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(43, 108, 176, 0.4);
}

/* ========================================
   レスポンシブデザイン
   ======================================== */

/* タブレット向け（768px以上） */
@media (min-width: 768px) {
  .page-hero {
    padding: 100px 20px 80px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .company-story {
    padding: 100px 40px;
  }

  .company-section {
    margin-bottom: 100px;
  }

  .company-section-title {
    font-size: 36px;
    margin-bottom: 50px;
    padding-bottom: 24px;
  }

  .company-section-title::after {
    width: 80px;
    height: 4px;
  }

  .company-content p {
    font-size: 17px;
  }

  .mission-content {
    padding: 50px 60px;
  }

  .mission-content p {
    font-size: 18px;
  }

  .message-section {
    padding: 70px 60px;
  }

  .message-strong {
    font-size: 20px;
  }

  .info-section {
    padding: 0px;
  }

  .company-info-table th {
    width: 180px;
    font-size: 16px;
  }

  .company-info-table td {
    font-size: 16px;
  }

  .company-cta {
    padding: 100px 40px;
  }

  .company-cta h2 {
    font-size: 36px;
  }

  .company-cta p {
    font-size: 17px;
  }
}

/* PC向け（1024px以上） */
@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 52px;
  }

  .company-story .container {
    max-width: 1000px;
  }

  .company-section-title {
    font-size: 40px;
  }

  .company-content p {
    font-size: 18px;
  }

  .mission-content p {
    font-size: 19px;
  }

  .message-strong {
    font-size: 22px;
  }
}

/* スマートフォン向け（767px以下） */
@media (max-width: 767px) {
  .page-hero {
    padding: 60px 20px 40px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 14px;
  }

  .company-story {
    padding: 60px 20px;
  }

  .company-section {
    margin-bottom: 60px;
  }

  .company-section-title {
    font-size: 26px;
    margin-bottom: 30px;
    padding-bottom: 16px;
  }

  .company-section-title::after {
    width: 50px;
  }

  .company-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .mission-content {
    padding: 30px 20px;
  }

  .mission-content p {
    font-size: 15px;
  }

  .message-section {
    padding: 40px 24px;
  }

  .message-quote {
    padding: 20px 20px;
    margin: 24px 0;
  }

  .message-quote p {
    font-size: 14px;
  }

  .message-strong {
    font-size: 16px;
    padding: 16px 0;
    margin: 24px 0 !important;
  }

  .message-strong::before,
  .message-strong::after {
    width: 60px;
  }

  .info-section {
    padding: 0px;
  }

  .company-info-table th,
  .company-info-table td {
    display: block;
    width: 100%;
    padding: 16px 20px;
  }

  .company-info-table th {
    background: #1a365d;
    color: #ffffff;
    border-bottom: none;
  }

  .company-info-table td {
    border-bottom: 2px solid #e2e8f0;
  }

  .company-info-table tr {
    border-bottom: none;
  }

  .info-note {
    font-size: 12px;
  }

  .company-cta {
    padding: 60px 20px;
  }

  .company-cta h2 {
    font-size: 26px;
  }

  .company-cta p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .company-cta .btn {
    padding: 14px 36px;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
  }
}
/* Representative Profile */
.representative-profile {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.representative-image {
  flex-shrink: 0;
  text-align: center;
}

.representative-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 4px solid #ffffff; */
}

.representative-name {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #1a365d;
}

.representative-text {
  flex: 1;
}

/* タブレット向け（768px以上） */
@media (min-width: 768px) {
  .representative-profile {
    gap: 50px;
  }
  
  .representative-image img {
    width: 240px;
    height: 240px;
  }
  
  .representative-name {
    font-size: 18px;
  }
}

/* スマートフォン向け（767px以下） */
@media (max-width: 767px) {
  .representative-profile {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .representative-image img {
    width: 180px;
    height: 180px;
  }
  
  .representative-name {
    font-size: 16px;
  }
  
  .representative-text {
    width: 100%;
  }
}