@charset "UTF-8";

/* ==========================================================================
   RECRUIT PAGE STYLESHEET (Integrated)
   ========================================================================== */

/* --- Recruit Section Common --- */
.recruit-section {
  margin-bottom: var(--space-3xl, 64px);
}
.recruit-section:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   Recruit Page Hero - Organic Curve Mask Theme
   大手ならではの制度と安心感のある職場環境
   ========================================================================== */

.recruit-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #fbf9f5 0%, #ffffff 100%);
  padding: calc(var(--header-height, 90px) + 36px) 0 0;
  overflow: hidden;
  font-family: var(--font-sans);
}

.recruit-hero__container {
  max-width: var(--layout-max-width, 1480px);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-gutter, 16px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

/* 左側：メッセージコンテンツ */
.recruit-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.recruit-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
  margin: 0 0 18px;
  letter-spacing: 0.03em;
}

.recruit-hero__lead {
  font-size: 15px;
  line-height: 1.85;
  color: #334155;
  margin: 0;
  letter-spacing: 0.02em;
}

/* 右側：オーガニック・カーブマスク画像 */
.recruit-hero__mask-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin: 0 auto;
  z-index: 1;
}

.recruit-hero__blob-bg {
  position: absolute;
  inset: -12px;
  background: linear-gradient(
    135deg,
    rgba(197, 168, 128, 0.35) 0%,
    rgba(30, 130, 138, 0.22) 100%
  );
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  animation: blobFloatRecruit 12s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

.recruit-hero__mask-img-box {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 60% 40% / 60% 40% 60% 40%;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.12),
    0 4px 12px rgba(197, 168, 128, 0.15);
  background-color: #ffffff;
}

.recruit-hero__mask-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes blobFloatRecruit {
  0% {
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 50% 60% 40% 60% / 60% 40% 50% 50%;
    transform: rotate(4deg) scale(1.02);
  }
  100% {
    border-radius: 40% 60% 40% 60% / 60% 50% 50% 40%;
    transform: rotate(-3deg) scale(0.99);
  }
}

/* ==========================================================================
   最下部 横スクロールティッカー (大判ウォーターマーク・マーキー)
   ========================================================================== */

.recruit-hero__ticker {
  position: relative;
  width: 100%;
  margin-top: 44px;
  overflow: hidden;
  background: transparent;
  border: none;
  padding: 8px 0 16px;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.recruit-hero__ticker-track {
  display: flex;
  width: max-content;
}

.recruit-hero__ticker-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: recruitTickerLoop 40s linear infinite;
  will-change: transform;
}

.recruit-hero__ticker-item {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(197, 168, 128, 0.24);
  padding: 0 40px;
  text-transform: uppercase;
}

.recruit-hero__ticker-sep {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.recruit-hero__ticker-ja {
  font-family: var(--font-japanese, var(--font-sans));
  font-size: 1em;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: inherit;
}

@keyframes recruitTickerLoop {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* レスポンシブ対応 */
@media (max-width: 960px) {
  .recruit-hero {
    padding: calc(var(--header-height, 64px) + 28px) 0 0;
  }

  .recruit-hero__container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .recruit-hero__title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .recruit-hero__lead {
    font-size: 14.5px;
    line-height: 1.8;
  }

  .recruit-hero__mask-wrap {
    max-width: 360px;
  }

  .recruit-hero__ticker {
    margin-top: 32px;
    padding: 10px 0 14px;
  }

  .recruit-hero__ticker-item {
    font-size: 28px;
    gap: 12px;
    padding: 0 24px;
  }
}

@media (max-width: 540px) {
  .recruit-hero {
    padding: calc(var(--header-height, 58px) + 20px) 0 0;
  }

  .recruit-hero__container {
    gap: 24px;
  }

  .recruit-hero__title {
    font-size: 21px;
  }

  .recruit-hero__lead {
    font-size: 13.5px;
    line-height: 1.75;
  }

  .recruit-hero__mask-wrap {
    max-width: 280px;
  }

  .recruit-hero__ticker {
    margin-top: 24px;
    padding: 8px 0 10px;
  }

  .recruit-hero__ticker-item {
    font-size: 22px;
    letter-spacing: 0.06em;
    gap: 8px;
    padding: 0 16px;
  }
}

/* ==========================================================================
   Recruit Subbar (左: パンくずリスト / 右: ページ内ナビ)
   ========================================================================== */

.recruit-subbar {
  position: relative;
  background: #fbf9f5;
  border-bottom: 1px solid #e9e3d8;
  z-index: 10;
  margin-bottom: var(--space-2xl, 48px);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.recruit-subbar__container {
  max-width: var(--layout-max-width, 1480px);
  margin: 0 auto;
  padding: 0 var(--container-gutter, 16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

.recruit-subbar .breadcrumb {
  background: transparent !important;
  border: none;
  padding: 14px 0;
  width: auto;
  margin-bottom: 0 !important;
}

.recruit-subbar .breadcrumb__container {
  padding: 0;
  max-width: none;
}

.recruit-subbar .breadcrumb__link {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  font-size: 13.5px;
  transition: color 0.2s ease;
}

.recruit-subbar .breadcrumb__link:hover {
  color: #8c6323;
}

.recruit-subbar .breadcrumb__separator {
  color: #94a3b8;
  margin: 0 8px;
}

.recruit-subbar .breadcrumb__current {
  color: #0f172a !important;
  font-weight: 700;
  font-size: 13.5px;
}

.recruit-subbar .recruit-nav {
  position: static;
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 0;
  width: auto;
}

.recruit-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.recruit-nav__item {
  margin: 0;
}

.recruit-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  font-family: var(--font-sans, "Outfit", "Noto Sans JP", sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.25s ease;
}

.recruit-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #8c6323;
  transition:
    width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 3px 3px 0 0;
}

.recruit-nav__link:hover {
  color: #8c6323;
}

.recruit-nav__link:hover::after,
.recruit-nav__link.is-active::after {
  width: 100%;
  left: 0;
}

/* Subbar レスポンシブ対応 */
@media (max-width: 960px) {
  .recruit-subbar {
    margin-bottom: var(--space-xl, 36px);
  }

  .recruit-subbar__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 var(--container-gutter, 16px);
  }

  .recruit-subbar .breadcrumb {
    padding: 10px 0 4px;
  }

  .recruit-subbar .recruit-nav {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .recruit-subbar .recruit-nav::-webkit-scrollbar {
    display: none;
  }

  .recruit-nav__list {
    white-space: nowrap;
    padding-bottom: 6px;
  }

  .recruit-nav__link {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* --- Container & Layout (about-container / work-container と共通の左右余白・最大幅) --- */
.recruit-container {
  max-width: var(--layout-max-width, 1480px);
  margin: 0 auto;
  padding: 0 var(--container-gutter, 16px) 0;
  box-sizing: border-box;
}

/* ==========================================================================
   ドキュメントシート (募集要項・選考プロセス)
   新聞・エディトリアル調のシャープ＆端正な組版スタイル
   ========================================================================== */

.recruit-paper-sheet {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 16px 0 32px;
  position: relative;
  margin-top: 16px;
  margin-bottom: var(--space-2xl, 48px);
}

.recruit-paper-sheet__block {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.recruit-paper-sheet__block + .recruit-paper-sheet__block {
  margin-top: 64px;
}

.recruit-paper-sheet__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-right: 2px solid #0f172a;
  padding: 4px 24px 8px 4px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.recruit-paper-sheet__subhead.section-title,
.recruit-paper-sheet__subhead {
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.3em;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  border: none;
  display: inline-block;
  white-space: nowrap;
}

.recruit-paper-sheet__subhead.section-title::before,
.recruit-paper-sheet__subhead.section-title::after,
.recruit-paper-sheet__subhead::before,
.recruit-paper-sheet__subhead::after {
  display: none !important;
}

.recruit-paper-sheet__subhead a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.recruit-paper-sheet__subhead a:hover {
  color: #334155;
}

.recruit-paper-sheet__subhead .heading-anchor-icon {
  display: none;
}

.recruit-paper-sheet__side-en {
  writing-mode: vertical-rl;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(197, 168, 128, 0.24);
  margin-top: 48px;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.recruit-paper-sheet__block .requirements-container,
.recruit-paper-sheet__block .process-container,
.recruit-paper-sheet__block .entry-cta-container {
  flex: 1;
  min-width: 0;
  margin-top: 0;
}

.recruit-paper-sheet__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
}

.recruit-paper-sheet__block--reverse {
  flex-direction: row-reverse;
}

.recruit-paper-sheet__block--reverse .recruit-paper-sheet__side {
  border-right: none;
  border-left: 2px solid #0f172a;
  padding: 4px 4px 8px 24px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .recruit-paper-sheet {
    padding: 12px 0 24px;
  }
  .recruit-paper-sheet__block,
  .recruit-paper-sheet__block--reverse {
    flex-direction: column;
    gap: 16px;
  }
  .recruit-paper-sheet__block + .recruit-paper-sheet__block {
    margin-top: 40px;
  }
  .recruit-paper-sheet__side,
  .recruit-paper-sheet__block--reverse .recruit-paper-sheet__side {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #0f172a;
    padding: 0 0 8px 0;
    margin-bottom: 12px;
    width: 100%;
  }
  .recruit-paper-sheet__subhead.section-title,
  .recruit-paper-sheet__subhead {
    writing-mode: horizontal-tb;
    border-bottom: none;
    padding: 0;
    margin-bottom: 0;
    letter-spacing: 0.05em;
    font-size: 22px;
    display: inline-block;
  }
  .recruit-paper-sheet__side-en {
    writing-mode: horizontal-tb;
    margin-top: 0;
    font-size: 13px;
    letter-spacing: 0.1em;
  }
}


/* ==========================================================================
   Workstyle Teaser Section (sec_workstyle) - 「働く環境を知る」
   ========================================================================== */

.workstyle-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px;
  margin-bottom: 24px;
  width: 100%;
}

#workstyle .section-title,
.workstyle-header__title {
  text-align: left;
  border-bottom: none;
  padding-bottom: 0;
  margin: 0 !important;
  flex-shrink: 0;
}

#workstyle .section-title::before,
#workstyle .section-title::after,
.workstyle-header__title::before,
.workstyle-header__title::after {
  display: none !important;
}

#workstyle .section-title a,
.workstyle-header__title a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-ink, #111823);
}

/* タイトルハイライト（薄い緑系） */
.workstyle-header__highlight {
  display: inline-block;
  background-color: #d1fae5;
  padding: 2px 10px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* 「もっと見る」ボタン（右側配置・top-workstyleフォレストグリーン調スライドフィル） */
.workstyle-header__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #ffffff;
  color: var(--color-ink, #0f172a) !important;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(20, 114, 75, 0.4);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  margin-left: auto !important;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(20, 114, 75, 0.06);
}

.workstyle-header__more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #14724b;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.workstyle-header__more-btn span {
  position: relative;
  z-index: 2;
  color: var(--color-ink, #0f172a) !important;
  transition: color 0.3s ease;
}

.workstyle-header__more-btn svg,
.workstyle-header__more-btn .workstyle-header__more-arrow {
  position: relative;
  z-index: 2;
  font-family: var(--font-english, sans-serif);
  font-size: 15px;
  line-height: 1;
  color: #14724b;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.workstyle-header__more-btn:hover {
  border-color: #14724b;
  box-shadow: 0 4px 14px rgba(20, 114, 75, 0.2);
}

.workstyle-header__more-btn:hover::before {
  width: 100%;
}

.workstyle-header__more-btn:hover span {
  color: #ffffff;
}

.workstyle-header__more-btn:hover svg,
.workstyle-header__more-btn:hover .workstyle-header__more-arrow {
  color: #ffffff;
  transform: translateX(4px);
}

/* グリッドとカード（角丸なし・直角・フォレストグリーントーン） */
.workstyle-teaser {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.workstyle-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.workstyle-teaser__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 0px; /* 直角 */
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.workstyle-teaser__card:hover {
  transform: translateY(-4px);
  border-color: #14724b;
  box-shadow: 0 12px 28px rgba(20, 114, 75, 0.16);
}

.workstyle-teaser__thumb-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #0d5235;
}

.workstyle-teaser__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.workstyle-teaser__card:hover .workstyle-teaser__thumb {
  transform: scale(1.08);
}

.workstyle-teaser__info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  background: #ffffff;
  transition: background 0.3s ease;
}

.workstyle-teaser__card:hover .workstyle-teaser__info {
  background: #fafcfb;
}

.workstyle-teaser__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.workstyle-teaser__card-title svg,
.workstyle-teaser__card-title .workstyle-teaser__arrow {
  color: #14724b;
  flex-shrink: 0;
  font-family: var(--font-english, sans-serif);
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}

.workstyle-teaser__card:hover .workstyle-teaser__card-title svg,
.workstyle-teaser__card:hover .workstyle-teaser__card-title .workstyle-teaser__arrow {
  color: #10b981;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .workstyle-header {
    flex-direction: row;
    align-items: center;
  }

  .workstyle-teaser__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .workstyle-teaser__thumb-wrap {
    height: 140px;
  }
}



/* ==========================================================================
   Requirements Section (#sec_requirements) - Slanted Gold Ambient Style
   ========================================================================== */

body.page-recruit {
  overflow-x: hidden;
}

#requirements {
  position: relative;
  background: linear-gradient(155deg, #fdfbf7 0%, #f7f1e5 50%, #fcfaf5 100%);
  /* 左右余白なし：画面全幅（フルブリード）に拡張 */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50% + var(--container-gutter, 16px));
  padding-right: calc(50vw - 50% + var(--container-gutter, 16px));
  padding-top: 64px;
  padding-bottom: 64px;
  width: 100vw;
  box-sizing: border-box;
  box-shadow: 0 12px 32px rgba(197, 168, 128, 0.08);
  margin-top: 48px;
  margin-bottom: 64px;
  /* 上下斜めカット */
  clip-path: polygon(0 24px, 100% 0, 100% calc(100% - 24px), 0 100%);
}

/* 上部：斜めぼかしゴールドボーダー */
#requirements::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    rgba(197, 168, 128, 0) 0%,
    rgba(197, 168, 128, 0.5) 15%,
    rgba(212, 184, 134, 0.95) 50%,
    rgba(197, 168, 128, 0.5) 85%,
    rgba(197, 168, 128, 0) 100%
  );
  filter: blur(4px);
  box-shadow: 0 0 16px rgba(197, 168, 128, 0.6);
  pointer-events: none;
  z-index: 2;
}

/* 下部：斜めぼかしゴールドボーダー */
#requirements::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    rgba(197, 168, 128, 0) 0%,
    rgba(197, 168, 128, 0.5) 15%,
    rgba(212, 184, 134, 0.95) 50%,
    rgba(197, 168, 128, 0.5) 85%,
    rgba(197, 168, 128, 0) 100%
  );
  filter: blur(4px);
  box-shadow: 0 0 16px rgba(197, 168, 128, 0.6);
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 768px) {
  #requirements {
    padding-top: 48px;
    padding-bottom: 44px;
    clip-path: polygon(0 14px, 100% 0, 100% calc(100% - 14px), 0 100%);
    margin-top: 28px;
    margin-bottom: 48px;
  }
}

.requirements-container {
  --req-font-serif: var(--font-sans);
  --req-font-sans: var(--font-sans);
  --req-color-ink: #111827;
  --req-color-charcoal: #1e293b;
  --req-color-accent: var(--secondary-color, #0284c7);
  --req-color-paper: rgba(255, 255, 255, 0.7);
  --req-color-badge: #e11d48;
  --req-color-border: rgba(197, 168, 128, 0.35);
  --req-color-border-dark: #111827;
  --req-transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --req-transition-fast: all 0.25s ease;
}

.requirements-container {
  width: 100%;
  font-family: var(--req-font-sans);
  color: var(--req-color-ink);
  box-sizing: border-box;
}

.requirements-table {
  width: 100%;
  border-collapse: collapse;
  border-top: none;
  border-bottom: none;
  margin-bottom: 0;
}

.requirements-row {
  border-bottom: 1px solid var(--req-color-border);
}

.requirements-row:last-child {
  border-bottom: none;
}

.requirements-th {
  font-family: var(--req-font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--req-color-ink);
  text-align: left;
  vertical-align: top;
  width: 180px;
  padding: 26px 20px;
  border-right: 1px solid var(--req-color-border);
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.requirements-td {
  padding: 26px 30px;
  vertical-align: top;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--req-color-charcoal);
  font-weight: 500;
  text-align: justify;
}

.requirements-td p {
  margin: 0 0 8px 0;
  letter-spacing: 0.03em;
}

.requirements-td p:last-child {
  margin-bottom: 0;
}

.job-item {
  margin-bottom: 32px;
}

.job-item:last-child {
  margin-bottom: 0;
}

.job-title {
  font-family: var(--req-font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--req-color-ink);
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 1.4;
}

.job-line {
  margin: 0 0 6px 0;
  font-size: 14px;
  color: var(--req-color-charcoal);
  font-weight: 500;
}

.job-line:last-child {
  margin-bottom: 0;
}

.job-label {
  font-weight: 700;
  color: var(--req-color-accent);
  margin-right: 4px;
  letter-spacing: 0.02em;
}

.job-badge {
  background-color: var(--req-color-badge);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.4;
  box-shadow: 2px 2px 0px rgba(225, 29, 72, 0.15);
}

@media (max-width: 768px) {
  .requirements-table,
  .requirements-table tbody,
  .requirements-row,
  .requirements-th,
  .requirements-td {
    display: block;
    width: 100% !important;
  }

  .requirements-row {
    border-bottom: 1px solid var(--req-color-border);
  }

  .requirements-th {
    border-right: none;
    border-bottom: 1px dashed var(--req-color-border);
    padding: 20px 15px 10px;
    background-color: var(--req-color-paper);
    font-size: 13px;
  }

  .requirements-td {
    padding: 16px 15px 24px;
    font-size: 14px;
  }

  .job-item {
    margin-bottom: 24px;
  }

  .job-title {
    font-size: 15px;
  }

  .job-line {
    font-size: 13.5px;
  }
}


.process-container {
  --pro-font-serif: var(--font-serif, serif);
  --pro-font-sans: var(--font-sans);
  --pro-color-ink: #0f172a;
  --pro-color-charcoal: #334155;
  --pro-color-accent: #0f172a;
  --pro-color-paper: #ffffff;
  --pro-color-link: #0f172a;
  --pro-color-border: #1e293b;
  --pro-color-border-dark: #0f172a;
  --pro-transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --pro-transition-fast: all 0.2s ease;
}

.process-container {
  width: 100%;
  font-family: var(--pro-font-sans);
  color: var(--pro-color-ink);
  box-sizing: border-box;
}

.process-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background-color: #ffffff;
  border: 1px solid #1e293b;
  box-shadow: 2px 2px 0px rgba(15, 23, 42, 0.08);
  border-radius: 0px;
  position: relative;
}

.process-number-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f172a;
  border: 1px solid #0f172a;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  border-radius: 0px;
  box-shadow: none;
}

.process-content {
  flex-grow: 1;
}

.process-step-title {
  font-family: var(--pro-font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--pro-color-ink);
  margin: 0 0 10px 0;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.process-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--pro-color-charcoal);
  font-weight: 500;
  margin: 0 0 6px 0;
  text-align: justify;
  letter-spacing: 0.02em;
}

.process-desc:last-child {
  margin-bottom: 0;
}

.process-link {
  color: #0f172a;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s ease;
  letter-spacing: 0.03em;
}

.process-link:hover {
  color: #475569;
}

.process-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  position: relative;
  margin: 8px 0;
}

.process-arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 12px solid #0f172a;
  transition: var(--pro-transition-smooth);
}

@media (max-width: 768px) {
  .process-card {
    padding: 24px 20px;
    gap: 20px;
  }

  .process-number-wrap {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .process-step-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .process-desc {
    font-size: 13.5px;
    line-height: 1.7;
  }

  .process-arrow {
    height: 40px;
    margin: 5px 0;
  }

  .process-arrow::after {
    border-left-width: 15px;
    border-right-width: 15px;
    border-top-width: 10px;
  }
}


.entry-cta-container {
  --cta-font-serif: var(--font-serif, "Shippori Mincho", "Noto Serif JP", serif);
  --cta-font-sans: var(--font-sans, "Outfit", "Noto Sans JP", sans-serif);
  --cta-color-ink: #0f172a;
  --cta-color-charcoal: #334155;
  --cta-color-gold: #c5a880;
  --cta-color-gold-dark: #9e7d47;
  --cta-color-gold-light: #f7f1e6;
  --cta-color-border: #e2d3be;
  --cta-transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --cta-transition-fast: all 0.25s ease;
}

/* ==========================================================================
   Entry CTA Section (#sec_entry) - 3D Floating Reverse-Slanted Gold Section
   ========================================================================== */

#entry {
  position: relative;
  /* 左右余白なし：画面全幅（フルブリード）に拡張 */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  box-sizing: border-box;
  margin-top: 64px;
  margin-bottom: 0;
  z-index: 10;
  /* ★ 浮き上がり立体シャドウ：上部のみシャドウを投影（下部はフッターと水平にフラット接続） */
  filter: 
    drop-shadow(0 -12px 24px rgba(15, 23, 42, 0.08));
}

.entry-cta-container {
  width: 100%;
  position: relative;
  /* 立体的なグラデーション背景（上部が光を受け、下部に向かって深みが出るリッチな陰影） */
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #faf6ee 10%,
    #f6eee0 50%,
    #f0e4d0 100%
  );
  padding-left: calc(50vw - 50% + var(--container-gutter, 16px));
  padding-right: calc(50vw - 50% + var(--container-gutter, 16px));
  padding-top: 84px;
  padding-bottom: 84px;
  box-sizing: border-box;
  /* 募集要項とは逆の斜めカット（上部は右下がり、下部はフッターと水平接続） */
  clip-path: polygon(0 0, 100% 28px, 100% 100%, 0 100%);
}

/* 上部：光が当たって浮き上がるハイライト＆ゴールド光彩バー */
.entry-cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 20%,
    rgba(212, 184, 134, 1) 50%,
    rgba(255, 255, 255, 0.9) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(3px);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.8), 0 0 12px rgba(197, 168, 128, 0.6);
  pointer-events: none;
  z-index: 5;
}

/* 下部バーはフッターと真横でフラットに接するため非表示 */
.entry-cta-container::after {
  display: none;
}

.entry-cta-box {
  max-width: var(--layout-max-width, 1480px);
  margin: 0 auto;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: center;
  box-shadow: none;
  border-radius: 0px;
  position: relative;
  z-index: 6;
}

@media (max-width: 768px) {
  #entry {
    margin-top: 40px;
    margin-bottom: 0;
    filter: 
      drop-shadow(0 -8px 16px rgba(15, 23, 42, 0.06));
  }

  .entry-cta-container {
    padding-top: 56px;
    padding-bottom: 56px;
    clip-path: polygon(0 0, 100% 16px, 100% 100%, 0 100%);
  }
}

.entry-cta-lead-en {
  display: inline-block;
  font-family: var(--font-english, "Outfit", sans-serif);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--cta-color-gold-dark, #9e7d47);
  margin-bottom: -18px;
}

.entry-cta-title.section-title,
.entry-cta-title {
  font-family: var(--cta-font-serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--cta-color-ink);
  line-height: 1.35;
  margin: 0;
  padding: 0;
  border: none;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}

.entry-cta-desc {
  font-family: var(--cta-font-sans);
  font-size: clamp(14px, 1.25vw, 15.5px);
  line-height: 1.85;
  color: #334155;
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto;
  letter-spacing: 0.04em;
}

.entry-cta-title.section-title::before,
.entry-cta-title.section-title::after,
.entry-cta-title::before,
.entry-cta-title::after {
  display: none !important;
}

.entry-cta-title a,
.entry-cta-title a:hover,
.entry-cta-title a:focus,
.entry-cta-title a:active,
.entry-cta-title a:visited,
.entry-cta-title.section-title a,
.entry-cta-title.section-title a:hover,
.entry-cta-title.section-title a:focus,
.entry-cta-title.section-title a:active,
.entry-cta-title.section-title a:visited {
  color: var(--cta-color-ink, #0f172a) !important;
  text-decoration: none !important;
  cursor: default;
}

.entry-cta-btn-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.entry-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 48px;
  background: #ffffff;
  color: var(--cta-color-ink, #0f172a) !important;
  font-family: var(--cta-font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.4);
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.entry-cta-btn::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;
}

.entry-cta-btn span {
  position: relative;
  z-index: 2;
  color: var(--cta-color-ink, #0f172a) !important;
  transition: color 0.3s ease;
}

.entry-cta-btn-icon,
.entry-cta-btn-arrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-english, sans-serif);
  font-size: 18px;
  line-height: 1;
  color: var(--cta-color-ink, #0f172a);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.entry-cta-btn:hover {
  border-color: #0f172a;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
}

.entry-cta-btn:hover::before {
  width: 100%;
}

.entry-cta-btn:hover span {
  color: #ffffff !important;
}

.entry-cta-btn:hover .entry-cta-btn-icon,
.entry-cta-btn:hover .entry-cta-btn-arrow {
  color: #ffffff !important;
  transform: translateX(4px);
}

.entry-cta-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .entry-cta-box {
    padding: 36px 16px;
    gap: 20px;
  }

  .entry-cta-title.section-title,
  .entry-cta-title {
    font-size: 24px;
  }

  .entry-cta-btn {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    max-width: 320px;
  }
}
