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

.topfv {
  position: relative;
}

.topfv__video {
  width: 100%;
}

.topfv__catchcopy {
  position: absolute;
  left: 0;
  bottom: -80px;
  background: rgba(30, 164, 105, 0.8);
  padding: 16px 16px 16px 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 0 15px 15px 0;
}
@media screen and (max-width: 1024px) {
  .topfv__catchcopy {
    padding: 1.5625vw 1.5625vw 1.5625vw 9.765625vw;
  }
}
@media screen and (max-width: 768px) {
  .topfv__catchcopy {
    padding: 16px 8px 16px 20px;
    bottom: -30px;
  }
}
@media screen and (max-width: 480px) {
  .topfv__catchcopy {
    padding: 3.3333333333vw 1.6666666667vw 3.3333333333vw 4.1666666667vw;
    bottom: -40px;
  }
}

.topfv__catchcopyTitle {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .topfv__catchcopyTitle {
    font-size: 3.90625vw;
  }
}
@media screen and (max-width: 768px) {
  .topfv__catchcopyTitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .topfv__catchcopyTitle {
    font-size: 5vw;
  }
}

.topfv__catchcopyText {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .topfv__catchcopyText {
    font-size: 1.953125vw;
  }
}
@media screen and (max-width: 768px) {
  .topfv__catchcopyText {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .topfv__catchcopyText {
    font-size: 3.3333333333vw;
  }
}

/** @format */
.topPortrait {
  background-image: url("../img/common/clover.png");
  background-repeat: no-repeat;
  background-size: min(30.9027777778vw, 445px);
  background-position: top right 50px;
}
@media screen and (max-width: 480px) {
  .topPortrait {
    background-size: min(41.6666666667vw, 200px);
    background-position: top right;
  }
}

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

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

.topPortrait__messageText {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .topPortrait__messageText {
    font-size: 1.4rem;
  }
}

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

.topPortrait__item {
  display: flex;
  gap: 40px;
  align-items: center;
}
.topPortrait__item:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .topPortrait__item:nth-child(odd) {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .topPortrait__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .topPortrait__item {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 32px;
  }
}

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

.topPortrait__img {
  max-width: 280px;
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .topPortrait__img {
    max-width: clamp(150px, 19vw, 250px);
  }
}
@media screen and (max-width: 768px) {
  .topPortrait__img {
    max-width: none;
    width: calc(50% - 10px);
  }
}

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

.topPortrait__itemLabel {
  font-size: clamp(1.8rem, 1.3888888889vw, 2rem);
  color: #fff;
  font-weight: bold;
  background-color: #1ea469;
  padding: 10px clamp(10px, 0.9vw, 20px);
  border-radius: 5px;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .topPortrait__itemLabel {
    padding: 10px 20px;
  }
}

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

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

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

.topPortrait__newShapes {
  display: grid;
  grid-template-columns: repeat(2, 172px);
  column-gap: 40px;
  row-gap: 0;
  justify-content: center;
  width: auto;
}
@media screen and (max-width: 480px) {
  .topPortrait__newShapes {
    column-gap: normal;
  }
}

.topPortrait__newCircle {
  background-color: #1ea469;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (max-width: 480px) {
  .topPortrait__newCircle {
    width: 150px;
    height: 150px;
  }
}
.topPortrait__newCircle:nth-child(1) {
  grid-column: 1/-1;
  justify-self: center;
}
.topPortrait__newCircle:hover {
  background-color: #9cd81c;
}

.topPortrait__newCircleText {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

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

.topPortrait__newDetailsTitle {
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .topPortrait__newDetailsTitle {
    font-size: 1.8rem;
  }
}

.topPortrait__newDetailsText {
  font-size: 1.6rem;
  font-weight: bold;
  color: #3a3937;
  line-height: 1.8;
}

.portraitDetail {
  padding: 24px 98px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .portraitDetail {
    padding: 4px 12px;
    gap: 20px;
    height: 100%;
    overflow-y: hidden;
  }
}

.portraitDetail__title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #1ea469;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .portraitDetail__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .portraitDetail__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .portraitDetail__title {
    font-size: 2rem;
  }
}
.portraitDetail__title br {
  display: none;
}
@media screen and (max-width: 768px) {
  .portraitDetail__title br {
    display: block;
  }
}

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

.portraitDetail__heading {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  max-width: 350px;
  width: 100%;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .portraitDetail__heading {
    max-width: none;
    padding-bottom: 0;
  }
}

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

.portraitDetail__headingTopImg {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.portraitDetail__headingTopListItem {
  font-size: 1.4rem;
  color: #8fc31f;
  font-weight: 500;
}

.portraitDetail__headingTopText {
  font-size: 1.4rem;
  color: #8fc31f;
  font-weight: 500;
}

.portraitDetail__contents iframe {
  width: 100%;
  height: 203px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .portraitDetail__contents iframe {
    max-width: 350px;
    margin: 0 auto;
  }
}

.portraitDetail__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  overflow-y: auto;
  height: 400px;
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  .portraitDetail__info {
    height: 250px;
  }
}

.portraitDetail__infoText {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: bold;
  line-height: 1.8;
}

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

.portraitDetail__infoItemTitle {
  font-size: 1.6rem;
  color: #1ea469;
  font-weight: bold;
  border-bottom: 2px solid #1ea469;
  line-height: 1.8;
}

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

.recruitModal__dialog:has(.portraitDetail__first) {
  height: 684px;
}
.recruitModal__dialog:has(.portraitDetail__first) .portraitDetail__contents {
  overflow-y: auto;
  scrollbar-width: none;
  height: 550px;
}
.recruitModal__dialog:has(.portraitDetail__first) .portraitDetail__info {
  overflow-y: unset;
}
.recruitModal__dialog:has(.portraitDetail__first) .portraitDetail__info .portraitDetail__infoItem:last-child {
  padding-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .recruitModal__dialog:has(.portraitDetail__first) .portraitDetail__contents {
    overflow-y: auto;
    scrollbar-width: none;
  }
}

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

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

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

.topCase__title {
  text-align: left;
}

.topCase__text {
  font-size: 1.6rem;
  font-weight: bold;
}

.topCase__btn {
  background-color: #1ea469;
  max-width: 380px;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 30px;
  color: #fff;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: bold;
  margin-left: auto;
  transition: all 0.2s;
}
@media screen and (max-width: 480px) {
  .topCase__btn {
    max-width: 250px;
    height: 65px;
  }
}
.topCase__btn::after {
  content: "";
  background-image: url("../img/pages/front-page/other-window.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.topCase__btn:hover {
  background-color: #9cd81c;
}

.topCase__img {
  max-width: 493px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .topCase__img {
    width: 100%;
  }
}

.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;
  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);
}

.recruitModal__dialog {
  position: relative;
  z-index: 1;
  max-width: 1026px;
  width: 90%;
  max-height: 85vh;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.recruitModal__body {
  max-height: 85vh;
  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;
}

body.no-scroll {
  overflow: hidden;
}

/** @format */
.topInterview__contents {
  padding: 0 0 120px;
}
@media screen and (max-width: 480px) {
  .topInterview__contents {
    padding: 0 0 80px;
  }
}

.topInterview__slider {
  display: flex;
}
@media screen and (max-width: 768px) {
  .topInterview__slider {
    margin-left: 10.6666666667vw;
  }
}

.topInterview__card {
  box-shadow: -7px 7px 7px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin: 0 20px;
}
@media screen and (max-width: 1280px) {
  .topInterview__card {
    margin: 0 15px;
  }
}
@media screen and (max-width: 1024px) {
  .topInterview__card {
    margin: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .topInterview__card {
    margin: 0 5.3333333333vw;
    width: 58.6666666667vw;
  }
}

.topInterview__cardImg {
  width: 100%;
}

.topInterview__cardHeading {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  padding: 10px;
  justify-content: center;
  border-radius: 0 0 15px 15px;
}
@media screen and (max-width: 768px) {
  .topInterview__cardHeading {
    flex-direction: column;
    gap: 10px;
  }
}

.topInterview__cardHeadingBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.topInterview__cardPosition {
  font-size: 1.6rem;
  color: #1ea469;
  font-weight: bold;
  text-align: center;
  letter-spacing: -1px;
}
@media screen and (max-width: 1750px) {
  .topInterview__cardPosition {
    font-size: clamp(1.5rem, 0.9142857143vw, 1.6rem);
  }
}
@media screen and (max-width: 1280px) {
  .topInterview__cardPosition {
    font-size: clamp(1rem, 0.9vw, 1.6rem);
  }
}
@media screen and (max-width: 1024px) {
  .topInterview__cardPosition {
    font-size: clamp(1.2rem, 1.5625vw, 1.6rem);
  }
}
@media screen and (max-width: 768px) {
  .topInterview__cardPosition {
    font-size: 1.6rem;
  }
}

.topInterview__cardJoin {
  font-size: 1.4rem;
  color: #3a3937;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .topInterview__cardJoin {
    font-size: clamp(1rem, 1.09375vw, 1.4rem);
  }
}
@media screen and (max-width: 1024px) {
  .topInterview__cardJoin {
    font-size: 1.4rem;
  }
}

.topInterview__plus {
  width: 38px;
  height: 38px;
}

.slick-track {
  padding-top: 40px;
  padding-bottom: 40px;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: #8fc31f;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .slide-arrow {
    width: 50px;
    height: 50px;
  }
}

.prev-arrow {
  left: 16vw;
}
@media screen and (max-width: 1024px) {
  .prev-arrow {
    left: 17vw;
  }
}
@media screen and (max-width: 768px) {
  .prev-arrow {
    right: 9vw;
    left: auto;
  }
}
.prev-arrow::before {
  content: "";
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  position: absolute;
  top: 50%;
  left: 42%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%) rotate(-135deg);
}

@media screen and (min-width: 1441px) {
  .prev-arrow {
    left: 11vw;
  }
}
@media screen and (min-width: 1750px) {
  .prev-arrow {
    left: 8.3vw;
  }
}
.next-arrow {
  right: 16vw;
}
@media screen and (max-width: 1024px) {
  .next-arrow {
    right: 17vw;
  }
}
@media screen and (max-width: 768px) {
  .next-arrow {
    left: -4.5vw;
    right: auto;
  }
}
.next-arrow::before {
  content: "";
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  position: absolute;
  top: 50%;
  right: 42%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 1441px) {
  .next-arrow {
    right: 11vw;
  }
}
@media screen and (min-width: 1750px) {
  .next-arrow {
    right: 8.3vw;
  }
}
.topInterview__ratioWrapper {
  padding: 0 40px;
}
@media screen and (max-width: 480px) {
  .topInterview__ratioWrapper {
    padding: 0 20px;
  }
}

.topInterview__ratio {
  background-color: #1ea469;
  padding: 40px 80px;
  border-radius: 15px;
  max-width: 814px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .topInterview__ratio {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 480px) {
  .topInterview__ratio {
    gap: 20px;
    padding: 20px;
  }
}

.topInterview__ratioTitle {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

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

.topInterview__ratioItemTitle {
  background-color: #fff;
  color: #1ea469;
  padding: 10.5px;
  border-radius: 15px;
  font-size: 1.6rem;
  font-weight: bold;
  width: 107px;
  text-align: center;
  line-height: 1.2;
}

.topInterview__ratioItemImg {
  width: calc(100% - 123px);
}
@media screen and (max-width: 768px) {
  .topInterview__ratioItemImg {
    width: 100%;
  }
}

.interviewDetail {
  padding: 24px 98px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .interviewDetail {
    padding: 4px 12px;
    gap: 20px;
    overflow-y: hidden;
    height: 100%;
  }
}

.interviewDetail__title {
  font-size: 1.8rem;
  color: #3a3937;
  text-align: center;
  font-weight: bold;
}

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

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

.interviewDetail__img {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .interviewDetail__img {
    max-width: none;
  }
}

.interviewDetail__greentext {
  font-size: 1.6rem;
  color: #1ea469;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .interviewDetail__greentext {
    font-size: 1.5rem;
  }
}

.interviewDetail__text {
  font-size: 1.4rem;
  color: #3a3937;
  text-align: center;
}

.interviewDetail__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 424px;
  width: 100%;
  overflow-y: auto;
  height: 400px;
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  .interviewDetail__info {
    max-width: none;
    height: 250px;
  }
}

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

.interviewDetail__question {
  font-size: 1.6rem;
  color: #1ea469;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .interviewDetail__question {
    font-size: 1.5rem;
  }
}

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

/** @format */
.topData__contents {
  padding: 0 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.topData__two {
  display: flex;
  border-top: 1px solid #1ea469;
}
@media screen and (max-width: 768px) {
  .topData__two {
    flex-direction: column;
    border-top: none;
  }
}
.topData__two:last-child {
  border-bottom: 1px solid #1ea469;
}
@media screen and (max-width: 768px) {
  .topData__two:last-child {
    border-bottom: none;
  }
}

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

.topData__two:first-child .topData__twoItem {
  border-top: none;
}
.topData__two:last-child .topData__twoItem:last-child {
  border-bottom: none;
}

.topData__detailsTitle {
  font-size: 2rem;
  color: #3a3937;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.topData__twoHeading {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .topData__twoHeading {
    gap: clamp(5px, 2.0833333333vw, 10px);
  }
}

.topData__twoHeadingVer {
  height: 144px;
}
@media screen and (max-width: 1024px) {
  .topData__twoHeadingVer {
    flex-direction: column-reverse;
  }
}

.topData__twoHeadingImg {
  width: 100%;
}

.topData__img1 {
  max-width: 140px;
}

.topData__img2 {
  max-width: 115px;
}

.topData__img3 {
  max-width: 161px;
}
@media screen and (max-width: 480px) {
  .topData__img3 {
    max-width: 33.5416666667vw;
  }
}

.topData__img4 {
  max-width: 161px;
}
@media screen and (max-width: 1024px) {
  .topData__img4 {
    max-width: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .topData__img4 {
    max-width: 161px;
  }
}
@media screen and (max-width: 480px) {
  .topData__img4 {
    max-width: 33.5416666667vw;
  }
}

.topData__twoHeadingTextBox {
  display: flex;
  flex-direction: column;
}

.topData__twoHeadingSubtext {
  font-size: 2rem;
  color: #1ea469;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .topData__twoHeadingSubtext {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .topData__twoHeadingSubtext {
    font-size: clamp(1.2rem, 3.3333333333vw, 1.6rem);
  }
}

.topData__twoHeadingText {
  font-size: 2rem;
  color: #1ea469;
  font-weight: 900;
  line-height: 0.8;
}
.topData__twoHeadingText .topData__twoHeadingText--big {
  font-size: clamp(10rem, 8.3333333333vw, 12rem);
}
@media screen and (max-width: 1024px) {
  .topData__twoHeadingText .topData__twoHeadingText--big {
    font-size: 8rem;
  }
}
@media screen and (max-width: 480px) {
  .topData__twoHeadingText .topData__twoHeadingText--big {
    font-size: clamp(6rem, 16.6666666667vw, 8rem);
  }
}

.topData__detailsText {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: 500;
  text-align: center;
}

.topData__three {
  display: flex;
  border-top: 1px solid #1ea469;
}
@media screen and (max-width: 768px) {
  .topData__three {
    flex-direction: column;
    border-top: none;
  }
}

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

.topData__threeHeading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .topData__threeHeading {
    gap: clamp(5px, 2.0833333333vw, 10px);
  }
}

.topData__threeHeadingText {
  font-size: 2rem;
  color: #1ea469;
  font-weight: 900;
  line-height: 1.2;
}

.topData__threeHeadingText--big {
  font-size: clamp(10rem, 8.3333333333vw, 12rem);
}
@media screen and (max-width: 1024px) {
  .topData__threeHeadingText--big {
    font-size: 8rem;
  }
}
@media screen and (max-width: 480px) {
  .topData__threeHeadingText--big {
    font-size: clamp(6rem, 16.6666666667vw, 8rem);
  }
}

.topData__threeHeadingImg {
  width: 100%;
  height: 115px;
  object-fit: contain;
}

/** @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__container {
  max-width: 830px;
  width: 100%;
  margin: 0 auto;
}

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

.topRecruitment__itemTitle {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding: 28px 0px 28px 16px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .topRecruitment__itemTitle {
    font-size: 1.6rem;
  }
}
.topRecruitment__itemTitle {
  /* デフォルトはプラス画像 */
}
.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__item.is-open .topRecruitment__itemTitle::after {
  background-image: none;
  width: 28.5px;
  height: 2px;
  background-color: #fff;
  right: 13px;
}
@media screen and (max-width: 768px) {
  .topRecruitment__item.is-open .topRecruitment__itemTitle::after {
    width: 18px;
  }
}

.topRecruitment__itemContent {
  display: none;
  background-color: #fff;
}

.topRecruitment__link {
  position: relative;
  padding: 29px 13px;
  display: flex;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid #1ea469;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .topRecruitment__link {
    padding: 40px 40px 23px 8px;
  }
}
.topRecruitment__link::after {
  position: absolute;
  content: "";
  background-image: url("../img/common/white-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__link::after {
    width: 24px;
    height: 24px;
    top: 34px;
    transform: none;
  }
}

.topRecruitment__list:last-child .topRecruitment__link {
  border-bottom: 0;
}

.topRecruitment__linkText {
  font-size: 1.8rem;
  color: #1ea469;
  font-weight: bold;
  max-width: 335px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .topRecruitment__linkText {
    font-size: 1.5rem;
  }
}

.topRecruitment__linkLabel {
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
  padding: 4.5px;
  width: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .topRecruitment__linkLabel {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.green-label {
  background-color: #9cd81c;
}

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

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

.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;
  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;
  transition: opacity 0.25s ease;
}

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

/* モーダル本体 */
.recruitModal__dialog {
  position: relative;
  z-index: 1;
  max-width: 1026px;
  width: 90%;
  height: 544px;
  max-height: 85vh;
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.28s;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .recruitModal__dialog {
    height: 625px;
  }
}

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

/* 中身 */
.recruitModal__body {
  flex: 1;
  overflow-x: visible;
  overflow-y: auto;
  padding: 16px 8px;
  scrollbar-width: none;
}

/* 閉じるボタン */
.recruitModal__close {
  position: absolute;
  top: -11px;
  right: -42px;
  background: none;
  border: none;
  font-size: 50px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}
@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;
  }
}

/** @format */
.topFixedbanner {
  position: fixed;
  top: 300px;
  bottom: 0px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  overflow-y: auto;
  scrollbar-width: none;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .topFixedbanner {
    top: 250px;
  }
}

.topFixedbanner__item {
  border-radius: 20px;
  box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 11px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media screen and (max-width: 768px) {
  .topFixedbanner__item {
    padding: 5px 10px;
    gap: 4px;
  }
}

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

.topFixedbanner__item--yellowgreen {
  background-color: #9cd81c;
}

.topFixedbanner__title {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .topFixedbanner__title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .topFixedbanner__titleSP {
    display: none;
  }
}

.topFixedbanner__img {
  max-width: 260px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topFixedbanner__img {
    max-width: 140px;
  }
}

/** @format */
.topNews__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 120px 40px 120px;
  max-width: 1000px;
}
@media screen and (max-width: 480px) {
  .topNews__contents {
    gap: 16px;
  }
}

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

.topNews__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .topNews__card {
    flex-direction: row;
    width: 100%;
  }
}

.topNews__cardImg {
  width: 100%;
  height: 192px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .topNews__cardImg {
    max-width: 120px;
    height: 83px;
  }
}

.topNews__cardTextbox {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.topNews__cardTitle {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .topNews__cardTitle {
    font-size: 1.4rem;
  }
}

.topNews__btn {
  background-color: #1ea469;
  max-width: 380px;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 30px;
  color: #fff;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 auto;
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .topNews__btn {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .topNews__btn {
    max-width: 250px;
    height: 65px;
  }
}
.topNews__btn::after {
  content: "";
  background-image: url("../img/pages/front-page/other-window.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.topNews__btn:hover {
  background-color: #9cd81c;
}

.topNews__details:has(.topNews__empty) {
  justify-content: center;
}

.topNews__empty {
  font-size: 1.6rem;
  text-align: center;
}/*# sourceMappingURL=front-page.css.map */