:root {
  --green: #4f8f37;
  --green-deep: #2f6f2a;
  --green-soft: #eaf5e5;
  --green-pale: #f6fbf2;
  --leaf: #8fbd66;
  --brown: #594a32;
  --text: #263522;
  --muted: #687765;
  --line: #dfe9d8;
  --white: #fff;
  --shadow: 0 18px 45px rgba(57, 101, 45, .12);
  --radius: 18px;
  --serif: 'Noto Serif JP', serif;
  --sans: 'Noto Sans JP', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.8;
  background: #fff;
  letter-spacing: .04em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.center {
  text-align: center;
}

/* ==============================
   Header
   ============================== */

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 232, 214, .75);
  transition: .25s;
}

.is-scrolled .siteHeader {
  box-shadow: 0 10px 28px rgba(53, 83, 44, .08);
}

.siteHeader__inner {
  max-width: 1240px;
  min-height: 92px;
  margin: 0 auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.siteLogo img {
  width: 230px;
}

.globalNav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
}

.globalNav a {
  position: relative;
  padding: 34px 0 30px;
  color: #24341f;
  white-space: nowrap;
}

.globalNav a:not(.navRecruit)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: .2s;
}

.globalNav a:hover::after,
.globalNav .is-current::after {
  transform: scaleX(1);
}

.globalNav .navRecruit {
  padding: 13px 22px;
  color: #fff;
  background: linear-gradient(135deg, #6ea54a, #2f792e);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(50, 118, 46, .22);
}

.globalNav .navRecruit:hover {
  transform: translateY(-1px);
}

.navToggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 0;
}

.navToggle span {
  display: block;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
}

/* ==============================
   Common
   ============================== */

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: .2s;
  border: 1px solid transparent;
}

.btn::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
}

.btnPrimary {
  color: #fff;
  background: linear-gradient(135deg, #78a94d, #377a2e);
  box-shadow: 0 12px 26px rgba(50, 118, 46, .22);
}

.btnGhost,
.btnOutline {
  color: var(--green-deep);
  background: #fff;
  border-color: #9fc28b;
}

.btnRecruit {
  color: #fff;
  background: linear-gradient(135deg, #86b34b, #337a2c);
  box-shadow: 0 12px 26px rgba(50, 118, 46, .25);
}

.btn:hover {
  transform: translateY(-2px);
}

/* ==============================
   Hero
   ============================== */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 92px 24px 50px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .98) 0%,
      rgba(255, 255, 255, .96) 24%,
      rgba(255, 255, 255, .76) 42%,
      rgba(255, 255, 255, .18) 68%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .04) 0%,
      rgba(255, 255, 255, .08) 62%,
      #fff 100%
    ),
    url('../img/main.png') center top / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -90px;
  height: 180px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 52px;
}

.hero__copy {
  max-width: 640px;
  padding-top: 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .12em;
  color: #173f18;
  margin: 0 0 26px;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(255, 255, 255, .82);
}

.lead {
  font-family: var(--serif);
  font-weight: 600;
  color: #394b36;
  margin: 0 0 34px;
  text-shadow: 0 1px 12px rgba(255, 255, 255, .9);
}

.heroButtons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==============================
   Hero recruit card
   ============================== */

.recruitCard {
  position: relative;
  margin-top: 120px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(6px);
  border: 1px solid #cfe1c4;
  border-radius: 18px;
  padding: 34px 36px 30px;
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.recruitCard::before,
.recruitCard::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--green-soft);
}

.recruitCard::before {
  left: -35px;
  top: -35px;
}

.recruitCard::after {
  right: -36px;
  bottom: -36px;
}

.recruitCard__note {
  position: relative;
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

.recruitCard h2 {
  position: relative;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.45;
  margin: 0 0 10px;
  color: #2a6627;
}

.recruitCard p {
  position: relative;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.recruitPeople {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 18px 0 22px;
}

.recruitPeople img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}

/* ==============================
   Hero support
   ============================== */

.heroSupport {
  position: relative;
  z-index: 3;
  max-width: 1050px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(212, 229, 203, .65);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(7px);
}

.heroSupport div {
  text-align: center;
  padding: 27px 24px;
  border-right: 1px solid var(--line);
}

.heroSupport div:last-child {
  border-right: 0;
}

.heroSupport span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #f6fbf1;
  border: 1px solid #dcebcf;
  color: var(--green);
}

.heroSupport span i {
  font-size: 30px;
  line-height: 1;
}

.heroSupport b {
  display: block;
  color: #2f6f2a;
}

.heroSupport small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

/* ==============================
   Section
   ============================== */

.section {
  padding: 82px 24px;
}

.sectionTitle {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 760px;
}

.sectionTitle span {
  font-family: var(--serif);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 28px;
  font-weight: 600;
}

.sectionTitle span::before,
.sectionTitle span::after {
  content: "";
  width: 28px;
  height: 12px;
  background: linear-gradient(135deg, #bddaa3, #6fa44c);
  border-radius: 0 100% 0 100%;
  transform: rotate(18deg);
}

.sectionTitle h2 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin: 12px 0 4px;
  color: #45583e;
}

.sectionTitle p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

/* ==============================
   Service
   ============================== */

.serviceGrid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.serviceCard {
  min-height: 230px;
  padding: 30px 28px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(63, 96, 52, .06);
  transition: .2s;
}

.serviceCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.serviceCard .icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5faef;
  border: 1px solid #dcebd3;
  color: var(--green);
}

.serviceCard .icon i {
  display: block;
  font-size: 32px;
  line-height: 1;
  color: var(--green);
}

.serviceCard h3 {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-size: 18px;
}

.serviceCard p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #4d5d49;
  font-weight: 500;
}

.serviceCard a {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
}

.serviceCard a::after {
  content: " 〉";
}

.service .center {
  margin-top: 22px;
}

/* ==============================
   Recruit band
   ============================== */

.recruitBand {
  position: relative;
  overflow: hidden;
  padding: 88px 24px;
  background:
    linear-gradient(
      90deg,
      rgba(244, 250, 238, 1) 0%,
      rgba(244, 250, 238, .98) 30%,
      rgba(244, 250, 238, .82) 45%,
      rgba(244, 250, 238, .36) 60%,
      rgba(244, 250, 238, .08) 76%,
      rgba(244, 250, 238, 0) 100%
    ),
    url("../img/recruit-back.png") right center / auto 100% no-repeat;
}

.recruitBand::before {
  content: "";
  position: absolute;
  left: -70px;
  top: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 181, 89, .22), transparent 70%);
  pointer-events: none;
}

.recruitBand__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  min-height: 350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 540px 300px 1fr;
  align-items: center;
  gap: 54px;
}

.recruitBand__copy {
  max-width: 540px;
}

.recruitBand__copy .eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .28em;
}

.recruitBand__copy h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .08em;
  color: #173f18;
  margin: 0 0 24px;
}

.recruitBand__copy p:not(.eyebrow) {
  font-size: 15px;
  line-height: 2;
  font-weight: 600;
  color: #334436;
  margin: 0 0 28px;
}

.recruitBand__point {
  width: 300px;
  height: 300px;
  padding: 46px 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(151, 191, 127, .42);
  box-shadow: 0 20px 48px rgba(77, 126, 58, .12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruitBand__point h3 {
  color: var(--green-deep);
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: .06em;
}

.recruitBand__point ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruitBand__point li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 700;
  color: #3f533f;
  white-space: nowrap;
}

.recruitBand__point li + li {
  margin-top: 8px;
}

.recruitBand__point li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

/* ==============================
   Flow
   ============================== */

.flow {
  background: #fff;
}

.flowList {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.flowList li {
  position: relative;
  text-align: center;
}

.flowList li:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -17px;
  top: 58px;
  color: var(--green);
  font-size: 34px;
}

.flowList span {
  display: block;
  color: var(--green);
  font-weight: 700;
  font-size: 20px;
}

.flowList i {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 8px auto 16px;
  border-radius: 50%;
  background: #fbfef8;
  border: 1px solid #dae9d0;
  color: var(--green);
  font-size: 38px;
  line-height: 1;
}

.flowList h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: #31462d;
}

.flowList p {
  font-size: 13px;
  color: #596956;
  font-weight: 600;
  margin: 0;
}

/* ==============================
   Info
   ============================== */

.infoArea {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.infoCard {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: center;
  gap: 26px;
  padding: 34px 34px 34px 36px;
  background: linear-gradient(135deg, #fbfef8, #fff);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(63, 96, 52, .06);
  overflow: hidden;
}

.infoCard__body {
  position: relative;
  z-index: 2;
}

.infoCard h2 {
  font-family: var(--serif);
  color: var(--green-deep);
  font-size: 26px;
  line-height: 1.45;
  margin: 0 0 14px;
}

.infoCard p {
  color: #556650;
  font-weight: 600;
  line-height: 1.9;
  margin: 0 0 24px;
}

.infoCard__image {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infoCard__image img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
}

/* 事業所案内 */
.infoCard--office {
  background:
    linear-gradient(135deg, rgba(246, 251, 242, 1), rgba(255, 255, 255, 1));
}

/* FAQ */
.infoCard--faq {
  position: relative;
  background:
    radial-gradient(circle at right 18% bottom 18%, rgba(143, 189, 102, .14), transparent 22%),
    linear-gradient(135deg, rgba(251, 254, 248, 1), rgba(255, 255, 255, 1));
}

/* ==============================
   Info responsive
   ============================== */

@media (max-width: 1050px) {
  .infoArea {
    grid-template-columns: 1fr;
  }

  .infoCard {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .infoCard__image img {
    max-width: 220px;
  }
}

@media (max-width: 640px) {
  .infoArea {
    gap: 18px;
    padding-top: 18px;
  }

  .infoCard {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 22px;
  }

  .infoCard h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .infoCard p {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 20px;
  }

  .infoCard__image {
    justify-content: center;
  }

  .infoCard__image img {
    max-width: 260px;
  }
}

/* ==============================
   Contact CTA
   ============================== */

.contactCta {
  position: relative;
  overflow: hidden;
  padding: 34px 24px;
  background: #fbfef8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contactCta__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
}

.contactCta p {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.contactCta .tel {
  display: inline-flex;
  align-items: center;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: .02em;
}

.contactCta .tel::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 22px;
  color: var(--green);
  margin-right: 12px;
}

.contactCta__illust {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: .82;
}

.contactCta__illust--tree {
  left: 42px;
  bottom: -10px;
  width: 120px;
}

.contactCta__illust--bird {
  right: 56px;
  bottom: 10px;
  width: 92px;
}
@media (max-width: 640px) {
  .contactCta {
    padding: 36px 18px 46px;
  }

  .contactCta__inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .contactCta p {
    font-size: 18px;
  }

  .contactCta .tel {
    font-size: 28px;
  }

  .contactCta__illust--tree {
    left: -18px;
    bottom: -14px;
    width: 92px;
    opacity: .55;
  }

  .contactCta__illust--bird {
    right: -8px;
    bottom: 4px;
    width: 70px;
    opacity: .65;
  }
}
/* ==============================
   Footer
   ============================== */

.footer {
  padding: 50px 24px 18px;
  background: #fff;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 330px 1fr 340px;
  gap: 44px;
  align-items: start;
}

.footerLogo img {
  width: 210px;
  margin-bottom: 16px;
}

.footerLogo p,
.footer address {
  font-style: normal;
  font-size: 14px;
  color: #566552;
  font-weight: 600;
}

.footerNav {
  margin: 0;
  list-style: none;
  columns: 2;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 0 0 0 44px;
}

.footerNav li {
  break-inside: avoid;
  margin: 0 0 10px;
}

.footerNav a {
  color: var(--green-deep);
  font-weight: 700;
  font-size: 14px;
}

.copy {
  text-align: center;
  color: #71806d;
  font-size: 12px;
  margin: 34px 0 0;
}

/* ==============================
   Tablet
   ============================== */

@media (max-width: 1050px) {
  .siteHeader__inner {
    min-height: 76px;
    padding: 0 20px;
  }

  .siteLogo img {
    width: 190px;
  }

  .navToggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .globalNav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(53, 83, 44, .12);
    display: grid;
    gap: 0;
    padding: 16px 24px 26px;
    transform: translateY(-130%);
    transition: .28s;
  }

  .is-nav-open .globalNav {
    transform: translateY(0);
  }

  .globalNav a {
    padding: 14px 4px;
    border-bottom: 1px solid #edf4e9;
  }

  .globalNav a::after {
    display: none;
  }

  .globalNav .navRecruit {
    margin-top: 14px;
    text-align: center;
    border-bottom: 0;
  }

  .hero {
    padding-top: 58px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, .92) 0%,
        rgba(255, 255, 255, .78) 38%,
        rgba(255, 255, 255, .96) 100%
      ),
      url('../img/main.png') center top / cover no-repeat;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__copy {
    max-width: 620px;
  }

  .recruitCard {
    max-width: 520px;
    margin-top: 0;
  }

  .heroSupport {
    grid-template-columns: 1fr;
  }

  .heroSupport div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .heroSupport div:last-child {
    border-bottom: 0;
  }

  .serviceGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruitBand {
    padding: 72px 24px 340px;
    background:
      linear-gradient(
        180deg,
        rgba(244, 250, 238, 1) 0%,
        rgba(244, 250, 238, .98) 52%,
        rgba(244, 250, 238, .46) 76%,
        rgba(244, 250, 238, .08) 100%
      ),
      url("../img/recruit-back.png") center bottom / auto 340px no-repeat;
  }

  .recruitBand__inner {
    width: min(720px, 100%);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .recruitBand__copy {
    max-width: none;
  }

  .recruitBand__copy h2 {
    font-size: clamp(28px, 5.6vw, 38px);
    line-height: 1.65;
  }

  .recruitBand__point {
    width: 280px;
    height: 280px;
    padding: 40px 30px;
    margin: 0 auto;
  }

  .recruitBand__point li {
    white-space: normal;
  }

  .flowList {
    grid-template-columns: repeat(2, 1fr);
  }

  .flowList li:not(:last-child)::after {
    display: none;
  }

  .infoArea {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footerNav {
    columns: 1;
    border: 0;
    padding-left: 0;
  }
}

/* ==============================
   Mobile
   ============================== */

@media (max-width: 640px) {
  body {
    letter-spacing: .02em;
  }

  .hero {
    min-height: auto;
    padding: 42px 18px 36px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, .94) 0%,
        rgba(255, 255, 255, .84) 45%,
        rgba(255, 255, 255, .98) 100%
      ),
      url('../img/main.png') 62% top / auto 420px no-repeat;
  }

  .hero::after {
    display: none;
  }

  .hero__copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: 1.62;
    letter-spacing: .08em;
    white-space: normal;
  }

  .lead br {
    display: none;
  }

  .heroButtons .btn {
    width: 100%;
  }

  .recruitCard {
    padding: 28px 20px;
  }

  .recruitCard h2 {
    font-size: 28px;
  }

  .recruitPeople img {
    max-width: 190px;
  }

  .heroSupport {
    margin-top: 32px;
  }

  .section {
    padding: 58px 18px;
  }

  .sectionTitle span {
    font-size: 24px;
  }

  .serviceGrid {
    grid-template-columns: 1fr;
  }

  .serviceCard {
    min-height: auto;
  }

  .recruitBand {
    padding: 58px 18px 285px;
    background:
      linear-gradient(
        180deg,
        rgba(244, 250, 238, 1) 0%,
        rgba(244, 250, 238, .98) 60%,
        rgba(244, 250, 238, .36) 82%,
        rgba(244, 250, 238, .08) 100%
      ),
      url("../img/recruit-back.png") center bottom / auto 285px no-repeat;
  }

  .recruitBand__copy h2 {
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.7;
  }

  .recruitBand__copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 2;
  }

  .recruitBand__copy p:not(.eyebrow) br {
    display: none;
  }

  .recruitBand__point {
    width: 260px;
    height: 260px;
    padding: 36px 26px;
  }

  .recruitBand__point h3 {
    font-size: 16px;
  }

  .recruitBand__point li {
    font-size: 13px;
  }

  .flowList {
    grid-template-columns: 1fr;
  }

  .infoCard {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .contactCta {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .contactCta .tel {
    font-size: 28px;
  }

  .footer {
    padding: 40px 18px 18px;
  }
}
/* ==============================
   Recruit band mobile fine tuning
   ============================== */

@media (max-width: 640px) {
  .recruitBand {
    padding: 50px 18px 240px;
    background:
      linear-gradient(
        180deg,
        rgba(244, 250, 238, 1) 0%,
        rgba(244, 250, 238, .98) 62%,
        rgba(244, 250, 238, .55) 82%,
        rgba(244, 250, 238, .12) 100%
      ),
      url("../img/recruit-back.png") center bottom / auto 245px no-repeat;
  }

  .recruitBand__inner {
    gap: 26px;
  }

  .recruitBand__copy .eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: .26em;
  }

  .recruitBand__copy h2 {
    font-size: clamp(23px, 6.2vw, 29px);
    line-height: 1.72;
    letter-spacing: .06em;
    margin-bottom: 20px;
  }

  .recruitBand__copy p:not(.eyebrow) {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 24px;
  }

  .recruitBand__copy .btn {
    min-width: 180px;
    min-height: 44px;
    padding: 10px 22px;
    font-size: 13px;
  }

  .recruitBand__point {
    width: 240px;
    height: 240px;
    padding: 32px 24px;
  }

  .recruitBand__point h3 {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .recruitBand__point li {
    font-size: 12px;
    line-height: 1.7;
    padding-left: 18px;
  }

  .recruitBand__point li + li {
    margin-top: 6px;
  }
}
/* ==============================
   Recruit band mobile natural layout
   ============================== */

@media (max-width: 640px) {
  .recruitBand {
    padding: 48px 18px 0;
    background: #f4faee;
  }

  .recruitBand::after {
    content: "";
    display: block;
    width: calc(100% + 36px);
    height: 210px;
    margin: 28px -18px 0;
    background:
      linear-gradient(
        180deg,
        rgba(244, 250, 238, .92) 0%,
        rgba(244, 250, 238, .35) 34%,
        rgba(255, 255, 255, 0) 72%
      ),
      url("../img/recruit-back.png") center center / cover no-repeat;
  }

  .recruitBand__inner {
    width: 100%;
    gap: 22px;
  }

  .recruitBand__copy .eyebrow {
    margin-bottom: 14px;
  }

  .recruitBand__copy h2 {
    font-size: clamp(24px, 6.7vw, 31px);
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .recruitBand__copy p:not(.eyebrow) {
    margin-bottom: 22px;
  }

  .recruitBand__point {
    width: 245px;
    height: 245px;
    padding: 34px 25px;
    margin: 10px auto 0;
  }
}
/* ==============================
   Home guide
   ============================== */

.homeGuide {
  position: relative;
  z-index: 4;
  padding: 34px 24px 0;
}

.homeGuide__inner {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
}

.homeGuideCard {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(212, 229, 203, .9);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(63, 96, 52, .08);
  backdrop-filter: blur(8px);
  padding: 28px 30px 30px;
}

.homeGuideCard h2 {
  font-family: var(--serif);
  color: var(--green-deep);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 22px;
  padding: 12px 18px;
  background: #f4faee;
  border-radius: 12px;
  border: 1px solid rgba(212, 229, 203, .75);
}

.areaRows {
  display: grid;
  gap: 16px;
}

.areaRow {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 16px;
}

.areaRow + .areaRow {
  padding-top: 16px;
  border-top: 1px dashed rgba(79, 143, 55, .32);
}

.areaLabel {
  display: grid;
  place-items: center;
  width: 72px;
  height: 58px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #b9d8a8;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.areaRow ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 0;
  margin: 0;
}

.areaRow li {
  position: relative;
  padding-left: 18px;
  color: #334436;
  font-weight: 700;
  white-space: nowrap;
}

.areaRow li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--leaf);
  transform: translateY(-50%);
}

.targetList {
  list-style: none;
  padding: 4px 0 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.targetList li {
  position: relative;
  padding-left: 28px;
  color: #334436;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.targetList li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: .2em;
  color: var(--green);
  font-size: 14px;
}
@media (max-width: 900px) {
  .homeGuide__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .homeGuide {
    padding: 26px 18px 0;
  }

  .homeGuideCard {
    padding: 22px 18px 24px;
    border-radius: 18px;
  }

  .homeGuideCard h2 {
    font-size: 20px;
    margin-bottom: 18px;
    padding: 10px 14px;
  }

  .areaRow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .areaLabel {
    width: auto;
    height: auto;
    min-height: 44px;
    border-radius: 999px;
    padding: 8px 14px;
    justify-self: flex-start;
  }

  .areaLabel span br {
    display: none;
  }

  .areaRow ul {
    gap: 8px 18px;
  }

  .areaRow li {
    font-size: 14px;
  }

  .targetList {
    gap: 10px;
  }

  .targetList li {
    font-size: 14px;
    line-height: 1.75;
  }
}
/* ==============================
   Home news
   ============================== */

.homeNews {
    position: relative;
  padding: 54px 24px;
  background: linear-gradient(180deg, #f6fbf2 0%, #eef7e8 100%);
  border-top: 1px solid rgba(212, 229, 203, .7);
  border-bottom: 1px solid rgba(212, 229, 203, .7);
}

.homeNews__inner {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 24px 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 251, 242, .92));
  border: 1px solid rgba(212, 229, 203, .9);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(63, 96, 52, .08);
}

.homeNews__head span {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
}

.homeNews__head h2 {
  font-family: var(--serif);
  margin: 0;
  color: var(--green-deep);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
}

.homeNews__list {
  display: grid;
  gap: 10px;
}

.homeNews__item {
  display: grid;
  grid-template-columns: 100px 78px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: #334436;
  font-weight: 600;
}

.homeNews__item time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.homeNews__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #edf7e8;
  color: var(--green-deep);
  border: 1px solid #cfe3c4;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.homeNews__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.homeNews__item:hover p {
  color: var(--green);
}

.homeNews__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--green-deep);
  background: #fff;
  border: 1px solid #9fc28b;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.homeNews__more::after {
  content: "›";
  margin-left: 8px;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 900px) {
  .homeNews__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .homeNews__more {
    justify-self: flex-start;
  }
}

@media (max-width: 640px) {
  .homeNews {
    padding: 28px 18px 8px;
  }

  .homeNews__inner {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .homeNews__head h2 {
    font-size: 23px;
  }

  .homeNews__item {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(212, 229, 203, .75);
  }

  .homeNews__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .homeNews__cat {
    justify-self: flex-start;
  }

  .homeNews__item p {
    font-size: 14px;
  }
}
.homeNews__inner {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 24px 30px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(212, 229, 203, .9);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(63, 96, 52, .08);
}
.homeNews::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 189, 102, .22), transparent 68%);
  pointer-events: none;
}

.homeNews::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 189, 102, .18), transparent 68%);
  pointer-events: none;
}

.homeNews__inner {
  position: relative;
  z-index: 2;
}



/* ==============================
   Lower page common
   ============================== */

.pageHero {
  position: relative;
  overflow: hidden;
  padding: 86px 24px 76px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .98) 0%,
      rgba(255, 255, 255, .92) 42%,
      rgba(246, 251, 242, .76) 68%,
      rgba(246, 251, 242, .52) 100%
    ),
    url("../img/main.png") center 42% / cover no-repeat;
}

.pageHero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left 20% bottom -20%, rgba(143, 189, 102, .18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.62) 100%);
  pointer-events: none;
}

.pageHero__inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.pageHero h1 {
  font-family: var(--serif);
  color: #173f18;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .1em;
  margin: 0 0 18px;
}

.pageHero p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #394b36;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 2;
}

.breadcrumb {
  padding: 14px 24px;
  border-top: 1px solid rgba(212, 229, 203, .55);
  border-bottom: 1px solid rgba(212, 229, 203, .55);
  background: #fbfef8;
}

.breadcrumb ol {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--green);
}

.breadcrumb a {
  color: var(--green-deep);
}

.lowerSection {
  padding: 82px 24px;
}

.lowerSection--soft {
  background: linear-gradient(180deg, #f8fcf4 0%, #fff 100%);
  border-top: 1px solid rgba(212, 229, 203, .55);
  border-bottom: 1px solid rgba(212, 229, 203, .55);
}

.lowerSection__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 64px;
}

.lowerSection__inner--single {
  display: block;
}

.lowerLead h2 {
  font-family: var(--serif);
  color: var(--green-deep);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .08em;
  margin: 0 0 24px;
}

.lowerLead p:not(.eyebrow) {
  color: #40503d;
  font-size: 16px;
  font-weight: 600;
  line-height: 2.1;
  margin: 0;
}

.lowerImageBox {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.lowerImageBox img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.lowerCardGrid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lowerCard {
  padding: 32px 28px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(63, 96, 52, .06);
}

.lowerCard__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5faef;
  border: 1px solid #dcebd3;
  color: var(--green);
}

.lowerCard__icon i {
  font-size: 30px;
  line-height: 1;
}

.lowerCard h3 {
  margin: 0 0 10px;
  color: var(--green-deep);
  font-size: 18px;
}

.lowerCard p {
  margin: 0;
  color: #4d5d49;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.lowerMessage {
  text-align: center;
  padding: 50px 34px;
  border-radius: 24px;
  background:
    radial-gradient(circle at left top, rgba(143, 189, 102, .16), transparent 30%),
    linear-gradient(135deg, #fbfef8, #fff);
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(63, 96, 52, .06);
}

.lowerMessage h2 {
  font-family: var(--serif);
  color: var(--green-deep);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 16px;
}

.lowerMessage p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: #40503d;
  font-weight: 600;
  line-height: 2;
}

/* ==============================
   Lower page responsive
   ============================== */

@media (max-width: 900px) {
  .pageHero {
    padding: 70px 20px 62px;
  }

  .lowerSection__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lowerImageBox {
    max-width: 520px;
    margin: 0 auto;
  }

  .lowerCardGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pageHero {
    padding: 54px 18px 48px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, .95) 0%,
        rgba(255, 255, 255, .9) 55%,
        rgba(246, 251, 242, .7) 100%
      ),
      url("../img/main.png") 62% top / auto 360px no-repeat;
  }

  .pageHero h1 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.5;
    letter-spacing: .08em;
  }

  .pageHero p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.9;
  }

  .breadcrumb {
    padding: 12px 18px;
  }

  .lowerSection {
    padding: 58px 18px;
  }

  .lowerLead h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.65;
  }

  .lowerLead p:not(.eyebrow) {
    font-size: 14px;
    line-height: 2;
  }

  .lowerImageBox {
    padding: 20px;
    border-radius: 18px;
  }

  .lowerCardGrid {
    grid-template-columns: 1fr;
  }

  .lowerMessage {
    padding: 38px 22px;
    border-radius: 18px;
  }

  .lowerMessage h2 {
    font-size: 25px;
  }

  .lowerMessage p {
    font-size: 14px;
  }
}

/* =========================
  homeNews SP fix
========================= */
@media (max-width: 640px) {
  .homeNews {
    padding: 0 16px 48px;
  }

  .homeNews__inner {
    position: relative;
    display: block;
    width: 100%;
    padding: 24px 20px 28px;
    border-radius: 18px;
    background: #fff;
    box-sizing: border-box;
  }

  .homeNews__head {
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
  }

  .homeNews__head span {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .homeNews__head h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.4;
  }

  .homeNews__list {
    width: 100%;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
  }

  .homeNews__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 10px;
    align-items: center;
    width: 100%;
    padding: 0;
    text-decoration: none;
  }

  .homeNews__item time {
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .homeNews__cat {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
  }

  .homeNews__item p {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .homeNews__more {
    position: static;
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    padding: 8px 16px;
    font-size: 12px;
  }
}
/* =========================
  Lower page common
========================= */
.pageHero {
  position: relative;
  padding: 150px 20px 80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 220, 164, 0.35), transparent 32%),
    linear-gradient(135deg, #f5fbf1 0%, #ffffff 58%, #eef8e8 100%);
  overflow: hidden;
}

.pageHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/main.png");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}

.pageHero__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.pageHero h1 {
  margin: 12px 0 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.35;
  color: #174b28;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.pageHero p:not(.eyebrow) {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #34523b;
}

.servicePageIntro {
  padding-top: 90px;
}

.serviceGuide {
  padding: 20px 20px 90px;
  background: #f7fbf4;
}

.serviceDay {
  background: #fff;
}

.serviceDay__box {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid rgba(88, 143, 89, 0.18);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.serviceDay__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  color: #2f7b37;
  font-weight: 700;
  font-size: 22px;
}

.serviceDay__main i {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #eef8e8;
  color: #2f7b37;
}

.serviceDay__box ul {
  max-width: 560px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.serviceDay__box li {
  position: relative;
  padding-left: 1.4em;
  line-height: 2;
  color: #34523b;
}

.serviceDay__box li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #9bcf84;
  font-size: 0.75em;
}

@media (max-width: 640px) {
  .pageHero {
    padding: 120px 20px 56px;
  }

  .pageHero h1 {
    font-size: 30px;
  }

  .pageHero p:not(.eyebrow) {
    font-size: 14px;
    text-align: left;
  }

  .servicePageIntro {
    padding-top: 60px;
  }

  .serviceGuide {
    padding: 0 16px 60px;
  }

  .serviceDay__box {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .serviceDay__main {
    flex-direction: column;
    font-size: 18px;
    text-align: center;
  }
}

/* =========================
  Flow page
========================= */
.flowIntro {
  padding-top: 90px;
  background: #fff;
}

.flowMessage {
  max-width: 860px;
  margin: 44px auto 0;
  padding: 34px 40px;
  border-radius: 28px;
  background: #f7fbf4;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 18px 45px rgba(60, 96, 58, 0.07);
}

.flowMessage p {
  margin: 0;
  color: #34523b;
  line-height: 2;
  font-weight: 500;
}

.flowStepSection {
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 220, 164, 0.25), transparent 30%),
    linear-gradient(180deg, #f7fbf4 0%, #fff 100%);
}

.flowList--large {
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.flowList--large li {
  min-height: 260px;
}

.flowAbout {
  background: #fff;
}

.flowAbout__box {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: center;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.18);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.flowAbout__icon {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef8e8;
  color: #2f7b37;
  font-size: 36px;
}

.flowAbout__text h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  color: #174b28;
  font-size: 24px;
  line-height: 1.5;
}

.flowAbout__text p {
  margin: 0;
  color: #34523b;
  line-height: 2;
}

.privacyNote {
  padding: 80px 20px;
  background: #f7fbf4;
}

.privacyNote__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
}

.privacyNote__inner .sectionTitle {
  margin-bottom: 22px;
}

.privacyNote__inner p {
  margin: 0;
  color: #34523b;
  line-height: 2;
  text-align: center;
}

@media (max-width: 900px) {
  .flowList--large {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .flowIntro {
    padding-top: 60px;
  }

  .flowMessage {
    margin-top: 30px;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .flowMessage p {
    font-size: 14px;
    line-height: 1.9;
  }

  .flowList--large {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flowList--large li {
    min-height: auto;
  }

  .flowAbout__box {
    padding: 30px 22px;
    grid-template-columns: 1fr;
    text-align: center;
    border-radius: 24px;
  }

  .flowAbout__icon {
    margin: 0 auto;
    width: 76px;
    height: 76px;
    font-size: 30px;
  }

  .flowAbout__text h3 {
    font-size: 20px;
  }

  .privacyNote {
    padding: 56px 16px;
  }

  .privacyNote__inner {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .privacyNote__inner p {
    text-align: left;
    font-size: 14px;
  }
}
/* =========================
  Office page
========================= */
.officeIntro {
  padding-top: 90px;
  background: #fff;
}

.officeInfo {
  background:
    radial-gradient(circle at 14% 18%, rgba(184, 220, 164, 0.24), transparent 30%),
    linear-gradient(180deg, #f7fbf4 0%, #fff 100%);
}

.officeInfo__box {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.18);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.officeInfo__list {
  margin: 0;
}

.officeInfo__list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(88, 143, 89, 0.15);
}

.officeInfo__list div:first-child {
  padding-top: 0;
}

.officeInfo__list div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.officeInfo__list dt {
  color: #174b28;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.officeInfo__list dd {
  margin: 0;
  color: #34523b;
  line-height: 1.9;
}

.officeInfo__list dd a {
  color: #2f7b37;
  font-weight: 700;
  text-decoration: none;
}

.officeAccess {
  background: #fff;
}

.officeAccess__map {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(88, 143, 89, 0.18);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.officeAccess__map iframe {
  display: block;
  width: 100%;
  height: 430px;
}

.officeLinks {
  background: #f7fbf4;
}

.officeLinks__grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.officeLinkCard {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 16px 42px rgba(60, 96, 58, 0.07);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.officeLinkCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(60, 96, 58, 0.11);
}

.officeLinkCard__icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef8e8;
  color: #2f7b37;
  font-size: 28px;
}

.officeLinkCard h3 {
  margin: 0 0 8px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
}

.officeLinkCard p {
  margin: 0;
  color: #58715c;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .officeIntro {
    padding-top: 60px;
  }

  .officeInfo__box {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .officeInfo__list div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .officeInfo__list dt {
    font-size: 14px;
  }

  .officeInfo__list dd {
    font-size: 14px;
  }

  .officeAccess__map {
    border-radius: 24px;
  }

  .officeAccess__map iframe {
    height: 320px;
  }

  .officeLinks__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .officeLinkCard {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .officeLinkCard__icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .officeLinkCard h3 {
    font-size: 18px;
  }

  .officeLinkCard p {
    font-size: 13px;
  }
}
/* =========================
  Document pages
========================= */
.documentSection {
  padding-top: 90px;
  background:
    radial-gradient(circle at 14% 18%, rgba(184, 220, 164, 0.22), transparent 30%),
    linear-gradient(180deg, #f7fbf4 0%, #fff 100%);
}

.documentBox {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.18);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.documentContent {
  color: #34523b;
  line-height: 2;
}

.documentContent p {
  margin: 0 0 1.6em;
}

.documentContent h3 {
  margin: 42px 0 18px;
  padding-left: 18px;
  border-left: 5px solid #9bcf84;
  color: #174b28;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.5;
}

.documentContent h3:first-child {
  margin-top: 0;
}

.documentContent ul {
  margin: 0 0 1.8em;
  padding: 0;
  list-style: none;
}

.documentContent li {
  position: relative;
  padding: 12px 0 12px 1.8em;
  border-bottom: 1px solid rgba(88, 143, 89, 0.12);
}

.documentContent li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 12px;
  color: #9bcf84;
  font-size: 0.7em;
}

.documentDl {
  margin: 0 0 40px;
  border-top: 1px solid rgba(88, 143, 89, 0.15);
}

.documentDl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(88, 143, 89, 0.15);
}

.documentDl dt {
  color: #174b28;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.documentDl dd {
  margin: 0;
  color: #34523b;
}

.documentDl a {
  color: #2f7b37;
  font-weight: 700;
  text-decoration: none;
}

.documentNote {
  margin-top: 36px;
  padding: 22px 26px;
  border-radius: 20px;
  background: #f7fbf4;
  border: 1px solid rgba(88, 143, 89, 0.16);
}

.documentNote p {
  margin: 0;
  font-size: 14px;
  color: #58715c;
}

@media (max-width: 760px) {
  .documentSection {
    padding-top: 60px;
  }

  .documentBox {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .documentContent {
    font-size: 14px;
    line-height: 1.9;
  }

  .documentContent h3 {
    margin-top: 34px;
    font-size: 20px;
  }

  .documentDl div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .documentDl dt,
  .documentDl dd {
    font-size: 14px;
  }

  .documentNote {
    padding: 18px 20px;
  }
}
/* =========================
  Contact CTA layout fix
========================= */
.contactCta {
  position: relative;
  overflow: hidden;
}

.contactCta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 24px;
  box-sizing: border-box;
}

.contactCta__inner p {
  flex: 1 1 320px;
  min-width: 260px;
  margin: 0;
  line-height: 1.8;
}

.contactCta .tel {
  flex: 0 0 auto;
  white-space: nowrap;
  word-break: keep-all;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}

.contactCta .btn {
  flex: 0 0 auto;
  white-space: nowrap;
  min-width: 220px;
  text-align: center;
}

@media (max-width: 760px) {
  .contactCta__inner {
    flex-direction: column;
    gap: 18px;
    padding: 48px 20px;
    text-align: center;
  }

  .contactCta__inner p {
    flex: none;
    min-width: 0;
    width: 100%;
  }

  .contactCta .tel {
    font-size: 30px;
  }

  .contactCta .btn {
    width: 100%;
    max-width: 280px;
    min-width: 0;
  }
}
/* =========================
  Contact page
========================= */
.contactLead {
  padding-top: 90px;
  background: #fff;
}

.contactInfoBox {
  max-width: 860px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contactInfoBox__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px;
  border-radius: 26px;
  background: #f7fbf4;
  border: 1px solid rgba(88, 143, 89, 0.16);
}

.contactInfoBox__item i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef8e8;
  color: #2f7b37;
  font-size: 26px;
}

.contactInfoBox__item h3 {
  margin: 0 0 6px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
}

.contactInfoBox__item p {
  margin: 0;
  color: #34523b;
  line-height: 1.6;
}

.contactInfoBox__item a {
  color: #2f7b37;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.contactFormSection {
  padding-top: 40px;
  background:
    radial-gradient(circle at 14% 18%, rgba(184, 220, 164, 0.22), transparent 30%),
    linear-gradient(180deg, #f7fbf4 0%, #fff 100%);
}

.contactFormBox {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.18);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.contactForm__row {
  margin-bottom: 26px;
}

.contactForm__row label {
  display: block;
  margin-bottom: 10px;
  color: #174b28;
  font-weight: 700;
  line-height: 1.6;
}

.contactForm__row label span {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e95f5f;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  vertical-align: middle;
}

.contactForm input[type="text"],
.contactForm input[type="email"],
.contactForm input[type="tel"],
.contactForm select,
.contactForm textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(88, 143, 89, 0.24);
  border-radius: 14px;
  background: #fff;
  box-sizing: border-box;
  color: #243b29;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contactForm textarea {
  min-height: 180px;
  resize: vertical;
}

.contactForm input:focus,
.contactForm select:focus,
.contactForm textarea:focus {
  border-color: #78b75f;
  box-shadow: 0 0 0 4px rgba(120, 183, 95, 0.16);
}

.contactForm__privacy {
  margin: 30px 0;
  padding: 20px;
  border-radius: 16px;
  background: #f7fbf4;
  color: #34523b;
  line-height: 1.7;
}

.contactForm__privacy .wpcf7-list-item {
  margin: 0;
}

.contactForm__submit {
  text-align: center;
}

.contactForm input[type="submit"] {
  min-width: 240px;
  min-height: 56px;
  padding: 14px 34px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #58a53f 0%, #2f7b37 100%);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(47, 123, 55, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contactForm input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(47, 123, 55, 0.28);
}

.wpcf7-spinner {
  display: block;
  margin: 16px auto 0;
}

.wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #d93d3d;
  font-size: 13px;
}

.wpcf7-response-output {
  margin: 28px 0 0 !important;
  padding: 16px 20px !important;
  border-radius: 14px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .contactLead {
    padding-top: 60px;
  }

  .contactInfoBox {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .contactInfoBox__item {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 22px 20px;
    border-radius: 22px;
  }

  .contactInfoBox__item i {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .contactInfoBox__item h3 {
    font-size: 17px;
  }

  .contactInfoBox__item a {
    font-size: 22px;
  }

  .contactFormSection {
    padding-top: 24px;
  }

  .contactFormBox {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .contactForm__row {
    margin-bottom: 22px;
  }

  .contactForm input[type="text"],
  .contactForm input[type="email"],
  .contactForm input[type="tel"],
  .contactForm select,
  .contactForm textarea {
    font-size: 16px;
    border-radius: 12px;
  }

  .contactForm input[type="submit"] {
    width: 100%;
    min-width: 0;
  }
}
/* =========================
  Page hero center fix
========================= */
.pageHero {
  text-align: center;
}

.pageHero__inner {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pageHero .eyebrow,
.pageHero h1,
.pageHero p {
  text-align: center;
}

.pageHero p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
/* =========================
  Recruit top page
========================= */
.recruitIntro {
  padding-top: 90px;
  background: #fff;
}

.recruitIntro__box {
  max-width: 1080px;
  margin: 0 auto;
  padding: 54px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.18);
  box-shadow: 0 20px 60px rgba(60, 96, 58, 0.08);
}

.recruitIntro__content {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 42px;
}

.recruitIntro__image {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #f7fbf4;
}

.recruitIntro__image img {
  display: block;
  width: 100%;
  height: auto;
}

.recruitIntro__text section + section {
  margin-top: 28px;
}

.recruitIntro__text h3 {
  position: relative;
  margin: 0 0 12px;
  padding-left: 28px;
  color: #2f7b37;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.5;
}

.recruitIntro__text h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border: 4px solid #e56b91;
  border-radius: 50%;
  box-sizing: border-box;
}

.recruitIntro__text p {
  margin: 0 0 1em;
  color: #34523b;
  line-height: 2;
}

.recruitIntro__text p:last-child {
  margin-bottom: 0;
}

.recruitNavSection {
  background:
    radial-gradient(circle at 12% 14%, rgba(229, 107, 145, 0.10), transparent 28%),
    linear-gradient(180deg, #f7fbf4 0%, #fff 100%);
}

.recruitNavGrid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.recruitNavCard {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 30px;
  border-radius: 28px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(120, 70, 88, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.recruitNavCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(120, 70, 88, 0.22);
}

.recruitNavCard::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 28px;
  width: 5px;
  height: 50px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.recruitNavCard--beginner {
  background: linear-gradient(135deg, #efb8d0 0%, #df86aa 100%);
}

.recruitNavCard--day {
  background: linear-gradient(135deg, #f1b0b4 0%, #df8f9a 100%);
}

.recruitNavCard--faq {
  background: linear-gradient(135deg, #e6678b 0%, #c9446e 100%);
}

.recruitNavCard__label {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.95;
}

.recruitNavCard h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  padding-left: 16px;
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
}

.recruitNavCard p:not(.recruitNavCard__label) {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-size: 14px;
}

.recruitNavCard span {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 22px;
  color: #fff;
  font-weight: 700;
  text-align: right;
  font-size: 14px;
}

.recruitFuture {
  background: #fff;
}

.recruitFuture__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.sectionTitle--left {
  text-align: left;
  margin-bottom: 36px;
}

.sectionTitle--left h2 {
  text-align: left;
}

.sectionTitle--left p {
  text-align: left;
}

.recruitFuture__content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 42px;
  align-items: start;
}

.recruitFuture__image {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #f7fbf4;
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.recruitFuture__image img {
  display: block;
  width: 100%;
  height: auto;
}

.recruitFuture__text {
  color: #243b29;
  line-height: 2.05;
  font-weight: 500;
}

.recruitFuture__text p {
  margin: 0 0 1.6em;
}

.recruitFuture__lead {
  color: #2f7b37;
  font-weight: 700;
}

.recruitEntry {
  padding: 70px 20px;
  background: #f7fbf4;
}

.recruitEntry__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.recruitEntry h2 {
  margin: 10px 0 12px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.45;
}

.recruitEntry p {
  margin: 0;
  color: #34523b;
  line-height: 1.8;
}

.spOnly {
  display: none;
}

@media (max-width: 900px) {
  .recruitIntro__content,
  .recruitFuture__content {
    grid-template-columns: 1fr;
  }

  .recruitIntro__image,
  .recruitFuture__image {
    max-width: 420px;
    margin: 0 auto;
  }

  .recruitNavGrid {
    grid-template-columns: 1fr;
  }

  .recruitEntry__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .recruitIntro {
    padding-top: 60px;
  }

  .recruitIntro__box {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .recruitIntro__content {
    margin-top: 30px;
    gap: 28px;
  }

  .recruitIntro__text h3 {
    font-size: 20px;
  }

  .recruitIntro__text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .recruitNavCard {
    min-height: 240px;
    padding: 28px 24px;
    border-radius: 24px;
  }

  .recruitNavCard h3 {
    font-size: 21px;
  }

  .sectionTitle--left,
  .sectionTitle--left h2,
  .sectionTitle--left p {
    text-align: center;
  }

  .recruitFuture__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .recruitEntry {
    padding: 54px 16px;
  }

  .recruitEntry__inner {
    padding: 32px 22px;
    border-radius: 26px;
  }

  .recruitEntry h2 {
    font-size: 24px;
  }

  .spOnly {
    display: inline;
  }
}
/* =========================
  Recruit beginner page
========================= */
.beginnerIntro {
  padding-top: 90px;
  background: #fff;
}

.beginnerIntro__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.beginnerAnxiety {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 42px;
  align-items: center;
  padding: 44px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 12%, rgba(229, 107, 145, 0.12), transparent 28%),
    #f7fbf4;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.07);
}

.beginnerAnxiety__text h3 {
  margin: 0 0 20px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.5;
}

.beginnerAnxiety__text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.beginnerAnxiety__text li {
  position: relative;
  margin-bottom: 12px;
  padding: 15px 18px 15px 46px;
  border-radius: 16px;
  background: #fff;
  color: #34523b;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(60, 96, 58, 0.06);
}

.beginnerAnxiety__text li::before {
  content: "？";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e56b91;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.beginnerAnxiety__image {
  margin: 0;
}

.beginnerAnxiety__image img {
  display: block;
  width: 100%;
  height: auto;
}

.beginnerSupport {
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 220, 164, 0.24), transparent 30%),
    linear-gradient(180deg, #f7fbf4 0%, #fff 100%);
}

.beginnerSupportGrid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.beginnerSupportCard {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  align-items: start;
  padding: 36px 42px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 16px 42px rgba(60, 96, 58, 0.07);
}

.beginnerSupportCard__icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #eef8e8 0%, #fff 100%);
  color: #2f7b37;
  border: 1px solid rgba(88, 143, 89, 0.18);
  font-size: 36px;
}

.beginnerSupportCard__label {
  margin: 0 0 8px;
  color: #e56b91;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.beginnerSupportCard h3 {
  margin: 0 0 14px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.5;
}

.beginnerSupportCard p {
  margin: 0 0 1em;
  color: #34523b;
  line-height: 2;
}

.beginnerSupportCard p:last-child {
  margin-bottom: 0;
}

.beginnerMessage {
  background: #fff;
}

.beginnerMessage__inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #f7fbf4 0%, #fff 100%);
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.beginnerMessage__icon {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef8e8;
  color: #2f7b37;
  font-size: 36px;
}

.beginnerMessage h2 {
  margin: 0 0 14px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.5;
}

.beginnerMessage p {
  margin: 0;
  color: #34523b;
  line-height: 2;
}

@media (max-width: 900px) {
  .beginnerAnxiety {
    grid-template-columns: 1fr;
  }

  .beginnerAnxiety__image {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .beginnerIntro {
    padding-top: 60px;
  }

  .beginnerAnxiety {
    margin-top: 32px;
    padding: 28px 20px;
    border-radius: 24px;
    gap: 26px;
  }

  .beginnerAnxiety__text h3 {
    font-size: 22px;
    text-align: center;
  }

  .beginnerAnxiety__text li {
    padding: 14px 16px 14px 44px;
    font-size: 14px;
    line-height: 1.7;
  }

  .beginnerSupportCard {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 22px;
    border-radius: 24px;
  }

  .beginnerSupportCard__icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    font-size: 30px;
  }

  .beginnerSupportCard h3 {
    font-size: 22px;
  }

  .beginnerSupportCard p {
    font-size: 14px;
    line-height: 1.9;
  }

  .beginnerMessage__inner {
    grid-template-columns: 1fr;
    padding: 30px 22px;
    border-radius: 24px;
    text-align: center;
  }

  .beginnerMessage__icon {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    font-size: 30px;
  }

  .beginnerMessage h2 {
    font-size: 22px;
  }

  .beginnerMessage p {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }
}
/* =========================
  Recruit pager
========================= */
.recruitPager {
  padding: 70px 20px;
  background: #f7fbf4;
}

.recruitPager__inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.recruitPager__inner a {
  display: block;
  padding: 28px 32px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  color: #174b28;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(60, 96, 58, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.recruitPager__inner a:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(60, 96, 58, 0.12);
}

.recruitPager__inner span {
  display: block;
  margin-bottom: 8px;
  color: #2f7b37;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

@media (max-width: 640px) {
  .recruitPager {
    padding: 54px 16px;
  }

  .recruitPager__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recruitPager__inner a {
    padding: 24px 22px;
    border-radius: 22px;
    font-size: 19px;
  }
}
/* =========================
  Recruit day page
========================= */
.recruitDayIntro {
  padding-top: 90px;
  background: #fff;
}

.recruitDayLead {
  max-width: 980px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: center;
  padding: 42px;
  border-radius: 32px;
  background: #f7fbf4;
  border: 1px solid rgba(88, 143, 89, 0.16);
}

.recruitDayLead__text h3 {
  margin: 0 0 14px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.5;
}

.recruitDayLead__text p {
  margin: 0;
  color: #34523b;
  line-height: 2;
}

.recruitDayLead__image {
  margin: 0;
}

.recruitDayLead__image img {
  display: block;
  width: 100%;
  height: auto;
}

.recruitSchedule {
  background:
    radial-gradient(circle at 14% 10%, rgba(229, 107, 145, 0.10), transparent 28%),
    linear-gradient(180deg, #f7fbf4 0%, #fff 100%);
}

.recruitSchedule__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.recruitSchedule__inner::before {
  content: "";
  position: absolute;
  left: 94px;
  top: 22px;
  bottom: 22px;
  width: 3px;
  background: linear-gradient(180deg, #9bcf84, #e56b91);
  border-radius: 999px;
}

.scheduleItem {
  position: relative;
  display: grid;
  grid-template-columns: 120px 72px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}

.scheduleItem:last-child {
  margin-bottom: 0;
}

.scheduleItem__time {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  color: #2f7b37;
  border: 3px solid #9bcf84;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(60, 96, 58, 0.10);
}

.scheduleItem__icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(135deg, #eef8e8 0%, #fff 100%);
  color: #2f7b37;
  font-size: 28px;
  border: 1px solid rgba(88, 143, 89, 0.18);
}

.scheduleItem__body {
  padding: 28px 32px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 16px 42px rgba(60, 96, 58, 0.07);
}

.scheduleItem__body h2 {
  margin: 0 0 10px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
}

.scheduleItem__body p {
  margin: 0;
  color: #34523b;
  line-height: 1.9;
}

.recruitDayPoint {
  background: #fff;
}

.recruitPointGrid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recruitPointCard {
  padding: 32px 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 16px 42px rgba(60, 96, 58, 0.07);
  text-align: center;
}

.recruitPointCard i {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #eef8e8;
  color: #2f7b37;
  font-size: 30px;
}

.recruitPointCard h3 {
  margin: 0 0 12px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
}

.recruitPointCard p {
  margin: 0;
  color: #34523b;
  line-height: 1.8;
  font-size: 14px;
}

@media (max-width: 900px) {
  .recruitDayLead {
    grid-template-columns: 1fr;
  }

  .recruitDayLead__image {
    max-width: 320px;
    margin: 0 auto;
  }

  .recruitPointGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .recruitDayIntro {
    padding-top: 60px;
  }

  .recruitDayLead {
    padding: 30px 22px;
    border-radius: 24px;
    gap: 26px;
  }

  .recruitDayLead__text h3 {
    font-size: 22px;
  }

  .recruitDayLead__text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .recruitSchedule__inner::before {
    left: 31px;
  }

  .scheduleItem {
    grid-template-columns: 62px 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 22px;
  }

  .scheduleItem__time {
    width: 62px;
    height: 62px;
    font-size: 16px;
  }

  .scheduleItem__icon {
    display: none;
  }

  .scheduleItem__body {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .scheduleItem__body h2 {
    font-size: 20px;
  }

  .scheduleItem__body p {
    font-size: 14px;
    line-height: 1.8;
  }

  .recruitPointCard {
    padding: 28px 22px;
    border-radius: 24px;
  }
}
/* =========================
  Recruit schedule line fix
========================= */
.recruitSchedule__inner::before {
  left: 46px;
}

.scheduleItem__time {
  margin: 0 auto;
}

@media (max-width: 640px) {
  .recruitSchedule__inner::before {
    left: 31px;
  }

  .scheduleItem__time {
    margin: 0;
  }
}
/* =========================
  Recruit FAQ page
========================= */
.recruitFaqIntro {
  padding-top: 90px;
  background: #fff;
}

.recruitFaqLead {
  max-width: 920px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #f7fbf4 0%, #fff 100%);
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.recruitFaqLead__icon {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef8e8;
  color: #2f7b37;
  font-size: 38px;
}

.recruitFaqLead__text h3 {
  margin: 0 0 12px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.5;
}

.recruitFaqLead__text p {
  margin: 0;
  color: #34523b;
  line-height: 2;
}

.recruitFaqSection {
  background:
    radial-gradient(circle at 12% 10%, rgba(229, 107, 145, 0.10), transparent 28%),
    linear-gradient(180deg, #f7fbf4 0%, #fff 100%);
}

.recruitFaqList {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.recruitFaqItem {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 16px 42px rgba(60, 96, 58, 0.07);
}

.recruitFaqItem > h2 {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 28px 34px;
  background: #f7fbf4;
  color: #174b28;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.6;
}

.recruitFaqItem > h2 span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #2f7b37;
  color: #fff;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.recruitFaqItem__answer {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 32px 34px 36px;
}

.answerLabel {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0;
  border-radius: 50%;
  background: #e56b91;
  color: #fff;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
}

.recruitFaqItem__answer h3 {
  margin: 0 0 12px;
  color: #2f7b37;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.6;
}

.recruitFaqItem__answer p:not(.answerLabel) {
  margin: 0 0 1em;
  color: #34523b;
  line-height: 2;
}

.recruitFaqItem__answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .recruitFaqIntro {
    padding-top: 60px;
  }

  .recruitFaqLead {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 22px;
    border-radius: 24px;
    text-align: center;
  }

  .recruitFaqLead__icon {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    font-size: 32px;
  }

  .recruitFaqLead__text h3 {
    font-size: 22px;
  }

  .recruitFaqLead__text p {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .recruitFaqList {
    gap: 20px;
  }

  .recruitFaqItem {
    border-radius: 24px;
  }

  .recruitFaqItem > h2 {
    grid-template-columns: 50px 1fr;
    gap: 12px;
    padding: 22px 20px;
    font-size: 18px;
  }

  .recruitFaqItem > h2 span {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }

  .recruitFaqItem__answer {
    grid-template-columns: 50px 1fr;
    gap: 12px;
    padding: 24px 20px 28px;
  }

  .answerLabel {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  .recruitFaqItem__answer h3 {
    font-size: 18px;
  }

  .recruitFaqItem__answer p:not(.answerLabel) {
    font-size: 14px;
    line-height: 1.9;
  }
}
/* =========================
  Recruit requirements page
========================= */
.recruitRequirementLead {
  padding: 70px 20px;
  background: #f7fbf4;
}

.recruitRequirementLead__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.recruitRequirementLead h2 {
  margin: 10px 0 12px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.45;
}

.recruitRequirementLead p {
  margin: 0;
  color: #34523b;
  line-height: 1.8;
}

.recruitRequirementsIntro {
  padding-top: 90px;
  background: #fff;
}

.jobAnchorNav {
  max-width: 980px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.jobAnchorNav a {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #f7fbf4;
  border: 1px solid rgba(88, 143, 89, 0.18);
  color: #174b28;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  transition: background 0.25s ease, transform 0.25s ease;
}

.jobAnchorNav a:hover {
  background: #eef8e8;
  transform: translateY(-2px);
}

.jobRequirementsSection {
  background:
    radial-gradient(circle at 12% 10%, rgba(229, 107, 145, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbf4 0%, #fff 100%);
}

.jobRequirementsList {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.jobRequirementCard {
  scroll-margin-top: 110px;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.jobRequirementCard__head {
  padding: 34px 40px;
  background: linear-gradient(135deg, #eef8e8 0%, #fff 100%);
  border-bottom: 1px solid rgba(88, 143, 89, 0.14);
}

.jobRequirementCard__head p {
  margin: 0 0 8px;
  color: #2f7b37;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.jobRequirementCard__head h2 {
  margin: 0;
  color: #174b28;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.45;
}

.jobRequirementTable {
  margin: 0;
}

.jobRequirementTable div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 22px 40px;
  border-bottom: 1px solid rgba(88, 143, 89, 0.12);
}

.jobRequirementTable dt {
  color: #174b28;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.jobRequirementTable dd {
  margin: 0;
  color: #34523b;
  line-height: 1.9;
}

.jobRequirementCard__entry {
  padding: 32px 40px 38px;
  text-align: center;
}

@media (max-width: 900px) {
  .recruitRequirementLead__inner {
    flex-direction: column;
    text-align: center;
  }

  .jobAnchorNav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .recruitRequirementLead {
    padding: 54px 16px;
  }

  .recruitRequirementLead__inner {
    padding: 32px 22px;
    border-radius: 26px;
  }

  .recruitRequirementLead h2 {
    font-size: 24px;
  }

  .recruitRequirementsIntro {
    padding-top: 60px;
  }

  .jobAnchorNav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .jobRequirementCard {
    border-radius: 24px;
  }

  .jobRequirementCard__head {
    padding: 28px 22px;
  }

  .jobRequirementCard__head h2 {
    font-size: 23px;
  }

  .jobRequirementTable div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 22px;
  }

  .jobRequirementTable dt,
  .jobRequirementTable dd {
    font-size: 14px;
  }

  .jobRequirementCard__entry {
    padding: 28px 22px 32px;
  }
}
/* =========================
  News archive
========================= */
.newsArchiveSection {
  padding-top: 90px;
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 220, 164, 0.22), transparent 30%),
    linear-gradient(180deg, #f7fbf4 0%, #fff 100%);
}

.newsArchive__inner {
  max-width: 980px;
  margin: 0 auto;
}

.newsArchiveList {
  display: grid;
  gap: 22px;
}

.newsArchiveItem {
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 16px 42px rgba(60, 96, 58, 0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.newsArchiveItem:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(60, 96, 58, 0.12);
}

.newsArchiveItem a {
  display: block;
  padding: 30px 34px;
  color: inherit;
  text-decoration: none;
}

.newsArchiveItem__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.newsArchiveItem__meta time {
  color: #2f7b37;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.newsArchiveItem__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #eef8e8;
  color: #2f7b37;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.newsArchiveItem h2 {
  margin: 0 0 12px;
  color: #174b28;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.55;
}

.newsArchiveItem p {
  margin: 0;
  color: #34523b;
  line-height: 1.9;
  font-size: 15px;
}

.newsArchiveEmpty {
  padding: 50px 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  text-align: center;
}

.newsArchiveEmpty p {
  margin: 0;
  color: #34523b;
}

.newsPagination {
  margin-top: 46px;
  text-align: center;
}

.newsPagination .nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.newsPagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.18);
  color: #174b28;
  font-weight: 700;
  text-decoration: none;
}

.newsPagination .page-numbers.current {
  background: #2f7b37;
  border-color: #2f7b37;
  color: #fff;
}

.newsPagination .page-numbers:hover {
  background: #eef8e8;
}

@media (max-width: 640px) {
  .newsArchiveSection {
    padding-top: 60px;
  }

  .newsArchiveItem {
    border-radius: 22px;
  }

  .newsArchiveItem a {
    padding: 24px 20px;
  }

  .newsArchiveItem__meta {
    gap: 10px;
    margin-bottom: 12px;
  }

  .newsArchiveItem__meta time {
    font-size: 13px;
  }

  .newsArchiveItem__meta span {
    min-width: 68px;
    font-size: 11px;
  }

  .newsArchiveItem h2 {
    font-size: 20px;
  }

  .newsArchiveItem p {
    font-size: 14px;
    line-height: 1.8;
  }

  .newsPagination .page-numbers {
    min-width: 38px;
    height: 38px;
    font-size: 13px;
  }
}
/* =========================
  News single
========================= */
.newsSingleSection {
  padding-top: 90px;
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 220, 164, 0.22), transparent 30%),
    linear-gradient(180deg, #f7fbf4 0%, #fff 100%);
}

.newsSingleArticle {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(88, 143, 89, 0.16);
  box-shadow: 0 18px 48px rgba(60, 96, 58, 0.08);
}

.newsSingleArticle__meta {
  margin-bottom: 24px;
}

.newsSingleArticle__meta span {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #eef8e8;
  color: #2f7b37;
  font-size: 13px;
  font-weight: 700;
}

.newsSingleArticle__content {
  color: #34523b;
  line-height: 2;
}

.newsSingleArticle__content p {
  margin: 0 0 1.6em;
}

.newsSingleArticle__content h2 {
  margin: 2em 0 1em;
  color: #174b28;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.5;
}

.newsSingleArticle__content h3 {
  margin: 1.8em 0 0.8em;
  color: #2f7b37;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
}

.newsSingleArticle__content a {
  color: #2f7b37;
  font-weight: 700;
}

.newsSingleArticle__back {
  margin-top: 44px;
  text-align: center;
}

@media (max-width: 640px) {
  .newsSingleSection {
    padding-top: 60px;
  }

  .newsSingleArticle {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .newsSingleArticle__content {
    font-size: 14px;
    line-height: 1.9;
  }

  .newsSingleArticle__content h2 {
    font-size: 22px;
  }

  .newsSingleArticle__content h3 {
    font-size: 19px;
  }
}
/* =========================
  WordPress block button fix
========================= */
.newsSingleArticle__content .wp-block-button {
  margin: 28px 0;
}

.newsSingleArticle__content .wp-block-button__link,
.entryContent .wp-block-button__link,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #58a53f 0%, #2f7b37 100%);
  color: #fff !important;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(47, 123, 55, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.newsSingleArticle__content .wp-block-button__link:hover,
.entryContent .wp-block-button__link:hover,
.wp-block-button__link:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(47, 123, 55, 0.28);
}

.newsSingleArticle__content .wp-block-button.aligncenter {
  text-align: center;
}

@media (max-width: 640px) {
  .newsSingleArticle__content .wp-block-button__link,
  .entryContent .wp-block-button__link,
  .wp-block-button__link {
    width: 100%;
    max-width: 280px;
    min-width: 0;
  }
}
/* =========================
  Info cards text/button fix
========================= */
.infoArea {
  padding-left: 20px;
  padding-right: 20px;
}

.infoArea .infoCard {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 220px;
  align-items: center;
  gap: 28px;
  min-height: 260px;
  padding: 42px 36px;
}

.infoCard__body {
  min-width: 0;
}

.infoCard__body h2 {
  white-space: nowrap;
  word-break: keep-all;
  line-break: strict;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.35;
}

.infoCard__body p {
  max-width: 230px;
  word-break: keep-all;
  line-break: strict;
}

.infoCard__body .btn {
  min-width: 190px;
  white-space: nowrap;
  word-break: keep-all;
}

.infoCard__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.infoCard__image img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .infoArea .infoCard {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .infoCard__body p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .infoCard__body .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .infoCard__image {
    order: -1;
  }

  .infoCard__image img {
    max-width: 210px;
  }
}

@media (max-width: 640px) {
  .infoArea .infoCard {
    padding: 32px 24px;
  }

  .infoCard__body h2 {
    white-space: normal;
    font-size: 28px;
  }

  .infoCard__body .btn {
    min-width: 180px;
  }
}
/* =========================
  SP header fixed / z-index fix
========================= */
@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(220, 232, 214, 0.9);
    box-shadow: 0 8px 24px rgba(60, 96, 58, 0.08);
  }

  .siteHeader__inner {
    position: relative;
    z-index: 100000;
  }

  .siteLogo,
  .navToggle {
    position: relative;
    z-index: 100001;
  }

  .navToggle {
    display: flex;
  }

  .navToggle span {
    display: block;
    background: #2f7b37;
  }

  main {
    position: relative;
    z-index: 1;
    padding-top: 76px;
  }

  .hero,
  .hero::before,
  .hero::after,
  .hero__inner,
  .heroSupport,
  .recruitCard {
    z-index: auto;
  }
}
/* =========================
  SP fixed header final adjust
========================= */
@media (max-width: 640px) {
  .siteHeader,
  .siteHeader.is-scrolled,
  body.is-scrolled .siteHeader {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 100%;
    height: 72px;
    min-height: 72px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(220, 232, 214, 0.95);
    box-shadow: 0 8px 24px rgba(60, 96, 58, 0.08);
    transform: none !important;
    overflow: visible !important;
  }

  .siteHeader__inner,
  .siteHeader.is-scrolled .siteHeader__inner,
  body.is-scrolled .siteHeader__inner {
    height: 72px;
    min-height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible !important;
  }

  .siteLogo {
    position: relative;
    z-index: 100001;
    display: block;
    flex: 0 0 auto;
  }

  .siteLogo img {
    display: block;
    width: 170px;
    height: auto;
  }

  .navToggle {
    position: relative !important;
    z-index: 100002;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .navToggle span {
    display: block !important;
    width: 28px;
    height: 2px;
    min-height: 2px;
    border-radius: 999px;
    background: #2f7b37 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none;
  }

  main {
    padding-top: 72px;
  }
}
/* =========================
  SP drawer menu overlap fix
========================= */
@media (max-width: 640px) {
  .globalNav {
    top: 72px !important;
    z-index: 99990 !important;
  }

  .siteHeader {
    z-index: 99999 !important;
  }

  .navToggle {
    z-index: 100002 !important;
  }
}
@media (max-width: 640px) {
  .globalNav {
    padding-top: 12px;
  }
}
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 42px 18px 36px;

    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.66) 0%,
        rgba(255, 255, 255, 0.54) 42%,
        rgba(255, 255, 255, 0.90) 100%
      ),
      url("../img/main.png") 62% top / auto 480px no-repeat;
  }
}
/* ==================================================
   Recruit contents card color adjust - recommended
================================================== */

.recruitNavCard {
  color: #fff;
  box-shadow: 0 18px 38px rgba(74, 143, 78, 0.16);
}

.recruitNavCard:nth-child(1) {
  background: linear-gradient(135deg, #8acb7a 0%, #62ad63 100%);
}

.recruitNavCard:nth-child(2) {
  background: linear-gradient(135deg, #d9bd86 0%, #bfa15f 100%);
}

.recruitNavCard:nth-child(3) {
  background: linear-gradient(135deg, #5fac71 0%, #3f9659 100%);
}
/* ==================================================
   Home guide area - single
================================================== */

.areaSingle {
  padding: 22px 0 4px;
}

.areaSingle p {
  margin: 0 0 18px;
  color: #405347;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

.areaSingle ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.areaSingle li {
  position: relative;
  padding-left: 18px;
  color: #405347;
  font-weight: 700;
  line-height: 1.8;
}

.areaSingle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8fbe70;
}

@media (max-width: 640px) {
  .areaSingle {
    padding-top: 18px;
  }

  .areaSingle p {
    font-size: 14px;
  }

  .areaSingle ul {
    gap: 10px 20px;
  }

  .areaSingle li {
    font-size: 15px;
  }
}
/* ========================================
  Flow
======================================== */

.flow {
  background: #fff;
}

.flowIntro {
  max-width: 1060px;
  margin: 0 auto 42px;
  text-align: center;
}

.flowIntro p {
  margin: 0;
  color: #33443a;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

.flowVisuals {
  max-width: 980px;
  margin: 0 auto;
}

.flowVisual {
  position: relative;
  padding: 34px 36px 38px;
  margin-top: 32px;
  border-radius: 30px;
  background: #fefefe;
  border: 1px solid #e6efd9;
  box-shadow: 0 14px 34px rgba(72, 118, 72, 0.08);
}

.flowVisual:first-child {
  margin-top: 0;
}

.flowVisual h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #2f7f3f;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 800;
}

.flowVisual h3::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #8fca7b, #3f944f);
  transform: rotate(-35deg);
  flex-shrink: 0;
}

.flowVisual figure {
  margin: 0;
  text-align: center;
}

.flowVisual img {
  display: block;
  width: 100%;
  max-width: 860px;
  height: auto;
  margin: 0 auto;
}

.flowNote {
  position: relative;
  max-width: 860px;
  margin: 38px auto 0;
  padding: 24px 30px 24px 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f8fcf4 0%, #eef8ec 100%);
  border: 1px solid #dcefd6;
  box-shadow: 0 12px 28px rgba(75, 130, 75, 0.08);
}

.flowNote::before {
  content: "i";
  position: absolute;
  left: 28px;
  top: 24px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #78b96b;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  text-align: center;
}

.flowNote p {
  margin: 0;
  color: #33443a;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .flowIntro {
    margin-bottom: 30px;
    text-align: left;
  }

  .flowIntro p {
    font-size: 15px;
    line-height: 1.9;
  }

  .flowVisual {
    padding: 24px 16px 26px;
    margin-top: 24px;
    border-radius: 22px;
  }

  .flowVisual h3 {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .flowVisual img {
    max-width: 100%;
  }

  .flowNote {
    margin-top: 28px;
    padding: 22px 20px 22px 58px;
    border-radius: 18px;
  }

  .flowNote::before {
    left: 22px;
    top: 23px;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 24px;
  }

  .flowNote p {
    font-size: 14px;
    line-height: 1.8;
  }
}
/* ========================================
  Flow Intro
======================================== */

.flowIntro {
  background: #fff;
}

.flowStartCard {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 28px;
  max-width: 1080px;
  margin: 42px auto 0;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at right top, rgba(168, 210, 138, 0.22), transparent 36%),
    linear-gradient(135deg, #f9fcf4 0%, #eef8ec 100%);
  border: 1px solid #dcefd6;
  box-shadow: 0 18px 42px rgba(68, 115, 68, 0.09);
}

.flowStartCard__main {
  padding: 8px 8px 8px 0;
}

.flowStartCard__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #3f944f;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.flowStartCard__label::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #9ccc7d, #4f9b67);
  transform: rotate(-35deg);
}

.flowStartCard__main h3 {
  margin: 0 0 18px;
  color: #244932;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.6;
  font-weight: 800;
}

.flowStartCard__main p:not(.flowStartCard__label) {
  margin: 0;
  color: #33443a;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

.flowStartCard__sub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 239, 214, 0.95);
}

.flowStartCard__sub p {
  margin: 0 0 16px;
  color: #2f6f46;
  font-size: 16px;
  line-height: 2;
  font-weight: 800;
}

.flowStartCard__sub span {
  display: block;
  color: #44524a;
  font-size: 14px;
  line-height: 1.8;
}


/* ========================================
  Flow Step
======================================== */

.flowStepSection {
  background: #fbfdf8;
}

.flowStepList {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 1080px;
  margin: 44px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: flowstep;
}

.flowStepItem {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 168px;
  padding: 28px 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e1efd9;
  box-shadow: 0 14px 34px rgba(70, 112, 70, 0.08);
  overflow: hidden;
}

.flowStepItem::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #9ccc7d, #4f9b67);
}

.flowStepItem::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(143, 202, 123, 0.12);
}

.flowStepItem__num {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(79, 155, 103, 0.22);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.flowStepItem__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #f3faef;
  border: 1px solid #d9edd2;
}

.flowStepItem__icon i {
  color: #3f944f;
  font-size: 31px;
}

.flowStepItem__body {
  position: relative;
  z-index: 1;
}

.flowStepItem__body h3 {
  margin: 0 0 10px;
  color: #244932;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 800;
}

.flowStepItem__body p {
  margin: 0;
  color: #44524a;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}

.flowStepItem:nth-child(2n) {
  transform: translateY(22px);
}

.flowStepItem:nth-child(2n)::before {
  background: linear-gradient(180deg, #b8d982, #6fab58);
}


/* 矢印っぽい流れ */
.flowStepItem:not(:last-child) .flowStepItem__body::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -20px;
  width: 26px;
  height: 26px;
  border-top: 3px solid rgba(79, 155, 103, 0.42);
  border-right: 3px solid rgba(79, 155, 103, 0.42);
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .flowStartCard {
    grid-template-columns: 1fr;
    padding: 28px;
    border-radius: 28px;
  }

  .flowStartCard__main {
    padding: 0;
  }

  .flowStepList {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .flowStepItem:nth-child(2n) {
    transform: none;
  }

  .flowStepItem:not(:last-child) .flowStepItem__body::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .flowStartCard {
    margin-top: 30px;
    padding: 22px;
    border-radius: 24px;
  }

  .flowStartCard__main h3 {
    font-size: 21px;
  }

  .flowStartCard__main p:not(.flowStartCard__label) {
    font-size: 15px;
    line-height: 1.9;
  }

  .flowStartCard__sub {
    padding: 20px;
    border-radius: 20px;
  }

  .flowStartCard__sub p {
    font-size: 15px;
    line-height: 1.9;
  }

  .flowStepList {
    margin-top: 32px;
  }

  .flowStepItem {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    min-height: auto;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .flowStepItem__num {
    top: 16px;
    right: 18px;
    font-size: 34px;
  }

  .flowStepItem__icon {
    width: 58px;
    height: 58px;
  }

  .flowStepItem__icon i {
    font-size: 24px;
  }

  .flowStepItem__body h3 {
    font-size: 18px;
  }

  .flowStepItem__body p {
    font-size: 14px;
    line-height: 1.8;
  }
}
/* ========================================
  Flow Visual
======================================== */

.flow {
  background: #fff;
}

.flowIntroText {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.flowIntroText p {
  margin: 0;
  color: #33443a;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

.flowVisuals {
  max-width: 980px;
  margin: 0 auto;
}

.flowVisual {
  position: relative;
  padding: 34px 36px 38px;
  margin-top: 32px;
  border-radius: 30px;
  background: #fefefe;
  border: 1px solid #e6efd9;
  box-shadow: 0 14px 34px rgba(72, 118, 72, 0.08);
}

.flowVisual:first-child {
  margin-top: 0;
}

.flowVisual h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #2f7f3f;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 800;
}

.flowVisual h3::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #8fca7b, #3f944f);
  transform: rotate(-35deg);
  flex-shrink: 0;
}

.flowVisual figure {
  margin: 0;
  text-align: center;
}

.flowVisual img {
  display: block;
  width: 100%;
  max-width: 860px;
  height: auto;
  margin: 0 auto;
}

.flowNote {
  position: relative;
  max-width: 860px;
  margin: 38px auto 0;
  padding: 26px 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #dcefd6;
  box-shadow: 0 14px 34px rgba(75, 130, 75, 0.09);
}

.flowNote::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(180deg, #9ccc7d, #4f9b67);
}

.flowNote__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: #2f7f3f;
  font-size: 16px;
  font-weight: 800;
}

.flowNote__title::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  background: #8fca7b;
  transform: rotate(-35deg);
  flex-shrink: 0;
}

.flowNote p:not(.flowNote__title) {
  margin: 0;
  color: #33443a;
  font-size: 15px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .flowIntroText {
    margin-bottom: 30px;
    text-align: left;
  }

  .flowIntroText p {
    font-size: 15px;
    line-height: 1.9;
  }

  .flowVisual {
    padding: 24px 16px 26px;
    margin-top: 24px;
    border-radius: 22px;
  }

  .flowVisual h3 {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .flowVisual img {
    max-width: 100%;
  }

  .flowNote {
    margin-top: 28px;
    padding: 22px 20px 22px 24px;
    border-radius: 18px;
  }

  .flowNote::before {
    width: 6px;
    border-radius: 18px 0 0 18px;
  }

  .flowNote p:not(.flowNote__title) {
    font-size: 14px;
    line-height: 1.8;
  }
}
.flowNote::before {
  display: none;
}
/* ========================================
  News Single Title Adjust
======================================== */

.newsSinglePage .pageHero {
  padding: 110px 20px 90px;
}

.newsSinglePage .pageHero h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.newsSinglePage .pageHero .eyebrow {
  margin-bottom: 20px;
}

.newsSinglePage .pageHero .date,
.newsSinglePage .pageHero time {
  display: block;
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .newsSinglePage .pageHero {
    padding: 90px 20px 70px;
  }

  .newsSinglePage .pageHero h1 {
    font-size: 28px;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .newsSinglePage .pageHero h1 {
    font-size: 24px;
  }
}
/* ========================================
  Contact Privacy Box
======================================== */

.privacyBox {
  margin: 30px 0 18px;
  padding: 24px 26px;
  border-radius: 20px;
  background: #f8fcf4;
  border: 1px solid #dcefd6;
}

.privacyBox__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #2f7f3f;
  font-size: 16px;
  font-weight: 800;
}

.privacyBox__title::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  background: #8fca7b;
  transform: rotate(-35deg);
  flex-shrink: 0;
}

.privacyBox p:not(.privacyBox__title) {
  margin: 0;
  color: #33443a;
  font-size: 14px;
  line-height: 1.9;
}

.privacyBox p:not(.privacyBox__title) + p {
  margin-top: 8px;
}

@media (max-width: 640px) {
  .privacyBox {
    margin: 24px 0 16px;
    padding: 20px;
    border-radius: 16px;
  }

  .privacyBox p:not(.privacyBox__title) {
    font-size: 13px;
    line-height: 1.8;
  }
}
/* ========================================
  Contact Privacy
======================================== */

.contactForm__privacyBlock {
  margin-top: 32px;
  padding: 26px 28px;
  border-radius: 22px;
  background: #f8fcf4;
  border: 1px solid #dcefd6;
}

.contactForm__privacyTitle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #2f7f3f;
  font-size: 16px;
  font-weight: 800;
}

.contactForm__privacyTitle::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  background: #8fca7b;
  transform: rotate(-35deg);
  flex-shrink: 0;
}

.contactForm__privacyText {
  margin-bottom: 18px;
}

.contactForm__privacyText p {
  margin: 0;
  color: #33443a;
  font-size: 14px;
  line-height: 1.9;
}

.contactForm__privacyText p + p {
  margin-top: 6px;
}

.contactForm__privacy {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e1efd9;
}

.contactForm__privacy .wpcf7-list-item {
  margin: 0;
}

.contactForm__privacy label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #33443a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
}

.contactForm__privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .contactForm__privacyBlock {
    margin-top: 26px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .contactForm__privacyTitle {
    font-size: 15px;
  }

  .contactForm__privacyText p {
    font-size: 13px;
    line-height: 1.8;
  }

  .contactForm__privacy {
    padding: 14px 15px;
  }

  .contactForm__privacy label {
    align-items: flex-start;
    font-size: 14px;
  }

  .contactForm__privacy input[type="checkbox"] {
    margin-top: 3px;
  }
}
/* ========================================
  Contact Resume Upload
======================================== */

.contactForm__resume {
  padding: 22px 24px;
  border-radius: 18px;
  background: #f8fcf4;
  border: 1px dashed #b9d9ae;
}

.contactForm__resume input[type="file"] {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #dcefd6;
  color: #33443a;
  font-size: 14px;
}

.contactForm__help {
  margin: 10px 0 0;
  color: #66756b;
  font-size: 13px;
  line-height: 1.7;
}
/* ========================================
  Office Access Map
======================================== */

.officeAccess {
  background: #fff;
}

.officeMap {
  width: min(100%, 960px);
  margin: 42px auto 0;
  overflow: hidden;
  border-radius: 28px;
  background: #f8fcf4;
  border: 1px solid #dcefd6;
  box-shadow: 0 18px 42px rgba(68, 115, 68, 0.1);
}

.officeMap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 768px) {
  .officeMap {
    margin-top: 30px;
    border-radius: 20px;
  }

  .officeMap iframe {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .officeMap iframe {
    height: 300px;
  }
}
