@charset "UTF-8";
:root {
  --inner-value: 1292;
  --inner: 1292px;
  --inner-value-sm: 856;
  --inner-sm: 856px;
  --padding-pc: 25px;
  --padding-pc-sub: 60px;
  --padding-sp: 20px;
  --rem: 1rem / 16;
  --em: 1em / 16;
  --cqi: 350 * 100cqi;
  --base-font: "Noto Sans JP", sans-serif;
  --en-font: "Poppins", sans-serif;
  --fw-extralight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  --black: #000;
  --black2: #171717;
  --white: #fff;
  --gray: #6a6a6a;
  --gray-dark: #4c4648;
  --blue: #5568e1;
  --teal: #2bd8ba;
  --cyan: #2bc0d8;
  --green-light: #edfce9;
  --green: #5dc849;
  --green-dark: #129b2c;
  --gradient-green: linear-gradient(to right, #5dc849 0%, #129b2c 100%);
  --text-color: #242122;
  --text-sub: #575354;
  --text-nav: #242424;
  --border-color: #a8a8a8;
  --border-color-light: #e9e9e9;
  --bg-base: #fcfcfc;
  --bg-light: #f9faf7;
  --bg-green-light: #ebf8eb;
  --z-index-loader: 1000;
  --z-index-hamburger: 102;
  --z-index-drawer: 99;
  --z-index-header: 100;
  --z-index-pagetop: 90;
  --header-height: calc(85 * var(--rem));
  --scrollbar-width: 0;
}
@media screen and (min-width: 768px) {
  :root {
    --cqi: 1920 * 100cqi;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --header-height: calc(100 * var(--rem));
  }
}

@property --scrollbar {
  syntax: "<length>";
  initial-value: 0;
  inherits: true;
}
:root:has(:modal[open], .is-scroll-lock, .loader) {
  overflow: hidden;
  scrollbar-gutter: stable;
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--base-font);
  font-weight: var(--fw-medium);
  font-feature-settings: "pwid";
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--bg-base);
  container-type: inline-size;
}

:where(h1) {
  margin: initial;
}

picture {
  display: block;
}

img {
  display: block;
}

button {
  padding: unset;
  border: none;
}

input {
  appearance: none;
}

:where(:focus-visible) {
  outline: 2px solid var(--green-dark);
  outline-offset: unset;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (width <= 350px) {
  html {
    font-size: 4.5714285714cqi;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(16 / var(--inner-value) * 100cqi);
  }
}
@media (width >= 1292px) {
  html {
    font-size: 16px;
  }
}

.inner {
  width: 100%;
  max-width: 600px;
  padding-inline: var(--padding-sp);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: calc(var(--inner) + var(--padding-pc) * 2);
    padding-inline: var(--padding-pc);
  }
}

@media screen and (min-width: 768px) {
  .inner[data-size=sm] {
    max-width: calc(var(--inner-sm) + var(--padding-pc) * 2);
  }
}

@media screen and (min-width: 768px) {
  .inner[data-size=sub] {
    max-width: calc(var(--inner) + var(--padding-pc-sub) * 2);
    padding-inline: var(--padding-pc-sub);
  }
}

.layout-404 {
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .layout-404 {
    margin-top: 7.5rem;
  }
}

.layout-common {
  margin-top: 2.5rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .layout-common {
    margin-top: 9.375rem;
  }
}

.layout-contact-business {
  padding-block: 1.5rem 5rem;
}
@media screen and (min-width: 768px) {
  .layout-contact-business {
    padding-block: 2.5rem 7.5rem;
  }
}

.layout-contact-business__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.layout-contact {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .layout-contact {
    margin-top: 5rem;
  }
}

.layout-jobs-detail-header {
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .layout-jobs-detail-header {
    padding-bottom: 1.5rem;
  }
}

.layout-jobs-detail {
  padding-block: 1.5rem 3rem;
}
@media screen and (min-width: 768px) {
  .layout-jobs-detail {
    max-width: calc(var(--inner) + var(--padding-pc) * 2);
    padding-block: 3rem 5rem;
    padding-inline: var(--padding-pc);
    margin-inline: auto;
  }
}

.layout-jobs-search {
  display: grid;
  justify-items: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .layout-jobs-search {
    margin-top: 60px;
  }
}

.layout-jobs {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .layout-jobs {
    margin-top: 82px;
  }
}

@media screen and (min-width: 768px) {
  .layout-new-jobs {
    margin-top: -13.5rem;
  }
}

.layout-section {
  margin-top: 5rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .layout-section {
    margin-top: 16.25rem;
  }
}

.layout-section[data-type=hero-bottom] {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .layout-section[data-type=hero-bottom] {
    margin-top: 17.0625rem;
  }
}

.layout-services {
  margin-top: -6.6875rem;
}
@media screen and (min-width: 768px) {
  .layout-services {
    margin-top: -28.6458333333vw;
  }
}

.layout-subpage {
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .layout-subpage {
    padding-bottom: 16.25rem;
  }
}

.layout-top-search {
  display: grid;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .layout-top-search {
    margin-top: -5.9375rem;
  }
}

.outer {
  --scrollbar: calc(100vw - 100cqw);
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100svh;
}

body:has(.loader) .outer {
  opacity: 0;
}

.about {
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .about {
    --_outer: minmax(0, 1fr);
    --_left: minmax(max(340px, 500 * var(--rem)), calc(594 / 1920 * 100%));
    --_right: minmax(400px, calc(594 * var(--rem)));
    position: relative;
    display: grid;
    grid-template-columns: var(--_outer) var(--_left) var(--_right) var(--_outer);
    padding-bottom: min(28.6458333333vw, 550px);
  }
}

@media screen and (min-width: 768px) {
  .about::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image: url("../images/bg_parallelogram.webp");
    background-repeat: no-repeat;
    background-position: calc(50% + min(23.4375vw, 1000px)) center;
    background-size: cover;
  }
}

@media screen and (min-width: 768px) {
  .about__img {
    grid-row: 1/-1;
    grid-column: 1/-1;
    width: 83.4375%;
  }
}

.about__img picture {
  width: 100%;
  height: 100%;
}

.about__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 350/306;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about__img img {
    aspect-ratio: 1602/1229;
  }
}

.about__wrapper {
  position: relative;
  padding-block: 5.875rem 10.5rem;
}
@media screen and (min-width: 768px) {
  .about__wrapper {
    grid-row: 1/-1;
    grid-column: 3/4;
    padding-block: 25.5208333333vw 80px;
  }
}

@media screen and (min-width: 768px) {
  .about__inner.inner {
    --padding-pc: 0;
  }
}

.about__text {
  margin-top: 0.625rem;
  font-size: max(14px, 1rem);
  line-height: 2.25;
}
@media screen and (min-width: 768px) {
  .about__text {
    margin-top: min(1.0416666667vw, 20px);
    font-size: max(14px, 1.125rem);
    line-height: 2.6666666667;
    word-break: keep-all;
  }
}

.about__button {
  margin-inline: auto;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .about__button {
    margin-inline: unset;
    margin-top: min(2.8125vw, 54px);
  }
}

.aboutus {
  overflow-x: clip;
}

.aboutus__inner.inner {
  display: grid;
  gap: 5rem;
}
@media screen and (min-width: 768px) {
  .aboutus__inner.inner {
    gap: 16.25rem;
  }
}

.aboutus__company {
  --_padding-block: calc(24 * var(--rem));
  --_border: 1px solid var(--green);
  display: grid;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .aboutus__company {
    --_padding-block: calc(40 * var(--rem));
    --_border-desc: 1px solid var(--border-color-light);
  }
}

.aboutus__company-row {
  display: grid;
  gap: 1.25rem;
  padding-block: var(--_padding-block);
  font-size: max(18px, 1.125rem);
  font-weight: var(--fw-semibold);
  line-height: 1.7777777778;
  border-block: var(--_border);
}
@media screen and (min-width: 768px) {
  .aboutus__company-row {
    grid-template-columns: minmax(max-content, 420fr) minmax(0, 856fr);
    gap: 0 1rem;
    align-items: center;
    padding-block: initial;
    border-block: initial;
  }
}

.aboutus__company-row:not(:first-child) {
  border-top: none;
}
@media screen and (min-width: 768px) {
  .aboutus__company-row:not(:first-child) {
    margin-top: -1px;
  }
}

.aboutus__company-term {
  display: grid;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .aboutus__company-term {
    padding-block: var(--_padding-block);
    border-block: var(--_border);
  }
}

.aboutus__company-desc {
  display: grid;
  align-items: center;
  height: 100%;
  font-weight: var(--fw-regular);
}
@media screen and (min-width: 768px) {
  .aboutus__company-desc {
    padding-block: var(--_padding-block);
    border-block: var(--_border-desc);
  }
}

@media screen and (min-width: 768px) {
  .aboutus__company-desc:has(.aboutus__company-map-link) {
    grid-template-columns: auto 1fr;
    gap: 1.125rem;
  }
}

.aboutus__company-map-link {
  display: inline-flex;
  gap: 0.1875rem;
  align-items: center;
  width: fit-content;
  padding: 0.3125rem 1rem 0.375rem;
  margin-top: 1.25rem;
  font-family: var(--fw-regular);
  font-size: 0.9375rem;
  line-height: 1.4;
  border: 2px solid #429b6c;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .aboutus__company-map-link {
    margin-top: initial;
  }
}

.aboutus__company-map-link::before {
  width: 0.875rem;
  aspect-ratio: 14/17;
  content: "";
  background-image: url("../images/icon_pin.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.aboutus__company-list {
  counter-reset: companyNum;
}

.aboutus__company-item {
  display: flex;
  gap: 0.4375rem;
  align-items: center;
  counter-increment: companyNum;
}

.aboutus__company-item::before {
  display: grid;
  place-items: center;
  align-self: flex-start;
  min-width: 1em;
  font-family: var(--en-font);
  color: var(--green);
  content: counter(companyNum);
}

.aboutus__list {
  display: grid;
  gap: 0.75rem;
}

.aboutus__item {
  position: relative;
  padding-left: 0.875rem;
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
}

.aboutus__item::before {
  position: absolute;
  top: 0.5lh;
  left: 0;
  width: 0.375rem;
  aspect-ratio: 1;
  content: "";
  background-color: var(--green);
  border-radius: 50%;
  translate: 0 -50%;
}

.aboutus__content {
  display: grid;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .aboutus__content {
    margin-top: 5rem;
  }
}

.aboutus__section-text {
  font-weight: var(--fw-regular);
}

.aboutus__map {
  --_radius: calc(8 * var(--rem));
  max-height: 25rem;
  clip-path: inset(0 round var(--_radius));
}
@media screen and (min-width: 768px) {
  .aboutus__map {
    --_radius: calc(16 * var(--rem));
    max-height: 33.75rem;
  }
}

.aboutus__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 310/400;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .aboutus__map iframe {
    aspect-ratio: 1292/540;
  }
}

.aboutus__info {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .aboutus__info {
    gap: initial;
  }
}

.aboutus__contact {
  display: grid;
  gap: 0.875rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .aboutus__contact {
    margin-top: 1.125rem;
  }
}

.aboutus__buttons {
  display: grid;
  grid-template-columns: minmax(0, 280px);
  gap: 1rem;
}

.aboutus__head {
  width: fit-content;
  min-width: 14.0625rem;
  padding: 0.1875rem 0.5rem 0.25rem;
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.4444444444;
  color: var(--white);
  background-image: url("../images/bg_rectangle_label.svg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 100% 100%;
}

.aboutus__routes {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .aboutus__routes {
    margin-top: 3.75rem;
  }
}

.aboutus__routes-list {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.aboutus__routes-item {
  display: grid;
  grid-template-areas: "icon label" ". text" ". wrap";
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: center;
}
@media screen and (min-width: 768px) {
  .aboutus__routes-item {
    grid-template-areas: "icon label text" ". wrap wrap";
    grid-template-columns: 2.5rem max-content minmax(0, 1fr);
  }
}

.aboutus__routes-item:has(.aboutus__parking) {
  grid-template-areas: "icon label" "parking parking";
  grid-template-columns: 2.5rem minmax(0, 1fr);
}

.aboutus__routes-icon {
  grid-area: icon;
}

.aboutus__routes-icon img {
  width: 100%;
  aspect-ratio: 40/48;
  object-fit: contain;
}

.aboutus__routes-label {
  grid-area: label;
  align-self: center;
  width: fit-content;
  padding: 0.375rem 0.75rem;
  margin-left: 0.3125rem;
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  color: var(--white);
  background-color: #3bb923;
  border-radius: 4px;
}

.aboutus__routes-text {
  grid-area: text;
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
  line-height: 1.4444444444;
}
@media screen and (min-width: 768px) {
  .aboutus__routes-text {
    margin-left: 0.75rem;
  }
}

.aboutus__routes-wrap {
  display: grid;
  grid-area: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .aboutus__routes-wrap {
    margin-top: 0.75rem;
  }
}

.aboutus__routes-guide {
  padding-left: 2.5em;
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
  line-height: 1.4444444444;
  text-indent: -2.5em;
}

.aboutus__parking {
  grid-area: parking;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .aboutus__parking {
    display: grid;
    grid-template-columns: minmax(0, 638fr) minmax(0, 436fr);
    gap: 1.75rem;
    align-items: start;
  }
}

.aboutus__parking-map img {
  width: 100%;
  aspect-ratio: 310/284;
  object-fit: contain;
}

.aboutus__parking-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 2.125rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .aboutus__parking-list {
    column-gap: 2.875rem;
    margin-top: initial;
  }
}

.aboutus__parking-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  font-size: 1.125rem;
  line-height: 2.5555555556;
  border-bottom: 1px solid var(--border-color-light);
}

.aboutus__parking-item:last-child {
  border-bottom: none;
}

.aboutus__parking-term {
  font-weight: var(--fw-medium);
}

.aboutus__parking-desc {
  font-weight: var(--fw-regular);
}

.breadcrumbs {
  --_default-gap: 8px 12px;
  padding-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    padding-top: 1.875rem;
  }
}

.breadcrumbs__inner.inner {
  max-width: initial;
}
@media screen and (min-width: 768px) {
  .breadcrumbs__inner.inner {
    max-width: calc(1280px + var(--padding-pc) * 2);
  }
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--_default-gap);
  align-items: center;
}

.breadcrumbs__item {
  display: flex;
  gap: var(--_default-gap);
  align-items: baseline;
  font-size: 13px;
  font-weight: var(--fw-medium);
  line-height: 1.4615384615;
  color: var(--green-dark);
  letter-spacing: 0.09em;
}
@media screen and (min-width: 768px) {
  .breadcrumbs__item {
    font-size: 15px;
    line-height: 1.4;
  }
}

.breadcrumbs__item:not(:last-child)::after {
  display: block;
  width: 0.7692307692em;
  aspect-ratio: 1;
  content: "";
  background-image: url("../images/accent_line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .breadcrumbs__item:not(:last-child)::after {
    width: 0.9333333333em;
  }
}

.breadcrumbs__link {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color 0.3s ease;
}

.breadcrumbs__current {
  color: var(--text-sub);
}

@media (any-hover: hover) {
  .breadcrumbs__link:hover {
    text-decoration-color: currentcolor;
  }
}
.business-hero {
  --_padding-inline: var(--padding-sp);
  --_outer: minmax(var(--_padding-inline), 1fr);
  --_content: minmax(0, 600px);
  position: relative;
  display: grid;
  grid-template-columns: var(--_outer) var(--_content) var(--_outer);
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .business-hero {
    --_padding-inline: var(--padding-pc);
    --_img: minmax(0, min(666px, 666 / 1920 * 100%));
    --_content: minmax(0, calc(818 * var(--rem)));
    grid-template-columns: var(--_outer) var(--_img) var(--_content) var(--_outer);
    align-items: center;
    padding-top: 6.625rem;
  }
}

.business-hero__figure {
  position: absolute;
  bottom: 0;
  left: calc(50% - clamp(370px, 808 / var(--cqi), 808px));
  z-index: 1;
  width: clamp(300px, 732 / var(--cqi), 732px);
}

.business-hero__figure img {
  width: 100%;
  aspect-ratio: 732/714;
  object-fit: contain;
}

.business-hero__img {
  grid-area: 1/1/2/-1;
  height: 100%;
}

.business-hero__img picture {
  height: 100%;
}

.business-hero__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 350/371;
  object-fit: cover;
  object-position: left top;
}
@media screen and (min-width: 768px) {
  .business-hero__img img {
    aspect-ratio: 1920/642;
    object-position: center top;
  }
}

.business-hero__content {
  position: relative;
  grid-area: 2/2/3/3;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .business-hero__content {
    grid-area: 1/3/2/4;
    padding-block: 1.25rem;
    padding-inline: 90px min(4.6875vw, 90px);
    background: none;
  }
}

.business-hero__content::before {
  position: absolute;
  inset: 0 calc(50% - 50cqi);
  content: "";
  background-color: var(--bg-light);
}
@media screen and (min-width: 768px) {
  .business-hero__content::before {
    content: none;
  }
}

.business-hero__title {
  position: relative;
  font-size: 1.5rem;
  font-weight: var(--fw-semibold);
  line-height: 1.75;
  color: var(--green-dark);
}
@media screen and (min-width: 768px) {
  .business-hero__title {
    font-size: max(20px, 1.875rem);
    line-height: 1.8666666667;
  }
}

.business-hero__text {
  position: relative;
  margin-top: 2rem;
  font-size: max(16px, 1rem);
  font-weight: var(--fw-regular);
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .business-hero__text {
    margin-top: min(3.4375vw, 66px);
    font-size: max(14px, 1.125rem);
    line-height: 2.3333333333;
  }
}

.business-services__sections {
  display: grid;
  gap: 2.5rem;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .business-services__sections {
    gap: 6.25rem;
    margin-top: 4.75rem;
  }
}

.business-strengths__list {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .business-strengths__list {
    margin-top: 5.5rem;
  }
}

.button {
  --_bg-color: var(--teal) 0%, var(--blue) 100%;
  --_gradient-color: color-mix(in srgb, var(--white) 10%, transparent);
  --_gradient-angle: 45deg;
  --_gradient-area: calc(100% - (56 * var(--rem)));
  --_border-radius: 4px;
  --_gap: 6px;
  --_padding-block: calc(17 * var(--rem));
  --_padding-inline: 1em;
  --_arrow-position: end;
  --_arrow-scale: 1;
  position: relative;
  display: grid;
  grid-template-areas: ". text arrow";
  grid-template-columns: 1fr auto 1fr;
  gap: var(--_gap);
  align-items: center;
  width: 100%;
  padding-block: var(--_padding-block);
  padding-inline: var(--_padding-inline);
  background-image: linear-gradient(var(--_gradient-angle), var(--_gradient-color) var(--_gradient-area), transparent var(--_gradient-area)), linear-gradient(to right, var(--_bg-color));
  border-radius: var(--_border-radius);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: filter 0.3s ease;
}

.button[data-type=back] {
  --_gradient-angle: -45deg;
  --_gradient-area: calc(100% - (56 * var(--rem)));
  --_arrow-position: start;
  --_arrow-scale: -1;
  grid-template-areas: "arrow text .";
}
@media screen and (min-width: 768px) {
  .button[data-type=back] {
    --_gradient-area: calc(100% - (100 * var(--rem)));
    min-height: 6.25rem;
  }
}

.button::after {
  grid-area: arrow;
  justify-self: var(--_arrow-position);
  width: 0.625rem;
  aspect-ratio: 10/17;
  content: "";
  background-image: url("../images/icon_chevron-thin.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: translate 0.3s ease;
  scale: var(--_arrow-scale);
}

@media screen and (min-width: 768px) {
  .button[data-type=back]::after {
    width: 0.8125rem;
    aspect-ratio: 13/26;
  }
}

.button__text {
  grid-area: text;
  font-size: max(14px, 1.125rem);
  font-weight: var(--fw-semibold);
  line-height: 1.4444444444;
  color: var(--white);
}

@media screen and (min-width: 768px) {
  .button[data-type=back] .button__text {
    font-size: max(15px, 1.25rem);
    line-height: 1.45;
  }
}

@media (any-hover: hover) {
  .button:hover {
    filter: brightness(1.1);
  }
  .button:hover::after {
    translate: 0.1875rem;
  }
  .button[data-type=back]:hover::after {
    translate: -0.1875rem;
  }
}
.contact-button {
  --_bg-color: var(--cyan) 0%, #3148dc 100%;
  --_gradient-color: color-mix(in srgb, var(--white) 10%, transparent);
  --_gradient-angle: 45deg;
  --_gradient-area: calc(100% - (45 * var(--rem)));
  --_border-radius: 6px;
  --_padding-block: calc(16 * var(--rem));
  --_padding-inline: 1em;
  position: relative;
  display: grid;
  grid-template-areas: ". icon text .";
  grid-template-columns: 1fr repeat(2, auto) 1fr;
  gap: 0.5rem;
  place-content: center;
  place-items: center;
  width: 100%;
  padding-block: var(--_padding-block);
  padding-inline: var(--_padding-inline);
  color: var(--white);
  background-image: linear-gradient(var(--_gradient-angle), var(--_gradient-color) var(--_gradient-area), transparent var(--_gradient-area)), linear-gradient(to right, var(--_bg-color));
  background-size: 100% 100%, 100% 100%;
  border-radius: var(--_border-radius);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: filter 0.3s ease-out, background-image 0.3s ease-out;
}
@media screen and (min-width: 1440px) {
  .contact-button {
    --_gradient-area: calc(100% - (36 * var(--rem)));
    --_padding-block: calc(7 * var(--rem)) calc(8 * var(--rem));
    --_padding-inline: 0.5em;
    grid-template-areas: ". icon text arrow";
  }
}

.contact-button[data-color=green],
.contact-button[data-type=green-arrow] {
  --_bg-color: var(--green) 0%, var(--green-dark) 100%;
}

.contact-button[data-type=green-arrow] {
  --_gradient-area: calc(100% - (56 * var(--rem)));
  --_padding-block: calc(17 * var(--rem)) calc(18 * var(--rem));
  --_padding-inline: 0.5em;
  grid-template-areas: ". icon text arrow";
}
@media screen and (min-width: 768px) {
  .contact-button[data-type=green-arrow] {
    --_padding-block: calc(15 * var(--rem)) calc(16 * var(--rem));
    --_padding-inline: calc(10 * var(--rem));
  }
}

.contact-button[data-size=large] {
  --_gradient-area: calc(100% - (115 * var(--rem)));
  --_padding-block: calc(30 * var(--rem));
  --_padding-inline: 1em;
  grid-template-areas: ". icon arrow" ". text arrow";
  grid-template-columns: 1fr auto 1fr;
  gap: unset;
}
@media screen and (min-width: 768px) {
  .contact-button[data-size=large] {
    --_gradient-area: calc(100% - (208 / 640 * 100%));
    --_padding-block: min(68 / 640 * 100%, 68px);
    --_padding-inline: calc(38 * var(--rem));
  }
}

.contact-button::after {
  grid-area: arrow;
  justify-self: end;
  width: 0.9375rem;
  aspect-ratio: 15/27;
  background-image: url("../images/icon_chevron-thin.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: translate 0.3s ease;
}
@media screen and (min-width: 1440px) {
  .contact-button::after {
    width: 0.4375rem;
  }
}

.contact-button[data-type=green-arrow]::after {
  width: 7px;
  content: "";
}

.contact-button[data-size=large]::after {
  content: "";
}
@media screen and (min-width: 768px) {
  .contact-button[data-size=large]::after {
    width: 1.375rem;
  }
}

.contact-button__icon {
  grid-area: icon;
  width: 1.4375rem;
}

.contact-button[data-size=large] .contact-button__icon {
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .contact-button[data-size=large] .contact-button__icon {
    width: 3rem;
  }
}

.contact-button__icon img {
  width: 100%;
  aspect-ratio: 23/16;
  object-fit: contain;
}

.contact-button__text {
  grid-area: text;
  font-size: max(13px, 0.9375rem);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .contact-button[data-type=green-arrow] .contact-button__text {
    font-size: max(15px, 1.125rem);
    line-height: 1.4444444444;
  }
}

.contact-button[data-size=large] .contact-button__text {
  margin-top: 0.375rem;
  font-size: 1.625rem;
  line-height: 1.4230769231;
}
@media screen and (min-width: 768px) {
  .contact-button[data-size=large] .contact-button__text {
    font-size: 2rem;
    line-height: 1.4375;
  }
}

.contact-button[data-size=large] .contact-button__text span {
  display: block;
  margin-top: 0.1875rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-button[data-size=large] .contact-button__text span {
    margin-top: 0.5rem;
    font-size: max(15px, 1.125rem);
    line-height: 1.4444444444;
  }
}

@media (any-hover: hover) {
  .contact-button:hover {
    filter: brightness(1.1);
  }
  .contact-button:hover::after {
    translate: 0.3125rem;
  }
}
.contact {
  position: relative;
  padding-block: max(22px, 6.2857142857cqi) min(62.8571428571cqi, 220px);
  overflow-x: clip;
  background-image: url("../images/bg_contact-sp.webp");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 5.625rem 8.4375rem;
    background-image: url("../images/bg_contact.webp"), url("../images/bg_line.svg");
    background-position: center top, calc(50% - max(280px, 31.25vw)) top;
    background-size: max(1100px, 100%) auto, 37.8125% auto;
  }
}

.contact::before {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  aspect-ratio: 350/233;
  content: "";
  background-image: url("../images/bg_contact_run.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 768px) {
  .contact::before {
    left: calc(50% - clamp(100px, 6.7708333333vw, 130px));
    width: clamp(600px, 278.667px + 41.84vw, 1082px);
  }
}

.contact[data-page=business]::before,
.contact[data-page=seeker]::before {
  max-width: 400px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact[data-page=business]::before,
  .contact[data-page=seeker]::before {
    max-width: unset;
    margin-inline: unset;
  }
}

.contact__inner.inner {
  position: relative;
}

.contact__title {
  display: grid;
  place-items: center;
  text-align: center;
}

.contact__title-en {
  font-family: var(--en-font);
  font-size: 0.9375rem;
  font-weight: var(--fw-light);
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .contact__title-en {
    font-size: max(15px, 1.125rem);
    line-height: 1.5;
  }
}

.contact__title-jp {
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
  line-height: 1.45;
  color: var(--green-dark);
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .contact__title-jp {
    font-size: 2.5rem;
    line-height: 1.45;
  }
}

.contact__title-jp-line {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 1.625rem;
  font-weight: var(--fw-extrabold);
  line-height: 1.4230769231;
  border-bottom: 2px solid var(--white);
}
@media screen and (min-width: 768px) {
  .contact__title-jp-line {
    font-size: 3.75rem;
    line-height: 1.45;
  }
}

.contact__title-jp-line:nth-of-type(2) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .contact__title-jp-line:nth-of-type(2) {
    margin-top: -0.625rem;
  }
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: max(18px, 5.1428571429cqi);
}
@media screen and (min-width: 768px) {
  .contact__buttons {
    flex-wrap: nowrap;
    gap: 0.875rem;
    margin-top: 3rem;
  }
}

.contact__button {
  flex: 0 1 25rem;
}
@media screen and (min-width: 768px) {
  .contact__button {
    flex: 0 1 39.875rem;
  }
}

.corner-clip {
  --_clip-size: calc(47 / 350 * 100cqi);
  --_clip-width: calc(100% - (var(--_clip-size)));
  --_clip-height: var(--_clip-size);
  clip-path: polygon(0 0, var(--_clip-width) 0, 100% var(--_clip-height), 100% 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .corner-clip {
    --_clip-size: calc(504 / 1920 * 100cqi);
  }
}

.corner-clip[data-clip=reverse] {
  clip-path: polygon(0 var(--_clip-height), var(--_clip-size) 0, 100% 0, 100% 100%, 0 100%);
}

.drawer {
  display: grid;
  align-content: start;
  height: 100%;
  padding-block: calc(var(--header-height) + 2rem) 3.75rem;
  overflow-y: auto;
}

.drawer__inner.inner {
  position: relative;
  max-width: min(100%, 38.375rem);
}
@media screen and (min-width: 768px) {
  .drawer__inner.inner {
    max-width: 600px;
  }
}

.drawer__nav-item {
  border-block: 1px solid var(--green);
}

.drawer__nav-item:not(:first-child) {
  margin-top: -1px;
}

.drawer__nav-link {
  display: block;
  padding-block: 0.875rem;
  font-size: max(14px, 1rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--text-nav);
  letter-spacing: 0.09em;
  transition: background-color 0.3s ease-out;
}

@media (any-hover: hover) {
  .drawer__nav-link:hover {
    background-color: var(--green-light);
  }
}
.drawer__buttons {
  display: grid;
  grid-template-columns: minmax(max-content, 15.625rem);
  gap: 1.25rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.footer {
  padding-block: 2.25rem 1.25rem;
  background-color: var(--bg-green-light);
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 5.4375rem 1.125rem;
  }
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .footer__container {
    gap: 3.75rem 2.5rem;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .footer__info {
    grid-area: info;
  }
}

.footer__logo {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    flex-flow: row wrap;
    column-gap: 2.1875rem;
  }
}

.footer__logo-link {
  display: block;
  width: 13.9375rem;
  transition: opacity 0.3s ease;
}

.footer__logo-link img {
  width: 100%;
  aspect-ratio: 223/63;
  object-fit: contain;
}

.footer__logo-text {
  display: grid;
  gap: 0.3125rem;
  margin-top: 1.25rem;
  color: var(--text-color);
}
@media screen and (min-width: 768px) {
  .footer__logo-text {
    align-content: start;
    width: fit-content;
    margin-top: initial;
  }
}

.footer__logo-text-main {
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .footer__logo-text-main {
    font-size: max(16px, 1.25rem);
  }
}

.footer__logo-text-sub {
  font-size: max(12px, 0.75rem);
  font-weight: var(--fw-semibold);
  line-height: 1.4166666667;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

@media (any-hover: hover) {
  .footer__logo-link:hover {
    opacity: 0.8;
  }
}
.footer__address {
  margin-top: 2.25rem;
  font-size: max(14px, 0.875rem);
  font-weight: var(--fw-regular);
  line-height: 1.7857142857;
  color: var(--text-color);
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .footer__address {
    margin-top: 2.8125rem;
  }
}

.footer__address-tel {
  display: flex;
  gap: 0.375rem;
  align-items: baseline;
  margin-top: 0.75rem;
  font-size: 1.5rem;
  line-height: 1;
}

.footer__address-tel span {
  font-family: var(--en-font);
  font-size: 0.875rem;
  line-height: 1.7857142857;
  opacity: 0.6;
}

.footer__links {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .footer__links {
    width: min(100%, 550px);
    margin-top: initial;
  }
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.25rem;
  align-items: center;
  width: min(100%, 18.75rem);
}
@media screen and (min-width: 768px) {
  .footer__nav {
    width: 100%;
    padding-left: 1.25rem;
  }
}

.footer__nav-item {
  --_margin-left: calc(-14 * var(--rem));
  position: relative;
  display: flex;
  align-items: center;
}

.footer__nav-item:nth-child(2n) {
  margin-left: var(--_margin-left);
}

@media screen and (min-width: 768px) {
  .footer__nav-item:not(:first-of-type) {
    margin-left: var(--_margin-left);
  }
}

.footer__nav-item::before,
.footer__nav-item::after {
  width: 0.875rem;
  aspect-ratio: 1;
  content: "";
  background-image: url("../images/accent_line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer__nav-link {
  padding-inline: 1rem;
  font-size: max(14px, 1rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--text-color);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  letter-spacing: 0.09em;
  transition: text-decoration-color 0.3s ease;
}

@media (any-hover: hover) {
  .footer__nav-link:hover {
    text-decoration-color: var(--text-color);
  }
}
.footer__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem 0.625rem;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .footer__buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__button {
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
  width: min(100%, 16.875rem);
  padding: 1.25rem;
  background: var(--cyan);
  border-radius: 4px;
  transition: filter 0.3s ease;
}
@media screen and (min-width: 768px) {
  .footer__button {
    width: 100%;
  }
}

.footer__button[data-color=green] {
  background: var(--green);
}

.footer__button-icon {
  flex-shrink: 0;
  width: 1.4375rem;
}

.footer__button-icon img {
  width: 100%;
  aspect-ratio: 23/16;
  object-fit: contain;
}

.footer__button-text {
  font-size: max(13px, 0.9375rem);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  color: var(--white);
}

@media (any-hover: hover) {
  .footer__button:hover {
    filter: brightness(1.1);
  }
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 2.625rem;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    margin-top: 3.375rem;
  }
}

.footer__bottom-link {
  position: relative;
  display: flex;
  gap: 0.25rem;
  align-items: baseline;
  font-size: max(14px, 1rem);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--text-color);
  letter-spacing: 0.09em;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer__bottom-link[target=_blank]::after {
  width: calc(17 * var(--em));
  aspect-ratio: 17/12;
  content: "";
  background-image: url("../images/icon_blank.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (any-hover: hover) {
  .footer__bottom-link:hover {
    opacity: 1;
  }
}
.footer__sns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.footer__sns-link {
  display: block;
  width: 40px;
  padding: 5px;
  background-color: var(--white);
  border-radius: 4px;
  transition: background-color 0.3s ease-out;
}

.footer__sns-link img {
  width: 100%;
  object-fit: contain;
}

@media (any-hover: hover) {
  .footer__sns-link:hover {
    background-color: color-mix(in srgb, var(--white) 60%, transparent);
  }
}
.footer__copyright {
  margin-top: 2.8125rem;
  font-family: var(--en-font);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 2.0833333333;
  color: var(--text-color);
  text-align: center;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    width: 100%;
    margin-top: 2.5rem;
    font-size: max(12px, 0.875rem);
    line-height: 1.7857142857;
  }
}

.guide {
  display: grid;
  gap: 3.75rem;
  padding-block: 2.625rem 5.4375rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .guide {
    gap: 5.125rem;
    padding-block: 3.375rem 13.75rem;
  }
}

.guide-section {
  --_padding-inline: var(--padding-sp);
  --_outer: minmax(var(--_padding-inline), 1fr);
  --_content: minmax(0, 600px);
  display: grid;
  grid-template-areas: "img img img" ". content .";
  grid-template-columns: var(--_outer) var(--_content) var(--_outer);
}
@media screen and (min-width: 768px) {
  .guide-section {
    --_padding-inline: var(--padding-pc);
    --_img: minmax(0, 804px);
    --_content: minmax(0, 500px);
    grid-template-areas: "img img content .";
    grid-template-columns: var(--_outer) var(--_img) var(--_content) var(--_outer);
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .guide-section[data-type=seekers] {
    --_img: minmax(0, 790px);
    grid-template-areas: ". content img img";
    grid-template-columns: var(--_outer) var(--_content) var(--_img) var(--_outer);
    align-items: center;
  }
}

.guide-section__img {
  grid-area: img;
  width: 128.5714285714%;
}
@media screen and (min-width: 768px) {
  .guide-section__img {
    width: 98.0215827338%;
  }
}

.guide-section__img img {
  width: 100%;
  aspect-ratio: 450/352;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .guide-section__img img {
    aspect-ratio: 1090/780;
  }
}

.guide-section[data-type=seekers] .guide-section__img {
  position: relative;
  left: calc(50% - 78.5714285714cqi);
  width: 145.7142857143%;
}
@media screen and (min-width: 768px) {
  .guide-section[data-type=seekers] .guide-section__img {
    left: unset;
    width: 94.1441441441%;
    margin-left: auto;
  }
}

.guide-section[data-type=seekers] .guide-section__img img {
  aspect-ratio: 510/320;
}
@media screen and (min-width: 768px) {
  .guide-section[data-type=seekers] .guide-section__img img {
    aspect-ratio: 1045/706;
  }
}

.guide-section__content {
  grid-area: content;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .guide-section__content {
    padding-top: 2rem;
    margin-top: unset;
  }
}

@media screen and (min-width: 768px) {
  .guide-section[data-type=seekers] .guide-section__content {
    padding-top: 4.125rem;
  }
}

.guide-section__text {
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .guide-section__text {
    margin-top: 3.125rem;
  }
}

.guide-section__button {
  margin-inline: auto;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .guide-section__button {
    margin-inline: unset;
    margin-top: 1.875rem;
  }
}

.header-button {
  --_gradient-angle: 45deg;
  --_gradient-area: calc(100% - (45 * var(--rem)));
  --_border-radius: 6px;
  --_padding-block: calc(8 * 1em / 15);
  --_padding-inline: 1em;
  --_bg1: var(--cyan);
  --_bg2: #3148dc;
  position: relative;
  display: grid;
  grid-template-areas: ". icon text arrow";
  grid-template-columns: minmax(0, 1fr) repeat(2, auto) minmax(0, 1fr);
  gap: 0.5333333333em;
  place-content: center;
  place-items: center;
  width: 100%;
  padding: var(--_padding-block) var(--_padding-inline);
  font-size: max(13px, 0.9375rem);
  color: var(--white);
  background-image: linear-gradient(var(--_gradient-angle), color-mix(in srgb, var(--white) 10%, transparent) var(--_gradient-area), transparent var(--_gradient-area)), linear-gradient(to right, var(--_bg1) 0%, var(--_bg2) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%;
  border-radius: var(--_border-radius);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: filter 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .header-button {
    --_padding-block: calc(5 * 1em / 15);
    font-size: max(10px, 0.8125rem);
  }
}
@media screen and (min-width: 768px) {
  .header-button[data-size=large] {
    --_gradient-area: calc(100% - (36 * var(--rem)));
    --_padding-block: calc(7 * 1em / 15) calc(8 * 1em / 15);
    --_padding-inline: 0.5em;
    font-size: max(13px, 0.9375rem);
  }
}
@media screen and (min-width: 1440px) {
  .header-button {
    --_gradient-area: calc(100% - (36 * var(--rem)));
    --_padding-block: calc(7 * 1em / 15) calc(8 * 1em / 15);
    --_padding-inline: 0.5em;
    font-size: max(13px, 0.9375rem);
  }
}

.header-button[data-color=green] {
  --_bg1: var(--green);
  --_bg2: var(--green-dark);
}

.header-button::after {
  grid-area: arrow;
  justify-self: end;
  width: 0.4375rem;
  aspect-ratio: 15/27;
  content: "";
  background-image: url("../images/icon_chevron-thin.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header-button__icon {
  grid-area: icon;
  width: 1.4375rem;
}

.header-button__icon img {
  width: 100%;
  aspect-ratio: 23/16;
  object-fit: contain;
}

.header-button__text {
  grid-area: text;
  font-weight: var(--fw-semibold);
  line-height: 1.4;
}

@media (any-hover: hover) {
  .header-button:hover {
    filter: brightness(1.2);
  }
}
.header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-index-header);
  height: var(--header-height);
}

.header.is-scrolled {
  background-color: var(--white);
}

.header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: 0.625rem 1rem;
  margin-inline: auto;
  transition: background-color 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .header__inner {
    gap: 0.9375rem;
    padding-inline: 1.71875cqi 2.0833333333cqi;
  }
}

.header.is-scrolled .header__inner {
  background-color: var(--white);
}

.header__logo-link {
  display: grid;
  align-items: center;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header__logo-link {
    grid-template-columns: auto minmax(0, 1fr);
    gap: min(0.8333333333vw, 16px);
  }
}

.header__logo-img {
  width: 7.1875rem;
}
@media screen and (min-width: 768px) {
  .header__logo-img {
    width: 8.90625cqi;
  }
}

.header__logo-img img {
  width: 100%;
  aspect-ratio: 115/32;
  object-fit: contain;
}

.header__logo-text {
  display: grid;
  font-weight: var(--fw-semibold);
  color: var(--black2);
}
@media screen and (min-width: 768px) {
  .header__logo-text {
    gap: 2px;
  }
}

.header__logo-text-main {
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .header__logo-text-main {
    font-size: max(12px, 1.0416666667cqi);
    line-height: 1.45;
  }
}

.header__logo-text-sub {
  font-size: 0.625rem;
  line-height: 1.5;
  color: var(--gray);
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .header__logo-text-sub {
    font-size: max(10px, 0.625cqi);
    line-height: 1.4166666667;
  }
}

@media (any-hover: hover) {
  .header__logo-link:hover {
    opacity: 0.8;
  }
}
.header__nav {
  display: none;
}
@media (width >= 821px) {
  .header__nav {
    display: block;
    flex: 1;
    margin-left: auto;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.header__nav-item:not(:first-of-type) {
  margin-left: max(-0.7291666667cqi, -14px);
}

.header__nav-item::before,
.header__nav-item::after {
  width: min(0.7291666667cqi, 14px);
  aspect-ratio: 1;
  content: "";
  background-image: url("../images/accent_line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__nav-link {
  padding-inline: calc(12 * var(--em));
  font-size: clamp(12px, 0.8333333333cqi, 16px);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--text-nav);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  letter-spacing: 0.09em;
  white-space: nowrap;
  transition: text-decoration-color 0.3s ease;
}

@media (any-hover: hover) {
  .header__nav-link:hover {
    text-decoration-color: var(--text-color);
  }
}
.header__nav-buttons {
  display: none;
}
@media (width >= 821px) {
  .header__nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1440px) {
  .header__nav-buttons {
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-button {
    flex-shrink: 0;
    min-width: 16.6875rem;
  }
}

.header__hamburger {
  --_text-color: var(--white);
  --_bg-color: var(--teal);
  --_line-width: calc(27 / 50 * 100cqi);
  --_line-height: 2px;
  --_line-deg: 45deg;
  --_line-gap: max(6px, calc(8 * var(--rem)));
  position: relative;
  display: grid;
  gap: 0.625rem;
  place-content: end center;
  place-items: center;
  width: max(40px, 3.125rem);
  aspect-ratio: 1;
  padding-bottom: 0.1875rem;
  margin-left: auto;
  background-color: var(--_bg-color);
  border-radius: 4px;
  transition: opacity 0.3s ease-out;
}
@media (width >= 821px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger-line {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--_line-width);
  height: var(--_line-height);
  background-color: var(--_text-color);
  transition: background-color 0.3s ease-out;
}

.header__hamburger.is-open .header__hamburger-line {
  background-color: transparent;
}

.header__hamburger-line::before,
.header__hamburger-line::after {
  position: absolute;
  z-index: 1;
  display: block;
  width: inherit;
  height: inherit;
  content: "";
  background-color: var(--_text-color);
  transition: rotate 0.3s ease-out, top 0.3s ease-out;
  transform-origin: center center;
}

.header__hamburger-line::before {
  top: calc(var(--_line-gap) * -1);
}

.header__hamburger-line::after {
  top: var(--_line-gap);
}

.header__hamburger.is-open .header__hamburger-line::before {
  top: initial;
  rotate: var(--_line-deg);
}

.header__hamburger.is-open .header__hamburger-line::after {
  top: initial;
  rotate: calc(var(--_line-deg) * -1);
}

.header__hamburger-text {
  position: relative;
  font-family: var(--en-font);
  font-size: 22cqi;
  font-weight: var(--fw-semibold);
  line-height: 1.5454545455;
  color: var(--_text-color);
  white-space: nowrap;
  transition: opacity 0.3s ease-out;
}

.header__hamburger-text[data-text=close] {
  position: absolute;
  bottom: 0.1875rem;
}

.header__hamburger-text[data-text=menu] {
  opacity: 1;
}

.header__hamburger-text[data-text=close] {
  opacity: 0;
}

.header__hamburger.is-open .header__hamburger-text[data-text=menu] {
  opacity: 0;
}

.header__hamburger.is-open .header__hamburger-text[data-text=close] {
  opacity: 1;
}

@media (any-hover: hover) {
  .header__hamburger:hover {
    opacity: 0.8;
  }
}
.header__drawer {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  visibility: hidden;
  background-color: var(--white);
  opacity: 0;
  transition: visibility 0.3s ease-out, opacity 0.3s ease-out;
}

.header__drawer[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}

.job-card {
  --_border-color: var(--green-dark);
  --_bg-color: var(--white);
  --_header-color: var(--green-light);
  position: relative;
  padding-top: 0.75rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  border-radius: 4px;
}

.job-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-block;
  padding-inline: 0.5rem 1.625rem;
  padding-top: 0.125rem;
  font-size: max(9px, 0.75rem);
  font-weight: var(--fw-semibold);
  color: var(--white);
  background-color: var(--green-dark);
  mask-image: url("../images/bg_label.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}

.job-card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: clip;
  border: 2px solid var(--_border-color);
  border-radius: 4px;
}

.job-card:has(.job-card__badge) .job-card__link {
  border-top-width: 9px;
}

.job-card__header {
  padding: 1rem 0.75rem;
  background-color: var(--_header-color);
}

.job-card:has(.job-card__badge) .job-card__header {
  padding-top: 0.625rem;
}

.job-card__tag {
  display: inline-block;
  padding: 0.3125rem;
  font-size: max(13px, 1rem);
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--white);
  background-color: var(--blue);
  border-radius: 2px;
}

.job-card__date {
  display: block;
  width: fit-content;
  padding: 0.25rem 0.75rem;
  margin-top: 0.3125rem;
  font-size: max(12px, 0.875rem);
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--text-sub);
  background-color: var(--_bg-color);
  border-radius: 2px;
}

.job-card__title {
  display: -webkit-box;
  margin-top: 0.5rem;
  overflow: hidden;
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.4444444444;
  color: var(--text-color);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 768px) {
  .job-card__title {
    font-size: max(16px, 1.25rem);
  }
}

.job-card__id {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.4615384615;
  color: var(--gray-dark);
}
@media screen and (min-width: 768px) {
  .job-card__id {
    margin-top: 0.9375rem;
    font-size: max(10px, 0.8125rem);
  }
}

.job-card__body {
  padding: 1rem 0.75rem 1.125rem;
  background-color: var(--_bg-color);
}
@media screen and (min-width: 768px) {
  .job-card__body {
    padding-block: 1.25rem 1.75rem;
  }
}

.job-card__appeal-head {
  width: fit-content;
  padding-block: 1px;
  padding-inline: 0.4375rem 1.875rem;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  line-height: 1.4615384615;
  color: var(--green-dark);
  background-color: var(--_header-color);
  mask-image: url("../images/bg_appeal.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}

.job-card__appeal-text {
  display: -webkit-box;
  margin-top: 0.625rem;
  overflow: hidden;
  font-size: max(14px, 0.9375rem);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  color: #464646;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (min-width: 768px) {
  .job-card__appeal-text {
    margin-top: 0.75rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

.job-card__button {
  position: relative;
  display: block;
  width: fit-content;
  padding: 0.25rem 1.75rem 0.3125rem;
  margin-inline: auto;
  margin-top: 0.5rem;
  clip-path: inset(0 round 2px);
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  color: var(--text-color);
  text-align: center;
  background-color: var(--_bg-color);
  border: 2px solid;
  border-image: var(--gradient-green) 1;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .job-card__button {
    margin-top: 1.5rem;
  }
}

.job-card__button::before {
  position: absolute;
  inset: -1px;
  clip-path: inset(0 100% 0 0);
  content: "";
  background-image: var(--gradient-green);
  transition: clip-path 0.3s ease;
}

.job-card__button span {
  position: relative;
}

@media (any-hover: hover) {
  .job-card:hover .job-card__button {
    color: var(--white);
  }
  .job-card:hover .job-card__button::before {
    clip-path: inset(0);
  }
}
.layout-detail {
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .layout-detail {
    margin-top: 5.75rem;
  }
}

.jobs-detail__back {
  width: min(100%, 310px);
  margin-inline: auto;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .jobs-detail__back {
    width: min(100%, max(310px, 28.125rem));
    margin-top: 8.75rem;
  }
}

.jobs-results {
  display: grid;
  gap: 12px;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .jobs-results {
    grid-template-columns: minmax(max-content, 1fr) auto minmax(0, 1fr);
    place-items: center start;
  }
}

.jobs-result__header {
  display: flex;
  gap: 1px;
  align-items: baseline;
  font-size: 13px;
  font-weight: var(--fw-regular);
  line-height: 1.4615384615;
}

.jobs-result__num {
  font-size: 16px;
  font-weight: var(--fw-semibold);
}

.jobs-result__unit {
  font-weight: var(--fw-semibold);
}

@media screen and (min-width: 768px) {
  .jobs__inner.inner {
    max-width: calc(856px + var(--padding-pc) * 2);
  }
}

.jobs__list {
  display: grid;
  gap: 1.875rem;
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .jobs__list {
    gap: 3.125rem;
  }
}

.jobs__results-bottom {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .jobs__results-bottom {
    margin-top: 4.25rem;
  }
}

.jobs__no-results {
  display: grid;
  gap: 2rem;
  padding-block: 80px;
  margin-top: 5rem;
  text-align: center;
  border-block: 1px solid var(--green);
}
@media screen and (min-width: 768px) {
  .jobs__no-results {
    gap: 2.5rem;
    margin-top: 6.875rem;
  }
}

.jobs__no-results-main {
  font-size: 1.375rem;
  font-weight: var(--fw-medium);
  line-height: 1.5384615385;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .jobs__no-results-main {
    font-size: max(24px, 1.625rem);
  }
}

.jobs__no-results-sub {
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 2;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .jobs__no-results-sub {
    font-size: max(16px, 1.25rem);
  }
}

.mv {
  --_padding-inline: minmax(var(--padding-sp), 1fr);
  --_inner: calc(310 / 350 * 100%);
  --_row-top: min(117 / 350 * 100cqi, 180px);
  --_color: var(--gray-dark);
  display: grid;
  grid-template-rows: var(--_row-top) repeat(2, auto);
  grid-template-columns: var(--_padding-inline) var(--_inner) var(--_padding-inline);
}
@media screen and (min-width: 768px) {
  .mv {
    --_padding-inline: minmax(var(--padding-pc), 1fr);
    --_inner: minmax(0, max(530px, 585 / 1920 * 100cqi));
    --_outer: minmax(0, calc(532 / 1920 * 100%));
    --_row-top: var(--header-height);
    grid-template-rows: minmax(100px, 288fr) repeat(2, auto) minmax(100px, 222fr);
    grid-template-columns: var(--_padding-inline) var(--_inner) var(--_outer) var(--_padding-inline);
    overflow: clip;
  }
}

.mv__bg {
  grid-row: 1/3;
  grid-column: 1/-1;
  max-height: 800px;
}
@media screen and (min-width: 768px) {
  .mv__bg {
    grid-row: 1/5;
    max-height: initial;
  }
}

.mv__bg picture {
  width: 100%;
  height: 100%;
}

.mv__bg img {
  width: 100%;
  height: 100%;
  aspect-ratio: 350/475;
  object-fit: cover;
  object-position: center top;
}
@media screen and (min-width: 768px) {
  .mv__bg img {
    aspect-ratio: 1920/892;
  }
}

.mv__title {
  grid-row: 2/3;
  grid-column: 2/3;
  padding-inline: 8px;
  font-size: min(5.1428571429cqi, 30px);
  font-weight: var(--fw-semibold);
  line-height: 1.4444444444;
  color: var(--_color);
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .mv__title {
    font-size: clamp(24px, 2.0833333333cqi, 40px);
    line-height: 1.45;
  }
}

.mv__title span {
  display: inline-grid;
  place-items: center;
  font-size: 1.4444444444em;
  font-weight: var(--fw-extrabold);
  line-height: 1.4230769231;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .mv__title span {
    font-size: 1.5em;
    line-height: 1.45;
  }
}

.mv__title-quotes {
  position: relative;
  margin-right: min(5.1428571429cqi, 32px);
}
@media screen and (min-width: 768px) {
  .mv__title-quotes {
    left: 0.5rem;
    margin-right: min(2.34375cqi, 45px);
  }
}

.mv__title-quotes::before {
  position: absolute;
  width: 113.0434782609%;
  aspect-ratio: 156/43;
  content: "";
  background-image: url("../images/mv_quotes-sp.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .mv__title-quotes::before {
    top: 0.3125rem;
    width: 112.5786163522%;
    aspect-ratio: 358/83;
    background-image: url("../images/mv_quotes.svg");
  }
}

.mv__title-line {
  position: relative;
  margin-top: 0.375rem;
  margin-right: 0.125rem;
}
@media screen and (min-width: 768px) {
  .mv__title-line {
    margin-top: unset;
  }
}

.mv__title-line::after {
  position: absolute;
  inset-inline: 0;
  bottom: -0.375rem;
  height: 3px;
  content: "";
  background-image: linear-gradient(to left, var(--blue) 0%, var(--teal) 100%);
}
@media screen and (min-width: 768px) {
  .mv__title-line::after {
    height: 0.375rem;
  }
}

.mv__title-line:nth-child(2 of .mv__title-line) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .mv__title-line:nth-child(2 of .mv__title-line) {
    margin-top: unset;
  }
}

.mv__text {
  grid-column: 2/3;
  padding-block: 6.8571428571cqi 4.5714285714cqi;
  padding-inline: 0.875rem;
  font-size: min(4cqi, 16px);
  font-weight: var(--fw-medium);
  line-height: 1.8571428571;
  color: var(--_color);
}
@media screen and (min-width: 768px) {
  .mv__text {
    grid-row: 3/4;
    width: max(90%, 30.46875cqi);
    padding-block: unset;
    padding-inline: 1rem 2rem;
    margin-top: 2rem;
    font-size: max(16px, 1.125rem);
    line-height: 1.7777777778;
  }
}

.mv__scroll {
  display: flex;
  grid-row: 1/3;
  grid-column: 3/4;
  gap: 5px;
  align-items: center;
  margin-top: min(67.4285714286vw, 400px);
  font-family: var(--en-font);
  font-size: 11px;
  font-weight: var(--fw-regular);
  color: var(--white);
  opacity: 0.7;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .mv__scroll {
    position: relative;
    right: 1.375rem;
    grid-row: 1/-1;
    grid-column: 4/5;
    gap: 1.0625rem;
    width: fit-content;
    margin-top: min(27.0833333333vw, 520px);
    margin-left: auto;
    font-size: max(12px, 1.125rem);
  }
}

.mv__scroll::after {
  width: 1px;
  height: 2.3125rem;
  content: "";
  background-color: currentcolor;
  opacity: 0.4;
  animation: scroll 3s linear infinite;
}
@media screen and (min-width: 768px) {
  .mv__scroll::after {
    height: 4.0625rem;
  }
}

.new-jobs {
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-size: 7px;
  --swiper-navigation-size: 40;
  --swiper-slide-width: calc(280 * var(--rem));
  padding-block: 2.8125rem 3.3125rem;
  overflow-x: clip;
  background-image: url("../images/bg_new-job-sp.webp");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .new-jobs {
    --swiper-slide-width: max(323 * var(--rem), 200px);
    padding-block: 18.125rem 9.375rem;
    background-image: url("../images/bg_new-job.webp");
  }
}

@media screen and (min-width: 768px) {
  .new-jobs__inner.inner {
    --padding-pc: 60px;
    max-width: calc(1364px + var(--padding-pc) * 2);
  }
}

.new-jobs__title {
  text-align: center;
}

.new-jobs__container {
  position: relative;
}

.new-jobs__slider {
  margin-top: 1.875rem;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .new-jobs__slider {
    overflow: hidden;
  }
}

.new-jobs__slide {
  width: min(100%, var(--swiper-slide-width));
}

.new-jobs__buttons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

:is(.new-jobs__button-prev, .new-jobs__button-next) {
  --size: max(calc(var(--swiper-navigation-size) * var(--rem)), 32px);
  --x-offset: calc(28 * var(--rem));
  position: absolute;
  top: 50%;
  width: var(--size);
  height: var(--size);
  margin: initial;
  pointer-events: auto;
  background-color: var(--teal);
  border-radius: 0.25rem;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  :is(.new-jobs__button-prev, .new-jobs__button-next) {
    --x-offset: calc(-10 * var(--rem));
  }
}

.new-jobs__button-prev {
  left: var(--x-offset);
  scale: -1;
  translate: -100% -50%;
}

.new-jobs__button-next {
  right: var(--x-offset);
  translate: 100% -50%;
}

:is(.new-jobs__button-prev, .new-jobs__button-next) img {
  width: calc(10 / var(--swiper-navigation-size) * 100%);
  aspect-ratio: 10/17;
  object-fit: contain;
}

.new-jobs__button-prev::after,
.new-jobs__button-next::after {
  content: none;
}

.new-jobs__pagination.swiper-pagination-bullets {
  position: relative;
  inset: initial;
  display: flex;
  gap: 0.4375rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.new-jobs__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
  margin: initial;
  background-color: var(--border-color);
  opacity: 1;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.new-jobs__pagination.swiper-pagination-bullets .swiper-pagination-bullet::before {
  position: absolute;
  inset: -0.1875rem;
  content: "";
}
.new-jobs__pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--gray-dark);
}

.new-jobs__button {
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .new-jobs__button {
    margin-top: 3rem;
  }
}

@media (any-hover: hover) {
  :is(.new-jobs__button-prev, .new-jobs__button-next):hover {
    opacity: 0.7;
  }
  .new-jobs__pagination .swiper-pagination-bullet:hover {
    background-color: var(--gray-dark);
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .page-404__inner.inner {
    max-width: calc(856px + var(--padding-pc) * 2);
  }
}

.page-404__content {
  display: grid;
  gap: 2.5rem;
  padding-block: 2.5rem;
  border-block: 1px solid var(--green);
}
@media screen and (min-width: 768px) {
  .page-404__content {
    gap: 5rem;
    padding-block: 5rem;
  }
}

.page-404__text {
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-404__text {
    font-size: max(15px, 1.25rem);
  }
}

.page-404__button {
  width: min(100%, 19.375rem);
  margin-inline: auto;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-404__button {
    width: min(100%, 28.125rem);
    margin-top: 4.375rem;
  }
}

.page-contact__steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .page-contact__steps-list {
    gap: 18px;
  }
}

.page-contact__steps-item {
  display: grid;
  place-items: center;
  background-color: var(--border-color);
  border-radius: 2px;
  mask-image: url("../images/bg_rectangle_label.svg");
  mask-repeat: no-repeat;
  mask-position: right top;
  mask-size: 100% 100%;
}

.page-contact__steps-label {
  display: block;
  padding: 2px 1em;
  font-size: 12px;
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .page-contact__steps-label {
    padding-block: 13px 14px;
    font-size: 18px;
  }
}

.page-contact__steps-item[data-current=true] {
  background-color: var(--green-dark);
}

.page-contact__form {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-contact__form {
    margin-top: 3.75rem;
  }
}

.page-contact__complete {
  padding-block: 2.5rem;
  margin-top: 1.875rem;
  text-align: center;
  border-block: 1px solid var(--green);
}
@media screen and (min-width: 768px) {
  .page-contact__complete {
    padding-block: 5rem;
    margin-top: 4.75rem;
  }
}

.page-contact__message {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .page-contact__message {
    font-size: max(24px, 1.75rem);
    line-height: 1.4285714286;
  }
}

.page-contact__text {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page-contact__text {
    margin-top: 5rem;
    font-size: max(15px, 1.25rem);
    line-height: 2;
  }
}

.page-contact__tel {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page-contact__tel {
    margin-top: 5rem;
    font-size: max(15px, 1.25rem);
    line-height: 2;
  }
}

.page-contact__tel-link {
  display: inline-block;
  font-weight: var(--fw-bold);
}

.page-contact__button-wrap {
  width: min(100%, 310px);
  margin-inline: auto;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .page-contact__button-wrap {
    width: min(100%, max(310px, 28.125rem));
    margin-top: 5rem;
  }
}

.page-header {
  --_padding-inline: var(--padding-sp);
  display: grid;
  place-content: center;
  place-items: center;
  min-height: 6.6875rem;
  padding-block: 1em;
  padding-inline: var(--_padding-inline);
  text-align: center;
  background-image: url("../images/bg_page-header-sp.webp");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: min(117.1428571429%, 900px) 100%;
}
@media screen and (min-width: 768px) {
  .page-header {
    --_padding-inline: var(--padding-pc);
    gap: 1rem;
    min-height: 16.4375rem;
    background-image: url("../images/bg_page-header.webp");
    background-position: right top;
    background-size: cover;
  }
}

.page-header__en {
  font-family: var(--en-font);
  font-size: 0.875rem;
  font-weight: var(--fw-light);
  line-height: 1.4285714286;
  color: var(--green-light);
}
@media screen and (min-width: 768px) {
  .page-header__en {
    font-size: max(14px, 1rem);
    line-height: 1.5625;
  }
}

.page-header__jp {
  font-size: 1.75rem;
  font-weight: var(--fw-semibold);
  line-height: 1.4285714286;
  color: var(--white);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  letter-spacing: 0.06em;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .page-header__jp {
    font-size: 2.5rem;
    line-height: 1.45;
  }
}

.page-policy__content {
  margin-top: 3.75rem;
}

.page-policy__text {
  font-weight: var(--fw-regular);
}

.page-policy__list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-policy__list {
    margin-top: 3.75rem;
  }
}

.page-policy__item {
  position: relative;
  padding-left: 21px;
  font-size: max(16px, 1rem);
  font-weight: var(--fw-regular);
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .page-policy__item {
    line-height: 1.75;
  }
}

.page-policy__num {
  position: absolute;
  top: 0.5lh;
  left: 0;
  font-family: var(--en-font);
  line-height: 2;
  color: var(--green);
  translate: 0 -50%;
}

.page-policy__end {
  margin-top: 2.5rem;
  font-weight: var(--fw-regular);
  text-align: right;
}
@media screen and (min-width: 768px) {
  .page-policy__end {
    margin-top: 6.125rem;
  }
}

.pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: var(--z-index-pagetop);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  width: 20px;
  padding-block: 22px 5px;
  background-color: #b0e5a6;
  mask-image: url("../images/bg_pagetop.svg");
  mask-repeat: no-repeat;
  mask-position: center top;
  mask-size: cover;
  transition: background-color 0.3s ease;
}

.pagetop::before {
  flex-shrink: 0;
  width: 6px;
  aspect-ratio: 1;
  content: "";
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  rotate: 45deg;
}

.pagetop__text {
  position: relative;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-family: var(--en-font);
  font-size: 11px;
  font-weight: var(--fw-regular);
  line-height: 1;
  color: var(--white);
  writing-mode: vertical-rl;
}

.pagetop__text::before {
  width: 1px;
  height: 22px;
  content: "";
  background-color: var(--white);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .pagetop:hover {
    background-color: var(--green);
  }
}
.pagination__list {
  --_arrow-offset: 3px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
}

.pagination__item {
  display: grid;
  flex-shrink: 0;
  place-items: center;
}

.pagination__num {
  display: grid;
  place-items: center;
  width: 26px;
  aspect-ratio: 1;
  font-size: 16px;
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--white);
  background-color: var(--border-color);
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.pagination__item.current .pagination__num {
  background-color: var(--teal);
}

.pagination__prev,
.pagination__next {
  display: grid;
  width: calc(8px + var(--_arrow-offset) * 2);
  aspect-ratio: 8/13;
  padding-inline: var(--_arrow-offset);
  transition: opacity 0.3s ease;
}

.pagination__prev {
  scale: -1;
}

.pagination__prev img,
.pagination__next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (any-hover: hover) {
  .pagination__num:hover {
    background-color: var(--teal);
  }
  .pagination__prev:hover,
  .pagination__next:hover {
    opacity: 0.7;
  }
}
.result-card {
  --_base-color: var(--green-dark);
  position: relative;
  background-color: var(--white);
  border: 2px solid var(--_base-color);
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(76, 70, 72, 0.13);
}

.result-card:has(.result-card__new) {
  border-top-width: 9px;
}

.result-card__new {
  position: absolute;
  top: 0;
  left: -2px;
  padding-block: 2px 1px;
  padding-inline: 0.5rem 1.625rem;
  font-family: var(--en-font);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  color: var(--white);
  background-color: var(--_base-color);
  border-radius: 4px 4px 0 0;
  mask-image: url("../images/bg_label.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  translate: 0 -100%;
}
@media screen and (min-width: 768px) {
  .result-card__new {
    font-size: 12px;
  }
}

.result-card__header {
  display: grid;
  padding: 1.5rem 1.125rem 1.25rem;
  background-color: var(--green-light);
}
@media screen and (min-width: 768px) {
  .result-card__header {
    padding: 1.6875rem 2.375rem 2.125rem;
  }
}

.result-card:has(.result-card__new) .result-card__header {
  padding-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .result-card:has(.result-card__new) .result-card__header {
    padding-top: 1.25rem;
  }
}

.result-card__tag {
  display: block;
  width: fit-content;
  padding: 5px 6px;
  font-size: max(1rem, 16px);
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--white);
  background-color: var(--blue);
  border-radius: 2px;
  text-box: trim-both cap alphabetic;
}

.result-card__date {
  display: block;
  width: fit-content;
  padding: 4px 12px;
  margin-top: 0.5625rem;
  font-size: max(14px, 0.875rem);
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--text-sub);
  background-color: var(--white);
  border-radius: 2px;
}

.result-card__title {
  margin-top: 0.5625rem;
  font-size: max(18px, 1.25rem);
  font-weight: var(--fw-semibold);
  line-height: 1.45;
  color: var(--text-color);
}

.result-card__id {
  margin-top: 0.5rem;
  font-size: max(0.8125rem, 13px);
  font-weight: var(--fw-semibold);
  line-height: 1.4615384615;
  color: var(--gray-dark);
}
@media screen and (min-width: 768px) {
  .result-card__id {
    margin-top: 0.9375rem;
  }
}

.result-card__id span {
  display: inline-block;
  margin-left: 0.625rem;
}

.result-card__body {
  padding: 1.875rem 1.25rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .result-card__body {
    padding: 40px 2.5rem 30px;
  }
}

.result-card[data-type=detail] .result-card__body {
  padding-block: 3.125rem 3.75rem;
}

.result-card__list {
  --_border: 1px solid var(--border-color-light);
  display: grid;
  border-top: var(--_border);
}

.result-card__row {
  display: grid;
  gap: 8px;
  padding-block: 10px;
  font-size: max(15px, 0.9375rem);
  border-bottom: var(--_border);
}
@media screen and (min-width: 768px) {
  .result-card__row {
    display: grid;
    grid-template-columns: minmax(0, 170px) minmax(0, 1fr);
    align-items: center;
  }
}

.result-card__term {
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  color: var(--_base-color);
}

.result-card__desc {
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--text-color);
}

.result-card__desc a {
  color: var(--_base-color);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .result-card__desc a:hover {
    opacity: 0.7;
  }
}
.result-card__buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 260px));
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .result-card__buttons {
    margin-top: 24px;
  }
}

.result-card[data-type=detail] .result-card__buttons {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .result-card[data-type=detail] .result-card__buttons {
    grid-template-columns: minmax(0, max(260px, 21.875rem));
    margin-top: 58px;
  }
}

.result-card__more {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 1.3333333333em 1em;
  font-size: max(15px, 0.9375rem);
  background-image: var(--gradient-green);
  border-radius: 2px;
  transition: filter 0.3s ease, color 0.3s ease;
}

.result-card__more::before {
  position: absolute;
  inset: 1px;
  clip-path: inset(0 0 0 0);
  content: "";
  background-color: var(--white);
  transition: clip-path 0.3s ease;
}

.result-card__more-text {
  position: relative;
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-align: center;
}

@media (any-hover: hover) {
  .result-card__more:hover {
    color: var(--white);
  }
  .result-card__more:hover::before {
    clip-path: inset(0 0 0 100%);
  }
}
.result-card__entry {
  position: relative;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.1333333333em 1em;
  font-size: max(15px, 0.9375rem);
  color: var(--white);
  background-image: var(--gradient-green);
  border-radius: 2px;
  transition: filter 0.3s ease;
}

@media screen and (min-width: 768px) {
  .result-card[data-type=detail] .result-card__entry {
    min-width: min(100%, max(260px, 21.875rem));
    min-height: 5rem;
  }
}

.result-card__entry-icon {
  display: block;
  flex-shrink: 0;
  width: 1.5333333333em;
}

.result-card__entry-icon img {
  width: 100%;
  aspect-ratio: 23/16;
  object-fit: contain;
}

.result-card__entry-text {
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  text-align: center;
}

@media (any-hover: hover) {
  .result-card__entry:hover {
    filter: brightness(1.1);
  }
}
.search {
  --_color: var(--black);
  --_row-height: calc(50 * var(--rem));
  --_border: 3px solid var(--green-dark);
  position: relative;
  width: min(100%, 68rem);
  font-size: max(16px, 1rem);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--_color);
}
@media screen and (min-width: 768px) {
  .search {
    --_row-height: calc(55 * var(--rem));
    --_border-gray-offset: calc(12 / 55 * 100%);
  }
}

@media screen and (min-width: 768px) {
  .search :focus-visible {
    outline-offset: -2px;
  }
}

.search__label {
  display: inline-block;
  padding-block: 0.625rem;
  padding-inline: 1rem 2.9375rem;
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  line-height: 1.45;
  color: var(--white);
  background-image: url("../images/bg_label.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .search__label {
    position: relative;
    top: 0.625rem;
    padding-block: 0.875rem 1.25rem;
    padding-inline: 2.5rem 5.625rem;
    font-size: max(20px, 1.5rem);
    line-height: 1.4583333333;
  }
}

.search__container {
  padding: 0.625rem;
  margin-top: -0.625rem;
  background-image: linear-gradient(90deg, var(--green) 0%, var(--green) 37.24%, var(--green-dark) 100%);
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .search__container {
    padding: 1.25rem;
  }
}

.search__form {
  display: grid;
  grid-template-areas: "work" "job" "area" "schedule" "range" "input" "submit";
  background-color: var(--white);
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .search__form {
    grid-template-areas: "work job" "area area" "schedule schedule" "range range" "input input" "submit submit";
    grid-template-columns: minmax(0, 656fr) minmax(0, 390fr);
  }
}

.search__row {
  padding: 0.8125rem 1.25rem 1.625rem;
}
@media screen and (min-width: 768px) {
  .search__row {
    min-height: var(--_row-height);
    padding: 0.5rem 1.25rem;
  }
}

.search__row[data-type=work] {
  grid-area: work;
  padding: 2rem 1.25rem 1.625rem;
}
@media screen and (min-width: 768px) {
  .search__row[data-type=work] {
    padding: 0.5rem 1.25rem;
  }
}

.search__row[data-type=job] {
  grid-area: job;
  padding: unset;
}
@media screen and (min-width: 768px) {
  .search__row[data-type=job] {
    border-left: var(--_border);
  }
}

.search__row[data-type=area] {
  grid-area: area;
  padding: unset;
}
@media screen and (min-width: 768px) {
  .search__row[data-type=area] {
    padding-left: 1.25rem;
  }
}

.search__row[data-type=schedule] {
  grid-area: schedule;
}
@media screen and (min-width: 768px) {
  .search__row[data-type=schedule] {
    padding: 0.5rem 1.25rem;
  }
}

.search__row[data-type=range] {
  grid-area: range;
}
@media screen and (min-width: 768px) {
  .search__row[data-type=range] {
    padding: 0.5rem 1.25rem;
  }
}

.search__row[data-type=free] {
  grid-area: input;
  padding: unset;
}
@media screen and (min-width: 768px) {
  .search__row[data-type=free] {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-left: 1.25rem;
  }
}

.search__row[data-type=submit] {
  grid-area: submit;
  padding: 1.125rem 1.25rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .search__row[data-type=submit] {
    padding: 1rem 1.25rem;
  }
}

.search__row:not(:last-child) {
  border-bottom: var(--_border);
}

@media screen and (min-width: 768px) {
  .search__fieldset {
    height: 100%;
  }
}

@media screen and (min-width: 768px) {
  .search__wrap {
    display: grid;
    grid-template-columns: minmax(0, 6.5625rem) 1fr;
    align-items: center;
    height: 100%;
  }
}

.search__row-label {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: var(--_row-height);
  padding: 0.625rem 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--black2);
}
@media screen and (min-width: 768px) {
  .search__row-label {
    width: max-content;
    min-height: unset;
    padding: unset;
  }
}

.search__row-label[data-style=none] {
  min-height: unset;
  padding: unset;
}

.search__check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.125rem;
  align-items: center;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .search__check-group {
    padding-inline: 0.875rem;
    margin-top: unset;
  }
}

[data-type=schedule] .search__check-group {
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  [data-type=schedule] .search__check-group {
    gap: 1.125rem;
  }
}

.search__checkbox {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
}

.search__checkbox-input {
  position: relative;
  display: grid;
  flex-shrink: 0;
  grid-template: "checkbox";
  place-items: center;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 4px;
}
.search__checkbox-input::before {
  position: absolute;
  inset: 0;
  grid-area: checkbox;
  content: "";
  background-color: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 0.25rem;
  transition: background-color 0.2s ease;
}
.search__checkbox-input::after {
  position: absolute;
  grid-area: checkbox;
  width: 0.9375rem;
  aspect-ratio: 15/12;
  content: "";
  background-image: url("../images/icon_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.search__checkbox-input:checked::before {
  background-color: var(--black2);
}
.search__checkbox-input:checked::after {
  opacity: 1;
}
.search__checkbox-input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

.search__row:has(.search__job-select) {
  position: relative;
}

.search__row:has(.search__job-select)::after {
  position: absolute;
  top: calc(50% - 2px);
  right: 1.6875rem;
  width: 0.8125rem;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  border-top: 2px solid;
  border-left: 2px solid;
  rotate: -135deg;
  translate: 0 -50%;
}

.search__job-select {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: var(--_row-height);
  padding-block: 0.625rem;
  padding-inline: 1.25rem 3.125rem;
  appearance: none;
  background-color: var(--white);
}
.search__job-select:has(option:checked[value=""]) {
  font-weight: var(--fw-semibold);
}
@media screen and (min-width: 768px) {
  .search__job-select {
    height: 100%;
    min-height: unset;
    padding: 0.5rem 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .search__select-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
  }
}

.search__area-wrap {
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--green-dark) 40%, transparent);
}
@media screen and (min-width: 768px) {
  .search__area-wrap {
    border: none;
    border-left: 1px solid var(--green-dark);
  }
}

@media screen and (min-width: 768px) {
  .search__area-wrap:first-child {
    border-color: var(--gray-dark);
    border-image: linear-gradient(to bottom, transparent 0 var(--_border-gray-offset), var(--gray-dark) var(--_border-gray-offset) calc(100% - var(--_border-gray-offset)), transparent calc(100% - var(--_border-gray-offset))) 1;
  }
}

.search__area-wrap::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 1.75rem;
  width: 0.625rem;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  border-top: 2px solid;
  border-left: 2px solid;
  rotate: -135deg;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .search__area-wrap::after {
    right: 1.5rem;
  }
}

.search__area-select {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 2.5rem;
  padding-block: 0.5rem;
  padding-inline: 1.25rem 3.125rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  appearance: none;
  background-color: var(--white);
}
.search__area-select:has(option:checked[value=""]) {
  font-weight: var(--fw-semibold);
}
@media screen and (min-width: 768px) {
  .search__area-select {
    height: 100%;
    padding-inline: 0.8125rem 3.125rem;
    font-size: max(14px, 1rem);
    line-height: 1.5;
  }
}

.search__range-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.9375rem;
  align-items: center;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .search__range-group {
    flex: 1;
    padding-inline: 0.9375rem;
    margin-top: unset;
  }
}

.search__range-wrap {
  position: relative;
  width: min(100%, 14.375rem);
}
@media screen and (min-width: 768px) {
  .search__range-wrap {
    width: min(100%, 21.375rem);
  }
}

.search__range-wrap::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 0.9375rem;
  width: 0.4375rem;
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  border-top: 2px solid;
  border-left: 2px solid;
  rotate: -135deg;
  translate: 0 -50%;
}

.search__range-select {
  position: relative;
  width: 100%;
  min-height: 2.25rem;
  padding-block: 0.375rem;
  padding-inline: 0.75rem 1.5rem;
  appearance: none;
  background-color: var(--bg-light);
  border: 1px solid var(--green);
  border-radius: 0.25rem;
}

.search__range-sep {
  font-weight: var(--fw-regular);
}

.search__input {
  width: 100%;
  height: var(--_row-height);
  padding: 0.625rem;
  border-top: 1px solid color-mix(in srgb, var(--green-dark) 40%, transparent);
}
@media screen and (min-width: 768px) {
  .search__input {
    flex: 1;
    padding-inline: 1.5rem;
    border: none;
    border-left: 1px solid;
    border-image: linear-gradient(to bottom, transparent 0 var(--_border-gray-offset), var(--gray-dark) var(--_border-gray-offset) calc(100% - var(--_border-gray-offset)), transparent calc(100% - var(--_border-gray-offset))) 1;
  }
}

.search__input::placeholder {
  color: #d4d4d4;
}
@media screen and (min-width: 768px) {
  .search__input::placeholder {
    font-size: max(14px, 1.125rem);
  }
}

.search__submit {
  --_gradient-color: color-mix(in srgb, var(--white) 10%, transparent);
  --_gradient-angle: 45deg;
  --_gradient-area: calc(100% - 40px);
  --_border-radius: 4px;
  --_gap: 6px;
  --_padding-block: calc(12 * var(--rem));
  --_padding-inline: 1em;
  position: relative;
  display: flex;
  gap: var(--_gap);
  align-items: center;
  justify-content: center;
  width: min(100%, 14.8125rem);
  padding-block: var(--_padding-block);
  padding-inline: var(--_padding-inline);
  margin-inline: auto;
  background-image: linear-gradient(var(--_gradient-angle), var(--_gradient-color) var(--_gradient-area), transparent var(--_gradient-area)), linear-gradient(to right, var(--teal) 0%, var(--blue) 100%);
  border-radius: var(--_border-radius);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: filter 0.3s ease;
}
@media screen and (min-width: 768px) {
  .search__submit {
    width: min(100%, 19.375rem);
  }
}

.search__submit-icon {
  flex-shrink: 0;
  width: 1.1875rem;
  transition: scale 0.3s ease;
}

.search__submit-icon img {
  aspect-ratio: 1;
  object-fit: contain;
}

.search__submit-text {
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.4444444444;
  color: var(--white);
}

@media (any-hover: hover) {
  .search__submit:hover {
    filter: brightness(1.1);
  }
  .search__submit:hover .search__submit-icon {
    scale: 1.2;
  }
}
.section-header {
  --_padding-inline: var(--padding-sp);
  display: grid;
  place-content: center;
  place-items: center;
  min-height: 6.6875rem;
  padding-block: 0.5rem 1rem;
  padding-inline: var(--_padding-inline);
  text-align: center;
  background-image: url("../images/bg_section-header_left-sp.webp");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: min(117.1428571429%, 900px);
}
@media screen and (min-width: 768px) {
  .section-header {
    --_padding-inline: var(--padding-pc);
    gap: 0.375rem;
    min-height: 14.375rem;
    padding-block: 2.25rem;
    background-image: url("../images/bg_section-header_left.webp");
    background-position: 74% top;
    background-size: cover;
  }
}

.section-header[data-bg=right] {
  background-image: url("../images/bg_section-header_right-sp.webp");
  background-position: right top;
}
@media screen and (min-width: 768px) {
  .section-header[data-bg=right] {
    background-image: url("../images/bg_section-header_right.webp");
    background-position: 26% top;
  }
}

.section-header__en {
  display: block;
  font-family: var(--en-font);
  font-size: 0.8125rem;
  font-weight: var(--fw-light);
  line-height: 1.5384615385;
  color: var(--green-light);
}
@media screen and (min-width: 768px) {
  .section-header__en {
    font-size: max(13px, 0.9375rem);
    line-height: 1.5333333333;
  }
}

.section-header__jp {
  font-size: 1.5rem;
  font-weight: var(--fw-semibold);
  line-height: 1.3333333333;
  color: var(--white);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  letter-spacing: -0.03em;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .section-header__jp {
    font-size: 2.5rem;
    line-height: 1.6;
    letter-spacing: 0.06em;
  }
}

.section-title {
  display: grid;
}

.section-title[data-size=middle] {
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .section-title[data-size=middle] {
    gap: 0.625rem;
  }
}

.section-title__en {
  font-family: var(--en-font);
  font-size: 0.8125rem;
  font-weight: var(--fw-light);
  line-height: 1.5384615385;
  color: var(--green);
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    font-size: max(13px, 0.9375rem);
    line-height: 1.5333333333;
    letter-spacing: unset;
  }
}

.section-title[data-size=large] .section-title__en {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .section-title[data-size=large] .section-title__en {
    font-size: max(16px, 1.125rem);
  }
}

@media screen and (min-width: 768px) {
  .section-title[data-size=middle] .section-title__en {
    font-size: max(14px, 1rem);
    line-height: 1.5625;
  }
}

.section-title__jp {
  font-size: 1.625rem;
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--text-sub);
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .section-title__jp {
    font-size: 2.5rem;
    line-height: 1.45;
  }
}

.section-title[data-size=large] .section-title__jp {
  font-size: 2.125rem;
  font-weight: var(--fw-extrabold);
  line-height: 1.4411764706;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  .section-title[data-size=large] .section-title__jp {
    font-size: 3rem;
  }
}

.section-title[data-size=middle] .section-title__jp {
  font-size: 1.5rem;
  line-height: 1.4583333333;
  letter-spacing: unset;
}
@media screen and (min-width: 768px) {
  .section-title[data-size=middle] .section-title__jp {
    font-size: 2.625rem;
    line-height: 1.4523809524;
    letter-spacing: 0.06em;
  }
}

.seeker-flow__list {
  display: grid;
  gap: 5rem;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .seeker-flow__list {
    gap: 5.25rem;
    margin-top: 7.5rem;
  }
}

.seeker-flow__item {
  --_content-padding-bottom: calc(50 * var(--rem));
  --_img-margin-top: calc(52 * var(--rem));
  --_img-width: calc(175 * var(--rem));
  --_title-margin-top: calc(38 * var(--rem));
  position: relative;
  padding: 0.625rem;
  background-color: var(--bg-green-light);
  border-radius: 0.625rem;
  box-shadow: 0 0.1875rem 1.875rem rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .seeker-flow__item {
    --_content-padding-bottom: unset;
    --_img-margin-top: unset;
    --_img-width: calc(222 * var(--rem));
    --_title-margin-top: unset;
    min-height: 33.625rem;
  }
}

.seeker-flow__item:not(:last-of-type)::after {
  --_border: 2px solid var(--green);
  position: absolute;
  bottom: -3.125rem;
  left: 50%;
  width: 2.1875rem;
  aspect-ratio: 1;
  content: "";
  border-top: var(--_border);
  border-right: var(--_border);
  rotate: 135deg;
  translate: -50%;
}

.seeker-flow__item:nth-of-type(2) {
  --_content-padding-bottom: calc(30 * var(--rem));
  --_img-margin-top: calc(20 * var(--rem));
  --_img-width: calc(222 * var(--rem));
  --_title-margin-top: calc(26 * var(--rem));
}
@media screen and (min-width: 768px) {
  .seeker-flow__item:nth-of-type(2) {
    --_content-padding-bottom: unset;
    --_img-margin-top: unset;
    --_title-margin-top: unset;
  }
}

.seeker-flow__item:nth-of-type(3) {
  --_content-padding-bottom: calc(30 * var(--rem));
  --_img-margin-top: calc(20 * var(--rem));
  --_img-width: calc(198 * var(--rem));
  --_title-margin-top: calc(45 * var(--rem));
}
@media screen and (min-width: 768px) {
  .seeker-flow__item:nth-of-type(3) {
    --_content-padding-bottom: unset;
    --_img-margin-top: unset;
    --_img-width: calc(222 * var(--rem));
    --_title-margin-top: unset;
  }
}

.seeker-flow__content {
  padding: 1.25rem 1.25rem var(--_content-padding-bottom);
  background-color: var(--white);
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .seeker-flow__content {
    --_row-top: calc(45 * var(--rem));
    --_row-bottom: var(--_row-top);
    --_column-outer: minmax(20px, 1fr);
    --_column-img: minmax(0, min(300px, 300 / 1920 * 100vw));
    --_column-content: minmax(0, 638px);
    --_img-content-gap: minmax(0, min(120 / 1920 * 100vw, 120px));
    display: grid;
    grid-template: "step step step step step" var(--_row-top) ". img . content ." 1fr ". . . . ." var(--_row-bottom)/var(--_column-outer) var(--_column-img) var(--_img-content-gap) var(--_column-content) var(--_column-outer);
    place-items: center start;
    height: 100%;
    padding: 1.25rem;
  }
}

.seeker-flow__step {
  display: block;
  font-family: var(--en-font);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.4814814815;
  color: #c0e8c0;
}
@media screen and (min-width: 768px) {
  .seeker-flow__step {
    grid-area: step;
    align-self: start;
  }
}

.seeker-flow__img {
  width: min(var(--_img-width), 100%);
  margin-inline: auto;
  margin-top: var(--_img-margin-top);
}
@media screen and (min-width: 768px) {
  .seeker-flow__img {
    grid-area: img;
  }
}

.seeker-flow__img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.seeker-flow__body {
  margin-top: var(--_title-margin-top);
}
@media screen and (min-width: 768px) {
  .seeker-flow__body {
    grid-area: content;
  }
}

.seeker-flow__title {
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  line-height: 1.6;
  color: var(--green-dark);
}
@media screen and (min-width: 768px) {
  .seeker-flow__title {
    font-size: max(20px, 1.625rem);
    line-height: 1.6153846154;
  }
}

.seeker-flow__lead {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.4444444444;
  color: var(--text-sub);
}
@media screen and (min-width: 768px) {
  .seeker-flow__lead {
    margin-top: 2.5rem;
    font-size: max(18px, 1.25rem);
    line-height: 2.1;
  }
}

.seeker-flow__text {
  margin-top: 1.25rem;
  font-size: max(16px, 1rem);
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .seeker-flow__text {
    margin-top: 1rem;
    line-height: 2;
  }
}

.seeker-flow__button {
  max-width: min(100%, 15.625rem);
  margin-inline: auto;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .seeker-flow__button {
    max-width: min(100%, max(250px, 21.875rem));
    margin-inline: unset;
  }
}

.seeker-flow__prep {
  padding: 0.75rem 1rem;
  margin-top: 1.25rem;
  background-color: var(--green-light);
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .seeker-flow__prep {
    padding: 1.75rem 1.875rem;
    margin-top: 2.25rem;
  }
}

.seeker-flow__prep-label {
  font-size: max(16px, 1rem);
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  color: var(--green-dark);
}

.seeker-flow__prep-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.75rem;
  margin-top: 0.375rem;
}

.seeker-flow__prep-item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: max(16px, 1rem);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--text-color);
}
@media screen and (min-width: 768px) {
  .seeker-flow__prep-item {
    line-height: 2.25;
  }
}

.seeker-flow__prep-item:not(:last-child) {
  padding-right: 0.75rem;
}

.seeker-flow__prep-item:not(:last-child)::after {
  position: absolute;
  right: 0;
  width: 1px;
  height: max(17px, 1.0625rem);
  content: "";
  background-color: var(--green);
}

.seeker-hero {
  --_padding-inline: var(--padding-sp);
  --_outer: minmax(var(--_padding-inline), 1fr);
  --_content: minmax(0, 600px);
  position: relative;
  display: grid;
  grid-template-columns: var(--_outer) var(--_content) var(--_outer);
  padding-top: 1.5rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .seeker-hero {
    --_padding-inline: var(--padding-pc);
    --_img: minmax(0, 666px);
    --_content: minmax(0, 638px);
    grid-template-columns: var(--_outer) var(--_img) var(--_content) var(--_outer);
    align-items: center;
    padding-top: 5.375rem;
  }
}

.seeker-hero__figure {
  position: absolute;
  bottom: 0;
  left: calc(50% - clamp(432px, 930 / var(--cqi), 930px));
  z-index: 1;
  width: clamp(500px, 1025 / var(--cqi), 1025px);
}

.seeker-hero__figure img {
  width: 100%;
  aspect-ratio: 1025/729;
  object-fit: contain;
}

.seeker-hero__img {
  position: relative;
  left: calc(50% - min(59.4285714286cqi, 1000px));
  grid-area: 1/1/2/-1;
  width: min(521 / var(--cqi), 1000px);
}
@media screen and (min-width: 768px) {
  .seeker-hero__img {
    left: unset;
    width: 100%;
    height: 100%;
  }
}

.seeker-hero__img picture {
  width: 100%;
  height: 100%;
}

.seeker-hero__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 521/347;
  object-fit: cover;
  object-position: center top;
}
@media screen and (min-width: 768px) {
  .seeker-hero__img img {
    aspect-ratio: 1920/643;
  }
}

.seeker-hero__content {
  position: relative;
  z-index: 1;
  grid-area: 2/2/3/3;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .seeker-hero__content {
    grid-area: 1/3/2/4;
    padding-block: 2.5rem min(80 / var(--cqi), 80px);
    background: none;
  }
}

.seeker-hero__content::before {
  position: absolute;
  inset: 0 calc(50% - 50cqi);
  content: "";
  background-color: var(--bg-light);
}
@media screen and (min-width: 768px) {
  .seeker-hero__content::before {
    content: none;
  }
}

.seeker-hero__title {
  position: relative;
  font-size: 1.5rem;
  font-weight: var(--fw-semibold);
  line-height: 1.75;
  color: var(--green-dark);
}
@media screen and (min-width: 768px) {
  .seeker-hero__title {
    font-size: max(20px, 1.875rem);
    line-height: 1.8666666667;
  }
}

.seeker-hero__text {
  position: relative;
  margin-top: 1.5rem;
  font-size: max(16px, 1rem);
  font-weight: var(--fw-regular);
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .seeker-hero__text {
    margin-top: min(3.4375vw, 66px);
    font-size: max(14px, 1.125rem);
    line-height: 2.3333333333;
  }
}

.seeker-strength__list {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .seeker-strength__list {
    gap: 7.5rem;
    margin-top: 7.5rem;
  }
}

.seeker-strength__item {
  display: grid;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .seeker-strength__item {
    grid-template-columns: minmax(0, 540fr) minmax(0, 638fr);
    gap: min(5.8333333333vw, 112px);
    align-items: center;
  }
}

.seeker-strength__img img {
  width: 100%;
  aspect-ratio: 310/212;
  border-radius: 4px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .seeker-strength__img img {
    border-radius: 8px;
  }
}

.seeker-strength__label {
  display: block;
  font-family: var(--en-font);
  font-size: max(17px, 1.0625rem);
  font-weight: var(--fw-regular);
  color: var(--green);
}

.seeker-strength__title {
  margin-top: 0.3125rem;
  font-size: 1.5rem;
  font-weight: var(--fw-semibold);
  line-height: 1.5;
  color: var(--text-sub);
}
@media screen and (min-width: 768px) {
  .seeker-strength__title {
    font-size: max(20px, 1.75rem);
    line-height: 1.5;
  }
}

.seeker-strength__text {
  margin-top: 1.5rem;
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .seeker-strength__text {
    margin-top: 2.25rem;
  }
}

.service-card {
  --_base-color: var(--green-dark);
  --_border-offset: 4px;
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
}
@media screen and (min-width: 768px) {
  .service-card {
    min-height: 16.5rem;
  }
}

.service-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  width: 93.5483870968%;
  min-height: 3.5625rem;
  padding: 3px 7px;
  background-color: var(--_base-color);
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .service-card__header {
    width: calc(100% - 2.8125rem);
    padding-block: 5px;
  }
}

.service-card__icon {
  flex-shrink: 0;
  width: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .service-card__icon {
    width: 3.125rem;
  }
}

.service-card__icon img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: var(--fw-black);
  line-height: 1.4444444444;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  .service-card__title {
    font-size: max(15px, 1.25rem);
    line-height: 1.45;
  }
}

.service-card__body {
  margin-top: -2.75rem;
  background-image: var(--gradient-green);
  border-radius: 0 1rem 0 1rem;
}
@media screen and (min-width: 768px) {
  .service-card__body {
    min-height: 15.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .service-list[data-column="4"] .service-card__body {
    min-height: 13.75rem;
  }
}

.service-card__inner {
  display: grid;
  align-items: center;
  height: 100%;
  min-height: inherit;
  padding: 4.6875rem 1.25rem 2.375rem;
  clip-path: inset(calc(var(--_border-offset)) round 0 0.75rem 0 0.75rem);
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .service-card__inner {
    align-items: center;
    padding: 4.25rem 1.5rem 2.5rem;
  }
}

.service-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-card__item {
  position: relative;
  padding-right: 0.75rem;
  font-size: max(13px, 1rem);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--text-color);
  word-break: keep-all;
  line-break: strict;
}

.service-card__item:not(:last-of-type)::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 70.8333333333%;
  content: "";
  background-color: var(--green);
  translate: 0 -50%;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .service-list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .service-list[data-column="4"] {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
}

.service-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}

.services-section__title {
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  color: var(--gray-dark);
  text-align: center;
  letter-spacing: 0.06em;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .services-section__title {
    font-size: 2rem;
    line-height: 2;
  }
}

.services-section__list {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .services-section__list {
    margin-top: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  .services-section:nth-of-type(2) .services-section__list {
    margin-top: 2.5rem;
  }
}

.services {
  position: relative;
  padding-bottom: 9.25rem;
  background-color: #f2fefc;
  background-image: url("../images/bg_services-sp.webp");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .services {
    padding-bottom: 14.5rem;
    background-color: none;
    background-image: url("../images/bg_services.webp");
    background-size: cover;
  }
}

.services__inner {
  display: grid;
  gap: 4.625rem;
  margin-top: 9.1428571429cqi;
}
@media screen and (min-width: 768px) {
  .services__inner {
    gap: 6.25rem;
    margin-top: 8.75rem;
  }
}

.size-button-default {
  width: min(100%, 19.375rem);
}

.solution {
  padding-bottom: 11.6875rem;
  background-color: var(--bg-base);
}
@media screen and (min-width: 768px) {
  .solution {
    padding-bottom: min(42.4479166667cqi, 62.5rem);
  }
}

.solution__img {
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .solution__img {
    width: min(67.0833333333cqi, 1288px);
    margin-top: 11.25rem;
  }
}

.solution__img img {
  width: 100%;
  aspect-ratio: 310/380;
  object-fit: contain;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14.375rem, 1fr));
  gap: 1.625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .strength-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 7.5rem 0;
  }
}

.strength-list__item {
  --_accent-color: var(--green);
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  width: 100%;
  max-width: 21.25rem;
  padding-bottom: 2.5rem;
  margin-inline: auto;
  container-type: inline-size;
}
@media screen and (min-width: 768px) {
  .strength-list__item {
    gap: 2px;
    max-width: unset;
    padding-bottom: unset;
    column-rule: 1px solid var(--_accent-color);
  }
}

.strength-list__item:not(:last-of-type) {
  border-bottom: 1px solid var(--_accent-color);
}
@media screen and (min-width: 768px) {
  .strength-list__item:not(:last-of-type) {
    border-bottom: unset;
  }
}

@media (width >= 520px) and (width <= 767px) {
  .strength-list__item:nth-last-child(-n+2) {
    border-bottom: unset;
  }
}

@media screen and (min-width: 768px) {
  .strength-list__item:not(:nth-child(3n+1))::before {
    position: absolute;
    bottom: 0.3125rem;
    left: 0;
    width: 1px;
    height: 2.625rem;
    content: "";
    background-color: var(--_accent-color);
  }
}

.strength-list__number {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  font-family: var(--en-font);
  font-size: 12px;
  font-weight: var(--fw-light);
  line-height: 1.5;
  color: var(--_accent-color);
}

.strength-list__number-value {
  display: block;
  margin-top: 0.375rem;
  font-size: 1.625rem;
  line-height: 1.4615384615;
  text-box: trim-both cap alphabetic;
}
@media screen and (min-width: 768px) {
  .strength-list__number-value {
    font-size: 26px;
  }
}

.strength-list__wrap {
  display: grid;
  grid-template-columns: 1fr 67.7419354839%;
  gap: 0.625rem;
  place-items: center end;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .strength-list__wrap {
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    justify-self: center;
    padding-inline: 1em;
    margin-top: -0.25rem;
  }
}

.strength-list__item:nth-of-type(1) .strength-list__wrap {
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .strength-list__item:nth-of-type(1) .strength-list__wrap {
    gap: 1.25rem;
  }
}

.strength-list__icon {
  height: 2.625rem;
}
@media screen and (min-width: 768px) {
  .strength-list__icon {
    height: 3.875rem;
  }
}

.strength-list__item:nth-of-type(2) .strength-list__icon {
  height: 3rem;
}
@media screen and (min-width: 768px) {
  .strength-list__item:nth-of-type(2) .strength-list__icon {
    height: 3.875rem;
  }
}

.strength-list__item:nth-of-type(3) .strength-list__icon {
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .strength-list__item:nth-of-type(3) .strength-list__icon {
    height: 3.875rem;
  }
}

.strength-list__item:nth-of-type(6) .strength-list__icon {
  height: 2.375rem;
  aspect-ratio: 42/38;
}
@media screen and (min-width: 768px) {
  .strength-list__item:nth-of-type(6) .strength-list__icon {
    height: 3.875rem;
    aspect-ratio: 49/62;
  }
}

.strength-list__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.strength-list__item:nth-of-type(6) .strength-list__icon img {
  object-fit: cover;
}

.strength-list__title {
  width: 100%;
  font-size: 5.8064516129cqi;
  font-weight: var(--fw-medium);
  line-height: 1.5555555556;
  color: var(--text-color);
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .strength-list__title {
    font-size: max(14px, 5.5813953488cqi);
    line-height: 1.3333333333;
  }
}

.strength-list__item:nth-of-type(6) .strength-list__title {
  padding-bottom: 0.5rem;
}

.strengths {
  padding-bottom: 9.125rem;
  background-color: var(--bg-light);
}
@media screen and (min-width: 768px) {
  .strengths {
    padding-bottom: min(39.0625cqi, 62.5rem);
  }
}

@media screen and (min-width: 768px) {
  .strengths__inner.inner {
    max-width: calc(1224px + var(--padding-pc) * 2);
  }
}

.strengths__list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .strengths__list {
    margin-top: 6.25rem;
  }
}

.sub-section-header {
  position: relative;
  padding-top: 2.5rem;
  padding-left: 2.25rem;
  font-weight: var(--fw-semibold);
}
@media screen and (min-width: 768px) {
  .sub-section-header {
    padding-block: 3.875rem 1.25rem;
    padding-left: unset;
    container-type: inline-size;
  }
}

.sub-section-header::before {
  position: absolute;
  inset-block: 0;
  left: calc(50% - min(50cqi, 300px));
  width: 38.75rem;
  content: "";
  background-image: url("../images/bg_sub-section-header-sp.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .sub-section-header::before {
    left: calc(50% - clamp(400px, 57.2755417957cqi, 740px));
    width: min(107.7399380805cqi, 1392px);
    background-image: url("../images/bg_sub-section-header.svg");
    background-size: cover;
  }
}

.sub-section-header__text {
  display: inline-block;
  font-size: 1.625rem;
  line-height: 1.2307692308;
  color: var(--gray-dark);
  letter-spacing: 0.06em;
  text-box: trim-both cap alphabetic;
}
@media screen and (min-width: 768px) {
  .sub-section-header__text {
    font-size: max(26px, 2rem);
    line-height: 1.125;
  }
}

.container {
  container-type: inline-size;
}

.inline-block {
  display: inline-block;
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.safari {
  --size: 400px;
}

.safari__dummy {
  position: fixed;
  z-index: -1;
  transform: translate3d(0, 0, -1px);
}

.safari::before,
.safari::after {
  position: fixed;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: var(--size);
  content: "";
  background-color: var(--white);
  transform: translate3d(0, 0, 9999px);
}

.safari::before {
  top: calc(var(--size) * -1);
}

.safari::after {
  bottom: calc(var(--size) * -1);
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.text {
  font-size: max(16px, 1rem);
  line-height: 2;
}

.lead {
  font-size: max(16px, 1rem);
  line-height: 2.25;
}
@media screen and (min-width: 768px) {
  .lead {
    font-size: max(16px, 1.125rem);
    line-height: 2.6666666667;
  }
}

.visually-hidden {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}