@charset "UTF-8";
/** @format */
/** @format */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  color: #3a3937;
  background-color: #fffbf2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.8;
}

.wrapper {
  width: 100%;
  max-width: 1104px;
  margin: 0 auto;
}

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

.page-title {
  font-size: 3.6rem;
  color: #1ea469;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }
}

.page-subtitle {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .page-subtitle {
    font-size: 1.4rem;
  }
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .section-heading {
    gap: 5px;
  }
}

.section-title {
  font-size: 3.2rem;
  color: #3a3937;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.6rem;
  color: #9cd81c;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .section-subtitle {
    font-size: 1.4rem;
  }
}

.cta {
  background-image: url("../img/common/cta-bg_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .cta {
    background-image: url("../img/common/cta-bg_sp.png");
  }
}

.cta__contents {
  padding: 40px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .cta__contents {
    padding: 40px 20px;
  }
}

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

.cta__title {
  font-size: 3.2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 480px) {
  .cta__title {
    font-size: 2.4rem;
  }
}

.cta__text {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.15);
}

.cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta__link {
  background-color: #fff;
  padding: 16px 16px 16px 100px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 15px;
  transition: all 0.2s;
}
@media screen and (max-width: 480px) {
  .cta__link {
    padding: 12.5px 12.5px 12.5px 40px;
    max-width: 251px;
  }
}
.cta__link::before {
  content: "";
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}

.cta__instagram {
  color: #fc63ef;
}
.cta__instagram:hover {
  color: #fff;
  background-color: #ff92f6;
}
.cta__instagram::before {
  background-image: url("../img/common/instagram-icon.svg");
}
.cta__instagram:hover::before {
  background-image: url("../img/common/instagram-icon_hover.svg");
}

.cta__youtube {
  color: #ff5e95;
}
.cta__youtube:hover {
  color: #fff;
  background-color: #ff5e95;
}
.cta__youtube::before {
  background-image: url("../img/common/youtube-icon.svg");
}
.cta__youtube:hover::before {
  background-image: url("../img/common/youtube-icon_hover.svg");
}

.cta__youtubeBox {
  position: relative;
  max-width: 380px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .cta__youtubeBox {
    max-width: 251px;
  }
}

.cta__youtubeLinks {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 90%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 20px;
  display: grid;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .cta__youtubeLinks {
    width: 100%;
    padding: 20px 8px;
  }
}

.cta__youtubeBox.is-open .cta__youtubeLinks {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cta__youtubeLinksItem {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: underline;
  width: fit-content;
  margin: 0 auto;
}
.cta__youtubeLinksItem:hover {
  color: #0090ff;
}

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

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

.form__label {
  font-size: 1.5rem;
  color: #3a3937;
  font-weight: bold;
  display: flex;
  gap: 10px;
  align-items: center;
}
.form__label .form__label--required {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  background-color: #ff5e95;
  padding: 2px 4px;
}

.form__select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../img/common/select-arrow.svg");
  background-repeat: no-repeat;
  background-size: 24px auto; /* 画像のサイズ（幅 高さ）*/
  background-position: right 20px center; /* 画像の位置 */
  background-color: #fff;
  width: 281px;
  height: 60px;
  border: 1px solid #f8e351;
  padding-left: 20px;
  font-size: 1.4rem;
}

.form__input {
  background-color: #fff;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 1px solid #f8e351;
  font-size: 1.4rem;
}

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

.form__textarea {
  background-color: #fff;
  width: 100%;
  height: 120px;
  padding: 20px;
  border: 1px solid #f8e351;
  resize: none;
  font-size: 1.4rem;
}

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

.form__ruleText {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
  line-height: 1.8;
}

.form__ruleLink {
  color: #0090ff;
  text-decoration: underline;
}

.form__ruleCheckBox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form__ruleCheckBox .wpcf7-list-item-label {
  font-size: 1.8rem;
  color: #3a3937;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .form__ruleCheckBox .wpcf7-list-item-label {
    font-size: clamp(1.4rem, 3.75vw, 1.8rem);
  }
}
.form__ruleCheckBox .form__label--required {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  background-color: #ff5e95;
  padding: 2px 4px;
  margin-bottom: 9px;
}
.form__ruleCheckBox .form__ruleCheck {
  width: 24px;
  height: 24px;
  margin-bottom: 9px;
}
@media screen and (max-width: 480px) {
  .form__ruleCheckBox .form__ruleCheck {
    width: clamp(18px, 5vw, 24px);
    height: clamp(18px, 5vw, 24px);
  }
}

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

.form__ruleBtnboxText {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: 500;
}

.form__submitWrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.form__submitWrapper::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  content: "";
  background-image: url("../img/common/submit-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.form__submitWrapper .wpcf7-spinner {
  display: none;
}

.form__submit {
  font-size: 1.6rem;
  color: #fff;
  background-color: #f8e351;
  padding: 16px 54px 16px 30px;
  border-radius: 15px;
  font-weight: bold;
  box-shadow: -7px 7px 7px rgba(0, 0, 0, 0.05);
  display: block;
}

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

/* Contact Form 7：送信成功時の緑枠メッセージを非表示にする */
.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

.fadein {
  opacity: 0;
  transition: opacity 2s;
}

.fadein.show {
  opacity: 1;
}

/** @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;
}

.worksFV {
  background-image: url("../img/pages/works/works-fvbg.png");
  background-repeat: no-repeat;
  background-size: min(34.2361111111vw, 493px);
  background-position: bottom 40px right;
}
@media screen and (max-width: 768px) {
  .worksFV {
    background-size: min(39.0625vw, 300px);
    background-position: top 130px left;
  }
}
@media screen and (max-width: 480px) {
  .worksFV {
    background-size: min(34.375vw, 165px);
    background-position: top 120px left;
  }
}

.worksFV__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 240px 40px 120px;
}
@media screen and (max-width: 480px) {
  .worksFV__contents {
    padding: 150px 20px 80px;
    gap: 32px;
  }
}

.worksFV__img {
  max-width: 526px;
  width: 100%;
  margin: 0 auto;
}

/** @format */
.worksClover {
  background-image: url("../img/common/clover.png");
  background-repeat: no-repeat;
  background-size: 445px;
  background-position: top 58% right;
}
@media screen and (max-width: 768px) {
  .worksClover {
    background-size: 300px;
    background-position: top 56% right;
  }
}
@media screen and (max-width: 480px) {
  .worksClover {
    background-size: 150px;
  }
}

.worksJC__contents {
  padding: 0 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 896px;
}
@media screen and (max-width: 480px) {
  .worksJC__contents {
    padding: 0 20px 80px;
    gap: 32px;
  }
}

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

.worksJC__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e5f1e1;
}
.worksJC__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .worksJC__item {
    padding-bottom: 40px;
  }
}

.worksJC__itemTop {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .worksJC__itemTop {
    flex-direction: column-reverse;
    gap: 16px;
  }
}

.worksJC__itemTopContent {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(100% - 425px);
}
@media screen and (max-width: 768px) {
  .worksJC__itemTopContent {
    width: 100%;
  }
}

.worksJC__itemGreentext {
  font-size: 1.6rem;
  color: #1ea469;
  font-weight: 500;
  line-height: 1.5;
}

.worksJC__itemText {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
  line-height: 1.8;
}

.worksJC__itemTerms {
  display: flex;
  gap: 10px;
  align-items: center;
}

.worksJC__itemLabel {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  background-color: #f8e351;
  border-radius: 5px;
  padding: 5px 10px;
}

.worksJC__itemTermsText {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
}

.worksJC__itemHeading {
  border-radius: 5px;
  box-shadow: -7px 7px 7px rgba(0, 0, 0, 0.05);
}

.worksJC__itemImg {
  max-width: 385px;
  width: 100%;
  border-radius: 5px 5px 0 0;
}
@media screen and (max-width: 768px) {
  .worksJC__itemImg {
    max-width: none;
  }
}

.worksJC__itemHeadingTitle {
  font-size: 2rem;
  font-weight: bold;
  color: #1ea469;
  font-weight: bold;
  padding: 13px;
  background-color: #fff;
  text-align: center;
  border-radius: 0 0 5px 5px;
}
@media screen and (max-width: 480px) {
  .worksJC__itemHeadingTitle {
    font-size: 1.6rem;
  }
}

.worksJC__itemBottom {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .worksJC__itemBottom {
    flex-wrap: wrap;
    gap: 16px 20px;
  }
}

.worksJC__itemBottomImg {
  max-width: 258px;
  box-shadow: -3px 3px 4px rgba(0, 0, 0, 0.05);
  width: calc(33.3333333333% - 13px);
}
@media screen and (max-width: 768px) {
  .worksJC__itemBottomImg {
    width: calc(50% - 10px);
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .worksJC__itemBottomImg:first-child {
    width: 100%;
    max-width: none;
  }
}

/** @format */
.worksJD__contents {
  padding: 0 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 896px;
}
@media screen and (max-width: 480px) {
  .worksJD__contents {
    padding: 0 20px 80px;
    gap: 32px;
  }
}

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

.worksJD__item {
  padding: 10px;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  gap: 16px;
  box-shadow: -7px 7px 7px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .worksJD__item {
    flex-direction: column;
  }
}

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

.worksJD__itemContent {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.worksJD__itemTitle {
  font-size: 2rem;
  color: #3a3937;
  font-weight: bold;
  border-left: 5px solid #1ea469;
  padding-left: 10px;
  margin: 10.5px 0;
}
@media screen and (max-width: 480px) {
  .worksJD__itemTitle {
    font-size: 1.8rem;
  }
}

.worksJD__itemList {
  display: flex;
  gap: 8px;
}

.worksJD__itemLabel {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
}

.worksJD__itemLabel--yellow {
  background-color: #f8e351;
}

.worksJD__itemLabel--green {
  background-color: #8fc31f;
}

.worksJD__itemText {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
}

.worksJD__itemBtnbox {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.worksJD__itemBtntext {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: bold;
}

.worksJD__itemBtnimg {
  width: 38px;
}

.topRecruitment__table {
  border-collapse: collapse;
  width: 100%;
}

.topRecruitment__tableLine {
  border-bottom: 1px solid #f8e351;
}
.topRecruitment__tableLine:last-child {
  border-bottom: none;
}

.topRecruitment__tableTitle {
  font-size: 1.5rem;
  color: #3a3937;
  font-weight: bold;
  width: 174px;
  padding: 0 20px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .topRecruitment__tableTitle {
    display: block;
    padding: 11px 20px;
  }
}

.topRecruitment__tableContent {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .topRecruitment__tableContent {
    display: block;
    padding-top: 0;
  }
}

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

.topRecruitment__typeList {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.topRecruitment__typeLabel {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  width: 80px;
  padding: 3.5px;
  text-align: center;
}

.topRecruitment__typeLabel--blue {
  background-color: #50d8f7;
}

.topRecruitment__typeLabel--yellow {
  background-color: #fed86c;
}

.topRecruitment__typeNote {
  font-size: 1.3rem;
  color: #3a3937;
}

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

.topRecruitment__tableText {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
}

/* モーダル本体 */
.recruitModal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  display: flex; /* ← 中央寄せのためにflex */
  align-items: center;
  justify-content: center;
}

.recruitModal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 背景 */
.recruitModal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.001;
  transition: opacity 0.25s ease;
}

.recruitModal.is-open .recruitModal__overlay {
  opacity: 1;
}

/* ダイアログ部分 */
.recruitModal__dialog {
  position: relative;
  z-index: 1;
  max-width: 1026px;
  width: 90%;
  max-height: 85vh; /* ← モーダルの高さ制限 */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s;
  display: flex;
  flex-direction: column; /* ← 中のスクロール領域を縦並び */
}

.recruitModal.is-open .recruitModal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* タイトル部分 */
.recruitModal__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
}

/* 本文部分 → ここをスクロール可にする */
.recruitModal__body {
  flex: 1;
  padding: 16px 8px;
  overflow-y: auto; /* ← スクロール可！ */
}

/* 閉じるボタン */
.recruitModal__close {
  position: absolute;
  top: -11px;
  right: -42px;
  background: none;
  border: none;
  font-size: 50px;
  cursor: pointer;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .recruitModal__close {
    top: -50px;
    right: 0;
  }
}

body.no-scroll {
  overflow: hidden;
}

/** @format */
.topRecruitment {
  background-color: #1ea469;
  border-radius: 15px;
}

.topRecruitment__contents {
  padding: 60px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .topRecruitment__contents {
    padding: 60px 20px 120px;
  }
}

.topRecruitment__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.topRecruitment__title {
  font-size: 3.2rem;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .topRecruitment__title {
    font-size: 2rem;
  }
}

.topRecruitment__subtitle {
  font-size: 1.6rem;
  color: #f8e351;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .topRecruitment__subtitle {
    font-size: 1.4rem;
  }
}

.topRecruitment__tabs {
  max-width: 830px;
  width: 100%;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  display: inline-block;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  padding: 28px 16px;
  width: calc(33.3333333333% - 6px);
  border: 1px solid #fff;
  border-radius: 15px;
  background-color: #1ea469;
  margin-right: 5px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .tab_item {
    font-size: clamp(1.4rem, 2.6041666667vw, 2rem);
    padding: 20px 1px;
  }
}
.tab_item:last-of-type {
  margin-right: 0;
}
.tab_item .tab_itemNone {
  display: inline;
}
@media screen and (max-width: 768px) {
  .tab_item .tab_itemNone {
    display: none;
  }
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 0 0;
  clear: both;
  overflow: hidden;
}

/* 初期状態では全件表示 */
.tab_content--all {
  display: block;
}

/* タブが選択されたら全件を非表示 */
.topRecruitment__tabs:has(input[name=tab_item]:checked) .tab_content--all {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#tab3:checked ~ #tab3_content,
#tab4:checked ~ #tab4_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.topRecruitment__tabs input:checked + .tab_item {
  background-color: #9cd81c;
  border: 1px solid #9cd81c;
}

.topRecruitment__item {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.topRecruitment__itemTitle {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding: 28px 56px 28px 16px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .topRecruitment__itemTitle {
    font-size: 1.6rem;
  }
}
.topRecruitment__itemTitle::after {
  position: absolute;
  content: "";
  background-image: url("../img/common/green-plus.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 38px;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .topRecruitment__itemTitle::after {
    width: 24px;
    height: 24px;
  }
}

.topRecruitment__itemContent {
  display: none;
}

.topRecruitment__table {
  border-collapse: collapse;
  width: 100%;
}

.topRecruitment__tableLine {
  border-bottom: 1px solid #f8e351;
}
.topRecruitment__tableLine:last-child {
  border-bottom: none;
}

.topRecruitment__tableTitle {
  font-size: 1.5rem;
  color: #3a3937;
  font-weight: bold;
  width: 174px;
  padding: 0 20px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .topRecruitment__tableTitle {
    display: block;
    padding: 11px 20px;
  }
}

.topRecruitment__tableContent {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .topRecruitment__tableContent {
    display: block;
    padding-top: 0;
  }
}

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

.topRecruitment__typeList {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.topRecruitment__typeLabel {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  width: 80px;
  padding: 3.5px;
  text-align: center;
}

.topRecruitment__typeLabel--green {
  background-color: #1ea469;
}

.topRecruitment__typeLabel--yellow {
  background-color: #fed86c;
}

.topRecruitment__typeNote {
  font-size: 1.3rem;
  color: #3a3937;
}

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

.topRecruitment__tableText {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
}

/* モーダル本体 */
.recruitModal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  display: flex; /* ← 中央寄せのためにflex */
  align-items: center;
  justify-content: center;
}

.recruitModal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 背景 */
.recruitModal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0.001;
  transition: opacity 0.25s ease;
}

.recruitModal.is-open .recruitModal__overlay {
  opacity: 1;
}

/* ダイアログ部分 */
.recruitModal__dialog {
  position: relative;
  z-index: 1;
  max-width: 1026px;
  width: 90%;
  max-height: 85vh; /* ← モーダルの高さ制限 */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s;
  display: flex;
  flex-direction: column; /* ← 中のスクロール領域を縦並び */
  height: 544px;
}
@media screen and (max-width: 768px) {
  .recruitModal__dialog {
    height: 625px;
  }
}

.recruitModal.is-open .recruitModal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* タイトル部分 */
.recruitModal__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
}

.recruitModal__body {
  flex: 1;
  padding: 16px 8px;
  overflow-y: auto;
  scrollbar-width: none;
}

/* 閉じるボタン */
.recruitModal__close {
  position: absolute;
  top: -11px;
  right: -42px;
  background: none;
  border: none;
  font-size: 50px;
  cursor: pointer;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .recruitModal__close {
    top: -50px;
    right: 0;
  }
}

body.no-scroll {
  overflow: hidden;
}

/** @format */
.topFlow__contents {
  padding: 60px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .topFlow__contents {
    gap: 32px;
    padding: 50px 20px 80px;
  }
}

.topFlow__about {
  display: flex;
  gap: 30px;
  max-width: 814px;
  margin: 0 auto;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .topFlow__about {
    flex-direction: column;
    gap: 15px;
  }
}

.topFlow__aboutLeft {
  padding: 40px;
  border: 5px solid #1ea469;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .topFlow__aboutLeft {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .topFlow__aboutLeft {
    padding: 20px;
    gap: 16px;
  }
}

.topFlow__aboutTitle {
  font-size: 2.4rem;
  font-weight: bold;
  color: #1ea469;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .topFlow__aboutTitle {
    font-size: 1.6rem;
  }
}

.topFlow__aboutImg {
  max-width: 132px;
  width: 100%;
  margin: 0 auto;
}

.topFlow__aboutRight {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 480px) {
  .topFlow__aboutRight {
    gap: 15px;
  }
}

.topFlow__aboutGreen {
  font-size: 1.8rem;
  color: #1ea469;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .topFlow__aboutGreen {
    font-size: clamp(1.6rem, 1.7578125vw, 1.8rem);
  }
}
@media screen and (max-width: 768px) {
  .topFlow__aboutGreen {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .topFlow__aboutGreen {
    font-size: 1.6rem;
  }
}
.topFlow__aboutGreen br {
  display: block;
}
@media screen and (max-width: 768px) {
  .topFlow__aboutGreen br {
    display: none;
  }
}

.topFlow__aboutText {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 480px) {
  .topFlow__aboutText {
    font-size: 1.4rem;
  }
}

.topFlow__aboutNote {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .topFlow__aboutNote {
    font-size: 1.3rem;
  }
}

.topFlow__arrow {
  width: 50px;
  margin: 0 auto;
}

.topFlow__flow {
  display: flex;
  gap: 28.5px;
  max-width: 814px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .topFlow__flow {
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .topFlow__flow {
    flex-direction: column;
    gap: 32px;
    max-width: none;
    width: 100%;
  }
}

.topFlow__flowItem {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .topFlow__flowItem {
    flex: none;
  }
}

.topFlow__flowNum {
  font-size: 12rem;
  font-weight: 900;
  color: #1ea469;
}
@media screen and (max-width: 768px) {
  .topFlow__flowNum {
    font-size: 8rem;
  }
}

.topFlow__flowTitle {
  font-size: 2.4rem;
  font-weight: bold;
  color: #1ea469;
  padding: 8px;
  border: 5px solid #1ea469;
  border-radius: 15px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .topFlow__flowTitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .topFlow__flowTitle {
    font-size: 1.8rem;
    padding: 10px;
  }
}

.topFlow__flowImg {
  max-width: 132px;
  width: 100%;
}

.topFlow__flowText {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: 500;
  text-align: center;
}
.topFlow__flowText br {
  display: none;
}
@media screen and (max-width: 768px) {
  .topFlow__flowText br {
    display: block;
  }
}

.topFlow__flowArrow {
  transform: rotate(-90deg);
  width: 50px;
  margin: 35px auto 0;
}
@media screen and (max-width: 768px) {
  .topFlow__flowArrow {
    transform: none;
  }
}/*# sourceMappingURL=works.css.map */