/* =========================================================
   recruit-visit.css
   - 見学申し込みページ専用スタイル
========================================================= */

/* --- Utilities --- */
.bg-gray {
  background-color: var(--color-gray-light);
  padding: 5rem 0;
}

/* ---------------------------------------------------------
   4. Information (実施要項)
--------------------------------------------------------- */
.info-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--color-gray-border);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.info-list {
  padding: 40px;
}

.info-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.info-row:first-child {
  padding-top: 0;
}
.info-row:last-child {
  border-bottom: none;
}

.info-row dt {
  width: 25%;
  font-weight: 700;
  color: var(--color-primary-dark);
  padding-right: 20px;
  display: flex;
  align-items: center; /* 縦中央 */
}

.info-row dd {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-main);
}

.info-row ul {
  list-style: disc;
  padding-left: 1.5em;
  margin: 5px 0;
}

.note {
  font-size: 0.85rem;
  color: #666;
  display: block;
  margin-top: 5px;
}

/* 申し込みエリア */
.apply-area {
  background-color: #f0f9ff;
  text-align: center;
  padding: 50px 20px;
  border-top: 1px solid #cceeff;
}

.apply-area h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 15px;
}

.apply-area p {
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.btn-google-form {
  padding: 15px 40px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 161, 233, 0.3);
}
.btn-google-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 161, 233, 0.4);
}

.form-note {
  font-size: 0.8rem !important;
  color: #888;
  margin-top: 10px;
  margin-bottom: 0 !important;
}

/* ---------------------------------------------------------
   5. Flow (タイムライン)
--------------------------------------------------------- */
.visit-flow {
  position: relative;
  margin-top: 30px;
  border-left: 3px solid #eee; /* タイムラインの軸 */
  margin-left: 20px;
  padding-left: 30px;
}

.flow-item {
  position: relative;
  margin-bottom: 40px;
}
.flow-item:last-child {
  margin-bottom: 0;
}

/* 時間の丸ポチ */
.flow-item::before {
  content: '';
  position: absolute;
  left: -39px; /* 軸の中心に合わせる */
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #eee;
}

.time {
  display: block;
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.flow-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.flow-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main);
}

/* ---------------------------------------------------------
   6. Notes (注意事項)
--------------------------------------------------------- */
.notes-box {
  background: #fff;
  border: 1px solid var(--color-gray-border);
  border-radius: 8px;
  padding: 40px;
}

.notes-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
  color: #d32f2f; /* 注意喚起の赤系、または落ち着いた色でも可 */
}

.notes-box ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 30px;
}

.notes-box li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-info {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
}
.contact-info p {
  line-height: 1.8;
}
.contact-info a {
  font-weight: 700;
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width: 768px) {
  .info-list {
    padding: 30px 20px;
  }

  .info-row {
    flex-direction: column;
  }
  .info-row dt {
    width: 100%;
    margin-bottom: 8px;
    padding-right: 0;
    border-bottom: none;
  }
  .info-row dd {
    width: 100%;
    padding-left: 10px;
  }

  .visit-flow {
    margin-left: 10px;
    padding-left: 25px;
  }
  .flow-item::before {
    left: -34px;
  }
}
