@charset "UTF-8";
/** @format */
/** @format */
html {
  font-size: 62.5%;
  scroll-padding-top: var(--header-h);
}

body {
  letter-spacing: 0.08em;
  line-height: 1.75;
  position: relative;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

.wrapper {
  width: 100%;
  max-width: 1104px;
  padding: 80px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .wrapper {
    padding: 40px 20px;
  }
}

a {
  transition: all 0.2s;
}
a:hover {
  opacity: 0.7;
}

.page-headingBg {
  position: relative;
}

.page-headingBg__img {
  width: 100%;
}

.page-headingText {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.page-title {
  font-size: 4.8rem;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #fff;
  text-shadow: 0 0 10px rgba(51, 51, 51, 0.5);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 4rem;
  }
}

.page-subtitle {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 10px rgba(51, 51, 51, 0.5);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .page-subtitle {
    font-size: 1.8rem;
  }
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 24px 40px;
  width: 100%;
  max-width: 1104px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .breadcrumbs {
    padding: 16px 20px;
  }
}

.breadcrumbs__list {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}
.breadcrumbs__list::after {
  content: "＞";
}
.breadcrumbs__list:last-child::after {
  content: none;
}

.breadcrumbs__link {
  color: #787878;
}

.othersLink {
  padding: 0 40px;
  width: 100%;
  max-width: 1104px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .othersLink {
    padding: 0 20px;
  }
}

.othersLink__link {
  display: flex;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #0075bd;
}

.othersLink__text {
  font-size: 1.8rem;
  color: #0075bd;
  font-weight: 500;
  text-align: center;
  background-color: #fff;
  width: calc(100% - 59px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .othersLink__text {
    font-size: 1.6rem;
  }
}

.othersLink__arrow {
  background-color: #0075bd;
  width: 59px;
  height: 59px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: 4rem;
  font-family: "Oswald", sans-serif;
  color: #0075bd;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 3.2rem;
  }
}
.section-title::before {
  content: "";
  background-image: url(../img/common/title-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 51px;
  flex: none;
}

.section-subtitle {
  font-size: 1.6rem;
  color: #1f2937;
  letter-spacing: 0.08em;
}

.accordion .accordion__answer {
  display: none;
}

.js-accordion-trigger::after {
  transition: all 0.2s;
}

.js-accordion-trigger.is-active::after {
  transform: translateY(-50%) rotate(180deg);
}

.form {
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form__contents {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}

.form__title {
  font-weight: bold;
  text-align: center;
  color: #333;
}
.form__title .form__titleBrSP {
  display: none;
}
@media screen and (max-width: 768px) {
  .form__title .form__titleBrSP {
    display: block;
  }
}

.form__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__name {
  display: flex;
  gap: 16px;
}

.form__nameItem {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.form__nameItemLabel {
  font-size: 1.4rem;
  color: #6b7280;
}

.form__label {
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
  display: inline-block;
}
.form__label .form__label--required {
  font-size: 1.4rem;
  background-color: #0075bd;
  color: #fff;
  padding: 0 4px;
  line-height: 1.75;
  font-weight: normal;
  margin-left: 8px;
}

.form__input {
  border: 1px solid #d1d5db;
  border-radius: 4px;
  height: 48px;
  width: 100%;
  padding: 4px 12px;
  font-size: 1.6rem;
  background-color: #fff;
}

.form__textarea {
  border: 1px solid #d1d5db;
  border-radius: 4px;
  height: 150px;
  width: 100%;
  padding: 4px 12px;
  font-size: 1.6rem;
  resize: none;
  background-color: #fff;
}

.form__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__checkItem {
  font-size: 1.6rem;
  color: #333;
  display: flex;
  justify-content: center;
}

.form__checkPrivacy {
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

.form__checkLink {
  text-decoration: underline;
}

.form__submitBtn {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  background-color: #0075bd;
  max-width: 320px;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.wpcf7-spinner {
  display: none;
}

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

.wpcf7-not-valid-tip, .wpcf7-response-output {
  font-size: 1.4rem;
}

/** @format */
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.recruitReason {
  background-image: url(../img/pages/recruit/reason-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .recruitReason {
    background-image: url(../img/pages/recruit/reason-bg_sp.png);
    background-size: contain;
  }
}

.recruitReason__introduction {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recruitReason__introductionVideo {
  width: 100%;
}

.recruitReason__introductionTextbox {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recruitReason__introductionText {
  font-size: 2.4rem;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruitReason__introductionText {
    font-size: 1.8rem;
  }
}

.recruitReason__reason {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.recruitReason__reasonTitle {
  font-size: 3.2rem;
  color: #0075bd;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .recruitReason__reasonTitle {
    font-size: 2.4rem;
  }
}
.recruitReason__reasonTitle::before {
  content: "";
  width: 1px;
  height: 80px;
  background-color: #0075bd;
}
@media screen and (max-width: 768px) {
  .recruitReason__reasonTitle::before {
    height: 40px;
  }
}

.recruitReason__reasonTextbox {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recruitReason__reasonText {
  font-size: 2.4rem;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruitReason__reasonText {
    font-size: 1.6rem;
  }
}
.recruitReason__reasonText .recruitReason__reasonText--orange {
  color: #ffbf00;
  text-decoration: underline;
  font-weight: bold;
}
.recruitReason__reasonText .recruitReason__reasonTextBrSP {
  display: none;
}
@media screen and (max-width: 768px) {
  .recruitReason__reasonText .recruitReason__reasonTextBrSP {
    display: block;
  }
}

.recruitReason__reasonDetails {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .recruitReason__reasonDetails {
    flex-direction: column;
    align-items: center;
  }
}

.recruitReason__reasonItem {
  flex: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.039);
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .recruitReason__reasonItem {
    width: 100%;
  }
}

.recruitReason__reasonThumbnail {
  cursor: pointer;
}

.recruitReason__reasonItemImg {
  width: 100%;
}

.recruitReason__reasonItemTitle {
  font-size: clamp(1.8rem, 1.5625vw, 2rem);
  color: #0075bd;
  font-weight: bold;
  text-align: center;
  padding: 16px 36px 16px 8px;
  position: relative;
  letter-spacing: normal;
}
@media screen and (max-width: 1024px) {
  .recruitReason__reasonItemTitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .recruitReason__reasonItemTitle {
    font-size: clamp(1.6rem, 5vw, 1.8rem);
  }
}
.recruitReason__reasonItemTitle::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
  background-image: url(../img/common/down-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.js-accordion-trigger .recruitReason__reasonItemTitle::after {
  transition: all 0.2s;
}

.js-accordion-trigger.is-active .recruitReason__reasonItemTitle::after {
  transform: translateY(-50%) rotate(180deg);
}

.recruitReason__reasonItemContent {
  padding: 0 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recruitReason__reasonItemTextbox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recruitReason__reasonItemText {
  font-size: 1.6rem;
  color: #333;
}
.recruitReason__reasonItemText .recruitReason__reasonItemText--underline {
  font-weight: bold;
  text-decoration: underline;
}

.recruitReason__reasonItemList {
  padding: 12px 8px;
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruitReason__reasonItemListItem {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: normal;
}
.recruitReason__reasonItemListItem::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 3px;
  background-color: #0075bd;
}

.recruitReason__reasonItemYellowlist {
  background: rgba(255, 228, 8, 0.1);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruitReason__reasonItemYellowlistItem {
  font-size: 1.4rem;
  color: #333;
  font-weight: bold;
  display: flex;
  gap: 10px;
  align-items: center;
}
.recruitReason__reasonItemYellowlistItem::before {
  content: "";
  background-image: url(../img/pages/recruit/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}

.recruitReason__reasonItemTextsmall {
  font-size: 1.4rem;
  color: #333;
}
.recruitReason__reasonItemTextsmall .recruitReason__reasonItemTextsmall--bold {
  font-weight: bold;
}

.recruitReason__reasonItemTextsmallCenter {
  text-align: center;
}

/** @format */
.recruitCta {
  background-image: url(../img/pages/recruit/cta-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .recruitCta {
    background-image: url(../img/pages/recruit/cta-bg_sp.png);
  }
}

.recruitCta__contents {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 480px) {
  .recruitCta__contents {
    padding: 28px 30.5px;
  }
}

.recruitCta__title {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.75;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .recruitCta__title {
    font-size: clamp(1.6rem, 5vw, 1.8rem);
  }
}
.recruitCta__title br {
  display: none;
}
@media screen and (max-width: 768px) {
  .recruitCta__title br {
    display: block;
  }
}

.recruitCta__btn {
  color: #0075bd;
  background-color: #fff;
  max-width: 329px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  gap: 8px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .recruitCta__btn {
    font-size: clamp(1.6rem, 5vw, 1.8rem);
  }
}
.recruitCta__btn::before {
  content: "";
  background-image: url(../img/pages/recruit/blue-glass.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

/** @format */
.recruitBusiness {
  background-color: #f8fafc;
}

.recruitBusiness__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .recruitBusiness__contents {
    gap: 24px;
  }
}

.recruitBusiness__title {
  font-size: 3.2rem;
  color: #333;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruitBusiness__title {
    font-size: 2.4rem;
  }
}

.recruitBusiness__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recruitBusiness__item {
  box-shadow: 0 0 15px rgba(140, 140, 140, 0.25);
}

.recruitBusiness__itemTitle {
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
  background-color: #0075bd;
  padding: 12px 16px;
}
@media screen and (max-width: 768px) {
  .recruitBusiness__itemTitle {
    font-size: 2rem;
  }
}

.recruitBusiness__itemContent {
  background-color: #fff;
  padding: 32px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recruitBusiness__itemTop {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .recruitBusiness__itemTop {
    flex-direction: column;
  }
}

.recruitBusiness__itemImg {
  max-width: 317px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recruitBusiness__itemImg {
    max-width: none;
  }
}

.recruitBusiness__itemTextbox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recruitBusiness__itemText {
  font-size: 1.6rem;
  color: #333;
}

.recruitBusiness__itemBottom {
  background-color: #f3f4f6;
  padding: 16px;
  display: flex;
  gap: 26px;
}
@media screen and (max-width: 768px) {
  .recruitBusiness__itemBottom {
    flex-direction: column;
    gap: 10px;
  }
}

.recruitBusiness__itemBottomItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid #888;
}
@media screen and (max-width: 768px) {
  .recruitBusiness__itemBottomItem {
    border-right: none;
    border-bottom: 1px solid #888;
    padding-bottom: 10px;
  }
}
.recruitBusiness__itemBottomItem:last-child {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .recruitBusiness__itemBottomItem:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.recruitBusiness__itemBottomTitle {
  font-size: 1.4rem;
  color: #0075bd;
  font-weight: bold;
  display: flex;
  gap: 10px;
  font-family: "Inter", sans-serif;
  align-items: center;
}

.recruitBusiness__itemBottomLabel {
  color: #fff;
  background-color: #0075bd;
  border-radius: 100px;
  padding: 0 16px;
  white-space: nowrap;
}

.recruitBusiness__itemBottomText {
  font-size: 1.4rem;
  color: #333;
  font-family: "Inter", sans-serif;
}

/** @format */
.recruitList__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recruitList__title {
  font-size: 3.2rem;
  color: #333;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruitList__title {
    font-size: 2.4rem;
  }
}

.recruitList__search {
  display: flex;
  background-color: #f3f4f6;
  padding: 32px 24px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .recruitList__search {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
  }
}

.recruitList__searchLeft {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .recruitList__searchLeft {
    flex-direction: column;
    gap: 24px;
  }
}

.recruitList__searchItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recruitList__searchItemTitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}

.recruitList__searchItemList {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.recruitList__searchItemCheck {
  display: flex;
  align-items: center;
  gap: 8px;
}

.recruitList__searchItemLabel {
  font-size: 1.6rem;
  color: #333;
}

.recruitList__searchRight {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background-color: #0075bd;
  max-width: 180px;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .recruitList__searchRight {
    max-width: none;
  }
}
.recruitList__searchRight::before {
  content: "";
  background-image: url(../img/pages/recruit/white-glass.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.recruitList__result {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recruitList__resultItem {
  border: 3px solid #e5e7eb;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .recruitList__resultItem {
    flex-direction: column;
    padding: 24px 16px;
  }
}

.recruitList__resultImg {
  max-width: 200px;
  width: 100%;
  height: 112px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .recruitList__resultImg {
    max-width: 350px;
    height: 178px;
  }
}

.recruitList__resultContents {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 548px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recruitList__resultContents {
    max-width: none;
  }
}

.recruitList__resultTitle {
  font-size: 1.8rem;
  color: #333;
  font-weight: 600;
}

.recruitList__resultInfo {
  display: flex;
  gap: 24px;
}

.recruitList__resultTime {
  font-size: 1.4rem;
  color: #333;
  display: flex;
  gap: 4px;
  align-items: center;
  white-space: nowrap;
}
.recruitList__resultTime::before {
  content: "";
  background-image: url(../img/pages/recruit/time.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  flex: none;
}

.recruitList__resultPosition {
  font-size: 1.4rem;
  color: #333;
  display: flex;
  gap: 4px;
  align-items: center;
}
.recruitList__resultPosition::before {
  content: "";
  background-image: url(../img/pages/recruit/point.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  flex: none;
}

.recruitList__resultBtn {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  background-color: #0075bd;
  max-width: 180px;
  width: 100%;
  height: 48px;
}
@media screen and (max-width: 768px) {
  .recruitList__resultBtn {
    max-width: none;
  }
}
.recruitList__resultBtn::after {
  content: "";
  background-image: url(../img/common/white-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 16px;
}

.recruitList__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.recruitList__pagination .page-numbers {
  font-size: 1.6rem;
  color: #ccc;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruitList__pagination .page-numbers.current {
  color: #0075bd;
}

.recruitList__empty {
  font-size: 1.6rem;
  color: #333;
  text-align: center;
}

/** @format */
.recruitContents__contents {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 480px) {
  .recruitContents__contents {
    gap: 24px;
  }
}

.recruitContents__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recruitContents__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
}

.recruitContents__imgbox {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .recruitContents__imgbox {
    flex-direction: column;
  }
}

.recruitContents__img {
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .recruitContents__img {
    max-width: none;
  }
}

.recruitContents__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recruitContents__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recruitContents__itemTitle {
  font-size: 1.8rem;
  color: #fff;
  background-color: #0075bd;
  padding: 0 4px;
}

.recruitContents__itemText {
  font-size: 1.6rem;
  color: #333;
}
.recruitContents__itemText .recruitContents__itemText--orange {
  color: #ffbf00;
  text-decoration: underline;
  font-weight: bold;
}

.recruitContents__info {
  display: flex;
  gap: 40px;
  padding-top: 16px;
  border-top: 1px solid #888;
}
@media screen and (max-width: 768px) {
  .recruitContents__info {
    flex-direction: column;
    gap: 16px;
  }
}

.recruitContents__infoItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recruitContents__infoItemLine {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  border-bottom: 1px solid #888;
}

.recruitContents__infoItemTitle {
  font-size: 1.8rem;
  color: #333;
  font-weight: 600;
  display: flex;
  gap: 9px;
  align-items: center;
}
.recruitContents__infoItemTitle::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #ffe408;
  border-radius: 100px;
}

.recruitContents__infoItemContent {
  font-size: 1.6rem;
  color: #333;
}

/** @format */
.recruitForm__title {
  font-size: 2.4rem;
}/*# sourceMappingURL=recruit.css.map */