@charset "UTF-8";
/**
 * _color.scss - サイト共通カラー（一元管理）
 * 直感的な名前 + 類似色は1色に統一
 *
 * 使用: @import '../common/color'; または @use '../common/color' as *;
 */
/*===== メインカラー（ブランド・アクセント） =====*/
/*===== 白・黒・グレー =====*/
/*===== 背景 =====*/
/*===== 状態 =====*/
/* ホバー等 */
/*===== その他 =====*/
/**
 * _animation.scss - トップページ共通アニメーション（MV・MESSAGE）
 * keyframes は共通名称で MV / MESSAGE の両方で使用
 */
/* ========================================
   共通 keyframes（letter 系）
   - letterRise: すっと立ち上がる
   - letterFadeUp: フェード＋軽いグリッチ感で出現
   - letterBoom: 先頭文字用の強調（ドロップシャドウ付き）
======================================== */
@keyframes letterRise {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  40% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes letterFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  20% {
    opacity: 0.7;
    transform: translateY(-6px) skewX(3deg);
  }
  40% {
    opacity: 1;
    transform: translateY(4px) skewX(-2deg);
  }
  70% {
    opacity: 1;
    transform: translateY(0) skewX(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes letterBoom {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.6);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  40% {
    opacity: 1;
    transform: translateY(-4px) scale(1.15);
    filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.9));
  }
  70% {
    opacity: 1;
    transform: translateY(0) scale(0.96);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.4));
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
}
/* ========================================
   共通 keyframes（fade in 系）
======================================== */
@keyframes jobItemFadeIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes messageImgReveal {
  0% {
    opacity: 0;
    filter: blur(12px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
/* ========================================
   MV - KEEP THINKING
======================================== */
#top_mv h2 svg [id^="KEEP-"],
#top_mv h2 svg [id^="THINKING-"] {
  opacity: 0;
  transform: translateY(40px);
}

body.is-loaded #top_mv h2 svg [id^="KEEP-"] {
  animation: letterRise 0.7s ease-out forwards;
}
body.is-loaded #top_mv h2 svg [id^="THINKING-"] {
  animation: letterFadeUp 0.8s ease-out forwards;
}
body.is-loaded #top_mv h2 svg #KEEP-K {
  animation-delay: 0.00s;
}
body.is-loaded #top_mv h2 svg #KEEP-E1 {
  animation-delay: 0.08s;
}
body.is-loaded #top_mv h2 svg #KEEP-E2 {
  animation-delay: 0.16s;
}
body.is-loaded #top_mv h2 svg #KEEP-P {
  animation-delay: 0.24s;
}
body.is-loaded #top_mv h2 svg #THINKING-T {
  animation-delay: 1.10s;
}
body.is-loaded #top_mv h2 svg #THINKING-H {
  animation-delay: 1.18s;
}
body.is-loaded #top_mv h2 svg #THINKING-I1 {
  animation-delay: 1.26s;
}
body.is-loaded #top_mv h2 svg #THINKING-N1 {
  animation-delay: 1.34s;
}
body.is-loaded #top_mv h2 svg #THINKING-K {
  animation-delay: 1.42s;
}
body.is-loaded #top_mv h2 svg #THINKING-I2 {
  animation-delay: 1.50s;
}
body.is-loaded #top_mv h2 svg #THINKING-N2 {
  animation-delay: 1.58s;
}
body.is-loaded #top_mv h2 svg #THINKING-G {
  animation-delay: 1.66s;
}
body.is-loaded #top_mv h2 svg #KEEP-K {
  animation: letterBoom 0.9s ease-out forwards;
  animation-delay: 0s;
}

/* ========================================
   MV - コピー
   KEEP THINKING 終了後（THINKING-G 1.66s + 0.8s ≒ 2.5s）から開始
   .copy01 = 1行目キーワード「"変化"」
   .copy02 = 2行目キーワード「"覚悟"」
   .copy01-body / .copy02-body = 残りテキスト
======================================== */
#top_mv p svg .copy01,
#top_mv p svg .copy01-body,
#top_mv p svg .copy02,
#top_mv p svg .copy02-body {
  opacity: 0;
  transform: translateY(24px);
}

body.is-loaded #top_mv p svg .copy01,
body.is-loaded #top_mv p svg .copy02 {
  animation: letterBoom 0.85s ease-out forwards;
  animation-delay: 1.8s;
}

body.is-loaded #top_mv p svg .copy01-body,
body.is-loaded #top_mv p svg .copy02-body {
  animation: letterFadeUp 0.7s ease-out forwards;
  animation-delay: 1.95s;
}

/* ========================================
   MESSAGE - 見出し（1文字ずつ）
   先頭の M を letterBoom、それ以外を letterFadeUp で段階表示
======================================== */
#top_message h2 svg [id^="MESSAGE-"] {
  opacity: 0;
  transform: translateY(24px);
}

/* スクロールで MESSAGE セクションが表示されたら発火（top.js の Intersection Observer で .is-inview を付与） */
#top_message.is-inview h2 {
  /* 縦書きの読み順で M → E → S → S → A → G → E */
}
#top_message.is-inview h2 svg [id^="MESSAGE-"] {
  animation: letterFadeUp 0.7s ease-out forwards;
}
#top_message.is-inview h2 svg #MESSAGE-M {
  animation-delay: 0s;
  animation: letterBoom 0.85s ease-out forwards;
}
#top_message.is-inview h2 svg #MESSAGE-E1 {
  animation-delay: 0.10s;
}
#top_message.is-inview h2 svg #MESSAGE-S1 {
  animation-delay: 0.18s;
}
#top_message.is-inview h2 svg #MESSAGE-S2 {
  animation-delay: 0.26s;
}
#top_message.is-inview h2 svg #MESSAGE-A {
  animation-delay: 0.34s;
}
#top_message.is-inview h2 svg #MESSAGE-G {
  animation-delay: 0.42s;
}
#top_message.is-inview h2 svg #MESSAGE-E2 {
  animation-delay: 0.50s;
}

@media (max-width: 768px) {
  #top_message.is-inview h2 {
    /* SP ではセクション発火が早いぶん、見出し SVG の開始を少し遅らせて画面内でアニメが見えるように調整 */
  }
  #top_message.is-inview h2 svg #MESSAGE-M {
    animation-delay: 0.35s;
    animation: letterBoom 0.85s ease-out forwards;
  }
  #top_message.is-inview h2 svg #MESSAGE-E1 {
    animation-delay: 0.45s;
  }
  #top_message.is-inview h2 svg #MESSAGE-S1 {
    animation-delay: 0.53s;
  }
  #top_message.is-inview h2 svg #MESSAGE-S2 {
    animation-delay: 0.61s;
  }
  #top_message.is-inview h2 svg #MESSAGE-A {
    animation-delay: 0.69s;
  }
  #top_message.is-inview h2 svg #MESSAGE-G {
    animation-delay: 0.77s;
  }
  #top_message.is-inview h2 svg #MESSAGE-E2 {
    animation-delay: 0.85s;
  }
}
/* ========================================
   MESSAGE - テキスト画像（ブラー＋フェードイン）
======================================== */
#top_message p picture img {
  opacity: 0;
  filter: blur(12px);
}

/* PC：セクション全体の is-inview をトリガーにする */
@media (min-width: 769px) {
  #top_message.is-inview p picture img {
    animation: messageImgReveal 1s ease-out forwards;
    animation-delay: 0.6s;
  }
}
/* SP：テキスト用の専用クラス is-text-inview で制御 */
@media (max-width: 768px) {
  #top_message.is-text-inview p picture img {
    animation: messageImgReveal 1s ease-out forwards;
    animation-delay: 0s;
  }
}
/* ========================================
   JOBS - 見出し SVG（1文字ずつ）
======================================== */
#top_jobs svg [id^="JOBS-"] {
  opacity: 0;
  transform: translateY(24px);
}

/* ========================================
   JOBS - 職種カード（順番フェードイン）
   枠線は出しっぱなしにして、中身（a）だけ順番にフェードイン
======================================== */
#top_jobs .inner ol li > a {
  opacity: 0;
  transform: translateY(16px);
}

#top_jobs.is-inview {
  /* 読み順に合わせて J → O → B → S の順で表示（J だけ letterBoom） */
}
#top_jobs.is-inview svg [id^="JOBS-"] {
  animation: letterFadeUp 0.7s ease-out forwards;
}
#top_jobs.is-inview svg #JOBS-J {
  animation-delay: 0s;
  animation: letterBoom 0.85s ease-out forwards;
}
#top_jobs.is-inview svg #JOBS-O {
  animation-delay: 0.10s;
}
#top_jobs.is-inview svg #JOBS-B {
  animation-delay: 0.18s;
}
#top_jobs.is-inview svg #JOBS-S {
  animation-delay: 0.26s;
}

/* PC：職種カードはセクション is-inview で一括・順番フェードイン */
@media (min-width: 769px) {
  #top_jobs.is-inview .inner ol li > a {
    animation: jobItemFadeIn 0.55s ease-out forwards;
  }
  #top_jobs.is-inview .inner ol li:nth-child(1) > a {
    animation-delay: 0.5s;
  }
  #top_jobs.is-inview .inner ol li:nth-child(2) > a {
    animation-delay: 0.66s;
  }
  #top_jobs.is-inview .inner ol li:nth-child(3) > a {
    animation-delay: 0.82s;
  }
  #top_jobs.is-inview .inner ol li:nth-child(4) > a {
    animation-delay: 0.98s;
  }
  #top_jobs.is-inview .inner ol li:nth-child(5) > a {
    animation-delay: 1.14s;
  }
  #top_jobs.is-inview .inner ol li:nth-child(6) > a {
    animation-delay: 1.3s;
  }
  #top_jobs.is-inview .inner ol li:nth-child(7) > a {
    animation-delay: 1.46s;
  }
  #top_jobs.is-inview .inner ol li:nth-child(8) > a {
    animation-delay: 1.62s;
  }
}
/* SP：各カードがビューポート中腹に来たタイミングで個別にフェードイン（JS で li に is-inview 付与） */
@media (max-width: 768px) {
  #top_jobs .inner ol li.is-inview > a {
    animation: jobItemFadeIn 0.55s ease-out forwards;
    animation-delay: 0s;
  }
}
/* ========================================
   IDOMedia - SVG（パス単位で順番にフェードアップ）
======================================== */
.top_media .top_media_idomedia path {
  opacity: 0;
  transform: translateY(24px);
}

/* ========================================
   IDOMedia - feature/slider（最初の4件を順番フェードイン）
   ※ボーダー欠け対策のため、スライドは li ではなく中身（a）をアニメーション対象にする
======================================== */
.top_media .top_media_feature > a,
.top_media .top_media_foot_cont .top_media_swiper_slide:nth-child(-n + 4) > a {
  opacity: 0;
  transform: translateY(16px);
}

.top_media.is-inview {
  /* path の並び順と見せたい順が逆なので、末尾から順番に表示 */
  /* feature（先頭記事）→ slider（先頭4件）の順で見せる */
}
.top_media.is-inview .top_media_idomedia path {
  animation: letterFadeUp 0.7s ease-out forwards;
}
.top_media.is-inview .top_media_idomedia path:last-of-type {
  animation: letterBoom 0.85s ease-out forwards;
  animation-delay: 0s;
}
.top_media.is-inview .top_media_idomedia path:nth-last-of-type(1) {
  animation-delay: 0s;
}
.top_media.is-inview .top_media_idomedia path:nth-last-of-type(2) {
  animation-delay: 0.1s;
}
.top_media.is-inview .top_media_idomedia path:nth-last-of-type(3) {
  animation-delay: 0.2s;
}
.top_media.is-inview .top_media_idomedia path:nth-last-of-type(4) {
  animation-delay: 0.3s;
}
.top_media.is-inview .top_media_idomedia path:nth-last-of-type(5) {
  animation-delay: 0.4s;
}
.top_media.is-inview .top_media_idomedia path:nth-last-of-type(6) {
  animation-delay: 0.5s;
}
.top_media.is-inview .top_media_idomedia path:nth-last-of-type(7) {
  animation-delay: 0.6s;
}
.top_media.is-inview .top_media_idomedia path:nth-last-of-type(8) {
  animation-delay: 0.7s;
}
.top_media.is-inview .top_media_feature > a {
  animation: jobItemFadeIn 0.55s ease-out forwards;
  animation-delay: 0.9s;
}
.top_media.is-inview .top_media_foot_cont .top_media_swiper_slide:nth-child(1) > a {
  animation: jobItemFadeIn 0.55s ease-out forwards;
  animation-delay: 1.15s;
}
.top_media.is-inview .top_media_foot_cont .top_media_swiper_slide:nth-child(2) > a {
  animation: jobItemFadeIn 0.55s ease-out forwards;
  animation-delay: 1.29s;
}
.top_media.is-inview .top_media_foot_cont .top_media_swiper_slide:nth-child(3) > a {
  animation: jobItemFadeIn 0.55s ease-out forwards;
  animation-delay: 1.43s;
}
.top_media.is-inview .top_media_foot_cont .top_media_swiper_slide:nth-child(4) > a {
  animation: jobItemFadeIn 0.55s ease-out forwards;
  animation-delay: 1.57s;
}

/* ===================================
	top.scss - Top Page (ns)
	Location: css/ns/top/
====================================== */
/* header ajustment setting
------------------------------------*/
.header .header_logo.js_show + .header_menu .header_entry::before {
  display: none;
}
.header .header_menu {
  width: 56.25%;
  max-width: 810px;
}
.header .header_menu .header_center {
  width: 59.877%;
}
.header .header_menu .header_center .header_center_lst {
  gap: 3.333vw;
}
.header .header_menu .header_right {
  width: 40.123%;
}
.header .header_menu .header_right .header_entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.278vw, 4px);
  background-color: #007e54;
  animation: none;
  /* unique.css より後に読み込まれるため詳細度で上書き。採用ナビ表示時は下層と同様に非表示 */
}
.header .header_menu .header_right .header_entry.js_open {
  display: none;
}
.header .header_menu .header_right .header_entry .header_entry_sub {
  display: block;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: clamp(10px, 0.833vw, 12px);
  opacity: 0.4;
}
.header .header_menu .header_right .header_entry .header_entry_main {
  display: block;
  line-height: 1;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
}
.header .header_menu .header_right .g_hamb {
  width: 36.923%;
}

/* loading overlay fix (SP reload gap)
------------------------------------*/
.js_loading .loader {
  position: relative;
}
.js_loading .loader::after {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* top mv setting
------------------------------------*/
#top_mv {
  position: relative;
  width: 100%;
}
#top_mv .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
#top_mv .inner .top_mv_logo {
  position: absolute;
  top: 0;
  left: 30px;
  opacity: 1;
  visibility: visible;
  padding: 25px 0 0;
  width: 179px;
  background: none;
  border: none;
  z-index: 6;
}
#top_mv .inner .top_mv_logo .top_mv_logo_img {
  width: 100%;
}
#top_mv .inner picture {
  position: relative;
  height: 450px;
  width: 100%;
  overflow: visible;
  display: block;
}
#top_mv .inner picture img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#top_mv .inner h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  width: 100%;
  overflow: visible;
}
#top_mv .inner h2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../../../img/ns/top/mv/bg_mv-copy_pc.webp) no-repeat center/100% 97%;
  mix-blend-mode: screen;
  opacity: 0.65;
}
#top_mv .inner h2 svg {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 85.833%;
  max-width: 1236px;
  height: auto;
  opacity: 0.5;
  overflow: visible;
}
#top_mv .inner h2 svg path {
  fill: #fff;
}
#top_mv .inner p {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 0 0 0 48.888%;
  width: 100%;
  height: 450px;
}
#top_mv .inner p svg {
  display: block;
  width: 74.592%;
  max-width: 549px;
  height: auto;
}
#top_mv .inner p svg path {
  fill: #fff;
}
#top_mv .inner p + p {
  top: 450px;
  padding: 0 0 0 9.93%;
}
#top_mv .inner p + p svg {
  width: 42.174%;
  max-width: 547px;
}

/* top message setting
------------------------------------*/
#top_message {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom left, #045cb7 0%, #0099b0 50%, #008f46 100%);
}
#top_message::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(../../../img/ns/top/message/bg_message_pc.webp) no-repeat center/cover;
  opacity: 0;
  transform: scale(1.2);
  transition: opacity 1s ease-out, transform 1.2s ease-out;
}
#top_message.is-inview::before {
  opacity: 1;
  transform: scale(1);
}
#top_message .inner {
  margin: 0 auto;
  padding: 90px 0 110px;
  width: 55.902%;
  max-width: 805px;
}
#top_message .inner h2 {
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 0;
  margin: 0;
  z-index: 1;
}
#top_message .inner h2 svg {
  display: block;
  width: 8.75vw;
  max-width: 124px;
  height: auto;
  overflow: visible;
  opacity: 0.2;
}
#top_message .inner h2 svg path {
  fill: #fff;
}
#top_message .inner p {
  position: relative;
  z-index: 1;
  margin: 0 auto 80px;
}
#top_message .inner > a {
  position: relative;
  display: block;
  background: #000;
  margin: 0 auto;
  width: 300px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.02em;
  font-size: 18px;
  box-shadow: none;
  transition: background 0.8s ease, box-shadow 0.45s ease, opacity 0.45s ease;
}
#top_message .inner > a::before {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  background: #404040;
  clip-path: polygon(100% 100%, 100% 0%, 0% 100%);
  transition: background 0.8s ease;
}
#top_message .inner > a:hover {
  background: #00cc35;
  opacity: 0.9;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
#top_message .inner > a:hover::before {
  background: #fff;
}

/* top jobs setting
------------------------------------*/
#top_jobs {
  position: relative;
  background: #005f3f;
}
#top_jobs .inner {
  position: relative;
  padding: 145px 0 200px;
}
#top_jobs .inner > svg {
  position: absolute;
  top: 120px;
  right: 0;
  z-index: 1;
  display: block;
  width: 9.375vw;
  max-width: 135px;
  height: auto;
  overflow: visible;
  opacity: 0.25;
}
#top_jobs .inner > svg path {
  fill: #fff;
}
#top_jobs .inner h2 {
  position: relative;
  z-index: 1;
  margin: 0 auto 80px;
  width: 93.75%;
  max-width: 1240px;
  letter-spacing: 0.06em;
  font-size: 32px;
  color: #fff;
}
#top_jobs .inner h2::before {
  content: '';
  position: absolute;
  top: -25px;
  left: -20px;
  z-index: 0;
  display: block;
  background: url(../../../img/ns/top/jobs/img_slash.webp) center/100% 100% no-repeat;
  width: 80px;
  height: 82px;
}
#top_jobs .inner h2 span {
  position: relative;
  z-index: 1;
}
#top_jobs .inner ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: topJobsCounter;
  border-top: 1px solid #fff;
}
#top_jobs .inner ol li {
  position: relative;
  counter-increment: topJobsCounter;
  border-bottom: 1px solid #fff;
}
#top_jobs .inner ol li:not(:nth-child(3n))::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  background: #fff;
  width: 1px;
  height: 100%;
}
#top_jobs .inner ol li a {
  position: relative;
  display: block;
  background: #005f3f;
  padding: 50px;
  height: 100%;
  color: #fff;
  transition: background-color 0.6s ease;
}
#top_jobs .inner ol li a::after {
  content: '';
  position: absolute;
  right: 50px;
  bottom: 50px;
  display: block;
  background: url(../../../img/common/arrow.svg) center/30.75% 30.75% no-repeat;
  aspect-ratio: 1 / 1;
  width: 12.5%;
  max-width: 65px;
  height: auto;
}
#top_jobs .inner ol li a::before {
  content: '';
  position: absolute;
  right: 50px;
  bottom: 50px;
  box-sizing: border-box;
  display: block;
  aspect-ratio: 1 / 1;
  width: 12.5%;
  max-width: 65px;
  height: auto;
  border: 1px solid #fff;
  border-radius: 50%;
}
#top_jobs .inner ol li a figure {
  display: block;
  margin: 0 0 20px;
  width: 100%;
  aspect-ratio: 380 / 214;
  overflow: hidden;
}
#top_jobs .inner ol li a figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
}
#top_jobs .inner ol li a h3 {
  margin: 15px 0 0;
  font-weight: 700;
  font-size: 20px;
}
#top_jobs .inner ol li a h3::before {
  content: "(" counter(topJobsCounter,decimal-leading-zero) ")";
  display: inline-block;
  margin: 0 15px 0 0;
  line-height: 1.3;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}
#top_jobs .inner ol li a p {
  padding: 0 13.5% 0 0;
  font-size: 16px;
}
@media (any-hover: hover) {
  #top_jobs .inner ol li a:hover {
    background-color: #000;
  }
  #top_jobs .inner ol li a:hover figure img {
    transform: scale(1.05);
  }
}

/* top media adjustment setting
------------------------------------*/
.top_media {
  position: relative;
}
.top_media svg {
  position: absolute;
  top: 130px;
  left: 0;
  width: 135px;
  height: auto;
  fill: #005f3f;
  pointer-events: none;
  opacity: 0.1;
}
.top_media .top_media_head_cont {
  position: relative;
  z-index: 1;
  width: 100vw;
}
.top_media .top_media_head_cont .top_media_ttl_cont {
  display: block;
  padding: 140px 3.472vw 0;
  border-left: none;
}
.top_media .top_media_head_cont .top_media_ttl_cont .top_media_head {
  flex-direction: unset;
  margin: 0;
}
.top_media .top_media_head_cont .top_media_ttl_cont .top_media_head .top_sec_ttl__media.top_sec_ttl {
  margin: 0 0 180px;
  padding: 0 0 0 35px;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  text-orientation: unset;
  font-size: 32px;
}
.top_media .top_media_head_cont .top_media_ttl_cont .top_media_head .top_sec_ttl__media.top_sec_ttl::before {
  content: '';
  position: absolute;
  top: -15px;
  right: unset;
  left: 0;
  z-index: 0;
  display: block;
  background: url(../../../img/ns/top/jobs/img_slash.webp) center/100% 100% no-repeat;
  width: 80px;
  height: 82px;
}
.top_media .top_media_head_cont .top_media_ttl_cont .top_media_head .top_sec_ttl__media.top_sec_ttl span {
  z-index: 1;
}
.top_media .top_media_head_cont .top_media_ttl_cont .top_media_head .top_media_batche {
  position: relative;
  top: 0;
  left: unset;
  right: 0;
  transform: translateY(-25%);
  margin: 0 0 0 1vw;
}
.top_media .top_media_head_cont .top_media_feature {
  width: 50vw;
  padding: 3.472vw;
  border-left: 1px solid var(--color-black);
  background-color: transparent;
  transition: background-color 0.6s ease, color 0.6s ease;
}
.top_media .top_media_head_cont .top_media_feature > a {
  display: block;
  color: inherit;
}
.top_media .top_media_head_cont .top_media_feature figure {
  overflow: hidden;
}
.top_media .top_media_head_cont .top_media_feature figure img {
  transform: scale(1);
  transition: transform 0.6s ease;
}
@media (any-hover: hover) {
  .top_media .top_media_head_cont .top_media_feature:hover {
    background-color: #000;
    color: #fff;
  }
  .top_media .top_media_head_cont .top_media_feature:hover figure img {
    transform: scale(1.05);
  }
}
.top_media .top_media_foot_cont .top_media_swiper_slide {
  background-color: transparent;
  transition: background-color 0.6s ease;
}
.top_media .top_media_foot_cont .top_media_swiper_slide_link {
  display: block;
  color: inherit;
  transition: color 0.6s ease;
}
.top_media .top_media_foot_cont .top_media_swiper_slide figure {
  overflow: hidden;
}
.top_media .top_media_foot_cont .top_media_swiper_slide figure img {
  transform: scale(1);
  transition: transform 0.6s ease;
}
@media (any-hover: hover) {
  .top_media .top_media_foot_cont .top_media_swiper_slide:hover {
    background-color: #000;
    color: #fff;
  }
  .top_media .top_media_foot_cont .top_media_swiper_slide:hover figure img {
    transform: scale(1.05);
  }
}
.top_media .top_media_foot_cont .top_media_swiper_btn_cont {
  right: unset;
  left: 5vw;
}

/* top movie adjustment setting
------------------------------------*/
.top_movie {
  height: auto;
  margin: 0;
  padding: 0;
  aspect-ratio: 1440 / 810;
}

/* ------------------------------------------------------------------------
	Ajustment For Smart Phone
------------------------------------------------------------------------ */
@media screen and (max-width: 768px) {
  /* header ajustment setting
  ------------------------------------*/
  .header .header_menu {
    width: 66.667%;
    max-width: 66.667%;
  }
  .header .header_menu .header_center {
    width: 100%;
  }
  .header .header_menu .header_center .header_center_lst {
    gap: 4vw;
  }
  .header .header_menu .header_right {
    width: auto;
  }
  .header .header_menu .header_right .header_entry {
    width: 26.66667vw;
    gap: 1.06667vw;
  }
  .header .header_menu .header_right .header_entry .header_entry_sub {
    font-size: 2.66667vw;
  }
  .header .header_menu .header_right .header_entry .header_entry_main {
    font-size: 3.73333vw;
  }
  .header .header_menu .header_right .g_hamb {
    width: 16vw;
  }

  /* top mv setting 
  ------------------------------------*/
  #top_mv .inner .top_mv_logo {
    left: 3.2vw;
    padding: 3.2vw 0 0;
    width: 29.2vw;
  }
  #top_mv .inner picture {
    height: 50vh;
  }
  #top_mv .inner h2::before {
    background: url(../../../img/ns/top/mv/bg_mv-copy_sp.webp) no-repeat center/100% 97%;
  }
  #top_mv .inner h2 svg {
    width: 100vw;
    max-width: 100vw;
  }
  #top_mv .inner p {
    box-sizing: border-box;
    display: block;
    padding: 26vw 0 0 55.33333vw;
    height: 50vh;
  }
  #top_mv .inner p svg {
    width: 39.33333vw;
    max-width: 39.33333vw;
  }
  #top_mv .inner p + p {
    top: 50vh;
    padding: 19.33333vw 0 0 5.33333vw;
  }
  #top_mv .inner p + p svg {
    width: 39.33333vw;
    max-width: 39.33333vw;
  }

  /* top message setting
  ------------------------------------*/
  #top_message::before {
    background: url(../../../img/ns/top/message/bg_message_sp.webp) no-repeat center/cover;
  }
  #top_message .inner {
    padding: 16vw 0;
    width: 92.53333vw;
    max-width: 92.53333vw;
  }
  #top_message .inner h2 svg {
    width: 17.2vw;
    max-width: 17.2vw;
  }
  #top_message .inner p {
    margin: 0 auto 10.66667vw;
  }
  #top_message .inner > a {
    width: 62.66667vw;
    height: 12vw;
    line-height: 12vw;
    font-size: 3.73333vw;
  }
  #top_message .inner > a::before {
    bottom: 0.53333vw;
    right: 0.53333vw;
    width: 2.66667vw;
    height: 2.66667vw;
  }

  /* top jobs setting
  ------------------------------------*/
  #top_jobs .inner {
    padding: 18.66667vw 0 8vw;
  }
  #top_jobs .inner > svg {
    top: 16vw;
    width: 16.13333vw;
    max-width: 16.13333vw;
  }
  #top_jobs .inner h2 {
    margin: 0 auto 10.66667vw;
    width: 89.33333vw;
    max-width: 89.33333vw;
    font-size: 4.8vw;
  }
  #top_jobs .inner h2::before {
    top: 0;
    left: -4.8vw;
    width: 10.66667vw;
    height: 10.93333vw;
  }
  #top_jobs .inner ol {
    display: block;
    border-top: none;
  }
  #top_jobs .inner ol li {
    border-bottom: 0.53333vw solid #fff;
    margin: 0 auto 8vw;
    padding: 0 0 6.66667vw;
    width: 92.8vw;
  }
  #top_jobs .inner ol li:not(:nth-child(3n))::before {
    display: none;
  }
  #top_jobs .inner ol li a {
    padding: 0;
  }
  #top_jobs .inner ol li a::after {
    right: 0;
    bottom: 1.33333vw;
    width: 9.86667vw;
    max-width: 9.86667vw;
  }
  #top_jobs .inner ol li a::before {
    right: 0;
    bottom: 1.33333vw;
    border: 0.26667vw solid #fff;
    width: 9.86667vw;
    max-width: 9.86667vw;
  }
  #top_jobs .inner ol li a figure {
    margin: 0 0 2.66667vw;
    aspect-ratio: 696 / 392;
  }
  #top_jobs .inner ol li a h3 {
    margin: 2vw 0 0;
    font-size: 4.26667vw;
  }
  #top_jobs .inner ol li a h3::before {
    margin: 0 2.66667vw 0 0;
    font-size: 2.66667vw;
  }
  #top_jobs .inner ol li a p {
    padding: 0 12vw 0 0;
    font-size: 3.2vw;
  }

  /* top media adjustment setting
  ------------------------------------*/
  .top_media svg {
    top: 17.6vw;
    width: 17.73333vw;
  }
  .top_media .top_media_head_cont {
    position: relative;
    z-index: 1;
    width: 100vw;
  }
  .top_media .top_media_head_cont .top_media_ttl_cont {
    padding: 18.66667vw 4vw 0;
  }
  .top_media .top_media_head_cont .top_media_ttl_cont .top_media_head {
    flex-direction: unset;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
  .top_media .top_media_head_cont .top_media_ttl_cont .top_media_head .top_sec_ttl__media.top_sec_ttl {
    margin: 0 0 6vw;
    padding: 0 0 0 2vw;
    font-size: 4.8vw;
  }
  .top_media .top_media_head_cont .top_media_ttl_cont .top_media_head .top_sec_ttl__media.top_sec_ttl::before {
    top: -1.33333vw;
    left: -3.2vw;
    width: 10.66667vw;
    height: 10.93333vw;
  }
  .top_media .top_media_head_cont .top_media_ttl_cont .top_media_head .top_sec_ttl__media.top_sec_ttl span {
    z-index: 1;
  }
  .top_media .top_media_head_cont .top_media_ttl_cont .top_media_head .top_media_batche {
    top: -0.66667vw;
    bottom: auto;
    width: 18.26667vw;
    height: 18.26667vw;
  }
  .top_media .top_media_head_cont .top_media_ttl_cont .top_media_lead_cont {
    margin: 0 0 16.66667vw;
    padding: 0;
    letter-spacing: 0.04em;
    font-size: 3.73333vw;
  }
  .top_media .top_media_head_cont .top_media_feature {
    border-left: none;
    margin: 0 auto;
    padding: 4vw 4vw 12.66667vw;
    width: 93.33333vw;
  }

  /* top movie adjustment setting
  ------------------------------------*/
  .top_movie .top_movie_btn {
    bottom: 3vw;
  }

  .movie_modal_close::before,
  .movie_modal_close::after {
    width: 0.26667vw;
  }
}
