@charset "UTF-8";

/* ===================================
   Recruit Page Styles
=================================== */

/* --- Header Logo Control --- */
.hdr .logo-white { display: none; }
.hdr .logo-color { display: block; }

.hdr.hdr__bg-dark {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 15px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background-color 0.4s, padding 0.4s;
  color: #fff;
}
.hdr.hdr__bg-dark .logo-color { display: none; }
.hdr.hdr__bg-dark .logo-white { display: block; }

@media screen and (max-width: 768px) {
  .hdr.hdr__bg-dark { padding: 10px 20px; }
}

/* --- Page Header (FV) --- */
.page-header {
  position: relative;
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}
.page-header__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
}
.page-header__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-header__bg::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.page-header__inner { position: relative; z-index: 1; text-align: center; color: #fff; }

.page-header__super-title {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.9;
  color: var(--c-primary);
  display: block;
}
.page-header__title { display: flex; flex-direction: column; gap: 5px; }
.page-header__title .en { font-family: var(--font-en); font-size: 2rem; font-weight: 700; letter-spacing: 0.1em; }
.page-header__title .ja { font-size: 1rem; font-weight: 500; }

/* --- Breadcrumb --- */
.breadcrumb { background: #f5f5f7; padding: 15px 0; }
.breadcrumb ul { display: flex; gap: 10px; font-size: 0.9rem; color: var(--c-text-light); }
.breadcrumb ul li:not(:last-child)::after { content: '>'; margin-left: 10px; }

/* --- Content Wrapper --- */
.recruit-body-wrapper { position: relative; overflow: hidden; }
#particles-js-recruit { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; opacity: 0.5; }
.bg-watermark { position: absolute; top: 100px; right: -50px; font-family: var(--font-en); font-size: 15rem; font-weight: 900; color: rgba(0,0,0,0.03); z-index: -1; pointer-events: none; writing-mode: vertical-rl; }

/* --- Message --- */
.message-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.message-head {
  font-size: 3.2rem; /* 2.2rem -> 3.2rem (大きく) */
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 40px;
}
.message-head .text-orange { color: var(--c-primary); }
.message-text {
  font-size: 1rem;
  line-height: 2;
  text-align: justify;
}

/* --- Guidelines (Tabs) --- */
.recruit-guidelines {
  padding: 100px 0;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.tab-nav li {
  padding: 15px 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
}
.tab-nav li:hover,
.tab-nav li.active {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.guideline-box {
  display: none; /* 初期非表示 */
  background: #fff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.guideline-box.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.guideline-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  border-left: 5px solid var(--c-primary);
  padding-left: 20px;
}

.guideline-table {
  width: 100%;
  border-collapse: collapse;
}
.guideline-table th, .guideline-table td {
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.guideline-table th {
  width: 20%;
  font-weight: 700;
  background: #fafafa;
  color: var(--c-text);
}
.guideline-table td {
  color: var(--c-text);
}
.list-disc { list-style: disc; padding-left: 1.5em; }
.note { font-size: 0.85rem; color: var(--c-text-light); margin-top: 5px; display: block; }

.entry-btn-area {
  text-align: center;
  margin-top: 40px;
}

/* --- Flow --- */
.recruit-flow { padding: 100px 0; }
.flow-steps {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 50px;
  gap: 20px;
}
.step-item {
  background: #f9f9f9;
  flex: 1;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #eee;
}
.step-num {
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  width: 40px; height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.step-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.step-text { font-size: 0.9rem; line-height: 1.6; text-align: left; }
.step-arrow {
  align-self: center;
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ccc;
  flex-shrink: 0;
}

/* --- FAQ --- */
.recruit-faq { padding: 100px 0; }
.narrow-container { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 40px; }
.faq-item {
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.faq-q {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: var(--c-primary);
}
.faq-q::before {
  content: 'Q';
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-en);
}
.faq-a {
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 30px;
  position: relative;
}
.faq-a::before {
  content: 'A';
  position: absolute;
  left: 0; top: 0;
  font-weight: 700;
  font-family: var(--font-en);
}

/* --- Related Links (3 Col) --- */
.related-links { display: flex; width: 100%; height: 300px; }
.related-link {
  width: 33.333%; /* 3カラムに変更 */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.related-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s ease; z-index: 1; }

/* 画像設定 */
.related-link.item-company .related-bg { background-image: url('../images/company_thum.jpg'); filter: brightness(0.5); }
.related-link.item-members .related-bg { background-image: url('../images/members_thum.jpg'); filter: brightness(0.5); }
.related-link.item-service .related-bg { background-image: url('../images/service_thum.jpg'); filter: brightness(0.5); }

.related-link:hover .related-bg { transform: scale(1.1); filter: brightness(0.7); }
.related-content { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; gap: 5px; align-items: center; }
.related-content .en { font-family: var(--font-en); font-size: 2rem; font-weight: 700; letter-spacing: 0.1em; }
.related-content .ja { font-size: 1rem; font-weight: 500; }
.related-content .arrow { margin-top: 15px; font-size: 1.5rem; transition: transform 0.3s; }
.related-link:hover .arrow { transform: translateX(10px); }

.contact-cta { background: var(--c-primary); padding: 100px 0; text-align: center; color: #fff; position: relative; }
.contact-cta__title { font-family: var(--font-en); font-size: 6rem; font-weight: 900; line-height: 1; margin-bottom: 20px; opacity: 0.2; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; pointer-events: none; }
.contact-cta__inner { position: relative; z-index: 2; }
.contact-cta__text { font-size: 1.5rem; font-weight: 700; margin-bottom: 40px; }
.btn-skeleton { display: inline-flex; justify-content: center; align-items: center; padding: 15px 40px; border: 2px solid var(--c-primary); border-radius: 50px; background: transparent; color: var(--c-primary); font-weight: 700; font-family: var(--font-en); letter-spacing: 0.05em; transition: all 0.3s; min-width: 200px; }
.btn-skeleton.white { border-color: #fff; color: #fff; }
.btn-skeleton.white:hover { background: #fff; color: var(--c-primary); }
.btn-skeleton:hover { background: var(--c-primary); color: #fff; transform: translateY(-3px); }

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .page-header { height: 250px; }
  .page-header__super-title { font-size: 2.5rem; }
  .page-header__title .en { font-size: 2.5rem; }
  
  .message-head { font-size: 1.8rem; }

  .tab-nav { flex-direction: column; }
  .tab-nav li { text-align: center; }
  
  .guideline-box { padding: 30px 20px; }
  .guideline-table th, .guideline-table td { display: block; width: 100%; }
  .guideline-table th { border-bottom: none; padding-bottom: 5px; background: none; }
  .guideline-table td { padding-top: 0; }
  
  .flow-steps { flex-direction: column; align-items: center; gap: 30px; }
  .step-item { width: 100%; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  
  .related-links { flex-direction: column; height: auto; }
  .related-link { width: 100%; height: 200px; }
  
  .contact-cta__title { font-size: 3.5rem; }
}