/* ==========================================================================
   HOME PAGE STYLESHEET (Integrated)
   ========================================================================== */


/* ==========================================================================
   Brand Hero Section - 「さらなる高みへ (Aim Higher)」
   フルブリード背景画像 × エディトリアル・ファーストビュー
   ========================================================================== */

.brand-hero {
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-height, 90px) + 36px) 0 calc(100px + 3vw);
  box-sizing: border-box;
  overflow: hidden;
  background-color: #ffffff;
}

/* --- フルブリード背景画像 & オーバーレイ --- */
.brand-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.brand-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.02);
  filter: contrast(1.02) brightness(0.98);
  animation: heroSubtleZoom 20s ease-out infinite alternate;
}

@keyframes heroSubtleZoom {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.07);
  }
}

/* 高品位グラデーションオーバーレイ（左側テキストエリアの高い可読性 × 右側写真の開放感） */
.brand-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.94) 36%,
    rgba(255, 255, 255, 0.82) 52%,
    rgba(255, 255, 255, 0.45) 75%,
    rgba(255, 255, 255, 0.15) 100%
  );
  z-index: 1;
}

/* 下部セクションへの自然なグラデーションフェード */
.brand-hero__bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

/* 動的な光彩エフェクト背景 */
.brand-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.14) 0%, rgba(0, 191, 255, 0.06) 50%, transparent 70%);
  top: 15%;
  left: 15%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 2;
}

/* --- メインコンテナ --- */
.brand-hero__inner {
  max-width: var(--layout-max-width, 1480px);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-gutter, 16px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
}

/* --- コンテンツ領域 --- */
.brand-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  position: relative;
  z-index: 4;
}

.brand-hero__en-lead {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--color-secondary, #0284c7);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.brand-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-ink, #111823);
  margin: 0 0 24px;
  letter-spacing: 0.04em;
  position: relative;
}

.brand-hero__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold, #c5a880), var(--primary-color, #00bfff));
  border-radius: 2px;
  margin-top: 16px;
}

.brand-hero__lead {
  font-size: clamp(16.5px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.75;
  color: #1e293b;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.brand-hero__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  color: #1e293b;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  max-width: 640px;
}

.brand-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* プライマリーボタン */
.brand-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 36px;
  background: #ffffff;
  color: var(--color-ink, #111823) !important;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 2px;
  border: 1px solid rgba(17, 24, 35, 0.4);
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(17, 24, 35, 0.06);
}

.brand-hero__btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--color-header-navy, #07172b);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.brand-hero__btn-primary span {
  position: relative;
  z-index: 2;
  color: var(--color-ink, #111823) !important;
  transition: color 0.3s ease;
}

.brand-hero__btn-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.brand-hero__btn-arrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.brand-hero__btn-primary:hover {
  border-color: var(--color-header-navy, #07172b);
  box-shadow: 0 8px 24px rgba(7, 23, 43, 0.15);
}

.brand-hero__btn-primary:hover::before {
  width: 100%;
}

.brand-hero__btn-primary:hover span {
  color: #ffffff !important;
}

.brand-hero__btn-primary:hover .brand-hero__btn-arrow {
  transform: translate(4px, -1px);
}

.brand-hero__btn-primary:active {
  color: #ffffff !important;
}

/* 控えめで品格のあるフィロソフィーバッジ（ボタンと誤認しないタグ表現） */
.brand-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 6px rgba(17, 24, 39, 0.03);
}

.brand-hero__badge-label {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--color-secondary, #0284c7);
  text-transform: uppercase;
}

.brand-hero__badge-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--color-gold, #c5a880);
}

.brand-hero__badge-text {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-ink, #111823);
  letter-spacing: 0.02em;
}

/* --- レスポンシブ対応（幅狭時も画像を全面に出し、テキストを美しく重ねるデザイン） --- */
@media (max-width: 1024px) {
  .brand-hero {
    min-height: auto;
    padding: calc(var(--header-height, 64px) + 32px) 0 calc(70px + 3vw);
    align-items: center;
  }

  .brand-hero__bg-img {
    object-position: center 25%;
  }

  .brand-hero__bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.15) 20%,
      rgba(255, 255, 255, 0.55) 45%,
      rgba(255, 255, 255, 0.88) 72%,
      rgba(255, 255, 255, 0.98) 100%
    );
  }

  .brand-hero__content {
    max-width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand-hero__title {
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.95), 0 0 6px rgba(255, 255, 255, 0.85);
  }

  .brand-hero__lead {
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95);
  }

  .brand-hero__desc {
    color: #1e293b;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95);
  }
}

@media (max-width: 600px) {
  .brand-hero {
    min-height: auto;
    padding: calc(var(--header-height, 58px) + 24px) 0 65px;
  }

  .brand-hero__bg-img {
    object-position: center 20%;
  }

  .brand-hero__bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.20) 22%,
      rgba(255, 255, 255, 0.60) 48%,
      rgba(255, 255, 255, 0.92) 74%,
      rgba(255, 255, 255, 0.98) 100%
    );
  }

  .brand-hero__en-lead {
    font-size: 12px;
    letter-spacing: 3px;
    text-shadow: 0 1px 6px rgba(255, 255, 255, 0.9);
  }

  .brand-hero__title {
    font-size: clamp(32px, 8.5vw, 42px);
    margin-bottom: 18px;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.95), 0 0 6px rgba(255, 255, 255, 0.9);
  }

  .brand-hero__title::after {
    margin-top: 14px;
    width: 56px;
  }

  .brand-hero__lead {
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 16px;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95);
  }

  .brand-hero__desc {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    color: #111823;
    margin-bottom: 28px;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95);
  }

  .brand-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 14px;
  }

  .brand-hero__btn-primary {
    width: 100%;
    justify-content: center;
    padding: 18px 20px;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.1);
  }
}


/* ==========================================================================
   Trust & History Section - 「40年の信頼」
   PC標準フォントを活用した質実剛健・重厚感デザイン
   ========================================================================== */

.trust-history {
  position: relative;
  width: 100%;
  background-color: #104887;
  color: #ffffff;
  padding: calc(90px + 3vw) 0 calc(100px + 3vw);
  box-sizing: border-box;
  overflow: hidden;
  clip-path: polygon(0 3.5vw, 100% 0, 100% calc(100% - 3.5vw), 0 100%);
  margin-top: -3.5vw;
  margin-bottom: -3.5vw;
  z-index: 2;
  font-family: var(--font-sans);
}

/* 微細グリッド（非表示） */
.trust-history__bg-grid {
  display: none;
}

.trust-history__inner {
  max-width: var(--layout-max-width, 1480px);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-gutter, 16px);
  position: relative;
  z-index: 2;
}

/* --- 2カラムグリッド構造 --- */
.trust-history__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

/* --- 左側：写真（丸く切り抜かれた円形スロット表現） --- */
.trust-history__figure {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-history__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-top: 1.5px solid rgba(0, 10, 25, 0.35);
  border-left: 1.5px solid rgba(0, 10, 25, 0.28);
  background-color: #06152b;
  box-shadow: 
    inset 0 3px 8px rgba(0, 6, 18, 0.25),
    inset 0 1px 3px rgba(0, 0, 0, 0.2),
    0 2px 12px rgba(0, 0, 0, 0.15);
}

/* 内側に極めて薄く落ちる円形インナーシャドウ */
.trust-history__image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  box-shadow: 
    inset 0 3px 10px rgba(2, 8, 20, 0.25),
    inset 0 -3px 8px rgba(2, 8, 20, 0.12);
  transition: opacity 0.6s ease;
}

.trust-history__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1) brightness(1);
  opacity: 1;
  transition: filter 0.7s ease, transform 0.7s ease;
}

.trust-history__figure:hover .trust-history__image {
  filter: contrast(1.02) brightness(1.02);
  transform: scale(1.01);
}

.trust-history__caption {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 8px;
}

.trust-history__caption-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
}

/* --- 右側：記事コンテンツ（PC標準フォント・重厚感ある組版） --- */
.trust-history__article {
  display: flex;
  flex-direction: column;
}

.trust-history__lead-block {
  margin-bottom: 24px;
}

.trust-history__en-title {
  display: block;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-gold, #c5a880);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.trust-history__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.05em;
}

.trust-history__lead-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #f1f5f9;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.trust-history__body-text {
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

/* スペックリスト（エディトリアル罫線区切り） */
.trust-history__specs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 0 36px;
}

.trust-history__spec-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  align-items: baseline;
}

.trust-history__spec-key {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-gold, #c5a880);
}

.trust-history__spec-val {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

/* ミニマル・メタルラインリンクボタン */
.trust-history__action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.trust-history__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  background: transparent;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(197, 168, 128, 0.6);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.trust-history__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--color-gold, #c5a880);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.trust-history__link span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.trust-history__link-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.trust-history__link-arrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.3s ease;
}

.trust-history__link:hover {
  border-color: var(--color-gold, #c5a880);
}

.trust-history__link:hover::before {
  width: 100%;
}

.trust-history__link:hover span {
  color: #104887 !important;
}

.trust-history__link:hover .trust-history__link-arrow {
  transform: translate(4px, -1px);
}

/* --- レスポンシブ対応 --- */
@media (max-width: 1024px) {
  .trust-history {
    padding: calc(60px + 3vw) 0 calc(70px + 3vw);
  }

  .trust-history__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-history__figure {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .trust-history {
    clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
    margin-top: -18px;
    margin-bottom: -18px;
    padding: 55px 0 65px;
  }

  .trust-history__image-wrapper {
    max-width: 280px;
  }

  .trust-history__title {
    font-size: 26px;
  }

  .trust-history__lead-text {
    font-size: 14.5px;
  }

  .trust-history__body-text {
    font-size: 13.5px;
    margin-bottom: 24px;
  }

  .trust-history__spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  .trust-history__link {
    width: 100%;
    justify-content: center;
    padding: 18px 20px;
  }
}


/* ==========================================================================
   Top WorkStyle Section - 「働き方と社風」
   鮮やかなグリーン背景 × 大胆な波線ディバイダー × 組版
   ========================================================================== */

.top-workstyle {
  position: relative;
  width: 100%;
  background: transparent;
  color: #ffffff;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
  border: none !important;
  font-family: var(--font-sans);
}

/* 緑色の波線ディバイダー（余計な直線枠が一切出ない完全シームレス構造） */
.top-workstyle__wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  display: block;
}

.top-workstyle__wave svg {
  display: block;
  width: 100%;
  height: 85px;
  border: none !important;
  outline: none !important;
}

.top-workstyle__main-bg {
  width: 100%;
  background-color: #14724b;
  padding: 30px 0 40px;
  margin-top: -1px;
  margin-bottom: -1px;
  position: relative;
  z-index: 2;
}

.top-workstyle__inner {
  max-width: var(--layout-max-width, 1480px);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-gutter, 16px);
  position: relative;
  z-index: 2;
}

/* 2カラムグリッド構造（左：写真、右：テキスト） */
.top-workstyle__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

/* --- 左側：写真（ゴールド色のポップな連なるフレーム構造） --- */
.top-workstyle__figure {
  margin: 0;
  position: relative;
  padding: 18px 18px 0 0;
}

/* ポップな背面のゴールドオフセット破線フレーム（第1層） */
.top-workstyle__figure::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: calc(100% - 18px);
  height: calc(100% - 40px);
  border: 2px dashed var(--color-gold, #c5a880);
  border-radius: 20px;
  background: rgba(197, 168, 128, 0.05);
  transform: rotate(2deg);
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ポップな背面のゴールドオフセット破線フレーム（第2層） */
.top-workstyle__figure::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: calc(100% - 18px);
  height: calc(100% - 40px);
  border: 2px dashed var(--color-gold, #c5a880);
  border-radius: 22px;
  background: transparent;
  transform: rotate(4.2deg);
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ポップな背面のゴールドオフセット破線フレーム（第3層） */
.top-workstyle__caption::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: calc(100% - 18px);
  height: calc(100% - 40px);
  border: 1.5px dashed var(--color-gold, #c5a880);
  border-radius: 24px;
  background: transparent;
  transform: rotate(6.5deg);
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.top-workstyle__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  border: 3.5px solid var(--color-gold, #c5a880);
  background-color: #0d4e33;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.top-workstyle__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-workstyle__figure:hover .top-workstyle__image-wrapper {
  transform: translate(-4px, -4px);
}

.top-workstyle__figure:hover::before {
  transform: rotate(3deg) translate(2px, -2px);
}

.top-workstyle__figure:hover::after {
  transform: rotate(6deg) translate(4px, -4px);
}

.top-workstyle__figure:hover .top-workstyle__caption::before {
  transform: rotate(9deg) translate(6px, -6px);
}

.top-workstyle__figure:hover .top-workstyle__image {
  transform: scale(1.04);
}

.top-workstyle__caption {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 8px;
}

.top-workstyle__caption-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* --- 右側：記事コンテンツ --- */
.top-workstyle__article {
  display: flex;
  flex-direction: column;
}

.top-workstyle__lead-block {
  margin-bottom: 24px;
}

.top-workstyle__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.05em;
}

.top-workstyle__lead-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #f1f5f9;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.top-workstyle__body-text {
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

/* スペックリスト（エディトリアル罫線区切り） */
.top-workstyle__specs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 0 36px;
}

.top-workstyle__spec-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: baseline;
}

.top-workstyle__spec-key {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-gold, #c5a880);
}

.top-workstyle__spec-val {
  margin: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

/* ボタン（右端配置） */
.top-workstyle__action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.top-workstyle__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  background: transparent;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(197, 168, 128, 0.6);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.top-workstyle__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--color-gold, #c5a880);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.top-workstyle__link span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.top-workstyle__link-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.top-workstyle__link-arrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.3s ease;
}

.top-workstyle__link:hover {
  border-color: var(--color-gold, #c5a880);
}

.top-workstyle__link:hover::before {
  width: 100%;
}

.top-workstyle__link:hover span {
  color: #14724b !important;
}

.top-workstyle__link:hover .top-workstyle__link-arrow {
  transform: translate(4px, -1px);
}

/* --- レスポンシブ対応 --- */
@media (max-width: 1024px) {
  .top-workstyle__wave svg {
    height: 64px;
  }

  .top-workstyle__main-bg {
    padding: 20px 0 30px;
  }

  .top-workstyle__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .top-workstyle__figure {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .top-workstyle__wave svg {
    height: 40px;
  }

  .top-workstyle__main-bg {
    padding: 15px 0 20px;
  }

  .top-workstyle__title {
    font-size: 24px;
  }

  .top-workstyle__lead-text {
    font-size: 14.5px;
  }

  .top-workstyle__body-text {
    font-size: 13.5px;
    margin-bottom: 24px;
  }

  .top-workstyle__spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  .top-workstyle__link {
    width: 100%;
    justify-content: center;
    padding: 18px 20px;
  }
}


/* ==========================================================================
   Top Recruit Section - 「採用情報」
   もくもく雲シェイプ × エディトリアル組版
   ========================================================================== */

.top-recruit {
  position: relative;
  width: 100%;
  background-color: var(--color-paper, #ffffff);
  color: #1e293b;
  padding: 75px 0 85px;
  box-sizing: border-box;
  overflow: hidden;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  font-family: var(--font-sans);
}

/* もくもく雲のラッパーコンテナ */
.top-recruit__cloud-wrap {
  position: relative;
  max-width: var(--layout-max-width, 1480px);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-gutter, 16px);
  box-sizing: border-box;
}

/* もくもくした雲の背景シェイプ（一回り大きく広げたドロップシャドウ付き雲） */
.top-recruit__cloud-bg {
  position: absolute;
  top: -45px;
  left: -50px;
  right: -50px;
  bottom: -45px;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 18px 40px rgba(197, 168, 128, 0.25)) drop-shadow(0 6px 16px rgba(15, 23, 42, 0.05));
}

.top-recruit__cloud-bg svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* 雲の上に乗るコンテンツコンテナ（十分な内側余白で雲の中に完全収納） */
.top-recruit__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 56px 72px;
  box-sizing: border-box;
}

/* 2カラムグリッド構造（左：テキスト、右：モノクロイラスト） */
.top-recruit__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

/* --- 左側：記事コンテンツ --- */
.top-recruit__article {
  display: flex;
  flex-direction: column;
}

.top-recruit__lead-block {
  margin-bottom: 12px;
}

.top-recruit__en-title {
  display: block;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-gold-dark, #9e7d47);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.top-recruit__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  margin: 0;
  letter-spacing: 0.04em;
}

.top-recruit__lead-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.top-recruit__body-text {
  font-size: 13.5px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

/* 特徴スペックリスト */
.top-recruit__specs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin: 0 0 20px;
}

.top-recruit__spec-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 8px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  align-items: baseline;
}

.top-recruit__spec-key {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-gold-dark, #9e7d47);
}

.top-recruit__spec-val {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
  letter-spacing: 0.02em;
}

/* ボタン（左寄せ配置） */
.top-recruit__action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.top-recruit__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 36px;
  background: transparent;
  color: #0f172a !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(14, 28, 44, 0.4);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.top-recruit__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #0f172a;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.top-recruit__link span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.top-recruit__link-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.top-recruit__link-arrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-recruit__link:hover {
  border-color: #0f172a;
}

.top-recruit__link:hover::before {
  width: 100%;
}

.top-recruit__link:hover span {
  color: #ffffff !important;
}

.top-recruit__link:hover .top-recruit__link-arrow {
  transform: translate(4px, -1px);
}

/* --- 右側：写真・イラストフレーム --- */
.top-recruit__figure {
  margin: 0;
  position: relative;
}

.top-recruit__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: none;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.top-recruit__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-recruit__figure:hover .top-recruit__image {
  transform: scale(1.025);
}

.top-recruit__caption {
  margin-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding-top: 8px;
}

.top-recruit__caption-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #64748b;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 1024px) {
  .top-recruit {
    padding: 95px 0 105px;
  }

  .top-recruit__cloud-bg {
    top: -80px;
    left: -35px;
    right: -35px;
    bottom: -90px;
  }

  .top-recruit__inner {
    padding: 60px 40px 68px;
  }

  .top-recruit__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .top-recruit__figure {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    order: -1;
  }
}

@media (max-width: 600px) {
  .top-recruit {
    padding: 85px 0 95px;
  }

  .top-recruit__cloud-bg {
    top: -75px;
    left: -20px;
    right: -20px;
    bottom: -85px;
  }

  .top-recruit__inner {
    padding: 52px 20px 60px;
  }

  .top-recruit__figure {
    max-width: 100%;
  }

  .top-recruit__title {
    font-size: 20px;
  }

  .top-recruit__lead-text {
    font-size: 13.5px;
  }

  .top-recruit__body-text {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .top-recruit__spec-row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 0;
  }

  .top-recruit__link {
    width: 100%;
    justify-content: center;
    padding: 18px 20px;
  }
}


/* ==========================================================================
   Information Section - 「お知らせ」
   中央寄せ大見出し×純粋な黒文字×INFORMATION透かし背景
   ========================================================================== */

.newspaper-news {
  position: relative;
  width: 100%;
  background-color: var(--color-paper, #ffffff);
  color: #1e293b;
  padding: 85px 0 120px;
  box-sizing: border-box;
  overflow: hidden;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  font-family: var(--font-sans);
}

/* 背景透かしタイポグラフィ (INFORMATION) - 画面幅が狭い時も左右が画面幅にフィット */
.newspaper-news__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: clamp(32px, 12.8vw, 200px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 0 12px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(197, 168, 128, 0.18);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  opacity: 0.8;
}

.newspaper-news__inner {
  max-width: var(--layout-max-width, 1480px);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-gutter, 16px);
  position: relative;
  z-index: 2;
}

/* 中央見出しヘッダー（効果なし・純粋な黒文字・サイズ大） */
.newspaper-news__header {
  text-align: center;
  margin-bottom: 56px;
}

.newspaper-news__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin: 0 auto;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  text-align: center;
}

/* --- 記事リスト（中央幅配置） --- */
.newspaper-news__articles {
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.newspaper-news__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #1e293b;
  margin: 0 0 36px;
  list-style: none;
  padding: 0;
}

.newspaper-news__item {
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  margin: 0;
}

.newspaper-news__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  position: relative;
}

.newspaper-news__link:hover {
  background-color: rgba(255, 255, 255, 0.9);
  padding-left: 22px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.newspaper-news__date {
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-gold-dark, #9e7d47);
  flex-shrink: 0;
  width: 110px;
}

.newspaper-news__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 2px;
  background-color: #e11d48;
  color: #ffffff;
  text-transform: uppercase;
  flex-shrink: 0;
}

.newspaper-news__item-title {
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.6;
  color: #1e293b;
  transition: color 0.2s ease;
  margin: 0;
  letter-spacing: 0.02em;
  flex-grow: 1;
}

.newspaper-news__link:hover .newspaper-news__item-title {
  color: var(--color-gold-dark, #9e7d47);
}

.newspaper-news__arrow {
  font-family: var(--font-sans);
  font-size: 16px;
  color: #94a3b8;
  transition: transform 0.25s ease, color 0.25s ease;
  text-align: right;
}

.newspaper-news__link:hover .newspaper-news__arrow {
  transform: translateX(4px);
  color: var(--color-gold-dark, #9e7d47);
}

/* ボタン（右寄せ配置） */
.newspaper-news__action {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.newspaper-news__more-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px;
  background: transparent;
  color: #0f172a !important;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(14, 28, 44, 0.4);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.newspaper-news__more-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #0f172a;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.newspaper-news__more-link span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.newspaper-news__more-link:hover {
  border-color: #0f172a;
}

.newspaper-news__more-link:hover::before {
  width: 100%;
}

.newspaper-news__more-link:hover span {
  color: #ffffff !important;
}

.newspaper-news__more-arrow {
  font-family: var(--font-sans);
  font-size: 15px;
  transition: transform 0.3s ease;
}

.newspaper-news__more-link:hover .newspaper-news__more-arrow {
  transform: translateX(4px);
}

/* --- レスポンシブ対応 --- */
@media (max-width: 1024px) {
  .newspaper-news {
    padding: 60px 0 80px;
  }

  .newspaper-news__header {
    margin-bottom: 40px;
  }

  .newspaper-news__link {
    gap: 14px;
    padding: 18px 8px;
  }
}

@media (max-width: 600px) {
  .newspaper-news {
    padding: 44px 0 60px;
  }

  .newspaper-news__watermark {
    letter-spacing: 0.04em;
    -webkit-text-stroke: 1.2px rgba(197, 168, 128, 0.2);
    padding: 0 8px;
  }

  .newspaper-news__title {
    font-size: 32px;
  }

  .newspaper-news__link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0;
  }

  .newspaper-news__link:hover {
    padding-left: 0;
    background-color: transparent;
  }

  .newspaper-news__arrow {
    display: none;
  }

  .newspaper-news__more-link {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}
