/*
Theme Name: Arkhe Child
Template: arkhe
*/

/* =============================================
   グローバル変数・基本設定
============================================= */

:root {
  --ark-letter_spacing: 0.2em;
  --ark-line_height: 1.9;

  /* Henry Monitor ブランドカラー */
  --hm-green:      #288C66;
  --hm-green-dk:   #1a6048;
  --hm-green-pale: #e8f5ef;
  --hm-orange:     #FF7800;
  --hm-dark:       #1a2820;
  --hm-text:       #2c3e35;
  --hm-border:     #d4e8de;
}

.p-page__title {
  display: none !important;
}

/* =============================================
   ヘッダー・フッターフォント指定
============================================= */

/* ヘッダーのフォント設定 */
.l-header,
#header,
.site-header,
.l-header *,
.l-header a,
.l-header nav,
.l-header .menu,
.l-header__logo,
.l-header__nav {
    font-family: 'Noto Sans JP', sans-serif !important;
}

/* フッターのフォント設定 */
.l-footer,
#footer,
.site-footer,
.l-footer *,
.l-footer a,
.l-footer nav,
.l-footer .menu {
    font-family: 'Noto Sans JP', sans-serif !important;
}

/* 全ページで .l-content__body のマージンを削除 */
.l-content__body {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* フロントページとその他ページの上部余白を完全リセット */
body.home .l-content__body,
body.page .l-content__body {
    padding-top: 0 !important;
}

.l-container {
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    max-width: none !important;  /* ← 追加 */
}

.pd-root,
.ht-root {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 以下追加 */
.l-content,
.l-content__body,
.l-main {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.post-content,
.c-entry,
article {
    max-width: none !important;
    width: 100% !important;
}

.pd-root,
.ht-root {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


:root {
    --ark-container-size: 100% !important;
    --ark-content-size: 100% !important;
}

.l-header__center {
  padding-left: 40px !important;
  padding-right: 40px !important;
}


/* =============================================
   お知らせ共通
============================================= */

/* ニュースページ全体のフォント設定 */
.news-section,
.news-archive-page,
.single-news,
.news-section *,
.news-archive-page *,
.single-news * {
  font-family: 'Noto Sans JP', sans-serif !important;
}


.news-section.news-top {
  padding-top: 0;
  margin-top: 0;
}
.news-section {
  padding: 64px 0 80px;
  background: #ffffff;
}
.news-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 60px;
}

body .ht-news-list,
body .ht-news-archive-list {
  list-style: none !important;
  margin: 0 0 40px !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

body .ht-news-list li,
body .ht-news-archive-list li {
  margin: 0 !important;
  padding: 0 !important;
}

body .ht-news-item {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 20px 8px;
  border-bottom: 1px solid #e6eee9;
  text-decoration: none;
  color: #2c3e35;
  transition: background .2s, padding-left .2s;
}
body .ht-news-item:first-child { border-top: none; }
body .ht-news-item:hover { background: #e8f5ef; padding-left: 16px; }
body .ht-news-item:hover .ht-news-item__title { color: #288C66; }

.ht-news-item__date {
  font-size: 12px;
  font-weight: 500;
  color: #8a9e96;
  white-space: nowrap;
  letter-spacing: .05em;
  min-width: 88px;
  flex-shrink: 0;
}

.ht-news-item__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  background: #e8f5ef;
  color: #288C66;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ht-news-item__title {
  font-size: 14px;
  font-weight: 500;
  color: #2c3e35;
  line-height: 1.6;
  transition: color .2s;
  flex: 1;
}

.news-more { margin-top: 8px; text-align: center; }
.news-more-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #FF7800;
  border: 2px solid #FF7800;
  border-radius: 2px;
  padding: 14px 48px;
  text-decoration: none;
  letter-spacing: .08em;
  transition: all .25s ease;
  background: transparent;
}
.news-more-link:hover { background: #FF7800; color: #ffffff; }

.ht-news-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.ht-news-pagination a,
.ht-news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #e0ede8;
  color: #2c3e35;
  background: #ffffff;
  transition: all .2s;
}
.ht-news-pagination a:hover { background: #288C66; border-color: #288C66; color: #ffffff; }
.ht-news-pagination .current { background: #288C66; border-color: #288C66; color: #ffffff; font-weight: 700; }
.ht-news-pagination .dots { border: none; background: none; color: #8a9e96; }

@media (max-width: 600px) {
  .news-inner { padding: 0 20px; }
  .news-section { padding: 48px 0 64px; }
  .ht-news-item { flex-wrap: wrap; gap: 8px; padding: 16px 8px; }
  .ht-news-item__title { flex-basis: 100%; }
  .ht-news-item__date { min-width: auto; }
}


/* =============================================
   HERO（お知らせ共通）
============================================= */

.news-single-hero {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.news-single-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 20% 50%, rgba(255,120,0,.15) 0%, transparent 55%),
    linear-gradient(135deg, #1a6048 0%, #288C66 55%, #1e7a58 100%);
}
.news-single-hero__grid {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.news-single-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 60px;
}
.news-single-hero__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--hm-orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-single-hero__label::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--hm-orange);
  opacity: .6;
}
.news-single-hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: .04em;
  margin: 0 0 12px;
}
.news-single-hero__sub {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .12em;
  margin: 0;
}

/* HEROアニメーション */
@keyframes nwFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.news-single-hero__label {
  animation: nwFadeUp .7s ease forwards;
  animation-delay: .1s;
  opacity: 0;
}
.news-single-hero__title {
  animation: nwFadeUp .7s ease forwards;
  animation-delay: .22s;
  opacity: 0;
}
.news-single-hero__sub {
  animation: nwFadeUp .7s ease forwards;
  animation-delay: .34s;
  opacity: 0;
}

@media (max-width: 768px) {
  .news-single-hero__inner { padding: 40px 20px; }
}


/* =============================================
   お知らせアーカイブ・カテゴリアーカイブ — 2カラムレイアウト
============================================= */

.news-archive-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 60px;
}

.news-archive-page .l-main__body {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 56px;
  align-items: start;
  padding: 56px 0 80px;
}

/* 左：カテゴリナビ */
.news-archive-page .news-single-sidebar {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 80px;
}
.news-archive-page .news-single-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-archive-page .news-single-sidebar ul li {
  border-bottom: 1px solid var(--hm-border);
}
.news-archive-page .news-single-sidebar ul li a {
  display: block;
  padding: 9px 4px;
  font-size: 13px;
  color: var(--hm-text);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.news-archive-page .news-single-sidebar ul li a:hover {
  color: var(--hm-green);
  padding-left: 6px;
}
.news-archive-page .news-single-sidebar ul li.current a {
  color: var(--hm-green);
  font-weight: 700;
}

/* 右：記事一覧 */
.news-archive-page .news-archive-main {
  grid-column: 2;
  grid-row: 1;
}
.news-archive-main__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2820;
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #288C66;
}

@media (max-width: 768px) {
  .news-archive-page {
    padding: 0 20px;
  }
  .news-archive-page .l-main__body {
    grid-template-columns: 1fr;
    padding: 40px 0 60px;
  }
  .news-archive-page .news-single-sidebar {
    position: static;
    grid-column: 1;
    grid-row: auto;
  }
  .news-archive-page .news-archive-main {
    grid-column: 1;
    grid-row: auto;
  }
}


/* =============================================
   お知らせ詳細ページ
============================================= */

.single-news {
  /* single-news内だけ色を変えたい場合はここで上書き */
  --hm-green:      #288C66;
  --hm-green-dk:   #1a6048;
  --hm-green-pale: #e8f5ef;
  --hm-orange:     #FF7800;
  --hm-dark:       #1a2820;
  --hm-text:       #2c3e35;
  --hm-border:     #d4e8de;
}

/* l-mainの幅を拡張 */
.single-news .l-main {
  max-width: 1200px;
  padding-left: 60px;
  padding-right: 60px;
}

/* 2カラムグリッド */
.single-news .l-main__body {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 56px;
  align-items: start;
  padding: 56px 150px 80px;
}

/* 左：カテゴリナビ */
.single-news .news-single-sidebar {
  grid-column: 1;
  grid-row: 1 / 5;
  position: sticky;
  top: 80px;
}
.single-news .news-single-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.single-news .news-single-sidebar ul li {
  border-bottom: 1px solid var(--hm-border);
}
.single-news .news-single-sidebar ul li a {
  display: block;
  padding: 9px 4px;
  font-size: 13px;
  color: var(--hm-text);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.single-news .news-single-sidebar ul li a:hover {
  color: var(--hm-green);
  padding-left: 6px;
}
.single-news .news-single-sidebar ul li.current a {
  color: var(--hm-green);
  font-weight: 700;
}

/* 右：各エリア配置 */
.single-news .p-entry__head    { grid-column: 2; grid-row: 1; }
.single-news .p-entry__content { grid-column: 2; grid-row: 2; }
.single-news .p-entry__foot    { grid-column: 2; grid-row: 3; }

/* 記事タイトル */
.single-news .c-pageTitle__main {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  color: var(--hm-dark);
  line-height: 1.6;
  letter-spacing: .04em;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hm-border);
}

/* 日付・カテゴリー */
.single-news .p-entry__head .c-postMetas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.single-news .c-postTimes__item {
  font-size: 12px;
  color: #8a9e96;
  letter-spacing: .06em;
}
.single-news .c-postTerms__item.-tax {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--hm-green);
  background: var(--hm-green-pale);
  padding: 3px 10px;
  border-radius: 2px;
}
.single-news .c-postTerms__item.-tax a {
  color: var(--hm-green);
  text-decoration: none;
}
.single-news .c-postTerms__item.-tax a:hover { color: var(--hm-green-dk); }

/* 記事本文 */
.single-news .entry-content {
  font-size: 15px;
  line-height: 2;
  color: var(--hm-text);
}
.single-news .entry-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--hm-dark);
  margin: 48px 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--hm-green);
}
.single-news .entry-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--hm-dark);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hm-border);
}
.single-news .entry-content p { margin: 0 0 1.8em; }
.single-news .entry-content a {
  color: var(--hm-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-news .entry-content a:hover { color: var(--hm-green-dk); }
.single-news .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* 一覧へ戻るリンク */
.single-news .news-back-link {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--hm-border);
}
.single-news .news-back-link a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--hm-text);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hm-border);
  transition: color .2s, border-color .2s;
}
.single-news .news-back-link a:hover {
  color: var(--hm-green);
  border-color: var(--hm-green);
}

/* 前後ナビゲーション */
.single-news .c-pnNav {
  border-top: none;
  margin-top: 5px;
  padding-top: 0;
}
.single-news .c-pnNav__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--hm-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.single-news .c-pnNav__link:hover { color: var(--hm-green-dk); }

/* 不要要素の非表示 */
.single-news .p-entry__author,
.single-news .p-entry__related,
.single-news .p-entry__foot .c-postMetas {
  display: none;
}

@media (max-width: 768px) {
  .single-news .l-main {
    padding-left: 20px;
    padding-right: 20px;
  }
  .single-news .l-main__body {
    grid-template-columns: 1fr;
    padding: 40px 20px 60px;
  }
  .single-news .news-single-sidebar {
    grid-column: 1;
    grid-row: auto;
    position: static;
  }
  .single-news .p-entry__head,
  .single-news .p-entry__content,
  .single-news .p-entry__foot {
    grid-column: 1;
    grid-row: auto;
  }
  .single-news .c-pageTitle__main { font-size: 20px; }
}

/* =============================================
   フォーム共通スタイル（応募フォーム・お問い合わせフォーム）
   style.cssの最後に追加してください
============================================= */

/* フォームページ全体 */
.entry-form-page,
.contact-form-page {
  font-family: 'Noto Sans JP', sans-serif;
  padding: 60px 20px;
  background: #ffffff;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 35px rgba(0, 0, 0, 0.15);
}

.form-page-title {
  font-size: 32px;
  font-weight: 700;
  color: #288C66;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.form-page-description {
  font-size: clamp(11px, 2.5vw, 18px);
  word-break: keep-all; 
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
  letter-spacing: 0
}

/* 成功メッセージ */
.form-success-message {
  font-size: clamp(14px, 2.5vw, 18px);
  text-align: center;
  padding: 40px 12px;
  word-break: keep-all; 
}

.form-success-message h2 {
  font-size: clamp(24px, 4vw, 36px);
  color: #288C66;
  margin-bottom: 20px;
}

.form-success-message p {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
  letter-spacing: 0; 
  word-break: keep-all; 
}

.btn-back-home {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background: #288C66;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-back-home:hover {
  background: #1a6048;
}

/* フォーム本体 */
.recruit-form {
  font-family: 'Noto Sans JP', sans-serif;
}

.form-row {
  margin-bottom: 30px;
}

.form-label {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 0
}

.required-badge {
  background: #ff2200;
  color: #ffffff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 500;
}

/* 入力フィールド */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #288C66;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* 小さいセレクトボックス */
.form-select-small {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.3s ease;
}

.form-select-small:focus {
  outline: none;
  border-color: #288C66;
}

/* 生年月日グループ */
.birthday-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.birthday-item {
  min-width: 0;
}

.birthday-item select {
  width: 100%;
}

/* 卒業年月グループ */
.graduation-date-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.graduation-date-item {
  min-width: 0;
}

/* 3つ目のカラムを空にする場合（年・月だけの場合） */
.graduation-date-group .graduation-date-item:nth-child(3) {
  display: none;  /* 3列目を非表示 */
}

.graduation-date-item select {
  width: 100%;
}

/* 最終学歴グループ */
.education-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.education-item {
  width: 100%;
}

.sub-label {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.graduation-status-group {
  display: flex;
  gap: 20px;
}

/* ラジオボタン・チェックボックス */
.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  letter-spacing: 0
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* ファイルアップロード */
.file-upload-area {
  width: 100%;
  padding: 20px;
  border: 2px dashed #ddd;
  border-radius: 4px;
  background: #f9f9f9;
  text-align: center;
  margin-bottom: 5px;
}

.file-upload-area:hover {
  border-color: #288C66;
}

.file-upload-area input[type="file"] {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.file-note {
  font-size: 10px;
  color: #999;
  margin-top: 12px;
  margin-bottom: 0;
  letter-spacing: 0;
}

.file-name-display {
  margin-top: 8px;
  font-size: 14px;
  color: #FF7800;
  letter-spacing: 0;
}

/* 送信ボタン */
.form-submit {
  text-align: center;
  margin-top: 40px;
}

.submit-btn {
  background: #FF7800;
  color: #ffffff;
  border: none;
  padding: 18px 60px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
}

.submit-btn:hover {
  background: #e66d00;
}

/* 確認画面 */
.confirm-screen {
  font-family: 'Noto Sans JP', sans-serif;
}

.confirm-container {
  max-width: 800px;
  margin: 0 auto;
}

.confirm-title {
  font-size: 28px;
  font-weight: 700;
  color: #288C66;
  text-align: center;
  margin-bottom: 20px;
}

.confirm-description {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
  letter-spacing: 0
}

.confirm-table {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.confirm-row {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-label {
  width: 40%;
  padding: 15px 20px;
  background: #e9e9e9;
  font-weight: 600;
  color: #333;
  border-right: 1px solid #ddd;
  letter-spacing: 0
}

.confirm-value {
  width: 60%;
  padding: 15px 20px;
  color: #666;
  background: #ffffff;
  letter-spacing: 0
}

.confirm-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.confirm-back-btn,
.confirm-submit-btn {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
  border: none;
}

.confirm-back-btn {
  background: #ffffff;
  color: #333;
  border: 2px solid #ddd;
}

.confirm-back-btn:hover {
  background: #f9f9f9;
}

.confirm-submit-btn {
  background: #FF7800;
  color: #ffffff;
}

.confirm-submit-btn:hover {
  background: #e66d00;
}

.file-upload-label {
  text-align: left;
  font-size: 11px;
}

/* 個人情報保護方針ボックス */
.privacy-policy-box {
  background: #e8f6de;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px 24px;
  margin-top: 8px;
  letter-spacing: 0;
}

.privacy-policy-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.privacy-policy-box a {
  color: #288C66;
  text-decoration: underline;
}

.privacy-policy-box a:hover {
  color: #1a6048;
}

.privacy-agree-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
}

.privacy-agree-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

/*英語ページ　ヘッダーとフッターの非表示*/

.is-en-page .c-headerNav,
.is-en-page .c-gnav,
.is-en-page #globalNav {
    display: none !important;
}

.is-en-page .henry-footer__right,
.is-en-page .henry-footer__social,
.is-en-page .henry-footer__address,
.is-en-page .henry-footer__affiliates {
    display: none !important;
}

/* /en/ ページ：ハンバーガーメニューを非表示 */
.is-en-page .c-iconBtn.-menuBtn {
    display: none !important;
}

/* /en/ ページ：フッターロゴを中央寄せ */
.is-en-page .henry-footer__inner {
    justify-content: center;
}
.is-en-page .henry-footer__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}
.is-en-page .henry-footer__logo {
    justify-content: center;
}

/* =============================================
   採用情報ページ - テーブル枠線削除
============================================= */

.rc-job__table,
.rc-job__table tbody,
.rc-job__table tr,
.rc-job__table th,
.rc-job__table td {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
}

body .rc-job__table,
body .rc-job__table tbody,
body .rc-job__table tr,
body .rc-job__table th,
body .rc-job__table td {
  border: none !important;
}

.rc-job__table tr {
  border-bottom: 1px solid #d4e8de !important;
}

body .rc-job__table th,
body .rc-job__table td {
  border-bottom: 1px solid #d4e8de !important;
}

.rc-job__table tr:last-child th,
.rc-job__table tr:last-child td {
  border-bottom: none !important;
}

@media screen and (max-width: 768px) {
  .file-upload-area {
    padding: 16px;
  }
  
  .file-upload-area input[type="file"] {
    font-size: 13px;
    padding: 8px;
  }
  
  .file-note {
    font-size: 11px;
  }

  .form-container {
    padding: 40px 20px;
  }
  
  .form-page-title {
    font-size: 24px;
  }
  
  .birthday-group,
  .graduation-date-group {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;  /* 狭い画面では間隔を少し詰める */
  }

  .form-select-small {
    font-size: 13px;  /* スマホでは少し小さく */
    padding: 8px 10px;
  }
  
  .radio-group,
  .checkbox-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .confirm-row {
    flex-direction: column;
  }
  
  .confirm-label,
  .confirm-value {
    width: 100%;
    border-right: none;
  }
  
  .confirm-label {
    border-bottom: 1px solid #ddd;
  }
  
  .confirm-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .confirm-back-btn,
  .confirm-submit-btn {
    width: 100%;
  }
  .file-upload-area {
    padding: 16px;
  }
  
  .file-upload-area input[type="file"] {
    font-size: 13px;
    padding: 8px;
  }
}

