/* ===========================
   リセット & ベース
   =========================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --header-height: 81px;
}

[id] {
  scroll-margin-top: var(--header-height);
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   ヘッダー
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 81px;
  background: rgba(48, 100, 178, 0.95);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__container {
  width: 100%;
  max-width: 1536px;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴエリア */
.header__logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo {
  height: 28px;
  width: auto;
}

.header__subtitle {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  line-height: 1.18;
  white-space: nowrap;
}

/* ナビゲーション */
.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.43;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header__nav-link:hover {
  opacity: 0.8;
}

/* 応募ボタン */
.header__apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 36px;
  background: #d23724;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header__apply-btn:hover {
  opacity: 0.85;
}

/* SP用 応募ボタン（PC時は非表示） */
.header__apply-btn--sp {
  display: none;
}

/* メインコンテンツ（ヘッダー分のオフセット） */
.main {
  padding-top: 81px;
}

/* ===========================
   キービジュアル
   =========================== */
.kv {
  position: relative;
  width: 100%;
  height: calc(100vh - 81px);
  min-height: 700px;
  overflow: hidden;
}

/* 背景画像 */
.kv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kv__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.kv__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(217, 216, 211, 1) 0%,
    rgba(217, 216, 211, 0) 100%
  );
}

/* コンテンツラッパー */
.kv__content {
  position: absolute;
  top: 50%;
  left: max(32px, calc(50% - 736px));
  transform: translateY(-50%);
  width: 524px;
  z-index: 1;
}

/* コンテンツカード */
.kv__card {
  width: 100%;
  padding: 40px 52px;
  background: rgba(255, 255, 255, 0.9);
  border-left: 4px solid #d23724;
  border-radius: 4px;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1),
    0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* キャッチコピー */
.kv__catch {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #11161f;
  margin-bottom: 12px;
}

.kv__catch-accent {
  font-size: 43px;
  color: #3064b2;
}

.kv__br--pc {
  display: inline;
}

/* 見出しエリア */
.kv__heading {
  margin-bottom: 24px;
}

.kv__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.25;
  color: #11161f;
}

.kv__subtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11;
  color: #d23724;
}

/* 説明文 */
.kv__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.625;
  color: #5d646f;
  margin-bottom: 28px;
}

/* 職種タグ */
.kv__tags {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.kv__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 38px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 44, 85, 0.2);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: #11161f;
}

.kv__tag-icon {
  width: 27px;
  height: 27px;
}

.kv__tag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  height: 20px;
  background: rgba(210, 55, 36, 0.1);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  color: #d23724;
  white-space: nowrap;
}

/* ボタン群 */
.kv__buttons {
  display: flex;
  gap: 16px;
}

.kv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.kv__btn:hover {
  opacity: 0.85;
}

.kv__btn--primary {
  width: 203px;
  height: 48px;
  background: #d23724;
  color: #fff;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.kv__btn--secondary {
  width: 205px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #919191;
  color: #11161f;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

/* 福利テキスト */
.kv__benefit {
  margin-top: 28px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
  color: #363636;
}

/* ===========================
   Philosophy（私たちの想い）
   =========================== */
.philosophy {
  background: #f5f3ee;
  padding: 100px 0;
}

.philosophy__container {
  max-width: 1472px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 96px;
}

/* 画像 */
.philosophy__image {
  flex: 1 1 0;
  max-width: 688px;
  position: relative;
  padding: 0;
}

.philosophy__image::before,
.philosophy__image::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  pointer-events: none;
}

/* 左上コーナーマーク */
.philosophy__image::before {
  top: -24px;
  left: -24px;
  border-top: 1px solid rgba(82, 105, 139, 0.3);
  border-left: 1px solid rgba(82, 105, 139, 0.3);
}

/* 右下コーナーマーク */
.philosophy__image::after {
  bottom: -24px;
  right: -24px;
  border-bottom: 1px solid rgba(82, 105, 139, 0.3);
  border-right: 1px solid rgba(82, 105, 139, 0.3);
}

.philosophy__img {
  width: 100%;
  height: auto;
  aspect-ratio: 688 / 516;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

/* テキストエリア */
.philosophy__body {
  flex: 1 1 0;
  min-width: 0;
}

/* セクションラベル */
.philosophy__label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #3064b2;
  margin-bottom: 16px;
}

.philosophy__label-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #3064b2;
}

/* 見出し */
.philosophy__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.25;
  letter-spacing: -1.5px;
  color: #11161f;
  margin-bottom: 32px;
}

.philosophy__title-accent {
  color: #3064b2;
}

/* 本文 */
.philosophy__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.philosophy__text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  color: #363636;
}

.philosophy__quote {
  font-weight: 900 !important;
  color: #11161f !important;
}

/* CTA テキスト */
.philosophy__cta {
  padding-top: 32px;
  border-top: 1px solid rgba(17, 22, 31, 0.1);
}

.philosophy__cta p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #363636;
}

/* ===========================
   Voice（スタッフの声）
   =========================== */
.voice {
  position: relative;
  background: #153a71;
  overflow: hidden;
  padding: 160px 0 140px;
}

/* 背景パターン */
.voice__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.voice__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* コンテナ */
.voice__container {
  position: relative;
  z-index: 1;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 32px;
}

/* セクションラベル */
.voice__label {
  font-family: "Yuji Syuku", serif;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ed422d;
  text-align: center;
  margin-bottom: 16px;
}

/* セクションタイトル */
.voice__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: #fff;
  text-align: center;
  margin-bottom: 80px;
}

/* カードグリッド */
.voice__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* カード */
.voice__card {
  display: flex;
  flex-direction: column;
}

/* 中央カードのスタッガード */
.voice__card--center {
  margin-top: 64px;
}

/* 写真コンテナ */
.voice__card-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
}

.voice__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 役職 */
.voice__card-role {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 4px;
}

/* メタ情報 */
.voice__card-meta {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.4px;
  color: #adadad;
  margin-bottom: 16px;
}

/* 説明文 */
.voice__card-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22.75px;
  color: #fff;
  margin-bottom: 24px;
}

/* ボタン */
.voice__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 118px;
  height: 36px;
  background: rgba(0, 29, 68, 0.92);
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.voice__card-btn:hover {
  opacity: 0.8;
}

/* ===========================
   Job（3つの仕事）
   =========================== */
.job {
  background: #f7f7f7;
  padding: 128px 0;
}

.job__container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 32px;
}

/* セクションヘッダー */
.job__label {
  font-family: "Yuji Syuku", serif;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #d23724;
  text-align: center;
  margin-bottom: 16px;
}

.job__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: #11161f;
  text-align: center;
  margin-bottom: 24px;
}

.job__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: #5d646f;
  text-align: center;
  margin-bottom: 64px;
}

/* ジョブアイテム */
.job__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 96px;
}

.job__item:last-child {
  margin-bottom: 0;
}

.job__item--reverse {
  grid-template-columns: 1fr 1fr;
}

.job__item--reverse .job__photo {
  order: 2;
}

.job__item--reverse .job__body {
  order: 1;
}

/* 写真 */
.job__photo {
  position: relative;
}

.job__photo-inner {
  aspect-ratio: 712 / 534;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.job__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* タグバッジ */
.job__photo-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #3064b2;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #3064b2;
  z-index: 1;
}

.job__item--reverse .job__photo-tag {
  right: auto;
  left: 16px;
}

.job__photo-tag--top {
  top: 16px;
  bottom: auto;
}

/* ボディ */
.job__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.job__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #104799;
  border-radius: 9999px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 20px;
  color: #fff;
  flex-shrink: 0;
  padding-bottom: 3px;
}

.job__name {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 36px;
  color: #104799;
}

/* ディテール */
.job__detail {
  margin-bottom: 24px;
}

.job__detail:last-child {
  margin-bottom: 0;
}

.job__detail-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.job__detail-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.job__detail-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 19px;
  line-height: 28px;
  color: #11161f;
}

.job__detail-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22.75px;
  color: #474646;
}

.job__detail-list {
  list-style: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #474646;
}

.job__detail-list li {
  margin-bottom: 8px;
}

.job__detail-list li:last-child {
  margin-bottom: 0;
}

.job__detail-list li::before {
  content: "・";
}

/* 優遇バナー */
.job__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  background: rgba(210, 55, 36, 0.1);
  border: 1px solid #d23724;
  border-radius: 8px;
  margin-top: 24px;
}

.job__banner p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  color: #d23724;
}

.job__banner-accent {
  font-size: 17px;
}

/* ===========================
   Culture（職場の特徴・環境）
   =========================== */
.culture {
  position: relative;
  padding: 128px 0 150px;
  overflow: hidden;
}

.culture__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.culture__bg-pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture__container {
  position: relative;
  z-index: 1;
  max-width: 1002px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.culture__header {
  text-align: center;
  margin-bottom: 64px;
}

.culture__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #11161f;
  margin-bottom: 20px;
}

.culture__subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #5d646f;
}

/* カード共通 */
.culture__card {
  background: #fff;
  border: 2px solid #3064b2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 10px 15px -3px rgba(48, 100, 178, 0.1),
    0px 4px 6px -4px rgba(48, 100, 178, 0.1);
}

.culture__card-body {
  padding: 0 47px;
}

.culture__card-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.culture__card-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.culture__card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  color: #11161f;
}

.culture__card-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #5d646f;
}

/* 大きいカード（美味しいまかない） */
.culture__card--large {
  display: grid;
  grid-template-columns: 41fr 59fr;
  height: 396px;
  margin-bottom: 82px;
}

.culture__card--large .culture__card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.culture__card--large .culture__card-image {
  height: 100%;
}

.culture__card--large .culture__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 小さいカードグリッド */
.culture__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 63px;
}

/* 小さいカード */
.culture__card--small {
  display: flex;
  flex-direction: column;
}

.culture__card--small .culture__card-image {
  height: 214px;
  flex-shrink: 0;
}

.culture__card--small .culture__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture__card--small .culture__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 28px 32px;
}

.culture__card--small .culture__card-heading {
  margin-bottom: 12px;
}

/* ===========================
   Role（募集要項）
   =========================== */
.role {
  background: #f6f5ee;
  padding: 128px 0;
}

.role__container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 32px;
}

/* セクションヘッダー */
.role__label {
  font-family: "Yuji Syuku", serif;
  font-size: 20px;
  line-height: 28px;
  color: #104799;
  text-align: center;
  margin-bottom: 8px;
}

.role__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: #11161f;
  text-align: center;
  margin-bottom: 24px;
}

.role__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #5d646f;
  text-align: center;
  margin-bottom: 32px;
}

.role__divider {
  height: 1px;
  background: #142c55;
  margin-bottom: 65px;
}

/* カード */
.role__card {
  background: #fff;
  border: 1px solid #c6cedb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1),
    0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* テーブル行 */
.role__row {
  display: grid;
  grid-template-columns: 200px 1fr;
}

.role__row + .role__row {
  border-top: 1px solid #c6cedb;
}

.role__row-header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 229, 235, 0.3);
  border-right: 1px solid #c6cedb;
  padding: 24px 16px;
}

.role__row-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  color: #104799;
  text-align: center;
}

.role__row-content {
  padding: 24px;
}

/* 職種タグ */
.role__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.role__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 1px solid #3064b2;
  border-radius: 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #3064b2;
}

/* 応募資格 */
.role__row--qualification .role__row-content {
  padding: 24px;
}

.role__content-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 17px;
  line-height: 24px;
  color: #11161f;
  margin-bottom: 8px;
}

.role__content-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #474646;
  margin-bottom: 16px;
}

.role__content-note {
  color: #888;
}

.role__highlight-box {
  display: inline-flex;
  align-items: center;
  padding: 12px 19px;
  background: rgba(210, 55, 36, 0.05);
  border: 1px solid #d23724;
  border-radius: 4px;
}

.role__highlight-box p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 20px;
  color: #d23724;
}

.role__highlight-accent {
  font-size: 15px;
}

/* 給与 */
.role__salary {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 28px;
  color: #d23724;
  margin-bottom: 16px;
}

.role__salary-amount {
  font-size: 23px;
}

.role__row--salary .role__content-note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #888;
  margin-bottom: 0;
}

/* 勤務地 */
.role__location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.role__location-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.role__location-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.role__location-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  color: #11161f;
}

.role__location-area {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #474646;
}

/* 勤務時間 */
.role__time-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.role__time-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.role__time-main {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  color: #11161f;
}

.role__row--time .role__content-text {
  margin-bottom: 0;
}

/* 待遇・福利厚生 */
.role__row--benefits {
  min-height: 336px;
}

.role__row--benefits .role__row-content {
  padding: 0;
  display: grid;
  grid-template-rows: 194px 1fr;
}

.role__benefits-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 194px;
}

.role__benefits-image {
  position: relative;
  overflow: hidden;
}

.role__benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.role__benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 48px;
  padding: 24px;
  align-content: center;
}

.role__benefits-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #11161f;
}

.role__benefit-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===========================
   Apply（ご応募について）
   =========================== */
.apply {
  position: relative;
  overflow: hidden;
  padding: 128px 0 140px;
}

.apply__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.apply__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apply__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(27, 85, 175, 0.7);
}

.apply__container {
  position: relative;
  z-index: 2;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.apply__header {
  margin-bottom: 40px;
}

.apply__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  color: #fff;
  margin-bottom: 20px;
}

.apply__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: rgba(245, 249, 255, 0.8);
}

.apply__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.15),
    0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 0 0 40px;
}

.apply__card-photo {
  width: 100%;
  margin-bottom: 24px;
  line-height: 0;
}

.apply__card-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.apply__card-photo picture img {
  border-radius: 12px 12px 0 0;
}

.apply__card-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #11161f;
  margin-bottom: 8px;
  padding: 0 24px;
}

.apply__card-sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #5d646f;
  margin-bottom: 24px;
  padding: 0 24px;
}

.apply__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 240px;
  height: 64px;
  padding: 0 24px;
  background: #216afa;
  border-radius: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  transition: opacity 0.2s ease;
  margin-bottom: 16px;
}

.apply__btn:hover {
  opacity: 0.9;
}

.apply__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 9999px;
  flex-shrink: 0;
}

.apply__btn-icon img {
  width: 16px;
  height: 16px;
}

.apply__note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #5d646f;
  padding: 0 24px;
}

.apply__note-link {
  color: #216afa;
  text-decoration: underline;
}

.apply__note-link:hover {
  opacity: 0.8;
}

/* ===========================
   フッター
   =========================== */
.footer {
  background: #11161f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 49px 0 48px;
}

.footer__container {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__logo {
  width: 166px;
  height: auto;
}

.footer__company {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.44;
  color: rgba(255, 255, 255, 0.6);
}

.footer__nav {
  display: flex;
  gap: 32px;
  margin-top: 19px;
}

.footer__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: rgba(255, 255, 255, 0.8);
  transition: opacity 0.2s ease;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.footer__copyright {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ===========================
   SP版（768px以下）
   =========================== */
@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .header {
    height: 65px;
  }

  .header__container {
    padding: 0 16px;
  }

  .header__logo {
    height: 25px;
  }

  .header__subtitle {
    font-size: 14px;
    line-height: 1.43;
  }

  /* PC用ナビを非表示 */
  .header__nav {
    display: none;
  }

  /* SP用 応募ボタン表示 */
  .header__apply-btn--sp {
    display: inline-flex;
    width: 80px;
    height: 32px;
    font-size: 14px;
    line-height: 1.43;
  }

  .main {
    padding-top: 65px;
  }

  /* --- KV SP --- */
  .kv {
    height: auto;
    min-height: auto;
  }

  .kv__bg {
    background-color: #595649;
  }

  .kv__bg-img {
    width: 100%;
    height: auto;
    object-fit: initial;
  }

  .kv__bg-overlay {
    display: none;
  }

  .kv__card {
    padding: 19px 26px 32px;
    text-align: center;
    border-left-color: #cc272e;
  }

  .kv__br--pc {
    display: none;
  }

  .kv__catch {
    font-size: 23px;
    line-height: 1.39;
    text-align: center;
    margin-bottom: 16px;
  }

  .kv__catch-accent {
    font-size: 27px;
  }

  .kv__heading {
    text-align: center;
    margin-bottom: 20px;
  }

  .kv__title {
    font-size: 36px;
    text-align: center;
  }

  .kv__subtitle {
    font-size: 24px;
    line-height: 1.33;
    text-align: center;
  }

  .kv__desc {
    font-size: 16px;
    text-align: center;
    margin-bottom: 24px;
  }

  .kv__tags {
    justify-content: center;
    gap: 7px;
    margin-bottom: 24px;
    padding-top: 22px;
    margin-left: -26px;
    margin-right: -26px;
  }

  .kv__tag--kitchen {
    position: relative;
  }

  .kv__tag-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    line-height: 1.45;
  }

  .kv__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .kv__btn--primary,
  .kv__btn--secondary {
    width: 100%;
    height: 50px;
  }

  .kv__benefit {
    color: #fff;
  }

  .kv__content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: auto;
    padding: 45.3% 16px 21px;
  }


  /* --- Philosophy SP --- */
  .philosophy {
    padding: 56px 0;
  }

  .philosophy__container {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0 20px;
  }

  .philosophy__image {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  .philosophy__image::before,
  .philosophy__image::after {
    display: none;
  }

  .philosophy__img {
    width: 100%;
    height: auto;
  }

  .philosophy__label {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .philosophy__label-line {
    width: 32px;
  }

  .philosophy__title {
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: -0.9px;
    margin-bottom: 24px;
  }

  .philosophy__text {
    gap: 20px;
    margin-bottom: 32px;
  }

  .philosophy__text p {
    font-size: 18px;
    line-height: 2;
  }

  .philosophy__cta {
    padding-top: 24px;
  }

  .philosophy__cta p {
    font-size: 20px;
    line-height: 1.55;
  }

  /* --- Voice SP --- */
  .voice {
    padding: 96px 0 96px;
  }

  .voice__title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 80px;
  }

  .voice__container {
    padding: 0 16px;
  }

  .voice__cards {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .voice__card--center {
    margin-top: 0;
  }

  .voice__card {
    align-items: center;
    text-align: center;
  }

  .voice__card-photo {
    width: 100%;
    margin-bottom: 24px;
  }

  .voice__card-desc {
    max-width: 350px;
  }

  .voice__card-btn {
    width: 141px;
    height: 45px;
  }

  /* --- Job SP --- */
  .job {
    padding: 80px 0;
  }

  .job__container {
    padding: 0 16px;
  }

  .job__title {
    font-size: 30px;
    line-height: 36px;
  }

  .job__desc {
    line-height: 24px;
    margin-bottom: 48px;
  }

  .job__item {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 80px;
  }

  .job__item--reverse .job__photo,
  .job__item--reverse .job__body {
    order: initial;
  }

  .job__photo-inner {
    aspect-ratio: auto;
    height: 268px;
  }

  .job__photo-tag {
    bottom: 16px;
    right: 16px;
  }

  .job__item--reverse .job__photo-tag {
    right: 16px;
    left: auto;
  }

  .job__photo-tag--top {
    top: auto;
    bottom: 16px;
  }

  .job__heading {
    margin-bottom: 20px;
  }

  .job__number {
    width: 32px;
    height: 32px;
    font-size: 20px;
    padding-bottom: 2px;
  }

  .job__name {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
  }

  .job__banner {
    margin-top: 32px;
  }

  .job__banner p {
    font-size: 14px;
  }

  .job__banner-accent {
    font-size: 14px;
  }

  /* --- Culture SP --- */
  .culture {
    padding: 80px 0 96px;
  }

  .culture__container {
    padding: 0 16px;
  }

  .culture__header {
    margin-bottom: 48px;
  }

  .culture__title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 16px;
  }

  .culture__subtitle {
    line-height: 24px;
  }

  .culture__subtitle br {
    display: none;
  }

  /* 大きいカードをSPでは縦並びに */
  .culture__card--large {
    display: flex;
    flex-direction: column;
    height: auto;
    margin-bottom: 48px;
  }

  .culture__card--large .culture__card-image {
    order: -1;
    height: 192px;
  }

  .culture__card--large .culture__card-body {
    padding: 28px 22px 32px;
  }

  /* 小さいカードを縦スタックに */
  .culture__cards {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .culture__card--small .culture__card-image {
    height: 192px;
  }

  .culture__card--small .culture__card-body {
    padding: 24px 22px 32px;
  }

  /* --- Role SP --- */
  .role {
    padding: 80px 0;
  }

  .role__container {
    padding: 0 16px;
  }

  .role__label {
    color: #142c55;
  }

  .role__title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .role__desc {
    margin-bottom: 32px;
  }

  .role__desc br {
    display: none;
  }

  .role__divider {
    margin-bottom: 65px;
  }

  /* SP版はテーブルを縦スタックに */
  .role__row {
    display: block;
  }

  .role__row-header {
    justify-content: flex-start;
    padding: 24px;
    border-right: none;
    border-bottom: 1px solid #c6cedb;
  }

  .role__row-label {
    font-size: 17px;
    text-align: left;
  }

  /* 職種 */
  .role__row:first-child .role__row-header {
    border-bottom: none;
  }

  .role__row:first-child .role__row-content {
    display: flex;
    align-items: center;
  }

  /* 応募資格 */
  .role__row--qualification .role__row-content {
    padding: 24px;
  }

  .role__content-title {
    font-size: 16px;
  }

  .role__content-text {
    line-height: 22px;
  }

  .role__highlight-box {
    padding: 12px 19px;
  }

  .role__highlight-box p {
    line-height: 20px;
  }

  .role__highlight-accent {
    font-size: 15px;
  }

  /* 給与 */
  .role__salary {
    font-size: 19px;
  }

  .role__salary-amount {
    font-size: 23px;
  }

  /* 勤務時間 */
  .role__row--time .role__content-text br {
    display: none;
  }

  /* 待遇・福利厚生 */
  .role__row--benefits {
    min-height: auto;
  }

  .role__row--benefits .role__row-content {
    display: block;
  }

  .role__benefits-images {
    height: 194px;
  }

  .role__benefits-list {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  /* --- Apply SP --- */
  .apply {
    padding: 80px 0 96px;
  }

  .apply__container {
    padding: 0 16px;
  }

  .apply__header {
    margin-bottom: 32px;
  }

  .apply__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .apply__desc {
    font-size: 18px;
    line-height: 28px;
  }

  .apply__card {
    border-radius: 12px;
    padding: 0 0 32px;
  }

  .apply__card-photo picture img {
    border-radius: 12px 12px 0 0;
  }

  .apply__card-photo {
    margin-bottom: 20px;
  }

  .apply__card-title {
    font-size: 22px;
    line-height: 28px;
    padding: 0 20px;
  }

  .apply__card-sub {
    font-size: 14px;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .apply__btn {
    min-width: 200px;
    height: 64px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .apply__note {
    font-size: 11px;
    line-height: 18px;
    padding: 0 20px;
  }

  /* --- Footer SP --- */
  .footer {
    padding: 55px 0 48px;
    padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
  }

  .footer__container {
    padding: 0 16px;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
  }

  .footer__brand {
    align-items: center;
    gap: 10px;
  }

  .footer__logo {
    width: 155px;
  }

  .footer__nav {
    margin-top: 32px;
    gap: 32px;
  }

  .footer__bottom {
    margin-top: 48px;
  }
}

/* ===========================
   スクロールアニメーション
   =========================== */

/* 基本フェードイン（下から） */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* KV content 専用（PC版のみ: translateY(-50%) との組み合わせ） */
@media (min-width: 769px) {
  .kv__content.fade-in {
    transform: translateY(calc(-50% + 30px));
  }

  .kv__content.fade-in.is-visible {
    transform: translateY(-50%);
  }
}

/* 左からスライドイン */
.fade-in--left {
  transform: translateX(-30px);
}

.fade-in--left.is-visible {
  transform: translateX(0);
}

/* 右からスライドイン */
.fade-in--right {
  transform: translateX(30px);
}

.fade-in--right.is-visible {
  transform: translateX(0);
}

/* スケールアップ */
.fade-in--scale {
  transform: scale(0.95);
}

.fade-in--scale.is-visible {
  transform: scale(1);
}

/* stagger 用遅延 */
.fade-in--delay-1 {
  transition-delay: 0.1s;
}

.fade-in--delay-2 {
  transition-delay: 0.2s;
}

.fade-in--delay-3 {
  transition-delay: 0.3s;
}

/* アニメーション無効化（モーション軽減設定のユーザー向け） */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
