@charset "utf-8";
:root {
  --brand-yellow: #f0e33b;
  --bg-yellow: #f6f5e4;
  --brand-green: #abe244;
  --black: #3b3b3b;
  --dark-green: #96c73a;
  --gradient: linear-gradient(90deg, #abe244, #f0df3d);
}

/* ===== recruit-intro ===== */
.sec-recruit-intro {
  margin: 80px auto;
  text-align: center;
}

.recruit-intro__h2 {
  margin: 0 0 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: clamp(22px, 5vw, 30px);

  color: #94d30c;

  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recruit .sec-recruit-intro .txt {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .sec-recruit-intro {
    margin: 36px auto 44px;
    padding: 0 18px;
  }

  .recruit-intro__h2 {
    margin: 0 0 14px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    font-size: clamp(22px, 3vw, 36px);
  }

  .recruit .sec-recruit-intro .txt {
    line-height: 1.8;
  }
}

/* ===== support ===== */
.sec-support {
  background: var(--brand-green);
}

.support__inner {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 42%);
  gap: 0;
  min-height: 380px;
}

.support__txtarea {
  margin-left: auto;
  padding: 64px 48px;
  display: flex;
  max-width: 660px;
  flex-direction: column;
  justify-content: center;
}

.support__txtarea-headline {
  margin: 0 0 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-size: clamp(22px, 3vw, 30px);
  color: #fff;
}

.support__txtarea .txt {
  margin-bottom: 20px;
  color: #fff;
}

.support__img {
  position: relative;
  overflow: hidden;
}

.support__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1300px) {
  .support__inner {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(300px, 36%);
    gap: 0;
    min-height: 380px;
  }

  .support__txtarea {
    padding: 44px 18px 44px 18px;
    max-width: 660px;
  }

  .support__txtarea .txt {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .support__inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .support__txtarea {
    padding: 44px 18px 32px 18px;
    max-width: 768px;
  }
  .support__img {
    height: 260px;
  }
}

/* ===== interview ===== */
.seo-interview {
  margin: 100px auto;
  padding: 0 18px;
}

.recruit .seo-interview .ttl-block,
.recruit .seo-interview .txt {
  text-align: center;
}

.ttl__video {
  margin: 20px auto 0;
  text-align: center;
}

iframe[src^="https://www.youtube.com/embed/8EyC8AUm5b0?si=uTTS3gkx9oK6Xuxw"]
{
  width: 700px;
  height: 393px;
}

@media (max-width: 768px) {
  .seo-interview {
    margin: 50px auto;
  }

  iframe[src^="https://www.youtube.com/embed/8EyC8AUm5b0?si=uTTS3gkx9oK6Xuxw"]
  {
    width: 100%;
    height: 300px;
  }
}

/* ===== recruitment ===== */
.sec-recruitment {
  background-color: var(--bg-yellow);
}

.recruitment__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 0;
}

.recruitment__h2 {
  margin-bottom: 60px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  text-align: center;
}

@media (max-width: 1238px) {
  .recruitment__inner {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 768px) {
  .recruitment__inner {
    padding: 40px 18px 40px;
  }

  .recruitment__h2 {
    margin-bottom: 20px;
  }
}

/* ===== 募集要項 ===== */
.recruit .info-table-value p {
  margin-bottom: 0;
}

/* ===== entry ===== */
.sec-entry {
  padding: 120px 0;
  background: var(--gradient);
}

.entry__inner {
  max-width: 1200px;
  margin: 0 auto 14px;
}

.entry__tel {
  position: relative;
  margin-bottom: 30px;
  padding: 16px 0;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
}

.entry__tel p {
  margin-bottom: 0;
}

.entry__tel-txt {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 500;
}

.entry__tel-number {
  padding-right: 32px;
  font-size: clamp(30px, 3vw, 34px);
  font-weight: 600;
}

.entry__tel-number::before {
  content: "";
  display: inline-block;
  width: 58px;
  height: 52px;
  background-color: #fff;
  content: url("../img/recruit/icon_tel.png");
  background-size: contain;
  vertical-align: middle;
}

.entry__tel-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 72px;
}

@media (max-width: 1238px) {
  .sec-entry {
    padding: 60px 18px;
  }
}

@media (max-width: 768px) {
  .entry__tel {
    padding: 12px 0;
    margin-bottom: 20px;
  }

  .entry__tel-btn {
    right: 12px;
    max-width: 42px;
  }

  .entry__tel-number {
    font-size: clamp(26px, 3vw, 34px);
  }

  .entry__tel-number::before {
    width: 50px;
    height: 45px;
  }
}
