﻿/*
Theme Name: Neo Japan Yugen
Theme URI: https://neo-japan-yugen.co.jp
Author: Neo Japan Yugen
Description: ネオジャパンユウゲン株式会社 公式サイトテーマ / 洗練デザイン
License: Private
Text Domain: njy
*/

/* ============================================================
   DESIGN SYSTEM
   - Shippori Mincho B1: 見出し用   - Noto Sans JP: 本文用   - Cormorant Garamond: 英字ラベル
   - #0A0A0A: 黒 / #C5A55A: 金 / #BC002D: 日本の赤色
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #FFD700;
  --gold-light: #FFE45C;
  --gold-dark: #C9A400;
  --accent-green: #A9D159;
  --red: #BC002D;
  --black: #0A0A0A;
  --black2: #0D0D0D;
  --black3: #111111;
  --cream: #F5F0E8;
  --font-mincho: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  --font-gothic: 'Noto Sans JP', sans-serif;
  --font-garamond: 'Cormorant Garamond', Georgia, serif;
}

html { scroll-behavior: smooth; }

html { margin-top: 0 !important; }
#wpadminbar { position: fixed; }
body.admin-bar .njy-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .njy-header { top: 46px; } }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-gothic);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* Gold Gradient Text */
.text-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(197,165,90,0.2), transparent);
}

/* Container */
.njy-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .njy-container { padding: 0 40px; } }

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   HEADER
   ============================================================ */
.njy-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s, border-color 0.5s;
}
.njy-header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197,165,90,0.1);
}
.njy-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
@media (min-width: 1024px) { .njy-header__inner { height: 80px; } }

.njy-logo {
  display: inline-flex;
  align-items: center;
}
.njy-logo__image {
  display: block;
  width: auto;
  height: 34px;
}
@media (min-width: 640px) {
  .njy-logo__image {
    height: 40px;
  }
}

.njy-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 1024px) { .njy-nav { display: flex; } }

.njy-nav a {
  font-family: var(--font-gothic);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.6);
  transition: color 0.3s;
  position: relative;
}
.njy-nav a:hover,
.njy-nav a.current { color: rgba(197,165,90,0.9); }
.njy-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.njy-nav a:hover::after,
.njy-nav a.current::after { width: 100%; }

.njy-nav__contact {
  font-family: var(--font-gothic);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(197,165,90,0.6);
  border: 1px solid rgba(197,165,90,0.3);
  padding: 8px 20px;
  transition: all 0.3s;
}
.njy-nav__contact:hover {
  background: rgba(197,165,90,0.08);
  border-color: rgba(197,165,90,0.6);
  color: var(--gold);
}

/* Mobile menu */
.njy-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
@media (min-width: 1024px) { .njy-hamburger { display: none; } }
.njy-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: rgba(197,165,90,0.7);
  transition: all 0.3s;
}
.njy-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.njy-hamburger.open span:nth-child(2) { opacity: 0; }
.njy-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.menu-open .njy-hamburger { visibility: hidden; opacity: 0; pointer-events: none; }

.njy-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.njy-mobile-menu.open { display: flex; }
.njy-mobile-menu a {
  font-family: var(--font-mincho);
  font-size: 20px;
  letter-spacing: 0.15em;
  color: rgba(245,240,232,0.7);
  transition: color 0.3s;
}
.njy-mobile-menu a:hover { color: var(--accent-green); }
.njy-mobile-menu__close {
  position: absolute;
  top: 17px;
  right: 24px;
  z-index: 201;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 8px;
  background: none;
  border: none;
  color: transparent;
  cursor: pointer;
}
.njy-mobile-menu__close::before,
.njy-mobile-menu__close::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  background: rgba(197,165,90,0.7);
}
.njy-mobile-menu__close::before { transform: rotate(45deg); }
.njy-mobile-menu__close::after { transform: rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.njy-hero {
  position: relative;
  height: calc(100vh + 72px);
  min-height: 672px;
  margin-top: -72px;
  padding-top: 72px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
body.admin-bar .njy-hero {
  height: calc(100vh + 104px);
  min-height: 704px;
  margin-top: -104px;
  padding-top: 104px;
}
@media (max-width: 782px) {
  body.admin-bar .njy-hero {
    height: calc(100vh + 118px);
    min-height: 718px;
    margin-top: -118px;
    padding-top: 118px;
  }
}
.njy-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.njy-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0A0A0A 0%, rgba(10,10,10,0.4) 50%, transparent 100%);
}
.njy-hero__overlay2 {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.3);
}
.njy-hero__vertical {
  position: absolute;
  top: 50%; right: 32px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-garamond);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  display: none;
}
@media (min-width: 768px) { .njy-hero__vertical { display: block; } }
@media (min-width: 1024px) { .njy-hero__vertical { right: 48px; } }

.njy-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 24px 80px;
}
@media (min-width: 1024px) { .njy-hero__content { padding: 0 64px 112px; } }

.njy-hero__eyebrow {
  font-family: var(--font-garamond);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(197,165,90,0.7);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}
.njy-hero__title {
  font-family: var(--font-mincho);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  max-width: 700px;
}
.njy-hero__sub {
  font-family: var(--font-gothic);
  font-size: 13px;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
  font-weight: 300;
}
.njy-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.njy-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-gothic);
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: background 0.3s;
}
.njy-btn-primary:hover { background: var(--gold-light); color: var(--black); }
.njy-btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(197,165,90,0.5);
  color: var(--gold);
  font-family: var(--font-gothic);
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.njy-btn-outline:hover {
  border-color: var(--gold);
  background: rgba(197,165,90,0.1);
  color: var(--gold);
}

.njy-hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.njy-hero__scroll span {
  font-family: var(--font-garamond);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(197,165,90,0.5);
}
.njy-hero__scroll-line {
  width: 1px; height: 40px;
  background: rgba(197,165,90,0.3);
  position: relative;
  overflow: hidden;
}
.njy-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scroll-line 2s infinite ease-in-out;
}
@keyframes scroll-line {
  0% { top: -100%; }
  100% { top: 100%; }
}
@media (max-width: 767px) {
  .njy-hero__content {
    padding-bottom: 132px;
  }

  .njy-hero__scroll {
    bottom: 16px;
  }
}

/* ============================================================
   SECTION HEADING (共通)
   ============================================================ */
.njy-section-head {
  text-align: center;
  margin-bottom: 64px;
}
@media (min-width: 1024px) { .njy-section-head { margin-bottom: 80px; } }
.njy-section-head__en {
  font-family: var(--font-garamond);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(197,165,90,0.7);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.njy-section-head__ja {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
}
.njy-section-head__sub {
  font-family: var(--font-gothic);
  font-size: 13px;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.05em;
  margin-top: 12px;
  font-weight: 300;
}

/* ============================================================
   ABOUT SECTION (TOP)
   ============================================================ */
.njy-about {
  position: relative;
  padding: 96px 0;
}
@media (min-width: 1024px) { .njy-about { padding: 128px 0; } }
.njy-about__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(197,165,90,0.3), transparent);
}
.njy-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .njy-about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.njy-about__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.njy-about__eyebrow span {
  font-family: var(--font-garamond);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(197,165,90,0.7);
  text-transform: uppercase;
}
.njy-about__eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 48px;
  background: rgba(197,165,90,0.3);
}
.njy-about__title {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
}
.njy-about__body {
  font-family: var(--font-gothic);
  font-size: 14px;
  line-height: 2;
  color: rgba(245,240,232,0.65);
  margin-bottom: 32px;
  font-weight: 300;
}
.njy-about__body p + p { margin-top: 16px; }
.njy-about__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-gothic);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: color 0.3s;
}
.njy-about__link:hover { color: var(--accent-green); }
.njy-about__link::after {
  content: '';
  display: block;
  height: 1px;
  width: 32px;
  background: rgba(197,165,90,0.5);
  transition: width 0.3s;
}
.njy-about__link:hover::after { width: 48px; }

.njy-about__img-wrap {
  position: relative;
}
.njy-about__img-border {
  position: absolute;
  top: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 1px solid rgba(197,165,90,0.2);
  z-index: 0;
}
.njy-about__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (min-width: 1024px) { .njy-about__img { height: 460px; } }
.njy-about__img-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10,10,10,0.3), transparent);
  pointer-events: none;
}
.njy-about__caption {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.njy-about__caption::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: rgba(197,165,90,0.3);
}
.njy-about__caption span {
  font-family: var(--font-garamond);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(197,165,90,0.5);
  text-transform: uppercase;
}

/* ============================================================
   SERVICES SECTION (TOP)
   ============================================================ */
.njy-services {
  position: relative;
  padding: 96px 0;
  background: var(--black2);
}
@media (min-width: 1024px) { .njy-services { padding: 128px 0; } }
.njy-services__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(197,165,90,0.2), transparent);
}
.njy-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .njy-services__grid { grid-template-columns: repeat(var(--services-tablet-cols, 2), minmax(0, 1fr)); } }
@media (min-width: 1024px) { .njy-services__grid { grid-template-columns: repeat(var(--services-desktop-cols, 4), minmax(0, 1fr)); gap: 20px; } }

.njy-service-card {
  position: relative;
  background: var(--black3);
  border: 1px solid rgba(197,165,90,0.1);
  padding: 32px;
  transition: border-color 0.5s;
}
.njy-service-card:hover { border-color: rgba(197,165,90,0.3); }
.njy-service-card__corner-tl,
.njy-service-card__corner-br {
  position: absolute;
  width: 24px; height: 24px;
  opacity: 0;
  transition: opacity 0.5s;
}
.njy-service-card__corner-tl {
  top: 0; left: 0;
  border-top: 1px solid rgba(197,165,90,0.3);
  border-left: 1px solid rgba(197,165,90,0.3);
}
.njy-service-card__corner-br {
  bottom: 0; right: 0;
  border-bottom: 1px solid rgba(197,165,90,0.3);
  border-right: 1px solid rgba(197,165,90,0.3);
}
.njy-service-card:hover .njy-service-card__corner-tl,
.njy-service-card:hover .njy-service-card__corner-br { opacity: 1; }
.njy-service-card__label {
  font-family: var(--font-garamond);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}
.njy-service-card__icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(197,165,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.njy-service-card:hover .njy-service-card__icon { border-color: rgba(197,165,90,0.4); }
.njy-service-card__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.njy-service-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.njy-service-card__title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--cream);
}
.njy-service-card__desc {
  font-family: var(--font-gothic);
  font-size: 12px;
  line-height: 1.9;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
}
.njy-services__more {
  text-align: center;
  margin-top: 56px;
}
.njy-services__more a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-gothic);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: color 0.3s;
}
.njy-services__more a:hover { color: var(--accent-green); }
.njy-services__more a::after {
  content: '›';
  transition: transform 0.3s;
}
.njy-services__more a:hover::after { transform: translateX(4px); }

/* ============================================================
   WORKS SECTION (TOP)
   ============================================================ */
.njy-works {
  position: relative;
  padding: 96px 0;
}
@media (min-width: 1024px) { .njy-works { padding: 128px 0; } }
.njy-works__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(197,165,90,0.2), transparent);
}
.njy-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .njy-works__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .njy-works__grid { grid-template-columns: repeat(3, 1fr); }
  .njy-works__grid .njy-work-card:first-child { grid-column: span 2; }
}
.njy-work-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.njy-work-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.njy-work-card:first-child .njy-work-card__img { height: 320px; }
@media (min-width: 1024px) {
  .njy-work-card__img { height: 280px; }
  .njy-work-card:first-child .njy-work-card__img { height: 400px; }
}
.njy-work-card:hover .njy-work-card__img { transform: scale(1.05); }
.njy-work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
  transition: background 0.4s;
}
.njy-work-card:hover .njy-work-card__overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.1) 100%);
}
.njy-work-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.njy-work-card__tag {
  font-family: var(--font-garamond);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid rgba(197,165,90,0.3);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 12px;
}
.njy-work-card__title {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
  color: rgba(245,240,232,0.9);
  margin-bottom: 8px;
  line-height: 1.5;
}
.njy-work-card__meta {
  font-family: var(--font-garamond);
  font-size: 11px;
  color: rgba(197,165,90,0.5);
  letter-spacing: 0.05em;
}
.njy-works__more {
  text-align: center;
  margin-top: 48px;
}
.njy-works__more a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-gothic);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: color 0.3s;
}
.njy-works__more a:hover { color: var(--accent-green); }
.njy-works__more a::after { content: '›'; transition: transform 0.3s; }
.njy-works__more a:hover::after { transform: translateX(4px); }

/* ============================================================
   NEWS SECTION (TOP)
   ============================================================ */
.njy-news {
  position: relative;
  padding: 96px 0;
  background: var(--black2);
}
@media (min-width: 1024px) { .njy-news { padding: 128px 0; } }
.njy-news__top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(197,165,90,0.2), transparent);
}
.njy-news__list {
  border-top: 1px solid rgba(197,165,90,0.15);
}
.njy-news__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 8px;
  border-bottom: 1px solid rgba(197,165,90,0.1);
  transition: background 0.3s;
}
@media (min-width: 640px) {
  .njy-news__item {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 24px 16px;
  }
}
.njy-news__item:hover { background: rgba(197,165,90,0.03); }
.njy-news__date {
  font-family: var(--font-garamond);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.35);
  flex-shrink: 0;
  width: 100px;
}
.njy-news__tag {
  font-family: var(--font-gothic);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border: 1px solid;
  flex-shrink: 0;
  font-weight: 400;
}
.njy-news__title {
  font-family: var(--font-gothic);
  font-size: 13px;
  color: rgba(245,240,232,0.7);
  flex: 1;
  line-height: 1.6;
  font-weight: 300;
  transition: color 0.3s;
}
.njy-news__item:hover .njy-news__title { color: var(--gold); }
.njy-news__arrow {
  font-size: 12px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.njy-news__item:hover .njy-news__arrow { transform: translateX(4px); }
.njy-news__more {
  text-align: center;
  margin-top: 48px;
}
.njy-news__more a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-gothic);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: color 0.3s;
}
.njy-news__more a:hover { color: var(--accent-green); }
.njy-news__more a::after { content: '›'; transition: transform 0.3s; }
.njy-news__more a:hover::after { transform: translateX(4px); }

/* ============================================================
   RECRUIT CTA
   ============================================================ */
.njy-recruit {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
@media (min-width: 1024px) { .njy-recruit { padding: 128px 0; } }
main > .njy-recruit:last-child {
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  main > .njy-recruit:last-child {
    padding-bottom: 0;
  }
}
.njy-recruit__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.njy-recruit__overlay1 { position: absolute; inset: 0; background: rgba(10,10,10,0.7); }
.njy-recruit__overlay2 { position: absolute; inset: 0; background: rgba(188,0,45,0.15); }
.njy-recruit__content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.njy-recruit__eyebrow {
  font-family: var(--font-garamond);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(197,165,90,0.7);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}
.njy-recruit__title {
  font-family: var(--font-mincho);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}
.njy-recruit__title em {
  font-style: normal;
  color: var(--red);
}
.njy-recruit__sub {
  font-family: var(--font-gothic);
  font-size: 13px;
  color: rgba(245,240,232,0.6);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 300;
}
.njy-btn-red {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--red);
  color: white;
  font-family: var(--font-gothic);
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: background 0.3s;
  box-shadow: 0 8px 32px rgba(188,0,45,0.2);
}
.njy-btn-red:hover { background: #D4003A; color: white; }
.njy-recruit__note {
  font-family: var(--font-gothic);
  font-size: 10px;
  color: rgba(245,240,232,0.3);
  margin-top: 16px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.njy-footer {
  background: #050505;
  border-top: 1px solid rgba(197,165,90,0.08);
  padding: 64px 0 32px;
}
main + .njy-footer {
  border-top: none;
}
.njy-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .njy-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.njy-footer__brand-name {
  margin-bottom: 20px;
}
.njy-footer__brand-image {
  display: block;
  width: auto;
  max-width: min(100%, 220px);
  height: auto;
}
.njy-footer__tagline {
  font-family: var(--font-gothic);
  font-size: 11px;
  line-height: 1.9;
  color: rgba(245,240,232,0.3);
  margin-bottom: 16px;
  font-weight: 300;
}
.njy-footer__col-title {
  font-family: var(--font-garamond);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.njy-footer__links { display: flex; flex-direction: column; gap: 12px; }
.njy-footer__links a {
  font-family: var(--font-gothic);
  font-size: 12px;
  color: rgba(245,240,232,0.35);
  transition: color 0.3s;
  font-weight: 300;
}
.njy-footer__links a:hover { color: var(--accent-green); }
.njy-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(197,165,90,0.06);
}
@media (min-width: 640px) {
  .njy-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.njy-footer__copy {
  font-family: var(--font-garamond);
  font-size: 10px;
  color: rgba(245,240,232,0.2);
  letter-spacing: 0.05em;
}
.njy-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.njy-footer__social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(197,165,90,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-garamond);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: all 0.3s;
}
.njy-footer__social a:hover {
  color: rgba(197,165,90,0.7);
  border-color: rgba(197,165,90,0.3);
}

/* ============================================================
   PAGE HERO (固定ページ共通)
   ============================================================ */
.njy-page-hero {
  position: relative;
  height: calc(50vh + 72px);
  min-height: 392px;
  margin-top: -72px;
  padding-top: 72px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
body.admin-bar .njy-page-hero {
  height: calc(50vh + 104px);
  min-height: 424px;
  margin-top: -104px;
  padding-top: 104px;
}
@media (max-width: 782px) {
  body.admin-bar .njy-page-hero {
    height: calc(50vh + 118px);
    min-height: 438px;
    margin-top: -118px;
    padding-top: 118px;
  }
}
.njy-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.njy-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.55) 42%, transparent 100%);
}
.njy-page-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 24px 48px;
}
@media (min-width: 1024px) { .njy-page-hero__content { padding: 0 40px 64px; } }
.njy-page-hero__label {
  font-family: var(--font-garamond);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(197,165,90,0.6);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.njy-page-hero__title {
  font-family: var(--font-mincho);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 16px;
}
.njy-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-garamond);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.njy-page-hero__breadcrumb a { transition: color 0.3s; }
.njy-page-hero__breadcrumb a:hover { color: rgba(197,165,90,0.7); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.njy-about-page section { padding: 80px 0; }
@media (min-width: 1024px) { .njy-about-page section { padding: 96px 0; } }

.njy-about-page__lead {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.njy-about-page__lead-label {
  font-family: var(--font-garamond);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}
.njy-about-page__lead-title {
  font-family: var(--font-mincho);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.7;
  color: rgba(245,240,232,0.9);
  margin-bottom: 32px;
}
.njy-about-page__lead-body {
  font-family: var(--font-gothic);
  font-size: 13px;
  line-height: 2.2;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
}

/* CEO Section */
.njy-ceo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .njy-ceo { grid-template-columns: 1fr 1fr; gap: 80px; } }
.njy-ceo__img-wrap { position: relative; }
.njy-ceo__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}
@media (min-width: 1024px) { .njy-ceo__img { height: 500px; } }
.njy-ceo__img-border {
  position: absolute;
  bottom: -12px; left: -12px;
  width: 100%; height: 100%;
  border: 1px solid rgba(197,165,90,0.15);
  z-index: -1;
}
.njy-ceo__label {
  font-family: var(--font-garamond);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}
.njy-ceo__name {
  font-family: var(--font-mincho);
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(245,240,232,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}
.njy-ceo__message {
  font-family: var(--font-gothic);
  font-size: 13px;
  line-height: 2.2;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
  white-space: pre-line;
}
.njy-ceo__position {
  font-family: var(--font-gothic);
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 400;
}

/* Company Info Table */
.njy-company-table {
  width: 100%;
  border-collapse: collapse;
}
.njy-company-table tr {
  border-bottom: 1px solid rgba(197,165,90,0.08);
}
.njy-company-table th {
  font-family: var(--font-garamond);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(197,165,90,0.5);
  text-align: left;
  padding: 20px 24px 20px 0;
  width: 140px;
  vertical-align: top;
  font-weight: 400;
}
.njy-company-table td {
  font-family: var(--font-gothic);
  font-size: 13px;
  color: rgba(245,240,232,0.6);
  padding: 20px 0;
  line-height: 1.8;
  font-weight: 300;
}

/* History Timeline */
.njy-history {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid rgba(197,165,90,0.15);
}
@media (min-width: 640px) { .njy-history { padding-left: 64px; } }
.njy-history__item {
  position: relative;
  padding: 24px 0;
}
.njy-history__dot {
  position: absolute;
  left: -44px; top: 32px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--black2);
  border: 2px solid rgba(197,165,90,0.3);
}
@media (min-width: 640px) { .njy-history__dot { left: -68px; } }
.njy-history__year {
  font-family: var(--font-garamond);
  font-style: italic;
  font-size: 15px;
  color: rgba(197,165,90,0.5);
  display: block;
  margin-bottom: 8px;
}
@media (min-width: 1024px) { .njy-history__year { font-size: 17px; } }
.njy-history__event {
  font-family: var(--font-gothic);
  font-size: 13px;
  color: rgba(245,240,232,0.5);
  line-height: 1.8;
  font-weight: 300;
}
@media (min-width: 1024px) { .njy-history__event { font-size: 14px; } }

/* Access */
.njy-access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) { .njy-access__grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.njy-access__map-wrap { position: relative; }
.njy-access__map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.6) brightness(0.7);
  display: block;
}
.njy-access__map-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(197,165,90,0.1);
  pointer-events: none;
}
.njy-access__info { display: flex; flex-direction: column; gap: 28px; }
.njy-access__row { display: flex; align-items: flex-start; gap: 16px; }
.njy-access__row-icon {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.njy-access__row-label {
  font-family: var(--font-garamond);
  font-size: 11px;
  color: rgba(197,165,90,0.35);
  margin-bottom: 4px;
}
.njy-access__row-value {
  font-family: var(--font-gothic);
  font-size: 13px;
  color: rgba(245,240,232,0.55);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.njy-service-page section { padding: 80px 0; }
@media (min-width: 1024px) { .njy-service-page section { padding: 96px 0; } }

.njy-service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .njy-service-detail { grid-template-columns: 1fr 1fr; gap: 80px; }
  .njy-service-detail.reverse .njy-service-detail__img { order: -1; }
}
.njy-service-detail__num {
  font-family: var(--font-garamond);
  font-size: 64px;
  font-weight: 700;
  color: rgba(197,165,90,0.06);
  line-height: 1;
  margin-bottom: -16px;
}
.njy-service-detail__label {
  font-family: var(--font-garamond);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(197,165,90,0.5);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.njy-service-detail__title {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  margin-bottom: 8px;
}
.njy-service-detail__subtitle {
  font-family: var(--font-gothic);
  font-size: 13px;
  color: rgba(197,165,90,0.6);
  margin-bottom: 24px;
  font-weight: 300;
}
.njy-service-detail__body {
  font-family: var(--font-gothic);
  font-size: 13px;
  line-height: 2;
  color: rgba(245,240,232,0.55);
  margin-bottom: 24px;
  font-weight: 300;
}
.njy-service-detail__body p + p { margin-top: 16px; }
.njy-service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.njy-service-detail__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-gothic);
  font-size: 12px;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
}
.njy-service-detail__feature::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: rgba(197,165,90,0.4);
  flex-shrink: 0;
}
.njy-service-detail__img {
  position: relative;
  overflow: hidden;
}
.njy-service-detail__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
@media (min-width: 1024px) { .njy-service-detail__img img { height: 420px; } }
.njy-service-detail__img:hover img { transform: scale(1.03); }
.njy-service-detail__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,165,90,0.05), transparent);
  pointer-events: none;
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.njy-privacy-page__section { padding: 80px 0; }
@media (min-width: 1024px) { .njy-privacy-page__section { padding: 96px 0; } }

.njy-privacy-page__content {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px;
  border: 1px solid rgba(197,165,90,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
}
@media (min-width: 768px) {
  .njy-privacy-page__content {
    padding: 56px 48px;
  }
}

.njy-privacy-page__content h2,
.njy-privacy-page__content h3,
.njy-privacy-page__content h4 {
  font-family: var(--font-mincho);
  color: rgba(245,240,232,0.88);
  line-height: 1.7;
}
.njy-privacy-page__content h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(197,165,90,0.14);
}
.njy-privacy-page__content h2:first-child { margin-top: 0; }
.njy-privacy-page__content h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  margin: 36px 0 16px;
}
.njy-privacy-page__content h4 {
  font-size: 16px;
  margin: 28px 0 12px;
}
.njy-privacy-page__content p,
.njy-privacy-page__content li {
  font-family: var(--font-gothic);
  font-size: 14px;
  line-height: 2.1;
  color: rgba(245,240,232,0.62);
  font-weight: 300;
}
.njy-privacy-page__content p + p,
.njy-privacy-page__content ul + p,
.njy-privacy-page__content ol + p,
.njy-privacy-page__content p + ul,
.njy-privacy-page__content p + ol {
  margin-top: 16px;
}
.njy-privacy-page__content ul,
.njy-privacy-page__content ol {
  margin: 16px 0 0 1.4em;
}
.njy-privacy-page__content ul { list-style: disc; }
.njy-privacy-page__content ol { list-style: decimal; }
.njy-privacy-page__content a {
  color: var(--gold);
  text-decoration: underline;
}
/* ============================================================
   JOURNAL / NEWS ARCHIVE
   ============================================================ */
.njy-archive { padding: 80px 0; }
@media (min-width: 1024px) { .njy-archive { padding: 96px 0; } }

.njy-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .njy-archive__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .njy-archive__grid { grid-template-columns: repeat(3, 1fr); } }

.njy-article-card {
  display: block;
  background: var(--black3);
  border: 1px solid rgba(197,165,90,0.08);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}
.njy-article-card:hover {
  border-color: rgba(197,165,90,0.25);
  transform: translateY(-4px);
}
.njy-article-card__img-wrap { position: relative; overflow: hidden; }
.njy-article-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.njy-article-card:hover .njy-article-card__img { transform: scale(1.05); }
.njy-article-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.2);
  transition: background 0.4s;
}
.njy-article-card:hover .njy-article-card__img-overlay { background: rgba(10,10,10,0.1); }
.njy-article-card__body { padding: 24px; }
.njy-article-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.njy-article-card__cat {
  font-family: var(--font-garamond);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid rgba(197,165,90,0.3);
  padding: 3px 10px;
}
.njy-article-card__date {
  font-family: var(--font-garamond);
  font-size: 11px;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.05em;
}
.njy-article-card__title {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
  color: rgba(245,240,232,0.85);
  margin-bottom: 10px;
  line-height: 1.6;
}
.njy-article-card__excerpt {
  font-family: var(--font-gothic);
  font-size: 12px;
  color: rgba(245,240,232,0.45);
  line-height: 1.8;
  font-weight: 300;
}

/* News list style */
.njy-news-archive__list { border-top: 1px solid rgba(197,165,90,0.12); }
.njy-news-archive__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(197,165,90,0.08);
  transition: background 0.3s;
}
@media (min-width: 640px) {
  .njy-news-archive__item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.njy-news-archive__item:hover { background: rgba(197,165,90,0.02); }
.njy-news-archive__date {
  font-family: var(--font-garamond);
  font-size: 12px;
  color: rgba(245,240,232,0.3);
  flex-shrink: 0;
  width: 100px;
}
.njy-news-archive__cat {
  font-family: var(--font-gothic);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border: 1px solid;
  flex-shrink: 0;
  font-weight: 400;
}
.njy-news-archive__title {
  font-family: var(--font-gothic);
  font-size: 13px;
  color: rgba(245,240,232,0.65);
  flex: 1;
  line-height: 1.6;
  font-weight: 300;
  transition: color 0.3s;
}
.njy-news-archive__item:hover .njy-news-archive__title { color: var(--gold); }

/* Pagination */
.njy-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
}
.njy-pagination a,
.njy-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-family: var(--font-garamond);
  font-size: 13px;
  color: rgba(245,240,232,0.4);
  border: 1px solid rgba(197,165,90,0.1);
  transition: all 0.3s;
}
.njy-pagination a:hover,
.njy-pagination .current {
  color: var(--gold);
  border-color: var(--accent-green);
  background: rgba(197,165,90,0.05);
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.njy-single { padding: 80px 0; }
@media (min-width: 1024px) { .njy-single { padding: 96px 0; } }
.njy-single__inner { max-width: 800px; margin: 0 auto; }
.njy-single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.njy-single__cat {
  font-family: var(--font-garamond);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid rgba(197,165,90,0.3);
  padding: 4px 12px;
  text-transform: uppercase;
}
.njy-single__date {
  font-family: var(--font-garamond);
  font-size: 12px;
  color: rgba(245,240,232,0.3);
}
.njy-single__title {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 40px;
}
.njy-single__thumb {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 48px;
}
.njy-single__content {
  font-family: var(--font-gothic);
  font-size: 15px;
  line-height: 2.2;
  color: rgba(245,240,232,0.65);
  font-weight: 300;
}
.njy-single__content h2 {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 600;
  color: rgba(245,240,232,0.85);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(197,165,90,0.15);
}
.njy-single__content h3 {
  font-family: var(--font-mincho);
  font-size: 17px;
  font-weight: 600;
  color: rgba(245,240,232,0.8);
  margin: 36px 0 16px;
}
.njy-single__content p { margin-bottom: 24px; }
.njy-single__content a { color: var(--gold); text-decoration: underline; }
.njy-single__content img { width: 100%; margin: 32px 0; }
.njy-single__back {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(197,165,90,0.1);
}
.njy-single__back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-gothic);
  font-size: 13px;
  color: rgba(197,165,90,0.6);
  transition: color 0.3s;
}
.njy-single__back a:hover { color: var(--accent-green); }
.njy-single__back a::before { content: '›'; }

/* ============================================================
   WORKS PAGE
   ============================================================ */
.njy-works-page { padding: 80px 0; }
@media (min-width: 1024px) { .njy-works-page { padding: 96px 0; } }
.njy-works-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .njy-works-page__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .njy-works-page__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.njy-contact { padding: 80px 0; }
@media (min-width: 1024px) { .njy-contact { padding: 96px 0; } }
.njy-contact__inner { max-width: 640px; margin: 0 auto; }
.njy-contact__form { display: flex; flex-direction: column; gap: 24px; }
.njy-contact__field { display: flex; flex-direction: column; gap: 8px; }
.njy-contact__label {
  font-family: var(--font-gothic);
  font-size: 12px;
  color: rgba(197,165,90,0.6);
  letter-spacing: 0.05em;
}
.njy-contact__input,
.njy-contact__textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(197,165,90,0.15);
  color: var(--cream);
  font-family: var(--font-gothic);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
  font-weight: 300;
}
.njy-contact__input:focus,
.njy-contact__textarea:focus { border-color: var(--accent-green); }
.njy-contact__textarea { min-height: 160px; resize: vertical; }
.njy-contact__submit {
  padding: 16px 48px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-gothic);
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
}
.njy-contact__submit:hover { background: var(--gold-light); }
.njy-contact-page__intro {
  margin-bottom: 32px;
  text-align: center;
}
.njy-contact-page__intro p {
  color: rgba(245,240,232,0.72);
  line-height: 1.9;
}
.njy-contact-page .wpcf7 {
  width: 100%;
}
.njy-contact-page .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.njy-contact-page .wpcf7-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-gothic);
  font-size: 12px;
  color: rgba(197,165,90,0.6);
  letter-spacing: 0.05em;
}
.njy-contact-page .wpcf7-form-control-wrap {
  display: block;
}
.njy-contact-page .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.njy-contact-page .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.njy-contact-page .wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(197,165,90,0.15);
  background: rgba(255,255,255,0.03);
  color: rgba(245,240,232,0.82);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.njy-contact-page .wpcf7-radio .wpcf7-list-item label:hover {
  border-color: rgba(197,165,90,0.35);
  background: rgba(197,165,90,0.08);
}
.njy-contact-page .wpcf7-radio input[type="radio"] {
  margin: 0;
  accent-color: var(--gold);
}
.njy-contact-page .wpcf7-text,
.njy-contact-page .wpcf7-email,
.njy-contact-page .wpcf7-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(197,165,90,0.15);
  color: var(--cream);
  font-family: var(--font-gothic);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
  font-weight: 300;
}
.njy-contact-page .wpcf7-text:focus,
.njy-contact-page .wpcf7-email:focus,
.njy-contact-page .wpcf7-textarea:focus {
  border-color: var(--accent-green);
}
.njy-contact-page .wpcf7-textarea {
  min-height: 160px;
  resize: vertical;
}
.njy-contact-page .wpcf7-submit {
  padding: 16px 48px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-gothic);
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.njy-contact-page .wpcf7-submit:hover {
  background: var(--gold-light);
}
.njy-contact-page .wpcf7-spinner {
  margin: 12px 0 0 12px;
}
.njy-contact-page .wpcf7-not-valid-tip,
.njy-contact-page .wpcf7-response-output {
  font-size: 12px;
  line-height: 1.8;
}

@media (max-width: 639px) {
  .njy-contact-page .wpcf7-radio {
    flex-direction: column;
    gap: 10px;
  }
  .njy-contact-page .wpcf7-radio .wpcf7-list-item label {
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 639px) {
  .njy-hide-sp { display: none !important; }
}
@media (min-width: 640px) {
  .njy-hide-pc { display: none !important; }
}


































