@charset "UTF-8";

/** ----------------------------------------------
 *
 * main
 *
 * -------------------------------------------- */

.theme {
  color: #FD0;
  font-size: 64px;
  font-family: "Lalezar", system-ui;
  font-weight: 400;
  font-style: normal;
}

.subtitle {
  font-size: 24px;
}

.theme span {
  color: #000;
}

.entry {
  color: #000;
  font-size: 28px;
  font-weight: bold;
  text-align: left;
}

.entry span{
  color: #FD0;
}

.topics {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}

.topics span{
  color: #FD0;
}

/** ----------------------------------------------
 *
 * #recruit_container
 *
 * -------------------------------------------- */

#recruit_container {
  width: 1200px;
  height: auto;
  display: flex;
  margin: auto;
  padding-bottom: 100px;
  background: #fff;
}

.recruit_left {
  width: 1000px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit_title {
  color: #333;
  font-size: 100px;
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.recruit_red { color: #FF3333; }     /* 赤 */
.recruit_yellow { color: #FFD700; }     /* 黄 */
.recruit_gleen { color: #228B22; }     /* 緑 */
.recruit_black { color: #000; }    /* 黒 */

.recruit_subtitle {
  color: #333;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 36px;
}

.recruit_catchcopy {
  color: #FF3333;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 36px;
}

.recruit_text {
  line-height: 2;
  margin-bottom: 32px;
}

.recruit_button {
  width: 200px;
  height: auto;
  display: flex;
  background: #4B6ED6;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 12px;
}
.recruit_button:hover {
  background: #3654a2;
}

.recruit_right {
  width: 500px;
  display: flex;
  flex: 1;
  display: flex;
  align-items: right;
  justify-content: right;
}

.recruit_image {
  display: inline-block;
  width: 500px;
  height: 1024px;
  border-radius: 8px;
  object-fit: cover;
  background: #f4f4f4;
}

/** ----------------------------------------------
 *
 * #mission_container
 *
 * -------------------------------------------- */

#mission_container {
  width: 1200px;
  height: auto;
  display: flex;
  padding: 48px 0;
  margin: auto;
  background: #fff;
}

.mission_left {
  width: 500px;
  display: flex;
  flex: 1;
  display: flex;
  align-items: left;
  justify-content: left;
}

.mission_image {
  display: inline-block;
  width: 500px;
  height: 1024px;
  border-radius: 8px;
  object-fit: cover;
  background: #f4f4f4;
}

.mission_right {
  width: 1000px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission_title {
  color: #333;
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.mission_red { color: #FF3333; }     /* 赤 */
.mission_yellow { color: #FFD700; }     /* 黄 */
.mission_gleen { color: #228B22; }     /* 緑 */

.mission_subtitle {
  color: #333;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 36px;
}

.mission_catchcopy {
  color: #333;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 36px;
}

.mission_index {
  color: #333;
  font-size: 20px;
  font-weight: bold; 
  margin: 10px 0;
}

.mission_body-red {
  color: #333;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 32px;
  border-left: 10px solid #FF3333; /*線の設定*/
  padding: 2px 20px; /*余白の設定*/

}

.mission_body-yellow {
  color: #333;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 32px;
  border-left: 10px solid #FFD700; /*線の設定*/
  padding: 2px 20px; /*余白の設定*/

}

.mission_body-gleen {
  color: #333;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 32px;
  border-left: 10px solid #228B22; /*線の設定*/
  padding: 2px 20px; /*余白の設定*/

}

/** ----------------------------------------------
 *
 * #expertise_container
 *
 * -------------------------------------------- */

#expertise_container {
  background-color: #F3F3F3;
  width: 1200px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 15px;
}

.expertise_title {
  color: #333;
  text-align: left;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 48px;
}

.expertise_cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.expertise_card {
  background: #FFF;
  border-radius: 16px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  box-shadow: 0 2px 16px rgba(50,60,80,0.07);
  width: 360px;
  min-width: 300px;
  max-width: 360px;
  gap: 20px;
}

.expertise_icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise_heading {
  font-size: 20px;
  font-weight: bold;
  margin: 5px 0;
  color: #333;
}

.expertise_text {
  color: #333;
  line-height: 1.5;
  word-break: break-word;
  margin-top: 20px;
}

/** ----------------------------------------------
 *
 * #entry_container
 *
 * -------------------------------------------- */

#entry_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 40px 32px;
  font-family: 'Noto Sans JP', 'Meiryo', sans-serif;
}

.entry_title {
  color: #333;
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.entry_red { color: #FF3333; }     /* 赤 */
.entry_yellow { color: #FFD700; }     /* 黄 */
.entry_gleen { color: #228B22; }     /* 緑 */

.entry_subtitle {
  color: #333;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 36px;
  letter-spacing: 1px;
}

.entry_lead {
  color: #333;
  font-size: 16px;
  margin-bottom: 48px;
  line-height: 2;
}

/* 中央配置のためのflexbox設定 */
.entry_options {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.entry_options a {
  text-decoration: none;
  display: block;
  width: 600px;
  height: auto;
  margin-bottom: 54px;
  position: relative;
  overflow: hidden;
}

.entry_option {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  width: 600px;
  height: auto;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 2px solid transparent;
}

/* ホバーエフェクト */
.entry_option:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 2px solid #228B22;
}

/* 光沢効果 */
.entry_option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.5s;
}

.entry_option:hover::before {
  left: 100%;
}

.entry_option-img {
  display: block;
  width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  transition: all 0.3s ease;
}

.entry_option:hover .entry_option-img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}

.entry_option-label {
  font-weight: bold;
  font-size: 40px;
  margin: 20px 0 12px 0;
  letter-spacing: 2px;
  color: #333;
  text-align: center;
  position: relative;
}

/* JOIN USの文字色設定 */
.entry_option-label .join-j { color: #FF3333; }    /* 赤 */
.entry_option-label .join-o1 { color: #FFD700; }   /* 黄 */
.entry_option-label .join-i { color: #228B22; }    /* 緑 */
.entry_option-label .join-n { color: #333; }       /* 黒 */
.entry_option-label .join-space { color: #333; }   /* スペース */
.entry_option-label .join-u { color: #333; }       /* 黒 */
.entry_option-label .join-s { color: #333; }       /* 黒 */

/* アイコン追加 */

.entry_option-label::before {
  content: '↓';
  display: inline-block;
  margin-right: 12px;
  font-size: 24px;
  color: #333;
  transition: transform 0.3s ease;
}

.entry_option-label::after {
  content: '↓';
  display: inline-block;
  margin-left: 12px;
  font-size: 24px;
  color: #333;
  transition: transform 0.3s ease;
}

.entry_option:hover .entry_option-label::before {
  transform: translateX(-4px);
}

.entry_option:hover .entry_option-label::after {
  transform: translateX(4px);
}

.entry_option-desc {
  color: #666;
  margin: 0 0 20px 0;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}

.entry_option-text {
  color: #333;
  margin: 20px 30px 30px 30px;
  line-height: 1.8;
  min-height: 65px;
  text-align: center;
  font-size: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .entry_options a {
    width: 100%;
    max-width: 500px;
  }
  
  .entry_option {
    width: 100%;
  }
  
  .entry_option-img {
    width: 100%;
    height: 240px;
  }
  
  .entry_option-label {
    font-size: 24px;
  }
}

/* テーブルデザイン */

.entry_criteria-table-wrapper {
  background: #F8F8F8;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(50, 60, 80, 0.06);
  overflow: hidden;
  width: 1000px;
  margin: 30px auto;
}

.entry_criteria-title {
  color: #333;
  font-size: 30px;
  font-weight: bold;
  margin: 56px 0 24px 0;
}

.entry_criteria-table {
  width: 1000px;
  border-collapse: collapse;
}

.entry_criteria-table th,
.entry_criteria-table td {
  padding: 16px 20px;
  box-sizing: border-box;
  text-align: left;
}

.entry_criteria-table th {
  background: #f1f1f1;
  font-weight: 600;
  color: #333;
  width: 250px;
  text-align: center;
}

.entry_criteria-table td {
  background: #fff;
  color: #333;
  font-weight: 400;
}

.entry_criteria-table tr {
  border-bottom: 1px solid #ececec;
}

.entry_criteria-table tr:last-child {
  border-bottom: none;
}

/** ----------------------------------------------
 *
 * #career-path_container
 *
 * -------------------------------------------- */

/* ベース設定 -------------------------------------------------- */
:root {
  --yellow: #f6d84d;
  --red: #ef4d4d;
  --green: #0d6636;
  --blue: #4d8df6;
  --gray: #333;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}


#career-path_container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  box-sizing: border-box;
}

/* ===== 見出し ===== */
.career-path_title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #ff5555;
  margin: 0 0 72px;
  line-height: 1.4;
}

/* ===== キャリア項目 ===== */
.career-item_yellow {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 6px 0;
  position: relative;
  border-bottom: 2px solid #f6d84d;
}

.career-item_red {
  display: flex;
  align-items: center;
  gap: 32px; 
  padding: 6px 0;
  position: relative;
  border-bottom: 2px solid #ef4d4d;
}

.career-item_green {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 6px 0;
  position: relative;
  border-bottom: 2px solid #0d6636;
}

.career-item_blue {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 6px 0;
  position: relative;
  border-bottom: 2px solid #4d8df6;
}

/* ── カラーライン（階段状の演出） ────────────────
  各 section の ::before を、親要素幅いっぱいに伸ばした
  上ボーダーとして描画。その色を currentColor で受けることで
  modifier クラスごとに自動で色が変わる。*/
.career-item::before {
  content: "";
  position: absolute;
  inset: 0;                  /* section 全体を覆う */
  background: transparent;   /* まずは透明 */
  border-bottom: 4px solid currentColor;
  width: 100%;
  height: 100%;
  z-index: -1;               /* 背面へ */
}

/* 左側だけ背景色を付けて “段差” を見せる ─────────
  icon の幅ぶん + α (16px) だけを linear-gradient で着色。
  右側は透明なので白背景がそのまま見える。*/
.career-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    currentColor 0,
    currentColor calc(120px + 16px),
    transparent calc(120px + 16px)
  );
  z-index: -2;
}

/* 色バリエーション（currentColor を上書き） */
.career-item_yellow { color: var(--yellow); }
.career-item_red    { color: var(--red); }
.career-item_green  { color: var(--green); }
.career-item_blue   { color: var(--blue); }

/* ===== アイコンボックス ===== */
.career-item_yellow .career-item_icon {
  flex: 0 0 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: currentColor;
  border-radius: 4px;
  font-size: 30px;
}

.career-item_red .career-item_icon {
  flex: 0 0 240px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: currentColor;
  border-radius: 4px;
  font-size: 30px;
}

.career-item_green .career-item_icon {
  flex: 0 0 360px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: currentColor;
  border-radius: 4px;
  font-size: 30px;
}

.career-item_blue .career-item_icon {
  flex: 0 0 480px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: currentColor;
  border-radius: 4px;
  font-size: 30px;
}

/* ===== テキストブロック ===== */
.career-item_content {
  color: #333;
}

.career-item_role {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 700;
}

.career-item_desc {
  font-weight: 400;
}

/* ===== 補足文 ===== */
.career-path_note {
  margin-top: 72px;
}

/** ----------------------------------------------
*
* #interview_container
*
* -------------------------------------------- */

#interview_container {
  width: auto;
  height: auto;            /* 画面いっぱい */
}

.interview_mv {
  position: relative;
  width: auto;
  height: 50vh;            /* 画面いっぱい */
  overflow: hidden;
  background: url("/images/recruitment/interview_bg.png") center/cover no-repeat;
}

/* 背景を白くフェードさせて淡くする */
.interview_mv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.8;            /* 数値を下げれば写真が濃く見える */
  z-index: 0;
}

/* ========= 右上ロゴ ========= */
.interview_logo {
  position: absolute;
  top: 20%;
  right: 15%;
  margin: 0;
  font-size: 96px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 2px;
  z-index: 1;
}

.logo--black  { color: var(--text); }
.logo--red    { color: var(--red); }
.logo--yellow { color: var(--yellow); }
.logo--green  { color: var(--green); }

/* サブタイトル（ロゴ下の小さなテキスト） */
.interview_subtitle {
  position: absolute;
  top: calc(20% + 120px);
  right: 15%;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  z-index: 1;
}

/* ========= キャッチコピー ========= */
.interview_catch {
  position: relative;
  transform: translateY(500%);
  margin: auto;
  width: 1000px;
  font-size: 40px;
  font-weight: 700;
  color: var(--red);
  z-index: 1;
}


/* ========= インタビューカード ========= */
.interview-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px;
  display: flex;
  gap: 56px;           /* 写真と本文の間隔 */
  box-sizing: border-box;
}

/* 左側写真 */
.interview-card_photo {
  flex: 0 0 420px;     /* 固定幅：420px */
}

.interview-card_photo img {
  width: 420px;
  height: 100%;
  display: block;
  object-fit: cover;
}

.interview-card_photo p {
  font-size: 12px;
}

/* 右側本文 */
.interview-card_body {
  flex: 1;
}

/* 見出し */
.interview-card_title {
  margin: 32px 0;
  padding: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
  border-bottom: 2px solid #AAA;
}

.interview-card_title span {
  color: #333;
  font-size: 20px;
  font-weight: normal;
}

/* 罫線 */
.interview-card_divider {
  border: none;
  height: 1px;
  background: var(--divider);
  margin-bottom: 32px;
}

/* 段落 */
.interview-card_body p {
  margin: 0 0 32px;
  font-size: 18px;
  font-weight: 400;
  color: #333
}

/** ----------------------------------------------
*
* #work_container
*
* -------------------------------------------- */

#work_container {
  background-color: #F3F3F3;
  max-width: auto;
  margin: 30px auto;
  padding: 54px 36px 36px 36px;
  border-radius: 15px;

}

.work_title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 64px;
  color: #111;
  letter-spacing: 1.5px;
}

.work_flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 0;
}

.work_arrow {
  width: 300px;
  height: 74px;
  clip-path: polygon(0 0, 93% 0, 100% 50%, 93% 100%, 0 100%, 7% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.arrow-red {
  background: #F84848;
}
.arrow-yellow {
  background: #FFD742;
}
.arrow-green {
  background: #23733D;
}

.work_arrow-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work_steps {
  display: inline-block;
  justify-content: center;
  align-items: flex-start;
  gap: 90px;
  margin: 10px 0;
}

.work_step {
  width: 300px;
  text-align: left;
  padding: 20px 0;

}

.work_step-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.work_step-text {
  font-size: 18px;
  color: #222;
  font-weight: 400;
  line-height: 1.8;
}

.work_bottom {
  width: 900px;
  margin: auto;
  color: #222;
  line-height: 2;
  display: block;
  text-align: left;
}


/** ----------------------------------------------
*
* #daytime_container
*
* -------------------------------------------- */

#daytime_container {
  width: auto;
  margin: 60px auto;
  padding: 40px auto;
  align-items: stretch;
}

.daytime_title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 60px;
  letter-spacing: 1px;
  text-align: center;
}

.daytime_timeline {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.daytime_step {
  display: flex;
  width: 750px;
  margin: auto;
  flex-direction: row;
  align-items: flex-start;
}

.daytime_stepbar {
  width: 80px;
  height: 660px;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  flex-direction: column;
  align-items: stretch;
}

.daytime_stepnum {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin: 16px auto 0 auto;
  display: block;
  text-align: center;
  width: 100%;
}

.daytime_green {
  background: #17633A;
}

.daytime_yellow {
  background: #F1D42A;
}

.daytime_red {
  background: #F34A3C;
}

.daytime_step-content {
  width: auto;
  flex: 1;
  background: #fff;
  border-radius: 0 10px 10px 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.daytime_img {
  width: 100%;
  max-width: 640px;
  height: 480px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  background: #eaeaea;
  box-shadow: 0 2px 12px rgba(60,60,60,0.09);
}

.daytime_steptime {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
}

.daytime_stepdesc {

  color: #222;
  line-height: 2;
  margin-bottom: 2px;
}

/** ----------------------------------------------
*
* #president_container
*
* -------------------------------------------- */
#president_container {
  width: auto;
}

/* ===== 2カラムラッパー ===== */
.message_wrap {
  max-width: 960px;
  width: auto;
  margin: 0 auto;
  padding: 80px 24px;
  display: block;
  overflow: hidden;
}

/* ===== 写真 ===== */
.message_photo {
  display: block;
  float: left;
  width: 320px;
}

.message_photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* ===== コンテンツ ===== */
.message_words {
  width: 960px;
  height: 480px;
  display: block;
}

.message_body {
  width: auto;
  display: block;
  margin: 60px 0;
}

.president_topic {
  margin: 45px 0;
  padding: 0 30px;
  border-left: 5px solid #CCC;
}

/* カラースパン */
.t-red    { color:#F84848; }
.t-yellow { color: #F1D42A; }
.t-green  { color: #17633A; }
.t-blue  { color: #4d8df6; }

/* タイトル */
.message_title {
  display: inline-block;
  width: 560px;
  font-size: 56px;
  font-weight: 900;
  margin: 30px 0;
  padding: 0 30px;
  line-height: 1;
  letter-spacing: .5px;
}

/* 見出し (大) */
.section_heading {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0;
  padding: 0 30px;
  position: relative;
}

/* リード文・サブ説明 */
.message_lead {
  display: inline-block;
  width: 560px;
  padding: 0 30px;
  font-size: 18px;
  font-weight: 600;
}
.message_sub {
  display: inline-block;
  width: 560px;
  margin: 15px 0;
  padding: 0 30px;
  font-size: 16px;
}

/* トピック小見出し */
.topic_heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

/* シグネチャ */
.signature {
  text-align: right;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 48px;
}

/* 段落余白 */
.message_body p { margin: 0 0 24px; }