/* ===============================
   ベース設定
=============================== */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
  /* ▼ 背景を落ち着いたパステルイエロー系に変更 */
  background: linear-gradient(to bottom, #FFF6D8 0%, #FFFBEA 100%);
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

/* ===============================
   ヘッダー
=============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #FFFBEA;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 1000;
}

.header__inner {
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* ロゴ */
.header__logo img {
  height: 48px;
  width: auto;
  display: block;
}



/* ナビゲーション */
.header__nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav a {
  font-size: 16px;
  font-weight: 500;
}

/* ハンバーガーボタン（スマホ用、初期は非表示） */
.header__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding-right:15px;
}

/* ===============================
   フッター
=============================== */
.footer {
  background-color: #f5f5f5;
  text-align: center;
  padding: 40px 10px;
  color: #666;
  font-size: 14px;
}

/* ===============================
   スマホ対応
=============================== */
@media (max-width: 768px) {
  .header__nav ul {
    position: fixed;
    top: 80px;
    right: 0;
    flex-direction: column;
    background-color: #fff;
    width: 200px;
    padding: 20px;
    border-left: 1px solid #eee;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .header__nav ul.active {
    transform: translateX(0);
  }

  .header__toggle {
    display: block;
  }

  .header__nav {
    position: relative;
  }
}

/* ===============================
   カラーバリエーション（パステルイエロー基調）
=============================== */
:root {
  --color-cta-accent: #FFE680;   /* ボタン等に使うなら */
}

/* ===============================
   セクション共通
=============================== */
.section {
  min-height: 60vh;             /* とりあえずの高さ感。後で調整可 */
  padding: 16px;          /* 固定ヘッダー分＋ゆとり */
  box-sizing: border-box;
  scroll-margin-top: 100px;     /* #リンク時にヘッダーに隠れない */
  margin:0 auto;
}

/* 背景バリエーション */
.section--white {
  background: var(--color-bg-white);
}
.section--pale-yellow {
  background: var(--color-pale-yellow);
}
.section--light-gray {
  background: var(--color-light-gray);
}

/* ヒーロー（白→パステルイエローの穏やかなグラデ） */


/* お問い合わせ（コントラスト強めで引き締め） */
.section--brand-cta {
  background-color:#C6A45B;
}


/* 先頭アンカー：固定ヘッダー分のズレ対策 */
.anchor {
  position: relative;
  top: -70px;
  display: block;
  height: 0;
}

/* ===============================
   HERO2: PC 右写真スライド＋左テキスト固定（全面写真＋縦広め）
=============================== */
:root {
  --hero2-cut: 32%;           /* 斜めの食い込み（今は未使用、念のため） */
  --hero2-accent: #F7D372;    /* 左オレンジ帯 */
}

/* 全体設定：高さをしっかり確保 */
.hero2 {
  position: relative;
  background: #fff;
  height: 90vh;              /* 画面いっぱい */
  max-height: 980px;          /* 大型モニターでの上限 */
  overflow: hidden;
}

/* 内側レイアウト */
.hero2__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;   /* 左広め、右写真 */
  align-items: center;
  height: 100%;
  padding: clamp(24px, 6vw, 80px);
}

/* 左テキスト領域 */
.hero2__text {
  position: relative;
  z-index: 3; /* 写真・帯より前 */
  max-width: 780px;
  color: #fff;
  text-shadow:
    0 3px 6px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 0, 0, 0.2);
  opacity: 0; /* 初期非表示 */
  transform: translateY(20px);
}

.hero2__title {
  margin: 0 0 .4em;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .01em;
  font-size: clamp(32px, 6.5vw, 72px);
}
.hero2__lead {
  margin: 0;
  font-size: clamp(14px, 2vw, 20px);
  opacity: .95;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* ===== 写真（背面フルブリード） ===== */
.hero2__photos {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  -webkit-clip-path: none;
  clip-path: none;
  z-index: 0;
  background-color: #000; /* 読み込み前の黒背景 */
}
.hero2__photo {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center center; /* 中央寄せ */
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero2__photo.is-active {
  opacity: 1;
}
.hero2__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,      /* 左端：しっかり黒め */
    rgba(0, 0, 0, 0.3) 25%,     /* 中間：やや薄く */
    rgba(0, 0, 0, 0.1) 60%,     /* 右寄り：ほんのり */
    rgba(0, 0, 0, 0) 100%       /* 右端：透明 */
  );
}

/* ===== 左のオレンジ帯 ===== */
.hero2__accent {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(28vw, 360px);
  background: var(--hero2-accent);
  -webkit-clip-path: polygon(0 0, 100% 0, 40% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 30% 100%, 0 100%);
  opacity: .95;
  z-index: 2;
}

/* ====== SPヒーロー調整 ====== */
@media (max-width: 768px){
  :root{
    /* 左のオレンジ帯の幅（端末幅に応じて可変） */
    --sp-accent-w: clamp(10px, 10vw, 44px);
  }

  .hero2{
    height: auto; min-height: 0; overflow: hidden;
  }

  .hero2__wrap{
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 0;
    gap: 0;
  }

  /* 写真を広めに（ヘッダー70pxぶんを差し引いた高さ） */
  .hero2__photos{
    position: relative;  /* ← absolute から変更してレイアウト基準に */
    inset: auto;
    height: 70vh;
    min-height: 520px;
    border-radius: 0;
    overflow: hidden;
    z-index: 0;
  }

  /* グラデは “下が黒く→上で透明” に */
  .hero2__photo::before{
    background: linear-gradient(
      to top,
      rgba(0,0,0,.65) 0%,
      rgba(0,0,0,.40) 28%,
      rgba(0,0,0,.18) 55%,
      rgba(0,0,0,0) 100%
    );
  }

  /* 左のオレンジ帯：まっすぐ＆少しだけ */
  .hero2__accent{
    display: block;
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: var(--sp-accent-w);
    background: var(--hero2-accent, #EB6B2D);
    clip-path: none;           /* 斜めを無効化してまっすぐ */
    opacity: .95;
    z-index: 2;
  }

  /* テキストは写真の“下側”に重ねる */
  .hero2__text{
    position: absolute;
    left: calc(var(--sp-accent-w) + clamp(12px, 4vw, 20px));
    right: clamp(12px, 4vw, 20px);
    bottom: clamp(16px, 6vw, 28px);
    z-index: 3;

    color: #fff;
    text-shadow:
      0 3px 6px rgba(0,0,0,.45),
      0 0 18px rgba(0,0,0,.25);

    /* ほんの少し読みやすくしたい時はON
    background: rgba(0,0,0,.15);
    border-radius: 10px;
    padding: 8px 10px;
    backdrop-filter: blur(2px);
    */
  }

  .hero2__title{
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.15;
    margin: 0 0 .35em;
  }
  .hero2__lead{
    font-size: clamp(14px, 4.6vw, 18px);
    color: rgba(255,255,255,.92);
    text-shadow: 0 2px 4px rgba(0,0,0,.45);
  }

  .hero2__photo:nth-child(2) {
    background-position: 30% center; /* ← デフォルトは 50% center */
  }
}

/* ===== 見出し（中央ぞろえ） ===== */
.mission-sec{
  background-color:#fff;
}
.mrt-heading{
  --accent: #E9A93A;
  margin: 0 auto 36px;
  text-align:center;
  font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;
  font-weight:900;
  letter-spacing:.04em;
  line-height:1.1;
  font-size: clamp(36px, 7vw, 64px);
  color:#111;
  position:relative;
  padding:.2em .4em .5em;
  text-shadow:0 2px 8px rgba(0,0,0,.08);
}
.mrt-heading::after{
  content:"";
  position:absolute; left:50%; bottom:0; transform:translateX(-50%);
  width:40%; height:6px; border-radius:999px;
  background: linear-gradient(90deg,#F3C45A 0%, var(--accent) 55%, #C8891C 100%);
  box-shadow:0 6px 16px rgba(233,169,58,.25);
}

/* ===== Mission セクション ===== */
/* PCレイアウト：左=lead / 右=photo / photo下=detail */
.mission-sec{
  padding: 120px 20px 88px;
}
.mission-grid{
  max-width: 1200px; margin: 0 auto;
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "lead photo"
    "lead detail";
  gap: clamp(20px, 4vw, 40px);
  align-items:start;
}

/* 左：大きなミッション */
.mission-lead{
  grid-area: lead;
  margin:0;
  font-family:"Zen Kaku Gothic New","Noto Sans JP",sans-serif;
  font-weight:900;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height:1.2;
  letter-spacing:.02em;
  color:#111;
}

/* 右：写真 */
.mission-photo{
  grid-area: photo;
  margin:0;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}
.mission-photo img{
  width:100%; height:320px; display:block;
  object-fit:cover; object-position:center; /* 左を多めに見せたい時は 40% center 等に */
}

/* 右下：説明文 */
.mission-detail{
  grid-area: detail;
  color:#333; font-size:15.5px; line-height:1.9;
}
.mission-detail p{ margin:0; }

/* ===== スマホ：ミッション → 写真 → 説明 ===== */
@media (max-width: 768px){
  .mission-sec{ padding: 48px 16px 72px; }

  .mission-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "lead"
      "photo"
      "detail";
  }
  .mission-lead{ font-size: clamp(22px, 7vw, 30px); margin-bottom: 12px; }
  .mission-photo img{ height: clamp(220px, 48vw, 320px); }
  .mission-detail{ font-size:14.5px; margin-top: 10px; }
}

/* ===== セクション土台（中央ぞろえ） ===== */
.business-cards{
  padding: 120px 20px 88px;
}

/* ===== カード一覧 ===== */
.biz-cards{
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 36px);
}

/* ===== 単一カード ===== */
.biz-card{
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* 写真＋白字ラベル */
.biz-thumb{
  position: relative;
  margin: 0;
  line-height: 0; /* 画像の行間隙を消す */
  overflow: hidden;
}
.biz-thumb img{
  width: 100%;
  height: clamp(220px, 30vw, 320px);
  object-fit: cover;
  object-position: center;
  display: block;
}
/* 読みやすさのためのボトム黒グラデ */
.biz-thumb::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,   /* ← 濃さアップ */
    rgba(0, 0, 0, 0.4) 45%,   /* ← 中間も少し濃く */
    rgba(0, 0, 0, 0.1) 80%    /* ← 上部もほんのり影を残す */
  );
  pointer-events: none;
}

/* 白字タイトル（縦中央配置） */
.biz-tag {
  position: absolute;
  left: 50%;
  top: 50%; /* 👈 縦方向の中央配置に変更 */
  transform: translate(-50%, -50%); /* 👈 中心に寄せる */
  margin: 0;
  padding: 8px 14px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: clamp(22px, 3vw, 36px); /* 👈 文字を大きく */
  line-height: 1.2;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  white-space: nowrap; /* 👈 改行を防止 */
  z-index: 2; /* グラデーションより前に出す */
}

/* 説明（黒字） */
.biz-body{
  padding: clamp(16px, 3.2vw, 22px) clamp(18px, 3.6vw, 28px) clamp(22px, 4vw, 30px);
}
.biz-body p{
  margin: 0;
  color: #333;
  font-size: 15.5px;
  line-height: 1.9;
}

/* ===== スマホ：縦並び ===== */
@media (max-width: 768px){
  .business-cards{ padding: 44px 16px 64px; }
  .biz-cards{
    grid-template-columns: 1fr;
  }
  .biz-body p{
    font-size: 14.5px;
    line-height: 1.85;
  }
}

/* ===== 採用セクション ===== */
/* ===== 採用セクション全体 ===== */
.recruit {
  text-align: center;
  padding: 120px 20px 130px;
  background: #fffaf0; /* 他セクションと統一感をもたせる */
}

.recruit-message {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: #333;
  line-height: 1.9;
  margin: 32px auto 64px;
  max-width: 720px;
}

/* ===== タイムライン（カリキュラム） ===== */
.steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 56px;
  text-align: left;
}

.steps::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  border-left: 4px dotted #8CA7A1;
  opacity: 0.7;
}

/* 各ステップ */
.step {
  position: relative;
  padding: 8px 0 32px;
}

.step + .step {
  border-top: 2px dotted #d9d9d9;
  margin-top: 24px;
}

/* STEPラベル */
.step-label {
  margin: 0 0 10px 0;
  font-weight: 700;
  color: #5E8C86;
  letter-spacing: 0.04em;
}

/* 本文 */
.step-body h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 900;
  color: #222;
}

.step-text {
  margin: 0;
  color: #333;
  line-height: 1.9;
  font-size: clamp(15px, 1.8vw, 16.5px);
}

/* 箇条書き（STEP.1用） */
.step-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: #333;
  font-size: clamp(15px, 1.8vw, 16.5px);
}

.step-points li {
  position: relative;
  padding-left: 1.1em;
  line-height: 1.9;
}

.step-points li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 0.9em;
  color: #111;
}

/* スマホ最適化 */
@media (max-width: 640px) {
  .steps {
    padding-left: 48px;
  }

  .steps::before {
    left: 20px;
  }

  .marker {
    left: 12px;
  }

  .recruit-message {
    margin-bottom: 48px;
  }
}

/* 採用：サポート説明＋写真（2カラム→スマホ縦） */
.recruit-support{
  max-width: 1100px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
}

.recruit-support__text {
  flex: 1;
  color: #333;
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
}
.recruit-support__text p{ margin: 0 0 12px; }
.recruit-support__text ul{
  margin: 6px 0 0;
  padding-left: 1.2em;
}
.recruit-support__text li{ margin: 4px 0; }

.recruit-support__media{
  flex: 1 1;
  text-align: right;
}
.recruit-support__media img{
  width: 100%;
  max-width: 520px;
  height: auto;
  box-shadow: 0 10px 24px rgba(0,0,0,.1);
  display: inline-block;
}

/* スマホ：縦並び（テキスト→写真） */
@media (max-width: 768px){
  .recruit-support{
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .recruit-support__text{ font-size: 15px; }
}

/* ===== 会社概要 ===== */
.company {
  background: #fff;
  padding: 120px 20px;
  text-align: center;
}

.company-table {
  width: 90%;
  max-width: 800px;
  margin: 60px auto 0;
  border-collapse: collapse;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  color: #333;
}

.company-table th,
.company-table td {
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 12px;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 25%;
  font-weight: 700;
  color: #222;
  background: #fafafa;
  letter-spacing: 0.05em;
}

.company-table td {
  width: 75%;
  line-height: 1.8;
}

/* スマホ調整 */
@media (max-width: 640px) {
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .company-table th {
    background: none;
    color: #444;
    margin-top: 24px;
  }

  .company-table td {
    border-bottom: 1px solid #ddd;
    padding-bottom: 16px;
  }
}


/* ===== Contact: バターイエロー背景 ===== */
:root{
  --contact-bg: #F8E8B4; /* バターイエロー */
  --contact-text: #333;
  --contact-accent: #E6B800; /* 黄色のアクセント */
}

/* セクション全体 */
.contact{
  background: var(--contact-bg);
  color: var(--contact-text);
  padding: 96px 20px 120px;
}

.contact-inner{
  max-width: 980px;
  margin: 0 auto;
}

/* 見出し */
.contact-heading{
  color: var(--contact-text);
  text-align: center;
}

.contact-lead{
  margin: 12px auto 36px;
  max-width: 720px;
  color: var(--contact-text);
  line-height: 1.9;
  text-align: center;
  font-size: clamp(15px, 1.9vw, 17px);
}

/* ===== フォーム ===== */
.contact-form{ margin-top: 8px; }

.form-row{ margin: 18px 0; }
.form-row label{
  display:block;
  margin-bottom: 8px;
  font-weight:700;
  color: var(--contact-text);
  letter-spacing:.02em;
}
.req{
  font-weight: 800;
  color: var(--contact-accent);
  margin-left: .25em;
}

/* 入力欄（デフォルト仕様） */
.contact-form input,
.contact-form textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--contact-text);
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

/* フォーカス */
.contact-form input:focus,
.contact-form textarea:focus{
  border-color: var(--contact-accent);
  box-shadow: 0 0 0 3px rgba(230,184,0,.15);
}

/* 送信ボタン */
.form-actions{ margin-top: 28px; text-align:center; }
.btn-send{
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  background: var(--contact-accent);
  color:#222;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  transition: transform .05s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-send:hover{ filter: brightness(1.1); box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.btn-send:active{ transform: translateY(1px); }

/* スマホ */
@media (max-width: 768px){
  .contact{ padding: 72px 16px 96px; }
  .contact-lead{ margin-bottom: 28px; }
}

.visually-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}