* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
::after,
::before {
  border-width: 0;
  border-style: solid;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
menu,
ol,
ul {
  list-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
[hidden] {
  display: none !important;
}
body,
html {
  overflow-x: clip;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 150%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  flex-direction: column;
  align-items: center;
  padding-top: var(--top-sticky-header-height);
}
img {
  height: auto;
  display: block;
}
article,
body,
div,
footer,
form,
header,
img,
label,
li,
nav,
section,
ul {
  position: relative;
  display: flex;
  max-width: 100%;
}

main {
  width: 100%;
}

:root {
  --top-sticky-header-height: 80px;
  --top-sticky-admin-offset: 0px;
  --top-sticky-anchor-offset: 96px;
}

body.admin-bar {
  --top-sticky-admin-offset: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    --top-sticky-admin-offset: 46px;
  }
}

.top-page,
.section-anchor,
.about-section,
.stats-section,
.extra-flow-section,
.jobs-section,
.news-section,
.post-section {
  scroll-margin-top: calc(
    var(--top-sticky-anchor-offset) + var(--top-sticky-admin-offset)
  );
}

.top-sticky-header {
  position: fixed;
  top: var(--top-sticky-admin-offset);
  left: 0;
  z-index: 10010;
  width: 100%;
  height: var(--top-sticky-header-height);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.top-sticky-header-logo {
  width: 185px;
  height: auto;
  display: flex;
  align-items: center;
}

.top-sticky-header-logo img {
  width: 100%;
  height: auto;
}

.top-sticky-header-cta {
  min-width: 285px;
  height: 48px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #2db7af;
  color: #fff;
  font-family: Noto Sans JP;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 2px 5.2px 0 rgba(82, 82, 82, 0.25);
}

.top-sticky-header-cta:hover {
  opacity: 0.85;
}

.top-sticky-header-menu-button,
.top-sticky-header-nav {
  display: none;
}

@media screen and (max-width: 540px) {
  .top-sticky-header {
    padding: 0 18px;
  }

  .top-sticky-header-logo {
    width: 150px;
  }

  .top-sticky-header-cta {
    min-width: 104px;
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
}

@media screen and (max-width: 680px) {
  .top-sticky-header {
    z-index: 10010;
  }

  .top-sticky-header-cta {
    display: none;
  }

  .top-sticky-header-menu-button {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .top-sticky-header-menu-button span {
    position: absolute;
    left: 12px;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #2db7af;
    transition:
      transform 0.28s ease,
      opacity 0.2s ease,
      top 0.28s ease;
  }

  .top-sticky-header-menu-button span:nth-child(1) {
    top: 16px;
  }

  .top-sticky-header-menu-button span:nth-child(2) {
    top: 23px;
  }

  .top-sticky-header-menu-button span:nth-child(3) {
    top: 30px;
  }

  .top-sticky-header-menu-button.is-open span:nth-child(1) {
    top: 23px;
    transform: rotate(45deg);
  }

  .top-sticky-header-menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .top-sticky-header-menu-button.is-open span:nth-child(3) {
    top: 23px;
    transform: rotate(-45deg);
  }

  .top-sticky-header-nav {
    position: fixed;
    top: calc(var(--top-sticky-header-height) + var(--top-sticky-admin-offset));
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10009;
    width: 100%;
    height: calc(
      100dvh - var(--top-sticky-header-height) - var(--top-sticky-admin-offset)
    );
    max-width: none;
    padding: 28px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    box-shadow: -4px 12px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      transform 0.32s ease,
      opacity 0.24s ease,
      visibility 0.24s ease;
  }

  .top-sticky-header-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .top-sticky-header-nav-link,
  .top-sticky-header-nav-cta {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    font-family: Noto Sans JP;
    font-weight: 700;
    text-decoration: none;
  }

  .top-sticky-header-nav-link {
    padding: 0 4px;
    border-bottom: 1px solid rgba(45, 183, 175, 0.18);
    color: #191919;
    font-size: 17px;
  }

  .top-sticky-header-nav-cta {
    height: 52px;
    margin-top: 20px;
    justify-content: center;
    border-radius: 5px;
    background: #2db7af;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 2px 5.2px 0 rgba(82, 82, 82, 0.25);
  }
}

a {
  position: relative;
  display: flex;
  --tw-bg-opacity: 1;
  color: initial;
  text-decoration: none;
}
.material-icon-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

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

  .sp {
    display: block;
  }
}

.material-icons-1 {
  font-family: "Material Icons Outlined";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 100%;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
  visibility: hidden;
}
.fonts-loaded .material-icons-1 {
  visibility: visible;
}
.flex {
  display: flex;
}
.space-x-2,
.space-y-2 {
  gap: 0.5rem;
}
.w-500 {
  width: 500px;
}
.flex-col {
  flex-direction: column;
}
.gap-4 {
  gap: 1rem;
}
.card {
  width: 500px;
  max-width: 500px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  flex-direction: column;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 100%;
}
.required {
  color: #ef4444;
  margin-left: 4px;
}
.error-message {
  display: none;
  color: #ef4444;
  font-size: 14px;
  margin-top: 4px;
}
input:invalid:not(:placeholder-shown) + .error-message,
textarea:invalid:not(:placeholder-shown) + .error-message {
  display: block;
}
.image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  border-radius: inherit;
}
#snackbar {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: auto;
  max-width: 420px;
  background-color: #09090b;
  color: #fafafa;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 142.857%;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: block !important;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(calc(100% + 16px));
  transition:
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#snackbar.show {
  opacity: 1;
  transform: translateY(0);
}
#snackbar.error {
  background-color: #dc2626;
}
.fixed {
  position: fixed;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.z-50 {
  z-index: 50;
}
.z-\[100\] {
  z-index: 100;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.bg-black {
  background-color: #000;
}
.bg-opacity-10 {
  background-color: rgba(0, 0, 0, 0.1);
}
.bg-opacity-50 {
  background-color: rgba(0, 0, 0, 0.5);
}
.rounded-0 {
  border-radius: 0;
}
.rounded-\[26px\] {
  border-radius: 26px;
}
.rounded-none {
  border-radius: 0;
}
.p-0 {
  padding: 0 !important;
}
.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.shadow-none {
  box-shadow: none;
}
.w-full {
  width: 100%;
}
.load-more-button {
  border-radius: 49px;
  width: 200px;
  height: fit-content;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-right: 8px;
  margin-left: 8px;
  border: 1px solid #4361ff;
  background: #fff;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: #4361ff;
  cursor: pointer;
}
.relative {
  position: relative;
}
.bg-gray {
  --tw-bg-opacity: 1;
  background-color: rgb(217 217 217 / var(--tw-bg-opacity, 1));
}
.cursor-pointer {
  cursor: pointer;
}
.link-with-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.blocknote-content {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 150%;
  color: #3d3d3d;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.blocknote-content > div {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}
.blocknote-content h1,
.blocknote-content h2,
.blocknote-content h3 {
  font-weight: 600;
  line-height: 120%;
  margin: 0.75rem 0 0.25rem;
  display: flex;
}
.blocknote-content h1 {
  font-size: 2rem;
}
.blocknote-content h2 {
  font-size: 1.5rem;
}
.blocknote-content h3 {
  font-size: 1.25rem;
}
.blocknote-content p {
  min-height: 1.5em;
  display: flex;
  width: 100%;
}
.blocknote-content [data-text-align="left"],
.blocknote-content [data-text-alignment="left"] {
  text-align: left;
  justify-content: flex-start;
}
.blocknote-content [data-text-align="center"],
.blocknote-content [data-text-alignment="center"] {
  text-align: center;
  justify-content: center;
  width: 100%;
}
.blocknote-content [data-text-align="right"],
.blocknote-content [data-text-alignment="right"] {
  text-align: right;
  justify-content: flex-end;
}
.blocknote-content [data-text-align="justify"],
.blocknote-content [data-text-alignment="justify"] {
  text-align: justify;
}
.blocknote-content p > * {
  width: 100%;
}
.blocknote-content p[data-text-alignment="center"] > * {
  text-align: center;
  display: flex;
  justify-content: center;
}
.blocknote-content strong {
  font-weight: 600;
}
.blocknote-content em {
  font-style: italic;
}
.blocknote-content u {
  text-decoration: underline;
}
.blocknote-content s {
  text-decoration: line-through;
}
.blocknote-content code {
  background: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: monospace;
}
.blocknote-content a {
  color: #07c;
  text-decoration: underline;
  cursor: pointer;
}
.blocknote-content a:hover {
  color: #049;
}
.blocknote-content ol {
  counter-reset: item;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.blocknote-content ol > li {
  display: flex;
  align-items: flex-start;
  margin: 0.25rem 0;
  line-height: 150%;
}
.blocknote-content ol > li::before {
  content: counter(item) ".";
  counter-increment: item;
  margin-right: 0.5rem;
  font-weight: 500;
}
.blocknote-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.blocknote-content ul > li {
  margin: 0.25em 0;
}
.blocknote-content ul > li > p {
  display: list-item !important;
}
.blocknote-content ul ul {
  list-style-type: circle;
}
.blocknote-content ul ul ul {
  list-style-type: square;
}
.blocknote-content blockquote {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid #e2e8f0;
  color: #4a5568;
}
.blocknote-content table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}
.blocknote-content td,
.blocknote-content th {
  border: 1px solid #e2e8f0;
  padding: 0.3rem;
  min-width: 2rem;
  vertical-align: top;
}
.blocknote-content th {
  background-color: #f8fafc;
  font-weight: 600;
}
.blocknote-content td p {
  margin: 0;
  word-break: break-word;
  display: flex;
  flex-direction: column;
}
.blocknote-content tr {
  display: table-row;
}
.blocknote-content td > * {
  margin: 0;
}
.blocknote-content td span[data-text-color],
.blocknote-content td strong {
  display: inline-block;
}
.blocknote-content td br + br {
  display: block;
  content: "";
  margin-top: 1em;
}
.blocknote-content td [data-text-color="gray"] {
  color: #6b7280;
}
.blocknote-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0.5rem 0;
}
.blocknote-content img[data-text-alignment="center"] {
  margin: 0.5rem auto;
}
.blocknote-content [data-content-type="image"] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.blocknote-content [data-text-color="red"] {
  color: #dc2626;
}
.blocknote-content [data-text-color="orange"] {
  color: #ea580c;
}
.blocknote-content [data-text-color="yellow"] {
  color: #ca8a04;
}
.blocknote-content [data-text-color="green"] {
  color: #16a34a;
}
.blocknote-content [data-text-color="blue"] {
  color: #2563eb;
}
.blocknote-content [data-text-color="purple"] {
  color: #7c3aed;
}
.blocknote-content [data-text-color="pink"] {
  color: #db2777;
}
.blocknote-content [data-background-color="red"] {
  background-color: #fee2e2;
}
.blocknote-content [data-background-color="orange"] {
  background-color: #ffedd5;
}
.blocknote-content [data-background-color="yellow"] {
  background-color: #fef3c7;
}
.blocknote-content [data-background-color="green"] {
  background-color: #dcfce7;
}
.blocknote-content [data-background-color="blue"] {
  background-color: #dbeafe;
}
.blocknote-content [data-background-color="purple"] {
  background-color: #f3e8ff;
}
.blocknote-content [data-background-color="pink"] {
  background-color: #fce7f3;
}
.blocknote-content [data-font-size="small"] {
  font-size: 0.875rem;
}
.blocknote-content [data-font-size="normal"] {
  font-size: 1rem;
}
.blocknote-content [data-font-size="large"] {
  font-size: 1.25rem;
}
.blocknote-content [data-font-size="huge"] {
  font-size: 1.5rem;
}
.blocknote-content [data-line-height="compact"] {
  line-height: 120%;
}
.blocknote-content [data-line-height="normal"] {
  line-height: 150%;
}
.blocknote-content [data-line-height="relaxed"] {
  line-height: 180%;
}
.blocknote-content [data-indent="1"] {
  padding-left: 2rem;
}
.blocknote-content [data-indent="2"] {
  padding-left: 4rem;
}
.blocknote-content [data-indent="3"] {
  padding-left: 6rem;
}
.blocknote-content pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  margin: 0.5rem 0;
  width: 100%;
  display: flex;
}
.blocknote-content pre code {
  background: 0 0;
  padding: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.875rem;
  line-height: 170%;
  width: 100%;
}
.blocknote-content hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 1rem 0;
  width: 100%;
}
.blocknote-content [data-type="taskList"] {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.blocknote-content [data-checked="true"] {
  text-decoration: line-through;
  color: #6b7280;
}
.blocknote-content [data-type="taskItem"] {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.blocknote-content [data-type="callout"] {
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.blocknote-content > :not(:last-child) {
  margin-bottom: 0.25rem;
}
.blocknote-content * + * {
  margin-top: 0;
}
.blocknote-content video {
  display: block;
  height: auto;
  aspect-ratio: 16/9;
  background-color: #000;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.blocknote-content iframe[src*="youtu.be"],
.blocknote-content iframe[src*="youtube.com"] {
  display: block;
  height: auto;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 8px;
  background-color: #000;
}
.blocknote-content div[data-content-type="video"] {
  position: relative;
  width: 100%;
  margin: 1rem 0;
}
.blocknote-content audio {
  width: 100%;
  margin: 1rem 0;
  display: block;
}
.blocknote-content [data-text-color="brown"] {
  color: #92400e;
}
.blocknote-content [data-text-color="gray"] {
  color: #6b7280;
}
.blocknote-content [data-text-color="burgundy"] {
  color: #9f1239;
}
.blocknote-content [data-text-color="forest"] {
  color: #166534;
}
.blocknote-content [data-text-color="navy"] {
  color: #1e3a8a;
}
.blocknote-content [data-text-color="default"] {
  color: inherit;
}
.blocknote-content li:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-left: -1.25rem;
}
.blocknote-content input[type="checkbox"] {
  margin: 0.25rem 0.5rem 0 0;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.blocknote-content .bn-inline-content {
  display: inline;
  vertical-align: middle;
}
.blocknote-content li > p {
  margin: 0;
  flex: 1;
}
.blocknote-content li:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.close-modal {
  cursor: pointer;
}
.atomz-accordion,
.atomz-accordion-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.atomz-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  border: none;
  background: 0 0;
  text-align: left;
  font: inherit;
}
.atomz-accordion-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  flex-shrink: 0;
}
.atomz-accordion-item._isClose .atomz-accordion-icon {
  transform: rotate(180deg);
}
.atomz-accordion-panel {
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.atomz-accordion-item._isClose .atomz-accordion-panel {
  height: 0 !important;
}
.atomz-accordion-content {
  width: 100%;
}
details summary .material-icon-svg,
details summary [class*="material-icons"] {
  transition: transform 0.3s ease-out;
}
details summary .material-icon-svg.rotated,
details summary [class*="material-icons"].rotated {
  transform: rotate(180deg);
}
.atomz-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.atomz-slider .embla__container {
  display: flex;
  height: 100%;
}
.atomz-slider--vertical .embla__container {
  flex-direction: column;
}
.atomz-slider .embla__slide {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.atomz-slider--fade .embla__container {
  display: grid;
}
.atomz-slider--fade .embla__slide {
  grid-area: 1/1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.atomz-slider--fade .embla__slide--active {
  opacity: 1;
  pointer-events: auto;
}
.atomz-slider .embla-button-next,
.atomz-slider .embla-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.atomz-slider .embla-button-prev {
  left: 10px;
}
.atomz-slider .embla-button-next {
  right: 10px;
}
.atomz-slider .embla-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  z-index: 10;
}
.atomz-slider .embla-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  padding: 0;
  margin: 0 4px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.5;
  transition:
    opacity 0.2s,
    background 0.2s;
}
.atomz-slider .embla-dot--active {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
}

/* CTA cards */
.cta-grid {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  z-index: 0;
  width: 1340px;
  height: auto;
  row-gap: 26px;
  column-gap: 26px;
}

.cta-card {
  display: flex;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  z-index: 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  overflow: hidden;
}

.cta-card:nth-child(2) {
  flex-direction: row-reverse;
}

.cta-img {
  display: block;
  flex: 0 0 30%;
  max-width: 30%;
  align-self: stretch;
  z-index: 0;
  width: 30%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

.cta-body {
  display: flex;
  flex: 1;
  min-width: 0;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 0;
  row-gap: 30px;
  column-gap: 30px;
  padding: 28px 38px;
}

.cta-card-hire .cta-body {
  row-gap: 33px;
  column-gap: 33px;
  padding: 28px 28px 38px 38px;
}

.cta-head,
.cta-copy {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 0;
}

.cta-head {
  row-gap: 17px;
  column-gap: 17px;
}

.cta-copy {
  row-gap: 12px;
  column-gap: 12px;
}

.cta-card-hire .cta-copy {
  row-gap: 9px;
  column-gap: 9px;
}

.cta-pill {
  display: flex;
  width: auto;
  height: auto;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 0;
  row-gap: 10px;
  column-gap: 10px;
  padding: 11px 14px;
}

.cta-pill-career {
  background: #2db7af;
}

.cta-pill-hire {
  background: #000;
}

.cta-tag {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.cta-title {
  color: #000;
  width: 100%;
  max-width: 100%;
  height: auto;
  font-size: 32px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 120%;
}

.cta-card-hire .cta-title {
  line-height: 100%;
}

.cta-desc {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 500;
  line-height: 140%;
}

.cta-action {
  display: flex;
  max-width: 329px;
  width: 100%;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 0;
  row-gap: 11px;
  box-shadow: 0 2px 5.199999809265137px 0 rgba(82, 82, 82, 0.25);
  column-gap: 11px;
  border-radius: 5px;
  padding: 28px 12px;
}

a.cta-action {
  color: inherit;
  text-decoration: none;
}

a.cta-action:hover {
  opacity: 0.85;
}

.cta-action-career {
  background: #2db7af;
}

.cta-action-hire {
  background: #000;
}

.cta-btn-text {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
}

.cta-card-hire .cta-btn-text {
  width: 226px;
}

.cta-arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 18px;

  width: 8px;
  height: 13px;
  position: absolute;
}

.cta-section {
  width: 100%;
  row-gap: 10px;
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: #2db7af;
  flex-direction: column;
  padding: 65px 12px 71px;
  justify-content: flex-start;
}

@media screen and (max-width: 680px) {
  .hero-section .cta-grid,
  .cta-grid {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-card {
    max-width: 500px;
  }

  .cta-body {
    row-gap: 12px;
    padding: 8px 18px;
    justify-content: space-between;
  }

  .cta-card-hire .cta-body {
    row-gap: 12px;
    padding: 8px 14px;
  }

  .cta-head {
    row-gap: 6px;
  }

  .cta-copy {
    row-gap: 6px;
    column-gap: 12px;
  }

  .cta-card-hire .cta-copy {
    row-gap: 9px;
    column-gap: 9px;
  }

  .cta-title {
    font-size: 20px;
  }

  .cta-card-hire .cta-title {
    line-height: 100%;
  }

  .cta-desc {
    font-size: 14px;
  }

  .cta-action {
    column-gap: 11px;
    border-radius: 5px;
    padding: 16px 12px;
  }

  .cta-btn-text {
    font-size: 14px;
  }

  .cta-arrow {
    right: 18px;
    width: 4px;
    height: 7px;
  }
}

/* Hero section */
.hero-section .cta-grid {
  margin-top: -50px;
  margin-bottom: 8px;
  padding: 0 12px;
}

.hero-img-e {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 2.002px;
  left: 260.766px;
  width: 100.696px;
  height: 112.102px;
  position: absolute;
}

.hero-copy-box {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  height: auto;
  row-gap: 36px;
  column-gap: 36px;
}

.hero-heading {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 14px;
  column-gap: 14px;
}

.hero-img-b {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 39.207px;
  left: 0;
  width: 76.425px;
  height: 75.424px;
  position: absolute;
}

.hero-bg-picture,
.hero-bg-img {
  display: flex;
  max-width: 100%;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-picture {
  flex-direction: column;
  align-items: center;
}

.hero-bg-img {
  object-fit: cover;
  object-position: center center;
}

.hero-img-h {
  width: 538px;
  height: auto;
}

.hero-bg {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  row-gap: 30px;
  z-index: 2;
  position: absolute;
  column-gap: 30px;
}

.hero-img-d {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 1.98px;
  left: 169.766px;
  width: 85.333px;
  height: 112.102px;
  position: absolute;
}

.hero-img-c {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 40.748px;
  left: 78.461px;
  width: 76.753px;
  height: 72.982px;
  position: absolute;
}

.hero-logos {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
}

.hero-img-g {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 2.002px;
  left: 466.82px;
  width: 71.895px;
  height: 112.08px;
  position: absolute;
}

.hero-lead {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 24px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 170%;
}

.hero-kicker {
  display: inline-block;
  color: #000;
  width: fit-content;
  height: auto;
  font-size: 24px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  background: #fff;
  padding: 4px 10px;
}

.hero-section {
  width: 100%;
  padding: 0;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-title {
  display: inline-block;
  color: #000;
  width: fit-content;
  height: auto;
  font-size: 32px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  background: #fff;
  padding: 4px 10px;
}

.hero-img-f {
  top: 0;
  left: 367.617px;
  width: 83.669px;
  height: 116.216px;
  position: absolute;
}

.hero-stage {
  width: 100%;
  height: 531px;
  row-gap: 10px;
  display: flex;
  position: relative;
  column-gap: 10px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 720px) {
  .hero-section .cta-grid {
    margin-top: 12px;
  }

  .hero-copy-box {
    row-gap: 14px;
  }

  .hero-heading {
    row-gap: 8px;
  }

  .hero-bg-picture {
    flex-direction: column;
    align-items: center;
  }

  .hero-bg-img {
    object-fit: cover;
    object-position: center center;
  }

  .hero-img-h {
    height: 52px;
    width: auto;
  }

  .hero-copy {
    row-gap: 21px;
    padding: 0 4px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-kicker {
    font-size: 20px;
  }

  .hero-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 540px) {
  .hero-stage {
    aspect-ratio: 390/680;
    width: 100%;
    height: auto;
  }
}

/* About section */

.about-support-title-b {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 100%;
  height: auto;
  row-gap: 4px;
  column-gap: 4px;
}

.about-title {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: auto;
  height: auto;
  row-gap: 31px;
  column-gap: 31px;
}

.about-talent-title {
  display: flex;
  max-width: 100%;
  width: 140px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;

  height: auto;
  row-gap: 5px;
  column-gap: 5px;
}

.about-industry-title-b {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 140px;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
}

.about-img-c {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 99px;
  height: 99px;
}

.about-img-e {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 92px;
  height: 92px;
}

.about-industry-title {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: auto;
  height: auto;
  row-gap: 34px;
  column-gap: 12px;
}

.about-img {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 51px;
  height: 1px;
}

.about-support-title {
  display: flex;
  max-width: 100%;
  width: 140px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;

  height: auto;
  row-gap: 17px;
  column-gap: 17px;
}

.about-intro {
  max-width: none;
  flex-direction: column;
  align-items: flex-start;
  text-align: flex-start;
  z-index: 0;
  height: auto;
  row-gap: 18px;
  column-gap: 18px;
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid #d9d9d9;
}

.about-img-d {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 104px;
  height: 104px;
}

.about-title-c {
  color: #000;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  height: auto;
  font-size: 32px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 128%;
  text-align: center;
}

.about-summary-copy {
  color: #222;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 170%;
}

.about-copy {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 14px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 170%;
}

.about-industry-title-c {
  width: 100%;
  height: auto;
  row-gap: 4px;
  display: flex;
  column-gap: 4px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.about-talent-title-c {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 170%;
}

.about-copy-c {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 14px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 170%;
}

.about-talent-title-b {
  width: 100%;
  height: auto;
  row-gap: 4px;
  display: flex;
  column-gap: 4px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.about-title-b {
  width: max-content;
  height: auto;
  row-gap: 17px;
  display: flex;
  column-gap: 17px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.about-copy-b {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 14px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 170%;
}

.about-section {
  width: 100%;
  height: auto;
  row-gap: 10px;
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: #fff;
  flex-direction: column;
  padding: 46px 10px 38px;
  justify-content: center;
}

.about-industry-title-d {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 170%;
}

.about-eyebrow {
  width: 100%;
  max-width: 1180px;
  height: auto;
  row-gap: 84px;
  display: flex;
  column-gap: 48px;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
}

.about-eyebrow-d {
  color: #222;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 170%;
}

.about-support-title-c {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 170%;
}

@media screen and (max-width: 840px) {
  .about-intro {
    flex-direction: column;
    align-items: center;
    row-gap: 9px;
    padding-bottom: 32px;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }

  .about-title-c {
    font-size: 24px;
  }

  .about-summary-copy {
    font-size: 14px;
    text-align: center;
  }

  .about-section {
    flex-direction: column;
    padding: 46px 24px 38px;
  }

  .about-eyebrow {
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
  }

  .about-eyebrow-d {
    font-size: 16px;
    text-align: center;
  }
}

@media screen and (max-width: 540px) {
  .about-industry-title {
    flex-direction: column;
    row-gap: 34px;
  }
}

/* Stats section */
.stats-num-h {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 0;

  height: auto;
  row-gap: 7px;
  column-gap: 7px;
}

.stats-num-m {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 0;
  width: 100%;
  height: auto;
  row-gap: 5px;
  column-gap: 5px;
}

.stats-title-c h2 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  line-height: 80%;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.stats-title-b {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  height: auto;
  row-gap: 17px;
  column-gap: 17px;
}

.stats-img-f {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 31%;
  height: auto;
}

.stats-job-count-tag h3 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 171%;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.stats-registrants-tag h3 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 171%;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.stats-unit-b h4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.stats-num-b {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 351px;
  height: 107px;
  position: relative;
}

.stats-title {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  height: auto;
  row-gap: 37px;
  column-gap: 37px;
}

.stats-career-support-tag h3 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 171%;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.stats-img-c {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 1px;
  height: 114px;
}

.stats-img {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 51px;
  height: 3px;
}

.stats-img-b {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 31%;
  height: auto;
}

.stats-unit-c h4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.stats-num-e {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 0;
  width: 100%;
  height: auto;
  row-gap: 5px;
  column-gap: 5px;
}

.stats-num-l {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 0;
  height: auto;
  row-gap: 5px;
  column-gap: 5px;
}

.stats-num {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 100%;
  height: auto;
  row-gap: 73px;
  column-gap: 24px;
}

.stats-num-n h1 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 48px;
  font-weight: 700;
  line-height: 90%;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.stats-num-j h1 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 48px;
  font-weight: 700;
  line-height: 90%;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.stats-unit h4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.stats-num-c {
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  row-gap: 28px;
  display: flex;
  position: absolute;
  column-gap: 32px;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}

.stats-img-e {
  width: 1px;
  height: 114px;
}

.stats-img-d {
  width: 31%;
  height: auto;
}

.stats-title-c {
  color: #fff;
  width: 100%;
  height: auto;
  font-size: 32px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 80%;
}

.stats-num-d {
  width: 212px;
  height: auto;
  row-gap: 8px;
  display: flex;
  column-gap: 8px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.stats-num-g {
  width: auto;
  height: auto;
  row-gap: 28px;
  display: flex;
  column-gap: 28px;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.stats-job-count-tag {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 24px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 171%;
}

.stats-num-j {
  color: #2db7af;
  width: auto;
  height: auto;
  font-size: 48px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 90%;
}

.stats-num-f {
  color: #2db7af;
  width: auto;
  height: auto;
  font-size: 48px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 90%;
  letter-spacing: -0.05em;
}

.stats-num-k {
  width: auto;
  height: auto;
  row-gap: 28px;
  display: flex;
  column-gap: 28px;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.stats-num-i {
  width: auto;
  height: auto;
  row-gap: 4px;
  display: flex;
  column-gap: 4px;
  align-items: flex-end;
  flex-direction: row;
  justify-content: flex-start;
}

.stats-num-n {
  color: #2db7af;
  width: auto;
  height: auto;
  font-size: 48px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 90%;
}

.stats-registrants-tag {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 24px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 171%;
}

.stats-section {
  width: 100%;
  height: auto;
  row-gap: 10px;
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: #101419;
  flex-direction: column;
  padding: 40px 24px 40px 24px;
  justify-content: flex-start;
}

.stats-career-support-tag {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 24px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 171%;
}

.stats-unit {
  color: #2db7af;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01em;
}

.stats-unit-c {
  color: #2db7af;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01em;
}

.stats-unit-b {
  color: #2db7af;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 840px) {
  .stats-img-f {
    width: 25%;
  }

  .stats-img-c {
    transform: rotate(180deg);
    width: 114px;
    height: 1px;
  }

  .stats-img-b {
    width: 25%;
  }

  .stats-num {
    flex-direction: column;
    row-gap: 32px;
  }

  .stats-img-e {
    transform: rotate(180deg);
    width: 114px;
    height: 1px;
  }

  .stats-img-d {
    width: 25%;
  }

  .stats-title-c {
    font-size: 24px;
  }

  .stats-num-g {
    justify-content: flex-start;
  }

  .stats-num-k {
    justify-content: start;
  }
}

/* Flow section */
.flow-hiring-step-hearing-title p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-section {
  display: none;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 100%;
  height: auto;
  row-gap: 27px;
  column-gap: 27px;
  padding: 46px 24px 24px;
}

.flow-step-ac {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 28px;
  height: 28px;
  row-gap: 10px;
  column-gap: 10px;
  background: #2db7af;
  padding-left: 8px;
  border-radius: 14px;
  padding-right: 8px;
}

.flow-step-z {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 0;
  left: 0;
  width: 120px;
  height: 177px;
  position: absolute;
}

.flow-step-k {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 97px;
  height: auto;
  row-gap: 3px;
  column-gap: 3px;
}

.flow-career-step-register-title p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-copy-d p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-title-b h3 {
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 171%;
  text-align: left;
  width: 100%;
  height: 41px;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-wrap-e {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 444.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  position: absolute;
  background: #2fc6bd;
  border-radius: 9999px;
}

.flow-img-n {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 13.5px;
  left: 60px;
  width: 75px;
  height: 1px;
  position: absolute;
}

/* .flow-hire-title-b p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
} */

.flow-img-j {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 56px;
  height: 56px;
}

.flow-step-aj {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 97px;
  height: auto;
  row-gap: 3px;
  column-gap: 3px;
}

.flow-step-as {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 28px;
  height: 28px;
  row-gap: 10px;
  column-gap: 10px;
  background: #2db7af;
  padding-left: 8px;
  border-radius: 14px;
  padding-right: 8px;
}

.flow-wrap-g {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 0;
  top: 21px;
  left: 0;
  width: 100%;
  height: 714px;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
  background: #f3f3f3;
  padding: 58px 32px 30px 33px;
}

.flow-step-h {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 28px;
  height: 28px;
  row-gap: 10px;
  column-gap: 10px;
  background: #2db7af;
  padding-left: 8px;
  border-radius: 14px;
  padding-right: 8px;
}

.flow-img-v {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 71px;
  height: 71px;
}

.flow-copy-f p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-hiring-step-contact-title p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 7.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  position: absolute;
  background: #2fc6bd;
  border-radius: 9999px;
}

.flow-step-an {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 81px;
  height: auto;
  row-gap: 3px;
  column-gap: 3px;
}

.flow-wrap-k {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 222.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  position: absolute;
  background: #2fc6bd;
  border-radius: 9999px;
}

.flow-step-ad h4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-career-step-interview-title p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-copy-c p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.04em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-career-title-b p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-step-s {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 81px;
  height: auto;
  row-gap: 3px;
  column-gap: 3px;
}

.flow-step-selection-title-b p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-step-ah h4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-step {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 0;
  width: 519px;
  height: auto;
  row-gap: 31px;
  column-gap: 31px;
}

.flow-step-aq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  top: 433px;
  left: -4px;
  width: 129px;
  height: auto;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
}

.flow-step-selection-title p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-img-o {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 446.5px;
  left: 60px;
  width: 75px;
  height: 1px;
  position: absolute;
}

.flow-step-o {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 97px;
  height: auto;
  row-gap: 3px;
  column-gap: 3px;
}

.flow-career-step-offer-title p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-img-w {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.flow-img-k {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 71px;
  height: 71px;
}

.flow-hiring-step-contact-title-b p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.06em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-wrap-l {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 306.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  position: absolute;
  background: #2fc6bd;
  border-radius: 9999px;
}

.flow-step-g {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 49px;
  height: auto;
  row-gap: 3px;
  column-gap: 3px;
}

.flow-step-ak {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 28px;
  height: 28px;
  row-gap: 10px;
  column-gap: 10px;
  background: #2db7af;
  padding-left: 8px;
  border-radius: 14px;
  padding-right: 8px;
}

.flow-img-s {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 57px;
  height: 57px;
}

.flow-wrap-h {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 284px;
  height: 626px;
  position: relative;
}

.flow-wrap-f {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 100%;
  height: 735px;
  position: relative;
}

.flow-step-aa {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
}

.flow-step-ag {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 28px;
  height: 28px;
  row-gap: 10px;
  column-gap: 10px;
  background: #2db7af;
  padding-left: 8px;
  border-radius: 14px;
  padding-right: 8px;
}

.flow-img-u {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.flow-step-ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  top: 215px;
  left: 3px;
  width: 113px;
  height: auto;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
}

.flow-step-f {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
}

.flow-hiring-step-hearing-title-b p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-step-ap h4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-hire-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
  background: #fff;
  border: 1px solid #191919;
  padding: 10px;
}

.flow-img-p {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 228.5px;
  left: 60px;
  width: 75px;
  height: 1px;
  position: absolute;
}

.flow-step-m h4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-wrap-m {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 440.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  position: absolute;
  background: #2fc6bd;
  border-radius: 9999px;
}

.flow-step-b {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 100%;
  height: 735px;
  position: relative;
}

.flow-step-am {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  top: 299px;
  left: 165px;
  width: 115px;
  height: auto;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
}

.flow-copy p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-img-c {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 13.5px;
  left: 60px;
  width: 76px;
  height: 1px;
  position: absolute;
}

.flow-img-b {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 443px;
  position: absolute;
}

.flow-step-c {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  z-index: 0;
  top: 21px;
  left: 0;
  width: 100%;
  height: 714px;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
  background: #e4fcfb;
  padding: 62px 31px 20px 32px;
}

.flow-img-t {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.flow-img-r {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 312.5px;
  left: 134px;
  width: 75px;
  height: 1px;
  position: absolute;
}

.flow-step-ae {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  top: 77px;
  left: 164px;
  width: 117px;
  height: auto;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
}

.flow-img-g {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 318.5px;
  left: 138px;
  width: 75px;
  height: 1px;
  position: absolute;
}

.flow-step-x {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 28px;
  height: 28px;
  row-gap: 10px;
  column-gap: 10px;
  background: #2db7af;
  padding-left: 8px;
  border-radius: 14px;
  padding-right: 8px;
}

.flow-hiring-step-hearing-title-c p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-step-n {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  top: 221px;
  left: 3px;
  width: 113px;
  height: auto;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
}

.flow-step-af {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 81px;
  height: auto;
  row-gap: 3px;
  column-gap: 3px;
}

.flow-step-ao {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 28px;
  height: 28px;
  row-gap: 10px;
  column-gap: 10px;
  background: #2db7af;
  padding-left: 7px;
  border-radius: 14px;
  padding-right: 9px;
}

.flow-img-i {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 71px;
  height: 71px;
}

.flow-wrap-d {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 312.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  position: absolute;
  background: #2fc6bd;
  border-radius: 9999px;
}

.flow-step-e {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 0;
  left: 0;
  width: 120px;
  height: 192px;
  position: relative;
}

.flow-step-i h4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-wrap-j {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 84.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  position: absolute;
  background: #2fc6bd;
  border-radius: 9999px;
}

.flow-copy-e p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.flow-step-ab {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 97px;
  height: auto;
  row-gap: 2px;
  column-gap: 2px;
}

.flow-img-f {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 94.5px;
  left: 138px;
  width: 75px;
  height: 1px;
  position: absolute;
}

.flow-step-w {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 81px;
  height: auto;
  row-gap: 3px;
  column-gap: 3px;
}

.flow-hiring-step-contact-title-b {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.06em;
}

.flow-wrap-b {
  top: 88.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  display: flex;
  position: absolute;
  background: #2fc6bd;
  border-radius: 9999px;
  flex-direction: column;
}

.flow-step-ar {
  width: 81px;
  height: auto;
  row-gap: 3px;
  display: flex;
  column-gap: 3px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.flow-copy-g {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.flow-img-m {
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 443px;
  position: absolute;
}

.flow-career-step-interview-title {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-step-t {
  width: 28px;
  height: 28px;
  row-gap: 10px;
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: #2db7af;
  padding-left: 7px;
  border-radius: 14px;
  padding-right: 9px;
  flex-direction: column;
  justify-content: center;
}

.flow-img-q {
  top: 90.5px;
  left: 134px;
  width: 75px;
  height: 1px;
  position: absolute;
}

.flow-step-r {
  top: 305px;
  left: 159px;
  width: 127px;
  height: auto;
  row-gap: 10px;
  display: flex;
  position: absolute;
  column-gap: 10px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.flow-img-l {
  width: 72px;
  height: 72px;
}

.flow-wrap-c {
  top: 228.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  display: flex;
  position: absolute;
  background: #2fc6bd;
  border-radius: 9999px;
  flex-direction: column;
}

.flow-hiring-step-contact-title {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-hiring-step-hearing-title-b {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.flow-wrap-i {
  top: 7.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  display: flex;
  position: absolute;
  background: #2fc6bd;
  border-radius: 9999px;
  flex-direction: column;
}

.flow-step-selection-title {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-step-y {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-copy-e {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.flow-step-ap {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-step-p {
  width: 28px;
  height: 28px;
  row-gap: 10px;
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: #2db7af;
  padding-left: 8px;
  border-radius: 14px;
  padding-right: 8px;
  flex-direction: column;
  justify-content: center;
}

.flow-career-step-offer-title {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-career-title {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  row-gap: 10px;
  display: flex;
  position: absolute;
  column-gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid #2db7af;
  flex-direction: row;
  padding: 10px;
  justify-content: center;
}

.flow-step-d {
  width: 286px;
  height: 630px;
  display: flex;
  position: relative;
  flex-direction: column;
}

.flow-img-d {
  top: 450.5px;
  left: 59px;
  width: 75px;
  height: 1px;
  position: absolute;
}

.flow-step-u {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-copy {
  color: #000;
  width: auto;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.flow-title {
  width: 180px;
  height: 49px;
  display: flex;
  position: relative;
  flex-direction: column;
}

.flow-hiring-step-hearing-title-c {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-img-e {
  top: 234.5px;
  left: 60px;
  width: 75px;
  height: 1px;
  position: absolute;
}

.flow-copy-f {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.flow-career-step-register-title {
  color: #000;
  width: auto;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-career-title-b {
  color: #2db7af;
  width: auto;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.flow-step-v {
  top: 437px;
  left: 0;
  width: 121px;
  height: auto;
  row-gap: 10px;
  display: flex;
  position: absolute;
  column-gap: 10px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.flow-copy-b {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.flow-hiring-step-hearing-title {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.flow-step-at {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-career-step-jobs-title {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-copy-c {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.04em;
}

.flow-step-j {
  top: 81px;
  left: 162px;
  width: 121px;
  height: auto;
  row-gap: 10px;
  display: flex;
  position: absolute;
  column-gap: 10px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.flow-step-ah {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-step-al {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-step-ad {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-hiring-step-proposal-title {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-step-selection-title-b {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-step-m {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-step-l {
  width: 28px;
  height: 28px;
  row-gap: 10px;
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: #2db7af;
  padding-left: 8px;
  border-radius: 14px;
  padding-right: 8px;
  flex-direction: column;
  justify-content: center;
}

.flow-hiring-step-retention-title {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-img-h {
  width: 71px;
  height: 71px;
}

.flow-img {
  top: 49px;
  left: 54px;
  width: 51px;
  height: 1px;
  position: absolute;
}

.flow-step-q {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-step-i {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.flow-copy-d {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.flow-hire-title-b {
  color: #000;
  width: auto;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.flow-title-b {
  top: 0;
  left: 0;
  color: #000;
  width: 100%;
  height: 41px;
  font-size: 24px;
  position: absolute;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 171%;
}

@media screen and (max-width: 840px) {
  .flow-section {
    display: flex;
  }
}

/* Extra flow section */
.extra-flow-hire-icon-contact {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.extra-flow-hire-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 301px;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
  background: #f3f3f3;
}

.extra-flow-career-label-offer text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-line-jobs {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 8.155px;
  height: 194px;
}

.extra-flow-career-step-interview-head {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 97px;
  height: auto;
  row-gap: 12px;
  column-gap: 12px;
}

.extra-flow-career-step-selection {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 127px;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
}

.extra-flow-columns {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  row-gap: 48px;
  padding: 0 12px;
  width: 100%;
  height: auto;
}

.extra-flow-hire-num-selection text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-icon-selection {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.extra-flow-career-label-jobs text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-label-contact text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-line-final {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 8.155px;
  height: 194px;
}

.extra-flow-hire-num-retention text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-title text_2 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  line-height: 128%;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-step-jobs-head {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 97px;
  height: auto;
  row-gap: 12px;
  column-gap: 12px;
}

.extra-flow-career-column {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 676px;
  height: 301px;
  position: relative;
}

.extra-flow-career-icon-jobs {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.extra-flow-career-step-register {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 120px;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
}

.extra-flow-career-copy-selection text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.04em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-title-line {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 51px;
  height: 1px;
}

.extra-flow-career-label-interview text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-icon-retention {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.extra-flow-career-num-selection text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-step-offer-head {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 81px;
  height: auto;
  row-gap: 12px;
  column-gap: 12px;
}

.extra-flow-career-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 301px;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
  background: #e4fcfb;
  padding: 10px;
}

.extra-flow-career-num-offer text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-label-selection text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-track {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: auto;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.extra-flow-hire-icon-hearing {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.extra-flow-career-copy-jobs text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-label-register text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-copy-selection text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-line-hearing {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 8.155px;
  height: 194px;
}

.extra-flow-career-num-interview text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-line-start {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 8.155px;
  height: 194px;
}

.extra-flow-career-step-register-head {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 49px;
  height: auto;
  row-gap: 12px;
  column-gap: 12px;
}

.extra-flow-container {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: auto;
  height: auto;
  row-gap: 66px;
  column-gap: 66px;
}

.extra-flow-hire-copy-hearing text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-step-hearing-head {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 81px;
  height: auto;
  row-gap: 12px;
  column-gap: 12px;
}

.extra-flow-hire-line-final {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 8.155px;
  height: 194px;
}

.extra-flow-career-copy-interview text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-track {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  z-index: 0;
  width: 100%;
  height: auto;
  row-gap: 2px;
  column-gap: 2px;
}

.extra-flow-hire-step-proposal {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 0;
  width: 113px;
  height: auto;
}

.extra-flow-hire-column {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 676px;
  height: 301px;
  position: relative;
}

.extra-flow-hire-icon-selection {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.extra-flow-section {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 100%;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
  padding-top: 68px;
  padding-bottom: 48px;
}

.extra-flow-hire-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 0;
  translate: -50%;
  top: -28px;
  left: 50%;
  right: auto;
  width: 297px;
  bottom: auto;
  height: 57px;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
  background: #fff;
  border: 1px solid #191919;
  padding: 10px;
}

.extra-flow-hire-step-hearing {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 117px;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
}

.extra-flow-hire-step-selection {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 115px;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
}

.extra-flow-hire-line-start {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 8.155px;
  height: 194px;
}

.extra-flow-hire-num-contact text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-step-retention-head {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 81px;
  height: auto;
  row-gap: 12px;
  column-gap: 12px;
}

.extra-flow-hire-icon-proposal {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.extra-flow-career-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 0;
  translate: -50%;
  top: -29px;
  left: 50%;
  right: auto;
  width: 297px;
  bottom: auto;
  height: 57px;
  row-gap: 10px;
  position: absolute;
  column-gap: 10px;
  background: #fff;
  border: 1px solid #2db7af;
  padding: 10px;
}

.extra-flow-hire-step-selection-head {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 81px;
  height: auto;
  row-gap: 12px;
  column-gap: 12px;
}

.extra-flow-hire-step-contact-head {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 97px;
  height: auto;
  row-gap: 12px;
  column-gap: 12px;
}

.extra-flow-heading {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 17px;
  column-gap: 17px;
}

.extra-flow-career-copy-offer text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-step-interview {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 121px;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
}

.extra-flow-hire-step-contact {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 120px;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
}

.extra-flow-career-step-offer {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 121px;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
}

.extra-flow-career-badge-text text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-label-hearing text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-line-interview {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 8.155px;
  height: 194px;
}

.extra-flow-career-step-selection-head {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 81px;
  height: auto;
  row-gap: 12px;
  column-gap: 12px;
}

.extra-flow-hire-copy-contact text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.06em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-step-jobs {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 113px;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
}

.extra-flow-hire-label-retention text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-icon-offer {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.extra-flow-career-icon-register {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.extra-flow-hire-step-retention {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 124px;
  height: auto;
  row-gap: 7px;
  column-gap: 7px;
}

.extra-flow-hire-step-proposal-head {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  z-index: 0;
  width: 100%;
  row-gap: 12px;
  column-gap: 12px;
}

.extra-flow-career-num-jobs text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-copy-register text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-badge-text text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-line-proposal {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 8.155px;
  height: 194px;
}

.extra-flow-hire-label-proposal text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-step-contact-row {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 100%;
  height: auto;
  row-gap: 5px;
  column-gap: 5px;
}

.extra-flow-career-icon-interview {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 72px;
  height: 72px;
}

.extra-flow-hire-num-proposal text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-num-hearing text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-num-register text_4 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #2db7af;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-career-label-selection text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-copy-retention text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.extra-flow-hire-copy-proposal text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
  text-align: left;
  width: 100%;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  flex: 1;
  z-index: 0;
}

.extra-flow-hire-copy-retention {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.extra-flow-career-copy-selection {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.04em;
}

.extra-flow-hire-label-selection {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-copy-hearing {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.extra-flow-career-label-interview {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-career-label-selection {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-career-copy-offer {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.extra-flow-career-num-offer {
  color: #2db7af;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-num-proposal {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-career-copy-register {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.extra-flow-career-copy-jobs {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-num-contact {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-career-badge-text {
  color: #2db7af;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-label-retention {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-label-contact {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-badge-text {
  color: #000;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-num-retention {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-num-selection {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-copy-contact {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.06em;
}

.extra-flow-hire-copy-selection {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.extra-flow-title {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 32px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 128%;
}

.extra-flow-hire-label-proposal {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-copy-proposal {
  flex: 1;
  color: #000;
  width: 100%;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.extra-flow-career-label-offer {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-career-num-selection {
  color: #2db7af;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-career-num-interview {
  color: #2db7af;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-career-label-jobs {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-career-num-register {
  color: #2db7af;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-label-hearing {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-career-copy-interview {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 12px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.01em;
}

.extra-flow-hire-num-hearing {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-career-label-register {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

.extra-flow-career-num-jobs {
  color: #2db7af;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 1024px) {
  .extra-flow-columns {
    flex-direction: column;
  }
}

@media screen and (max-width: 840px) {
  .extra-flow-section {
    display: none;
  }
}

/* Jobs section */
.jobs-section {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 100%;
  height: 872px;
  row-gap: 10px;
  column-gap: 10px;
  background: url("img/top/recruit-background.jpg") center / cover no-repeat;
  padding: 94px 24px 71px 24px;
}

.jobs-img-d {
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  width: 10.586px;
  height: 15px;
  position: absolute;
}

.jobs-cta-copy {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.jobs-title-b {
  width: 100%;
  height: auto;
  row-gap: 37px;
  display: flex;
  column-gap: 37px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.jobs-title {
  width: 1356.732px;
  max-width: 100%;
  height: auto;
  row-gap: 48px;
  display: flex;
  column-gap: 48px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.jobs-img {
  width: 51px;
  height: 1px;
}

.jobs-wrap-b {
  width: 100%;
  height: 76px;
  display: flex;
  box-shadow: 0 2px 2px 0 rgba(118, 118, 118, 0.25);
  align-items: center;
  background: #2db7af;
  border-radius: 5px;
  flex-direction: row;
  justify-content: center;
}

.jobs-list {
  width: 100%;
  height: auto;
  row-gap: 17px;
  display: flex;
  column-gap: 17px;
  align-items: flex-end;
  flex-direction: row;
  justify-content: flex-start;
}

.jobs-slider-frame {
  width: calc(100vw - max(24px, (100vw - min(1356.732px, 100vw - 48px)) / 2));
  max-width: none;
  align-self: flex-start;
  position: relative;
}

.jobs-column-slider {
  width: 100%;
  max-width: none;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.75) rgba(255, 255, 255, 0.25);
  -webkit-overflow-scrolling: touch;
}

.jobs-column-slider::-webkit-scrollbar {
  height: 6px;
}

.jobs-column-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.jobs-column-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}

.jobs-column-slider .jobs-list {
  width: max-content;
}

.jobs-column-slider .swiper-slide {
  scroll-snap-align: start;
}

.jobs-column-pagination {
  display: none;
}

.jobs-column-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  display: block;
  background: rgba(255, 255, 255, 1);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    opacity 0.2s ease,
    background 0.2s ease;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.jobs-column-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2db7af;
  border-right: 2px solid #2db7af;
}

.jobs-column-button-prev {
  left: calc(48px - max(48px, (100vw - min(1356.732px, 100vw - 48px)) / 2));
}

.jobs-column-button-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.jobs-column-button-next {
  right: 48px;
}

.jobs-column-button-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.jobs-column-button:hover {
  background: rgba(255, 255, 255, 0.64);
}

.jobs-title-c {
  height: auto;
  row-gap: 17px;
  display: flex;
  column-gap: 17px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.jobs-title-d {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 32px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
}

.jobs-wrap {
  width: 354px;
  height: 76px;
  display: flex;
  position: relative;
  border-radius: 0;
  flex-direction: column;
}

a.jobs-wrap {
  color: inherit;
  text-decoration: none;
}

a.jobs-wrap:hover {
  opacity: 0.85;
}

@media screen and (max-width: 840px) {
  .jobs-column-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 34px;
    scroll-snap-type: none;
  }

  .jobs-slider-frame {
    width: 100%;
  }

  .jobs-column-slider .jobs-list {
    width: 100%;
    column-gap: 0;
  }

  .jobs-column-slider .swiper-slide {
    flex: 0 0 auto;
    scroll-snap-align: none;
  }

  .jobs-column-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
  }

  .jobs-column-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
  }

  .jobs-column-pagination .swiper-pagination-bullet-active {
    background: #2db7af;
  }

  .jobs-column-button {
    display: block;
    top: calc(50% - 17px);
  }

  .jobs-column-button-prev {
    left: 0;
  }

  .jobs-column-button-next {
    right: 0;
  }
}

@media screen and (max-width: 540px) {
  .jobs-title-d {
    font-size: 24px;
  }

  .jobs-cta-copy,
  .post-more-btn {
    font-size: 16px;
  }

  .jobs-wrap,
  .jobs-wrap-b,
  .post-wrap,
  .post-wrap-b {
    height: 54px;
    max-width: 280px;
  }
}

/* News section */
.news-img {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  width: 51px;
  height: 1px;
}

.news-title {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  width: 830px;
  height: auto;
  row-gap: 34px;
  column-gap: 34px;
}

.news-date-d {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 0;
  width: auto;
  height: auto;
  row-gap: 18px;
  column-gap: 18px;
}

.news-section {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 100%;
  row-gap: 34px;
  padding: 61px 24px 100px 24px;
  overflow: hidden;
  column-gap: 34px;
  background: #f5f5f5;
}

.news-category-c {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: auto;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
  background: #2db7af;
  padding: 4px 14px 3px;
}

.news-img-b {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 0;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  position: absolute;
}

.news-category-b text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.0538em;
  text-align: center;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.news-category-d p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.0538em;
  text-align: center;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #fff;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.news-date {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 0;
  width: 100%;
  height: auto;
  row-gap: 34px;
  column-gap: 34px;
}

.news-date-h {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 0;
  width: auto;
  height: auto;
  row-gap: 18px;
  column-gap: 18px;
}

.news-title-d text_5 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.0437em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #333;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.news-date-i p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.05em;
  text-align: left;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #999;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.news-title-c text_2 {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-weight: 700;
  line-height: 128%;
  text-align: center;
  width: auto;
  height: auto;
  max-width: 100%;
  color: #000;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.news-title-b-b p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.0437em;
  text-align: left;
  width: 100%;
  height: auto;
  max-width: 100%;
  color: #333;
  flex-direction: column;
  align-items: center;
  z-index: 0;
}

.news-category {
  display: flex;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: auto;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
  background: #2db7af;
  padding: 4px 14px 3px;
}

.news-img-c {
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  position: absolute;
}

.news-title-c {
  color: #000;
  width: auto;
  height: auto;
  font-size: 32px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 128%;
}

.news-title-d {
  color: #333;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.0437em;
  overflow-wrap: anywhere;
  word-break: normal;
}

.news-title-b-b {
  color: #333;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.0437em;
  overflow-wrap: anywhere;
  word-break: normal;
}

.news-date-b,
.news-date-f {
  width: 100%;
  row-gap: 8px;
  display: flex;
  position: relative;
  column-gap: 8px;
  box-shadow: 2px 2px 5.5px 0 rgba(131, 131, 131, 0.25);
  align-items: flex-start;
  background: #fff;
  flex-direction: column;
  padding: 35px 52px;
  justify-content: flex-start;
}

a.news-date-b,
a.news-date-f {
  color: inherit;
  text-decoration: none;
}

a.news-date-b:hover,
a.news-date-f:hover {
  opacity: 0.85;
}

.news-category-d {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 13px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.0538em;
}

.news-category-b {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 13px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.0538em;
}

.news-date-e {
  color: #999;
  width: auto;
  height: auto;
  font-size: 14px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.05em;
}

.news-date-i {
  color: #999;
  width: auto;
  height: auto;
  font-size: 14px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.05em;
}

.news-title-b {
  width: auto;
  height: auto;
  row-gap: 10px;
  display: flex;
  column-gap: 10px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

@media screen and (max-width: 840px) {
  .news-date-b,
  .news-date-f {
    padding: 20px 28px;
  }
}

/* Articles section */
.post-section {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 100%;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
  background: url("img/top/interview-background.jpg") center / cover no-repeat;
  padding: 104px 24px 159px;
}

.post-title-d {
  color: #fff;
  width: 100%;
  height: auto;
  font-size: 32px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 128%;
}

.post-card-l {
  width: 100%;
  height: auto;
  row-gap: 14px;
  display: flex;
  column-gap: 14px;
  align-items: flex-start;
  background: #fff;
  flex-direction: column;
  padding: 14px 18px;
  justify-content: flex-start;
}

.post-more-btn {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.post-wrap {
  width: 354px;
  height: 76px;
  display: flex;
  position: relative;
  border-radius: 0;
  flex-direction: column;
}

.post-wrap-b {
  width: 100%;
  height: 76px;
  display: flex;
  box-shadow: 0 2px 2px 0 rgba(118, 118, 118, 0.25);
  align-items: center;
  background: #2db7af;
  border-radius: 5px;
  flex-direction: row;
  justify-content: center;
}

.post-card-h {
  width: 100%;
  height: auto;
  row-gap: 14px;
  display: flex;
  column-gap: 14px;
  align-items: flex-start;
  background: #fff;
  flex-direction: column;
  padding: 14px 18px;
  justify-content: flex-start;
}

.post-card-d {
  width: 100%;
  height: 100%;
  row-gap: 14px;
  display: flex;
  column-gap: 14px;
  align-items: flex-start;
  background: #fff;
  flex-direction: column;
  padding: 14px 18px;
  justify-content: flex-start;
}

.post-img-b {
  width: 100%;
  height: 194px;
  object-fit: cover;
  border: 1px solid #dfe3e9;
  border-radius: 5px 5px 0 0;
}

.post-img-d {
  width: 100%;
  height: 194px;
  object-fit: cover;
  border: 1px solid #dfe3e9;
  border-radius: 5px 5px 0 0;
}

.post-card-e {
  width: 100%;
  height: auto;
  row-gap: 14px;
  display: flex;
  column-gap: 14px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.post-card-f {
  color: #898989;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.post-card {
  width: 100%;
  height: auto;
  display: flex;
  position: static;
  flex-direction: column;
}

.post-slider-frame {
  width: 100%;
  max-width: 1008px;
  position: relative;
}

.post-column-slider {
  width: 100%;
  max-width: 1008px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.75) rgba(255, 255, 255, 0.25);
  -webkit-overflow-scrolling: touch;
}

.post-column-slider::-webkit-scrollbar {
  height: 6px;
}

.post-column-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.post-column-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}

.post-card-b {
  width: auto;
  height: auto;
  row-gap: 54px;
  display: flex;
  position: static;
  column-gap: 54px;
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
}

.post-column-slider .post-card-b {
  width: max-content;
}

.post-column-slider .swiper-slide {
  scroll-snap-align: start;
}

.post-column-pagination {
  display: none;
}

.post-column-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  display: none;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    opacity 0.2s ease,
    background 0.2s ease;
}

.post-column-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #2db7af;
  border-right: 2px solid #2db7af;
}

.post-column-button-prev {
  left: calc(24px - ((100vw - 1008px) / 2));
}

.post-column-button-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.post-column-button-next {
  right: calc(24px - ((100vw - 1008px) / 2));
}

.post-column-button-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.post-column-button:hover {
  background: rgba(255, 255, 255, 0.64);
}

.post-card-g {
  width: 300px;
  flex: 0 0 300px;
  height: auto;
  display: flex;
  overflow: hidden;
  align-items: flex-start;
  border: 1px solid #dfe3e9;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
}

a.post-card-c,
a.post-card-g,
a.post-card-k,
a.post-wrap {
  color: inherit;
  text-decoration: none;
  background: white;
}

a.post-card-c:hover,
a.post-card-g:hover,
a.post-card-k:hover,
a.post-wrap:hover {
  opacity: 0.85;
}

.post-article-title-b {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 130%;
}

.post-card-m {
  width: 100%;
  height: auto;
  row-gap: 14px;
  display: flex;
  column-gap: 14px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.post-img {
  width: 51px;
  height: 1px;
}

.post-title {
  width: 1008px;
  max-width: 100%;
  height: auto;
  row-gap: 65px;
  display: flex;
  column-gap: 65px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.post-card-i {
  width: 100%;
  height: auto;
  row-gap: 14px;
  display: flex;
  column-gap: 14px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.post-card-j {
  color: #898989;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.post-article-title {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 130%;
}

.post-card-k {
  width: 300px;
  flex: 0 0 300px;
  height: auto;
  display: flex;
  overflow: hidden;
  align-items: flex-start;
  border: 1px solid #dfe3e9;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
}

.post-no-post {
  color: #fff;
  width: 100%;
  text-align: center;
}

.post-img-c {
  width: 100%;
  height: 194px;
  object-fit: cover;
  border: 1px solid #dfe3e9;
  border-radius: 5px 5px 0 0;
}

.post-img-e {
  top: 50%;
  transform: translateY(-50%);
  right: 18px;
  width: 10.586px;
  height: 15px;
  position: absolute;
}

.post-article-title-c {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 130%;
}

.post-title-b {
  width: 100%;
  height: auto;
  row-gap: 58px;
  display: flex;
  column-gap: 58px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.post-card-c {
  width: 300px;
  flex: 0 0 300px;
  height: auto;
  display: flex;
  overflow: hidden;
  align-items: flex-start;
  border: 1px solid #dfe3e9;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
}

.post-card-n {
  color: #898989;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.post-title-c {
  height: auto;
  row-gap: 18px;
  display: flex;
  column-gap: 18px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

@media screen and (max-width: 840px) {
  .post-column-slider {
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 34px;
    scroll-snap-type: none;
  }

  .post-slider-frame {
    max-width: 100%;
  }

  .post-column-slider .post-card-b {
    width: 100%;
    column-gap: 0;
  }

  .post-column-slider .swiper-slide {
    flex: 0 0 auto;
    scroll-snap-align: none;
  }

  .post-column-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
  }

  .post-column-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
  }

  .post-column-pagination .swiper-pagination-bullet-active {
    background: #2db7af;
  }

  .post-column-button {
    display: block;
    top: calc(50% - 17px);
  }

  .post-column-button-prev {
    left: 0;
  }

  .post-column-button-next {
    right: 0;
  }
}

@media screen and (max-width: 540px) {
  .post-more-btn {
    font-size: 16px;
  }

  .post-wrap,
  .post-wrap-b {
    height: 54px;
    max-width: 280px;
  }
}

@media screen and (max-width: 680px) {
  .post-title-d {
    font-size: 24px;
  }
}

/* Generated helper styles */
.job-meta-value {
  color: #000;
  width: auto;
  height: auto;
  font-size: 15px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 160%;
}

.job-meta {
  width: 100%;
  height: auto;
  row-gap: 10px;
  display: flex;
  column-gap: 10px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.job-pin {
  width: 11px;
  height: 14px;
}

.job-role-key-wrap {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2db7af;
  padding: 8px 13px 7px 11px;
}

.job-title {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 20px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 130%;
}

.job-card {
  width: 326.433px;
  height: 483.804px;
  row-gap: 20px;
  display: flex;
  box-shadow: 0 2px 8.800000190734863px 0 rgba(0, 0, 0, 0.25);
  column-gap: 20px;
  align-items: flex-end;
  background: #fff;
  border-radius: 5px;
  flex-direction: column;
  padding: 12px 9px 15px 10px;
  justify-content: flex-start;
}

.job-card-content {
  width: 100%;
  height: 100%;
  row-gap: 20px;
  display: flex;
  color: inherit;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-start;
}

.job-role-row {
  display: flex;
  position: relative;
  flex-direction: column;
}

.job-role {
  width: 293px;
  height: auto;
  row-gap: 8px;
  display: flex;
  column-gap: 8px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.job-img {
  width: 306.395px;
  height: 197.841px;
  object-fit: cover;
  border-radius: 5px;
}

.job-type {
  width: 85px;
  row-gap: 10px;
  display: flex;
  overflow: hidden;
  column-gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid #2db7af;
  border-radius: 5px;
  flex-direction: row;
  padding: 5px 10px;
  justify-content: center;
}

.job-meta-row {
  width: 299px;
  height: auto;
  row-gap: 8px;
  display: flex;
  column-gap: 8px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.job-meta-key {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 13px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 900;
  line-height: 108%;
  letter-spacing: 0.15em;
}

.job-tags {
  width: auto;
  height: auto;
  row-gap: 16px;
  display: flex;
  column-gap: 16px;
  align-items: flex-end;
  flex-direction: row;
  justify-content: flex-start;
}

.job-place-text {
  color: #2db7af;
  width: auto;
  height: auto;
  font-size: 15px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 93%;
}

.job-role-key {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 13px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 900;
  line-height: 108%;
  letter-spacing: 0.15em;
}

.job-place {
  row-gap: 10px;
  display: flex;
  overflow: hidden;
  column-gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid #2db7af;
  border-radius: 5px;
  flex-direction: row;
  padding: 5px 10px;
  justify-content: center;
  max-width: 180px;
}

.job-meta-key-wrap {
  width: auto;
  height: auto;
  row-gap: 10px;
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: #2db7af;
  flex-direction: row;
  padding: 8px 13px 7px 11px;
  justify-content: center;
}

.job-role-value {
  color: #000;
  width: auto;
  height: auto;
  font-size: 15px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 400;
  line-height: 160%;
}

.job-body {
  width: 299.539px;
  height: auto;
  row-gap: 11px;
  display: flex;
  column-gap: 11px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.job-type-text {
  color: #2db7af;
  width: auto;
  height: auto;
  font-size: 15px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 93%;
}

.event-section {
  display: flex;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 100%;
  height: auto;
  row-gap: 10px;
  column-gap: 10px;
  background: url("img/top/event-background.jpg") center / cover no-repeat;
  padding: 87px 24px;
}

.event-link-f {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.event-link-d {
  width: 264px;
  height: 47px;
  display: flex;
  position: relative;
  flex-direction: column;
}

.event-card-j {
  width: 300px;
  height: auto;
  display: flex;
  align-items: flex-end;
  background: #fff;
  border: 1px solid #dfe3e9;
  flex-direction: column;
  justify-content: flex-start;
}

.event-card-c {
  width: 100%;
  height: auto;
  row-gap: 15px;
  display: flex;
  column-gap: 15px;
  align-items: flex-start;
  flex-direction: column;
  padding: 14px 18px;
  justify-content: flex-start;
}

.event-link-g {
  width: 264px;
  height: 47px;
  display: flex;
  position: relative;
  flex-direction: column;
}

.event-card-e {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.event-link-b {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  row-gap: 10px;
  display: flex;
  position: absolute;
  column-gap: 10px;
  align-items: center;
  background: #2db7af;
  flex-direction: row;
  padding: 14px 10px;
  justify-content: center;
}

.event-img-e {
  width: 100%;
  height: 194px;
  border: 1px solid #dfe3e9;
}

.event-event-description-b {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 175%;
}

.event-img-i {
  width: 23px;
  height: 23px;
}

.event-event-description-c {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 175%;
}

.event-card-f {
  width: 300px;
  height: auto;
  display: flex;
  align-items: flex-end;
  background: #fff;
  border: 1px solid #dfe3e9;
  flex-direction: column;
  justify-content: flex-start;
}

.event-link-h {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  row-gap: 10px;
  display: flex;
  position: absolute;
  column-gap: 10px;
  align-items: center;
  background: #2db7af;
  flex-direction: row;
  padding: 14px 10px;
  justify-content: center;
}

.event-title-b {
  height: auto;
  row-gap: 19px;
  display: flex;
  column-gap: 19px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.event-title-c {
  color: #fff;
  width: 100%;
  height: auto;
  font-size: 32px;
  text-align: center;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.event-link-c {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.event-card-g {
  width: 100%;
  height: auto;
  row-gap: 15px;
  display: flex;
  column-gap: 15px;
  align-items: flex-start;
  flex-direction: column;
  padding: 14px 18px;
  justify-content: flex-start;
}

.event-img-d {
  top: 18.5px;
  left: 239px;
  width: 11.298px;
  height: 13.407px;
  position: absolute;
}

.event-img-g {
  top: 18.5px;
  left: 239px;
  width: 11.298px;
  height: 13.407px;
  position: absolute;
}

.event-img-h {
  width: 100%;
  height: 194px;
  border: 1px solid #dfe3e9;
}

.event-event-description {
  color: #000;
  width: 100%;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 175%;
}

.event-img-b {
  width: 100%;
  height: 194px;
  border: 1px solid #dfe3e9;
}

.event-link-i {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.event-card-l {
  width: auto;
  height: auto;
  row-gap: 7px;
  display: flex;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  column-gap: 7px;
  align-items: center;
  background: #222;
  flex-direction: row;
  padding: 10px 12px;
  justify-content: flex-start;
}

.event-card-h {
  width: auto;
  height: auto;
  row-gap: 7px;
  display: flex;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  column-gap: 7px;
  align-items: center;
  background: #222;
  flex-direction: row;
  padding: 10px 12px;
  justify-content: flex-start;
}

.event-img-f {
  width: 23px;
  height: 23px;
}

.event-card-b {
  width: 300px;
  height: auto;
  display: flex;
  align-items: flex-end;
  background: #fff;
  border: 1px solid #dfe3e9;
  flex-direction: column;
  justify-content: flex-start;
}

.event-link {
  width: 264px;
  height: 47px;
  display: flex;
  position: relative;
  flex-direction: column;
}

.event-img-c {
  width: 23px;
  height: 23px;
}

.event-card-m {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
}

.event-card-d {
  width: auto;
  height: auto;
  row-gap: 7px;
  display: flex;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  column-gap: 7px;
  align-items: center;
  background: #222;
  flex-direction: row;
  padding: 10px 12px;
  justify-content: flex-start;
}

.event-link-e {
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  row-gap: 10px;
  display: flex;
  position: absolute;
  column-gap: 10px;
  align-items: center;
  background: #2db7af;
  flex-direction: row;
  padding: 14px 10px;
  justify-content: center;
}

.event-card-k {
  width: 100%;
  height: auto;
  row-gap: 15px;
  display: flex;
  column-gap: 15px;
  align-items: flex-start;
  flex-direction: column;
  padding: 14px 18px;
  justify-content: flex-start;
}

.event-img {
  width: 51px;
  height: 1px;
}

.event-card {
  width: 100%;
  height: auto;
  row-gap: 54px;
  display: flex;
  column-gap: 54px;
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
}

.event-title {
  width: 1008px;
  height: auto;
  row-gap: 36px;
  display: flex;
  column-gap: 36px;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}

.event-img-j {
  top: 18.5px;
  left: 239px;
  width: 11.298px;
  height: 13.407px;
  position: absolute;
}

.event-card-i {
  color: #fff;
  width: auto;
  height: auto;
  font-size: 16px;
  text-align: left;
  font-family: Noto Sans JP;
  font-weight: 700;
}

@media screen and (max-width: 540px) {
  .event-section {
    padding: 66px 24px;
  }

  .event-title-c {
    font-size: 24px;
  }
}
