/* ===== スクロールアニメーション ===== */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.88); }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ヒーローは読み込み時にアニメーション */
.hero-animate {
  animation: heroFadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* ===== リセット & ベース ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #333;
  line-height: 1.7;
}

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

ul {
  list-style: none;
}

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

/* ===== コンテナ ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ナビゲーション ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: #555;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f97316;
}

.btn-contact {
  background: #f97316;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-contact:hover {
  background: #ea580c;
}

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  background-image: url('../images/hero.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fff;
  color: #fff;
  aspect-ratio: 16 / 9;
  padding: 0 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 15, 5, 0.6);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

.hero-inner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* ===== ページヒーロー（制作実績ページをサービスページ風に） ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
  color: #111;
  padding: 120px 40px 110px;
  text-align: left;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero::after {
  content: "WORKS";
  position: absolute;
  right: -40px;
  bottom: -30px;
  font-size: clamp(96px, 18vw, 240px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(249, 115, 22, 0.08);
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #111;
}

.page-hero h1::before {
  content: "WORKS";
  display: block;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 6px 22px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 90px 24px 80px;
  }

  .page-hero h1 {
    font-size: 2.4rem;
  }

  .page-hero::after {
    right: -20px;
    bottom: -10px;
    font-size: 120px;
  }
}

/* ===== ボタン ===== */
.btn-primary {
  display: inline-block;
  background: #f97316;
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  border: 2px solid #f97316;
  color: #f97316;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: #f97316;
  color: #fff;
}

/* ===== セクション共通 ===== */
.section-intro,
.section-content {
  padding: 80px 0;
}

.section-intro {
  background: #f8fafc;
  text-align: center;
}

.section-intro h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.section-intro p {
  color: #555;
  margin-bottom: 32px;
}

.section-content h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  margin-top: 48px;
  color: #1a1a1a;
}

.section-content h2:first-child {
  margin-top: 0;
}

.section-content p {
  color: #555;
  margin-bottom: 24px;
}

/* ===== サービスカード ===== */
.service-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid #f97316;
}

.service-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

/* ===== 実績グリッド ===== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.work-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.work-thumb {
  background: #e2e8f0;
  height: 200px;
}

.work-card h3 {
  padding: 16px 20px 4px;
  font-size: 1.1rem;
}

.work-card p {
  padding: 0 20px 20px;
  color: #666;
  font-size: 0.9rem;
}

/* ===== 料金テーブル ===== */
.pricing-note {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.pricing-plan {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}

.pricing-plan.featured {
  border-color: #f97316;
  border-width: 2px;
  box-shadow: 0 8px 24px rgba(249,115,22,0.15);
}

.pricing-plan h2 {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 16px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 24px;
}

.pricing-plan ul {
  text-align: left;
  margin-bottom: 32px;
  color: #555;
}

.pricing-plan li {
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
}

/* ===== お問い合わせフォーム ===== */
.contact-form {
  max-width: 640px;
  margin: 40px auto 0;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.required {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
}

/* ===== フッター ===== */
footer {
  background: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 32px;
  font-size: 0.9rem;
}

/* ===== セクション共通ヘッダー ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #f97316;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.section-desc {
  color: #666;
  font-size: 1rem;
}

/* ===== 選ばれる理由 ===== */
.section-reasons {
  padding: 96px 0;
  background: #f8fafc;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}

.reason-card {
  display: grid;
  grid-template-columns: 72px 220px 1fr;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 28px 32px;
  border-radius: 18px;
}

.reason-icon {
  margin-bottom: 0;
  font-size: 2.2rem;
  text-align: center;
}

.reason-card h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.6;
}

.reason-card p {
  font-size: 0.92rem;
  line-height: 1.8;
}
.reason-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.reason-icon {
  font-size: 2rem;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 16px;
  opacity: 0.3;
}

.reason-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.reason-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ===== サービス紹介 ===== */
.section-services {
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 36px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-item:hover {
  border-color: #f97316;
  box-shadow: 0 4px 20px rgba(249,115,22,0.1);
}

.service-icon {
  font-size: 2rem;
  color: #f97316;
  margin-bottom: 16px;
}

.service-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.service-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.link-more {
  font-size: 0.9rem;
  color: #f97316;
  font-weight: 600;
  transition: opacity 0.2s;
}

.link-more:hover {
  opacity: 0.7;
}

/* ===== メンバー紹介：強化版 ===== */
.section-members {
  padding: 100px 0;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.members-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.member-card-enhanced {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.member-card-enhanced:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.member-card-enhanced .member-photo {
  width: 150px;
  height: 190px;
  border-radius: 18px;
  overflow: hidden;
  margin: 0;
  background: #f1f5f9;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.member-card-enhanced .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card-enhanced .member-photo-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, #f8fafc, #fff7ed);
  border: 1px dashed rgba(249, 115, 22, 0.35);
  color: #f97316;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.member-content {
  min-width: 0;
}

.member-card-enhanced .member-role {
  display: inline-block;
  margin-bottom: 8px;
  color: #f97316;
  background: rgba(249, 115, 22, 0.09);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.member-card-enhanced .member-name {
  margin-bottom: 12px;
  color: #1a1a1a;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.member-desc {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.member-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(249, 115, 22, 0.22);
  background: #fffaf6;
  color: #8a4b16;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.76rem;
  font-weight: 600;
}

.member-result {
  border-left: 3px solid #f97316;
  padding-left: 12px;
  color: #444;
  font-size: 0.86rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.member-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.member-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #f97316;
  font-size: 0.86rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(249, 115, 22, 0.4);
  transition: opacity 0.2s, transform 0.2s;
}

.member-link:hover {
  opacity: 0.7;
  transform: translateX(2px);
}

/* メンバー紹介：スマホ */
@media (max-width: 768px) {
  .section-members {
    padding: 72px 0;
  }

  .members-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .member-card-enhanced {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 20px;
  }

  .member-card-enhanced .member-photo {
    width: 100%;
    height: 260px;
  }

  .member-card-enhanced .member-name {
    font-size: 1.25rem;
  }

  .member-desc {
    font-size: 0.9rem;
  }
}
/* ===== FAQ ===== */
.section-faq {
  padding: 96px 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  font-family: inherit;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  font-size: 1.4rem;
  color: #f97316;
  flex-shrink: 0;
  transition: transform 0.2s;
}

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

.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== CTA ===== */
.section-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #f97316 100%);
  color: #fff;
  text-align: center;
}

.section-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-cta p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* ===== サービス スライダー ===== */
.service-slider {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.service-slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.service-slider {
  position: relative;
  overflow: hidden;
  margin: 48px auto 0;
  width: 90%;
  max-width: 1100px;
  border-radius: 16px;
}

.service-slide {
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: auto;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.1) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 1;
  padding: 64px 80px;
  max-width: 560px;
  color: #fff;
}

.slide-icon {
  font-size: 2.4rem;
  color: #f97316;
  margin-bottom: 20px;
}

.slide-content h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.slide-content p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 32px;
}

.slide-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 4px;
  transition: border-color 0.2s, gap 0.2s;
}

.slide-link:hover {
  border-color: #f97316;
  gap: 16px;
}

/* 矢印 */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: rgba(249,115,22,0.8);
  border-color: #f97316;
}

.slider-prev { left: 32px; }
.slider-next { right: 32px; }

/* ドット */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}

.slider-dot.active {
  background: #f97316;
  width: 8px;
}

/* プログレスバー（スライド下端） */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}

.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: #f97316;
}

.slider-progress-bar.running {
  animation: sliderProgress 3s linear forwards;
}

@keyframes sliderProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ===== クライアント ===== */
.section-clients {
  padding: 80px 0;
  background: #fff;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}

.client-logo {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.client-logo:hover {
  border-color: #f97316;
  box-shadow: 0 4px 16px rgba(249,115,22,0.1);
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.2s, opacity 0.2s;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== お悩みリスト：デザイン強化版 ===== */
.section-worries {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.13), transparent 32%),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
  overflow: hidden;
}

.section-worries::before {
  content: '';
  position: absolute;
  top: 80px;
  right: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 50%;
}

.section-worries::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: 60px;
  width: 220px;
  height: 220px;
  background: rgba(249, 115, 22, 0.08);
  border-radius: 50%;
  filter: blur(8px);
}

.section-worries .container {
  position: relative;
  z-index: 1;
}

.worries-header {
  margin-bottom: 52px;
}

.worries-header .section-label {
  display: inline-block;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.14em;
}

.worries-header h2 {
  font-size: 2.4rem;
}

.worries-header h2 span {
  color: #f97316;
}

.worries-lead {
  color: #555;
  font-size: 1rem;
  line-height: 1.9;
  margin-top: 18px;
}

.worries-list {
  max-width: 980px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.worries-list li {
  position: relative;
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 20px;
  padding: 24px 28px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.worries-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.48);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.worry-check {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.28);
}

.worry-text {
  position: relative;
  z-index: 1;
  padding-left: 20px;
  border-left: 1px solid rgba(249, 115, 22, 0.35);
  color: #222;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

.worry-number {
  position: absolute;
  right: 22px;
  bottom: 6px;
  font-size: 3.8rem;
  font-weight: 800;
  font-style: italic;
  color: rgba(249, 115, 22, 0.08);
  line-height: 1;
  pointer-events: none;
}

.worry-wide {
  grid-column: 1 / -1;
}

.worries-cta {
  width: fit-content;
  margin: 0 auto;
  padding: 20px 56px;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 1.22rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.26);
}

.worries-cta strong {
  color: #fff;
  font-size: 1.18em;
  font-weight: 800;
}

/* スマホ */
@media (max-width: 768px) {
  .section-worries {
    padding: 72px 0;
  }

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

  .worries-header h2 {
    font-size: 1.75rem;
  }

  .worries-lead {
    font-size: 0.9rem;
  }

  .worries-lead br {
    display: none;
  }

  .worries-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 36px;
  }

  .worry-wide {
    grid-column: auto;
  }

  .worries-list li {
    min-height: 116px;
    border-radius: 18px;
    padding: 20px 18px;
    gap: 14px;
  }

  .worry-check {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .worry-text {
    padding-left: 14px;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .worry-number {
    right: 16px;
    bottom: 6px;
    font-size: 3rem;
  }

  .worries-cta {
    width: 100%;
    max-width: 360px;
    border-radius: 18px;
    padding: 18px 20px;
    font-size: 1.02rem;
    line-height: 1.7;
  }
}

/* about.html でも使う worries-list */
.section-content .worries-list {
  margin: 0 0 32px;
}

/* ===== About リード文 ===== */
.about-lead {
  background: #fff8f3;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 56px;
  line-height: 1.9;
}

.about-lead p {
  margin-bottom: 24px;
  color: #444;
}

.about-lead blockquote {
  border-left: 4px solid #f97316;
  padding: 16px 24px;
  margin: 24px 0;
  background: #fff;
  border-radius: 0 8px 8px 0;
  color: #333;
  font-size: 1.05rem;
  line-height: 2;
}

/* ===== サービス詳細（services.html）===== */
.service-detail {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
  transition: border-color 0.2s;
}

.service-detail:hover {
  border-color: #f97316;
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-detail-header .service-icon {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.service-detail h2 {
  font-size: 1.4rem;
  margin: 0;
  color: #1a1a1a;
}

.service-detail h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f97316;
  margin: 24px 0 12px;
}

.service-detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #555;
}

.service-detail-list li i {
  color: #f97316;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== ハンバーガーボタン（PC では非表示） ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: #1a1a1a;
  padding: 4px 8px;
  line-height: 1;
}

@media (max-width: 480px) {
  .reasons-grid,
  .services-grid,
  .members-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-slider {
    width: calc(100% - 40px);
    max-width: none;
    border-radius: 18px;
  }

  .service-slide {
    aspect-ratio: 2 / 3;
    height: auto;
    min-height: auto;
    background-size: cover;
    background-position: center center;
  }

  .slide-content {
    padding: 32px 24px 68px;
  }

  .slide-content h3 {
    font-size: 1.35rem;
    line-height: 1.35;
  }

  .slide-content p {
    font-size: 0.88rem;
    line-height: 1.7;
  }
}
/* ===== ハンバーガーボタン（PC では非表示） ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: #1a1a1a;
  padding: 4px 8px;
  line-height: 1;
}

/* ===== PC表示の保険 ===== */
@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    width: auto;
    height: auto;
    background: transparent;
    border-top: none;
    padding: 0;
    gap: 32px;
  }

  .navbar .logo {
    position: static;
    transform: none;
    flex: none;
  }
}

/* ===== タブレット・スマホ ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* ヘッダー */
  .navbar {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 64px;
    background: #fff;
    z-index: 100;
  }

  .navbar .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 100;
    flex: none;
  }

  .navbar .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar .logo img {
    height: 70px;
    width: auto;
    max-width: 300px;
  }

  .hamburger {
    position: absolute;
    right: 20px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    z-index: 101;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 16px 0;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .btn-contact {
    margin: 8px 20px 0;
    text-align: center;
    border-radius: 6px;
  }

  /* メニューを開いた時 */
  .navbar.menu-open .logo {
    display: none;
  }

  .navbar.menu-open .hamburger {
    position: fixed;
    top: 24px;
    right: 24px;
    left: auto;
    transform: none;
    z-index: 1001;
    font-size: 2rem;
  }

  .navbar.menu-open .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 96px 42px 40px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    border-top: none;
  }

  .navbar.menu-open .nav-links li {
    width: 100%;
  }

  .navbar.menu-open .nav-links a {
    font-size: 1.35rem;
    color: #555;
    border-bottom: none;
    padding: 0;
  }

  .navbar.menu-open .nav-links .btn-contact {
    width: 100%;
    margin: 0;
    text-align: center;
    color: #fff !important;
    font-size: 1.25rem;
    padding: 18px 24px;
    border-radius: 10px;
  }

  /* ヒーロー */
  .hero {
    background-image: url('../images/hero-sp.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    aspect-ratio: auto;
    padding: 120px 24px;
  }

  .hero-inner h1 {
    font-size: 1.8rem;
  }

  .hero-inner p {
    font-size: 0.95rem;
  }

  /* グリッド */
  .pricing-table,
  .works-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-list {
    grid-template-columns: 1fr;
  }

  /* サービススライダー */
  .service-slider {
    width: calc(100% - 40px);
    max-width: none;
    border-radius: 18px;
  }

  .service-slide {
    aspect-ratio: 2 / 3;
    height: auto;
    min-height: auto;
    background-size: cover;
    background-position: center center;
  }

  .slide-content {
    padding: 32px 24px 68px;
  }

  .slide-content h3 {
    font-size: 1.35rem;
    line-height: 1.35;
  }

  .slide-content p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .slider-prev {
    left: 12px;
  }

  .slider-next {
    right: 12px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-cta h2 {
    font-size: 1.5rem;
  }
}

/* ===== 480px以下 ===== */
@media (max-width: 480px) {
  .reasons-grid,
  .services-grid,
  .members-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
  GritLinkとは？
============================== */

.section-about-gritlink {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #0b0f14 0%, #151922 48%, #080a0f 100%);
  color: #fff;
  overflow: hidden;
}

.section-about-gritlink::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  filter: blur(4px);
}

.about-gl-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-gl-left h2 {
  margin-top: 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.about-gl-lead {
  margin-top: 28px;
  font-size: 20px;
  line-height: 2;
  font-weight: 600;
  color: #ffffff;
}

.about-gl-text {
  margin-top: 18px;
  font-size: 15px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.72);
}

.about-gl-right {
  display: grid;
  gap: 20px;
}

.about-gl-card {
  position: relative;
  padding: 32px 34px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.about-gl-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.about-gl-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #111;
  background: #fff;
}

.about-gl-card h3 {
  font-size: 21px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #fff;
}

.about-gl-card p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
}


/* ==============================
  ご相談の流れ
============================== */

.section-flow {
  padding: 110px 0;
  background: #f7f8fa;
  position: relative;
}

.flow-timeline {
  position: relative;
  margin-top: 56px;
  display: grid;
  gap: 22px;
}

.flow-timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 20px;
  height: calc(100% - 92px);
  width: 1px;
  background: linear-gradient(to bottom, #111, rgba(17, 17, 17, 0.08));
}

.flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: stretch;
}

.flow-number {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.flow-content {
  padding: 28px 34px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.flow-content:hover {
  transform: translateX(6px);
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.1);
}

.flow-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
  letter-spacing: 0.04em;
}

.flow-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}


/* ==============================
  SP対応
============================== */

@media screen and (max-width: 768px) {
  .section-about-gritlink {
    padding: 84px 0;
  }

  .about-gl-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-gl-lead {
    font-size: 17px;
    line-height: 1.9;
  }

  .about-gl-card {
    padding: 26px 24px;
    border-radius: 20px;
  }

  .about-gl-card h3 {
    font-size: 18px;
  }

  .section-flow {
    padding: 84px 0;
  }

  .flow-timeline {
    margin-top: 40px;
    gap: 18px;
  }

  .flow-timeline::before {
    left: 25px;
  }

  .flow-item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .flow-number {
    width: 52px;
    height: 52px;
    font-size: 12px;
  }

  .flow-content {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .flow-content h3 {
    font-size: 18px;
  }

  .flow-content p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .reasons-grid {
    max-width: 100%;
    gap: 16px;
  }

  .reason-card {
    display: block;
    text-align: left;
    padding: 26px 22px;
  }

  .reason-icon {
    text-align: left;
    margin-bottom: 12px;
    font-size: 1.8rem;
  }

  .reason-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
  }

  .reason-card p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 768px) {
  .flow-timeline {
    margin-top: 40px;
    gap: 18px;
  }

  .flow-timeline::before {
    left: 26px;
    top: 26px;
    height: calc(100% - 78px);
    bottom: auto;
  }

  .flow-item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .flow-number {
    width: 52px;
    height: 52px;
    font-size: 12px;
  }
}

/* ==============================
  代表者の一言
============================== */

.section-message {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.section-message::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
  filter: blur(4px);
}

.message-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.message-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.message-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0.02)
  );
  pointer-events: none;
}

.message-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.message-content {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.message-content h2 {
  margin-top: 10px;
  margin-bottom: 28px;
  color: #111;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.message-quote {
  position: relative;
  padding: 28px 30px;
  margin-bottom: 28px;
  border-radius: 22px;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: -28px;
  right: 22px;
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  font-family: serif;
}

.message-quote p {
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.message-text {
  color: #555;
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 18px;
}

.message-sign {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.message-sign span {
  color: #777;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.message-sign strong {
  color: #111;
  font-size: 22px;
  letter-spacing: 0.06em;
}


/* スマホ */
@media screen and (max-width: 768px) {
  .section-message {
    padding: 84px 0;
  }

  .message-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .message-photo {
    border-radius: 22px;
  }

  .message-photo img {
    height: 380px;
  }

  .message-content {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .message-content h2 {
    font-size: 28px;
    margin-bottom: 22px;
  }

  .message-quote {
    padding: 24px 22px;
    border-radius: 18px;
  }

  .message-quote p {
    font-size: 17px;
    line-height: 1.9;
  }

  .message-text {
    font-size: 14px;
    line-height: 2;
  }

  .message-sign {
    display: block;
  }

  .message-sign span {
    display: block;
    margin-bottom: 6px;
  }

  .message-sign strong {
    font-size: 20px;
  }
}

/* ==============================
   About Page
============================== */

.about-page {
  background: #f7f7f4;
  color: #121212;
  overflow: hidden;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #8c7b5f;
}

.about-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #8c7b5f;
}

/* ==============================
   About Hero - Orange Version
============================== */

.about-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 142, 66, 0.28), transparent 34%),
    radial-gradient(circle at 14% 82%, rgba(255, 183, 91, 0.24), transparent 32%),
    linear-gradient(135deg, #fff8ef 0%, #fffdf8 48%, #f7f7f4 100%);
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 126, 35, 0.28), rgba(255, 184, 92, 0.12));
  filter: blur(2px);
  pointer-events: none;
}

.about-hero::after {
  content: "GRITLINK";
  position: absolute;
  right: -24px;
  bottom: 22px;
  font-size: clamp(70px, 13vw, 190px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255, 122, 30, 0.075);
  line-height: 1;
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #171717;
}

.about-hero-inner .about-label {
  color: #f0781e;
}

.about-hero-inner .about-label::before {
  background: #f0781e;
}

.about-hero-inner h1 {
  margin: 0 0 28px;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 850;
  color: #171717;
}

.about-hero-inner h1 span {
  color: #f0781e;
}

.about-hero-inner p {
  max-width: 720px;
  margin: 0;
  color: #444;
  font-size: 16px;
  line-height: 2;
}

.about-hero-accent {
  position: absolute;
  right: 8%;
  top: 48%;
  width: 170px;
  height: 170px;
  border-radius: 40px;
  background: linear-gradient(135deg, #ff7a1a, #ffb15b);
  transform: rotate(12deg);
  opacity: 0.13;
  pointer-events: none;
}
/* Concept */
.about-concept {
  padding: 120px 0;
}

.about-concept-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.about-concept-title h2,
.about-difference-copy h2,
.about-message-card h2,
.about-cta-inner h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.about-concept-text {
  padding-top: 44px;
}

.about-concept-text p {
  margin: 0 0 28px;
  font-size: 15.5px;
  line-height: 2.15;
  color: #444;
}

/* Philosophy */
.about-philosophy {
  padding: 110px 0;
  background: #fff;
}

.about-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.about-section-header .about-label {
  justify-content: center;
}

.about-section-header .about-label::after {
  content: "";
  width: 34px;
  height: 1px;
  background: #8c7b5f;
}

.about-section-header h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -0.04em;
}

.about-style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-style-card {
  position: relative;
  min-height: 280px;
  padding: 38px 34px;
  border-radius: 28px;
  background: #f7f7f4;
  border: 1px solid rgba(20, 20, 20, 0.06);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-style-card::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(177, 151, 96, 0.13);
}

.about-style-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.about-style-card span {
  display: inline-block;
  margin-bottom: 50px;
  color: #9a8359;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.about-style-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.about-style-card p {
  margin: 0;
  color: #555;
  font-size: 14.5px;
  line-height: 1.9;
}

/* Difference */
.about-difference {
  padding: 120px 0;
  background: #151513;
  color: #fff;
}

.about-difference-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-difference-copy p:not(.about-label) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
  font-size: 15px;
}

.about-difference-box {
  display: grid;
  gap: 14px;
}

.difference-item {
  padding: 26px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.difference-item p {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.difference-item span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.difference-item.active {
  background: linear-gradient(135deg, #b79b61, #8d7448);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(183, 155, 97, 0.26);
}

.difference-item.active span {
  color: rgba(255, 255, 255, 0.86);
}

/* Message */
.about-message {
  padding: 120px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(183, 155, 97, 0.2), transparent 28%),
    #f7f7f4;
}

.about-message-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
}

.about-message-card p:not(.about-label) {
  margin: 26px 0 0;
  color: #444;
  font-size: 15.5px;
  line-height: 2.05;
}

.about-cta-inner {
  position: relative;
  padding: 70px 56px;
  border-radius: 36px;
  text-align: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #ff7a1a, #f28a24 48%, #d96b12);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(240, 120, 30, 0.28);
}

.about-cta-inner::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.about-cta-inner .about-label {
  color: rgba(255, 255, 255, 0.88);
}

.about-cta-inner .about-label::before,
.about-cta-inner .about-label::after {
  background: rgba(255, 255, 255, 0.72);
}

.about-cta-inner p:not(.about-label) {
  max-width: 640px;
  margin: 24px auto 34px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 2;
}

.about-cta-inner .btn-primary {
  background: #fff;
  color: #f0781e;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.about-cta-inner .btn-primary:hover {
  background: #171717;
  color: #fff;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .about-concept,
  .about-philosophy,
  .about-difference,
  .about-message {
    padding: 82px 0;
  }

  .about-concept-grid,
  .about-difference-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-concept-text {
    padding-top: 0;
  }

  .about-style-grid {
    grid-template-columns: 1fr;
  }

  .about-style-card {
    min-height: auto;
  }

  .about-cta-inner {
    padding: 54px 26px;
    border-radius: 28px;
  }
}

@media screen and (max-width: 600px) {
  .about-hero-inner h1 {
    font-size: 38px;
  }

  .about-hero-inner p {
    font-size: 14.5px;
    line-height: 1.9;
  }

  .about-concept-title h2,
  .about-difference-copy h2,
  .about-message-card h2,
  .about-cta-inner h2 {
    font-size: 30px;
  }

  .about-message-card {
    padding: 38px 24px;
    border-radius: 28px;
  }

  .difference-item {
    padding: 22px;
  }
}
/* ==============================
   About Hero SP - Orange Version
   スマホでもPCと同じオレンジデザインにする
============================== */

@media screen and (max-width: 900px) {
  .about-hero {
    min-height: auto;
    padding: 110px 0 86px;
    background:
      radial-gradient(circle at 82% 12%, rgba(255, 142, 66, 0.28), transparent 38%),
      radial-gradient(circle at 8% 88%, rgba(255, 183, 91, 0.24), transparent 34%),
      linear-gradient(135deg, #fff8ef 0%, #fffdf8 52%, #f7f7f4 100%);
    color: #171717;
    overflow: hidden;
  }

  .about-hero::before {
    right: -150px;
    top: -130px;
    width: 360px;
    height: 360px;
    background: linear-gradient(135deg, rgba(255, 126, 35, 0.26), rgba(255, 184, 92, 0.12));
  }

  .about-hero::after {
    right: -12px;
    bottom: 18px;
    font-size: clamp(64px, 22vw, 130px);
    color: rgba(255, 122, 30, 0.08);
  }

  .about-hero-inner {
    max-width: 100%;
    color: #171717;
  }

  .about-hero-inner .about-label {
    color: #f0781e;
  }

  .about-hero-inner .about-label::before {
    background: #f0781e;
  }

  .about-hero-inner h1 {
    color: #171717;
    font-size: clamp(36px, 10vw, 58px);
    line-height: 1.18;
    letter-spacing: -0.05em;
  }

  .about-hero-inner h1 span {
    color: #f0781e;
  }

  .about-hero-inner p {
    max-width: 100%;
    color: #444;
    font-size: 15px;
    line-height: 1.95;
  }

  .about-hero-accent {
    right: -34px;
    top: 54%;
    width: 150px;
    height: 150px;
    border-radius: 34px;
    opacity: 0.12;
  }
}

@media screen and (max-width: 600px) {
  .about-hero {
    padding: 92px 0 76px;
  }

  .about-hero-inner h1 {
    font-size: 36px;
  }

  .about-hero-inner p {
    font-size: 14.5px;
  }

  .about-hero::after {
    right: -8px;
    bottom: 14px;
    font-size: 74px;
  }

  .about-hero-accent {
    width: 120px;
    height: 120px;
    right: -42px;
    top: 58%;
  }
}

/* ==============================
   About Page Adjustments
   数字を大きく・オレンジ化 / CTA下余白調整
============================== */

/* 「GritLinkが大切にしていること」カード全体 */
.about-style-card {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.14), transparent 34%),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
  border: 1px solid rgba(249, 115, 22, 0.18);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

.about-style-card::before {
  width: 170px;
  height: 170px;
  right: -62px;
  top: -62px;
  background: rgba(249, 115, 22, 0.12);
}

/* 01 / 02 / 03 の数字 */
.about-style-card > span {
  display: block;
  margin-bottom: 42px;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: rgba(249, 115, 22, 0.9);
  font-style: italic;
}

/* 見出しにも少しオレンジ感 */
.about-style-card h3 {
  position: relative;
  margin-bottom: 18px;
  padding-left: 18px;
  font-size: 23px;
  color: #171717;
}

.about-style-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 5px;
  height: 1.1em;
  border-radius: 999px;
  background: linear-gradient(180deg, #f97316, #fb923c);
}

.about-style-card p {
  color: #4b4b4b;
}

/* hover時もオレンジ寄り */
.about-style-card:hover {
  border-color: rgba(249, 115, 22, 0.36);
  box-shadow: 0 24px 60px rgba(249, 115, 22, 0.12);
}

/* CTAとフッターの距離を広げる */
.about-cta {
  padding: 100px 0 150px;
  background: #fff;
}

/* CTAボックス自体も少し浮かせる */
.about-cta-inner {
  margin-bottom: 24px;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  .about-style-card {
    padding: 30px 24px;
  }

  .about-style-card > span {
    margin-bottom: 34px;
    font-size: 58px;
  }

  .about-style-card h3 {
    font-size: 21px;
  }

  .about-cta {
    padding: 76px 0 120px;
  }
}

@media screen and (max-width: 480px) {
  .about-style-card > span {
    font-size: 52px;
  }

  .about-cta {
    padding: 70px 0 110px;
  }
}

/* ==============================
   About Difference 余白調整
============================== */

/* POSITION本文の下に少し余白を追加 */
.about-difference-copy > p:not(.about-label) {
  margin: 28px 0 36px;
}

/* 比較カード全体の余白 */
.about-difference-box {
  margin-top: 0;
}

/* カード内タイトルの上余白をリセット */
.about-difference-copy .difference-item p {
  margin: 0 0 8px;
}

/* カード内の上下余白を少し引き締める */
.about-difference-copy .difference-item {
  padding: 24px 28px;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
  .about-difference-copy > p:not(.about-label) {
    margin: 24px 0 30px;
  }

  .about-difference-copy .difference-item {
    padding: 22px;
  }

  .about-difference-copy .difference-item p {
    margin: 0 0 6px;
  }
}

/* ==============================
   Services Page Detail
============================== */

.services-page {
  background: #fffaf6;
  color: #171717;
}

.services-hero {
  position: relative;
  padding: 120px 0 88px;
  background:
    radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.22), transparent 32%),
    radial-gradient(circle at 12% 82%, rgba(251, 146, 60, 0.18), transparent 30%),
    linear-gradient(135deg, #fff8ef 0%, #ffffff 100%);
  overflow: hidden;
}

.services-hero::after {
  content: "SERVICES";
  position: absolute;
  right: -20px;
  bottom: 8px;
  font-size: clamp(72px, 14vw, 190px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(249, 115, 22, 0.07);
  line-height: 1;
  pointer-events: none;
}

.services-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.services-hero-inner h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #171717;
}

.services-hero-inner p {
  max-width: 720px;
  color: #555;
  font-size: 16px;
  line-height: 2;
}

/* Anchor Nav */
.services-anchor-section {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  background: rgba(255, 250, 246, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.13);
}

.services-anchor-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.services-anchor-nav::-webkit-scrollbar {
  display: none;
}

.services-anchor-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(249, 115, 22, 0.18);
  color: #7c3f12;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.25s ease;
}

.services-anchor-nav a:hover {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

/* Detail Cards */
.services-detail-section {
  padding: 72px 0 110px;
}

.service-detail-card {
  scroll-margin-top: 110px;
  position: relative;
  padding: 46px;
  margin-bottom: 32px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.10), transparent 30%),
    #fff;
  border: 1px solid rgba(249, 115, 22, 0.16);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.07);
  pointer-events: none;
}

.service-detail-head {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}

.service-detail-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  font-size: 26px;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.28);
}

.service-detail-label {
  margin: 0 0 6px;
  color: #f97316;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-detail-card h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.service-detail-lead {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 0 34px;
  color: #444;
  font-size: 15.5px;
  line-height: 2.05;
}

.service-detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-detail-grid > div {
  padding: 26px 28px;
  border-radius: 22px;
  background: #fffaf6;
  border: 1px solid rgba(249, 115, 22, 0.13);
}

.service-detail-grid h3 {
  margin: 0 0 18px;
  color: #171717;
  font-size: 18px;
  font-weight: 800;
}

.service-detail-grid ul {
  display: grid;
  gap: 10px;
}

.service-detail-grid li {
  position: relative;
  padding-left: 24px;
  color: #555;
  font-size: 14.5px;
  line-height: 1.7;
}

.service-detail-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
  font-weight: 900;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .services-hero {
    padding: 92px 0 70px;
  }

  .services-hero-inner h1 {
    font-size: 42px;
  }

  .services-hero-inner p {
    font-size: 14.5px;
    line-height: 1.9;
  }

  .services-anchor-section {
    top: 0;
    padding: 14px 0;
  }

  .services-detail-section {
    padding: 48px 0 84px;
  }

  .service-detail-card {
    scroll-margin-top: 96px;
    padding: 30px 22px;
    border-radius: 26px;
    margin-bottom: 24px;
  }

  .service-detail-head {
    align-items: flex-start;
    gap: 16px;
  }

  .service-detail-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 22px;
  }

  .service-detail-card h2 {
    font-size: 26px;
  }

  .service-detail-lead {
    font-size: 14.5px;
    line-height: 1.95;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-detail-grid > div {
    padding: 22px 20px;
    border-radius: 18px;
  }
}
.contact-lead {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
  font-size: 1rem;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .flow-timeline::before {
    height: calc(100% - 110px);
  }
}



/* ==============================
   Hero Title 最終修正版
   PCは中央寄せ / スマホだけ左右寄せ
============================== */

/* 共通 */
.hero-title {
  width: min(100%, 820px);
  margin: 0 auto 28px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.03em;
  text-align: center;
}

/* PCでは左・右の指定を無効化して、普通に1行として表示 */
.hero-title-left,
.hero-title-right {
  display: inline;
  padding: 0;
  margin: 0;
  text-align: center;
}

/* オレンジグラデーション */
.hero-title-right {
  background: linear-gradient(
    135deg,
    #ff7a18 0%,
    #ffb347 45%,
    #f97316 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(249, 115, 22, 0.28);
}

/* 企業の成長〜、プロチームはPCでも改行 */
.hero-title-center {
  display: block;
  text-align: center;
}

@keyframes heroOrangeFocus {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }

  45% {
    transform: scale(1.035);
    filter: brightness(1.18);
  }

  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

/* PC専用 */
@media screen and (min-width: 769px) {
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.35;
  }

  .hero-title-left,
  .hero-title-right {
    display: inline;
    font-size: inherit;
  }

  .hero-title-center {
    display: block;
  }
}

/* スマホ専用 */
@media screen and (max-width: 768px) {
  .hero-title {
    display: flex;
    flex-direction: column;
    max-width: 360px;
    gap: 8px;
    margin-bottom: 30px;
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1.16;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .hero-title-left {
    display: block;
    text-align: left;
    padding-left: 23px;
  }

  .hero-title-right {
    display: block;
    width: fit-content;
    margin-left: auto;
    text-align: right;
    padding-right: 4px;
    font-size: 35px;
  }

  .hero-title-center {
    display: block;
    text-align: center;
  }
}
/* ==============================
   Footer
============================== */

.site-footer {
  background: #111827;
  color: #fff;
  padding: 56px 0 24px;
}

.footer-inner {
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.9;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
  max-width: 520px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #f97316;
}

.footer-bottom {
  width: min(100% - 48px, 1100px);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 48px 0 22px;
  }

  .footer-inner {
    width: min(100% - 40px, 1100px);
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: none;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 12px 18px;
  }

  .footer-nav a {
    font-size: 0.88rem;
  }

  .footer-bottom {
    width: min(100% - 40px, 1100px);
    margin-top: 32px;
  }
}

.footer-logo img {
  display: block;
  width: 140px;
  height: auto;
}
@media (max-width: 768px) {
  .footer-logo img {
    width: 120px;
  }
}

@media screen and (max-width: 900px) {
  .about-difference-copy {
    order: 1;
  }

  .about-position-image {
    order: 2;
  }
}
/* Aboutページ画像：角丸＋少し小さく */
.about-image-card {
  border-radius: 28px;
  overflow: hidden;
}

.about-image-card img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
}

/* PCでは画像を少し小さく */
.about-concept-image,
.about-position-image {
  max-width: 88%;
}

/* 右側・左側で自然に寄せる */
.about-concept-image {
  margin-left: auto;
}

.about-position-image {
  margin-right: auto;
}

/* スマホでも少し小さく */
@media screen and (max-width: 900px) {
  .about-concept-image,
  .about-position-image {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .about-image-card,
  .about-image-card img {
    border-radius: 22px;
  }
}
/* =========================
   下層ページ共通
========================= */

.subpage-hero {
  padding: 170px 20px 110px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 123, 64, 0.18), transparent 32%),
    linear-gradient(135deg, #111c2b 0%, #172234 45%, #202030 100%);
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.subpage-hero .container {
  max-width: 1100px;
  margin: 0 auto;
}

.subpage-label {
  display: inline-block;
  padding: 12px 28px;
  margin-bottom: 38px;
  border-radius: 999px;
  background: rgba(255, 123, 64, 0.18);
  color: #ff9a57;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
}

.subpage-lead {
  margin-top: 42px;
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.subpage-content {
  padding: 80px 20px 120px;
  background: #fff;
}

.subpage-content .container {
  max-width: 1000px;
  margin: 0 auto;
}

.subpage-body {
  color: #333;
  font-size: 16px;
  line-height: 2;
}

.subpage-body h2 {
  margin: 54px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
  font-size: 24px;
  line-height: 1.5;
}

.subpage-body h3 {
  margin: 36px 0 14px;
  font-size: 20px;
}

.subpage-body p {
  margin: 0 0 20px;
}

.subpage-body ul,
.subpage-body ol {
  margin: 0 0 24px 1.5em;
  padding: 0;
}

.subpage-body li {
  margin-bottom: 8px;
}

.subpage-body a {
  color: #e66f2f;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .subpage-hero {
    padding: 120px 20px 70px;
  }

  .subpage-label {
    font-size: 13px;
    padding: 10px 20px;
    margin-bottom: 28px;
  }

  .subpage-lead {
    margin-top: 28px;
    font-size: 15px;
  }

  .subpage-content {
    padding: 54px 20px 80px;
  }

  .subpage-body {
    font-size: 15px;
  }

  .subpage-body h2 {
    font-size: 21px;
    margin-top: 42px;
  }
}
/* ==============================
   Works Page
   制作実績・事例ページ
============================== */

.works-page {
  background: #fffaf6;
  color: #171717;
  overflow: hidden;
}

/* 既存の page-hero を制作実績ページだけ少しリッチに */
.works-page .page-hero {
  position: relative;
  padding: 96px 40px;
  background:
    radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.26), transparent 34%),
    linear-gradient(135deg, #111111 0%, #1f1f1f 48%, #f97316 100%);
  overflow: hidden;
}

.works-page .page-hero::after {
  content: "WORKS";
  position: absolute;
  right: -16px;
  bottom: -10px;
  font-size: clamp(72px, 14vw, 180px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}

.works-page .page-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.04em;
}

/* ヒーロー下の説明エリア */
.works-hero {
  position: relative;
  padding: 96px 0 48px;
  background:
    radial-gradient(circle at 12% 16%, rgba(249, 115, 22, 0.13), transparent 32%),
    linear-gradient(180deg, #fff8ef 0%, #fffaf6 100%);
}

.works-hero .container {
  max-width: 1000px;
}

.works-hero .subpage-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.works-hero .subpage-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px)!important;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #171717;
}

.works-hero .subpage-lead {
  max-width: 820px;
  margin-top: 28px;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.works-note {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(249, 115, 22, 0.16);
  color: #777;
  font-size: 13px;
  line-height: 1.8;
}

/* section-content の既存余白を制作実績ページだけ調整 */
.works-page .section-content {
  padding: 48px 0 100px;
  background: #fffaf6;
}

/* 既存 .works-grid をこのページだけ上書き */
.works-page .works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 0;
}

/* 既存 .work-card をこのページだけ上書き */
.works-page .work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 28px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent 34%),
    #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.16);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.works-page .work-card::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
  pointer-events: none;
}

.works-page .work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.36);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.1);
}

/* カテゴリラベル */
.work-category {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 18px;
  margin:5px;
  padding: 6px 12px !important;
  border-radius: 999px;
  background: #f97316a3;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* 既存の .work-card h3 / p の padding をリセットして整える */
.works-page .work-card h3 {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0 0 14px;
  color: #171717;
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.works-page .work-card p {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0 0 14px;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
}

/* リンク群 */
.work-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.work-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.38);
  background: #fffaf6;
  color: #f97316;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.work-link:hover {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
  transform: translateY(-2px);
}

/* CTA */
.works-cta {
  padding: 0 0 100px;
  background: #fffaf6;
}

.works-cta-box {
  position: relative;
  overflow: hidden;
  padding: 62px 48px;
  border-radius: 32px;
  text-align: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #111 0%, #1d1d1d 46%, #f97316 100%);
  color: #fff;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

.works-cta-box::after {
  content: "CONTACT";
  position: absolute;
  right: -10px;
  bottom: -8px;
  font-size: clamp(58px, 11vw, 140px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}

.works-cta-box .subpage-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.works-cta-box h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.45;
}

.works-cta-box p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 2;
}

.works-cta-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 999px;
  background: #fff;
  color: #f97316;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.works-cta-button:hover {
  background: #171717;
  color: #fff;
  transform: translateY(-2px);
}

/* ==============================
   Works Page Responsive
============================== */

@media screen and (max-width: 1024px) {
  .works-page .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .works-page .page-hero {
    padding: 76px 24px;
  }

  .works-page .page-hero h1 {
    font-size: 30px;
  }

  .works-hero {
    padding: 64px 0 34px;
  }

  .works-hero .subpage-lead {
    margin-top: 22px;
    font-size: 14.5px;
    line-height: 1.9;
  }

  .works-note {
    font-size: 12.5px;
  }

  .works-page .section-content {
    padding: 34px 0 72px;
  }

  .works-page .works-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .works-page .work-card {
    padding: 25px 22px;
    border-radius: 20px;
  }

  .works-page .work-card h3 {
    font-size: 18px;
  }

  .works-page .work-card p {
    font-size: 13.5px;
  }

  .works-cta {
    padding: 0 0 72px;
  }

  .works-cta-box {
    padding: 44px 24px;
    border-radius: 24px;
  }

  .works-cta-box h2 {
    font-size: 23px;
  }

  .works-cta-box p {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .works-page .page-hero::after {
    font-size: 72px;
    right: -8px;
    bottom: -4px;
  }

  .work-links {
    gap: 8px;
  }

  .work-link {
    font-size: 12.5px;
    padding: 8px 12px;
  }
}

/* ==============================
  Works Hero
============================== */

.works-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background:
    linear-gradient(90deg, #f8f1ea 0%, #fcfaf7 48%, #f8ede6 100%);
}

.works-hero::after {
  content: "WORKS";
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: clamp(82px, 12vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(249, 115, 22, 0.08);
  pointer-events: none;
  z-index: 0;
}

.works-hero .container {
  position: relative;
  z-index: 1;
}

.works-hero .subpage-label {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5c5c5c;
}

.works-hero .subpage-title {
  margin: 0 0 26px;
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #111;
}

.works-hero .subpage-lead {
  max-width: 760px;
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #555;
}

.works-hero .works-note {
  max-width: 760px;
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.9;
  color: #777;
}

/* ==============================
  Works Hero
============================== */

.works-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background:
    linear-gradient(90deg, #f8f1ea 0%, #fcfaf7 48%, #f8ede6 100%);
}

.works-hero::after {
  content: "WORKS";
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: clamp(120px, 20vw, 340px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(249, 115, 22, 0.08);
  pointer-events: none;
  z-index: 0;
}

.works-hero .container {
  position: relative;
  z-index: 1;
}

.works-hero .subpage-label {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #5c5c5c;
}

.works-hero .subpage-title {
  margin: 0 0 26px;
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #111;
}

.works-hero .subpage-lead {
  max-width: 760px;
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #555;
}

.works-hero .works-note {
  max-width: 760px;
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.9;
  color: #777;
}

@media screen and (max-width: 768px) {
  .works-hero {
    padding: 88px 0 72px;
  }

  .works-hero::after {
    right: -8px;
    bottom: 8px;
    font-size: clamp(72px, 26vw, 140px);
  }

  .works-hero .subpage-label {
    font-size: 12px;
    margin-bottom: 14px;
  }


  .works-hero .subpage-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .works-hero .works-note {
    font-size: 12px;
    line-height: 1.8;
  }
}

@media screen and (max-width: 768px) {
  .works-hero::after {
    right: 14px;
    bottom: 18px;
    font-size: clamp(38px, 13vw, 68px);
  }
}
/* ==============================
   Works Page - 実績リンク一覧
============================== */

.works-page .work-links {
  display: block;
  margin: 24px 20px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.works-page .work-links-title {
  display: block;
  margin: 0 0 14px !important;
  padding: 0 !important;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
}

.works-page .work-link-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.works-page .work-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.works-page .work-link-item:last-child {
  border-bottom: none;
}

.works-page .work-link-item span {
  display: block;
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

.works-page .work-link-item a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: opacity 0.2s, transform 0.2s;
}

.works-page .work-link-item a:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

/* スマホでも横並びを維持 */
@media screen and (max-width: 600px) {
  .works-page .work-links {
    margin: 22px 20px 0;
    padding-top: 16px;
  }

  .works-page .work-links-title {
    margin-bottom: 12px !important;
  }

  .works-page .work-link-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
  }

  .works-page .work-link-item span {
    font-size: 13.5px;
  }

  .works-page .work-link-item a {
    min-width: 58px;
    padding: 7px 12px;
    font-size: 12px;
  }
}

 .works-hero .subpage-title {
    font-size: 25px !important;
    line-height: 1.18;
    margin-bottom: 18px;
  }
