@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: #2b2b2b;
  line-height: 1.8;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 640px) {
  .container {
    padding-inline: 18px;
  }
}
.container--narrow {
  max-width: 760px;
}

.sp-only {
  display: none;
}
@media (max-width: 640px) {
  .sp-only {
    display: inline;
  }
}

.section {
  padding-block: 84px;
}
@media (max-width: 640px) {
  .section {
    padding-block: 56px;
  }
}
.section--tint {
  background: #fff8f2;
}
.section__label {
  display: block;
  color: #ea6b1f;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  position: relative;
}
.section__label::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #ea6b1f;
  margin-top: 4px;
}
.section__label--center {
  text-align: center;
}
.section__title {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.section__title--center {
  text-align: center;
}
.section__lead {
  text-align: left;
  color: #353535;
  margin-top: 14px;
  font-size: 15px;
}

.text-accent {
  color: #ea6b1f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn .arrow {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: #ea6b1f;
  color: #fff;
  box-shadow: 0 8px 18px rgba(234, 107, 31, 0.28);
}
.btn--primary:hover {
  background: #d15c14;
}
.btn--outline {
  background: #fff;
  color: #2b2b2b;
  border-color: #ddd;
}
.btn--outline:hover {
  border-color: #ea6b1f;
  color: #ea6b1f;
}
.btn--ghost {
  background: #fff;
  color: #ea6b1f;
  border-color: #ea6b1f;
}
.btn--ghost:hover {
  background: #fff4ec;
}
.btn--line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 8px 18px rgba(6, 199, 85, 0.28);
}
.btn--line:hover {
  background: #05a948;
}
.btn--sm {
  padding: 9px 20px;
  font-size: 14px;
}
.btn--lg {
  padding: 17px 34px;
  font-size: 16px;
}
.btn--block {
  width: 100%;
}
.btn--icon .arrow {
  margin-left: 2px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e6e6e6;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: inline-flex;
  align-items: center;
}
.logo__image {
  height: 34px;
  width: auto;
}

.gnav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.gnav__list {
  display: flex;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
}
.gnav__list a {
  position: relative;
  padding-block: 6px;
}
.gnav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ea6b1f;
  transition: width 0.2s ease;
}
.gnav__list a:hover {
  color: #ea6b1f;
}
.gnav__list a:hover::after {
  width: 100%;
}
@media (max-width: 900px) {
  .gnav {
    display: none;
  }
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #2b2b2b;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 21px;
}
.hamburger span:nth-child(3) {
  top: 27px;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
}

.drawer {
  border-top: 1px solid #e6e6e6;
  background: #fff;
}
.drawer__list {
  padding: 16px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer__list a:not(.btn) {
  display: block;
  padding: 14px 6px;
  border-bottom: 1px solid #e6e6e6;
  font-weight: 500;
}
.drawer__list .btn {
  margin-top: 14px;
}

.hero {
  position: relative;
  background: radial-gradient(120% 120% at 90% 0%, #fff4ec 0%, rgba(255, 244, 236, 0) 55%), #ffffff;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-block: 64px 0;
}
@media (max-width: 900px) {
  .hero__inner {
    display: block;
    max-width: none;
    padding: 0;
  }
}
.hero__title {
  font-size: clamp(32px, 5.4vw, 54px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.01em;
}
.hero__lead {
  margin-top: 22px;
  font-size: 17px;
  color: #353535;
}
.hero__actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__actions .btn {
  border-radius: 16px;
}
.hero__badges {
  margin-top: 26px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #353535;
}
.hero__badges li svg {
  color: #ea6b1f;
}
@media (max-width: 900px) {
  .hero__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 560px;
    padding: 60px 22px 68px;
  }
}
@media (max-width: 640px) {
  .hero__body {
    min-height: 520px;
    padding: 52px 20px 60px;
  }
}
.hero__figure img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 900px) {
  .hero__figure {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .hero__figure img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero__figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 45%, rgba(255, 255, 255, 0.5) 100%);
  }
}

.marker {
  color: #ea6b1f;
  position: relative;
  white-space: nowrap;
}
.marker::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 6px;
  height: 12px;
  background: rgba(234, 107, 31, 0.16);
  z-index: -1;
}

@media (max-width: 900px) {
  .hero--req .hero__figure img {
    -o-object-position: calc(50% + 60px) calc(50% - 0px);
       object-position: calc(50% + 60px) calc(50% - 0px);
  }
}

@media (max-width: 900px) {
  .hero--req .hero__body {
    align-items: flex-start;
    text-align: left;
    min-height: 460px;
    padding: 56px 22px 44px;
  }
}
@media (max-width: 640px) {
  .hero--req .hero__body {
    min-height: 420px;
    padding: 48px 20px 40px;
  }
}

@media (max-width: 900px) {
  .hero:not(.hero--req) .hero__body {
    text-align: left;
    align-items: flex-end;
  }
}
@media (max-width: 900px) {
  .hero:not(.hero--req) .hero__badges {
    width: 100%;
    justify-content: flex-end;
  }
}
@media (max-width: 900px) {
  .hero:not(.hero--req) .hero__figure::after {
    background: linear-gradient(260deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 45%, rgba(255, 255, 255, 0.5) 100%);
  }
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 46px;
  align-items: center;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.intro__text {
  margin-top: 22px;
  color: #353535;
  font-size: 15.5px;
}
.intro__figure img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.features {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 24px 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon title" "icon desc";
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 6px;
  align-items: center;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.feature-card__icon {
  grid-area: icon;
  align-self: center;
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
  background: none;
}
.feature-card__title {
  grid-area: title;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.feature-card p {
  grid-area: desc;
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.7;
}

.work {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 860px;
  margin-inline: auto;
}

.work-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: minmax(0, 300px) 1fr;
  grid-template-areas: "title  title" "figure list";
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 20px;
  align-items: center;
}
@media (max-width: 640px) {
  .work-card {
    padding: 20px;
    grid-template-columns: 1fr;
    grid-template-areas: "title" "figure" "list";
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 18px;
  }
}
.work-card__figure {
  grid-area: figure;
  align-self: stretch;
}
.work-card__figure img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 640px) {
  .work-card__figure {
    align-self: auto;
  }
  .work-card__figure img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4/3;
  }
}
.work-card__title {
  grid-area: title;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: #ea6b1f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.work-card__title::before, .work-card__title::after {
  content: "";
  height: 2px;
  background: #ea6b1f;
  flex: 1;
  max-width: 120px;
}

.work-list {
  grid-area: list;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.work-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.work-list li svg {
  flex: 0 0 auto;
  color: #ea6b1f;
  margin-top: 2px;
}
.work-list li b {
  display: block;
  font-size: 15px;
}
.work-list li span {
  display: block;
  font-size: 13.5px;
  color: #6b7280;
}

.work-card .work-list {
  gap: 0;
}
.work-card .work-list li {
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
}
.work-card .work-list li:not(:last-child) {
  border-bottom: 1px dashed rgba(234, 107, 31, 0.4);
}
.work-card .work-list li:first-child {
  padding-top: 4px;
}
.work-card .work-list b {
  font-size: 18px;
}
.work-card .work-list span {
  margin-top: 3px;
  font-size: 14px;
}
.work-card .work-list__icon {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.training {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
@media (max-width: 900px) {
  .training {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.training__text {
  margin-top: 20px;
  color: #353535;
  font-size: 15.5px;
}
.training__figure img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
@media (max-width: 900px) {
  .training__figure {
    order: -1;
  }
}

.training-videos {
  margin-top: 56px;
}
.training-videos__title {
  font-size: 22px;
  font-weight: 900;
  color: #2b2b2b;
  text-align: center;
  margin-bottom: 24px;
}
.training-videos__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
}
.training-videos__item {
  width: 325px;
  max-width: 100%;
  display: flex;
  justify-content: center;
}
.training-videos__item .tiktok-embed {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.training-videos__item iframe {
  max-width: 100% !important;
}
.training-videos__item img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff4ec;
  color: #d15c14;
  font-size: 13px;
  font-weight: 700;
}
.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid #ea6b1f;
}

.steps {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
@media (max-width: 640px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid rgba(234, 107, 31, 0.16);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(234, 107, 31, 0.06);
  padding: 52px 22px 34px;
  text-align: center;
}
@media (max-width: 640px) {
  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "num   title" "icon  desc";
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 4px;
    align-items: center;
    text-align: left;
    padding: 22px 26px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    border-color: #e6e6e6;
  }
}
.step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  color: #2b2b2b;
  font-size: 30px;
  font-weight: 700;
  z-index: 2;
}
@media (max-width: 640px) {
  .step:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -18px;
    transform: translateX(50%) rotate(90deg);
    color: #ea6b1f;
    font-size: 22px;
  }
}
.step__num {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ea6b1f;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(234, 107, 31, 0.3);
}
@media (max-width: 640px) {
  .step__num {
    position: static;
    transform: none;
    grid-area: num;
    justify-self: center;
    width: auto;
    height: auto;
    background: none;
    color: #ea6b1f;
    box-shadow: none;
    font-size: 32px;
  }
}
.step__icon {
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: #ea6b1f;
}
.step__icon svg {
  width: 60px;
  height: 60px;
}
.step__icon img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 640px) {
  .step__icon {
    grid-area: icon;
    justify-self: center;
    margin: 0;
  }
  .step__icon svg {
    width: 30px;
    height: 30px;
  }
  .step__icon img {
    width: 46px;
    height: 46px;
  }
}
.step__title {
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .step__title {
    grid-area: title;
    margin-bottom: 0;
    font-size: 17px;
  }
}
.step p {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.8;
}
@media (max-width: 640px) {
  .step p {
    grid-area: desc;
    font-size: 13.5px;
    line-height: 1.7;
  }
}

.env {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .env {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

.env-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.env-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.env-card__body {
  order: 1;
  background: #ea6b1f;
  color: #fff;
  padding: 26px 24px;
}
.env-card__figure {
  order: 2;
}
.env-card__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 360/220;
  -o-object-fit: cover;
     object-fit: cover;
}
.env-card__title {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}
.env-card p {
  font-size: 14px;
  color: #fff;
  opacity: 0.95;
  line-height: 1.75;
}

.pills {
  margin: 38px auto 0;
  max-width: 880px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 10px 24px;
  padding: 18px 40px;
  background-color: #fff;
  border: 1px solid rgba(234, 107, 31, 0.18);
  border-radius: 999px;
}
@media (max-width: 640px) {
  .pills {
    flex-direction: column;
    border-radius: 22px;
    padding: 20px;
    gap: 14px;
  }
}
.pills li {
  font-size: 15px;
  font-weight: 600;
  color: #2b2b2b;
}
.pills li::before {
  content: "◆";
  color: #ea6b1f;
  margin-right: 8px;
}

.req-block {
  margin-top: 52px;
}
.req-block:first-of-type {
  margin-top: 0;
}

.req-heading {
  font-size: 28px;
  font-weight: 900;
  color: #ea6b1f;
  line-height: 1.3;
  margin-bottom: 24px;
}

.req-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  background: linear-gradient(90deg, #fff 60%, #fff4ec);
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 36px 40px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .req-hero {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
}
.req-hero__title {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 900;
}
.req-hero__lead {
  margin-top: 12px;
  color: #353535;
  font-size: 15px;
}
.req-hero__badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.req-hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.req-hero__badges li svg {
  color: #ea6b1f;
}
.req-hero__figure img {
  width: 220px;
  border-radius: 14px;
}
@media (max-width: 640px) {
  .req-hero__figure img {
    width: 100%;
  }
}

.req-note-center {
  text-align: center;
  color: #6b7280;
  font-size: 13.5px;
  margin-top: 16px;
}

.salary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .salary {
    gap: 12px;
  }
}

.salary-card {
  position: relative;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
@media (max-width: 640px) {
  .salary-card {
    padding: 20px 16px;
  }
}
.salary-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "no     label" "amount amount";
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 8px;
  align-items: center;
}
.salary-card__no {
  grid-area: no;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ea6b1f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.salary-card__label {
  grid-area: label;
  font-size: 14px;
  color: #353535;
  font-weight: 500;
}
.salary-card__amount {
  grid-area: amount;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 900;
  color: #ea6b1f;
  margin-top: 2px;
  line-height: 1.4;
}
.salary-card__amount small {
  font-size: 0.55em;
  font-weight: 700;
}
@media (max-width: 640px) {
  .salary-card__amount {
    font-size: 18px;
  }
}

.salary-tags {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.salary-tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.salary-tags li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ea6b1f url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center/13px 13px no-repeat;
}

.req-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  overflow: hidden;
  font-size: 14.5px;
  background: #fff;
}
.req-table th, .req-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e6e6e6;
  vertical-align: middle;
}
.req-table th {
  background: #faf9f8;
  font-weight: 700;
  color: #2b2b2b;
  width: 15%;
  white-space: nowrap;
}
.req-table td {
  color: #353535;
}
.req-table tr:last-child th, .req-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 640px) {
  .req-table th, .req-table td {
    display: block;
    width: 100%;
  }
  .req-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }
  .req-table td {
    padding-top: 4px;
  }
}

.cond-panel {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  padding: 38px 40px 34px;
}
@media (max-width: 640px) {
  .cond-panel {
    padding: 26px 22px 24px;
  }
}

.cond {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 44px;
}
@media (max-width: 900px) {
  .cond {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.cond-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}
.cond-card__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cond-card p {
  font-size: 14px;
  color: #353535;
}

.cond-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cond-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #353535;
}
.cond-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ea6b1f;
}

.req-highlight {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 2px solid #ea6b1f;
  color: #ea6b1f;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.req-highlight__star {
  color: #ea6b1f;
  margin-right: 6px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.info-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}
.info-card__title svg {
  color: #ea6b1f;
}

.dot-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dot-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  color: #353535;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ea6b1f;
}

.place {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
@media (max-width: 900px) {
  .place {
    grid-template-columns: 1fr;
  }
}
.place__area {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
}
.place__area svg {
  color: #ea6b1f;
}
.place__pref {
  margin-top: 10px;
  color: #ea6b1f;
  font-weight: 700;
  font-size: 16px;
}
.place__note {
  color: #6b7280;
  font-size: 13px;
  margin-top: 4px;
}
.place__text {
  margin-top: 14px;
  color: #353535;
  font-size: 14.5px;
}
.place__figure img {
  width: 100%;
}

.welfare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .welfare {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .welfare {
    grid-template-columns: repeat(2, 1fr);
  }
}
.welfare li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 20px;
  font-size: 15px;
  font-weight: 500;
}
.welfare li svg {
  color: #ea6b1f;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
}

.apply-flow-card {
  padding: 40px 32px 32px;
}
@media (max-width: 640px) {
  .apply-flow-card {
    padding: 12px 4px 0;
  }
}

.apply-flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 640px) {
  .apply-flow-steps {
    display: grid;
    grid-template-columns: 30px 56px auto minmax(0, 1fr);
    -moz-column-gap: 14px;
         column-gap: 14px;
    row-gap: 24px;
    align-items: center;
  }
}
.apply-flow-steps__step {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 220px;
}
@media (max-width: 640px) {
  .apply-flow-steps__step {
    display: contents;
    text-align: left;
  }
}
.apply-flow-steps__badge {
  position: absolute;
  top: -10px;
  left: calc(50% - 44px);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ea6b1f;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .apply-flow-steps__badge {
    position: static;
    flex: 0 0 auto;
    justify-self: center;
  }
}
.apply-flow-steps__icon {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .apply-flow-steps__icon {
    margin-bottom: 0;
    justify-self: center;
  }
}
.apply-flow-steps__title {
  font-size: 18px;
  font-weight: 900;
  color: #2b2b2b;
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  .apply-flow-steps__title {
    margin-bottom: 0;
    white-space: nowrap;
  }
}
.apply-flow-steps__text {
  font-size: 13.5px;
  color: #353535;
  line-height: 1.6;
}
.apply-flow-steps__arrow {
  align-self: center;
  color: #d8d8d8;
  flex: 0 0 auto;
  margin-top: 18px;
}
@media (max-width: 640px) {
  .apply-flow-steps__arrow {
    display: none;
  }
}

.apply-flow-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 36px;
  padding: 20px 24px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}
.apply-flow-contact__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #2b2b2b;
}
.apply-flow-contact__item svg {
  color: #ea6b1f;
  flex: 0 0 auto;
}
.apply-flow-contact__item a {
  color: #2b2b2b;
  text-decoration: none;
}
.apply-flow-contact__item a:hover {
  color: #ea6b1f;
}

.apply-flow-note {
  text-align: center;
  color: #ea6b1f;
  font-weight: 700;
  font-size: 15px;
  margin-top: 20px;
}

.line-cta {
  padding-block: 0 44px;
}
.line-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #f3fdf7;
  border: 1px solid #bfeed2;
  border-radius: 14px;
  padding: 28px 32px;
}
@media (max-width: 640px) {
  .line-cta__card {
    flex-direction: column;
    text-align: center;
  }
}
.line-cta__label {
  font-weight: 700;
  font-size: 15px;
  color: #2b2b2b;
  margin-bottom: 14px;
}
.line-cta__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.line-cta__qr img {
  border-radius: 10px;
  border: 1px solid #bfeed2;
}
.line-cta__qr span {
  font-size: 12px;
  color: #353535;
}
.line-cta__url {
  font-size: 12px;
  color: #06c755;
  text-decoration: underline;
}
.line-cta__url:hover {
  color: #05a948;
}

.flow {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 640px) {
  .flow {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 640px;
    margin-inline: auto;
  }
}
.flow__step {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "num  title" "desc desc";
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 8px;
  align-items: center;
  text-align: left;
}
@media (max-width: 640px) {
  .flow__step {
    padding: 22px 24px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.flow__step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ea6b1f;
  font-size: 24px;
  font-weight: 700;
  z-index: 1;
}
@media (max-width: 640px) {
  .flow__step:not(:last-child)::after {
    right: auto;
    top: auto;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%) rotate(90deg);
  }
}
.flow__num {
  grid-area: num;
  justify-self: center;
  color: #ea6b1f;
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .flow__num {
    font-size: 30px;
  }
}
.flow__title {
  grid-area: title;
  font-size: 18px;
  font-weight: 700;
}
.flow p {
  grid-area: desc;
  font-size: 14px;
  color: #6b7280;
}

.flow-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 900px) {
  .flow-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.flow-wrap__lead {
  text-align: left;
  color: #353535;
  margin-top: 14px;
  font-size: 15px;
}
.flow-wrap__figure img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow2 {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.flow2__step {
  position: relative;
  text-align: center;
  padding: 0 6px;
}
.flow2__step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -6px;
  top: 38px;
  transform: translateY(-50%);
  color: #333;
  font-size: 26px;
  font-weight: 700;
}
.flow2__icon {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 640px) {
  .flow2__icon {
    width: 60px;
    height: 60px;
  }
}
.flow2__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.flow2 p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.7;
}

.form {
  margin-top: 40px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 640px) {
  .form {
    padding: 26px 20px;
  }
}
.form__row {
  margin-bottom: 22px;
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.form__label {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 8px;
}
.form__control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #2b2b2b;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form__control::-moz-placeholder {
  color: #b3b3b3;
}
.form__control::placeholder {
  color: #b3b3b3;
}
.form__control:focus {
  outline: none;
  border-color: #ea6b1f;
  box-shadow: 0 0 0 3px rgba(234, 107, 31, 0.15);
}
.form textarea.form__control {
  resize: vertical;
  line-height: 1.7;
}
.form__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.form__privacy {
  margin: 6px 0 20px;
  padding: 18px;
  background: #fff8f2;
  border: 1px solid rgba(234, 107, 31, 0.2);
  border-radius: 10px;
  text-align: center;
}
.form__submit {
  text-align: center;
}

.req-mark {
  display: inline-block;
  background: #ea6b1f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.choice input {
  accent-color: #ea6b1f;
}
.choice:has(input:checked) {
  border-color: #ea6b1f;
  background: #fff4ec;
  font-weight: 700;
}

.consent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.consent input {
  width: 20px;
  height: 20px;
  accent-color: #ea6b1f;
  flex: 0 0 auto;
}
.consent a {
  color: #ea6b1f;
  text-decoration: underline;
  font-weight: 700;
}

.apply__or {
  text-align: center;
  color: #353535;
  font-size: 14px;
  margin-top: 34px;
}
.apply__contact {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 30px;
}
.apply__contact li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}
.apply__contact li svg {
  color: #ea6b1f;
}
.apply__contact li a:hover {
  color: #ea6b1f;
}

.cta {
  background: linear-gradient(120deg, #fff8f2, #fff4ec);
  border-top: 1px solid #e6e6e6;
}
.cta__inner {
  padding-block: 56px;
  text-align: center;
}
.cta__title {
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 900;
  line-height: 1.4;
}
.cta__actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta__note {
  margin-top: 16px;
  color: #353535;
  font-size: 13.5px;
}

.footer {
  background: #2c2c2c;
  color: #cfcfcf;
  text-align: center;
  padding-block: 26px;
}
.footer__copy {
  font-size: 13px;
  letter-spacing: 0.02em;
}
.footer__copy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__copy a:hover {
  color: #fff;
}

.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ea6b1f;
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 8px 18px rgba(234, 107, 31, 0.32);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.15s ease;
}
.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pagetop:hover {
  background: #d15c14;
}
.pagetop__text {
  font-size: 11px;
  letter-spacing: 0.04em;
}
.pagetop__arrow {
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 640px) {
  .pagetop {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}
/* ------------------------------------------------------------
    応募フォーム：スパム対策のハニーポット（画面には出しません）
   ------------------------------------------------------------ */
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ------------------------------------------------------------
    送信完了 / 送信エラー画面（thanks.html・send.php）
   ------------------------------------------------------------ */
.result__card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  padding: 56px 48px;
  text-align: center;
}
.result__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ea6b1f;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.result__icon--error {
  background: #d64545;
}
.result__title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
}
.result__lead {
  margin-top: 16px;
  color: #353535;
}
.result__box {
  margin-top: 32px;
  padding: 24px 28px;
  background: #fff8f2;
  border-radius: 10px;
  text-align: left;
}
.result__box-title {
  font-weight: 700;
  color: #ea6b1f;
  margin-bottom: 10px;
}
.result__steps {
  list-style: decimal;
  padding-left: 1.4em;
}
.result__steps li + li {
  margin-top: 6px;
}
.result__errors {
  margin-top: 28px;
  padding: 20px 24px 20px 40px;
  background: #fdf2f2;
  border: 1px solid #f3d2d2;
  border-radius: 10px;
  list-style: disc;
  text-align: left;
  color: #a32b2b;
  font-weight: 500;
}
.result__errors li + li {
  margin-top: 8px;
}
.result__actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.result__note {
  margin-top: 28px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.9;
}
.result__note a {
  color: #ea6b1f;
  text-decoration: underline;
}
.result__contact {
  margin-top: 18px;
}
@media (max-width: 640px) {
  .result__card {
    padding: 40px 20px;
  }
  .result__title {
    font-size: 21px;
  }
  .result__actions .btn {
    width: 100%;
  }
}

/* ------------------------------------------------------------
    規約系ページ（privacy.html）
   ------------------------------------------------------------ */
.legal__title {
  font-size: 30px;
  font-weight: 900;
  padding-bottom: 16px;
  border-bottom: 3px solid #ea6b1f;
}
.legal__lead {
  margin-top: 24px;
  color: #353535;
}
.legal__block {
  margin-top: 44px;
}
.legal__heading {
  font-size: 19px;
  font-weight: 700;
  padding-left: 14px;
  border-left: 4px solid #ea6b1f;
  margin-bottom: 14px;
  line-height: 1.5;
}
.legal__block p + p {
  margin-top: 14px;
}
.legal__list {
  list-style: disc;
  padding-left: 1.4em;
  margin-top: 12px;
}
.legal__list li + li {
  margin-top: 6px;
}
.legal__note {
  margin-top: 14px;
  font-size: 14px;
  color: #6b7280;
}
.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.legal__table th,
.legal__table td {
  border: 1px solid #e6e6e6;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}
.legal__table th {
  width: 28%;
  background: #fff8f2;
  font-weight: 700;
  white-space: nowrap;
}
.legal__table a {
  color: #ea6b1f;
  text-decoration: underline;
}
.legal__date {
  margin-top: 44px;
  text-align: right;
  font-size: 14px;
  color: #6b7280;
}
@media (max-width: 640px) {
  .legal__title {
    font-size: 23px;
  }
  .legal__heading {
    font-size: 17px;
  }
  .legal__table th,
  .legal__table td {
    display: block;
    width: auto;
    border-bottom: none;
  }
  .legal__table tr:last-child td {
    border-bottom: 1px solid #e6e6e6;
  }
}
/*# sourceMappingURL=style.css.map */