@charset "UTF-8";

/* =========================================
   JOB DESCRIPTION（募集要項）セクション
   ========================================= */

.sec-recruit-job {
  background-color: #ffffff;
  padding-top: 11.9rem;
  padding-bottom: 15.3rem;
}

.recruit-job__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.recruit-job__header {
  text-align: center;
  margin-bottom: 5.7rem;
}

.recruit-job__title-img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.recruit-job__subtitle {
  font-size: 2rem;
  font-weight: 400;
  color: #282828;
  margin-top: 2.8rem;
  letter-spacing: 0.1em;
}

.recruit-job__list {
  max-width: 60rem;
  margin: 0 auto;
}

.recruit-job__item {
  display: flex;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 0.1rem solid #aaaaaa;
}

.recruit-job__item:first-child {
  border-top: 0.1rem solid #aaaaaa;
}

.recruit-job__term {
  flex-shrink: 0;
  width: 15rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #282828;
  line-height: 1.8;
}

.recruit-job__desc {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 400;
  color: #282828;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .sec-recruit-job {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }

  .recruit-job__inner {
    padding: 0 2rem;
  }

  .recruit-job__header {
    margin-bottom: 4rem;
  }

  .recruit-job__title-img {
    width: 28rem;
    height: auto;
  }

  .recruit-job__subtitle {
    font-size: 1.6rem;
    margin-top: 2rem;
  }

  .recruit-job__list {
    max-width: 90%;
  }

  .recruit-job__item {
    flex-direction: column;
    padding: 1.6rem 0;
  }

  .recruit-job__term {
    width: 100%;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }

  .recruit-job__desc {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}


/* =========================================
   Q&A（よくある質問）セクション
   ========================================= */

.sec-recruit-faq {
  background-color: #e5ded6;
  padding-top: 4.7rem;
  padding-bottom: 9.1rem;
}

.recruit-faq__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.recruit-faq__header {
  text-align: center;
  margin-bottom: 2.9rem;
}

.recruit-faq__icon {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.recruit-faq__subtitle {
  font-size: 2rem;
  font-weight: 400;
  color: #282828;
  margin-top: 1.7rem;
  letter-spacing: 0.05em;
}

.recruit-faq__list {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.recruit-faq__item {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
}

.recruit-faq__badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

.recruit-faq__badge--q {
  background-color: #3b4165;
}

.recruit-faq__badge--a {
  background-color: #d94242;
}

.recruit-faq__question {
  display: flex;
  align-items: center;
  padding: 1.9rem 2.2rem 1.9rem 1.7rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.recruit-faq__question:hover {
  background-color: #fafafa;
}

.recruit-faq__question-text {
  flex: 1;
  margin-left: 1.9rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #282828;
  line-height: 1.5;
}

.recruit-faq__toggle {
  flex-shrink: 0;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 1.5rem;
}

.recruit-faq__toggle::before,
.recruit-faq__toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #282828;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.recruit-faq__toggle::before {
  width: 1.8rem;
  height: 0.2rem;
  transform: translate(-50%, -50%);
}

.recruit-faq__toggle::after {
  width: 0.2rem;
  height: 1.8rem;
  transform: translate(-50%, -50%);
}

.recruit-faq__item.is-open .recruit-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.recruit-faq__answer {
  display: none;
  padding: 0 2.2rem 2.6rem 1.7rem;
}

.recruit-faq__item.is-open .recruit-faq__answer {
  display: flex;
  align-items: flex-start;
}

.recruit-faq__answer-text {
  flex: 1;
  margin-left: 1.9rem;
  font-size: 1.7rem;
  font-weight: 400;
  color: #282828;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .sec-recruit-faq {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }

  .recruit-faq__inner {
    padding: 0 1.5rem;
  }

  .recruit-faq__header {
    margin-bottom: 2.4rem;
  }

  .recruit-faq__icon {
    width: 9rem;
    height: auto;
  }

  .recruit-faq__subtitle {
    font-size: 1.6rem;
    margin-top: 1.2rem;
  }

  .recruit-faq__list {
    max-width: 100%;
    gap: 1rem;
  }

  .recruit-faq__badge {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.6rem;
  }

  .recruit-faq__question {
    padding: 1.4rem 1.6rem 1.4rem 1.4rem;
  }

  .recruit-faq__question-text {
    margin-left: 1.4rem;
    font-size: 1.5rem;
  }

  .recruit-faq__toggle {
    width: 2rem;
    height: 2rem;
    margin-left: 1rem;
  }

  .recruit-faq__toggle::before {
    width: 1.4rem;
  }

  .recruit-faq__toggle::after {
    height: 1.4rem;
  }

  .recruit-faq__answer {
    padding: 0 1.6rem 2rem 1.4rem;
  }

  .recruit-faq__answer-text {
    margin-left: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}


/* =========================================
   ENTRY（エントリー）セクション
   ========================================= */
   
.sec-recruit-entry {
  background-color: #3b4165;
  padding-top: 6.6rem;
  padding-bottom: 12.9rem;
}

.recruit-entry__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.recruit-entry__header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.recruit-entry__title {
  font-family: 'Roboto', sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin: 0;
}

.recruit-entry__subtitle {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  margin-top: 1rem;
  letter-spacing: 0.1em;
}

.recruit-entry__cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4.4rem;
}

.recruit-entry__card {
  width: 35rem;
  min-height: 39rem;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.7rem 2.5rem 3.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruit-entry__card-icon {
  margin-bottom: 2rem;
}

.recruit-entry__card-icon img {
  display: block;
}

.recruit-entry__card-title {
  font-size: 2rem;
  font-weight: 500;
  color: #282828;
  margin: 0 0 2rem;
}

.recruit-entry__card-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #282828;
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

.recruit-entry__phone-number {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
  letter-spacing: 0.02em;
  display: block;
  transition: opacity 0.3s ease;
}

.recruit-entry__phone-number:hover {
  opacity: 0.7;
}

.recruit-entry__phone-note {
  font-size: 1.7rem;
  font-weight: 400;
  color: #282828;
  margin: 0.5rem 0 2rem;
}

.recruit-entry__card--line .recruit-entry__card-title {
  margin-bottom: 2.6rem;
}

.recruit-entry__qr {
  margin-bottom: 2.6rem;
}

.recruit-entry__qr img {
  display: block;
}

.recruit-entry__card--line .recruit-entry__card-text {
  text-align: center;
}

.recruit-entry__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.recruit-entry__mail-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruit-entry__mail-icon {
  display: block;
  margin-bottom: 0.8rem;
}

.recruit-entry__mail-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.recruit-entry__mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background-color: #ffffff;
  color: #3b4165;
  padding: 1.8rem 6rem;
  border-radius: 5rem;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.recruit-entry__mail-btn:hover {
  opacity: 0.9;
  transform: translateY(-0.2rem);
}

.recruit-entry__mail-btn-arrow {
  font-size: 2rem;
  font-weight: 700;
}

.recruit-entry__mail-btn-text {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .sec-recruit-entry {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }

  .recruit-entry__inner {
    padding: 0 2rem;
  }

  .recruit-entry__header {
    margin-bottom: 2.4rem;
  }

  .recruit-entry__title {
    font-size: 3.6rem;
  }

  .recruit-entry__subtitle {
    font-size: 1.6rem;
    margin-top: 0.8rem;
  }

  .recruit-entry__cards {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .recruit-entry__card {
    width: 100%;
    max-width: 35rem;
    min-height: auto;
    padding: 2.4rem 2rem 2.8rem;
  }

  .recruit-entry__card-icon {
    margin-bottom: 1.6rem;
  }

  .recruit-entry__card-icon img {
    width: 6rem;
    height: auto;
  }

  .recruit-entry__card-title {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }

  .recruit-entry__phone-number {
    font-size: 3.2rem;
  }

  .recruit-entry__phone-note {
    font-size: 1.5rem;
    margin: 0.4rem 0 1.6rem;
  }

  .recruit-entry__card-text {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .recruit-entry__card--line .recruit-entry__card-title {
    margin-bottom: 2rem;
  }

  .recruit-entry__qr {
    margin-bottom: 2rem;
  }

  .recruit-entry__qr img {
    width: 11rem;
    height: auto;
  }

  .recruit-entry__mail {
    flex-direction: column;
    gap: 2rem;
  }

  .recruit-entry__mail-icon {
    width: 12rem;
    height: auto;
  }

  .recruit-entry__mail-text {
    font-size: 1.4rem;
  }

  .recruit-entry__mail-btn {
    width: 100%;
    max-width: 30rem;
    padding: 1.4rem 3rem;
    gap: 1.2rem;
  }

  .recruit-entry__mail-btn-arrow {
    font-size: 1.6rem;
  }

  .recruit-entry__mail-btn-text {
    font-size: 1.8rem;
  }
}