@charset "utf-8";

/* ============================================================
   recruit.css — Recruit section pages (リクルート, インタビュー, 応募フォーム)
   Shared styles are in components.css
   ============================================================ */

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; overflow-x: hidden; }

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  overflow-x: clip;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #06617f; text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: #30a1af; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: #646464;
}
.breadcrumb a { color: #30a1af; }
.breadcrumb a:hover { color: #06617f; }
.breadcrumb__sep {
  margin: 0 0.5rem;
  color: #cacaca;
}

/* ============================================================
   PAGE HEADER (teal banner)
   ============================================================ */

.page-header {
  background: #30a1af;
  padding: 3.5rem 0;
}
.page-header__title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1875rem);
  font-weight: normal;
  border-left: 0.3125rem solid #fff;
  padding-left: 1.875rem;
}
.page-header__sub {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin-top: 0.25rem;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
}

/* ============================================================
   PAGE NAV (sub-navigation bar)
   ============================================================ */

.page-nav {
  background: #06617f;
}
.page-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-nav__item {
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.page-nav__item:last-child { border-right: none; }

.page-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  transition: background .2s;
  min-height: 5rem;
}
.page-nav__link:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ============================================================
   SECTION
   ============================================================ */

.section-pad { padding: 5rem 0; }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  text-align: center;
}
.section-title::after {
  content: '';
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  background: #30a1af;
  margin: 0.75rem auto 0;
  border-radius: 0.125rem;
}

/* ============================================================
   RECRUIT ANCHOR NAV (pill buttons)
   ============================================================ */

.recruit-anchor {
  display: flex;
  max-width: 40rem;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #06617f;
}
.recruit-anchor li {
  flex: 1;
}
.recruit-anchor li + li {
  border-left: 1px solid #06617f;
}
.recruit-anchor a {
  display: block;
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #06617f;
  transition: background .2s, color .2s;
}
.recruit-anchor a:hover {
  background: #fff;
  color: #06617f;
}

/* ============================================================
   RECRUIT CATCHCOPY
   ============================================================ */

.recruit-catchcopy {
  background: #30a1af;
  color: #fff;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 0.1875rem;
  margin-bottom: 2.5rem;
}
.recruit-catchcopy span {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
}

/* ============================================================
   RECRUIT TABLE (dl/dt/dd)
   ============================================================ */

.recruit-table {
  max-width: 52rem;
  margin: 0 auto;
  border: 1px solid #30a1af;
  border-top: none;
  font-size: 1rem;
}
.recruit-row {
  display: flex;
  border-top: 1px solid #30a1af;
}
.recruit-table dt {
  flex-shrink: 0;
  width: 9rem;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #30a1af;
  font-weight: 700;
  background: #e9f8fa;
}
.recruit-table dd {
  flex: 1;
  margin: 0;
  padding: 1.25rem 1.5rem;
  text-align: justify;
  background: #fff;
  border-left: 1px solid #30a1af;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/* ============================================================
   RECRUIT CTA BUTTON
   ============================================================ */

.recruit-cta {
  text-align: center;
  margin-top: 3rem;
}
.recruit-button {
  display: inline-block;
  max-width: 43.75rem;
  width: 100%;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: #06617f;
  border: 1px solid #06617f;
  border-radius: 0.1875rem;
  transition: background .2s, color .2s;
}
.recruit-button:hover {
  background: #fff;
  color: #06617f;
}

/* ============================================================
   APPLICATION FORM PAGE
   ============================================================ */

.form__note {
  text-align: right;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.form__required {
  color: #e00;
  font-weight: 700;
}
.form__supplement {
  font-size: 0.8125rem;
  color: #646464;
}
.form__birth-label {
  margin: 0 0.25rem;
}

.form-table {
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1rem;
}
.form-table th,
.form-table td {
  padding: 1rem 1.25rem;
  border: 1px solid #30a1af;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}
.form-table th {
  background: #e9f8fa;
  font-weight: 600;
  color: #1a1a1a;
  width: 12.5rem;
}
.form-table td {
  background: #fff;
}

.form-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.1875rem;
  font-family: inherit;
}
.form-input:focus {
  outline: none;
  border-color: #30a1af;
}
.form-input--sm {
  width: 5rem;
  max-width: none;
}

.form-select {
  padding: 0.5rem 0.5rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.1875rem;
  font-family: inherit;
}

.form-radio,
.form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 1rem;
  cursor: pointer;
}

.form-iframe {
  width: 100%;
  height: 15rem;
  border: 1px solid #ccc;
  border-radius: 0.1875rem;
}

.form-actions {
  max-width: 52rem;
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.form-btn {
  display: inline-block;
  padding: 0.875rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.1875rem;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s;
}
.form-btn--reset {
  background: #fff;
  color: #646464;
  border: 1px solid #ccc;
}
.form-btn--reset:hover {
  background: #f5f5f5;
}
.form-btn--submit {
  background: #06617f;
  color: #fff;
  border: 1px solid #06617f;
}
.form-btn--submit:hover {
  background: #fff;
  color: #06617f;
}

.error {
  display: block;
  font-size: 0.875rem;
  color: #e00;
  margin-top: 0.25rem;
}

/* ============================================================
   INTERVIEW PAGE
   ============================================================ */

.interview-section {
  border-bottom: 1px solid #e0e0e0;
}
.interview-section:last-of-type {
  border-bottom: none;
}

.interview-card {
  max-width: 52rem;
  margin: 0 auto;
}

.interview-card__banner {
  display: flex;
  overflow: hidden;
  border-radius: 0.25rem;
}

.interview-card__photo {
  flex-shrink: 0;
  width: 13rem;
  height: 13rem;
  object-fit: cover;
}

.interview-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #30a1af;
  padding: 1.5rem 2rem;
  position: relative;
}

.interview-card__quote {
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}
.interview-card__name {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.interview-card__name span {
  font-weight: 400;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  margin-left: 0.5rem;
}

.interview-card__label {
  position: absolute;
  bottom: 0.75rem;
  right: 1.25rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
}

.interview-card__body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #30a1af;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.interview-card__body p {
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 48rem) {
  .section-pad { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }

  .page-header { padding: 2.5rem 0; }
  .page-header__title { font-size: 1.5rem; padding-left: 1rem; }

  .page-nav { display: none; }

  .recruit-anchor {
    flex-direction: column;
    border-radius: 0.375rem;
  }
  .recruit-anchor li + li {
    border-left: none;
    border-top: 1px solid #06617f;
  }

  .recruit-table dt { width: 7rem; }
  .recruit-table dd { padding: 1rem; }

  .interview-card__photo {
    width: 10rem;
    height: 10rem;
  }
  .interview-card__info {
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 30rem) {
  .section-pad { padding: 2.5rem 0; }

  .recruit-row {
    flex-direction: column;
  }
  .recruit-table dt {
    width: 100%;
    padding: 0.75rem 1rem;
  }
  .recruit-table dd {
    border-left: none;
    padding: 0.75rem 1rem;
  }

  .interview-card__banner {
    flex-direction: column;
  }
  .interview-card__photo {
    width: 100%;
    height: auto;
  }
  .interview-card__label {
    position: static;
    text-align: right;
    margin-top: 0.75rem;
  }

  .form-table,
  .form-table thead,
  .form-table tbody,
  .form-table tr,
  .form-table th,
  .form-table td {
    display: block;
    width: 100%;
  }
  .form-table th {
    border-bottom: none;
    padding: 0.625rem 1rem;
    white-space: normal;
  }
  .form-table td {
    border-top: none;
  }
  .form-input {
    max-width: 100%;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-btn {
    text-align: center;
  }
}
