@charset "utf-8";
/* CSS Document */

/* ─── TYPOGRAPHY ─── */
.serif { font-family: 'Noto Serif JP', serif; }
.bebas { font-family: 'Bebas Neue', sans-serif; }

/* ─── PAGES ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--main);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text span:first-child {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-logo-text span:last-child {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav-links a, .nav-links button {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}

.nav-links a:hover, .nav-links button:hover,
.nav-links a.active, .nav-links button.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--main) !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-dark) !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background: var(--main);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 表示中 */
.hero-bg.active {
  opacity: 1;
}

/* 画像1 */
.hero-bg:nth-child(1) {
  background:
    linear-gradient(
      135deg,
      rgba(31,66,92,0.58) 0%,
      rgba(49,92,125,0.32) 50%,
      rgba(74,118,152,0.02) 100%
    ),
    url('../img/fv01.jpg') center/cover no-repeat;
}

/* 画像2 */
.hero-bg:nth-child(2) {
  background:
    linear-gradient(
      135deg,
      rgba(31,66,92,0.58) 0%,
      rgba(49,92,125,0.32) 50%,
      rgba(74,118,152,0.02) 100%
    ),
    url('../img/fv02.jpg') center/cover no-repeat;
}

/* 画像3 */
.hero-bg:nth-child(3) {
  background:
    linear-gradient(
      135deg,
      rgba(31,66,92,0.58) 0%,
      rgba(49,92,125,0.32) 50%,
      rgba(74,118,152,0.02) 100%
    ),
    url('../img/fv03.jpg') center/cover no-repeat;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-accent-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  padding-top: 72px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(200,169,110,0.4);
  padding: 6px 16px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.2s both;
}

.hero-tag span {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-tag::before, .hero-tag::after {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title-en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  animation: fadeUp 0.8s 0.3s both;
}

.hero-title-en span { color: var(--gold); }

.hero-title-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.45s both;
}

.hero-desc {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  animation: fadeUp 0.8s 0.75s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--text-dark);
  border: none;
  padding: 16px 36px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 16px 36px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeUp 0.8s 0.9s both;
}

.hero-stat-item {
  text-align: right;
  border-right: 2px solid var(--gold);
  padding-right: 16px;
}

.hero-stat-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-item .label {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 1.2s both;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── SECTION HEADERS ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-label span {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(23px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(200,169,110,0.3);
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-image-badge {
  position: absolute;
  z-index: 2;
  bottom: -24px;
  right: -24px;
  background: var(--main);
  padding: 24px 32px;
  border-left: 3px solid var(--gold);
}

.about-image-badge .big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}

.about-image-badge .small {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2em;
  margin-top: 4px;
}

.about-text .section-title {
  margin-bottom: 24px;
}

.about-text p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--stone-mid);
  margin: 40px 0;
  border: 1px solid var(--stone-mid);
}

.about-metric {
  background: var(--white);
  padding: 24px 16px;
  text-align: center;
}

.about-metric .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
}
.about-metric .num.bebas {
  font-size:clamp(1.625rem, 1.277rem + 1.46vw, 2.375rem);
}

.about-metric .unit {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
}

.about-metric .lbl {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ─── SERVICES SECTION ─── */
.services-section {
  padding: 120px 0;
  background: var(--main);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.services-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.services-inner .section-label span { color: var(--gold); }
.services-inner .section-title { color: var(--white); }

.services-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200,169,110,0.1);
}

.service-card {
  background: var(--main-mid);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
  group: true;
}

/*.service-card:hover {
  background: var(--navy-light);
}*/

.service-card:hover .service-card-overlay {
  opacity: 1;
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
 /* filter: brightness(0.7);*/
  transition: all 0.4s;
}

.service-card:hover .service-card-img {
  filter: brightness(0.5);
  transform: scale(1.05);
}

/*.service-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: rgba(200,169,110,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}*/

.service-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: rgba(200,169,110,0.25);
  line-height: 1;
}

.service-card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 14px;
}

.service-card-body {
  padding: 24px 20px;
}

.service-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}

.service-card-arrow {
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

.service-card:hover .service-card-arrow { opacity: 1; }

/* ─── FEATURES BAND ─── */
.features-band {
  background: var(--gold);
  padding: 48px 0;
  overflow: hidden;
}

.features-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 32px;
  border-right: 1px solid rgba(13,27,42,0.15);
}

.feature-item:first-child { padding-left: 0; }
.feature-item:last-child { border-right: none; }

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--main-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(13,27,42,0.6);
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 120px 0;
  background: var(--stone);
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-text .section-title { margin-bottom: 24px; }

.cta-text p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.phone-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: var(--main);
  margin-top: 24px;
}

.phone-cta .icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
  font-size: 18px;
}

.phone-cta .info small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 4px;
}

.phone-cta .info a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.cta-map {
  height: 360px;
  background: var(--main-mid);
  position: relative;
  overflow: hidden;
}

.cta-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--main);
  padding: 80px 0 0;
  border-top: 1px solid rgba(200,169,110,0.15);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img {
  height: 40px;
  width: auto;
	max-width: 100%;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 12px;
  line-height: 2;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-brand .phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.footer-col h5 {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li button {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.footer-col ul li a::before,
.footer-col ul li button::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.footer-col ul li a:hover,
.footer-col ul li button:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════
   SERVICES PAGE
═══════════════════════════════ */
.page-hero {
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: #18364d;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}
.about .page-hero-bg {
  background:
    linear-gradient(
      135deg,
      rgba(18,40,58,0.82) 0%,
      rgba(31,66,92,0.62) 45%,
      rgba(74,118,152,0.38) 100%
    ),

    url("../img/about-fv.jpg") center/cover no-repeat;

  transform: scale(1.03);
}
.service .page-hero-bg {
  background:
    linear-gradient(
      135deg,
      rgba(18,40,58,0.82) 0%,
      rgba(31,66,92,0.62) 45%,
      rgba(74,118,152,0.38) 100%
    ),

    url("../img/service-fv.jpg") center/cover no-repeat;

  transform: scale(1.03);
}

/* グリッド */
.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

  background-size: 60px 60px;
}

/* ぼかし光 */
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255,255,255,0.14),
      transparent 45%
    );

  mix-blend-mode: screen;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
}

.page-hero-content .section-label span { color: var(--gold); }
.page-hero-content .section-label::before { background: var(--gold); }

.page-hero-content .serif {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  margin-top: 16px;
}

.page-hero-content .en-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 120px);
  color: rgba(200,169,110,0.18);
  line-height: 0.9;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* Services Detail */
.service-detail {
  padding: 100px 0;
}

.service-detail:nth-child(even) { background: var(--stone); }

.service-detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-inner {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-inner > * {
  direction: ltr;
}

.service-detail-img {
  position: relative;
}

.service-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.service-detail-img::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(200,169,110,0.25);
  z-index: -1;
}

.service-detail:nth-child(even) .service-detail-img::after {
  right: auto;
  left: -12px;
}

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(200,169,110,0.12);
  line-height: 1;
  margin-bottom: -16px;
}

.service-detail-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-detail-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}

.service-detail-text p {
  font-size: 14px;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.service-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}

.service-detail:nth-child(even) .service-point {
  background: var(--white);
}

.service-point i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-point span {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ═══════════════════════════════
   COMPANY PAGE
═══════════════════════════════ */
.company-overview {
  padding: 100px 0;
}

.company-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

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

.company-table tr {
  border-bottom: 1px solid var(--stone-mid);
}

.company-table th {
  text-align: left;
  padding: 18px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  width: 36%;
  vertical-align: top;
}

.company-table th::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 12px;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
}

.company-table td {
  padding: 18px 0;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  vertical-align: top;
}

.company-philosophy {
  background: var(--main);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.company-philosophy::before {
  content: 'VISION';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: rgba(200,169,110,0.05);
  right: -20px;
  top: -20px;
  line-height: 1;
}

.company-philosophy blockquote {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 32px;
}

.company-philosophy p {
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}

/* Recruit Section */
.recruit-section {
  padding: 100px 0;
  background: var(--stone);
}

.recruit-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.recruit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--stone-mid);
  margin-top: 60px;
}

.recruit-card {
  background: var(--white);
  padding: 40px 32px;
}

.recruit-card-icon {
  width: 52px;
  height: 52px;
  background: var(--main-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 20px;
}

.recruit-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.recruit-card p {
  font-size: 13px;
  line-height: 2;
  color: var(--text-mid);
}

.recruit-info {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--stone-mid);
}

.recruit-info-item {
  background: var(--white);
  padding: 28px 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.recruit-info-item .r-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  width: 120px;
  flex-shrink: 0;
}

.recruit-info-item .r-val {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Contact Form */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

.contact-form {
  margin-top: 60px;
  background: var(--stone);
  padding: 60px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.form-group label .required {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 9px;
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--stone-mid);
  border-bottom: 2px solid transparent;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group textarea { height: 160px; resize: vertical; }

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

.form-submit {
  margin-top: 40px;
  text-align: center;
}

.btn-submit {
  background: var(--main);
  color: var(--white);
  border: none;
  padding: 18px 64px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-submit:hover {
  background: var(--gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* ─── SP FOOT BUTTON ─── */
.sp_footbtn {
  position: fixed;
  left: 0;
  bottom: -100px;

  width: 100%;
  z-index: 9999;

  transition: .35s ease;
}

/* スクロール後表示 */
.sp_footbtn.show {
  bottom: 0;
}

.sp_footbtn ul {
  display: grid;
  grid-template-columns: repeat(3,1fr);

  margin: 0;
  padding: 0;
  list-style: none;

  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(10px);

  border-top: 1px solid rgba(255,255,255,0.08);
}

.sp_footbtn li {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.sp_footbtn li:last-child {
  border-right: none;
}

.sp_footbtn a {
  height: 64px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 4px;

  color: #fff;
  text-decoration: none;

  font-size: 10px;
  letter-spacing: .08em;
}

.sp_footbtn .icon {
  font-size: 18px;
  color: var(--gold);
}

/* ─────────────────────────
SP MENU
───────────────────────── */

#g-nav{
  position: fixed;
  inset: 0;
  z-index: 9998;

  background:
    radial-gradient(circle at top left,
      rgba(45,72,101,.22),
      transparent 45%),
    linear-gradient(
      135deg,
      #05070b 0%,
      #0b1320 45%,
      #08111d 100%
    );

  overflow: hidden;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .45s ease,
    visibility .45s ease;
}

/* OPEN */
#g-nav.active{
  opacity:1;
  visibility:visible;
}

/* GRID */
#g-nav::before{
  content:"";
  position:absolute;
  inset:0;

  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

  background-size: 48px 48px;

  opacity:.25;
}

/* 左ライン */
#g-nav::after{
  content:"";
  position:absolute;
  top:0;
  left:7vw;

  width:1px;
  height:100%;

  background:linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,.15),
    transparent
  );
}

/* MENU LIST */
#g-nav ul{
  position:relative;
  z-index:2;
  min-height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:22px;
  margin:0;
  padding:5vh 10vw;

  list-style:none;
}

/* ITEM */
#g-nav li{
  overflow:hidden;
}

/* LINK */
#g-nav li a{
  position:relative;

  display:flex;
  flex-direction:column;

  width:fit-content;

  text-decoration:none;

  padding:0 0 18px;

  transform:translateX(-60px);
  opacity:0;

  transition:
    transform .7s cubic-bezier(.19,1,.22,1),
    opacity .7s;
}

/* OPEN MOTION */
#g-nav.active li a{
  transform:translateX(0);
  opacity:1;
}

#g-nav.active li:nth-child(1) a{ transition-delay:.08s; }
#g-nav.active li:nth-child(2) a{ transition-delay:.14s; }
#g-nav.active li:nth-child(3) a{ transition-delay:.20s; }
#g-nav.active li:nth-child(4) a{ transition-delay:.26s; }
#g-nav.active li:nth-child(5) a{ transition-delay:.32s; }

/* 番号 */
#g-nav li a::before{
  content:attr(data-num);

  position:absolute;
  left:-54px;
  top:14px;

  font-size:11px;
  font-weight:600;
  letter-spacing:.25em;

  color:rgba(255,255,255,.35);
}

/* 下線 */
#g-nav li a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:0;

  width:0;
  height:1px;

  background:
    linear-gradient(
      to right,
      var(--gold),
      rgba(255,255,255,.4)
    );

  transition:width .45s ease;
}

#g-nav li a:hover::after{
  width:100%;
}

/* 英字 */
#g-nav .en{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(28px,7vw,48px);
  line-height:1;
  letter-spacing:.04em;

  color:#fff;

  transition:.3s;
}

/* 日本語 */
#g-nav .jp{
  margin-top:8px;

  font-size:11px;
  letter-spacing:.24em;

  color:rgba(255,255,255,.42);
}

/* hover */
#g-nav li a:hover .en{
  color:var(--gold);
  transform:translateX(8px);
}

/* 矢印 */
#g-nav li a .arrow{
  position:absolute;
  right:-58px;
  top:28px;

  width:34px;
  height:1px;

  background:rgba(255,255,255,.35);

  transform:scaleX(0);
  transform-origin:left center;

  transition:.35s;
}

#g-nav li a .arrow::after{
  content:"";

  position:absolute;
  right:0;
  top:-3px;

  width:8px;
  height:8px;

  border-top:1px solid rgba(255,255,255,.5);
  border-right:1px solid rgba(255,255,255,.5);

  transform:rotate(45deg);
}

#g-nav li a:hover .arrow{
  transform:scaleX(1);
}


/* MOBILE */
@media(max-width:768px){

  #g-nav li a::before{
    left:-38px;
  }

  #g-nav .nav-cta{
    bottom:110px;
  }

}
body.menu-open {
  overflow: hidden;
}
/* PCでは非表示 */
@media (min-width: 769px) {

  .sp_footbtn,
  #g-nav {
    display: none;
  }

}
/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

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

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-inner,
  .cta-inner,
  .company-grid,
  .service-detail-inner { grid-template-columns: 1fr; gap: 48px; }

  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-band-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .feature-item:first-child { padding-left: 32px;}
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .recruit-cards { grid-template-columns: 1fr; }
  .recruit-info { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
}

@media (max-width: 768px) {
	body{
		padding-bottom: 60px;
	}
  .services-grid { grid-template-columns: 1fr; }
 .features-band-inner { grid-template-columns: 1fr; }
	.feature-item { padding: 0 20px 10px; border-right: none; border-bottom: 1px solid rgba(13, 27, 42, 0.15);}
  .feature-item:first-child { padding-left: 20px;}
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .company-philosophy { padding: 40px 28px; }
  .hero-actions { flex-direction: column; max-width: 380px;}
  .nav-links { display: none; }
  .nav-cta { display: none !important; }
	
	/* ─── HEADER BASE ─── */
	nav {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  z-index: 1000;
	}

}
@media (max-width: 500px) {
	.nav-logo img { height: 26px;}	
	.services-inner,.about-inner,.service-detail-inner,.company-inner,.recruit-inner,.contact-inner  {padding: 0px 25px;}
	.cta-inner{padding: 0px 15px;}
  /* 背景を少し暗くして文字を見やすく */
  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.32);
  }

  /* 左右余白調整 */
  .hero-content {
    padding: 90px 20px 40px;
  }

  /* 英字タイトル */
  .hero-title-en {
    font-size: clamp(52px, 18vw, 82px);
    line-height: 0.88;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.45);
  }

  /* 日本語タイトル */
  .hero-title-ja {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
    margin-bottom: 24px;
  }

  /* 説明文 */
  .hero-desc {
    font-size: 12px;
    line-height: 2;
    color: rgba(255,255,255,0.82);
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
    max-width: 100%;
  }

  /* ボタン非表示 */
  .hero-actions {
    display: none;
  }

  /* タグ少し見やすく */
  .hero-tag {
    background: rgba(0,0,0,0.18);
    backdrop-filter: blur(4px);
  }
	
	.phone-cta {
		padding: 17px 25px;
	}	
	.serif{	font-size: clamp(1.125rem, 0.25rem + 4vw, 1.5rem)!important;}	
.recruit-info-item { flex-direction: column;}
.footer-bottom { flex-direction: column;}	
}

@media (max-width: 370px) and (max-height: 600px) {

  #g-nav .en{
    font-size: clamp(1.125rem, -0.333rem + 6.67vw, 1.75rem);
  }

  #g-nav ul{
    justify-content: flex-start;
    gap: 5px;
  }
  #g-nav .jp{
    margin-top: 2px;
    font-size: 9px;
  }	

}


/*=========================
Thanksページ
====================================*/

.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background-color: #fafaf8;
}

.thanks-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thanks-icon i {
  color: #fff;
  font-size: 28px;
}

.thanks-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.thanks-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 32px;
}

.thanks-divider {
  width: 48px;
  height: 2px;
  background-color: #1a1a1a;
  margin: 0 auto 32px;
}

.thanks-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 16px;
}

.thanks-note {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  line-height: 1.9;
  color: #999;
  margin-bottom: 48px;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background-color: #1a1a1a;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.thanks-btn:hover {
  opacity: 0.75;
}
