/* ベーススタイル */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}
/* Header Block */
.header {
  position: absolute; /* 背景画像の上に重ねる想定 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  color: #fff;
  padding: 20px 40px 0; /* 左右の余白は画像に合わせて調整 */
}

.header__inner {
  width: 1600px; /* 必要に応じて調整 */
  max-width: 100%;
  margin: 0 auto;
}

/* 上段レイアウト */
.header__top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

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

.header__logo-img {
  height: 65px; /* 画像に合わせて調整 */
  display: block;
}

.header__site-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: bold;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 15px;
}

/* アクションエリア（ボタン群） */
.header__actions {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-right: 44px;
}

/* CVボタン共通スタイル */
.header__cv-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 20px;
  min-width: 160px;
  transition: opacity 0.3s;
}

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

/* 矢印アイコン（CSSで簡易作成） */
.header__arrow::after {
  content: "›";
  font-size: 16px;
  margin-left: 10px;
  display: inline-block;
  transform: translateY(-1px);
}

/* ボタンごとの色設定 */
.header__cv-btn--white {
  background-color: #fff;
  color: #333;
}

.header__cv-btn--red {
  background-color: #c92323; /* 画像の赤色 */
  color: #fff;
}

.header__cv-btn--brown {
  background-color: #8b1a1a; /* 画像の濃い赤/茶色 */
  color: #fff;
}

/* ハンバーガーメニュー */
.header__menu-toggle {
  background-color: #333;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 42px; /* ボタンの高さに合わせる */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin-left: 10px; /* ボタンとの隙間 */
}

.header__menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
}

/* 下段レイアウト */
.header__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ブランドリスト */
.header__brands {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

.header__brand-item img {
  height: 42px; /* ブランドロゴの高さ調整 */
  display: block;
  opacity: 0.9;
}

/* ナビゲーション */
.header__nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px;
}

.header__nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  transition: opacity 0.3s;
}

.header__nav-link::after {
  content: "›";
  font-family: sans-serif;
  font-size: 12px;
  margin-left: 5px;
  opacity: 0.7;
}

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

/* --- 親アイテムの調整 --- */
.header__nav-item {
  position: relative; /* ドロップダウンの基準位置にするため必須 */
  height: 100%;       /* ホバー判定を安定させるため */
  display: flex;
  align-items: center;
}

/* --- ドロップダウンコンテナ --- */
.header__sub-nav {
  position: absolute;
  top: 100%; /* 親の下に配置 */
  left: 50%;
  transform: translateX(-50%) translateY(10px); /* 中央寄せ & 少し下に配置(初期状態) */
  width: 220px; /* メニューの幅 */
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* 影をつけて浮かせる */
  border-radius: 4px; /* 少し角丸 */
  padding: 10px 0;
  
  /* 非表示状態の設定 */
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition: all 0.3s ease;
}

/* 矢印（吹き出しの突起）をつける場合（オプション） */
.header__sub-nav::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}

/* --- ホバー時の表示 --- */
/* 親アイテム(.header__nav-item)にホバーしたら表示 */
.header__nav-item:hover .header__sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0); /* 定位置に戻す */
}

/* --- ドロップダウンリストのスタイル --- */
.header__sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__sub-item {
  display: block;
}

.header__sub-link {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  border-bottom: 1px solid #f5f5f5; /* 薄い区切り線 */
}

/* 最後の線は消す */
.header__sub-item:last-child .header__sub-link {
  border-bottom: none;
}

/* リンクホバー時 */
.header__sub-link:hover {
  background-color: #fafafa; /* 薄いグレー背景 */
  color: #c92323; /* ブランドカラーの赤 */
}

/*下層header*/
.k_header {
  background-color: #fff;
  width: 100%;
  border-bottom: 1px solid #eee; /* 下部に薄い線を入れる場合 */
}

.k_header .header__inner {
  width: 1400px; /* 幅広のデザインに合わせて調整 */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* 行（Row）共通スタイル */
.k_header .header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- 上段 (Top Row) --- */
.k_header .header__row--top {
  padding: 20px 0;
}

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

.header__logo-img {
  height: 65px; /* ロゴ画像の高さ */
  display: block;
}

.k_header .header__site-name {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: sans-serif;
  color: #333;
}

/* アクションエリア（ボタン群） */
.k_header .header__actions {
  display: flex;
  align-items: stretch; /* 高さを揃える */
  gap: 10px;
  padding-right: 0;
}

/* CTAボタン共通 */
.k_header .header__cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  padding: 15px 20px;
  min-width: 180px;
  transition: opacity 0.3s;
}

.k_header .header__cta-btn::after {
  content: "›";
  font-size: 18px;
  margin-left: 10px;
  font-family: sans-serif;
  font-weight: normal;
  display: inline-block;
  transform: translateY(-3px);
}

.k_header .header__cta-btn:hover {
  opacity: 0.8;
}

/* ボタンの色バリエーション */
.k_header .header__cta-btn--gray {
  background-color: #e5e5e5;
  color: #333;
}

.k_header .header__cta-btn--red {
  background-color: #c92323;
  color: #fff;
}

.k_header .header__cta-btn--brown {
  background-color: #7d1818; /* 濃い茶色/エンジ */
  color: #fff;
}

/* ハンバーガーメニュー */
.k_header .header__menu-toggle {
  background-color: #222;
  border: none;
  cursor: pointer;
  width: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin-left: 10px; /* ボタンとの隙間 */
}

.k_header .header__menu-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
}

/* --- 下段 (Bottom Row) --- */
.k_header .header__row--bottom {
  padding-bottom: 20px;
}

/* ブランドロゴリスト */
.k_header .header__brand-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 25px;
}

.k_header .header__brand-item img {
  height: 35px; /* ブランドロゴの高さ */
  display: block;
  filter: grayscale(0%); /* 必要なら調整 */
}

/* ナビゲーション */
.k_header .header__nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
}

.k_header .header__nav-link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.k_header .header__nav-link:hover {
  color: #c92323;
}

.header .header__nav-link--dropdown::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-bottom: 3px; /* 位置微調整 */
  transition: border-color 0.3s;
}


/* ドロップダウン用の下矢印 (Chevron Down) */
.k_header .header__nav-link--dropdown::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-bottom: 3px; /* 位置微調整 */
  transition: border-color 0.3s;
}

.k_header .header__nav-link--dropdown:hover::after {
  border-color: #c92323;
}

@media screen and (max-width: 1300px) {
  
  .k_header .header__row--bottom {
    display: none;
  }
  /* .k_header .header__actions a {
    display: none;
  } */
  .header__bottom-row {
    display: none;
  }
}
/* レスポンシブ対応（簡易版） */
@media (max-width: 1024px) {
  .header__logo-img {
    height: 45px;
  }
  .header {
    padding-left: 0;
  }
  .header__bottom-row {
    display: none;
  }
  .header__cv-btn {
    display: none;
  }
  .k_header .header__inner {
    padding: 0 15px;
  }
  .header .header__site-title {
    display: none;
  }
  
  .k_header .header__row--bottom {
    display: none; /* スマホ・タブレットでは下段を隠してハンバーガーに格納する想定 */
  }

  .k_header .header__cta-btn {
    display: none; /* 画面が狭いときはボタンを隠すか調整 */
  }
  
  /* ハンバーガーだけ残すなどの処理が必要 */
  .k_header .header__actions {
    margin-left: auto;
  }
  
  .k_header .header__menu-toggle {
    display: flex; /* 常に表示 */
    width: 50px;
    height: 50px;
  }
  .k_header .header__site-name {
    display: none;
  }
}

#drawer {
	display: none;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%; /* スマホで見やすい幅 */
  height: 100vh;
  background-color: #fff;
  z-index: 999;
  transform: translateX(100%); /* 画面外へ隠す */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto; /* 縦スクロール有効 */
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

/* 開いた状態 */
.drawer.is-active {
  transform: translateX(0);
}

.drawer__inner {
  padding: 80px 20px 40px; /* 上部はボタンと被らないよう広めに */
}

/* バナーエリア */
.drawer__banners {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  justify-content: center;
}

.drawer__banner-link {
  text-decoration: none;
  display: block;
  transition: opacity 0.3s;
  width: 45%;
}
.drawer__banner-link:hover {
  opacity: 0.8;
}

.drawer__banner-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.4;
  box-sizing: border-box;
}
.drawer__banner-img img {
  width: 100%;
}
/* ナビゲーションエリア */
.drawer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.drawer__section {
  /* 各セクション */
  width: 29%;
}

.drawer__heading {
  font-size: 24px;
  font-weight: bold;
  border-left: 5px solid #c92323; /* フッターと同じ赤い線 */
  padding-left: 15px;
  margin: 0 0 15px;
  line-height: 1.2;
  color: #000;
  background: #fff;
  padding: 15px;
}

.drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer__item {
  border-bottom: 1px solid #f0f0f0;
}

.drawer__link {
  display: block;
  padding: 12px 10px 12px 20px; /* 少しインデント */
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s, background-color 0.3s;
  position: relative;
  font-weight: 600;
}

.drawer__link:hover {
  color: #c92323;
  background-color: #fafafa;
}

/* リンクの右矢印 */
.drawer__link::after {
  content: "›";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 0;
  color: #c92323;
  font-size: 24px;
  margin: auto;
  font-weight: bold;
}
.drawer__link:hover::after {
  color: #c92323;
}

/* 最下部リンク */
.drawer__bottom {
  border-top: 1px solid #eee;
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.drawer__bottom-link {
  font-size: 13px;
  color: #666;
  text-decoration: none;
}
.drawer__bottom-link:hover {
  text-decoration: underline;
}


/* --- 3. 背景オーバーレイ --- */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

label {
	cursor: pointer;
}
.open {
  position: fixed;
	z-index: 2;
	top: 22px;
	right: 22px;
	width: 54px;
	height: 54px;
	border-radius: 0;
	background: #262626;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 12;
}
.open::before,
.open::after {
	content: "";
}
.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 45%;
	border-bottom: 1px solid #fff;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.close {
	z-index: 1;
	inset: 0;
	pointer-events: none;
	transition: background .6s;
}
#drawer:checked + .open {
}
#drawer:checked + .open span {
	transform: scaleX(0);
}
#drawer:checked + .open::before {
	transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .open::after {
	transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .close {
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}

@media screen and (max-width: 1000px) {
  .drawer__banner-link {
    width: 100%;
  }
  .drawer__section {
    width: 100%;
  }
  .menu a {
    font-size: 16px;
    font-weight: 500;
  }
}
/* :::::: drawer menu :::::: */
.menu {
	z-index: 1;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: #F6F6F6;
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 10;
}
.menu h2 {
	color: white;
	font-family: "Ubuntu Condensed", sans-serif;
	font-weight: 400;
	letter-spacing: .1em;
	text-align: center;
}
.menu ul {
	margin: 0;
	padding: 0;
}
.menu li {
	line-height: 1.4;
}

.menu a {
	display: block;
	color: #000;
  font-size: 18px;
	text-decoration: inherit;
	transition: background .6s;
}

.menu .inners {
  padding-top: 220px;
}
.menu .inners .wraps {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  width: 90%;
  margin: auto;
  margin-bottom: 60px;
}
.menu .inners .ttl {
  display: flex;
  margin: 40px auto;
  width: 90%;
  gap: 20px;
}
.menu .inners .ttl img {
  width: 50%;
}
#drawer:checked ~ .menu {
	transform: none;
}
/* チェックボックスがONの間だけ、body（大外）のスクロールを禁止 */
body:has(.menu:checked) {
  overflow: hidden !important;
}


#top {
  position: relative;
}

#top .top_bg_image {
  width: 100%;
  filter: brightness(80%);
  height: 1000px;
  object-fit: cover;
}

#top .box {
  position: absolute;
  bottom: 84px;
  left: 92px;
}
#top .box figure {
  margin: 0;
}
#top .box img {
  width: 620px;
  max-width: 100%;
}

#top .top__txt {
  font-size: 18px;
  margin-top: 22px;
  color: #fff;
}

#top .top__ttl {
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  left: 30px;
  line-height: 64px;
  margin-top: 24px;
}

#top .top__ttl .moji {
  color: #EA3438;
  font-size: 86px;
  font-weight: 600;
}
#top .top__ttl .moji- {
  color: #EA3438;
  font-size: 64px;
  font-weight: 600;
}
#top .top__ttl .moji2 {
  color: #F2E6A5;
  font-size: 86px;
  font-weight: 600;
}
#top .top__ttl .moji3 {
  color: #F2E6A5;
  font-size: 64px;
  font-weight: 600;
}


.join__header .top__ttl {
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  left: 30px;
  line-height: 64px;
  margin-top: 24px;
}

.join__header .top__ttl .moji {
  color: #EA3438;
  font-size: 86px;
  font-weight: 600;
}
.join__header .top__ttl .moji- {
  color: #EA3438;
  font-size: 64px;
  font-weight: 600;
}
.join__header .top__ttl .moji2 {
  color: #F2E6A5;
  font-size: 86px;
  font-weight: 600;
}
.join__header .top__ttl .moji3 {
  color: #F2E6A5;
  font-size: 64px;
  font-weight: 600;
} 
.join__header .top__txt {
  font-size: 18px;
  left: 30px;
  color: #fff;
  margin-top: 20px;
}

#banner {
  padding: 50px 0;
}

#banner .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
#banner .wrapper .box {
  width: 50%;
}
#banner .wrapper .box img {
  width: 100%;
}

#banner a:hover {
  opacity: .7;
}

@media screen and (max-width: 1074px) {
  .open {
    top: 19px;
    right: 16px;
    width: 45px;
    height: 45px;
  }
  #top .top_bg_image {
    height: 750px;
    object-fit: cover;
  }
  #top .box {
    bottom: 60px;
    left: 26px;
  }
  #top .top__ttl {
    font-size: 38px;
  }
  #top .top__ttl .moji {
    font-size: 65px;
  }
  #top .top__ttl .moji- {
    font-size: 42px;
  }
  #top .top__ttl .moji2 {
    font-size: 65px;
  }
  #top .top__ttl .moji3 {
    font-size: 52px;
  }
  .join__header .top__ttl .moji {
    font-size: 68px;
  }
  .join__header .top__ttl .moji- {
    font-size: 52px;
  }
  .join__header .top__ttl {
    font-size: 36px;
    line-height: 61px;
  }
  .join__header .top__ttl .moji2 {
    font-size: 68px;
  }
  .join__header .top__ttl .moji3 {
    font-size: 52px;
  }
  #banner {
    padding: 25px 0 25px;
  }
  #banner .wrapper {
    gap: 20px;
    flex-wrap: wrap;
  }
  #banner .wrapper .box {
    width: 90%;
  }
}

@media screen and (max-width: 1000px) {
  .is_sp {
   display: none;
  }
}
@media screen and (min-width: 1001px) {
  .is_pc {
   display: none;
  }
}
@media screen and (max-width: 500px) {
#top .box img {
  width: 90%;
}

#top .top__txt {
  width: 90%;
}

#top .top__ttl {
  width: 90%;
}
}


.philosophy {
  padding: 100px 0; /* 上下の余白 */
  background-color: #fff;
}

/* Element: inner (BEM的な拡張) */
/* 左右レイアウトの定義 */
.philosophy__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px; /* 左右の間の余白 */
}

/* --- 左側：見出しエリア --- */
.philosophy__header {
  width: 45%; /* 左側の幅 */
  flex-shrink: 0; /* 幅を固定 */
}

.philosophy__en-title {
  display: block;
  font-size: 14px;
  color: #ccc; /* 薄いグレー */
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: sans-serif;
}

.philosophy__ja-title {
  font-size: 42px; /* 見出しサイズ（適宜調整） */
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}

/* Modifier: 赤文字ハイライト */
.philosophy__title-highlight {
  color: #d93d3d; /* 画像に近い赤色 */
}

/* --- 右側：本文エリア --- */
.philosophy__body {
  width: 55%; /* 右側の幅 */
  padding-top: 10px; /* 見出しとの高さ位置合わせの微調整 */
}

.philosophy__text {
  font-size: 15px;
  line-height: 2; /* 行間を広めに */
  margin-bottom: 30px; /* 段落ごとの余白 */
}

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

/* --- レスポンシブ対応（スマホ幅など） --- */
@media (max-width: 768px) {
  .philosophy__inner {
    flex-direction: column; /* 縦並びにする */
    gap: 40px;
  }
  
  .philosophy__header,
  .philosophy__body {
    width: 100%;
  }

  .philosophy__ja-title {
    font-size: 28px; /* スマホ用に文字サイズを小さく */
  }
  .philosophy {
    padding: 50px 0;
    width: 90%;
    margin: auto;
  }
  .philosophy__inner {
    gap: 25px;
  }
}


.aboutus {
  background-color: #f9f9f9; /* 薄いグレーの背景 */
  padding: 80px 0;
}

.aboutus__inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 1200px;
  max-width: 100%;
}

/* ヘッダーエリア */
.util__header {
  text-align: center;
  margin-bottom: 60px;
}

.util__header h2 {
  font-size: 50px;
  font-weight: bold;
  color: #eeeeee; /* 非常に薄いグレー */
  margin: 0;
  line-height: 1;
  font-family: sans-serif;
  letter-spacing: 0.05em;
}

.util-sub-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-top: 19px;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
}

.util__line {
  display: block;
  width: 50px;
  height: 4px; /* 少し太さを調整しました */
  margin: 0 auto;
  
  /* グラデーションを使って2色を表現 */
  /* to right: 左から右へ */
  /* #d93d3d 50%: 左半分(0-50%)を明るい赤に */
  /* #8b1a1a 50%: 右半分(50%-100%)を濃い赤に */
  background: linear-gradient(to right, #d93d3d 50%, #8b1a1a 50%);
}

/* カードリスト（グリッドレイアウト） */
.aboutus__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列 */
  gap: 50px; /* カード間の余白 */
}

/* カード本体 */
.aboutus__card {
  display: flex;
  background-color: #fff;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: opacity 0.3s, transform 0.3s;
  overflow: hidden;
  padding: 14px;
}

.aboutus__card:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

/* カード画像エリア */
.aboutus__card-img-wrapper {
  width: 45%; /* 左側の画像幅 */
  margin: 0;
  flex-shrink: 0;
}

.aboutus__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を枠いっぱいにトリミング */
  display: block;
}

/* カードテキストエリア */
.aboutus__card-body {
  padding: 20px 13px;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.aboutus__card-category {
  display: block;
  font-size: 11px;
  color: #ccc;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  font-family: sans-serif;
  font-weight: 600;
}

.aboutus__card-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 0;
  line-height: 1.4;
}

.aboutus__card-more {
  display: block;
  font-size: 15px;
  color: #c92323;
  font-weight: bold;
  text-align: right;
  margin-top: auto; /* 下に寄せる */
  margin-top: 20px!important;
}

/* レスポンシブ対応（タブレット・スマホ） */
@media (max-width: 900px) {
  .aboutus__card-img-wrapper {
    width: 40%;
  }
  .util__header {
    margin-bottom: 40px;
  }
  .util__header h2 {
    font-size: 36px;
    letter-spacing: 0px;
  }
  .aboutus__list {
    grid-template-columns: repeat(2, 1fr); /* タブレットは2列 */
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .aboutus {
    padding: 50px 0;
  }
  .aboutus__list {
    grid-template-columns: 1fr; /* スマホは1列 */
  }
  
  .aboutus__main-title {
    font-size: 36px;
  }
}

.work {
  padding: 80px 0;
  background-color: #fff;
}

.work__inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* コンテンツエリア（左右カラム） */
.work__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 80px;
}

/* 左側：チャート図 */
.work__visual {
  width: 45%;
}

.work__chart-figure {
  margin: 0;
}

.work__chart-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右側：職種リスト */
.work__list {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px; /* アイテム間の余白 */
}

/* 各職種アイテム */
.work__item {
  display: flex;
  align-items: center; /* 上下中央揃え */
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee; /* 区切り線 */
}

/* サムネイル画像 */
.work__item-thumb {
  width: 120px; /* 画像の幅 */
  flex-shrink: 0;
}

.work__item-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキストエリア */
.work__item-body {
  flex-grow: 1;
  color: #000;
}
.work__item-body span {
  color: #c92323;
}

.work__item-desc {
  font-size: 14px;
  margin: 0 0 10px;
}

.work__item-link {
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.work__item-link:hover {
  opacity: .7;
}

.work__item-icon-img {
  width: 80px;
}

/* --- 下部ボタン --- */
.work__btn-area {
  text-align: left;
}

.work__btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  width: 280px;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
}

.work__btn::after {
  content: "›";
  font-size: 18px;
}

.work__btn:hover {
  opacity: 0.7;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 900px) {
  .work {
    padding: 50px 0 0;
  }
  .work__content {
    flex-direction: column;
    gap: 35px;
  }
  
  .work__visual, 
  .work__list {
    width: 100%;
  }
  
  .work__visual {
    position: static;
    margin-bottom: 40px;
    max-width: 400px; /* スマホで大きすぎないように */
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1000px) {
  .work__item {
    flex-wrap: wrap; /* スマホでは折り返す */
    position: relative;
    flex-flow: nowrap;
  }
  
  .work__item-thumb {
    width: 35%;
  }

  .work__item-body {
    width: 60%;
  }

  .work__item-icon {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0.8); /* 少し小さくする */
    top: -9px;
    left: -14px;
  }
  .work__item-icon-img {
    width: 50px;
    border-radius: 100%;
  }
  .work__btn-area {
    text-align: center;
  }
}

.banners .wrapper {
  gap: 0!important;
}


.environment {
  background-color: #f9f9f9; /* 薄いグレーの背景 */
  padding: 80px 0;
}

.environment__inner {
  width: 1200px; /* PC幅 */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* リストコンテナ（グリッドレイアウト） */
.environment__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 30px; /* カード間の隙間 */
}

/* --- カード本体 --- */
.environment__card {
  display: flex; /* 画像とテキストを横並び */
  background-color: #fff;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s, transform 0.3s;
  padding: 25px;
}

.environment__card:hover {
  opacity: 0.9;
  transform: translateY(-3px); /* ホバー時に少し浮く */
}

/* 画像エリア */
.environment__card-img-wrapper {
  width: 40%; /* 画像幅 */
  margin: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.environment__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 枠いっぱいに表示 */
  display: block;
}

/* テキストエリア */
.environment__card-body {
  width: 60%;
  padding: 25px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.environment__card-category {
  display: block;
  font-size: 11px;
  color: #ccc;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  font-family: sans-serif;
  min-height: 1em; /* 空の場合でも高さ確保 */
}

.environment__card-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 15px;
}

.environment__card-text {
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.environment__card-more {
  display: block;
  font-size: 14px;
  color: #c92323; /* 赤文字 */
  font-weight: bold;
  text-align: right;
  margin-top: auto; /* 下に寄せる */
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .environment {
    padding: 50px 0;
  }
  .environment__card {
    padding: 25px 25px 0;
  }
  .environment__list {
    grid-template-columns: 1fr; /* タブレット以下は1列 */
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .environment__card {
    flex-direction: column; /* スマホは縦並び */
  }

  .environment__card-img-wrapper {
    width: 100%;
    height: 200px; /* 画像の高さを指定 */
  }

  .environment__card-body {
    width: 100%;
    padding: 20px 0;
  }
}

#image figure {
  margin: 0;
}

#image figure img {
  width: 100%;
}


.interview {
  padding: 80px 0;
}

.interview__slider {
  margin-top: 40px;
  position: relative;
  padding: 0 50px; /* 矢印を表示するスペース */
}

.interview__footer {
  margin-top: 60px;
  text-align: center;
}

.interview__btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 18px 80px;
  border-radius: 50px;
  font-size: 14px;
  position: relative;
  transition: opacity 0.3s;
}

.interview__btn::after {
  content: '>';
  position: absolute;
  right: 25px;
}

.interview__btn:hover {
  opacity: 0.8;
}

/* --- Interview Card (Block) --- */
.interview-card {
  display: block;
  text-decoration: none;
  color: #333;
}

.interview-card__img-wrapper {
  aspect-ratio: 1 / 1;
  background-color: #f0f0f0;
  margin-bottom: 20px;
  overflow: hidden;
}

.interview-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.interview-card__title {
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  margin: 0 0 15px 0;
}

.interview-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.interview-card__label {
  font-size: 10px;
  color: #fff;
  padding: 2px 6px;
  border-radius: 2px;
}

/* Modifier: ラベルの色分け */
.interview-card__label--red {
  background-color: #c0392b;
}

.interview-card__label--brown {
  background-color: #7e5c46;
}

.interview-card__info {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.interview-card__more {
  display: block;
  text-align: right;
  font-style: italic;
  font-size: 14px;
  font-weight: bold;
  color: #c0392b;
}

.interview-card__more::after {
  content: ' >';
}

/* --- Navigation Buttons (Swiperのカスタマイズ) --- */
.interview__prev,
.interview__next {
  color: #f0f0f0 !important; /* 画像の薄いグレーのボタンを再現 */
}

/* スマホ表示の調整 */
@media screen and (max-width: 767px) {
  .interview__slider {
    width: 90%;
    margin: auto;
  }
  .interview__slider {
    padding: 0 20px;
  }
  .interview-card__title {
    font-size: 16px;
  }
}

/* --- Block: news --- */
.news {
  padding: 80px 0;
  background-color: #fff;
}

.news__inner {
  width: 1000px; /* リストなので少し幅を狭めて読みやすく */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* リスト全体 */
.news__list {
  border-top: 1px solid #eee; /* 一番上の線 */
  margin-bottom: 60px;
}

/* 各ニュース項目 */
.news__item {
  border-bottom: 1px solid #eee; /* 区切り線 */
}

.news__link {
  display: flex;
  align-items: center; /* 上下中央揃え */
  padding: 25px 20px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s;
}

.news__link:hover {
  background-color: #f9f9f9;
}

/* メタ情報（日付＋カテゴリ）のラッパー */
/* スマホで縦並びにするためにグループ化しています */
.news__meta {
  display: flex;
  align-items: center;
  margin-right: 40px;
  flex-shrink: 0;
}

/* 日付 */
.news__date {
  font-size: 14px;
  font-family: sans-serif;
  margin-right: 20px;
  min-width: 115px; /* 幅を揃える */
}

/* カテゴリラベル */
.news__category {
  font-size: 12px;
  padding: 4px 15px;
  min-width: 100px; /* 幅を揃える */
  text-align: center;
  font-weight: bold;
  display: inline-block;
}

/* カテゴリ：白（社風紹介） */
.news__category--white {
  background-color: #fff;
  color: #888;
  border: 1px solid #ddd;
}

/* カテゴリ：赤（新卒） */
.news__category--red {
  background-color: #c92323;
  color: #fff;
  border: 1px solid #c92323;
}

/* タイトル */
.news__title {
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  flex-grow: 1; /* 残りの幅を使う */
  line-height: 1.6;
}

/* --- 下部ボタン --- */
.news__btn-area {
  text-align: center;
}

.news__btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222; /* 黒に近いグレー */
  color: #fff;
  text-decoration: none;
  width: 280px;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
}

.news__btn::after {
  content: "›";
  font-size: 18px;
}

.news__btn:hover {
  opacity: 0.8;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
  .news__link {
    flex-direction: column; /* 縦並び */
    align-items: flex-start; /* 左揃え */
    padding: 20px 0;
  }

  .news__meta {
    margin-bottom: 10px;
    margin-right: 0;
    width: 100%;
  }

  .news__title {
    font-size: 14px;
    width: 100%;
  }
}

.join {
  background-color: #222; /* 濃いグレー/黒 */
  color: #fff;
  padding: 100px 0;
}

.join__inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダーエリア */
.join__header {
  margin-bottom: 60px;
}

.join__label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  font-family: sans-serif;
}

/* タイトルエリア */
.join__title {
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 30px;
}

.join__title-row {
  display: block; /* 改行させる */
}

/* 文字サイズと色の調整 */
.join__title-highlight {
  font-size: 80px; /* 強調部分はかなり大きく */
  line-height: 1;
}

.join__title-highlight--red {
  color: #c92323; /* 画像の赤 */
}

.join__title-highlight--gold {
  color: #e6d385; /* 画像のゴールド/薄黄色 */
}

.join__title-text {
  font-size: 40px; /* 通常の白い文字 */
  vertical-align: baseline;
}

.join__desc {
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;
}

/* --- コンテンツエリア（カード横並び） --- */
.join__content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* カード本体 */
.join__card {
  background-color: #fff;
  color: #333;
  width: 48%; /* 2列 */
  padding: 30px;
  box-sizing: border-box;
}

/* カードヘッダー（左線とタイトル） */
.join__card-head {
  margin-bottom: 20px;
  padding-left: 15px; /* ボーダーとの距離 */
  border-left: 6px solid #ccc; /* デフォルト色（上書きされる） */
}

.join__card-head--red {
  border-left-color: #c92323; /* 赤 */
}

.join__card-head--brown {
  border-left-color: #8b1a1a; /* 茶/濃赤 */
}

.join__card-en {
  display: block;
  font-size: 11px;
  color: #ccc;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
  font-family: sans-serif;
}

.join__card-ja {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

/* カード画像 */
.join__card-img-wrapper {
  margin: 0 0 20px 0;
  width: 100%;
  height: 200px; /* 高さを固定して揃える */
  overflow: hidden;
  background-color: #eee;
}

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

/* リンクエリアのコンテナ：横並びにする */
.join__card-links {
  display: flex;
  flex-wrap: wrap; /* 画面幅が狭いときに折り返す */
  gap: 15px 20px; /* 上下15px, 左右20pxの間隔 */
  margin-top: auto; /* カード内で下に寄せる */
}

/* 個別のリンクスタイル */
.join__link {
  font-size: 13px;
  color: #333; /* 文字色は黒/ダークグレー */
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s;
  line-height: 1;
}

/* 右側の赤い矢印 (>) */
.join__link::after {
  content: "›"; /* 矢印マーク */
  color: #c92323; /* 画像の赤色 */
  font-size: 18px; /* 矢印を少し大きく */
  margin-left: 5px; /* テキストとの隙間 */
  font-family: sans-serif; /* フォント依存を防ぐ */
  margin-top: -2px; /* 位置の微調整 */
}

/* ホバー時の挙動 */
.join__link:hover {
  opacity: 0.7; /* 少し薄くする */
}

/* --- レスポンシブ対応 --- */
@media (max-width: 900px) {
  .join {
    padding: 50px 0;
  } 
  .join__title-highlight {
    font-size: 60px;
  }
  .join__title-text {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .join__content {
    flex-direction: column; /* 縦積み */
    gap: 30px;
  }

  .join__card {
    width: 100%;
    padding: 25px 20px;
  }

  .join__title-highlight {
    font-size: 48px;
  }
  .join__title-text {
    font-size: 24px;
  }
  
  .join__card-img-wrapper {
    height: auto;
    aspect-ratio: 16/9;
  }
}


/* --- Block: footer --- */
.footer {
  background-color: #fff;
  padding: 80px 0 40px;
  font-size: 14px;
}

.footer__inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ナビゲーションエリア */
.footer__nav {
  display: flex;
  justify-content: space-between; /* 各カラムを均等配置 */
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 80px;
}

/* 各カラム */
.footer__nav-col {
  /* 幅を指定しない場合はコンテンツ量なり、またはflex: 1等で調整 */
}

/* 見出し（または見出しレベルのリンク） */
.footer__nav-head {
  display: block;
  font-weight: bold; /* 少し太字に */
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

.footer__nav-head--link {
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer__nav-head--link:hover {
  opacity: 0.7;
}

/* サブリスト */
.footer__sub-list {
  display: flex;
  flex-direction: column;
  gap: 12px; /* 項目間の余白 */
  padding-left: 10px;
  margin: 0;
}

/* プレーンなリスト（右端のその他リンク用） */
.footer__sub-list--plain {
  gap: 20px; /* 少し広めに */
}

.footer__sub-link {
  text-decoration: none;
  color: #888; /* グレー */
  font-size: 14px;
  transition: color 0.3s;
}

.footer__sub-link:hover {
  color: #c92323; /* ホバー時にブランドカラー */
}

.footer__sub-link::before {
  content: "・";
  margin-right: 5px;
}

/* 右端のリンクなどは中黒（・）が不要な場合 */
.footer__sub-list--plain .footer__sub-link::before {
  display: none;
}

.footer__sub-link--bold {
  color: #333;
  font-weight: normal; /* 画像では通常の太さに見えるため調整 */
}

/* メインロゴエリア */
.footer__main-logo {
  text-align: center;
  margin-bottom: 40px;
}

.footer__logo-img {
  height: 70px; /* 適切な高さに調整 */
  width: auto;
}

/* ブランドリストエリア */
.footer__brands {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.footer__brand-item a {
  display: block;
  transition: opacity 0.3s;
}

.footer__brand-item a:hover {
  opacity: 0.8;
}

.footer__brand-img {
  height: 40px; /* ブランドロゴの高さ調整 */
  width: auto;
  display: block;
}

/* コピーライト */
.footer__copyright {
  text-align: center;
  color: #ccc;
  font-size: 10px;
  margin: 0;
  letter-spacing: 0.05em;
}
footer ul li {
  list-style: none;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 900px) {
  .footer__nav {
    margin-bottom: 30px;
  }
  .footer__sub-list {
    gap: 2px;
  }
  .footer__brands {
    padding-left: 0;
  }
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* タブレットで3列 */
    gap: 40px 20px;
  }
}

@media (max-width: 600px) {
  .footer__nav {
    display: flex;
    flex-direction: column; /* スマホで縦並び */
    gap: 15px;
  }
  
  .footer__sub-link {
    font-size: 14px; /* スマホでは少し大きくしてタップしやすく */
    padding: 5px 0;
    display: block;
  }

  .footer__brands {
    gap: 20px;
    flex-direction: column; /* ブランドロゴも縦並びにする場合 */
  }
}

/* Block: main */
.main {
  padding-top: 60px; /* 上部の余白 */
  padding-bottom: 80px;
}
.message_main {
  padding-bottom: 0;
}
.vision_main {
  padding-bottom: 0;
}
.talent_main {
  padding-bottom: 0;
}
.date__main {
  padding-bottom: 0;
}
.industry_main {
  padding-bottom: 0;
}
.passion_main {
  padding-bottom: 0;
}
.company_main {
  padding-bottom: 0;
}

.train_main {
  padding-bottom: 0;
}
.faq_main {
  padding-bottom: 0;
}
.movie_main {
  padding-bottom: 0;
}
.culutre_main {
  padding-bottom: 0;
}
.main__inner {
  width: 1280px;
}

/* Header Area (タイトル + パンくず) */
.main__header {
  display: flex;
  justify-content: space-between; /* 左右に離す */
  align-items: flex-end; /* 下揃え */
  margin-bottom: 40px; /* 画像との余白 */
  flex-wrap: wrap; /* スマホで折り返し */
  gap: 20px;
}

/* Titles */
.main__titles {
  display: flex;
  flex-direction: column;
}

.main__sub-title {
  font-size: 14px;
  color: #ddd; /* 非常に薄いグレー */
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: sans-serif;
  margin-bottom: 10px;
  display: block;
}

.main__title {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

/* Breadcrumbs */
.main__breadcrumbs-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #333;
  flex-wrap: wrap;
  line-height: 2;
}

.main__breadcrumbs-item {
  display: flex;
  align-items: center;
}

.main__breadcrumbs-item:not(:last-child)::after {
  content: ">"; /* 区切り文字 */
  margin: 0 10px;
  font-family: sans-serif;
}

.main__breadcrumbs-link {
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}

.main__breadcrumbs-link:hover {
  opacity: 0.7;
}

.main__breadcrumbs-current {
  /* 現在のページはリンクなし */
}

/* Visual Image */
.main__visual {
  margin: 0;
  width: 100%;
}

.main__visual-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .main__header {
    flex-direction: column; /* 縦並び */
    align-items: flex-start; /* 左揃え */
    margin-bottom: 30px;
  }

  .main__title {
    font-size: 28px;
  }
  
  .main__breadcrumbs-list {
    flex-wrap: wrap; /* パンくずが長ければ折り返し */
  }
}



/* Block: passion */
.passion {
  padding: 80px 0;
  background-color: #fff;
}

/* Flexboxで左右レイアウトを作成 */
.passion__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* stickyを効かせるために重要 */
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* --- 左側：サイドバー --- */
.passion__sidebar {
  width: 280px; /* 固定幅 */
  flex-shrink: 0;
  position: sticky; /* スクロール追従 */
  top: 100px; /* 画面上部からの停止位置（ヘッダーの高さを考慮して調整してください） */
}

.passion__title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}
.passion__title span {
  color: #d93d3d;
}
.passion__title_red {
  font-size: 22px;
  color: #990003;
}
.passion__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.passion__name {
  text-align: right;
  font-size: 16px;
}
.passion__name span {
  font-size: 22px;
}
.passion__nav-item {
  margin-bottom: 20px;
}

.passion__nav-link {
  text-decoration: none;
  color: #000; /* デフォルトの色（グレー） */
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.passion__nav-link::before {
  content: "›";
  margin-right: 5px;
  font-family: sans-serif;
}

.passion__nav-num {
  margin-right: 5px;
  color: #c92323; /* 数字だけ常に赤くする場合 */
  /* 文字と一緒に色を変えるなら inherit にしてください */
}

/* アクティブ時のスタイル（JSで付与） */
.passion__nav-link--active {
  color: #c92323; /* 赤色 */
}

/* --- 右側：メインコンテンツ --- */
.passion__main {
  width: calc(100% - 300px); /* サイドバー + 余白分を引く */
}

/* コンテンツセクション */
.passion__section {
  margin-bottom: 100px;
  scroll-margin-top: 100px; /* リンククリック時のスクロール位置調整 */
}
.passion__section figure {
  margin: 0;
}
.passion__section figure img {
  width: 100%;
}

/* セクションヘッダー */
.passion__header {
  background-color: #fff; /* 薄いグレー背景 */
  border-left: 5px solid #c92323; /* 左の赤線 */
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.passion__header-num {
  font-size: 42px;
  font-weight: bold;
  color: #c92323;
  line-height: 1;
}

.passion__header-title {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

/* 本文エリア */
.passion__body {
  padding-left: 10px; /* 必要に応じて調整 */
}

.passion__sub-title {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 20px;
  border-bottom: 1px solid transparent; /* 必要なら下線を引く */
}

.passion__text {
  font-size: 15px;
  margin-bottom: 30px;
  text-align: left;
}

.passion__note {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}

.passion__highlight-red {
  color: #c92323;
  font-weight: bold;
}

/* 画像スタイル */
.passion__block {
  margin-bottom: 60px;
}

.passion__top-title {
  color: #c92323;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
  display: inline-block;
}

.passion__figure {
  margin: 0 0 20px 0;
  width: 100%;
}

.passion__img {
  width: 100%;
  height: auto;
  display: block;
}

/* 画像の横並び設定 */
.passion__img-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.passion__img-row--2col .passion__figure {
  width: 50%;
}

.passion__img-row--3col .passion__figure {
  width: 33.333%;
}
.passion__nav-link--active {
  color: #c92323; /* アクティブ時は全体を赤にする */
}
/* レスポンシブ対応 */
@media (max-width: 900px) {

  .main {
    width: 90%;
    margin: auto;
  }
  .passion {
    padding: 30px 0;
  }
  .passion__section {
    margin-bottom: 40px;
  }
  .passion__block {
    margin-bottom: 40px;
  }
  .passion__body {
    padding-left: 0;
  }
  .passion__title {
    font-size: 21px;
  }
  .passion__text {
    letter-spacing: -.5px;
  }
  .passion__inner {
    flex-direction: column;
  }

  .passion__sidebar {
    width: 100%;
    position: static; /* スマホでは固定解除 */
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
  
  .passion__nav-list {
    display: flex;
    gap: 20px;
  }
  .passion__header {
    padding-left: 13px;
  }

  .passion__main {
    width: 100%;
  }
  
  .passion__header-title {
    font-size: 24px;
    line-height: 34px;
  }
  
  .passion__img-row {
    flex-direction: column; /* スマホでは画像を縦積みに */
  }
  
  .passion__img-row--2col .passion__figure,
  .passion__img-row--3col .passion__figure {
    width: 100%;
  }
  .passion__nav-list {
    flex-wrap: wrap;
  }
  .passion__nav-item {
    flex-basis: 46%;
    margin-bottom: 0;
  }
  .passion__header-num {
    font-size: 25px;
  }
  .passion__nav-list {
    margin-bottom: 25px;
  }
}


.date {
  background-color: #f9f9f9; /* 全体の背景色（薄いグレー） */
  padding: 80px 0;
}

.date__inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px; /* 各セクション間の余白 */
}

/* --- 1. Top Area (実績No.1) --- */
.data__top {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.data__top-header {
  background-color: #9e2a2b; /* ヘッダーの濃い赤 */
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  margin: 0;
}

.data__top-body {
  padding: 30px;
  text-align: center;
}

.data__top-figure {
  margin: 0;
}

.data__top-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* --- Common Layout: Row (2 Columns) --- */
.data__row {
  display: flex;
  gap: 30px;
}

/* --- Common Card Style --- */
.data__card {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  width: 50%;
}

.data__card-header {
  background-color: #9e2a2b; /* ヘッダーの濃い赤 */
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  margin: 0;
}

.data__card-body {
  padding: 30px 20px;
  flex-grow: 1; /* 高さを揃える */
}

.data__chart-figure {
  margin: 0 0 20px 0;
  text-align: center;
}

.data__chart-img {
  max-width: 100%;
  height: auto;
}

.data__card-text {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* --- 3. Stats Area (4 Columns) --- */
.data__stats-list {
  display: flex;
  
  gap: 20px;
}

.data__stat-item {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  width: 25%;
}

.data__stat-header {
  background-color: #9e2a2b;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  padding: 8px 5px;
  margin: 0;
}

.data__stat-body {
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.data__stat-body img {
  width: 100%;
  height: 102px;
  object-fit: contain;
}

.data__stat-num {
  font-size: 40px;
  color: #c92323; /* 数字の赤 */
  font-weight: bold;
  line-height: 1;
  font-family: sans-serif;
}

.data__stat-unit {
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}

.data__stat-note {
  font-size: 10px;
  color: #666;
  margin-top: 5px;
}

/* --- 5. Ranking Style --- */
.data__card-body--ranking {
  padding: 0px 15px 10px;
}

.data__card-body--ranking img {
  width: 100%;
}

.data__ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.data__ranking-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  background-color: #fcfcfc; /* 2位以下の背景色 */
}

.data__ranking-item:last-child {
  border-bottom: none;
}

/* 1位の特別スタイル */
.data__ranking-item--first {
  background-color: #fff8e1; /* 薄いゴールド背景 */
  padding: 20px;
}

.data__rank-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  flex-shrink: 0;
  margin-right: 15px;
  font-weight: bold;
  font-family: serif; /* 王冠っぽさを出すため */
  font-size: 20px;
  color: #ccc; /* デフォルトの色 */
}

/* 順位ごとのアイコン色装飾 (必要に応じて画像アイコンに差し替えてください) */
.data__ranking-item--first .data__rank-icon {
  color: #d4af37; /* ゴールド */
  font-size: 30px;
  /* ここに王冠アイコンの画像背景などを指定するとより近くなります */
}

.data__ranking-item--second .data__rank-icon {
  color: #a0a0a0; /* シルバー */
}

.data__ranking-item--third .data__rank-icon {
  color: #cd7f32; /* ブロンズ */
}

.data__rank-text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
}



/* --- Responsive --- */
@media (max-width: 900px) {
  .date {
    padding: 50px 0;
  }
  .data__stats-list {
    grid-template-columns: repeat(2, 1fr); /* タブレットは2列 */
  }
  .data__row {
    flex-wrap: wrap;
  }
  .data__card {
    width: 100%;
  }
  .data__stats-list {
    flex-wrap: wrap;
  }
  .data__stat-item {
    width: 46%;
  }
}

@media (max-width: 600px) {
  .data__row {
    grid-template-columns: 1fr; /* スマホは1列 */
  }

  
  .data__stat-num {
    font-size: 32px;
  }
}


.company-bg {
  background: #f9f9f9;
}

/* --- Block: movie --- */
.movie {
  padding: 80px 0;
  background-color: #f9f9f9; /* 画像背景の薄いグレー */
}
.movie iframe {
  width: 100%;
  margin-bottom: 10px;
}
.movie__inner {
  width: 1280px; /* カードが大きくなりすぎないよう調整 */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}


/* --- 動画リスト（グリッドレイアウト） --- */
.movie__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 40px; /* アイテム間の余白 */
}

/* 個別アイテム */
.movie__item {
  width: 100%;
}

.movie__link {
  text-decoration: none;
  color: #333;
  display: block;
  transition: opacity 0.3s;
}

.movie__link:hover {
  opacity: 0.8;
}

/* サムネイルエリア */
.movie__thumb {
  width: 100%;
  padding-top: 56.25%; /* 16:9 の比率を維持 (9 / 16 = 0.5625) */
  background-color: #ea55ff; /* 画像のピンク色 */
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}

/* 実際の画像を入れる場合 */
.movie__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキストエリア */
.movie__title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
  text-align: left; /* 左揃え */
}

/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
  .movie__list {
    grid-template-columns: 1fr; /* スマホでは1列 */
    gap: 30px;
  }

  .movie__title {
    font-size: 13px;
  }
}


.company-profile {
  padding: 0;
  background-color: #fff;
}

.company-profile__inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

/* Table Style (DL) */
.company-table {
  width: 100%;
  margin: 0;
  border-top: 1px solid #eee; /* 一番上の線 */
}

/* 各行の設定 */
.company-table__row {
  display: flex;
  border-bottom: 1px solid #eee; /* 区切り線 */
  width: 100%;
}

/* 左カラム：項目名 */
.company-table__term {
  width: 25%; /* 左側の幅 */
  padding: 25px 20px;
  font-weight: bold;
  background-color: #fcfcfc; /* ほんの少しグレーを入れて見出し感を出す場合 */
  display: flex;
  align-items: flex-start; /* 上揃え */
  margin: 0; /* デフォルトマージンリセット */
  flex-shrink: 0; /* 幅を固定 */
}

/* 右カラム：内容 */
.company-table__desc {
  width: 75%; /* 右側の幅 */
  padding: 25px 30px;
  margin: 0; /* デフォルトマージンリセット */
}

/* --- 事業内容の内部スタイル --- */
.company-table__service-group {
  margin-bottom: 20px;
}

.company-table__service-group:last-child {
  margin-bottom: 0;
}

.company-table__service-title {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.company-table__service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-table__service-list li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 3px;
  font-size: 14px;
}

/* 「・」のブレットを手動で付ける、またはlist-styleを使う */
.company-table__service-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.company-table__map-link {
  color: #c92323;
}
.company-table__map-link:hover {
  opacity: .7;
}
/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
  .company-table__row {
    flex-direction: column; /* 縦並び */
  }

  .company-table__term {
    width: 100%;
    background-color: #f9f9f9; /* スマホ時は背景色で見出しを明確化 */
    padding: 15px 20px;
    border-bottom: 1px dashed #eee; /* 項目と内容の間に薄い線 */
  }

  .company-table__desc {
    width: 100%;
    padding: 20px;
  }
}

/* グリッドレイアウト */
.training__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 30px; /* カード間の余白 */
  padding-bottom: 80px;
}

/* カード本体 */
.training__card {
  background-color: #fff;
  padding: 40px 30px;
  /* 必要であれば角丸や影を追加 */
  /* border-radius: 4px; */
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.05); */
}

/* 見出し */
.training__card-title {
  color: #c92323; /* アレスレッド */
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 20px;
  line-height: 1.4;
}

/* 説明文 */
.training__card-desc {
  font-size: 14px;
  margin: 0;
  line-height: 1.8;
}

/* レスポンシブ対応 (SP) */
@media (max-width: 768px) {
  .training {
    padding: 50px 0 0;
  }
  .training__list {
    grid-template-columns: 1fr; /* スマホでは1列 */
    gap: 20px;
    padding-bottom: 50px;
  }

  .training__card {
    padding: 30px 20px;
  }

  .training__card-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.training {
  background: #F6F6F6;
}


.license {
  padding: 60px 0;
  background-color: #f9f9f9; /* 背景色（必要に応じて変更してください） */
}

.license__inner {
  width: 800px; /* リストの幅が広がりすぎないように制限 */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Block: license-list */
.license-list {
  width: 50%;
  margin: 0;
  background-color: #fff; /* リスト部分の背景を白に */
  border-top: 1px solid #eee; /* 一番上の線 */
}

/* Row */
.license-list__row {
  display: flex;
  justify-content: space-between; /* 左右端に配置 */
  align-items: center;
  border-bottom: 1px solid #eee; /* 区切り線 */
  padding: 10px 30px; /* 内側の余白 */
}

/* Left: 資格名 */
.license-list__name {
  margin: 0;
  font-weight: normal; /* 画像に合わせて通常の太さ */
  font-size: 16px;
}

/* Right: 人数 */
.license-list__count {
  margin: 0;
  font-weight: normal;
  font-size: 16px;
}

/* レスポンシブ対応 (SP) */
@media (max-width: 600px) {
  .license-list__row {
    padding: 15px 20px; /* スマホでは少し余白を詰める */
  }
  
  .license-list__name,
  .license-list__count {
    font-size: 14px;
  }
}


.recruit-list {
  background-color: #f9f9f9; /* 薄いグレー背景 */
  padding: 80px 0;
}

.recruit-list__inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- フィルタボタンエリア --- */
.recruit-list__filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.recruit-list__filter-btn {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 30px; /* 丸み */
  padding: 12px 40px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
}

.recruit-list__filter-btn:hover {
  background-color: #eee;
}

/* アクティブ状態（黒背景） */
.recruit-list__filter-btn--active {
  background-color: #222;
  color: #fff;
  border-color: #222;
}
.recruit-list__filter-btn--active:hover {
  background-color: #333;
}


/* --- カードリスト --- */
.recruit-list__items {
  display: flex;
  flex-direction: column;
  gap: 20px; /* カード間の隙間 */
}

/* カード本体 */
.recruit-list__card {
  display: flex;
  align-items: center;
  background-color: #fff;
  text-decoration: none;
  color: #333;
  padding: 0;
  border-radius: 4px; /* 微妙な角丸 */
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.recruit-list__card:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* 左側：アイコンエリア */
.recruit-list__icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  margin: 20px; /* 上下左右に余白 */
  font-size: 10px;
  font-weight: bold;
  line-height: 1.2;
  margin-right: 30px;
}



.recruit-list__icon {
  width: 100%; /* アイコン画像のサイズ */
  height: auto;
  margin-bottom: 5px;
}

/* 中央：テキストエリア */
.recruit-list__body {
  flex-grow: 1; /* 余白を埋める */
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* タグ（新卒/中途） */
.recruit-list__tag {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 8px;
}

.recruit-list__tag--new {
  background-color: #c92323; /* 新卒：赤 */
}

.recruit-list__tag--career {
  background-color: #8b1a1a; /* 中途：茶 */
}

/* 職種タイトル */
.recruit-list__title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
  line-height: 1.4;
}

/* 説明文 */
.recruit-list__desc {
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

/* 右側：more > */
.recruit-list__more {
  font-size: 12px;
  color: #c92323;
  font-weight: bold;
  white-space: nowrap; /* 折り返し禁止 */
  margin-right: 30px;
  margin-left: 10px;
}

/* レスポンシブ対応 (SP) */
@media (max-width: 768px) {
  .recruit-list__card {
    flex-wrap: wrap; /* スマホでは折り返す */
    position: relative;
    padding-bottom: 20px; /* more用の余白 */
  }

  .recruit-list__icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 15px;
    font-size: 8px;
  }
  
  .recruit-list__icon {
    width: 62px;
  }

  .recruit-list__body {
    width: calc(100% - 100px); /* アイコン分を引く */
    padding-right: 15px;
  }

  .recruit-list__title {
    font-size: 16px;
  }

  .recruit-list__more {
    position: absolute;
    bottom: 15px;
    right: 15px;
  }
  
  /* フィルタボタンの調整 */
  .recruit-list__filters {
    gap: 10px;
  }
  
  .recruit-list__filter-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  .license-list {
    width: 100%;
  }
}

/* フィルタリング時の非表示クラス */
.is-hidden {
  display: none !important;
}

/* フェードインアニメーション用 */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Block: job-detail */
.job-detail {
  padding: 40px 0 80px;
  background-color: #fff;
}

.job-detail__inner {
  width: 1000px; /* 本文エリアの点線枠に合わせる幅 */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- パンくずリスト --- */
.job-detail__breadcrumbs {
  margin-bottom: 40px;
}

.job-detail__breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #666;
}

.job-detail__breadcrumbs-item:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
}

.job-detail__breadcrumbs-link {
  text-decoration: none;
  color: #666;
  transition: color 0.3s;
}

.job-detail__breadcrumbs-link:hover {
  color: #c92323;
}

/* --- ヘッダーエリア --- */
.job-detail__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

/* 左側：情報 */
.job-detail__info {
  width: 50%;
  padding-top: 10px;
}

.job-detail__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.job-detail__tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.job-detail__tag--new {
  background-color: #c92323; /* 新卒：赤 */
}

.job-detail__cat-name {
  font-size: 16px;
  color: #ea55ff; /* 画像のピンク文字「採用種別」 */
  font-weight: bold;
}

.job-detail__title {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 20px;
  line-height: 1.2;
}

.job-detail__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

/* 右側：ビジュアル */
.job-detail__visual {
  width: 50%;
  position: relative;
}

.job-detail__img-wrapper {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3; /* 比率固定 */
}

.job-detail__img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #ea55ff; /* 画像のピンク色プレースホルダー */
}

/* アイコンバッジ */
.job-detail__badge {
  position: absolute;
  top: -15px; /* 少し上にはみ出す */
  left: -15px; /* 画像の左上に配置（画像のデザインに合わせるなら right: -15px かも）*/
  /* 画像では「右側エリアの左上」に見えますが、アイコンが右寄せされている場合は left/right を調整してください */
  /* ここでは画像内の配置位置に合わせて右上寄りに配置します */
  right: -15px; 
  top: -15px;
  
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.job-detail__badge--red {
  background-color: #c92323; /* 営業アイコン色 */
}

.job-detail__badge-icon {
  width: 100px;
  height: auto;
  margin-bottom: 5px;
  border-radius: 100%;
}

.job-detail__badge-text {
  font-size: 12px;
  line-height: 1;
}


/* --- 本文エリア --- */
.job-detail__body {
  /* 点線枠の再現 */
  border: 1px dashed #ea55ff; /* ピンクの点線 */
  padding: 60px 40px;
  margin-bottom: 60px;
  color: #333;
}

/* 見出しスタイル */
.job-detail__h2 {
  font-size: 24px;
  color: #ea55ff; /* ピンク文字 */
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: normal; /* 画像の「本文欄」の文字感に合わせる */
}

/* 本文テキスト */
.job-detail__text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* リスト */
.job-detail__list {
  margin-bottom: 40px;
  padding-left: 1.5em;
}

.job-detail__list li {
  margin-bottom: 15px;
  line-height: 1.8;
}

/* テーブル */
.job-detail__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 15px;
}

.job-detail__table th,
.job-detail__table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: top;
}

.job-detail__table th {
  width: 25%;
  font-weight: bold;
  background-color: #f9f9f9;
  color: #333;
}

/* --- フッター（戻るボタン） --- */
.job-detail__footer {
  text-align: center;
}

.job-detail__back-btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  width: 240px;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
}

.job-detail__back-btn::after {
  content: "›";
  font-size: 18px;
}

.job-detail__back-btn:hover {
  opacity: 0.8;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
  .job-detail__header {
    flex-direction: column;
    gap: 30px;
  }

  .job-detail__info,
  .job-detail__visual {
    width: 100%;
  }

  .job-detail__badge {
    top: -10px;
    right: -10px;
    font-size: 10px;
  }
  
  .job-detail__badge-icon {
    width: 100px;
  }

  .job-detail__body {
    padding: 30px 20px;
  }

  .job-detail__table th,
  .job-detail__table td {
    display: block;
    width: 100%;
  }

  .job-detail__table th {
    background-color: transparent;
    padding-bottom: 5px;
    padding-left: 0;
  }
  
  .job-detail__table td {
    padding-top: 0;
    padding-left: 0;
  }
}

.interview-list {
  padding: 80px 0;
  background-color: #f9f9f9; /* 背景色（薄いグレー） */
}

.interview-list__inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- グリッドレイアウト --- */
.interview-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列 */
  gap: 40px 30px; /* 上下40px, 左右30pxの余白 */
  margin-bottom: 80px; /* ページネーションとの余白 */
}

/* --- カードコンポーネント --- */
.interview-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}

.interview-card:hover {
  opacity: 0.8;
}

/* 画像エリア */
.interview-card__img-wrapper {
  margin: 0 0 15px 0;
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形に近い比率 */
  background-color: #eee;
}

.interview-card__placeholder {
  width: 100%;
  height: 100%;
  background-color: #ea55ff; /* ピンク色 */
}

/* タイトル */
.interview-card__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 15px;
  min-height: 3em; /* 行数を揃えるための高さ確保 */
}

.interview-card__meta {
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: flex-start;
  margin-top: auto; 
  font-size: 11px;
  gap: 10px;
  min-width: 0; 
  width: 100%;
}

/* タグと年次のラッパー */
.interview-card__info {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap; 
  gap: 8px;
  width: 100%;
  flex-direction: column;
  min-width: 0;
}

/* タグ */
.interview-card__tag {
  color: #fff;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  white-space: nowrap; 
}

/* 年次 */
.interview-card__year {
  color: #666;
}

/* moreリンク */
.interview-card__more {
  align-self: flex-end; 
  color: #c92323;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.interview-card__tag--new {
  background-color: #c92323; /* 新卒：赤 */
}

.interview-card__tag--career {
  background-color: #8b1a1a; /* 中途：茶 */
}

/* --- ページネーション --- */
.pagination {
  display: flex;
  justify-content: center;
}

.pagination__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  align-items: center;
}

.pagination__item {
  margin: 0;
}

.pagination__link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #ccc; /* 枠線 */
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  box-sizing: border-box;
}

.pagination__link:hover {
  background-color: #f0f0f0;
}

/* アクティブなページ */
.pagination__link--active {
  background-color: #222; /* 黒背景 */
  color: #fff;
  border-color: #222;
  cursor: default;
}

/* 「前へ」「次へ」ボタンの調整 */
.pagination__link--prev,
.pagination__link--next {
  min-width: 80px;
}

.pagination__dots {
  display: block;
  text-align: center;
  color: #333;
  min-width: 20px;
}

/* --- レスポンシブ対応 (SP) --- */
@media (max-width: 768px) {

  .interview-list__grid {
    grid-template-columns: 1fr; /* 1列 */
    gap: 40px;
    margin-bottom: 50px;
  }

  .interview-card__title {
    min-height: auto; /* 高さをリセット */
  }
  
  /* ページネーションの簡略化（必要に応じて） */
  .pagination__link {
    min-width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

.interview-detail {
  padding: 60px 0 100px;
  background-color: #fff;
}

.interview-detail__inner {
  width: 1000px; /* 本文の幅に合わせて調整 */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- ヘッダーエリア --- */
.interview-detail__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

/* 左側：テキスト情報 */
.interview-detail__info {
  width: 50%;
  padding-top: 20px; /* 画像の上端とバランスを取る */
}

.interview-detail__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 30px;
}

.interview-detail__meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* タグ */
.interview-detail__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.interview-detail__tag--new {
  background-color: #c92323; /* 新卒：赤 */
}

.interview-detail__tag--career {
  background-color: #8b1a1a; /* 中途：茶 */
}

.interview-detail__profile {
  font-size: 13px;
  color: #666;
}

/* 右側：ビジュアル */
.interview-detail__visual {
  width: 45%; /* 少し小さめに */
  margin: 0;
}

.interview-detail__img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5; /* 少し縦長の比率 */
  background-color: #ea55ff; /* ピンク色 */
}

.interview-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- 本文エリア --- */
.interview-detail__body {
  /* ピンクの点線枠 */
  border: 1px dashed #ea55ff;
  padding: 60px 80px;
  margin-bottom: 60px;
  background-color: #fff;
}

/* リード文 */
.interview-detail__lead {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 50px;
}

/* Q&Aセクション */
.interview-detail__section {
  margin-bottom: 40px;
}
.interview-detail__section:last-child {
  margin-bottom: 0;
}

/* 質問見出し */
.interview-detail__question {
  font-size: 20px;
  font-weight: bold;
  color: #ea55ff; /* ピンク色の文字 */
  margin: 0 0 15px;
}

/* 回答テキスト */
.interview-detail__answer {
  font-size: 15px;
  margin: 0;
  text-align: left;
}

/* --- フッター（戻るボタン） --- */
.interview-detail__footer {
  text-align: center;
}

.interview-detail__back-btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222; /* 黒背景 */
  color: #fff;
  text-decoration: none;
  width: 260px;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
}

.interview-detail__back-btn::after {
  content: "›";
  font-size: 18px;
}

.interview-detail__back-btn:hover {
  opacity: 0.8;
}

/* --- レスポンシブ対応 (SP) --- */
@media (max-width: 768px) {
  .interview-detail__header {
    flex-direction: column-reverse; /* スマホでは画像を上に持ってくる */
    gap: 20px;
  }

  .interview-detail__info,
  .interview-detail__visual {
    width: 100%;
  }

  .interview-detail__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .interview-detail__body {
    padding: 30px 20px; /* スマホでは余白を狭く */
  }
  
  .interview-detail__lead {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .interview-detail__question {
    font-size: 18px;
  }
}


.pickup-section {
  padding: 80px 0;
  background-color: #f9f9f9; /* 背景色（薄いグレー） */
}

.pickup-section__inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.pickup__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ピックアップカード */
.pickup-card {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s;
}

.pickup-card:hover {
  opacity: 0.8;
}

/* サムネイルエリア */
.pickup-card__thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: #eee;
  margin: 0;
  margin-bottom: 20px;
  overflow: hidden;
}

.pickup-card__placeholder {
  width: 100%;
  height: 100%;
}

.pickup-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 左上のラベル */
.pickup-card__type-label {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
}

.pickup-card__type-label--career {
  background-color: #8b1a1a; /* 中途：茶 */
}

.pickup-card__type-label--new {
  background-color: #c92323; /* 新卒：赤 */
}

/* タイトル・メタ情報 */
.pickup-card__title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 15px;
  line-height: 1.5;
}

.pickup-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.pickup-card__info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pickup-card__date {
  color: #666;
  font-family: sans-serif;
}

.pickup-card__cat {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 2px 10px;
  border-radius: 2px;
  color: #666;
}

.pickup-card__more {
  color: #c92323;
  font-weight: bold;
  font-size: 12px;
}

/* --- ALL NEWS Section --- */
.all-news-section {
  padding: 80px 0;
  background-color: #fff;
}

.all-news-section__inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* フィルタボタン */
.all-news__filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.all-news__filter-btn {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 30px;
  padding: 10px 40px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
}

.all-news__filter-btn:hover {
  background-color: #f5f5f5;
}

/* アクティブなボタン（文字は黒、ボーダー調整） */
.all-news__filter-btn--active {
  background-color: #fff; /* 背景白のまま */
  border-color: #333; /* 枠線を濃く */
  font-weight: bold;
}

/* ニュースリスト */
.all-news__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}

/* リスト行 */
.news-row {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s, opacity 0.3s;
}

.news-row:hover {
  background-color: #fafafa;
}

/* 非表示クラス */
.is-hidden {
  display: none !important;
}

/* フェードインアニメーション */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* メタ情報群（左側） */
.news-row__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-right: 30px;
}

.news-row__date {
  font-size: 13px;
  color: #666;
  font-family: sans-serif;
  width: 80px; /* 日付幅固定 */
}

.news-row__tags {
  display: flex;
  gap: 5px;
  width: 80px; /* タグエリアの幅固定（2つ分） */
}

/* タグスタイル */
.news-row__tag {
  font-size: 10px;
  color: #fff;
  padding: 2px 5px;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 35px; /* タグの幅 */
  height: 20px;
}

.news-row__tag--new {
  background-color: #c92323; /* 新卒：赤 */
}

.news-row__tag--career {
  background-color: #8b1a1a; /* 中途：茶 */
}

/* 空タグ（レイアウト保持用） */
.news-row__tag--empty {
  background-color: transparent;
  border: 1px solid #eee; /* 薄い枠線で見せる場合 */
  border: none; /* 何も見せない場合 */
}

/* カテゴリラベル */
.news-row__cat {
  font-size: 12px;
  color: #888;
  background-color: #f9f9f9;
  border: 1px solid #eee;
  padding: 4px 0;
  width: 80px; /* カテゴリ幅固定 */
  text-align: center;
  border-radius: 2px;
}

/* タイトル */
.news-row__title {
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* moreリンク */
.news-row__more {
  font-size: 12px;
  color: #c92323;
  font-weight: bold;
  margin-left: 20px;
  white-space: nowrap;
}


/* --- ページネーション --- */
.pagination {
  display: flex;
  justify-content: center;
}
.pagination__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
  align-items: center;
}
.pagination__link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 35px;
  height: 35px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s;
}
.pagination__link:hover {
  background-color: #f0f0f0;
}
.pagination__link--active {
  background-color: #222;
  color: #fff;
  border-color: #222;
}
.pagination__link--prev, .pagination__link--next {
  min-width: 60px;
}
.pagination__dots {
  text-align: center;
  min-width: 20px;
  color: #666;
}

/* レスポンシブ対応 (SP) */
@media (max-width: 768px) {
  .pickup__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .all-news__filters {
    gap: 10px;
  }
  .all-news__filter-btn {
    padding: 8px 20px;
    font-size: 12px;
  }

  .news-row {
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 30px;
  }
  .news-row__meta {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    gap: 10px;
  }
  .news-row__date {
    width: auto;
    margin-right: 10px;
  }
  .news-row__tags {
    width: auto;
  }
  .news-row__title {
    width: 100%;
    white-space: normal;
    line-height: 1.5;
  }
  .news-row__more {
    position: absolute;
    bottom: 15px;
    right: 0;
  }
}


.news-detail {
  padding: 40px 0 100px;
  background-color: #fff;
}

.news-detail__inner {
  width: 1000px; /* 画像の点線枠の幅感に合わせて調整 */
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- パンくずリスト --- */
.news-detail__breadcrumbs {
  margin-bottom: 40px;
}

.news-detail__breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  color: #666;
}

.news-detail__breadcrumbs-item:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
}

.news-detail__breadcrumbs-link {
  text-decoration: none;
  color: #666;
  transition: color 0.3s;
}

.news-detail__breadcrumbs-link:hover {
  color: #c92323;
}

.news-detail__breadcrumbs-current {
  /* 現在地はリンクなし */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px; /* 長すぎる場合に省略 */
}

/* --- ヘッダーエリア --- */
.news-detail__header {
  margin-bottom: 50px;
}

.news-detail__date {
  display: block;
  font-size: 14px;
  color: #ccc; /* 薄いグレー */
  font-weight: bold;
  margin-bottom: 15px;
  font-family: sans-serif;
}

.news-detail__title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 25px;
}

.news-detail__meta {
  display: flex;
  flex-direction: column; /* タグとカテゴリを縦に積む */
  align-items: flex-start;
  gap: 10px;
}

/* タグ（新卒） */
.news-detail__tag {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
}

.news-detail__tag--new {
  background-color: #c92323; /* 赤色 */
}

/* カテゴリ（イベントなど） */
.news-detail__cat {
  display: inline-block;
  padding: 4px 15px;
  font-size: 12px;
  color: #666;
  border: 1px solid #ddd;
  background-color: #fff;
}


/* --- 本文エリア --- */
.news-detail__body {
  /* ピンク色の点線枠 */
  border: 1px dashed #ea55ff;
  padding: 60px 80px;
  margin-bottom: 60px;
  color: #333;
}

/* プレースホルダー文字（画像再現用） */
.news-detail__placeholder-text {
  color: #ea55ff;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: normal; /* 画像に合わせて調整 */
}

/* 以下、本文内のスタイル例 */
.news-detail__h2 {
  font-size: 22px;
  border-bottom: 2px solid #ea55ff;
  padding-bottom: 10px;
  margin-top: 0;
  margin-bottom: 30px;
}

.news-detail__h3 {
  font-size: 18px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.news-detail__text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.news-detail__list {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 30px;
}

.news-detail__list li {
  margin-bottom: 10px;
}

/* エントリーボタン（ダミー） */
.news-detail__btn-wrapper {
  text-align: center;
  margin-top: 50px;
}

.news-detail__entry-btn {
  display: inline-block;
  background-color: #00aeb7; /* マイナビカラー風 */
  color: #fff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: bold;
  transition: opacity 0.3s;
}
.news-detail__entry-btn:hover {
  opacity: 0.8;
}


/* --- フッター（戻るボタン） --- */
.news-detail__footer {
  text-align: center;
}

.news-detail__back-btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222; /* 黒背景 */
  color: #fff;
  text-decoration: none;
  width: 240px;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  transition: opacity 0.3s;
}

.news-detail__back-btn::after {
  content: "›";
  font-size: 18px;
}

.news-detail__back-btn:hover {
  opacity: 0.8;
}

/* --- レスポンシブ対応 (SP) --- */
@media (max-width: 768px) {
  .news-detail__breadcrumbs {
    display: none; /* スマホではパンくずを隠すか、折り返すなど調整 */
  }

  .news-detail__title {
    font-size: 20px;
  }

  .news-detail__body {
    padding: 30px 20px; /* 余白を狭く */
  }

  .news-detail__placeholder-text {
    font-size: 24px;
  }
}


/* List Item */
.faq__item {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 4px; /* 微細な角丸 */
  overflow: hidden; /* 角丸からはみ出さないように */
  box-shadow: 0 2px 5px rgba(0,0,0,0.02); /* 薄い影 */
}

/* --- Header (Question) --- */
.faq__head {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 25px 30px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: background-color 0.3s;
}

.faq__head:hover {
  background-color: #fafafa;
}

/* Qマーク */
.faq__q-mark {
  font-size: 24px;
  color: #c92323; /* 赤色 */
  font-weight: bold;
  margin-right: 20px;
  line-height: 1;
  font-family: sans-serif;
}

/* 質問テキスト */
.faq__question {
  font-size: 16px;
  font-weight: bold;
  margin-right: 40px; /* アイコンとの被り防止 */
  flex-grow: 1;
}

/* Toggle Icon (+/-) */
.faq__toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* 横棒（常に表示） */
.faq__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transform: translateY(-50%);
}

/* 縦棒（開いている時は消してマイナスにする） */
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #333;
  transform: translateX(-50%);
  transition: transform 0.3s;
}

/* 開いている状態のトグルアイコン（マイナス化） */
.faq__item.is-open .faq__toggle::after {
  transform: translateX(-50%) rotate(90deg); /* 回転させて横棒と重ねる、または opacity:0 で消す */
  opacity: 0; 
}


/* --- Body (Answer) --- */
.faq__body {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #f2f2f2; /* 薄いグレー背景 */
}

/* 開いている状態 */
.faq__item.is-open .faq__body {
  height: auto;
  opacity: 1;
}

.faq__body-inner {
  display: flex;
  align-items: flex-start;
  padding: 30px 30px 40px;
}

/* Aマーク */
.faq__a-mark {
  font-size: 24px;
  color: #a08c5b; /* ゴールド/茶色 */
  font-weight: bold;
  margin-right: 20px;
  line-height: 1;
  font-family: sans-serif;
  margin-top: -3px; /* テキストのベースライン微調整 */
}

/* 回答テキスト */
.faq__answer {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

/* レスポンシブ対応 (SP) */
@media (max-width: 768px) {
  .faq__head {
    padding: 20px;
  }
  
  .faq__q-mark,
  .faq__a-mark {
    font-size: 20px;
    margin-right: 15px;
  }
  
  .faq__question {
    font-size: 14px;
  }
  
  .faq__body-inner {
    padding: 20px;
  }
  
  .faq__answer {
    font-size: 14px;
  }
}

/* Block: entry-form */
.entry-form {
  padding: 60px 0;
}

.entry-form__inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダーテキスト */
.entry-form__header-text {
  font-size: 14px;
  margin-bottom: 40px;
}
.entry-form__header-text p {
  margin: 0 0 10px;
}

.entry-form__link-red {
  color: #c92323;
  text-decoration: underline;
}
.entry-form__link-red:hover {
  text-decoration: none;
}

/* --- フォーム行のスタイル --- */
.entry-form__row {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee; /* 必要に応じて区切り線 */
  padding-bottom: 30px;
}
.entry-form__row:last-child {
  border-bottom: none;
}

/* ラベルエリア（左） */
.entry-form__label {
  width: 240px;
  background-color: #f9f9f9; /* 薄いグレー背景 */
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* ラベルとバッジを両端に */
  flex-shrink: 0;
  margin-right: 30px;
  font-weight: bold;
  font-size: 14px;
}

/* バッジ */
.entry-form__badge {
  display: inline-block;
  padding: 2px 6px;
  font-size: 11px;
  color: #fff;
  border-radius: 2px;
  margin-left: 10px;
  white-space: nowrap;
}

.entry-form__badge--required {
  background-color: #c92323; /* 必須：赤 */
}

.entry-form__badge--optional {
  background-color: #ccc; /* 任意：グレー */
}

/* 入力エリア（右） */
.entry-form__input-block {
  flex-grow: 1;
  padding-top: 10px; /* ラベルとの高さ調整 */
}

/* 入力パーツ共通 */
.entry-form__text-input,
.entry-form__select,
.entry-form__textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
}

.entry-form__textarea {
  height: 150px;
  resize: vertical;
}

/* ラジオボタン・チェックボックス */
.entry-form__radio-group,
.entry-form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 5px; /* 位置微調整 */
}

.entry-form__radio-label,
.entry-form__check-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.entry-form__radio-input,
.entry-form__check-label input {
  margin-right: 8px;
  transform: scale(1.1); /* 少し大きく */
}

/* 日付入力（年・月・日） */
.entry-form__date-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.entry-form__text-input--short {
  width: 80px; /* 短い入力欄 */
}

.entry-form__unit {
  font-size: 14px;
  margin-right: 10px;
}

/* サブ項目（学歴欄など） */
.entry-form__sub-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.entry-form__sub-row:last-child {
  margin-bottom: 0;
}

.entry-form__sub-label {
  width: 100px; /* サブ項目のラベル幅 */
  font-size: 13px;
  font-weight: bold;
}
/* サブ項目の入力欄幅調整 */
.entry-form__sub-row .entry-form__text-input,
.entry-form__sub-row .entry-form__select {
  flex-grow: 1;
}

/* 注釈テキスト */
.entry-form__note-text {
  font-size: 13px;
  margin: 0 0 10px;
  color: #333;
}


/* --- 送信エリア --- */
.entry-form__submit-area {
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.entry-form__privacy-text {
  font-size: 14px;
  margin-bottom: 30px;
}

/* 送信ボタン */
.entry-form__submit-btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222; /* 黒背景 */
  color: #fff;
  border: none;
  width: 300px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.entry-form__submit-btn::after {
  content: "›";
  font-size: 18px;
}

.entry-form__submit-btn:hover {
  opacity: 0.8;
}

.entry-form__footer-notes {
  margin-top: 40px;
  text-align: left;
  font-size: 11px;
  color: #888;
}
.entry-form__footer-notes p {
  margin-bottom: 10px;
}


/* --- レスポンシブ対応 (SP) --- */
@media (max-width: 768px) {
  .entry-form {
    padding: 30px 0;
  }
  .entry-form__row {
    flex-direction: column; /* 縦並び */
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 20px;
  }

  /* ラベルエリア */
  .entry-form__label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 10px;
  }

  /* サブ項目も縦に */
  .entry-form__sub-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .entry-form__sub-label {
    margin-bottom: 5px;
    width: 100%;
  }

  .entry-form__text-input,
  .entry-form__select {
    width: 100%;
  }
  
  /* 送信ボタン幅調整 */
  .entry-form__submit-btn {
    width: 100%;
    max-width: 300px;
  }
}

.privacy-policy {
  padding: 60px 0 100px;
}

.privacy-policy__inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-policy__lead {
  margin-bottom: 50px;
}

/* 各セクション */
.privacy-policy__section {
  margin-bottom: 40px;
}

.privacy-policy__title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 15px;
  color: #333;
}

.privacy-policy__text {
  margin: 0 0 15px;
  text-align: left;
}

/* 箇条書きリスト */
.privacy-policy__list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 1em;
}

.privacy-policy__list li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 5px;
}

.privacy-policy__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* リンク集リスト */
.privacy-policy__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-policy__link-list li {
  margin-bottom: 15px;
  /* 黒四角（■）などのアイコンがつく場合は以下を追加 */
  /* padding-left: 1.2em; position: relative; */
}
/* 画像では黒い四角がついている箇所もあるようなので再現 */
.privacy-policy__link-list li::before {
  /* content: "■"; */ 
  /* 画像で確認しにくいですが、必要であればアイコンを追加してください */
}

/* お問い合わせ先 */
.privacy-policy__contact {
  font-style: normal;
  margin-top: 20px;
  line-height: 1.6;
}

.privacy-policy__contact strong {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}


.sitemap {
  background-color: #f9f9f9; /* 全体の薄いグレー背景 */
  padding: 80px 0;
}

.sitemap__inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* 各セクション */
.sitemap__section {
  margin-bottom: 80px;
}
.sitemap__section:last-child {
  margin-bottom: 0;
}

/* ヘッダーエリア */
.sitemap__header {
  margin-bottom: 30px;
}

.sitemap__title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

/* リンク付きヘッダー（矢印ボタン付き） */
.sitemap__header-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: opacity 0.3s;
  color: #000;
  text-decoration: none;
}
.sitemap__header-link:hover {
  opacity: 0.7;
}

.sitemap__arrow-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
}

.sitemap__arrow-btn::after {
  content: "›";
  color: #c92323; /* 赤色 */
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 3px;
  margin-left: 2px;
}

/* --- バナーエリア --- */
.sitemap__banners {
  display: flex;
  gap: 30px;
}

.sitemap__banner-link {
  width: 50%;
  display: block;
  transition: opacity 0.3s;
}
.sitemap__banner-link:hover {
  opacity: 0.8;
}

.sitemap__banners a {
  width: 50%;
}
/* ダミーバナー画像 */
.sitemap__banner-img {
  width: 100%;
  aspect-ratio: 3 / 1;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
}
.sitemap__banner-img img {
  width: 100%;
}

/* --- グリッドレイアウト --- */
.sitemap__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列 */
  gap: 30px;
}

/* カードスタイル */
.sitemap__card {
  display: flex;
  background-color: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.02); 薄い影をつける場合 */
  color: #000;
  text-decoration: none;
}
.sitemap__card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

/* 左側：画像エリア */
.sitemap__card-figure {
  width: 120px; /* 固定幅 */
  margin: 0;
  flex-shrink: 0;
}
.sitemap__card-figure img {
  width: 100%;
}
/* 画像プレースホルダー */
.sitemap__card-img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #eee;
  min-height: 90px;
}
/* 白い画像エリアの場合 */
.sitemap__card-img-placeholder--light {
  background-color: #fff; 
  /* 画像がない場合はここを空にするか、アイコンを入れる */
}

/* 右側：テキストエリア */
.sitemap__card-body {
  flex-grow: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.sitemap__card-label {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 5px;
  font-family: sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sitemap__card-name {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}

.sitemap__card-more {
  font-size: 14px;
  color: #c92323;
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-weight: 500;
}

/* レスポンシブ対応 (SP) */
@media (max-width: 768px) {
  .sitemap {
    padding: 50px 0;
  }
  .sitemap__card-body {
    display: inline-block;
    padding: 30px 15px;
  }
  .sitemap__banners a {
    width: 100%;
  }
  .privacy-policy {
    padding: 30px 0 50px;
  }
  .privacy-policy a {
    overflow-wrap: anywhere;
  }
  .sitemap__banners {
    flex-direction: column;
    gap: 15px;
  }
  .sitemap__banner-link {
    width: 100%;
  }

  .sitemap__grid {
    grid-template-columns: 1fr; /* 1列 */
    gap: 15px;
  }
  
  .sitemap__title {
    font-size: 20px;
  }
}



/* 追加 */

.rd-layout-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 25px;
    row-gap: 20px;
    margin-bottom: 60px;
}
.rd-layout-left {
    width: 50%;
}
.rd-layout-right {
    width: 45%;
}
.rd-img-wrapper {
    position: relative;
    margin: 0;
    line-height: 0;
    width: 100%;
}
.rd-img-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}
.rd-badge-icon {
    position: absolute;
    top: -20px;
    right: 10px;
    width: 80px;
    z-index: 2;
}
.rd-badge-icon img {
    width: 100%;
    height: auto;
    display: block;
}
@media screen and (max-width: 768px) {
    .rd-layout-row {
        flex-direction: column;
    }
    .rd-layout-left,
    .rd-layout-right {
        width: 100%;
    }
    .rd-layout-right {
        margin-top: 30px;
    }
    .rd-badge-icon {
        width: 60px; 
    }
}

.inner_frame_post {
  width: 100%;
  max-width: 840px;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  .inner_frame_post {
    padding-right: 5%;
    padding-left: 5%;
  }
}

    .spec_table {
        width: 100%;
        border-collapse: collapse;
        border-top: 1px solid #dcdcdc;
    }

    .spec_table th,
    .spec_table td {
        padding: 1em;
        border-bottom: 1px solid #dcdcdc;
        text-align: left;
        vertical-align: middle;
        line-height: 1.7;
    }

    .spec_table th {
        width: 25%;
        font-weight: normal;
        background-color: #fff;
    }

    @media screen and (max-width: 768px) {

        .spec_table th,
        .spec_table td {
            display: block;
            width: 100%;
            padding: 0.8em 0;
        }

        .spec_table th {
            padding-bottom: 0;
            border-bottom: none;
        }

        .spec_table td {
            padding-top: 0.2em;
        }
    }

    .border_b_gray {
        border-bottom: 1px solid #eee;
    }

  .rd-pickup-tag-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: flex;
    gap: 5px;
}

  .rd-pickup-tag-wrap .pickup-card__type-label {
    position: static;
    margin: 0;
}

.news-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex-direction: column;
}

.news-detail__tags .rd-pickup-tag-wrap {
    position: static;
    padding: 0;
}

.news-detail__tags .news-row__cat {
    margin-left: 0; 
}


/* 新卒エントリー（CF7） */

.entry-form__radio-group .wpcf7-list-item,
.entry-form__checkbox-group .wpcf7-list-item {
    display: block;
    margin: 0 0 15px 0;
}

.entry-form__radio-group label,
.entry-form__checkbox-group label {
    position: relative;
    display: inline-block;
    padding-left: 36px;
    cursor: pointer;
    line-height: 24px;
    min-height: 24px;
}

.entry-form__radio-group input[type="radio"],
.entry-form__checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
    left: 0;
}

.entry-form__radio-group .wpcf7-list-item-label::before {
    content: '';
    position: absolute;
    top: 50%; 
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.entry-form__radio-group .wpcf7-list-item-label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #c92323;
    transition: all 0.2s ease;
}

.entry-form__radio-group input[type="radio"]:checked + .wpcf7-list-item-label::before {
    border-color: #ccc;
}
.entry-form__radio-group input[type="radio"]:checked + .wpcf7-list-item-label::after {
    transform: translate(-50%, -50%) scale(1);
}

.entry-form__checkbox-group .wpcf7-list-item-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.entry-form__checkbox-group input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    border-color: #c92323;
    background-color: #c92323;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
}

.entry-form__radio-group label:hover .wpcf7-list-item-label::before,
.entry-form__checkbox-group label:hover .wpcf7-list-item-label::before {
    border-color: #999;
}

.entry-form__input-block:has(.wpcf7-not-valid) {
    background-color: #ffbaba;
    border: 1px solid #c92323;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.wpcf7-not-valid {
    border-color: #c92323 !important;
}

.cf7-error-moved {
    display: block;
    color: #c92323;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    margin-left: 0;
}

.wpcf7-not-valid-tip {
    color: #c92323;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
}

.wpcf7-not-valid-tip:empty {
    display: none;
}


/* スライダー */

#top.top {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* 高さは子要素（画像）に依存させるか、必要ならここで指定 */
}

/* テキストが入っているboxを最前面に確保 */
#top .box {
    position: absolute;
    z-index: 10; /* スライダーより手前に表示 */
    /* 既存のtop/left配置などはそのまま維持 */
}

/* スライダー全体の配置 */
.mv_slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* boxより背面 */
}

/* 各スライド（画像のラッパー） */
.mv_item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* 画像のスタイル（既存の指定 + アニメーション用設定） */
.mv_slider .mv_item img {
    width: 100%;
    /* ▼ 既存の高さ指定を適用 ▼ */
    height: 1000px;
    object-fit: cover;
    /* ▼ 既存の明るさ調整を適用 ▼ */
    filter: brightness(80%);
    
    /* アニメーション初期設定 */
    transform: scale(1);
    transition: transform 1s;
    max-width: none;
    display: block;
}

/* アニメーション定義（ズームアップ） */
@keyframes zoomUp {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

/* アニメーション実行クラス */
.mv_slider .slick-active img,
.mv_slider .is-animating img {
    animation: zoomUp 15s linear forwards;
}

/* レスポンシブ対応（既存の高さ750pxに合わせる） */
@media screen and (max-width: 1074px) {
    .mv_slider .mv_item img {
        height: 750px; /* 既存CSSに準拠 */
    }
}

@media screen and (max-width: 500px) {
    .mv_slider .slick-active img,
    .mv_slider .is-animating img {
        animation-duration: 12.5s;
    }
}

.fade_in {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}