﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --primary: #8fd3f5;
  --primary-dark: #3aace8;
  --primary-light: #c2e9fa;
  --accent: #e71e30;
  --accent-dark: #b5101f;
  --white: #FFFFFF;
  --off-white: #F7F5F2;
  --gray-light: #EBEBEB;
  --gray-mid: #9A9A9A;
  --gray-dark: #3A3A3A;
  --black: #1A1A1A;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden
}

.sp{
  display: none;
}
@media (max-width: 768px) {
.sp{
  display: block;
}
}

/* ========== LOGO IMAGE ========== */
.logo-img {
  height: 48px;
  width: auto;
  display: block
}

.logo-img-footer {
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: 0.85
}

/* ========== COMPANY TABLE ========== */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px
}

.company-table td a {
  color: var(--primary-dark);
  text-decoration: none
}

.company-table tr {
  border-bottom: 1px solid var(--gray-light)
}

.company-table tr:last-child {
  border-bottom: none
}

.company-table th {
  padding: 16px 24px 16px 0;
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--gray-mid);
  text-align: left;
  white-space: nowrap;
  width: 180px;
  vertical-align: top;
  letter-spacing: 0.04em;
  border-right: 3px solid var(--primary);
  padding-right: 24px;
}

.company-table td {
  padding: 16px 0 16px 28px;
  font-size: 1.143rem;
  color: var(--gray-dark);
  line-height: 1.8;
  vertical-align: top;
}

/* ========== HEADER ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: height 0.3s, box-shadow 0.3s;
}

header.scrolled {
  height: 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12)
}

header.scrolled~nav {
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.logo-icon:hover {
  transform: scale(1.05)
}

.logo-text .co {
  font-size: 0.714rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em
}

.logo-text .name {
  font-size: 1.286rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.02em
}

.logo-text .name span {
  color: var(--accent)
}

nav {
  position: fixed;
  top: 0;
  right: 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
  z-index: 200;
}

nav a {
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 0.929rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s;
}

nav a:hover {
  color: var(--primary-dark)
}

nav a:hover::after {
  width: 100%
}

nav a.current {
  color: var(--primary-dark)
}

nav a.current::after {
  width: 100%
}

.nav-contact {
  background: var(--accent);
  color: white !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 0.857rem !important;
  letter-spacing: 0.08em;
  transition: background 0.2s !important;
}

.nav-contact::after {
  display: none !important
}

.nav-contact:hover {
  background: var(--accent-dark) !important
}

.nav-hamburger {
  display: none
}

@media (max-width: 1024px) {
  header {
    padding: 0 28px;
  }

  nav {
    right: 28px;
    gap: 18px;
  }

  nav a {
    font-size: 0.857rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
    height: 64px;
  }

  header.scrolled {
    height: 56px;
  }

  header.scrolled~nav {
    height: 100%;
  }

  .logo-img {
    height: 38px;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 180;
  }

  nav.open {
    transform: translateX(0);
  }

  nav a {
    font-size: 1.286rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--black);
    padding-bottom: 0;
  }

  nav a::after {
    display: none;
  }

  .nav-contact {
    padding: 14px 40px;
    background: var(--accent);
    color: white !important;
    border-radius: 3px;
    margin-top: 8px;
    font-size: 1.071rem !important;
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 201;
    flex-shrink: 0;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }

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

  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

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

/* ========== HERO SLIDER ========== */
.hero {
  margin-top: 72px;
  position: relative;
  height: calc(100vh - 72px);
  min-height: 580px;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease
}

.slide.active {
  opacity: 1
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.slide.active .slide-bg {
  transform: scale(1)
}

.slide-1 .slide-bg {
  background-image: url(img/main01.jpg);
}

.slide-2 .slide-bg {
  background-image: url(img/main02.jpg);
}

.slide-3 .slide-bg {
  background-image: url(img/main03.jpg);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  z-index: 2;
}

.slide-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.786rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s 0.3s, transform 0.8s 0.3s;
}

.slide.active .slide-label {
  opacity: 1;
  transform: translateY(0)
}

.slide-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--primary)
}

.slide-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.286rem, 5vw, 4.143rem);
  font-weight: 700;
  color: white;
  line-height: 1.55;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s 0.5s, transform 0.8s 0.5s;
}

.slide.active .slide-content h2 {
  opacity: 1;
  transform: translateY(0)
}

.slide-content p {
  font-size: 1.071rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s 0.7s, transform 0.8s 0.7s;
}

.slide.active .slide-content p {
  opacity: 1;
  transform: translateY(0)
}

.slide-btn {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s 0.9s, transform 0.8s 0.9s
}

.slide.active .slide-btn {
  opacity: 1;
  transform: translateY(0)
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: white;
  padding: 16px 32px;
  font-size: 1.143rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  border: 2px solid var(--accent);
  transition: all 0.25s;
}

.btn-hero:hover {
  background: transparent;
  color: white;
  border-color: white
}

/* slider nav */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 80px;
  display: flex;
  gap: 10px;
  z-index: 10
}

.slider-dot {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s
}

.slider-dot.active {
  background: var(--primary);
  width: 48px
}

.slider-arrows {
  position: absolute;
  bottom: 24px;
  right: 80px;
  display: flex;
  gap: 2px;
  z-index: 10
}

.slider-arrow {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  color: white;
  font-size: 1.286rem;
}

.slider-arrow:hover {
  background: var(--primary)
}

@media (max-width: 1024px) {
  .slide-content {
    padding: 0 48px;
  }

  .slider-dots {
    left: 48px;
  }

  .slider-arrows {
    right: 48px;
  }
}

@media (max-width: 768px) {
  .hero {
    margin-top: 64px;
    min-height: 460px;
  }

  .slide-content {
    padding: 0 24px;
  }

  .slide-content h2 {
    font-size: clamp(1.714rem, 6vw, 2.571rem);
  }

  .slide-content p {
    display: none;
  }

  .slider-dots {
    left: 24px;
    bottom: 20px;
  }

  .slider-arrows {
    right: 20px;
    bottom: 16px;
  }

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

/* NEWS TICKER */
.news-bar {
  background: var(--black);
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden
}

.news-bar-label {
  background: var(--accent);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.786rem;
  letter-spacing: 0.15em;
  padding: 0 24px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.news-ticker {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 44px;
  display: flex;
  align-items: center
}

.news-ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite
}

.news-ticker-inner:hover {
  animation-play-state: paused
}

.news-item {
  font-size: 0.929rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 48px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 12px
}

.news-item .date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.786rem;
  color: var(--primary-light);
  letter-spacing: 0.08em
}

.news-item .tag {
  font-size: 0.643rem;
  font-weight: 700;
  padding: 2px 7px;
  background: rgba(231, 30, 48, 0.3);
  color: #f8a0a8
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ========== SECTION BASE ========== */
.sec-wrap {
  max-width: 1200px;
  margin: 0 auto
}

.sec-label-en {
  font-family: 'Oswald', sans-serif;
  font-size: 0.786rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-label-en::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary)
}

.sec-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.714rem, 3.2vw, 2.571rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.45;
  margin-bottom: 18px;
}

.sec-desc {
  font-size: 1.143rem;
  line-height: 2;
  color: #555;
  max-width: 580px
}

@media (max-width: 480px) {
  .sec-title {
    font-size: 1.571rem;
  }
}

/* ========== ABOUT ========== */
#about {
  padding: 0;
  display: flex;
  align-items: stretch;
  min-height: 560px;
  overflow: hidden;
  background: var(--off-white)
}

.about-visual {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%)
}

.about-img {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: translateX(-100%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-visual.visible .about-img {
  transform: translateX(0)
}

.about-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img svg {
  opacity: 0.15;
  flex-shrink: 0
}

.about-img-note {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.857rem;
  letter-spacing: 0.1em
}


.about-slash {
  display: none
}

.about-content {
  flex: 1;
  padding: 80px 72px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-features-wrap {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px
}

.about-badge {
  flex-shrink: 0;
  width: 132px;
  height: 132px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
  text-align: center;
  box-shadow: 0 8px 32px rgba(143, 211, 245, 0.4);
}

.about-badge span {
  font-size: 1.214rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.5
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: white;
  border-left: 4px solid var(--primary);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-item:hover {
  transform: translateX(4px);
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.06)
}

.feature-icon {
  width: 34px;
  height: 34px;
  background: #e8f7fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--primary-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round
}

.feature-item h4 {
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px
}

.feature-item p {
  font-size: 0.929rem;
  color: #666;
  line-height: 1.7
}

@media (max-width: 1024px) {
  #about {
    min-height: 460px;
  }

  .about-visual {
    width: 46%;
  }

  .about-content {
    padding: 56px 44px;
  }
}

@media (max-width: 768px) {
  #about {
    flex-direction: column;
    min-height: unset;
  }

  .about-visual {
    width: 100%;
    height: 280px;
    clip-path: none;
    position: relative;
    flex-shrink: 0;
  }

  .about-img {
    transform: none !important;
  }

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

  .about-features-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-badge {
    width: 96px;
    height: 96px;
  }

  .about-badge .num {
    font-size: 2.571rem;
  }

  .about-features {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .about-visual {
    height: 240px;
  }
}

/* ========== COMPANY INFO STRIP ========== */
.company-strip {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.company-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 80px;
}

.company-strip::before {
  content: 'Company';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 7.143rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.1em;
  pointer-events: none;
}

.company-strip-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.714rem;
  letter-spacing: 0.2em;
  color: var(--primary-light);
  margin-bottom: 8px
}

.company-strip-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.571rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px
}

.company-strip-sub {
  font-size: 0.929rem;
  color: rgba(255, 255, 255, 0.5)
}

.company-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.143rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.company-strip-link:hover {
  color: var(--primary-light);
  border-color: var(--primary-light)
}

@media (max-width: 1024px) {
  .company-strip-inner {
    padding: 36px 48px;
  }

  .company-strip-title {
    font-size: 1.286rem;
  }
}

@media (max-width: 768px) {
  .company-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px;
    gap: 20px;
  }

  .company-strip-title {
    font-size: 1.143rem;
  }
}

/* ========== NEWS ========== */
#news {
  padding: 80px 80px;
  background: var(--white)
}

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

.news-item-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--off-white);
  border-left: 3px solid var(--primary);
}

.news-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  flex-shrink: 0;
  width: 120px
}

.news-meta span:first-child {
  font-family: 'Oswald', sans-serif;
  font-size: 0.929rem;
  color: var(--gray-mid);
  letter-spacing: 0.04em
}

.news-meta span:last-child {
  display: inline-block;
  font-size: 0.643rem;
  font-weight: 700;
  padding: 2px 8px;
  letter-spacing: 0.06em
}

.news-meta span.new {
  background: var(--accent);
  color: white
}

.news-meta span.info {
  background: var(--gray-dark);
  color: white
}

.news-meta span.topic {
  background: #1a3a6e;
  color: white
}

.news-body {
  flex: 1
}

.news-body p {
  font-size: 0.929rem;
  line-height: 1.75;
  color: var(--gray-dark)
}

.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

@media (max-width: 1024px) {
  #news {
    padding: 72px 48px;
    background: var(--white);
  }
}

@media (max-width: 768px) {
  #news {
    padding: 56px 24px;
    background: var(--white);
  }

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

/* ========== WORKS ========== */
#works {
  padding: 80px 80px;
  background: var(--off-white)
}

.works-f-wrap {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray-light);
  overflow: hidden
}

.works-f-main {
  background:
    linear-gradient(to top, rgba(5, 15, 28, 0.92) 40%, rgba(5, 15, 28, 0.60) 100%),
    url('img/anken3.jpg') top center / cover no-repeat;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.works-f-main::before {
  content: attr(data-bg);
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 6.286rem;
  font-weight: 700;
  color: rgba(143, 211, 245, 0.10);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  transition: color 0.3s;
}

.works-f-main:hover::before {
  color: rgba(143, 211, 245, 0.20)
}

.works-f-main > span {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  color: white;
  font-size: 0.786rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 18px;
}

.works-f-main-icon {
  margin-bottom: 24px;
  opacity: 0.5;
  transition: opacity 0.3s
}

.works-f-main:hover .works-f-main-icon {
  opacity: 0.8
}

.works-f-main-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.714rem;
  font-weight: 700;
  color: white;
  line-height: 1.55;
  margin-bottom: 14px
}

.works-f-main-body {
  transition: opacity 0.22s;
}

.works-f-main-body.fading {
  opacity: 0;
}

.works-f-main-desc {
  font-size: 0.929rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85
}

.works-f-main-note {
  margin-top: 18px;
  font-size: 0.929rem;
  color: var(--black);
  background: white;
  border-radius: 4px;
  padding: 8px 0.8em;
  display: inline-block;
  line-height: 1.8;
}

.works-f-list {
  display: flex;
  flex-direction: column
}

.works-f-row {
  flex: 1;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-light);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.works-f-row:last-child {
  border-bottom: none
}

.works-f-row:hover {
  background: white
}

.works-f-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.22s;
}

.works-f-row:hover::before,
.works-f-row.active::before {
  transform: scaleY(1)
}

.works-f-row.active {
  background: white;
}

.works-f-row.active .works-f-row-icon {
  background: rgba(143, 211, 245, 0.15);
}

.works-f-row-icon {
  width: 68px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--off-white);
  border-right: 1px solid var(--gray-light);
  transition: background 0.2s;
}

.works-f-row:hover .works-f-row-icon {
  background: #e8f7fd
}

.works-f-row-icon svg {
  opacity: 0.35;
  transition: opacity 0.2s
}

.works-f-row:hover .works-f-row-icon svg {
  opacity: 0.65
}

.works-f-row-body {
  flex: 1;
  padding: 16px 18px
}

.works-f-row-tag {
  display: inline-block;
  font-size: 0.714rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 4px
}

.works-f-row-name {
  font-size: 1.143rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.45;
  margin-bottom: 3px
}

.works-f-row-sub {
  font-size: 0.929rem;
  color: #888;
  line-height: 1.6
}

.works-f-row::after {
  content: '›';
  width: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 1.286rem;
  transition: color 0.2s, transform 0.2s;
  padding-right: 10px;
}

.works-f-row:hover::after {
  color: var(--primary-dark);
  transform: translateX(4px)
}

@media (max-width: 1024px) {
  #works {
    padding: 72px 48px;
    background: var(--off-white);
  }
}

@media (max-width: 768px) {
  #works {
    padding: 56px 24px;
    background: var(--off-white);
  }

  .works-f-wrap {
    grid-template-columns: 1fr;
  }

  .works-f-main {
    min-height: 300px;
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .works-f-main {
    min-height: 260px;
    padding: 32px 20px;
  }

  .works-f-main-title {
    font-size: 1.429rem;
  }
}

/* ========== RECRUIT BANNER ========== */
#recruit {
  background: var(--black);
  position: relative;
  overflow: hidden
}

.recruit-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 80px;
}

#recruit::before {
  content: 'RECRUIT';
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 10rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.08em;
  pointer-events: none;
  line-height: 1;
}

.recruit-banner-left {
  position: relative;
  z-index: 1
}

.recruit-banner-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.786rem;
  letter-spacing: 0.2em;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.recruit-banner-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary)
}

.recruit-banner-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1.55;
  margin-bottom: 14px
}

.recruit-banner-desc {
  font-size: 1.143rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  max-width: 520px
}

.recruit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px
}

.recruit-tags span {
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--primary-dark);
  background-color: white;
  padding: 5px 14px;
  border-radius: 20px
}

.recruit-banner-cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  text-align: center
}

.btn-recruit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  padding: 18px 34px;
  text-decoration: none;
  font-size: 1.071rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.2s, gap 0.2s;
  white-space: nowrap;
}

.btn-recruit:hover {
  background: var(--accent-dark);
  gap: 16px
}

.recruit-banner-note {
  margin-top: 10px;
  font-size: 0.929rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em
}

@media (max-width: 1024px) {
  .recruit-banner {
    padding: 60px 48px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .recruit-banner {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 32px;
  }

  .recruit-banner-title {
    font-size: 1.571rem;
  }
}

/* ========== CONTACT BANNER ========== */
.contact-banner {
  background: var(--off-white);
  padding: 72px 80px;
  border-top: 4px solid var(--primary)
}

.contact-banner-inner {
  max-width: 1200px;
  margin: 0 auto
}

.contact-banner-head {
  text-align: center;
  margin-bottom: 48px
}

.contact-banner h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black)
}

.contact-banner p {
  font-size: 1.143rem;
  color: #666;
  line-height: 1.8
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto
}

.contact-card {
  background: white;
  border: 1px solid var(--gray-light);
  padding: 36px 28px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.contact-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px)
}

.contact-card:hover::before {
  transform: scaleX(1)
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: #e8f7fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contact-card-label {
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 8px
}

.contact-card-main {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 6px
}

.contact-card-main.small {
  font-size: 1.143rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700
}

.contact-card-sub {
  font-size: 0.929rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-top: 4px
}

.contact-card-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: white;
  font-size: 0.929rem;
  font-weight: 700;
  padding: 10px 22px;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}

.contact-card:hover .contact-card-btn {
  background: var(--accent-dark)
}

@media (max-width: 768px) {
  .contact-banner {
    padding: 56px 24px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ========== FOOTER ========== */
footer {
  background: #111;
  padding: 56px 80px 32px;
  color: rgba(255, 255, 255, 0.5)
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 0.929rem;
  line-height: 1.9;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.45)
}

.footer-col h4 {
  font-size: 0.929rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.929rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-col ul li a::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0
}

.footer-col ul li a:hover {
  color: white
}

/* --- Footer contact col --- */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-contact-label {
  font-size: 0.786rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
  text-transform: uppercase;
}

.footer-contact-tel {
  font-size: 1.143rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-contact-tel:hover {
  color: var(--primary);
}

.footer-contact-addr {
  font-size: 0.857rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* --- Footer map col --- */
.footer-map-col h4 {
  font-size: 0.929rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map {
  width: 100%;
  height: 140px;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.85;
}

.footer-map:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.857rem;
  color: rgba(255, 255, 255, 0.25)
}

@media (max-width: 1024px) {
  footer {
    padding: 48px 48px 28px;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 36px;
  }

  .footer-map-col {
    display: none;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 48px 24px 28px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-map-col {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s ease, transform 0.75s ease
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s ease, transform 0.75s ease
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

.delay-1 {
  transition-delay: 0.1s
}

.delay-2 {
  transition-delay: 0.2s
}

.delay-3 {
  transition-delay: 0.3s
}

.delay-4 {
  transition-delay: 0.4s
}

.delay-5 {
  transition-delay: 0.5s
}

.count-up {
  display: inline-block
}

/* ========== PAGE HERO (contact/recruit) ========== */
.page-hero {
  margin-top: 72px;
  background: var(--black);
  padding: 64px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero.recruit-hero {
  padding: 0;
  min-height: 360px;
  display: flex;
  align-items: center
}

.page-hero.recruit-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-hero::before {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 8.571rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.08em;
  pointer-events: none;
  line-height: 1;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0
}

.page-hero.recruit-hero .page-hero-inner,
.page-hero.contact-hero .page-hero-inner {
  padding: 64px 80px
}

.page-hero-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.786rem;
  letter-spacing: 0.2em;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-hero-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary)
}

.page-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.571rem;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  margin-bottom: 12px
}

.page-hero.recruit-hero h1 {
  font-size: 2.857rem;
  margin-bottom: 16px
}

.page-hero p {
  font-size: 1.143rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8
}

.page-hero.recruit-hero p {
  font-size: 1.071rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  max-width: 500px
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 14px 80px
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.857rem;
  color: var(--gray-mid)
}

.breadcrumb a {
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.2s
}

.breadcrumb a:hover {
  color: var(--accent)
}

.breadcrumb-sep {
  opacity: 0.5
}

@media (max-width: 1024px) {
  .page-hero {
    padding: 48px 48px;
  }

  .page-hero.recruit-hero .page-hero-inner {
    padding: 48px 48px;
  }

  .company-hero .page-hero-inner {
    padding: 48px 48px;
  }

  .breadcrumb {
    padding: 12px 48px;
  }
}

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

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

  .page-hero p {
    font-size: 1rem;
  }

  .page-hero.recruit-hero {
    min-height: unset;
  }

  .page-hero.recruit-hero::after {
    display: none;
  }

  .page-hero.recruit-hero .page-hero-inner,
  .page-hero.contact-hero .page-hero-inner {
    padding: 48px 24px;
  }

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

  .company-hero .page-hero-inner {
    padding: 48px 24px;
  }

  .breadcrumb {
    padding: 12px 24px;
  }
}

/* ========== COMPANY PAGE ========== */
/* ========== GREETING ========== */
.company-greeting {
  padding: 80px 80px;
  background: var(--white);
}

.company-greeting-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.greeting-visual {
  flex-shrink: 0;
  width: 280px;
  align-self: center;
}

.greeting-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  margin-bottom: 36px;
}

.greeting-body p {
  font-size: 1.143rem;
  line-height: 2;
  color: var(--gray-dark);
}

.greeting-sign p {
  font-size: 0.929rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.greeting-sign strong {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.571rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.08em;
}

.greeting-img-wrap img{
width: 100%;
height: auto;}

/* ========== COMPANY HERO ========== */
.company-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 0;
}

.company-hero .page-hero-inner {
  padding: 64px 80px;
}

.company-info-section {
  padding: 80px 80px;
  background: var(--white);
}

.company-info-inner {
  max-width: 900px;
  margin: 0 auto;
}

.company-philosophy {
  padding: 80px 80px;
  background: var(--off-white);
}

.company-philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.philosophy-card {
  background: var(--white);
  border-top: 3px solid var(--primary);
  padding: 32px 28px;
}

.philosophy-card > span {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1;
  display: block;
}

.philosophy-card h3 {
  font-size: 1.071rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.6;
}

.philosophy-card p {
  font-size: 0.929rem;
  color: var(--gray-dark);
  line-height: 1.9;
}

.company-access {
  padding: 80px 80px;
  background: var(--white);
}

.company-access-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.access-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.access-detail dt {
  font-size: 0.929rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.access-detail dd {
  font-size: 1.143rem;
  color: var(--gray-dark);
  line-height: 1.8;
}

.access-detail dd a {
  color: var(--primary-dark);
  text-decoration: none;
}

.access-map {
  height: 380px;
  border: 1px solid var(--gray-light);
}

.company-cta {
  background: var(--black);
  padding: 72px 80px;
}

.company-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-text .sec-label-en {
  color: var(--primary-light);
}

.cta-text .sec-label-en::before {
  background: var(--primary-light);
}

.cta-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 12px 0;
}

.cta-text p {
  font-size: 1.143rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.btn-cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--black);
  font-size: 1.429rem;
  font-weight: 900;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-cta-tel:hover {
  background: var(--primary-light);
}

.btn-cta-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.929rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-cta-contact:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

@media (max-width: 1024px) {
  .company-greeting {
    padding: 72px 48px;
  }

  .company-greeting-inner {
    gap: 44px;
  }

  .greeting-visual {
    width: 240px;
  }

  .company-info-section {
    padding: 72px 48px;
  }

  .company-philosophy {
    padding: 72px 48px;
  }

  .company-access {
    padding: 72px 48px;
  }

  .company-cta {
    padding: 60px 48px;
  }

  .company-cta-inner {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .company-greeting {
    padding: 56px 24px;
  }

  .company-greeting-inner {
    flex-direction: column;
    gap: 36px;
  }

  .greeting-visual {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .company-info-section {
    padding: 56px 24px;
  }

  .company-table th {
    width: 110px;
    font-size: 0.857rem;
    padding: 14px 10px 14px 0;
  }

  .company-table td {
    font-size: 1rem;
    padding: 14px 0 14px 14px;
  }

  .company-philosophy {
    padding: 56px 24px;
  }

  .philosophy-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .company-access {
    padding: 56px 24px;
  }

  .access-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .access-map {
    height: 260px;
  }

  .company-cta {
    padding: 56px 24px;
  }

  .company-cta-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .cta-actions {
    width: 100%;
  }

  .btn-cta-tel {
    justify-content: center;
    width: 100%;
  }

  .btn-cta-contact {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .company-table {
    display: block;
  }

  .company-table tbody {
    display: block;
  }

  .company-table tr {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
  }

  .company-table tr:last-child {
    border-bottom: none;
  }

  .company-table th {
    width: auto;
    border-right: none;
    border-bottom: 2px solid var(--primary);
    padding: 0 0 6px 0;
    font-size: 0.857rem;
  }

  .company-table td {
    padding: 8px 0 0 0;
    font-size: 1rem;
  }
}

/* ========== CONTACT PAGE ========== */
.contact-main {
  padding: 80px 80px;
  background: var(--white)
}

.contact-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start
}

.form-wrap h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.714rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px
}

.form-wrap .form-lead {
  font-size: 1.143rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-light)
}

.form-group {
  margin-bottom: 28px
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.03em
}

.form-required {
  background: var(--accent);
  color: white;
  font-size: 0.714rem;
  font-weight: 700;
  padding: 2px 7px;
  letter-spacing: 0.05em
}

.form-optional {
  background: var(--gray-light);
  color: var(--gray-mid);
  font-size: 0.714rem;
  font-weight: 700;
  padding: 2px 7px;
  letter-spacing: 0.05em
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--gray-light);
  background: var(--off-white);
  padding: 13px 16px;
  font-size: 1.143rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-dark);
  background: white
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #bbb
}

.form-select-wrap {
  position: relative
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--gray-mid);
  pointer-events: none;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  margin-bottom: 32px
}

.form-agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--primary-dark);
  cursor: pointer
}

.form-agree-text {
  font-size: 0.929rem;
  color: #555;
  line-height: 1.7
}

.form-agree-text a {
  color: var(--accent);
  text-decoration: underline
}

.required-mark {
  color: var(--accent);
  font-weight: 700
}

.sub-note {
  color: var(--gray-mid);
  font-size: 0.857rem
}

.form-input[type="tel"] {
  max-width: 280px
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 20px 40px;
  font-size: 1.143rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s, gap 0.2s;
}

.btn-submit:hover {
  background: var(--accent-dark);
  gap: 18px
}

.btn-submit span {
  font-size: 1.429rem;
  transition: transform 0.2s
}

.btn-submit:hover span {
  transform: translateX(4px)
}

/* CONTACT SIDEBAR */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.side-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 28px 24px;
  border-top: 3px solid var(--primary)
}

.side-card-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.714rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px
}

.side-card-title {
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px
}

.side-card-title svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0
}

.side-tel {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
  text-decoration: none;
  display: block
}

.side-tel:hover {
  color: var(--accent-dark)
}

.side-note {
  font-size: 0.929rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-top: 6px
}

.side-address {
  font-size: 0.929rem;
  color: var(--gray-dark);
  line-height: 1.9
}

.side-map {
  margin-top: 14px;
  height: 160px;
  background: var(--gray-light);
  overflow: hidden
}

.side-map iframe {
  width: 100%;
  height: 100%;
  border: none
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 14px 0
}

.faq-item:last-child {
  border-bottom: none
}

.faq-item dt {
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  display: flex;
  gap: 8px
}

.faq-item dt::before {
  content: 'Q';
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-size: 1.143rem;
  flex-shrink: 0
}

.faq-item dd {
  font-size: 0.929rem;
  color: #666;
  line-height: 1.7;
  padding-left: 22px
}

@media (max-width: 1024px) {
  .contact-main {
    padding: 72px 48px;
  }

  .contact-main-inner {
    gap: 48px;
  }

  .contact-banner {
    padding: 60px 48px;
  }
}

@media (max-width: 768px) {
  .contact-main {
    padding: 56px 24px;
  }

  .contact-main-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========== RECRUIT FORM EXTRAS ========== */
.form-success,
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
  border-radius: 2px;
}

.form-success {
  background: #eaf7ee;
  border-left: 4px solid #2ecc71;
  color: #1a7a40;
}

.form-error {
  background: #fef0f0;
  border-left: 4px solid var(--accent);
  color: #8b1a1a;
}

.form-success svg,
.form-error svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.form-input-half {
  max-width: 280px;
}

.form-textarea-sm {
  min-height: 100px;
}

.form-select-wrap-half {
  max-width: 280px;
}

.form-radios {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--black);
  cursor: pointer;
}

.form-radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-dark);
  cursor: pointer;
}

.side-flow-list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  counter-reset: flow-counter;
}

.side-flow-list li {
  counter-increment: flow-counter;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.929rem;
  color: var(--gray-dark);
}

.side-flow-list li:last-child {
  border-bottom: none;
}

.side-flow-list li::before {
  content: counter(flow-counter);
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 0.786rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ========== RECRUIT PAGE ========== */

/* 共通セクション構造 */
.recruit-section {
  padding: 96px 80px
}

.recruit-section .inner {
  max-width: 1200px;
  margin: 0 auto
}

/* 共通テキスト要素 */
.sec-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.786rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px
}

.sec-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary)
}

.sec-desc {
  font-size: 1.071rem;
  line-height: 2;
  color: #555
}

/* --- Message --- */
.recruit-message {
  background: var(--white)
}

.recruit-message .inner {
  width: 100%;
}

.message-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.message-img-col {
  width: 30%;
  flex-shrink: 0;
}

.message-img-col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.message-text-col {
  flex: 1;
}

.message-author {
  margin-top: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black)
}

.message-visual {
  position: relative
}

.message-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0a1a2d 0%, #0d2d4a 60%, #1a4a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 88% 100%, 0 100%)
}

.message-img svg {
  opacity: 0.2
}

.message-img span {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.929rem;
  letter-spacing: 0.1em
}

/* --- Points --- */
.recruit-points {
  background: var(--black);
  position: relative;
  overflow: hidden
}

.recruit-points::before {
  content: 'WHY';
  position: absolute;
  bottom: 20px;
  right: 60px;
  font-family: 'Oswald', sans-serif;
  font-size: 160px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none
}

.recruit-points .sec-label {
  color: var(--primary-light)
}

.recruit-points .sec-label::before {
  background: var(--primary)
}

.recruit-points .sec-title {
  color: white;
  margin-bottom: 56px
}

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

.point-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px 32px;
  transition: background 0.25s
}

.point-card:hover {
  background: rgba(255, 255, 255, 0.07)
}

.point-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(143, 211, 245, 0.2);
  line-height: 1;
  margin-bottom: 20px
}

.point-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px
}

.point-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.point-card h3 {
  font-size: 1.143rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.5
}

.point-card p {
  font-size: 0.929rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9
}

/* --- Jobs --- */
.recruit-jobs {
  background: var(--off-white)
}

.job-card {
  background: white;
  border: 1px solid var(--gray-light);
  margin-top: 48px
}

.job-card-head {
  background: var(--black);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.job-card-title {
  font-size: 1.429rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 16px
}

.job-card-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.786rem;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 0.06em
}

.job-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.857rem;
  font-weight: 700;
  padding: 6px 14px;
  letter-spacing: 0.06em;
  white-space: nowrap
}

.job-card-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0
}

.job-table {
  width: 100%;
  border-collapse: collapse
}

.job-table tr {
  border-bottom: 1px solid var(--gray-light)
}

.job-table tr:last-child {
  border-bottom: none
}

.job-table th {
  padding: 20px 24px 20px 40px;
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--gray-mid);
  text-align: left;
  white-space: nowrap;
  width: 180px;
  vertical-align: top;
  letter-spacing: 0.04em;
  background: var(--off-white);
  border-right: 1px solid var(--gray-light)
}

.job-table td {
  padding: 20px 40px;
  font-size: 1.143rem;
  color: var(--gray-dark);
  line-height: 1.9;
  vertical-align: top
}

.job-table td strong {
  color: var(--black);
  font-weight: 700
}

.job-table .highlight {
  color: var(--accent);
  font-weight: 700
}

/* --- Flow --- */
.recruit-flow {
  background: var(--white)
}

.flow-timeline {
  margin-top: 56px;
  position: relative;
  display: flex;
  flex-direction: column
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--gray-light)
}

.flow-item {
  display: grid;
  grid-template-columns: 144px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-light)
}

.flow-item:last-child {
  border-bottom: none
}

.flow-time {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px
}

.flow-dot {
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid var(--primary-dark);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.flow-dot.filled {
  background: var(--primary)
}

.flow-time-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.286rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.04em;
  white-space: nowrap
}

.flow-body h4 {
  font-size: 1.071rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px
}

.flow-body p {
  font-size: 0.929rem;
  color: #666;
  line-height: 1.8
}

/* --- Steps --- */
.recruit-steps {
  background: var(--off-white)
}

.steps-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-light);
  z-index: 0
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.step-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.step-item:last-child .step-circle {
  background: var(--primary);
  border-color: var(--primary)
}

.step-item:last-child .step-circle svg {
  stroke: var(--black)
}

.step-name {
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.4
}

.step-note {
  font-size: 0.929rem;
  color: var(--gray-mid);
  line-height: 1.6
}

/* --- CTA --- */
.recruit-cta {
  background: var(--accent);
  padding: 80px 80px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.recruit-cta::before {
  content: 'JOIN US';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: 180px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: 0.1em;
  white-space: nowrap;
  pointer-events: none
}

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

.recruit-cta h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.5
}

.recruit-cta p {
  font-size: 1.071rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.8
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--accent);
  padding: 18px 40px;
  font-size: 1.071rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: all 0.2s
}

.btn-cta-white:hover {
  background: var(--off-white)
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 18px 40px;
  font-size: 1.071rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: all 0.2s
}

.btn-cta-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1)
}

/* fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0)
}

.fade-in-delay-1 { transition-delay: 0.1s }
.fade-in-delay-2 { transition-delay: 0.2s }
.fade-in-delay-3 { transition-delay: 0.3s }
.fade-in-delay-4 { transition-delay: 0.4s }

@media (max-width: 1024px) {
  .recruit-section {
    padding: 80px 48px;
  }

  .recruit-cta {
    padding: 72px 48px;
  }
}

@media (max-width: 768px) {
  .recruit-section,
  .recruit-cta {
    padding: 64px 24px;
  }

  .message-inner {
    flex-direction: column;
    gap: 32px;
  }

  .message-img-col {
    width: 100%;
  }

  .message-img-col img {
  height: 230px;
  object-fit: cover;
  }
  .points-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
  }

  .job-card-title {
    font-size: 1.143rem;
  }

  .job-table th {
    padding: 14px 10px;
    font-size: 0.857rem;
    width: 110px;
  }

  .job-table td {
    padding: 14px 20px;
    font-size: 1rem;
  }

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

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

  .steps-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .steps-row::before {
    display: none;
  }

  .recruit-cta h2 {
    font-size: 1.714rem;
  }
}

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

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

  .flow-timeline::before,
  .flow-time {
    display: none;
  }

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

/* ========== RECRUIT CONFIRM PAGE ========== */
.confirm-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 80px;
}

.confirm-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.714rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.confirm-lead {
  font-size: 1.071rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-light);
}

.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
}

.confirm-table tr {
  border-bottom: 1px solid var(--gray-light);
}

.confirm-table tr:first-child {
  border-top: 1px solid var(--gray-light);
}

.confirm-table th {
  width: 160px;
  padding: 18px 20px 18px 0;
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--gray-mid);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  border-right: 3px solid var(--primary);
}

.confirm-table td {
  padding: 18px 0 18px 24px;
  font-size: 1.071rem;
  color: var(--black);
  line-height: 1.8;
  word-break: break-all;
}

.confirm-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.confirm-actions form {
  flex: 1;
}

.confirm-actions .btn-submit {
  width: 100%;
}

.btn-back {
  background: none;
  border: 2px solid var(--gray-light);
  color: var(--gray-dark);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.btn-back:hover {
  border-color: var(--gray-dark);
  color: var(--black);
}

@media (max-width: 768px) {
  .confirm-wrap {
    padding: 56px 24px;
  }

  .confirm-table th {
    width: 110px;
    font-size: 0.857rem;
  }

  .confirm-table td {
    font-size: 1rem;
    padding-left: 16px;
  }

  .confirm-actions {
    flex-direction: column;
  }

  .btn-back {
    width: 100%;
    text-align: center;
  }
}

/* ========== PRIVACY POLICY PAGE ========== */
.privacy-main {
  padding: 80px 80px;
  background: var(--white);
}

.privacy-inner {
  max-width: 860px;
  margin: 0 auto;
}

.privacy-intro {
  font-size: 1.071rem;
  line-height: 2;
  color: #555;
  padding: 32px;
  background: var(--off-white);
  border-left: 4px solid var(--primary);
  margin-bottom: 48px;
}

.privacy-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-light);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.143rem;
  font-weight: 700;
  color: var(--black);
  padding: 10px 16px;
  background: var(--off-white);
  border-left: 4px solid var(--primary-dark);
  margin-bottom: 20px;
}

.privacy-section p {
  font-size: 1rem;
  line-height: 2;
  color: #555;
  margin-bottom: 16px;
}

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

.privacy-list {
  padding-left: 0;
  list-style: none;
  margin-top: 8px;
  counter-reset: privacy-counter;
}

.privacy-list li {
  counter-increment: privacy-counter;
  display: flex;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-light);
}

.privacy-list li:last-child {
  border-bottom: none;
}

.privacy-list li::before {
  content: counter(privacy-counter) ".";
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--primary-dark);
  flex-shrink: 0;
  min-width: 20px;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.privacy-table tr {
  border-bottom: 1px solid var(--gray-light);
}

.privacy-table tr:last-child {
  border-bottom: none;
}

.privacy-table th {
  padding: 14px 20px 14px 0;
  font-size: 0.929rem;
  font-weight: 700;
  color: var(--gray-mid);
  text-align: left;
  white-space: nowrap;
  width: 160px;
  vertical-align: top;
  border-right: 3px solid var(--primary);
  padding-right: 20px;
}

.privacy-table td {
  padding: 14px 0 14px 24px;
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.8;
}

.privacy-date {
  text-align: right;
  font-size: 0.929rem;
  color: var(--gray-mid);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

@media (max-width: 1024px) {
  .privacy-main {
    padding: 72px 48px;
  }
}

@media (max-width: 768px) {
  .privacy-main {
    padding: 56px 24px;
  }

  .privacy-intro {
    padding: 24px;
    font-size: 1rem;
  }

  .privacy-table th {
    width: 120px;
    font-size: 0.857rem;
  }

  .privacy-table td {
    font-size: 0.929rem;
  }
}