/* ============================================
   INFIELD - Sports Business Partner
   共通スタイルシート
   ============================================ */

:root {
  --color-bg: #0a0a0a;
  --color-bg-card: #111111;
  --color-orange: #ED6A1F;
  --color-orange-dark: #d95c14;
  --color-white: #ffffff;
  --color-gray: #c9c9c9;
  --color-gray-dark: #888888;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Archivo", "Noto Sans JP", sans-serif;
  --font-script: "Caveat", cursive;
  --header-height: 90px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-hover-zone {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  z-index: 99;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
}

.header-sns {
  display: flex;
  gap: 12px;
  margin-left: 12px;
}

.sns-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.sns-icon:hover {
  background: var(--color-orange);
}

.sns-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.sns-icon.sns-note {
  background: #3d3d3d;
}

.sns-icon.sns-note:hover {
  background: var(--color-orange);
}

.global-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.global-nav a {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  padding-bottom: 6px;
  border-bottom: 3px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.global-nav a:hover,
.global-nav a.is-active {
  border-bottom-color: var(--color-orange);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown a {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 12px 16px !important;
  border-bottom: none !important;
  border-radius: 6px;
  color: var(--color-gray);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-orange);
}

.nav-contact {
  border: 2px solid var(--color-orange) !important;
  border-radius: 999px;
  padding: 10px 32px !important;
  transition: background 0.25s;
}

.nav-contact:hover {
  background: var(--color-orange);
  border-bottom-color: var(--color-orange) !important;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 102;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  margin: 6px auto;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   Section 共通
   ============================================ */
main {
  padding-top: var(--header-height);
}

.section {
  padding: 100px 0;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 60px;
}

.section-title .en {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 84px);
  letter-spacing: 0.02em;
  color: var(--color-gray);
  line-height: 1;
}

.section-title .jp {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-orange);
}

.eyebrow {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--color-orange);
  margin-bottom: 16px;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.45) 45%,
    rgba(10, 10, 10, 0.05) 75%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
}

.hero-title {
  font-weight: 900;
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-title .accent {
  color: var(--color-orange);
}

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(28px, 3.6vw, 46px);
  color: var(--color-orange);
  margin-top: 12px;
  transform: rotate(-2deg);
  transform-origin: left;
}

.hero-lead {
  margin-top: 44px;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 700;
  line-height: 2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-title {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.2;
  color: var(--color-gray);
}

.about-text {
  font-size: 17px;
  font-weight: 500;
  line-height: 2.2;
}

.about-cta {
  margin-top: 48px;
  text-align: center;
}

.about-cta .btn-outline {
  font-size: 16px;
  padding: 13px 52px;
  margin-top: 0;
}

/* ============================================
   Service cards
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-orange);
}

.service-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 14px;
}

.service-card-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 34px;
  color: var(--color-orange);
  line-height: 1;
}

.service-card-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.service-card-img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.service-card-body {
  padding: 20px 18px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-weight: 900;
  font-size: 17px;
  margin-bottom: 10px;
}

.service-card-list {
  list-style: none;
  font-size: 13.5px;
  color: var(--color-gray);
  flex: 1;
}

.service-card-list li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.9;
}

.service-card-list li::before {
  content: "・";
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--color-orange);
  border-radius: 999px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 30px;
  margin-top: 20px;
  align-self: center;
  transition: background 0.25s;
}

.btn-outline:hover {
  background: var(--color-orange);
}

/* ============================================
   Works
   ============================================ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

@media (min-width: 861px) {
  .works-grid-preview {
    grid-template-columns: repeat(4, 1fr);
  }
}

.work-card {
  background: var(--color-white);
  color: #111;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s;
}

.work-card:hover {
  transform: translateY(-6px);
}

.work-card-img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  background: #222;
}

.work-card-img.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 13px;
  font-weight: 700;
}

.work-card-img-split {
  aspect-ratio: 4 / 3;
  display: flex;
  gap: 2px;
  background: #222;
}

.work-card-img-split img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.work-card-img-trio {
  aspect-ratio: 4 / 3;
  display: flex;
  gap: 2px;
  background: #222;
}

.work-card-img-trio img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
}

.work-card-img-quad {
  aspect-ratio: 4 / 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #222;
}

.work-card-img-quad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card-body {
  padding: 14px 14px 16px;
}

.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.works-filter-btn {
  border: 2px solid var(--color-orange);
  border-radius: 999px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.25s;
}

.works-filter-btn:hover {
  background: rgba(237, 106, 31, 0.2);
}

.works-filter-btn.is-active {
  background: var(--color-orange);
}

.work-card.is-hidden {
  display: none;
}

.work-card-category {
  display: block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 6px;
  cursor: pointer;
  width: fit-content;
}

.work-card-category:hover {
  text-decoration: underline;
}

.work-card-title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.6;
}

/* ============================================
   Contact band
   ============================================ */
.contact-band {
  border: 2px solid var(--color-orange);
  display: grid;
  grid-template-columns: 1fr 400px;
  position: relative;
  margin-top: 40px;
}

.contact-band-left {
  padding: 60px 48px;
  position: relative;
}

.contact-band-title {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(40px, 7.5vw, 88px);
  line-height: 1;
  color: var(--color-orange);
  white-space: nowrap;
}

.contact-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.contact-icon-item {
  text-align: center;
}

.contact-icon-item svg {
  width: 84px;
  height: 84px;
  fill: var(--color-orange);
  margin: 0 auto 14px;
  display: block;
}

.contact-icon-item p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-band-right {
  background: var(--color-orange);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.contact-band-right p {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.btn-white {
  display: block;
  background: var(--color-white);
  color: #111;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 24px;
  transition: opacity 0.25s;
}

.btn-white:hover {
  opacity: 0.85;
}

/* ============================================
   Contact form (contact.html)
   ============================================ */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 15px;
}

.form-label .required {
  color: var(--color-orange);
  font-size: 12px;
  margin-left: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: var(--color-white);
  font-family: var(--font-jp);
  font-size: 16px;
  padding: 14px 16px;
  transition: border-color 0.25s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-orange);
}

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

.btn-submit {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 48px auto 0;
  background: var(--color-orange);
  border: none;
  border-radius: 999px;
  color: var(--color-white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 17px;
  padding: 18px;
  cursor: pointer;
  transition: background 0.25s;
}

.btn-submit:hover {
  background: var(--color-orange-dark);
}

/* ============================================
   About page
   ============================================ */
.about-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center;
}

.about-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.6) 48%, rgba(10, 10, 10, 0.2) 100%);
}

.about-side-label {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}

.about-side-label span {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.16);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 48px 60px 72px;
  width: 100%;
}

.about-hero-title {
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.45;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.about-hero-text {
  margin-top: 32px;
  max-width: 480px;
  font-size: 15px;
  line-height: 2.1;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.story-block {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.story-block:last-of-type {
  border-bottom: none;
}

.story-block.reverse .story-img-grid {
  order: 2;
}

.story-num {
  position: absolute;
  top: -30px;
  right: 0;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(110px, 14vw, 200px);
  color: rgba(255, 255, 255, 0.035);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.story-body {
  position: relative;
  z-index: 1;
}

.story-title {
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 38px);
  line-height: 1.45;
  margin: 10px 0 22px;
}

.story-highlight {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 15.5px;
  margin: 14px 0;
}

.story-img-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.story-img-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

.story-img-grid.single {
  grid-template-columns: 1fr;
  align-self: stretch;
  position: relative;
}

.story-img-grid.single::before {
  content: "";
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle at center, rgba(237, 106, 31, 0.16) 0%, rgba(237, 106, 31, 0) 62%);
  z-index: 0;
  pointer-events: none;
}

.story-img-grid.single img {
  height: 100%;
  min-height: 420px;
  aspect-ratio: auto;
  border-radius: 0;
  filter: brightness(0.94) contrast(1.06) saturate(1.05);
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at center, #000 45%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 78% at center, #000 45%, transparent 100%);
}

.story-block:has(.story-img-grid.single) {
  grid-template-columns: 0.85fr 1.15fr;
}

.vision-block {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/court_solutions.jpg");
  background-size: cover;
  background-position: center;
}

.vision-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.78) 55%, rgba(10, 10, 10, 0.94) 100%);
}

.vision-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 36px 0;
  max-width: 900px;
}

.icon-row-item {
  text-align: center;
}

.icon-row-item .icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.icon-row-item svg {
  width: 24px;
  height: 24px;
  fill: #0a0a0a;
}

.icon-row-item p {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-gray);
}

.company-final {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
}

.company-final-table {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.company-final-row {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company-final-row dt {
  width: 110px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gray-dark);
}

.company-final-row dd {
  font-size: 14px;
  font-weight: 500;
}

.company-final-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.company-final-logo img {
  width: 100%;
  max-width: 200px;
}

/* ============================================
   Page hero (下層ページ)
   ============================================ */
.page-hero {
  padding: 90px 0 30px;
}

/* ============================================
   Service detail (service.html)
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail:nth-of-type(even) .service-detail-img {
  order: 2;
}

.service-detail-img {
  border-radius: 6px;
  overflow: hidden;
}

.service-detail-num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 52px;
  color: var(--color-orange);
  line-height: 1;
}

.service-detail-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--color-gray);
  margin: 6px 0 18px;
}

.service-detail-title {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-detail-text {
  color: var(--color-gray);
  font-size: 15.5px;
  margin-bottom: 20px;
}

.service-detail-list {
  list-style: none;
  font-size: 15px;
}

.service-detail-list li {
  padding-left: 1.2em;
  position: relative;
  line-height: 2.1;
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 8px;
  height: 8px;
  background: var(--color-orange);
}

/* ============================================
   Solution detail (team/court/creative/performance-solutions.html)
   ============================================ */
.solution-block {
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-block:last-of-type {
  border-bottom: none;
}

.solution-block-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 20px;
}

.solution-block-head .service-detail-num {
  font-size: 40px;
}

.solution-block-head .service-detail-title {
  margin-bottom: 0;
}

.price-list {
  list-style: none;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-name {
  font-weight: 700;
  font-size: 15.5px;
}

.price-name-sub {
  display: block;
  color: var(--color-gray);
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

.price-value {
  font-family: var(--font-en);
  font-weight: 800;
  color: var(--color-orange);
  font-size: 22px;
  white-space: nowrap;
}

.price-unit {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 500;
  margin-left: 2px;
}

.solution-track-title {
  font-weight: 700;
  font-size: 15px;
  margin-top: 36px;
  margin-bottom: 8px;
}

.solution-track-text {
  color: var(--color-gray);
  font-size: 14.5px;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.sample-placeholder {
  aspect-ratio: 4 / 3;
  background: #161616;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.sample-photo-grid {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  overflow-x: auto;
}

.sample-photo-grid img {
  flex: 1 1 0;
  min-width: 220px;
  border-radius: 6px;
  background: #111111;
}

.size-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
}

.size-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13.5px;
  white-space: nowrap;
}

.size-table caption {
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.size-table th,
.size-table td {
  padding: 12px 10px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.size-table thead th {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.size-table thead tr:first-child th {
  color: var(--color-white);
  font-size: 13.5px;
  background: rgba(255, 255, 255, 0.04);
}

.size-table .unit {
  display: block;
  color: var(--color-gray-dark);
  font-weight: 500;
  font-size: 11px;
  margin-top: 2px;
}

.size-table tbody th {
  font-weight: 800;
  color: var(--color-white);
}

.size-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.size-table-item {
  font-weight: 500;
  color: var(--color-gray);
  text-align: left;
}

.size-table-group {
  color: var(--color-orange);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}

.size-table-note {
  font-size: 12.5px;
  color: var(--color-gray-dark);
  margin-top: 14px;
  line-height: 1.7;
}

.size-table-tabs {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.size-table-tab {
  border: 2px solid var(--color-orange);
  border-radius: 999px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 26px;
  cursor: pointer;
  transition: background 0.25s;
}

.size-table-tab:hover {
  background: rgba(237, 106, 31, 0.2);
}

.size-table-tab.is-active {
  background: var(--color-orange);
}

.size-table-panel {
  display: none;
}

.size-table-panel.is-active {
  display: block;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  border-top: 2px solid var(--color-orange);
  margin-top: 120px;
  padding: 80px 0 40px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  gap: 100px;
  align-items: start;
}

.footer-logo {
  text-align: center;
}

.footer-logo-mark {
  width: 100px;
  margin: 0 auto 16px;
}

.footer-logo-text {
  font-family: var(--font-en);
  font-weight: 800;
  font-style: italic;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav a {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}

.footer-nav a:hover {
  color: var(--color-orange);
}

.footer-sub {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-privacy {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-gray-dark);
  transition: color 0.25s;
}

.footer-privacy:hover {
  color: var(--color-white);
}

.footer-copy {
  text-align: center;
  margin-top: 70px;
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--color-gray-dark);
  letter-spacing: 0.08em;
}

/* ============================================
   Reveal animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .global-nav {
    gap: 24px;
  }
  .header-sns {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .global-nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 101;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .global-nav a {
    font-size: 22px;
  }

  .nav-item {
    align-self: auto;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: none;
    border: none;
    padding: 12px 0 0;
    align-items: center;
  }

  .nav-dropdown a {
    font-size: 15px !important;
    color: var(--color-gray) !important;
    padding: 6px 0 !important;
  }

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

  .contact-band {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .contact-icons {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 36px;
  }

  .contact-icon-item svg {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .contact-icon-item p {
    font-size: 11.5px;
    line-height: 1.4;
  }

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

  .service-detail:nth-of-type(even) .service-detail-img {
    order: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    justify-items: center;
    text-align: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-sub {
    align-items: center;
  }

  .about-hero-content {
    padding: 48px 24px 48px 48px;
  }

  .story-block,
  .story-block:has(.story-img-grid.single) {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 0;
  }

  .story-block.reverse .story-img-grid {
    order: 0;
  }

  .story-img-grid.single img {
    min-height: 280px;
  }

  .icon-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 12px;
  }

  .company-final {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .company-final-logo {
    order: -1;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 0;
  }

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

  .about-side-label {
    display: none;
  }

  .about-hero-content {
    padding: 40px 24px;
  }

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

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sample-grid {
    grid-template-columns: 1fr;
  }

  .price-list li {
    flex-direction: column;
    gap: 4px;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .contact-band-left {
    padding: 44px 24px;
  }

  .contact-band-right {
    padding: 44px 24px;
  }
}

/* ============================================
   INBLAZE Uniform LP (inblaze-uniform.html)
   ============================================ */
.lp-body {
  background: #050505;
}

.lp-section {
  padding: 120px 0;
  position: relative;
}

.lp-section.tight {
  padding: 80px 0;
}

.lp-section-dark {
  background: #0a0a0a;
}

.lp-section-alt {
  background: #0f0f0f;
}

.lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.lp-eyebrow {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--color-orange);
  margin-bottom: 20px;
}

.lp-headline {
  font-weight: 900;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.5;
  margin-bottom: 40px;
}

.lp-headline .accent {
  color: var(--color-orange);
}

.lp-lines {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500;
  line-height: 2.1;
  color: var(--color-gray);
  max-width: 640px;
  margin: 0 auto 28px;
}

.lp-lines:last-of-type {
  margin-bottom: 0;
}

.lp-lines strong {
  color: var(--color-white);
  font-weight: 700;
}

/* Photo placeholders */
.lp-photo {
  position: relative;
  width: 100%;
  border-radius: 4px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, #161616, #0b0b0b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}

.lp-photo span {
  max-width: 80%;
}

.lp-photo-hero {
  aspect-ratio: 16 / 9;
  margin-bottom: 56px;
}

.lp-photo-tall {
  aspect-ratio: 3 / 4;
}

.lp-photo-wide {
  aspect-ratio: 16 / 10;
}

.lp-photo-square {
  aspect-ratio: 1 / 1;
}

/* Hero */
.lp-hero {
  padding: 100px 0 90px;
  text-align: center;
}

.lp-hero-title {
  font-weight: 900;
  font-size: clamp(32px, 5.6vw, 58px);
  line-height: 1.45;
  margin: 8px 0 36px;
}

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 44px;
}

.lp-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 17px 40px;
  border-radius: 999px;
  transition: opacity 0.25s, background 0.25s;
}

.lp-btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
}

.lp-btn-primary:hover {
  background: var(--color-orange-dark);
}

.lp-btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.lp-btn-secondary:hover {
  border-color: var(--color-white);
}

/* Feature pills */
.lp-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}

.lp-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gray);
}

/* Check list */
.lp-check-list {
  list-style: none;
  max-width: 480px;
  margin: 36px auto;
  text-align: left;
}

.lp-check-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-check-list li::before {
  content: "✓";
  color: var(--color-orange);
  font-weight: 900;
  flex-shrink: 0;
}

/* Big stat / included banner */
.lp-banner {
  border: 2px solid var(--color-orange);
  border-radius: 4px;
  padding: 56px 32px;
  margin-top: 48px;
}

.lp-banner-label {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--color-gray);
  margin-bottom: 14px;
}

.lp-banner-value {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 76px);
  color: var(--color-orange);
  line-height: 1;
}

/* Size / rule strip */
.lp-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 32px 0;
}

.lp-strip-item {
  text-align: center;
}

.lp-strip-item .num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 30px;
  color: var(--color-white);
  display: block;
}

.lp-strip-item .label {
  font-size: 13px;
  color: var(--color-gray-dark);
  margin-top: 6px;
  display: block;
}

/* Gallery */
.lp-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* Branding goods list */
.lp-tag-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 720px;
  margin: 40px auto 0;
}

.lp-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 700;
}

/* Quote */
.lp-quote {
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.9;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-quote-source {
  font-size: 13px;
  color: var(--color-gray-dark);
  margin-top: 10px;
}

/* Flow */
.lp-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
}

.lp-flow-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 700;
  min-width: 140px;
}

.lp-flow-arrow {
  color: var(--color-orange);
  font-size: 20px;
  font-weight: 900;
}

/* FAQ */
.lp-faq {
  max-width: 680px;
  margin: 40px auto 0;
  text-align: left;
}

.lp-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}

.lp-faq-q {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.lp-faq-q::before {
  content: "Q";
  color: var(--color-orange);
  font-family: var(--font-en);
  font-weight: 900;
}

.lp-faq-a {
  font-size: 14.5px;
  color: var(--color-gray);
  line-height: 1.9;
  display: flex;
  gap: 10px;
}

.lp-faq-a::before {
  content: "A";
  color: var(--color-gray-dark);
  font-family: var(--font-en);
  font-weight: 900;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .lp-section {
    padding: 76px 0;
  }

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

  .lp-strip {
    gap: 24px;
  }

  .lp-cta-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .lp-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
