@charset "UTF-8";

:root {
  --color-brand: #d74144;
  --color-brand-dark: #b92f34;
  --color-page: #f8f8f8;
  --color-panel: #ffffff;
  --color-soft: #f0f0f0;
  --color-line: #d4d4d4;
  --color-muted: #a0a0a0;
  --color-text: #000000;
  --color-invert: #ffffff;
  --max-main: 1080px;
  --max-footer: 1280px;
}

html,
body,
div,
span,
h1,
h2,
h3,
p,
a,
img,
dl,
dt,
dd,
ul,
li,
figure,
footer,
header,
main,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  line-height: 1;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;
  color: var(--color-text);
  background-color: var(--color-page);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}

* {
  box-sizing: border-box;
  word-break: normal;
  overflow-wrap: break-word;
  background-repeat: no-repeat;
}

*::before,
*::after {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

ul {
  list-style: none;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  pointer-events: none;
}

figure {
  width: 100%;
  margin: auto;
  text-align: center;
}

button,
input,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

input,
select,
textarea,
button {
  font-size: inherit;
}

main {
  margin-top: 56px;
}

.pcOnly {
  display: none !important;
}

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

.header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 56px;
  background-color: var(--color-page);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  flex-flow: row;
  width: 100%;
  height: 100%;
}

.header__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 118px;
}

.header__logo a {
  position: relative;
  display: block;
  width: 118px;
  height: 56px;
}

.header__logo a img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .header__logo {
    width: 100px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .header__logo a {
    width: 82px;
    height: 30px;
    margin: 13px 0 0 18px;
  }

  .header__logo a img {
    width: 82px;
    height: auto;
  }

  .header__logo picture,
  .header__logo picture img {
    display: block;
  }

  .header__logo picture img {
    width: 82px;
    height: 29.8125px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
  }
}

.header__main {
  display: flex;
  justify-content: flex-end;
}

.header__login,
.header__inquiry {
  width: 80px;
  height: 100%;
  text-align: center;
}

.header__login a,
.header__inquiry a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 11px 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.header__login a {
  background-color: var(--color-soft);
}

.header__inquiry a {
  color: var(--color-invert);
  background-color: var(--color-brand);
}

@media (max-width: 767px) {
  .header__login a,
  .header__inquiry a {
    line-height: 1.2;
  }
}

.header__login a::before,
.header__inquiry a::before {
  content: "";
  display: block;
  margin-bottom: 3px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask: none;
  mask: none;
}

.header__login a::before {
  width: 25px;
  height: 30px;
  margin-bottom: 1.5px;
  background-image: url("/assets/generated/icon-lock.svg");
}

.header__inquiry a::before {
  width: 32px;
  height: 29px;
  background-image: url("/assets/generated/icon-mail.svg?v=20260627-v75");
}

.header__menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 56px);
  padding: 20px 30px 60px;
  background: var(--color-brand);
  overflow: visible;
  transition: all;
}

.header__menu.animating {
  overflow: hidden;
}

.header__menu.animating,
.header__menu.flex {
  display: flex;
}

.header__menu.flex {
  height: calc(100dvh - 56px);
}

.header__menu .menu__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.header__menu .menu__item {
  position: relative;
  padding: 0;
}

.header__menu .menu__item.spOnly {
  flex-direction: column;
}

.header__menu .menu__item a {
  display: block;
  position: relative;
  z-index: 1;
  min-height: 48px;
  padding: 1em 1.5em 1em 0;
  color: var(--color-invert);
  font-size: 1.6rem;
  font-weight: 700;
}

.header__menu .menu__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 1.5em;
  height: 1.5em;
  transform: translateY(-50%);
  background-image: url("/assets/generated/icon-arrow-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.header__hamburger {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 14px;
  border: 0;
  background: var(--color-panel);
  font-size: 1.4rem;
  line-height: 24px;
  cursor: default;
  z-index: 1000;
}

.header__hamburger > i {
  position: relative;
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-brand);
  border-radius: 1px;
}

.header__hamburger > i::before,
.header__hamburger > i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-brand);
}

.header__hamburger > i::before {
  transform: translateY(-10px);
}

.header__hamburger > i::after {
  transform: translateY(10px);
}

.header__hamburger.open > i {
  transform: rotate(45deg);
}

.header__hamburger.open > i::before {
  transform: rotate(-90deg);
}

.header__hamburger.open > i::after {
  display: none;
}

.section {
  margin: 40px 0;
}

.section:last-of-type {
  margin-bottom: 60px;
}

.section__inner,
.container {
  position: relative;
  padding: 0 20px;
}

.page__header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 90px;
  margin-bottom: 40px;
  overflow: hidden;
  background-color: var(--color-brand);
}

.page__header::before {
  content: attr(data-en);
  position: absolute;
  display: block;
  width: 100%;
  top: 50%;
  left: 0;
  color: #f5f5f5;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.15;
  transform: translateY(-50%);
  white-space: nowrap;
}

.page__title {
  position: static;
  color: var(--color-invert);
  font-size: 2rem;
  font-weight: 700;
  padding: 0.5em;
}

.breadcrumbs {
  display: block;
  margin: 20px auto 0;
  padding: 0 20px;
  font-size: 1.4rem;
}

.breadcrumbs__list {
  display: flex;
  flex-flow: row wrap;
  font-weight: 400;
}

.breadcrumbs__link:not(:last-child)::after {
  content: "＞";
  padding-right: 1em;
}

.breadcrumbs__link > a {
  padding-right: 1em;
}

.page__h2 {
  color: var(--color-brand);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75em;
}

.service__img {
  width: 100%;
  margin: 50px auto 20px;
}

.service__img img {
  display: inline;
  aspect-ratio: 2080 / 806;
  object-fit: fill;
}

.page__text + .page__text {
  margin-top: 2em;
}

.feature .h4 {
  position: relative;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7142857143;
  text-align: center;
}

.feature .page__text {
  width: 100%;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}

.feature main section:first-of-type figure {
  position: relative;
  width: 100%;
  max-width: 685px;
  margin: 0 auto 24px;
}

.feature main section:first-of-type figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1370 / 800;
  object-fit: fill;
}

.case .section__inner.anchor {
  margin-top: -60px;
  padding-top: 60px;
}

.case .midashi {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 54.28px;
  margin: 0 auto 10px;
  padding: 10px 20px;
  color: var(--color-invert);
  background-color: var(--color-brand);
  border-radius: 40px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7142857143;
  text-align: center;
}

.case .page__h2 {
  margin-bottom: 18px;
  font-size: 2.4rem;
  line-height: 1.7142857143;
}

.case .page__h4 {
  position: relative;
  margin: 34px 0 10px;
  padding-left: 34px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7142857143;
}

.case .page__h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  width: 30px;
  height: 30px;
  border: 6px solid var(--color-brand);
  border-radius: 50%;
}

.case .page__text {
  margin: 0;
  padding-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}

.case .page__text:not(:last-of-type),
.case .checkmark + .page__text {
  padding-bottom: 1em;
}

.case .box {
  margin: 28px 0;
  padding: 20px 30px;
  background-color: var(--color-panel);
  border-radius: 18px;
}

.case .box .page__h2 {
  text-align: left;
}

.case .txl {
  margin-bottom: 18px;
  font-size: 2.4rem;
  line-height: 1.7142857143;
}

.case .checkmark {
  position: relative;
  margin: 0;
  padding: 10px 0 10px 40px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7142857143;
}

.case .checkmark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
  width: 34px;
  height: 34px;
  background-image: url("/assets/generated/icon-check-red.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.case main > hr {
  color: #000;
  width: calc(100% - 40px);
  max-width: 1040px;
  margin: 0 auto;
  border-color: #000;
  border-style: inset;
  border-width: 1px;
}

.temporary-staffing .centering > div,
.recruitment .centering > div,
.outsourcing .centering > div,
.temp-to-perm .centering > div {
  width: 100%;
}

.temporary-staffing .page__h4,
.recruitment .page__h4,
.outsourcing .page__h4,
.temp-to-perm .page__h4 {
  position: relative;
  margin: 34px 0 25px;
  padding-left: 34px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7142857143;
}

.temporary-staffing .page__h4::before,
.recruitment .page__h4::before,
.outsourcing .page__h4::before,
.temp-to-perm .page__h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  width: 30px;
  height: 30px;
  border: 6px solid var(--color-brand);
  border-radius: 50%;
}

.temporary-staffing .page__text,
.recruitment .page__text,
.outsourcing .page__text,
.temp-to-perm .page__text,
.foodprocessing .page__text {
  margin: 0;
  padding-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}

.temporary-staffing .service__img img,
.recruitment .service__img img,
.outsourcing .service__img img {
  aspect-ratio: 1280 / 1120;
}

.temp-to-perm .service__img img {
  aspect-ratio: 1280 / 2762;
}

.temporary-staffing .box,
.recruitment .box,
.outsourcing .box,
.temp-to-perm .box,
.foodprocessing .box {
  margin: 28px 0;
  padding: 20px 30px;
  background-color: var(--color-panel);
  border-radius: 18px;
}

.temporary-staffing .checkmark,
.recruitment .checkmark,
.outsourcing .checkmark,
.temp-to-perm .checkmark,
.foodprocessing .checkmark {
  position: relative;
  margin: 0;
  padding: 10px 0 10px 40px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7142857143;
}

.temporary-staffing .checkmark::before,
.recruitment .checkmark::before,
.outsourcing .checkmark::before,
.temp-to-perm .checkmark::before,
.foodprocessing .checkmark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  display: block;
  width: 34px;
  height: 34px;
  background-image: url("/assets/generated/icon-check-red.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.temporary-staffing .checkmark + .page__text,
.recruitment .checkmark + .page__text,
.outsourcing .checkmark + .page__text,
.temp-to-perm .checkmark + .page__text,
.foodprocessing .checkmark + .page__text {
  padding-bottom: 1em;
}

.temporary-staffing .service__img,
.recruitment .service__img,
.outsourcing .service__img,
.temp-to-perm .service__img {
  width: 335px;
}

.service__inquiry .btn--rect > a[data-en] {
  align-items: flex-start;
}

.foodprocessing .service__img.wide {
  width: 335px;
}

.foodprocessing .service__img.wide img {
  aspect-ratio: 524 / 306;
}

.foodprocessing__case {
  width: 335px;
  height: 91.8px;
  margin: 0 auto;
}

.foodprocessing__case a,
.foodprocessing__case span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-invert);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  border-radius: 6px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)), url("/assets/generated/service/foodprocessing-case-supermarket.png");
  background-position: center;
  background-size: cover;
}

.btn--360 a {
  width: 100%;
  max-width: 360px;
}

.foodprocessing .btn--360 {
  margin-top: 28px;
}

@media (max-width: 767px) {
  .breadcrumbs__list {
    width: auto;
  }

  .temporary-staffing .box,
  .recruitment .box,
  .outsourcing .box,
  .temp-to-perm .box,
  .foodprocessing .box {
    width: 335px;
  }

  .service__inquiry .btn--rect {
    width: 335px;
    max-width: none;
  }
}

.feature-visual__text {
  position: absolute;
  left: 34px;
  top: 46%;
  color: #111;
  font-family: Arial, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  transform: translateY(-50%);
}

.feature-visual__text b {
  color: var(--color-brand);
  font-weight: 400;
}

.btn > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 28px auto 0;
  padding: 0.5em 1.5em 0.5em 1em;
  color: var(--color-invert);
  background: var(--color-brand);
  border-radius: 3em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.btn--border > a {
  color: var(--color-brand);
  background: transparent;
  border: 3px solid var(--color-brand);
}

.btn--small {
  width: 174px;
}

.btn--small > a {
  min-height: 40px;
  margin: 0;
  padding: 0.2em 1em 0.3em 0.75em;
  line-height: 1.2;
}

.btn--small > a::after {
  top: 46%;
  right: 0.5em;
  width: 0.5em;
  height: 0.5em;
}

.btn > a::after {
  content: "";
  position: absolute;
  display: block;
  top: 48%;
  right: 0.75em;
  width: 0.45em;
  height: 0.45em;
  transform: rotate(-45deg) translateY(-50%);
  border-right: 3px solid var(--color-brand);
  border-bottom: 3px solid var(--color-brand);
}

.btn--330 a {
  width: 100%;
  max-width: 330px;
}

.service .btn {
  margin-top: 28px;
}

.service-index__intro {
  margin: 40px 0 60px;
}

.service-index__lead {
  max-width: 1040px;
  margin: 0 auto 18px;
  font-size: 2.4rem;
  line-height: 1.7142857143;
}

.service-index__copy {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7142857143;
  text-align: left;
}

.service-index__intro-buttons {
  display: grid;
  gap: 14px;
  margin: 14px auto 0;
}

.service-index__intro-buttons .btn--rect {
  margin-top: 0;
}

.page__h3 {
  position: relative;
  margin: 0 auto 50px;
  padding-bottom: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.page__h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 52px;
  height: 3px;
  background: var(--color-brand);
  transform: translateX(-50%);
}

.service-index .page__h3 {
  margin: 60px auto 50px;
}

.service-index .page__h3::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-brand);
  transform: translateX(-50%);
}

.service-index .page__h3::after {
  content: none;
}

.service-index__lineup {
  margin-top: 0;
}

.service-index__section-text {
  margin: 0 auto 34px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7142857143;
  text-align: center;
}

.service-index__group,
.service-index__group:first-of-type {
  margin-top: 0;
}

.service-index__group:first-of-type .page__h3 {
  margin-top: 75px;
}

.service-card {
  width: 100%;
  background: var(--color-panel);
}

.service-card a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.service-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.service-card--wide img {
  height: auto;
  aspect-ratio: 2080 / 800;
}

.service-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}

.service-card-grid .service-card img {
  height: auto;
  aspect-ratio: 996 / 640;
}

.service-card span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80.84px;
  padding: 25px 18px;
  background: var(--color-panel);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7142857143;
  text-align: center;
}

.service-card span::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  flex: 0 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='17' fill='none' stroke='%23d74144' stroke-width='3'/%3E%3Cpath fill='none' stroke='%23d74144' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M16 11l9 9-9 9'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.service-card--wide + .service-card--wide,
.service-card--wide + .service-card-grid,
.service-card-grid + .service-card--wide {
  margin-top: 20px;
}

.service__child__inquiry {
  margin-top: 80px;
  text-align: center;
}

.service__inquiry {
  margin-top: 70px;
  border-top: 1px solid var(--color-line);
  padding-top: 30px;
  text-align: start;
}

.service__inquiry .page__lead {
  margin: 0 auto 24px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7142857143;
  text-align: center;
}

.service-index .service__inquiry .page__lead {
  margin: 0 auto 24px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7142857143;
}

.service__inquiry .service__child__inquiry {
  margin-top: 40px;
}

.service__inquiry .btn--rect {
  width: 100%;
  max-width: 500px;
  margin: 27px auto 10px;
}

.service__child__inquiry > * {
  line-height: 1.25;
}

.service__child__inquiry > h3 {
  margin-bottom: 0.5em;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}

.service-index .service__child__lead {
  margin-bottom: 0.5em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7142857143;
}

.service__child__inquiry .tel {
  color: var(--color-brand);
  font-size: 3.2rem;
  font-weight: 700;
}

.service__child__inquiry .time {
  margin: 1em 0 1.25em;
  font-size: 1.6rem;
}

.service__child__inquiry .btn--rect {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.btn--rect {
  margin-top: 14px;
}

.btn--rect > a,
.btn--rect > button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  padding: 0.5em 55px;
  color: var(--color-invert);
  background-color: var(--color-brand);
  border-radius: 16px;
  border: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
}

.btn--rect > a[data-en] {
  flex-direction: column;
  text-align: start;
}

.btn--rect > a[data-en]::before {
  content: attr(data-en);
  display: block;
  margin: 0.3em 0 0 -0.6em;
  font-size: 0.8em;
  line-height: 1;
  font-weight: 700;
}

.feature .btn--rect > a[data-en] {
  align-items: flex-start;
}

.service-index .btn--rect > a[data-en] {
  align-items: center;
}

.btn--rect > a::after,
.btn--rect > button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background-image: url("/assets/generated/icon-arrow-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-mask: none;
  mask: none;
}

.top .btn--rect > a {
  height: 56px;
  padding: 9px 27px 9px 18px;
  border: 3px solid #d74144;
  border-radius: 54px;
  color: #d74144;
  background: transparent;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.top .topCase__btn > a,
.top .topInfo__btn > a {
  height: 40px;
  padding: 3.6px 18px 5.4px 13.5px;
  line-height: 1.2;
}

.top .btn--rect > a::after {
  right: 20px;
  width: 11px;
  height: 11px;
  background: transparent;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  -webkit-mask: none;
  mask: none;
  transform: translateY(-50%) rotate(45deg);
}

.top .topCase__btn > a::after,
.top .topInfo__btn > a::after {
  right: 16px;
  width: 9px;
  height: 9px;
}

.footer {
  position: relative;
  width: 100%;
  background: var(--color-brand);
}

.footer__inner {
  width: 100%;
  margin: auto;
  padding: 28px 15px 0;
}

.footer__inner * {
  color: var(--color-invert);
}

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

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.footer__logo img {
  width: 79px;
  height: 91px;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0.5em 1em;
}

.footer__menu--block {
  width: 100% !important;
  margin: 0;
  padding: 0;
}

.footer__menu--cat {
  position: relative;
  display: flex;
  align-items: center;
  min-height: auto;
  margin: 0;
  padding: 0.5em 1.5em 0.5em 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.footer__menu--cat span {
  display: inline;
}

.footer__menu--cat::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1em;
  height: 1em;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='17' fill='none' stroke='white' stroke-width='3'/%3E%3Cpath fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M16 11l9 9-9 9'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer__menu--child {
  display: none;
  margin-bottom: 1em;
  font-size: 1.3rem;
}

.footer__link {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  border-top: 1px solid var(--color-invert);
  padding: 1em;
}

.footer__link--item {
  padding: 0 0.5em 0.5em;
  font-size: 1.4rem;
}

.footer__link--item.per-40 {
  width: 40%;
}

.footer__link--item.per-60 {
  width: 60%;
}

.footer__link--img {
  display: flex;
  width: 96px;
  height: 42px;
  margin: 0.5em auto 0;
  line-height: 24px;
}

.footer__link--img a {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 24px;
}

.footer__link--img img {
  width: auto;
  height: 44px;
  max-width: none;
  display: inline;
  object-fit: fill;
  line-height: 24px;
}

.footer__link--img a:first-child img {
  width: 43.7px;
  height: 43.7px;
}

.footer__link--img a:nth-child(2) img {
  width: 52.3px;
  height: 43.7px;
}

.home-hero {
  min-width: 100%;
  margin: 0;
  padding: 110px 0 76px;
  background: var(--color-brand);
  color: var(--color-invert);
}

.home-hero * {
  color: var(--color-invert);
}

.home-hero h1 {
  max-width: 740px;
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 700;
}

.home-hero p {
  max-width: 720px;
  margin-top: 20px;
  font-size: 1.6rem;
}

.home-hero__eyebrow {
  font-size: 1.4rem;
  font-weight: 700;
}

.rebuild-section {
  margin: 64px 0;
}

.rebuild-section--gray {
  padding: 58px 0;
  background: var(--color-soft);
}

.rebuild-lead {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2.05;
  text-align: center;
}

.rebuild-copy {
  max-width: 860px;
  margin: 18px auto 0;
  font-size: 1.55rem;
  line-height: 2;
}

.rebuild-eyebrow {
  color: var(--color-brand);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.rebuild-h3 {
  position: relative;
  margin: 42px 0 20px;
  padding-left: 18px;
  border-left: 5px solid var(--color-brand);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.rebuild-visual {
  width: min(1040px, 100%);
  margin: 36px auto 0;
  overflow: hidden;
}

.rebuild-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 2080 / 806;
  object-fit: cover;
}

.rebuild-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.rebuild-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rebuild-panel {
  min-height: 100%;
  padding: 26px 28px;
  border-top: 4px solid var(--color-brand);
  background: #fff;
}

.rebuild-panel h3,
.rebuild-panel h4 {
  margin-bottom: 12px;
  color: var(--color-brand);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.55;
}

.rebuild-panel p {
  font-size: 1.45rem;
  line-height: 1.85;
}

.rebuild-list {
  max-width: 980px;
  margin: 28px auto 0;
  border-top: 1px solid var(--color-line);
}

.rebuild-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 1.5rem;
  line-height: 1.8;
}

.rebuild-list time,
.rebuild-list .label {
  color: var(--color-brand);
  font-weight: 700;
}

.rebuild-table {
  width: min(980px, 100%);
  margin: 32px auto 0;
  border-collapse: collapse;
  font-size: 1.5rem;
  line-height: 1.75;
}

.rebuild-table th,
.rebuild-table td {
  padding: 18px 20px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  vertical-align: top;
}

.rebuild-table th {
  width: 220px;
  color: var(--color-brand);
  font-weight: 700;
  text-align: left;
  background: #fafafa;
}

.rebuild-form {
  width: min(980px, 100%);
  margin: 34px auto 0;
}

.rebuild-form__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-top: 1px solid var(--color-line);
}

.rebuild-form__row:last-child {
  border-bottom: 1px solid var(--color-line);
}

.rebuild-form__row label,
.rebuild-form__field {
  padding: 18px 20px;
  font-size: 1.5rem;
  line-height: 1.7;
}

.rebuild-form__row label {
  color: var(--color-brand);
  font-weight: 700;
  background: #fafafa;
}

.rebuild-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--color-line);
  background: #fff;
}

.rebuild-form input[type="text"],
.rebuild-form input[type="email"],
.rebuild-form input[type="tel"],
.rebuild-form select,
.rebuild-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--color-line);
  background: #fff;
  color: var(--color-text);
  border-radius: 0;
  line-height: 1.5;
}

.rebuild-form select {
  appearance: auto;
}

.rebuild-textarea,
.rebuild-form textarea {
  min-height: 150px;
  resize: vertical;
}

.rebuild-form__privacy {
  width: min(980px, 100%);
  margin: 28px auto 0;
  padding: 18px 20px;
  border: 1px solid var(--color-line);
  background: #fff;
  font-size: 1.5rem;
  line-height: 1.7;
}

.rebuild-form__privacy label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.rebuild-form__privacy input {
  width: 18px;
  height: 18px;
  margin-top: 0.35em;
  flex: 0 0 auto;
  accent-color: var(--color-brand);
}

.rebuild-form .btn--rect {
  width: min(500px, 100%);
  margin: 34px auto 0;
}

.rebuild-card-link {
  display: block;
  min-height: 100%;
  border: 1px solid var(--color-line);
  background: #fff;
  text-decoration: none;
}

.rebuild-card-link img {
  display: block;
  width: 100%;
  aspect-ratio: 996 / 640;
  object-fit: cover;
}

.rebuild-card-link span {
  display: block;
  padding: 18px 20px;
  color: var(--color-text);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}

.rebuild-article {
  margin: 70px 0 88px;
}

.rebuild-article__body {
  width: min(860px, 100%);
  margin: 28px auto 0;
  padding: 34px 0 0;
  border-top: 1px solid var(--color-line);
}

.rebuild-article__body .rebuild-copy:first-child {
  margin-top: 0;
}

.rebuild-article__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 320px));
  justify-content: center;
  gap: 18px;
  margin: 38px auto 0;
}

.rebuild-card-link--text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 14px 20px;
  color: var(--color-brand);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.yearList,
.categoryList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1040px, 100%);
  margin: 0 auto 18px;
  padding: 0;
  list-style: none;
}

.categoryList {
  margin-bottom: 44px;
}

.yearList__item a,
.categoryList__item a {
  display: block;
  padding: 8px 18px;
  border: 1px solid var(--color-brand);
  border-radius: 999px;
  color: var(--color-brand);
  background: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.news__detail,
.column__detail {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.news__detail .date,
.column__detail .date {
  margin: 16px 0 28px;
  color: var(--color-brand);
  font-size: 1.5rem;
  font-weight: 700;
}

.news__detail--main,
.column__detail--main {
  font-size: 1.55rem;
  line-height: 2;
}

.news__detail--main {
  padding: 34px 0 0;
  border-top: 1px solid var(--color-line);
}

.news__detail--main p,
.column__detail--main p {
  margin: 0 0 1.6em;
}

.column__detail--img {
  width: min(760px, 100%);
  margin: 0 0 42px;
}

.column__detail--img img {
  display: block;
  width: 100%;
  aspect-ratio: 996 / 640;
  object-fit: cover;
}

.column__detail--main .intro {
  margin-bottom: 34px;
  padding: 28px 32px;
  border-left: 5px solid var(--color-brand);
  background: #fff;
  font-size: 1.6rem;
  line-height: 2;
}

.column__detail--main section {
  margin-top: 44px;
}

.column__detail--main .rounded {
  display: inline-block;
  margin: 0 0 22px;
  padding: 7px 20px;
  border-radius: 999px;
  color: var(--color-invert);
  background: var(--color-brand);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}

.borderBox {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
  padding: 20px 24px;
  border: 2px solid var(--color-brand);
  background: #fff;
  list-style: none;
}

.borderBox li {
  position: relative;
  padding-left: 18px;
  font-weight: 700;
}

.borderBox li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand);
}

.column__detail .case {
  margin: 30px 0;
  background: #fff;
}

.column__detail .case dt {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 22px;
  padding: 20px;
  color: var(--color-brand);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}

.column__detail .case dt img {
  display: block;
  width: 170px;
  aspect-ratio: 996 / 640;
  object-fit: cover;
}

.column__detail .case dd {
  margin: 0;
  padding: 22px 24px 2px;
  border-bottom: 1px solid var(--color-line);
}

@media (pointer: fine) and (min-width: 768px) {
  a:hover,
  a:focus {
    text-decoration: underline;
  }

  .header__login a:hover,
  .header__inquiry a:hover,
  .btn--rect > a:hover,
  .btn > a:hover {
    opacity: 0.7;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .btn > a:hover,
  .btn--rect > a:hover {
    transform: none;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  main {
    min-width: 1080px;
    margin-top: 90px;
  }

  .pcOnly {
    display: inline !important;
  }

  .spOnly {
    display: none !important;
  }

  .header {
    min-width: 1080px;
    height: 90px;
  }

  .header__logo {
    width: 15%;
    max-width: 214px;
  }

  .header__logo a {
    width: 132px;
    height: 48px;
  }

  .header__main {
    width: 85%;
    padding-left: 60px;
  }

  .header__login,
  .header__inquiry {
    width: 160px;
  }

  .header__login a {
    padding: 15px 0 16px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
  }

  .header__login a::before {
    width: 25px;
    height: 30px;
    margin-bottom: 7px;
    background-image: url("/assets/generated/icon-lock-desktop.svg?v=20260627-v78");
  }

  .header__inquiry a {
    padding: 15px 0 11px;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .header__inquiry a::before {
    width: 32px;
    height: 29px;
    margin-bottom: 10px;
    background-image: url("/assets/generated/icon-mail-desktop.svg?v=20260627-v76");
  }

  .header__menu {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    height: auto;
    padding: 0;
    overflow: visible;
    transition: none;
    background: transparent;
  }

  .header__menu--row {
    display: block;
    padding-right: 1em;
  }

  .header__menu .header__menu--sub {
    font-size: 1.5rem;
  }

  .header__menu .header__menu--sub .menu__item a {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .header__menu .menu__list {
    flex-direction: row;
    justify-content: flex-end;
  }

  .header__menu .menu__item {
    padding: 3px 1em;
  }

  .header__menu .menu__item a {
    display: inline;
    min-height: auto;
    padding: 0;
    color: var(--color-text);
    font-size: 1.6rem;
  }

  .header__menu .menu__item::after {
    content: none;
    display: none;
  }

  .header__menu .menu__item a.has--arrowR {
    display: flex;
    align-items: center;
  }

  .header__menu .has--arrowR::before {
    content: ">";
    display: block;
    width: 1em;
    color: var(--color-brand);
    font-size: 1.3rem;
    font-weight: 700;
    -webkit-text-stroke: 1px var(--color-brand);
  }

  .header__menu .menu__item a.has--arrowD {
    position: relative;
    display: flex;
    align-items: center;
  }

  .header__menu .has--arrowD::before {
    content: "";
    position: absolute;
    top: 40%;
    left: -0.9em;
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-left: 2px solid var(--color-brand);
    border-bottom: 2px solid var(--color-brand);
    transform: translateY(-48%) rotate(-45deg);
  }

  .header__hamburger {
    display: none;
    position: static;
    width: auto;
    height: auto;
    padding: 1px 6px;
    border: 2px outset buttonborder;
    background-color: buttonface;
    background-repeat: no-repeat;
    font-size: 16px;
    line-height: 24px;
  }

  .header__hamburger > i {
    display: inline;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    background-repeat: no-repeat;
    border-radius: 0;
    transform: none;
  }

  .header__hamburger > i::before,
  .header__hamburger > i::after {
    content: none;
    display: inline;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    background-repeat: no-repeat;
    transform: none;
  }

  .section {
    margin: 80px 0;
  }

  .section:last-of-type {
    margin-bottom: 100px;
  }

  .section__inner,
  .container {
    width: 100%;
    max-width: var(--max-main);
    margin: 0 auto;
    padding: 0 20px;
  }

  .page__header {
    min-height: 200px;
    margin-bottom: 0;
  }

  .page__header::before {
    font-size: 12vw;
  }

  .page__title {
    font-size: 4rem;
    padding: 0;
  }

  .breadcrumbs {
    margin: 26px auto 0;
    padding: 0 2.5em;
  }

  .page__h2 {
    font-size: 3.2rem;
    line-height: 1.5;
  }

  .feature .h4 {
    margin-bottom: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }

  .feature .page__text {
    max-width: 840px;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .feature main section:first-of-type figure {
    margin-bottom: 38px;
  }

  .case .section__inner.anchor {
    margin-top: -100px;
    padding-top: 100px;
  }

  .case .midashi {
    height: 60px;
    margin-bottom: 12px;
    padding: 12px 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }

  .case .page__h2 {
    margin-bottom: 24px;
    font-size: 3.2rem;
    line-height: 1.5;
  }

  .case .page__h4 {
    margin: 40px 0 25px;
    padding-left: 45px;
    font-size: 2.4rem;
    line-height: 1.5;
  }

  .case .page__h4::before {
    top: -3px;
    width: 40px;
    height: 40px;
    border-width: 8px;
  }

  .case .page__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .case .box {
    margin: 40px 0;
    padding: 30px 50px;
    border-radius: 20px;
  }

  .case .txl {
    margin-bottom: 24px;
    font-size: 3.2rem;
    line-height: 1.5;
  }

  .case .checkmark {
    padding: 12px 0 12px 48px;
    font-size: 2.4rem;
    line-height: 1.5;
  }

  .case .checkmark::before {
    top: 8.4px;
    width: 40.8px;
    height: 40.8px;
  }

  .temporary-staffing .centering > div,
  .recruitment .centering > div,
  .outsourcing .centering > div,
  .temp-to-perm .centering > div {
    display: table;
    width: auto;
    margin: 0 auto;
  }

  .temporary-staffing .page__h4,
  .recruitment .page__h4,
  .outsourcing .page__h4,
  .temp-to-perm .page__h4 {
    margin: 40px 0 25px;
    padding-left: 45px;
    font-size: 2.4rem;
    line-height: 1.5;
  }

  .temporary-staffing .page__h4::before,
  .recruitment .page__h4::before,
  .outsourcing .page__h4::before,
  .temp-to-perm .page__h4::before {
    top: -3px;
    width: 40px;
    height: 40px;
    border-width: 8px;
  }

  .temporary-staffing .page__text,
  .recruitment .page__text,
  .outsourcing .page__text,
  .temp-to-perm .page__text,
  .foodprocessing .page__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .temporary-staffing .box,
  .recruitment .box,
  .outsourcing .box,
  .temp-to-perm .box,
  .foodprocessing .box {
    margin: 40px 0;
    padding: 30px 50px;
    border-radius: 20px;
  }

  .temporary-staffing .checkmark,
  .recruitment .checkmark,
  .outsourcing .checkmark,
  .temp-to-perm .checkmark,
  .foodprocessing .checkmark {
    padding: 12px 0 12px 48px;
    font-size: 2.4rem;
    line-height: 1.5;
  }

  .temporary-staffing .checkmark::before,
  .recruitment .checkmark::before,
  .outsourcing .checkmark::before,
  .temp-to-perm .checkmark::before,
  .foodprocessing .checkmark::before {
    top: 8.4px;
    width: 40.8px;
    height: 40.8px;
  }

  .service__img {
    margin: 60px auto 32px;
  }

  .temporary-staffing .service__img,
  .recruitment .service__img,
  .outsourcing .service__img,
  .temp-to-perm .service__img {
    width: 640px;
    margin: 60px auto 32px;
  }

  .foodprocessing .service__img.wide {
    width: 1040px;
    margin: 60px auto 32px;
  }

  .foodprocessing__case {
    width: 426.39px;
    height: 233px;
  }

  .foodprocessing__case a,
  .foodprocessing__case span {
    font-size: 2rem;
    border-radius: 10px;
  }

  .foodprocessing .btn--360 {
    margin-top: 50px;
  }

  .btn > a {
    min-height: 56px;
    margin-top: 32px;
    line-height: 1.5;
  }

  .service .btn {
    margin-top: 50px;
  }

  .service-index__intro {
    margin: 80px 0;
  }

  .service-index__lead {
    margin-bottom: 24px;
    font-size: 3.2rem;
    line-height: 1.5;
  }

  .service-index__copy {
    max-width: 1040px;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .service-index__intro-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    margin-top: 20px;
  }

  .page__h3 {
    margin-bottom: 50px;
    padding-bottom: 0;
    font-size: 2.8rem;
    line-height: 1.5;
  }

  .service-index .page__h3 {
    margin-top: 80px;
  }

  .service-index .page__h3::before {
    width: 80px;
    height: 4px;
  }

  .service-index__section-text {
    margin-bottom: 40px;
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .service-index__group {
    margin-top: 0;
  }

  .service-index__group:first-of-type {
    margin-top: 0;
  }

  .service-index__group:first-of-type .page__h3 {
    margin-top: 110px;
  }

  .service-index__group > .service-index__section-text {
    margin-bottom: 50px;
  }

  .service-card--wide img {
    height: 400px;
    aspect-ratio: auto;
  }

  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
  }

  .service-card-grid .service-card img {
    height: 321.28px;
    aspect-ratio: auto;
  }

  .service-card span {
    min-height: 70px;
    padding: 20px;
    font-size: 2rem;
    line-height: 1.5;
  }

  .service-card span::after {
    width: 20px;
    height: 20px;
  }

  .service-card--wide + .service-card--wide,
  .service-card--wide + .service-card-grid,
  .service-card-grid + .service-card--wide {
    margin-top: 50px;
  }

  .btn > a::after {
    width: 0.6em;
    height: 0.6em;
  }

  .service__child__inquiry {
    margin-top: 120px;
  }

  .service__inquiry {
    margin-top: 110px;
    padding-top: 85px;
  }

  .service__inquiry .page__lead {
    margin-bottom: 40px;
    line-height: 1.5;
  }

  .service-index .service__inquiry .page__lead {
    margin-bottom: 40px;
    line-height: 1.5;
  }

  .service__inquiry .service__child__inquiry {
    margin-top: 60px;
  }

  .service__inquiry .btn--rect {
    margin: 50px auto 15px;
  }

  .service__child__inquiry > h3 {
    font-size: 2.4rem;
    line-height: 1.25;
  }

  .service-index .service__child__lead {
    margin-bottom: 40px;
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .service__child__inquiry .tel {
    font-size: 4.8rem;
  }

  .service__child__inquiry .time {
    font-size: 1.8rem;
  }

  .btn--rect {
    margin-top: 20px;
  }

  .btn--rect > a {
    height: 120px;
    padding: 0.5em 80px 0.5em 70px;
    font-size: 2.4rem;
    line-height: 1.25;
  }

  .btn--rect > a::after {
    right: 30px;
    width: 40px;
    height: 40px;
  }

  .footer {
    min-width: 1080px;
  }

  .footer__inner {
    max-width: var(--max-footer);
    padding: 45px 20px 0;
  }

  .footer__main {
    flex-direction: row;
  }

  .footer__logo {
    align-items: center;
    justify-content: normal;
    width: 100px;
    margin-bottom: 0;
  }

  .footer__menu {
    flex-direction: row;
    width: calc(100% - 100px);
  }

  .footer__menu--block {
    width: 25% !important;
    margin-bottom: 1.25em;
    padding-left: 20px;
  }

  .footer__menu--cat {
    position: static;
    min-height: 42px;
    margin-bottom: 1em;
    padding: 0;
  }

  .footer__menu--block.list .footer__menu--cat {
    min-height: 0;
  }

  .footer__menu--block.list .footer__menu--cat.pcOnly {
    display: flex !important;
  }

  .footer__menu--cat span {
    display: block;
    font-size: 1.3rem;
  }

  .footer__menu--cat::after {
    display: none;
  }

  .footer__menu--child {
    display: block;
  }

  .footer__menu--child > p {
    padding-left: 1em;
  }

  .footer__link {
    align-items: center;
    padding: 9px 0 14px;
  }

  .footer__link--item {
    width: auto !important;
    padding: 0 1em;
    font-weight: 700;
  }

  .footer__link--item.pcOnly {
    display: list-item !important;
  }

  .footer__link--img {
    margin: 0 0 0 20px;
    line-height: 24px;
  }

  .footer__link--img a,
  .footer__link--img img {
    line-height: 24px;
  }
}

@media (min-width: 1201px) {
  .page__header::before {
    font-size: 15rem;
    transform: translateY(-50%) translateX(5vw);
  }
}

@media (max-width: 340px) {
  .btn--rect > a {
    padding: 0.5em 40px 0.5em 24px;
    font-size: 1.8rem;
  }

  .btn--rect > a::after {
    right: 16px;
    width: 24px;
    height: 24px;
  }
}

.temporary-staffing .page__header::before {
  white-space: normal;
}

@media (min-width: 768px) {
  .temporary-staffing .page__header::before {
    font-size: 8vw;
    line-height: 1;
    transform: translateY(-50%);
  }
}

@media (min-width: 1201px) {
  .temporary-staffing .page__header::before {
    font-size: 12rem;
  }
}

@media (max-width: 767px) {
  .home-hero {
    padding: 72px 0 48px;
  }

  .header__login a::before {
    width: 18px;
    height: 20px;
  }

  .header__inquiry a::before {
    width: 22px;
    height: 19px;
  }

  .service-index__intro {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .service-index__section-text {
    margin-bottom: 34px;
  }

  .service-index__group,
  .service-index__group:first-of-type {
    margin-top: 75px;
  }

  .service-index__group + .service-index__group {
    margin-top: 60px;
  }

  .service-index__group + .service-index__group + .service-index__group {
    margin-top: 60px;
  }

  .service-index__group + .service-index__group + .service-index__group .service-card--wide + .service-card-grid {
    margin-top: 20px;
  }

  .home-hero h1 {
    font-size: 2.4rem;
  }

  .home-hero p {
    font-size: 1.4rem;
  }

  .btn > a:hover,
  .btn--rect > a:hover {
    transition: opacity 0.2s;
  }

  .btn > a {
    margin-top: 32px;
  }

  .section:last-of-type {
    margin-bottom: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
}

@media (max-width: 767px) {
  .service__inquiry .btn--rect {
    width: 335px;
    max-width: none;
  }

  .foodprocessing .btn--360 a {
    width: 335px;
    max-width: none;
  }
}

/* Top page reconstruction from measured Admic reference */
.top main {
  background: transparent;
}

.top .section__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.top .mainVisual {
  position: relative;
  margin-bottom: 64px;
}

.top .mainVisual__inner--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.top .mainVisual__lead {
  position: static;
  z-index: 3;
  width: 38vw;
  min-width: 410px;
  padding: 3vw 5vw 7vw;
  overflow: hidden;
}

.top .mainVisual__lead::before {
  display: none;
}

.top .mainVisual__lead--en {
  position: absolute;
  left: -200vw;
  top: -200vh;
}

.top .mainVisual__lead--index {
  position: relative;
  display: block;
  z-index: 2;
  width: 100%;
  height: 19vw;
  color: transparent;
  background: url("/assets/generated/title-h1-desktop.svg?v=20260628-v220") left center / contain no-repeat;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .top .mainVisual__lead--index {
    height: 28vw;
  }

  .top .topVisual {
    margin-bottom: 105px;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .top .mainVisual__lead--index {
    background-image: url("/assets/generated/title-h1-desktop-tablet.svg?v=20260626-v35");
  }
}

.top .mainVisual__lead--index span,
.top .mainVisual__lead--text {
  position: absolute;
  left: -200vw;
  top: -200vh;
  width: 1112px;
}

.top .mainVisual__slider {
  position: relative;
  width: 62vw;
  min-width: 670px;
  height: 37.5vw;
  min-height: 405px;
  margin: 0 0 0 auto;
}

@media (min-width: 1201px) {
  .top .mainVisual__slider {
    width: 893px;
    height: 540px;
  }
}

.top .mainVisual__slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: -24%;
  z-index: 2;
  display: block;
  width: 432px;
  height: 310px;
  transform: translateY(-62px);
  background: url("/assets/generated/top-watercolor-brush.svg") center top / contain no-repeat;
  pointer-events: none;
}

.top .mainVisual__slider::after {
  display: none;
}

@media (min-width: 1201px) {
  .top .mainVisual__slider::before {
    left: -244px;
    background-image: url("/assets/generated/brush-candidates-v140/brush-v140-alpha.png");
    width: 468px;
    height: 310px;
    transform: translateY(-66px);
    opacity: 1;
    filter: saturate(.9) contrast(.96) brightness(1.04);
    clip-path: none;
  }

  .top .mainVisual__slider::after {
    content: "";
    position: absolute;
    left: -204px;
    top: 8px;
    z-index: 2;
    display: block;
    width: 380px;
    height: 250px;
    transform: translateY(-36px);
    opacity: .22;
    filter: saturate(.92) contrast(.96) brightness(1.03);
    background: url("/assets/generated/top-watercolor-brush.svg") center top / contain no-repeat;
    pointer-events: none;
    clip-path: none;
  }
}

.top .mainVisual__slideFrame,
.top .mainVisual__track {
  height: 100%;
}

.top .mainVisual__slideFrame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.top .mainVisual__track {
  position: relative;
  width: 1000%;
  white-space: nowrap;
  transform: translateX(-20%);
  transition: transform 1.8s ease;
  font-size: 16px;
  line-height: 24px;
}

.top .mainVisual__slider--item {
  position: static;
  display: block;
  float: left;
  width: 10%;
  height: 100%;
  opacity: 1;
  transform: none;
  vertical-align: top;
  transition: none;
  font-size: 16px;
}

.top .mainVisual__slider--item.is-active {
  opacity: 1;
  transform: none;
}

.top .mainVisual__slider--item.is-clone {
  opacity: 1;
  pointer-events: none;
}

.top .mobile-clone-bank {
  position: absolute;
  left: -200vw;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.top .mainVisual__slider--item picture,
.top .mainVisual__slider--item img {
  display: block;
  width: 100%;
  height: 100%;
}

.top .mainVisual__slider--item img {
  object-fit: fill;
}

.top .mainVisual__slider--item img[src*="top-slider-img-01"] {
  filter: brightness(.97) contrast(1.04) saturate(.74);
}

@media (min-width: 768px) {
  .top .mainVisual__slider--item img[src*="top-slider-img-01"] {
    filter: brightness(.97) contrast(1.06) saturate(.76);
  }
}

.top .slick-arrow {
  position: absolute;
  z-index: 6;
  bottom: 86px;
  left: calc(-38vw + 5vw);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 0;
  background: #d74144;
  color: transparent;
  font-size: 0;
  line-height: 0;
  padding: 1px 6px 1px 10px;
  cursor: pointer;
}

.top .slick-next {
  left: calc(-38vw + 5vw + 53px);
  padding: 1px 10px 1px 6px;
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .top .slick-arrow {
    bottom: 46px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .top .slick-arrow {
    bottom: 35px;
  }
}

.top .slick-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-35%, -50%) rotate(225deg);
}

.top .slick-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.top .mainVisual__thumb {
  position: relative;
  display: block;
  width: 864px;
  height: 98px;
  margin: 40px auto 0;
  font-size: 1.6rem;
  line-height: 1.5;
  white-space: nowrap;
}

.top .mainVisual__thumb--item {
  position: relative;
  display: inline-block;
  width: 216px;
  height: 98px;
  padding: 0 16px;
  line-height: 0;
  vertical-align: top;
}

.top .mainVisual__thumb--item.is-clone {
  display: none;
}

.top .mainVisual__thumb--item button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.top .mainVisual__thumb--item img {
  display: block;
  width: 184px;
  height: 98px;
  object-fit: fill;
}

.top .mainVisual__thumb--item.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  display: block;
  width: calc(100% - 32px);
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.top .mainVisual__dots {
  margin-top: 30px;
  height: 10px;
}

.top .slick-dots {
  display: block;
  height: 10px;
  line-height: 0;
  text-align: center;
}

.top .slick-dots li {
  display: inline-block;
  line-height: 0;
}

.top .slick-dots button {
  display: block;
  width: 85px;
  height: 6px;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #c0c0c0;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.top .topVisual__dots .slick-dots button {
  text-indent: -9999px;
}

.top .slick-dots .slick-active button {
  background: #d74144;
}

.top .topService {
  margin: 80px 0 60px;
  padding: 14% 0 15%;
}

.top .topService__inner {
  position: relative;
  background: #d74144;
}

.top .topService__inner::before,
.top .topService__inner::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  background: #d74144;
  pointer-events: none;
}

.top .topService__inner::before {
  top: 1px;
  height: 0;
  padding-top: max(14vw, 151.188px);
  transform: translateY(-100%);
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%20202%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20fill%3D%22%23d74144%22%20d%3D%22M0%20202%20L0%20164%20C214%2074%20472%2012%20730%2020%20C980%2028%201198%2094%201440%20142%20L1440%20202%20Z%22%2F%3E%3C%2Fsvg%3E") bottom center / 100% 100% no-repeat;
}

.top .topService__inner::after {
  bottom: 1px;
  height: 0;
  padding-top: max(15vw, 162px);
  transform: translateY(100%);
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%201440%20216%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20fill%3D%22%23d74144%22%20d%3D%22M0%200%20L1440%200%20L1440%2054%20C1258%20110%201082%20166%20842%20199%20C594%20233%20306%20190%200%2070%20Z%22%2F%3E%3C%2Fsvg%3E") top center / 100% 100% no-repeat;
}

.top .topService__h2 {
  position: relative;
  z-index: 2;
  width: 425px;
  height: 50px;
  margin: 0 auto 80px;
  text-align: center;
  color: #000;
  overflow: visible;
}

.top .topService__h2 span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 425px;
  height: 62px;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 62px;
  transform: translateY(-62px);
}

.top .topService__h2::after {
  content: "";
  display: block;
  width: 425px;
  height: 50px;
  background: url("/assets/generated/top-service-title-en.svg?v=20260628-v214") center / contain no-repeat;
}

.top .topService__h2 b {
  position: absolute;
  top: -200vh;
  left: -200vw;
  display: block;
  width: 100%;
  height: 50px;
  margin-top: 0;
  font-family: Arial, sans-serif;
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 5rem;
}

.top .topService--fc {
  position: relative;
  width: 100%;
  margin-bottom: 120px;
}

.top .topService--fc::after {
  display: none;
}

.top .topService__visualStack {
  content: "";
  position: absolute;
  top: 32px;
  left: 72px;
  display: block;
  width: 691px;
  height: 478px;
  overflow: visible;
  z-index: 3;
  pointer-events: auto;
}

.top .topService__visual {
  position: absolute;
  display: block;
  overflow: hidden;
  background-image: url("/assets/generated/service-collage-candidates/top-service-collage-v144-a.png");
  background-repeat: no-repeat;
  background-size: 860px 573px;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.08),
    inset 0 0 24px rgba(0,0,0,.14),
    0 8px 18px rgba(0,0,0,.07);
  contain: paint;
  transform: translate3d(0,0,0) scale(1);
  transform-origin: center;
  transition: transform 0.42s cubic-bezier(.16,1,.3,1);
  backface-visibility: hidden;
  will-change: transform;
}

.top .topService__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.12),
    inset 0 0 38px rgba(0,0,0,.2),
    0 26px 54px rgba(0,0,0,.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s cubic-bezier(.16,1,.3,1);
}

.top .topService__visual:hover,
.top .topService__visual:focus-visible {
  z-index: 4;
  transform: translate3d(0,-5px,0) scale(1.032);
}

.top .topService__visual:hover::after,
.top .topService__visual:focus-visible::after {
  opacity: 1;
}

.top .topService__visual--office {
  left: 0;
  top: 0;
  width: 213px;
  height: 428px;
  background-position: -40px -75px;
}

.top .topService__visual--building {
  left: 239px;
  top: 43px;
  width: 214px;
  height: 428px;
  background-position: -330px -10px;
}

.top .topService__visual--person {
  left: 477px;
  top: 0;
  width: 214px;
  height: 428px;
  background-position: -590px -82px;
}

.top .topService__cont {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.top .topService__cont--right {
  position: relative;
  width: 50%;
  margin: 0 0 2px auto;
  padding: 0 0 0 32px;
  min-height: 480px;
}

.top .topService__link--list {
  border-top: 1px solid #c0c0c0;
}

.top .topService__link--item {
  border-bottom: 1px solid #c0c0c0;
}

.top .topService__link--item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 32px 8px 32px 60px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2;
  white-space: normal;
  text-decoration: none;
  transform: translate3d(0,0,0);
  transition: transform 0.48s cubic-bezier(.16,1,.3,1), opacity 0.48s ease, background-color 0.48s ease;
  backface-visibility: hidden;
}

.top .topService__link--item a:hover,
.top .topService__link--item a:focus,
.top .topService__link--item a:active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transform: translate3d(10px,0,0);
}

.top .topService__link--item a::before {
  position: absolute;
  left: 8px;
  display: inline-block;
  margin-bottom: 2px;
  font-size: 1.25em;
  font-weight: 700;
}

.top .topService__link--item a::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 0;
  border-radius: 0;
  background: url("/assets/img/common/icon_arrowW.svg") center / 37px 37px no-repeat;
  transform: translate3d(0,0,0);
  transition: transform 0.48s cubic-bezier(.16,1,.3,1);
}

.top .topService__link--item a:hover::after,
.top .topService__link--item a:focus-visible::after {
  transform: translate3d(12px,0,0) scale(1.08);
}

.top .num-1::before { content: "01"; }
.top .num-2::before { content: "02"; }
.top .num-3::before { content: "03"; }
.top .num-4::before { content: "04"; }
.top .num-5::before { content: "05"; }
.top .num-6::before { content: "06"; }

.top .topCompany {
  position: relative;
  margin: 80px 0;
}

.top .topCompany .section__inner {
  position: relative;
  height: 767px;
  min-height: 0;
}

.top .topCompany__h2 {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 12%;
  height: 100%;
  transform: translateY(-50%);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
}

.top .topCompany__h2 span {
  position: relative;
  display: flex;
  align-items: center;
  width: 50px;
}

.top .topCompany__h2 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 314px;
  height: 50px;
  background: url("/assets/generated/top-title-company.svg") top left / contain no-repeat;
  transform: rotateZ(90deg) translateX(28px);
  transform-origin: 0 100% 0;
}

.top .topCompany__link {
  width: 88%;
  margin: 0 0 0 auto;
}

.top .topCompany__link--item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 226px;
  padding: 28px 0;
  border-bottom: 1px solid #c0c0c0;
  position: relative;
  transform: translate3d(0,0,0) scale(1);
  transform-origin: center;
  transition: transform 0.48s cubic-bezier(.16,1,.3,1);
  backface-visibility: hidden;
  will-change: transform;
}

.top .topCompany__link--item:hover,
.top .topCompany__link--item:focus-within {
  transform: translate3d(14px,0,0) scale(1.014);
}

.top .topCompany__link--item:nth-child(even):hover,
.top .topCompany__link--item:nth-child(even):focus-within {
  transform: translate3d(14px,0,0) scale(1.014);
}

.top .topCompany__link--link {
  width: 50%;
  padding: 0 34px 0 20px;
}

.top .topCompany__link--link a {
  position: relative;
  display: block;
  padding-left: 40px;
  font-size: 2.4rem;
  font-weight: 900;
  transform: translate3d(0,0,0);
  transition: transform 0.48s cubic-bezier(.16,1,.3,1), color 0.48s ease;
  backface-visibility: hidden;
}

.top .topCompany__link--item:hover .topCompany__link--link a,
.top .topCompany__link--item:focus-within .topCompany__link--link a {
  transform: translate3d(12px,0,0);
}

.top .topCompany__link--item:nth-child(even):hover .topCompany__link--link a,
.top .topCompany__link--item:nth-child(even):focus-within .topCompany__link--link a {
  transform: translate3d(12px,0,0);
}

.top .topCompany__link--link a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d74144;
  transform: translateY(-50%);
}

.top .topCompany__link--img {
  position: relative;
  width: 50%;
  height: 169px;
  overflow: hidden;
  contain: paint;
  transform: translateZ(0);
  transform-origin: center;
  transition: transform 0.48s cubic-bezier(.16,1,.3,1), box-shadow 0.48s ease;
  backface-visibility: hidden;
  will-change: transform;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.top .topCompany__link--img::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.08),
    inset 0 0 26px rgba(0,0,0,.12);
  opacity: .55;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.top .topCompany__link--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0,0,0) scale(1);
  transform-origin: center;
  backface-visibility: hidden;
}

.top .topCompany__link--item:hover .topCompany__link--img,
.top .topCompany__link--item:focus-within .topCompany__link--img {
  transform: translate3d(8px,-4px,0) scale(1.04);
  box-shadow: 0 24px 46px rgba(0,0,0,.18);
}

.top .topCompany__link--item:nth-child(even):hover .topCompany__link--img,
.top .topCompany__link--item:nth-child(even):focus-within .topCompany__link--img {
  transform: translate3d(8px,-4px,0) scale(1.04);
}

.top .topCompany__link--item:hover .topCompany__link--img::after,
.top .topCompany__link--item:focus-within .topCompany__link--img::after {
  opacity: 1;
}

.top .topCompany__btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 240px;
  margin: 0;
  transform: translateX(-50%);
}

.top .topColumn__btn {
  width: 240px;
  margin: 42px auto 0;
}

.topCase {
  margin: 80px 0;
  padding: 80px 0;
  background: #fff;
}

.topCase__block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topCase__h2 {
  width: 18%;
  margin-bottom: 70px;
  font-size: 3.6rem;
  font-weight: 700;
}

.topCase__h2::before,
.topColumn__h2::after,
.topInfo__h2 span::before {
  content: "";
  display: block;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
}

.topCase__h2::before {
  width: 119px;
  height: 15px;
  background-image: url("/assets/generated/top-title-case-study.svg");
}

.topCase__ex {
  width: 41%;
  height: 233px;
  padding-left: 37px;
}

.topCase__ex a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  contain: paint;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}

.topCase__ex a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background: linear-gradient(rgba(0,0,0,.16), rgba(0,0,0,.16)), url("/assets/generated/top-case-01.png") center / cover no-repeat;
  transform: translate3d(0,0,0) scale(1);
  transform-origin: center;
  transition: transform 0.82s cubic-bezier(.16,1,.3,1);
  backface-visibility: hidden;
  will-change: transform;
}

.topCase__ex--02 a::before {
  background-image: linear-gradient(rgba(0,0,0,.16), rgba(0,0,0,.16)), url("/assets/generated/top-case-02.png");
}

.topCase__ex a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.08),
    inset 0 0 34px rgba(0,0,0,.2);
  pointer-events: none;
}

.topCase__ex span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1em;
  overflow: hidden;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: transparent;
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}

.topCase__ex a:hover,
.topCase__ex a:focus-visible {
  transform: translate3d(0,0,0);
}

.topCase__ex a:hover::before,
.topCase__ex a:focus-visible::before {
  transform: translate3d(0,0,0) scale(1.14);
}

.top .topColumn__list--item a {
  overflow: hidden;
}

.top .topColumn__list--item img {
  transform: translate3d(0,0,0) scale(1);
  transform-origin: center;
  transition: transform 0.78s cubic-bezier(.16,1,.3,1);
  backface-visibility: hidden;
  will-change: transform;
}

.top .topColumn__list--item a:hover img,
.top .topColumn__list--item a:focus-visible img {
  transform: translate3d(0,0,0) scale(1.075);
}

@keyframes admic-motion-in {
  from {
    opacity: .72;
  }
  to {
    opacity: 1;
  }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .top .topService__visual,
    .top .topCompany__link--item,
    .topCase__ex,
    .top .topColumn__list--item {
      animation: admic-motion-in linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 28%;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .top .topService__visual,
  .top .topService__visual::after,
  .top .topService__link--item a,
  .top .topService__link--item a::after,
  .top .topCompany__link--item,
  .top .topCompany__link--link a,
  .top .topCompany__link--img,
  .top .topCompany__link--img::after,
  .top .topCompany__link--img img,
  .topCase__ex a::before,
  .top .topColumn__list--item img {
    transition: none;
  }

  .top .topService__visual:hover,
  .top .topService__visual:focus-visible,
  .top .topService__link--item a:hover,
  .top .topService__link--item a:focus-visible,
  .top .topService__link--item a:hover::after,
  .top .topService__link--item a:focus-visible::after,
  .top .topCompany__link--item:hover,
  .top .topCompany__link--item:focus-within,
  .top .topCompany__link--item:hover .topCompany__link--link a,
  .top .topCompany__link--item:focus-within .topCompany__link--link a,
  .top .topCompany__link--item:hover .topCompany__link--img,
  .top .topCompany__link--item:focus-within .topCompany__link--img,
  .topCase__ex a:hover::before,
  .topCase__ex a:focus-visible::before,
  .top .topColumn__list--item a:hover img,
  .top .topColumn__list--item a:focus-visible img {
    transform: translate3d(0,0,0);
  }

  .top .topService__visual,
  .top .topCompany__link--item,
  .topCase__ex,
  .top .topColumn__list--item {
    animation: none !important;
  }
}

.topCase__btn,
.topInfo__btn {
  position: absolute;
  bottom: calc(50% - 13px);
  left: 20px;
  width: 174px;
  transform: translateY(100%);
}

.top .topColumn {
  margin: 80px 0;
  height: 465px;
}

.top .topColumn__h2 {
  display: flex;
  align-items: baseline;
  margin-bottom: 40px;
  font-size: 3.6rem;
  font-weight: 700;
}

.top .topColumn__h2::after {
  width: 83px;
  height: 15.5px;
  margin-left: 5px;
  background-image: url("/assets/generated/top-title-column.svg");
}

.top .topColumn__list {
  display: flex;
  justify-content: space-between;
}

.top .topColumn__list--item {
  width: calc((100% - 144px) / 3);
}

.top .topColumn__list--item a {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 1.6rem;
}

.top .topColumn__list--item img {
  aspect-ratio: 299 / 199;
  object-fit: fill;
}

.top .topColumn__list--item p {
  margin-top: 1.5em;
  font-weight: 700;
  line-height: 1.5;
}

.top .topInfo {
  margin: 80px 0 70px;
  padding: 0;
  height: 359px;
}

.top .topInfo .section__inner {
  position: relative;
}

.top .topInfo .section__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e9e9e9;
  transform: translateX(-50%);
}

.top .topInfo__block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 56px 40px 60px 0;
  border-radius: 0 18px 18px 0;
  background: #e9e9e9;
}

.top .topInfo__h2 {
  width: 30%;
  margin-bottom: 70px;
  padding-right: calc(30% - 174px);
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
}

.top .topInfo__h2 span {
  position: relative;
  display: inline-block;
}

.top .topInfo__h2 span::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 136px;
  height: 15.5px;
  background-image: url("/assets/generated/top-title-info.svg");
  transform: translateY(-100%) translateX(-50%);
}

.top .topInfo__list {
  width: 70%;
}

.top .newsList__item {
  padding: 1em 0;
  border-bottom: 1px solid #c9c9c9;
}

.top .newsList__item a {
  display: inline;
  font-size: 1.6rem;
}

.newsList__item--info {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.newsList__item--info .date,
.top .newsList__date {
  color: #d74144;
  margin-right: 1em;
  font-weight: 400;
}

.newsList__item a:hover .title {
  text-decoration: underline;
}

.top .topVisual {
  position: relative;
  margin: 80px 0 100px;
  padding: 60px 0;
  height: 271px;
  background: #fff;
}

.top .topVisual__thum {
  position: relative;
  left: calc(50% - 520px);
  display: block;
  width: 1040px;
  margin: 0;
  overflow: visible;
  font-size: 1.6rem;
  line-height: 1.5;
}

.top .topVisual__thum--item {
  display: inline-block;
  width: 260px;
  padding: 0 16px;
  line-height: 0;
}

.top .topVisual__thum--item img {
  display: block;
  width: 228px;
  aspect-ratio: 368 / 196;
  object-fit: fill;
}

.top .topVisual__dots {
  margin-top: 30px;
}

.top .topVisual__dots {
  display: none;
  height: 0;
  margin: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .top .section__inner {
    max-width: none;
    padding: 0 20px;
  }

  .top .mainVisual {
    margin-bottom: 48px;
  }

  .top .mainVisual__inner--flex {
    flex-direction: column;
    align-items: normal;
    justify-content: normal;
  }

  .top .mainVisual__lead {
    width: 100%;
    min-width: 0;
    min-height: 240px;
    padding: 24px 18px 36px;
  }

  .top .mainVisual__lead::before {
    width: 260px;
    height: 90px;
    top: 22px;
    left: 100px;
  }

  .top .mainVisual__lead--en {
    margin-top: 9px;
    font-size: 1.6rem;
  }

  .top .mainVisual__lead--index {
    width: 74%;
    height: auto;
    margin-top: 0;
    padding-top: 26vw;
    background: url("/assets/generated/title-h1-mobile.svg?v=20260626-v64") left top / contain no-repeat;
  }

  .top .mainVisual__lead--text {
    position: static;
    left: auto;
    top: auto;
    width: 354px;
    max-width: 100%;
    margin-top: 7px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7142857143;
  }

  .top .mainVisual__slider {
    width: 100%;
    min-width: 0;
    height: 243.03125px;
    min-height: 0;
  }

  .top .mainVisual__slider--item img {
    height: auto;
  }

  .top .mainVisual__slider--item img[src*="top-slider-img-01-v56"] {
    filter: brightness(.98) saturate(.88);
  }

  .top .mainVisual__slider::before {
    display: none;
  }

  .top .slick-arrow {
    bottom: 20px;
    left: 18px;
    width: 40px;
    height: 40px;
    padding: 1px 6px 1px 14px;
  }

  .top .slick-next {
    left: 63px;
    padding: 1px 14px 1px 6px;
  }

  .top .mainVisual__thumb {
    display: block;
    width: 100%;
    height: 77.21875px;
    margin: 24px auto 0;
    overflow: hidden;
    padding-left: 0;
    transform: none;
    font-size: 1.4rem;
    line-height: 24px;
    --thumb-shift: -300px;
  }

  .top .mainVisual__thumb--item {
    display: inline-block;
    flex: 0 0 165px;
    width: 165px;
    height: 77.21875px;
    padding: 0 10px;
    transform: translateX(var(--thumb-shift));
    transition: transform 1.8s ease;
  }

  .top .mainVisual__thumb--item.is-clone {
    display: inline-block;
  }

  .top .mainVisual__thumb--item img {
    display: block;
    width: 145px;
    height: 77.21875px;
    object-fit: fill;
  }

  .top .mainVisual__thumb--item.is-active::after {
    left: 10px;
    width: calc(100% - 20px);
  }

  .top .mainVisual__dots {
    margin-top: 20px;
    height: 9px;
  }

  .top .slick-dots button {
    width: 45px;
  }

  .top .topService {
    margin-top: 40px;
    margin-bottom: 32px;
    padding: 11% 0 13.33%;
    height: 1005.75px;
  }

  .top .topService__inner {
    min-height: 880.875px;
  }

  .top .topService__inner::before {
    height: 11vw;
    padding-top: 0;
  }

  .top .topService__inner::after {
    height: 13.33vw;
    padding-top: 0;
  }

  .top .topService__h2 {
    width: 74.6666666667%;
    max-width: 280px;
    height: 102px;
    margin: 0 auto 30px;
    padding-top: 20px;
    overflow: hidden;
  }

  .top .topService__h2 span {
    position: static;
    width: 280px;
    height: 48px;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 48px;
    transform: none;
  }

  .top .topService__h2::after {
    width: 288px;
    height: 34px;
    margin-top: -5px;
    transform: none;
    transform-origin: center top;
    background-image: url("/assets/generated/top-service-title-en-mobile-v183.svg?v=20260628-v218");
    background-size: contain;
    background-position: center top;
  }

  .top .topService__h2 b {
    position: absolute;
    left: -200vw;
    top: -200vh;
    height: 0;
    font-size: 4.8rem;
    line-height: 1;
  }

  .top .topService--fc {
    margin-bottom: 30px;
    display: block;
    height: 748.875px;
  }

  .top .topService--fc::after {
    display: none;
  }

  .top .topService__visualStack {
    position: absolute;
    top: 460px;
    left: 18px;
    width: calc(100% - 18px);
    height: 265px;
    margin-top: 0;
  }

  .top .topService__visual {
    background-image: url("/assets/generated/top-service-collage-v122.png");
    background-size: 504px 336px;
  }

  .top .topService__visual--office {
    left: 0;
    top: 24px;
    width: 121px;
    height: 241px;
    background-position: -38px -42px;
  }

  .top .topService__visual--building {
    left: 136px;
    top: 48px;
    width: 121px;
    height: 240px;
    background-position: -202px -30px;
  }

  .top .topService__visual--person {
    left: 270px;
    top: 48px;
    width: 120px;
    height: 216px;
    background-position: -365px -48px;
  }

  .top .topService__cont {
    order: 1;
    flex-direction: column;
    padding: 0 !important;
    height: 748.875px;
  }

  .top .topService__cont--right {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 3% 20px 46px;
  }

  .top .topService__link--list {
    border-top: 0;
  }

  .top .topService__link--item a {
    height: 70px;
    min-height: 70px;
    padding: 1em 0 1em 56px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .top .topService__link--item a::before {
    left: 0;
  }

  .top .topService__link--item a::after {
    right: 0;
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    background-size: 31px 31px;
  }

  .top .topCompany {
    margin: 39px 0 43px;
    padding: 0 0 50px;
  }

  .top .topCompany .section__inner {
    height: auto;
    min-height: 0;
  }

  .top .topCompany__h2 {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    height: auto;
    transform: none;
    font-size: 2rem;
    font-weight: 700;
    line-height: 34.2857px;
    writing-mode: horizontal-tb;
  }

  .top .topCompany__h2 span {
    display: block;
    width: 228px;
    text-align: center;
  }

  .top .topCompany__h2 span::after {
    position: static;
    display: block;
    width: 228px;
    height: 37px;
    margin: 10px auto 0;
    background-position: top center;
    background-size: auto 100%;
    transform: none;
  }

  .top .topCompany__link {
    width: 100%;
  }

  .top .topCompany__link--item {
    flex-direction: column-reverse;
    min-height: 0;
    margin-top: 42px;
    padding: 0;
    border-bottom: 0;
  }

  .top .topCompany__link--link,
  .top .topCompany__link--img {
    width: 100%;
  }

  .top .topCompany__link--link {
    padding: 1em 0 0;
  }

  .top .topCompany__link--link a {
    padding-left: 1em;
    font-size: 2rem;
  }

  .top .topCompany__link--link a::before {
    width: 12px;
    height: 12px;
  }

  .top .topCompany__link--img {
    height: auto;
  }

  .top .topCompany__link--img img {
    aspect-ratio: 864 / 320;
  }

  .top .topCompany__btn {
    position: static;
    width: 100%;
    max-width: 240px;
    margin: 36px auto 0;
    transform: none;
  }

  .topCase {
    margin: 0;
    padding: 52px 0;
    height: 460px;
  }

  .topCase__block {
    flex-direction: column;
    align-items: stretch;
  }

  .topCase__h2 {
    width: auto;
    margin-bottom: 0;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
  }

  .topCase__h2::before {
    width: 107px;
    height: 14px;
    margin-bottom: 10px;
  }

  .topCase__ex {
    width: 100%;
    height: auto;
    margin-top: 20px;
    padding-left: 0;
  }

  .topCase__ex a {
    border-radius: 10px;
  }

  .topCase__ex span {
    min-height: 92px;
    padding: 1.75em;
    border-radius: 10px;
    font-size: 1.8rem;
    line-height: 1.2;
    background-size: cover;
  }

  .topCase__btn,
  .topInfo__btn {
    position: static;
    width: 100%;
    max-width: 240px;
    margin: 36px auto 0;
    transform: none;
  }

  .top .topColumn {
    margin: 52px 0;
    height: 367px;
  }

  .top .topColumn__h2 {
    flex-direction: column-reverse;
    margin-bottom: 0;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
  }

  .top .topColumn__h2::after {
    width: 74px;
    height: 14px;
    margin: 0 0 10px 5px;
  }

  .top .topColumn__list {
    flex-flow: row wrap;
    gap: 0 18px;
    margin-top: -10px;
  }

  .top .topColumn__list--item {
    width: calc(50% - 9px);
    margin-top: 24px;
  }

  .top .topColumn__list--item:last-child {
    display: none;
  }

  .top .topColumn__list--item p {
    margin-top: 1em;
    font-size: 1.6rem;
    line-height: 1.7142857143;
  }

  .top .topInfo {
    margin: 52px 0 60px;
    height: 493px;
  }

  .top .topInfo .section__inner::before {
    left: -20px;
    transform: none;
  }

  .top .topInfo__block {
    display: block;
    padding: 3em 1.2em 0 0;
    border-radius: 0;
  }

  .top .topInfo__h2 {
    width: 100%;
    margin-bottom: 0;
    padding-right: 0;
    text-align: left;
    font-size: 3.2rem;
    font-weight: 700;
  }

  .top .topInfo__h2 span {
    display: inline-block;
  }

  .top .topInfo__h2 span::before {
    position: static;
    transform: none;
  }

  .top .topInfo__list {
    width: 100%;
  }

  .top .newsList__item a {
    display: block;
    font-size: 1.4rem;
  }

  .top .newsList__date {
    display: block;
  }

  .top .topInfo__btn {
    padding-bottom: 3em;
  }

  .top .topVisual {
    top: -2.109375px;
    margin: 40px 0 60px;
    padding: 30px 0 40px;
    height: 256.1875px;
    background: #f8f8f8;
  }

  .top .topVisual__thum {
    display: flex;
    left: auto;
    position: static;
    flex-flow: row wrap;
    width: 350px;
    margin: 0 auto;
    padding: 0 9px;
    overflow: visible;
    font-size: 1.4rem;
    line-height: 24px;
  }

  .top .topVisual__thum--item {
    display: list-item;
    width: 157px;
    height: 93.09375px;
    padding: 0 8px 18px;
  }

  .top .topVisual__thum--item img {
    display: inline;
    width: 141px;
    height: 75.09375px;
    object-fit: fill;
  }

  .top .topVisual__dots {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .top .topVisual {
    margin-bottom: 105px;
  }
}

@media (max-width: 767px) {
  .top .topInfo {
    margin-top: 43px;
  }

  .top .topColumn {
    margin-bottom: 43px;
  }

  .rebuild-section {
    margin: 44px 0;
  }

  .rebuild-section--gray {
    padding: 42px 0;
  }

  .rebuild-lead {
    font-size: 1.5rem;
    line-height: 1.9;
    text-align: left;
  }

  .rebuild-copy {
    font-size: 1.42rem;
    line-height: 1.85;
  }

  .rebuild-h3 {
    margin-top: 30px;
    font-size: 1.75rem;
  }

  .rebuild-grid,
  .rebuild-grid--two {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rebuild-panel {
    padding: 22px 20px;
  }

  .rebuild-list li {
    display: block;
    padding: 16px 0;
    font-size: 1.42rem;
  }

  .rebuild-list time,
  .rebuild-list .label {
    display: block;
    margin-bottom: 4px;
  }

  .rebuild-table,
  .rebuild-table tbody,
  .rebuild-table tr,
  .rebuild-table th,
  .rebuild-table td {
    display: block;
    width: 100%;
  }

  .rebuild-table th {
    padding-bottom: 8px;
    border-bottom: 0;
  }

  .rebuild-table td {
    padding-top: 8px;
  }

  .rebuild-form__row {
    grid-template-columns: 1fr;
  }

  .rebuild-form__row label {
    padding-bottom: 8px;
  }

  .rebuild-form__field {
    padding-top: 8px;
  }

  .rebuild-article {
    margin: 48px 0 60px;
  }

  .rebuild-article__body {
    margin-top: 22px;
    padding-top: 24px;
  }

  .rebuild-article__nav {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .rebuild-card-link--text {
    min-height: 56px;
    font-size: 1.42rem;
  }

  .yearList,
  .categoryList {
    gap: 8px;
    margin-bottom: 16px;
  }

  .categoryList {
    margin-bottom: 32px;
  }

  .yearList__item a,
  .categoryList__item a {
    padding: 7px 13px;
    font-size: 1.3rem;
  }

  .news__detail .date,
  .column__detail .date {
    margin: 12px 0 22px;
  }

  .news__detail--main,
  .column__detail--main {
    font-size: 1.42rem;
    line-height: 1.9;
  }

  .column__detail--img {
    margin-bottom: 30px;
  }

  .column__detail--main .intro {
    padding: 22px 20px;
    font-size: 1.45rem;
    line-height: 1.9;
  }

  .borderBox {
    grid-template-columns: 1fr;
    padding: 18px 20px;
  }

  .column__detail .case dt {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    font-size: 1.55rem;
  }

  .column__detail .case dt img {
    width: 100%;
  }
}

.btn.btn--small > a {
  min-height: 40px;
  height: 40px;
  margin: 0;
  padding: 3.6px 18px 5.4px 13.5px;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .top .topInfo__btn.btn--small > a {
    min-height: 48px;
    height: 48px;
  }
}
