@charset "UTF-8";
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 6rem;
  padding: 0 1.8rem 0 1.6rem;
  transition: background-color 0.25s ease;
}
@media screen and (min-width: 768px) {
  .site-header {
    height: 10rem;
    padding: 0 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  body.is-scrolled .site-header, body.is-menu-open .site-header {
    background-color: #FEFEFE;
  }
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
  color: #000000;
}
.site-header__logo img {
  width: 3.3rem;
  aspect-ratio: 33/28;
}
@media screen and (min-width: 768px) {
  .site-header__logo img {
    width: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .site-header__logo {
    gap: 1.2rem;
    font-size: 1.8rem;
  }
}
.site-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .site-header__nav {
    display: flex;
    align-items: center;
    gap: 4rem;
    height: 5rem;
    padding: 0 0 0 6rem;
    border-radius: 6rem;
    background: #FEFEFE;
    box-shadow: 1rem 1rem 2rem rgba(102, 102, 102, 0.2);
    font-size: 1.5rem;
    font-weight: 500;
  }
}
.site-header__nav > a:not(.site-header__contact) {
  position: relative;
  display: flex;
  align-items: center;
  height: 5rem;
}
.site-header__nav > a[aria-current=page]:not(.site-header__contact)::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #C2BBB3;
  transform: translateX(-50%);
  content: "";
}
.site-header__contact {
  position: relative;
  display: grid;
  grid-template-columns: max-content 2.4rem;
  align-items: center;
  justify-content: center;
  column-gap: 1.2rem;
  width: 20rem;
  height: 5rem;
  border: 2px solid #E14B1F;
  border-radius: 6rem;
  color: #FEFEFE;
  background: #E14B1F;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.site-header__contact span {
  grid-area: 1/1;
}
.site-header__contact img {
  grid-area: 1/2;
  width: 2.4rem;
  aspect-ratio: 1;
  transition: opacity 0.25s ease;
}
.site-header__contact::after {
  grid-area: 1/2;
  width: 2.4rem;
  aspect-ratio: 1;
  background: url("../img/icon/mail--orange.svg") center/contain no-repeat;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  content: "";
}
@media screen and (min-width: 768px) {
  .site-header__contact:hover {
    color: #E14B1F;
    background-color: #FEFEFE;
  }
  .site-header__contact:hover img {
    opacity: 0;
  }
  .site-header__contact:hover::after {
    opacity: 1;
  }
}
.site-header__sp-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
@media screen and (min-width: 768px) {
  .site-header__sp-actions {
    display: none;
  }
}
.site-header__mail {
  display: grid;
  place-items: center;
  width: 4.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #E14B1F;
}
.site-header__mail img {
  width: 2.4rem;
  aspect-ratio: 1;
}

.menu-button {
  position: relative;
  width: 4rem;
  height: 3.2rem;
}
.menu-button span:not(.menu-button__label) {
  position: absolute;
  left: 0;
  width: 4rem;
  height: 2px;
  border-radius: 2px;
  background: #5E5B56;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.menu-button span:nth-child(1) {
  top: 0.5rem;
}
.menu-button span:nth-child(2) {
  top: 1.5rem;
}
.menu-button span:nth-child(3) {
  top: 2.5rem;
}
.menu-button__label {
  position: absolute;
  width: 0.1rem;
  aspect-ratio: 1;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
body.is-menu-open .menu-button span:nth-child(1) {
  top: 1.5rem;
  transform: rotate(35deg);
}
body.is-menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}
body.is-menu-open .menu-button span:nth-child(3) {
  top: 1.5rem;
  transform: rotate(-35deg);
}

.sp-menu {
  position: fixed;
  inset: 6rem 0 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 4rem 6rem;
  overflow-y: auto;
  background: #FEFEFE;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1.2rem);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
@media screen and (min-width: 768px) {
  .sp-menu {
    display: none;
  }
}
body.is-menu-open .sp-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.sp-menu > .button {
  flex-shrink: 0;
}
.sp-menu__nav {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 31rem;
  gap: 3rem;
}
.sp-menu__nav a {
  padding-bottom: 3rem;
  border-bottom: 3px solid #E8E0D7;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.sp-menu__contact.button {
  justify-content: center;
  gap: 1rem;
  margin-top: 6.8rem;
  padding: 1rem 1rem 1rem 0.6rem;
  border: 0;
  border-radius: 6rem;
  box-shadow: none;
  font-weight: 500;
  line-height: normal;
}
.sp-menu__contact.button img {
  order: 2;
  width: 2.6rem;
  aspect-ratio: 1;
}
.sp-menu__contact.button::before, .sp-menu__contact.button::after {
  content: none;
}
.sp-menu__recruit.button {
  justify-content: center;
  margin-top: 2rem;
  padding: 1rem;
  border: 0;
  box-shadow: none;
  font-weight: 500;
  line-height: 2.4;
}
.sp-menu__recruit.button::before, .sp-menu__recruit.button::after {
  content: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  width: 31rem;
  max-width: 100%;
  height: 6rem;
  padding: 0 2.1rem 0 3.2rem;
  border: 2px solid transparent;
  border-radius: 8rem;
  overflow: hidden;
  color: #FEFEFE;
  background: #3954DE;
  box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.2);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
@media screen and (min-width: 768px) {
  .button {
    width: 30rem;
  }
}
.button img {
  width: 2.4rem;
}
.button::before {
  position: absolute;
  top: 50%;
  right: 2.26rem;
  z-index: 1;
  width: 1.28rem;
  aspect-ratio: 14/15;
  background: url("../img/common/button-arrow--white.svg") center/contain no-repeat;
  opacity: 0;
  transform: translate(-0.4rem, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  content: "";
}
.button::after {
  flex: 0 0 1.6rem;
  display: block;
  width: 1.6rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  transform: scale(1);
  transition: transform 0.25s ease;
  content: "";
}
@media screen and (min-width: 768px) {
  .button:hover {
    color: #3954DE;
    border-color: #3954DE;
    background-color: #FEFEFE;
  }
  .button:hover::before {
    opacity: 1;
    transform: translate(0, -50%);
  }
  .button:hover::after {
    transform: scale(1.8);
  }
}
.button--orange {
  border-color: #E14B1F;
  background: #E14B1F;
}
@media screen and (min-width: 768px) {
  .button--orange:hover {
    color: #E14B1F;
    border-color: #E14B1F;
    background-color: #FEFEFE;
  }
}
.button--back {
  justify-content: center;
  gap: 0;
  padding: 0 2rem;
  text-align: center;
}
.button--back::before, .button--back::after {
  content: none;
}
.button--outline {
  color: #3954DE;
  border: 2px solid #3954DE;
  background: #FEFEFE;
}
.button--external {
  --external-icon-offset: 2.1rem;
  --external-icon-size: 2.4rem;
  gap: 1.2rem;
}
.button--external::before {
  right: var(--external-icon-offset);
  width: var(--external-icon-size);
  aspect-ratio: 1;
  background: url("../img/common/blank--white.svg") center/contain no-repeat;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.25s ease;
  content: "";
}
.button--external::after {
  flex: 0 0 var(--external-icon-size);
  width: var(--external-icon-size);
  border-radius: 0;
  background: url("../img/common/blank--black.svg") center/contain no-repeat;
  transition: opacity 0.25s ease;
}
@media screen and (min-width: 768px) {
  .button--external:hover {
    color: #FEFEFE;
    border-color: #3954DE;
    background-color: #3954DE;
  }
  .button--external:hover::before {
    opacity: 1;
    transform: translateY(-50%);
  }
  .button--external:hover::after {
    opacity: 0;
    transform: none;
  }
}
.button--recruit-entry {
  display: flex;
  border-radius: 8.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .button--recruit-entry {
    --external-icon-offset: 3.3rem;
    --external-icon-size: 2.6rem;
    width: 33rem;
    height: 8rem;
    margin: 4rem auto 0;
    padding: 0.7rem 5.3rem 0.7rem 6.6rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .button--recruit-entry {
    --external-icon-offset: 10.7rem;
    --external-icon-size: 4rem;
    width: 60rem;
    height: 10.6rem;
    margin: 10.3rem auto 0;
    padding: 0.7rem 10.7rem 0.7rem 17.3rem;
    font-size: 2.7rem;
  }
}

.home main {
  overflow: clip;
}

.section-label {
  color: #5E5B56;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .section-label {
    font-size: 1.5rem;
  }
}
.section-label--vertical {
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.en-label {
  margin-bottom: 0.7rem;
  color: #E14B1F;
  font-family: "Gabarito", sans-serif;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .en-label {
    font-size: 2rem;
  }
}

.section-heading {
  display: grid;
  gap: 1.4rem;
}
.section-heading h2 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .section-heading h2 {
    font-size: 4.8rem;
  }
}
@media screen and (min-width: 768px) {
  .section-heading {
    gap: 2.2rem;
  }
}
.section-heading--white {
  color: #FEFEFE;
}
.section-heading--white .section-label {
  color: #FEFEFE;
}

.home-hero {
  z-index: 1;
  overflow: visible;
  isolation: isolate;
  background-color: #F8F4EF;
}
.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../img/common/noise.webp");
  background-position: center top;
  background-size: 200rem auto;
  background-repeat: repeat-y;
  mix-blend-mode: multiply;
  pointer-events: none;
  content: "";
}
@media screen and (max-width: 767px) {
  .home-hero {
    height: 52rem;
  }
}
@media screen and (min-width: 768px) {
  .home-hero {
    height: 54.5138888889vw;
  }
}
.home-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .home-hero__slider {
    top: 6rem;
    left: 0;
    height: 64rem;
  }
}
@media screen and (min-width: 768px) {
  .home-hero__slider {
    top: -0.4166666667vw;
    left: -11.9444444444vw;
    width: calc(100vw + 15.9722222222vw);
    height: calc(86.72vw + 16.6666666667vw);
  }
}
.home-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}
@media screen and (max-width: 767px) {
  .home-hero__slide {
    height: 64rem;
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  .home-hero__slide {
    width: calc(100vw + 15.9722222222vw);
    height: calc(86.72vw + 16.6666666667vw);
  }
}
.home-hero__slide img {
  max-width: none;
  object-position: center top;
}
@media screen and (max-width: 767px) {
  .home-hero__slide img {
    width: 39rem;
    height: 64rem;
    object-fit: contain;
  }
}
@media screen and (min-width: 768px) {
  .home-hero__slide img {
    width: calc(100vw + 15.9722222222vw);
    height: calc(86.72vw + 16.6666666667vw);
    object-fit: fill;
    object-position: 0 0;
  }
}
.home-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
}
.home-hero__catch {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row-reverse;
  color: #373835;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  text-shadow: none;
}
.home-hero__catch span {
  writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .home-hero__catch {
    top: 9.3rem;
    right: 7rem;
    gap: 1.9rem;
  }
}
@media screen and (min-width: 768px) {
  .home-hero__catch {
    top: 12.2222222222vw;
    right: 12.5694444444vw;
    gap: 3.125vw;
    font-size: 3.3333333333vw;
  }
}

.home-message {
  isolation: isolate;
  margin-top: -0.1rem;
  background-color: #E8E0D7;
}
@media screen and (min-width: 768px) {
  .home-message {
    overflow: visible;
  }
}
.home-message__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.home-message__decor-group {
  position: absolute;
  pointer-events: none;
}
.home-message__decor-group--noise {
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.home-message__decor-group--under {
  top: -11rem;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 34.3rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-message__decor-group--under {
    top: -16vw;
    left: 50%;
    width: 100vw;
    height: 61.8055555556vw;
    transform: translateX(-50%);
  }
}
.home-message__decor-group--inner {
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 39rem;
}
@media screen and (min-width: 768px) {
  .home-message__decor-group--inner {
    left: 50%;
    width: 129rem;
    transform: translateX(-50%);
  }
}
.home-message__decor-item {
  position: absolute;
  max-width: none;
  pointer-events: none;
}
.home-message__decor-item--section-noise {
  inset: 0;
  background: url("../img/common/noise.webp") center top/200rem auto repeat-y;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .home-message__decor-item--under-bg-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .home-message__decor-item--under-bg-pc {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
}
.home-message__decor-item--under-bg-sp {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@media screen and (min-width: 768px) {
  .home-message__decor-item--under-bg-sp {
    display: none;
  }
}
.home-message__decor-item--under-noise {
  inset: 0;
  background: url("../img/common/noise.webp") center top/200rem auto repeat-y;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .home-message__decor-item--line-arc-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .home-message__decor-item--line-arc-pc {
    top: 8rem;
    left: 0;
    z-index: 0;
    width: 100%;
  }
}
.home-message__decor-item--line-arc-sp {
  top: 5rem;
  left: 0;
  z-index: 0;
  width: 39rem;
}
@media screen and (min-width: 768px) {
  .home-message__decor-item--line-arc-sp {
    display: none;
  }
}
.home-message__decor-item--gravel-01 {
  z-index: 2;
  width: 8.8rem;
  height: 6.8rem;
}
@media screen and (max-width: 767px) {
  .home-message__decor-item--gravel-01 {
    left: 27.5rem;
    bottom: 63.7rem;
  }
}
@media screen and (min-width: 768px) {
  .home-message__decor-item--gravel-01 {
    top: 33rem;
    left: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .home-message__decor-item--gravel-02 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .home-message__decor-item--gravel-02 {
    left: 6rem;
    bottom: 40rem;
    z-index: 2;
    width: 8.8rem;
    height: 6.8rem;
  }
}
.home-message__decor-item--gravel-03 {
  z-index: 2;
  width: 11.3rem;
  height: 6.2rem;
}
@media screen and (max-width: 767px) {
  .home-message__decor-item--gravel-03 {
    left: -4rem;
    bottom: 21.3rem;
  }
}
@media screen and (min-width: 768px) {
  .home-message__decor-item--gravel-03 {
    left: 54.5rem;
    bottom: 20rem;
  }
}
.home-message__inner {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .home-message__inner {
    padding: 23rem 4rem 12rem;
  }
}
@media screen and (min-width: 768px) {
  .home-message__inner {
    display: grid;
    grid-template-columns: 53rem 71rem;
    column-gap: 4rem;
    width: 129rem;
    margin: 0 auto;
    padding: 34vw 0 30rem;
  }
}
.home-message .section-label {
  position: relative;
  z-index: 3;
  color: #727272;
}
.home-message__photos {
  position: relative;
  z-index: 3;
  display: grid;
  order: 2;
}
.home-message__photos > * {
  grid-area: 1/1;
}
@media screen and (min-width: 768px) {
  .home-message__photos {
    order: 0;
    grid-column: 1;
    grid-row: 1;
  }
}
.home-message__photo {
  position: relative;
  display: block;
  object-fit: cover;
  border-radius: 0.6rem;
  box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.2);
}
@media screen and (min-width: 768px) {
  .home-message__photo {
    border-radius: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .home-message__photo--01 {
    width: 18.5rem;
  }
}
@media screen and (min-width: 768px) {
  .home-message__photo--01 {
    margin-left: 4.8rem;
    width: 37rem;
  }
}
@media screen and (max-width: 767px) {
  .home-message__photo--02 {
    margin-top: 34rem;
    margin-left: 9rem;
    width: 15rem;
    z-index: 1;
  }
}
@media screen and (min-width: 768px) {
  .home-message__photo--02 {
    margin-top: 74.8rem;
    margin-left: auto;
    width: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .home-message__photo--03 {
    margin-top: 26rem;
    margin-left: auto;
    width: 13rem;
  }
}
@media screen and (min-width: 768px) {
  .home-message__photo--03 {
    margin-top: 59.8rem;
    width: 26.6rem;
  }
}
.home-message__walker {
  position: absolute;
  top: 26.2rem;
  left: 0;
  z-index: 3;
  width: 5.9rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .home-message__walker {
    top: 101rem;
    left: 72rem;
  }
}
.home-message__content {
  position: relative;
  z-index: 3;
  align-self: start;
  display: contents;
}
.home-message__content h2 {
  position: relative;
  z-index: 3;
  order: 0;
  align-self: start;
  width: 8.8rem;
  margin: 0 auto 3rem;
  color: #373835;
  font-weight: bold;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .home-message__content h2 {
    font-size: 2rem;
    line-height: 2.2;
  }
}
@media screen and (min-width: 768px) {
  .home-message__content h2 {
    grid-column: 1;
    grid-row: 1/3;
    width: auto;
    margin: 0;
    font-size: 3.2rem;
    line-height: 2.25;
  }
}
.home-message__content .button {
  order: 3;
}
@media screen and (max-width: 767px) {
  .home-message__content .button {
    margin: 6rem auto 0;
  }
}
@media screen and (min-width: 768px) {
  .home-message__content .button {
    grid-column: 2;
    grid-row: 2;
    margin-left: 5.6rem;
  }
}
@media screen and (min-width: 768px) {
  .home-message__content {
    display: grid;
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: 14.4rem 45.1rem;
    column-gap: 14.4rem;
    margin: 23rem 0 0;
  }
}
.home-message__button {
  position: relative;
  z-index: 3;
  align-self: start;
}
@media screen and (max-width: 767px) {
  .home-message__button {
    align-self: center;
  }
}
.home-message__text {
  position: relative;
  z-index: 3;
  align-self: start;
  display: grid;
  grid-template-columns: 1.6rem 28rem;
  column-gap: 2rem;
  order: 1;
}
@media screen and (min-width: 768px) {
  .home-message__text {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: 1.6rem 42.7rem;
    column-gap: 4rem;
    width: 45.1rem;
    margin-top: 19rem;
  }
}
.home-message__text .section-label {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  width: 1.3rem;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .home-message__text .section-label {
    width: 1.5rem;
  }
}
.home-message__body {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  font-size: 1.5rem;
  line-height: 2.15;
}
.home-message__body p {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .home-message__body p {
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .home-message__body br.pc-only-br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .home-message__body {
    font-size: 2rem;
    line-height: 2.4;
  }
}

.home-reason {
  isolation: isolate;
  margin-top: -2.5rem;
  color: #FEFEFE;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .home-reason {
    --home-reason-bg-overlap: 2px;
    --home-reason-bg-top-h: calc(100vw * 64 / 1169);
    --home-reason-bg-bottom-h: calc(100vw * 77 / 1171);
    --home-reason-bg-middle-y: calc(var(--home-reason-bg-top-h) - var(--home-reason-bg-overlap));
    --home-reason-bg-middle-h: calc(100% - var(--home-reason-bg-top-h) - var(--home-reason-bg-bottom-h) + (var(--home-reason-bg-overlap) * 2));
  }
}
@media screen and (min-width: 768px) {
  .home-reason {
    --home-reason-bg-overlap: 2px;
    --home-reason-bg-top-h: calc(100vw * 151 / 2880);
    --home-reason-bg-bottom-h: calc(100vw * 136 / 2880);
    --home-reason-bg-middle-y: calc(var(--home-reason-bg-top-h) - var(--home-reason-bg-overlap));
    --home-reason-bg-middle-h: calc(100% - var(--home-reason-bg-top-h) - var(--home-reason-bg-bottom-h) + (var(--home-reason-bg-overlap) * 2));
    z-index: 2;
    margin-top: -8rem;
  }
}
.home-reason::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../img/top/decor/about-bg-top-sp.webp"), url("../img/top/decor/about-bg-bottom-sp.webp"), linear-gradient(#96918B, #96918B);
  background-repeat: no-repeat;
  background-position: center top, center bottom, center var(--home-reason-bg-middle-y);
  background-size: 100% auto, 100% auto, 100% var(--home-reason-bg-middle-h);
  content: "";
}
@media screen and (min-width: 768px) {
  .home-reason::before {
    background-image: url("../img/top/decor/about-bg-top.webp"), url("../img/top/decor/about-bg-bottom.webp"), linear-gradient(#96918B, #96918B);
  }
}
.home-reason::after {
  position: absolute;
  top: var(--home-reason-bg-middle-y);
  left: 0;
  z-index: 2;
  width: 100%;
  height: var(--home-reason-bg-middle-h);
  background: url("../img/common/noise.webp") center top/200rem auto repeat-y;
  pointer-events: none;
  content: "";
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .home-reason::after {
    background-size: 100% auto;
  }
}
.home-reason__decor {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.home-reason__decor-group {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .home-reason__decor-group--upper {
    top: 0;
    left: 0;
    width: 39rem;
    height: 40rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-group--upper {
    top: 14rem;
    right: -5.2rem;
    width: 60.7rem;
    height: 78.3rem;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__decor-group--head-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-group--head-pc {
    top: 16rem;
    left: calc(50% - 60rem);
    width: 72.3rem;
    height: 29.3rem;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__decor-group--middle-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-group--middle-pc {
    top: 80.1rem;
    left: calc(50% - 60rem);
    width: 127rem;
    height: 54rem;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__decor-group--lower-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-group--lower-pc {
    left: 0;
    bottom: 17rem;
    width: 100%;
    aspect-ratio: 2880/1000;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__decor-group--lower-sp {
    left: 0;
    bottom: 12rem;
    width: 100%;
    aspect-ratio: 390/416;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-group--lower-sp {
    display: none;
  }
}
.home-reason__decor-item {
  position: absolute;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .home-reason__decor-item--pipe-upper-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--pipe-upper-pc {
    top: 0;
    right: 0;
    width: 35rem;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__decor-item--pipe-upper-sp {
    top: 5rem;
    left: 13.3rem;
    width: 42.2rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--pipe-upper-sp {
    display: none;
  }
}
.home-reason__decor-item--stand {
  width: 6.5rem;
}
@media screen and (max-width: 767px) {
  .home-reason__decor-item--stand {
    top: 17rem;
    left: 18.2rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--stand {
    top: 39rem;
    left: 31rem;
  }
}
.home-reason__decor-item--cones {
  width: 14.2rem;
}
@media screen and (max-width: 767px) {
  .home-reason__decor-item--cones {
    top: -2rem;
    left: 2.8rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--cones {
    top: -5rem;
    left: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__decor-item--keepout {
    top: 6.2rem;
    left: 27rem;
    width: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--keepout {
    top: 1rem;
    left: 44rem;
    width: 9.7rem;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__decor-item--gravel-07 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--gravel-07 {
    top: 15rem;
    left: 48rem;
    width: 8.8rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--kneel {
    top: 11.8rem;
    left: 48.8rem;
    width: 7.4rem;
  }
}
.home-reason__decor-item--sit {
  width: 8.9rem;
}
@media screen and (max-width: 767px) {
  .home-reason__decor-item--sit {
    top: 11rem;
    left: 27.3rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--sit {
    top: 40.9rem;
    left: 104.3rem;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__decor-item--bow {
    top: 17.6rem;
    left: 10.6rem;
    width: 5.8rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--bow {
    left: 28.75%;
    bottom: 5%;
    width: 4.03%;
  }
}
.home-reason__decor-item--pipe-lower-pc, .home-reason__decor-item--pipe-lower-sp {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--gravel-01 {
    top: 0;
    left: 1.4rem;
    width: 8.8rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--gravel-02 {
    top: 18.5rem;
    left: 63.5rem;
    width: 8.8rem;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__decor-item--gravel-03 {
    left: 26%;
    bottom: 3.5%;
    width: 22.56%;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--gravel-03 {
    top: 35%;
    left: 6.1%;
    width: 6.11%;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__decor-item--gravel-04 {
    left: 56%;
    bottom: 2%;
    width: 22.56%;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--gravel-04 {
    left: 55.97%;
    bottom: 13.6%;
    width: 6.11%;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--gravel-05 {
    top: 0;
    left: -7rem;
    width: 11.3rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__decor-item--gravel-06 {
    top: 28.8rem;
    left: 115.7rem;
    width: 11.3rem;
  }
}
.home-reason__inner {
  position: relative;
  z-index: 4;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .home-reason__inner {
    padding: 23rem 0 45rem 8rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__inner {
    width: 120rem;
    padding: 28rem 0 50rem 5.3rem;
  }
}
.home-reason .section-label {
  position: absolute;
  color: #FEFEFE;
}
@media screen and (max-width: 767px) {
  .home-reason .section-label {
    top: 23rem;
    left: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason .section-label {
    top: 28.4rem;
    left: 0;
  }
}
.home-reason__head {
  margin: 0;
  text-align: left;
}
.home-reason__head h2 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .home-reason__head h2 {
    font-size: 7.2rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__layout {
    display: grid;
    grid-template-columns: 46rem 41rem;
    justify-content: start;
    column-gap: 7rem;
    row-gap: 8rem;
    margin-top: 10.9rem;
  }
}
.home-reason__media {
  display: contents;
}
.home-reason__media img {
  display: block;
  object-fit: cover;
  box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.2);
}
@media screen and (max-width: 767px) {
  .home-reason__media img {
    width: 27rem;
    height: 16.4rem;
    border-radius: 0.6rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__media img {
    grid-column: 1;
    width: 46rem;
    height: 28rem;
    border-radius: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__media img:nth-child(1) {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__media img:nth-child(1) {
    grid-row: 1;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__media img:nth-child(2) {
    order: 3;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__media img:nth-child(2) {
    grid-row: 2;
  }
}
@media screen and (max-width: 767px) {
  .home-reason__media img:nth-child(3) {
    order: 5;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__media img:nth-child(3) {
    grid-row: 3;
  }
}
.home-reason__items {
  display: contents;
}
.home-reason__cards {
  display: grid;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .home-reason__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 4.6rem;
  }
}
.home-reason__button {
  display: flex;
}
@media screen and (max-width: 767px) {
  .home-reason__button {
    margin: 1rem 0 0 -4.1rem;
  }
}
@media screen and (min-width: 768px) {
  .home-reason__button {
    margin: 8rem 0 0 53.6rem;
  }
}

.reason-card {
  color: #373835;
  background: #FEFEFE;
  border-radius: 0.6rem;
  overflow: hidden;
  box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.2);
}
.reason-card img {
  width: 100%;
  height: 21rem;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .reason-card img {
    height: 23rem;
  }
}
.reason-card div {
  padding: 2.6rem 2.2rem 3.4rem;
}
@media screen and (min-width: 768px) {
  .reason-card div {
    padding: 3rem 2.8rem 3.8rem;
  }
}
.reason-card span {
  display: block;
  margin-bottom: 1rem;
  color: #E14B1F;
  font-family: "Gabarito", sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
}
.reason-card h3 {
  margin-bottom: 1.8rem;
  font-size: 2rem;
  font-weight: bold;
}
.reason-card p {
  line-height: 1.8;
}

.home-recruit {
  display: grid;
  overflow: hidden;
  color: #FEFEFE;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .home-recruit {
    margin-top: -2.6rem;
  }
}
@media screen and (min-width: 768px) {
  .home-recruit {
    margin-top: -7.7rem;
    padding-block: 18.9rem;
  }
}
.home-recruit__bg {
  position: absolute;
  inset: 0;
}
.home-recruit__bg::after {
  position: absolute;
  inset: 0;
  background: rgba(67, 67, 67, 0.6);
  mix-blend-mode: darken;
  content: "";
}
.home-recruit__bg picture {
  width: 100%;
  height: 100%;
}
.home-recruit__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-recruit__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  margin: 0 auto;
  text-align: center;
}
.home-recruit__content h2 {
  margin: 0;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .home-recruit__content h2 {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .home-recruit__content h2 {
    font-size: 7.2rem;
  }
}
.home-recruit__content p {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .home-recruit__content p {
    margin: 0.5rem 0 0;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .home-recruit__content p {
    margin: 1.3rem 0 0;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .home-recruit__content .button {
    margin: 1rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .home-recruit__content .button {
    margin: 2.8rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .home-recruit__content {
    width: 31rem;
    padding: 13rem 0 5rem;
  }
}
@media screen and (min-width: 768px) {
  .home-recruit__content {
    width: min(100%, 80rem);
    padding: 21rem 0 0;
  }
}

.page-hero {
  overflow: hidden;
  height: 44rem;
  background: #F8F4EF;
}
@media screen and (min-width: 768px) {
  .page-hero {
    height: 52rem;
  }
}
.page-hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1170/534;
  background: url("../img/common/page-top-sp.webp") left top/100% auto no-repeat;
  pointer-events: none;
  content: "";
}
@media screen and (min-width: 768px) {
  .page-hero::before {
    width: 132rem;
    aspect-ratio: 2634/788;
    background-image: url("../img/common/page-top.webp");
  }
}
.page-hero__inner {
  position: relative;
  width: min(100% - 8rem, 120rem);
  height: 100%;
  margin: 0 auto;
  padding-top: 17rem;
  text-align: right;
}
.page-hero__inner p {
  color: #C2BBB3;
  font-family: "Gabarito", sans-serif;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-hero__inner p {
    font-size: 6.4rem;
    letter-spacing: 0.6rem;
  }
}
.page-hero__inner h1 {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .page-hero__inner h1 {
    margin-top: 3rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .page-hero__inner {
    padding-top: 28rem;
  }
}
.page-hero--short {
  height: 37rem;
}
@media screen and (min-width: 768px) {
  .page-hero--short {
    height: 43rem;
  }
}

.anchor-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: min(100% - 6rem, 33rem);
  margin: 8rem auto 0;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .anchor-nav {
    display: grid;
    grid-template-columns: repeat(2, 18.7rem);
    gap: 2rem 4rem;
    width: 120rem;
  }
}
.anchor-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  padding: 0 2rem;
  border-bottom: 1px solid #E8E0D7;
}
@media screen and (min-width: 768px) {
  .anchor-nav a {
    padding: 0;
  }
}
.anchor-nav a::after {
  flex: 0 0 2rem;
  width: 2rem;
  aspect-ratio: 1;
  background: url("../img/common/anchor-nav-arrow.svg") center/contain no-repeat;
  transition: transform 0.25s ease;
  content: "";
}
@media screen and (min-width: 768px) {
  .anchor-nav a:hover::after {
    transform: scale(1.2);
  }
}

.section-cream {
  background: #F8F4EF;
}

@media screen and (max-width: 767px) {
  .company-message {
    padding: 4rem 0 8rem;
  }
}
@media screen and (min-width: 768px) {
  .company-message {
    padding: 16rem 0 20rem;
  }
}
.company-message__inner {
  position: relative;
  display: grid;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company-message__inner {
    gap: 6rem;
    width: 33rem;
    padding-top: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .company-message__inner {
    grid-template-columns: 58rem 44rem;
    gap: 17.7rem;
    align-items: start;
    width: 120rem;
    padding-top: 4rem;
  }
}
.company-message .section-label {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .company-message__text {
    padding-left: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  .company-message__text {
    padding-left: 5.6rem;
  }
}
.company-message__text h2 {
  margin: 0;
  color: #E14B1F;
  font-weight: bold;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .company-message__text h2 {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 768px) {
  .company-message__text h2 {
    font-size: 5.8rem;
  }
}
.company-message__text p {
  margin-top: 2.4rem;
  font-weight: 500;
  line-height: 2;
}
.company-message__text p.company-message__body {
  line-height: 1.8;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 767px) {
  .company-message__text p.company-message__body {
    margin: 2.1rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .company-message__text p.company-message__body {
    margin: 4rem 0 0;
  }
}
.company-message__text p.company-message__sign {
  margin-top: 2.8rem;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}
.company-message__photo {
  overflow: hidden;
  box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.2);
}
@media screen and (max-width: 767px) {
  .company-message__photo {
    width: 33rem;
    aspect-ratio: 1;
    border-radius: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .company-message__photo {
    width: 44rem;
    aspect-ratio: 1;
    border-radius: 2rem;
  }
}
.company-message__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .company-message__photo img {
    left: 0;
  }
}

.company-values {
  overflow: visible;
  background: transparent;
}
.company-values::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  background-color: #E8E0D7;
  background-image: url("../img/common/noise.webp");
  background-position: center top;
  background-size: 200rem auto;
  background-repeat: repeat-y;
  content: "";
}
@media screen and (max-width: 767px) {
  .company-values::before {
    height: 145rem;
  }
}
@media screen and (min-width: 768px) {
  .company-values::before {
    height: 89rem;
  }
}
.company-values__inner {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company-values__inner {
    width: 33rem;
    padding-top: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .company-values__inner {
    grid-template-columns: 54.4rem 17.6rem 47rem;
    column-gap: 2rem;
    align-items: start;
    width: 128rem;
  }
}
@media screen and (max-width: 767px) {
  .company-values .section-heading {
    justify-self: center;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .company-values .section-heading {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    margin-top: 15.4rem;
  }
}
.company-values .section-heading h2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width: 767px) {
  .company-values .section-heading h2 {
    margin: 0;
    font-size: 2.6rem;
    letter-spacing: 0.11em;
  }
}
@media screen and (min-width: 768px) {
  .company-values .section-heading h2 {
    font-size: 4.8rem;
    letter-spacing: 0.105em;
  }
}
.company-values__photos {
  position: relative;
}
@media screen and (max-width: 767px) {
  .company-values__photos {
    order: 3;
    width: 33rem;
    min-height: 64.3rem;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .company-values__photos {
    grid-column: 1;
    grid-row: 1;
    width: 54.4rem;
    min-height: 97.6rem;
    margin-top: -4rem;
  }
}
.company-values__photo {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: cover;
  box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.2);
}
@media screen and (max-width: 767px) {
  .company-values__photo {
    border-radius: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .company-values__photo {
    border-radius: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .company-values__photo--01 {
    top: 0;
    left: 6.1rem;
    width: 24.4rem;
    aspect-ratio: 244/280;
  }
}
@media screen and (min-width: 768px) {
  .company-values__photo--01 {
    top: 0;
    left: 10.6rem;
    width: 35.8rem;
    aspect-ratio: 358/410;
  }
}
@media screen and (max-width: 767px) {
  .company-values__photo--02 {
    top: 23.1rem;
    left: -1.2rem;
    width: 17.2rem;
    aspect-ratio: 172/175;
  }
}
@media screen and (min-width: 768px) {
  .company-values__photo--02 {
    top: 33.9rem;
    left: 0;
    width: 25.1rem;
    aspect-ratio: 251/256;
  }
}
@media screen and (max-width: 767px) {
  .company-values__photo--03 {
    top: 44.6rem;
    left: 6.6rem;
    width: 26.4rem;
    aspect-ratio: 264/197;
  }
}
@media screen and (min-width: 768px) {
  .company-values__photo--03 {
    top: 68.8rem;
    left: 15.8rem;
    width: 38.6rem;
    aspect-ratio: 386/288;
  }
}
@media screen and (max-width: 767px) {
  .company-values__title-pc {
    display: none;
  }
}
.company-values__title-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .company-values__title-sp {
    display: inline;
  }
}
.company-values .value-list {
  display: grid;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .company-values .value-list {
    order: 2;
    gap: 4rem;
    margin-top: 7.2rem;
  }
}
@media screen and (min-width: 768px) {
  .company-values .value-list {
    grid-column: 3;
    grid-row: 1;
    gap: 8.2rem;
    width: 47rem;
    margin: 16rem 0 0 2rem;
  }
}
.company-values .value-card > div {
  display: grid;
}
@media screen and (max-width: 767px) {
  .company-values .value-card > div {
    grid-template-columns: 2rem 1fr;
    column-gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .company-values .value-card > div {
    grid-template-columns: 2rem 1fr;
    column-gap: 1rem;
  }
}
.company-values .value-card span {
  grid-column: 1;
  grid-row: 1;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #E14B1F;
}
@media screen and (max-width: 767px) {
  .company-values .value-card span {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .company-values .value-card span {
    margin-top: 0.6rem;
  }
}
.company-values .value-card h3 {
  grid-column: 2;
  margin: 0;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .company-values .value-card h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .company-values .value-card h3 {
    font-size: 3.2rem;
    white-space: nowrap;
  }
}
.company-values .value-card p {
  grid-column: 1/-1;
  margin: 0;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .company-values .value-card p {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .company-values .value-card p {
    width: 41.5rem;
    margin-top: 2rem;
  }
}

.company-profile {
  background: #F8F4EF;
}
@media screen and (max-width: 767px) {
  .company-profile {
    padding: 8rem 0 10rem;
  }
}
@media screen and (min-width: 768px) {
  .company-profile {
    padding: 16rem 0;
  }
}
.company-profile__inner {
  display: grid;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company-profile__inner {
    gap: 4rem;
    width: 33rem;
  }
}
@media screen and (min-width: 768px) {
  .company-profile__inner {
    grid-template-columns: 56rem 63.4rem;
    gap: 8rem 6.6rem;
    align-items: start;
    width: 132rem;
  }
}
@media screen and (max-width: 767px) {
  .company-profile .section-heading {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .company-profile .section-heading {
    grid-column: 1/-1;
    margin-left: 7.3rem;
  }
}
.company-profile .section-heading h2 {
  white-space: nowrap;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .company-profile .section-heading h2 {
    margin: 0;
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .company-profile .section-heading h2 {
    font-size: 5.8rem;
  }
}
.company-profile__photo {
  object-fit: cover;
  object-position: 38% 50%;
}
@media screen and (max-width: 767px) {
  .company-profile__photo {
    width: 36rem;
    max-width: none;
    margin-left: -3rem;
    aspect-ratio: 360/300;
    border-radius: 0 1rem 1rem 0;
  }
}
@media screen and (min-width: 768px) {
  .company-profile__photo {
    width: 56rem;
    margin-left: -6rem;
    aspect-ratio: 560/480;
    border-radius: 0 2rem 2rem 0;
  }
}

.profile-table {
  display: grid;
  gap: 2rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .profile-table {
    width: 63.4rem;
  }
}
.profile-table div {
  display: grid;
  padding: 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .profile-table div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px dashed #C2BBB3;
  }
}
@media screen and (min-width: 768px) {
  .profile-table div {
    grid-template-columns: 11rem 42.4rem;
    gap: 10rem;
    border-bottom: 1px dashed #C2BBB3;
  }
}
.profile-table dt {
  color: #96918B;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .profile-table dt {
    width: 11rem;
  }
}
.profile-table dd {
  font-weight: 500;
  line-height: 1.8;
}
.profile-table dd p,
.profile-table dd ul,
.profile-table dd ol {
  margin: 0;
}
.profile-table dd ul,
.profile-table dd ol {
  padding: 0;
  list-style: none;
}
.profile-table dd li {
  display: grid;
  grid-template-columns: var(--profile-marker-width) 1fr;
}
.profile-table dd ul {
  --profile-marker-width: 1em;
}
.profile-table dd ul li::before {
  content: "・";
}
.profile-table dd ol {
  counter-reset: profile-order;
}
.profile-table dd ol li {
  --profile-marker-width: 1.15em;
  counter-increment: profile-order;
}
.profile-table dd ol li:nth-child(n+10) {
  --profile-marker-width: 1.75em;
}
.profile-table dd ol li::before {
  content: counter(profile-order) ".";
}
.profile-table__address {
  display: inline-flex;
  align-items: center;
}
.profile-table__address a {
  flex: 0 0 auto;
  display: inline-flex;
}
.profile-table__address img {
  width: 2rem;
  aspect-ratio: 1;
}
.profile-table__tel {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .business-intro {
    padding-top: 7.9rem;
  }
}
@media screen and (min-width: 768px) {
  .business-intro {
    padding: 18rem 0 6rem;
  }
}
.business-intro__inner {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .business-intro__inner {
    display: flex;
    flex-direction: column;
    width: 33rem;
  }
}
@media screen and (min-width: 768px) {
  .business-intro__inner {
    display: grid;
    grid-template-columns: 47.5rem 60rem;
    column-gap: 12.5rem;
    align-items: start;
    width: 120rem;
  }
}
@media screen and (max-width: 767px) {
  .business-intro__content {
    display: contents;
  }
}
.business-intro__content > p {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .business-intro__content > p {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .business-intro__content > p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .business-intro__diagram {
    order: 2;
    margin-top: 4.2rem;
  }
}
@media screen and (min-width: 768px) {
  .business-intro__diagram {
    grid-column: 2;
    width: 60rem;
    margin-top: -6.4rem;
  }
}
.business-intro__diagram img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .business-intro__nav {
    order: 3;
    width: 100%;
    margin: 4rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .business-intro__nav {
    width: 41.4rem;
    margin: 8rem 0 0;
  }
}

.business-services {
  isolation: isolate;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .business-services {
    --business-services-bg-overlap: 2px;
    --business-services-bg-top-h: calc(100vw * 83 / 999);
    --business-services-bg-bottom-h: calc(100vw * 36 / 1000);
    --business-services-bg-middle-y: calc(var(--business-services-bg-top-h) - var(--business-services-bg-overlap));
    --business-services-bg-middle-h: calc(100% - var(--business-services-bg-top-h) - var(--business-services-bg-bottom-h) + (var(--business-services-bg-overlap) * 2));
    margin-top: 8rem;
    padding: 8rem 0;
  }
}
@media screen and (min-width: 768px) {
  .business-services {
    --business-services-bg-overlap: 2px;
    --business-services-bg-top-h: calc(100vw * 287 / 2880);
    --business-services-bg-bottom-h: calc(100vw * 91 / 2880);
    --business-services-bg-middle-y: calc(var(--business-services-bg-top-h) - var(--business-services-bg-overlap));
    --business-services-bg-middle-h: calc(100% - var(--business-services-bg-top-h) - var(--business-services-bg-bottom-h) + (var(--business-services-bg-overlap) * 2));
    padding: 28rem 0 23rem;
  }
}
.business-services::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../img/business/bg-top-sp.webp"), url("../img/business/bg-bottom-sp.webp"), linear-gradient(#96918B, #96918B);
  background-repeat: no-repeat;
  background-position: center top, center bottom, center var(--business-services-bg-middle-y);
  background-size: 100% auto, 100% auto, 100% var(--business-services-bg-middle-h);
  content: "";
}
@media screen and (min-width: 768px) {
  .business-services::before {
    background-image: url("../img/business/bg-top.webp"), url("../img/business/bg-bottom.webp"), linear-gradient(#96918B, #96918B);
  }
}
.business-services::after {
  position: absolute;
  top: var(--business-services-bg-middle-y);
  left: 0;
  z-index: 2;
  width: 100%;
  height: var(--business-services-bg-middle-h);
  background: url("../img/common/noise.webp") center top/200rem auto repeat-y;
  pointer-events: none;
  content: "";
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .business-services::after {
    background-size: 100% auto;
  }
}
.business-services__decor {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.business-services__gravel {
  position: absolute;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .business-services__gravel--01 {
    top: 7rem;
    left: 3.5rem;
    width: 6.6rem;
  }
}
@media screen and (min-width: 768px) {
  .business-services__gravel--01 {
    top: 12.4rem;
    left: 14rem;
    width: 8.8rem;
  }
}
@media screen and (max-width: 767px) {
  .business-services__gravel--02 {
    top: 45rem;
    right: -1.4rem;
    width: 6.6rem;
  }
}
@media screen and (min-width: 768px) {
  .business-services__gravel--02 {
    top: 19rem;
    right: 28.6rem;
    width: 8.8rem;
  }
}
@media screen and (max-width: 767px) {
  .business-services__gravel--03 {
    top: 150rem;
    left: -3rem;
    width: 8.4rem;
  }
}
@media screen and (min-width: 768px) {
  .business-services__gravel--03 {
    top: 137rem;
    left: -1.5rem;
    width: 11.3rem;
  }
}
@media screen and (max-width: 767px) {
  .business-services__gravel--04 {
    top: 229rem;
    right: -2rem;
    width: 6.6rem;
  }
}
@media screen and (min-width: 768px) {
  .business-services__gravel--04 {
    top: 206rem;
    right: 2rem;
    width: 8.8rem;
  }
}
@media screen and (max-width: 767px) {
  .business-services__gravel--05 {
    top: 284rem;
    left: -2.4rem;
    width: 6.6rem;
  }
}
@media screen and (min-width: 768px) {
  .business-services__gravel--05 {
    top: 292rem;
    left: -1.5rem;
    width: 8.8rem;
  }
}
@media screen and (max-width: 767px) {
  .business-services__gravel--06 {
    top: 340rem;
    left: -2.5rem;
    width: 8.4rem;
  }
}
@media screen and (min-width: 768px) {
  .business-services__gravel--06 {
    top: 392rem;
    left: 1.4rem;
    width: 11.3rem;
  }
}
@media screen and (max-width: 767px) {
  .business-services__gravel--07 {
    right: 2.8rem;
    bottom: 8rem;
    width: 6.6rem;
  }
}
@media screen and (min-width: 768px) {
  .business-services__gravel--07 {
    right: 14rem;
    bottom: 12rem;
    width: 8.8rem;
  }
}
.business-services__inner {
  position: relative;
  z-index: 4;
  display: grid;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .business-services__inner {
    gap: 4rem;
    width: 33rem;
  }
}
@media screen and (min-width: 768px) {
  .business-services__inner {
    gap: 16rem;
    width: 120rem;
  }
}
.business-services .service-card {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .business-services .service-card {
    margin: 0;
    padding: 3rem;
    border-radius: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .business-services .service-card {
    padding: 8rem;
    border-radius: 2rem;
  }
}

.service-card {
  padding: 4.2rem 2.4rem 3.6rem;
  border-radius: 0.6rem;
  background: #FEFEFE;
  box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.25);
}
@media screen and (min-width: 768px) {
  .service-card {
    padding: 8rem 8rem 7rem;
  }
}
.service-card__head {
  display: grid;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .service-card__head {
    gap: 2.8rem;
  }
}
@media screen and (min-width: 768px) {
  .service-card__head {
    grid-template-columns: 1fr 47.1rem;
    gap: 7.9rem;
  }
}
.service-card__head h2 {
  margin-bottom: 2rem;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .service-card__head h2 {
    margin-bottom: 1.8rem;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .service-card__head h2 {
    font-size: 5.8rem;
  }
}
.service-card__head p:not(.en-label) {
  line-height: 1.8;
}
.service-card__head img {
  width: 100%;
  border-radius: 0.4rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .service-card__head img {
    height: 21.4rem;
  }
}
@media screen and (min-width: 768px) {
  .service-card__head img {
    width: 47.1rem;
    height: 35rem;
  }
}

.feature-box {
  position: relative;
  background: #E8E0D7;
  border-radius: 0.8rem;
}
@media screen and (max-width: 767px) {
  .feature-box {
    margin: 3rem auto 0;
    border-radius: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .feature-box {
    margin-top: 6rem;
    padding: 6.5rem 2rem 5.5rem 6.5rem;
    border-radius: 1rem;
  }
}
.feature-box h3 {
  display: grid;
  place-items: center;
  color: #FEFEFE;
  background: #96918B;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature-box h3 {
    position: absolute;
    top: -1rem;
    left: 1rem;
    z-index: 1;
    width: 3rem;
    min-height: 12.7rem;
    padding: 0;
    border-radius: 9rem;
    writing-mode: vertical-rl;
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  .feature-box h3 {
    position: absolute;
    top: -3rem;
    left: 2rem;
    width: 6rem;
    min-height: 25rem;
    padding: 3rem 1.5rem;
    border-radius: 6rem;
    writing-mode: vertical-rl;
    font-size: 2.4rem;
  }
}
.feature-box ul {
  display: grid;
}
@media screen and (max-width: 767px) {
  .feature-box ul {
    width: 23rem;
    margin-left: 2rem;
    padding: 3rem 0;
  }
}
@media screen and (min-width: 768px) {
  .feature-box ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-box li {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature-box li {
    display: grid;
    justify-items: center;
  }
}
@media screen and (min-width: 768px) {
  .feature-box li {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 767px) {
  .feature-box li:not(:last-child) {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #FEFEFE;
  }
}
@media screen and (min-width: 768px) {
  .feature-box li:not(:last-child)::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    bottom: 0;
    background: rgba(254, 254, 254, 0.78);
    content: "";
  }
}
.feature-box img {
  width: 6rem;
}
@media screen and (max-width: 767px) {
  .feature-box img {
    margin: -0.9rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .feature-box img {
    width: 8rem;
    margin: 0 auto 1.8rem;
  }
}
.feature-box strong {
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature-box strong {
    width: 23rem;
    margin: 0 0 1rem;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  .feature-box strong {
    margin-bottom: 1.6rem;
    font-size: 2rem;
  }
}
.feature-box span {
  display: block;
  width: 23rem;
  line-height: 1.8;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .feature-box span {
    width: auto;
  }
}

.service-gallery {
  overflow: hidden;
  border-radius: 1rem;
  background: #F8F4EF;
}
@media screen and (max-width: 767px) {
  .service-gallery {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .service-gallery {
    margin-top: 6rem;
  }
}
.service-gallery h3 {
  margin: 0;
}
.service-gallery__content {
  overflow: hidden;
}
.service-gallery__content[hidden] {
  display: none;
}
.service-gallery__content-inner {
  display: grid;
  background: #F8F4EF;
}
@media screen and (max-width: 767px) {
  .service-gallery__content-inner {
    gap: 3.4rem;
    padding: 3rem 2rem 3.8rem;
  }
}
@media screen and (min-width: 768px) {
  .service-gallery__content-inner {
    gap: 4rem;
    padding: 4.8rem 4.5rem 5rem;
  }
}
@media screen and (max-width: 767px) {
  .service-gallery__content-inner--equipment {
    gap: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  .service-gallery__content-inner--equipment {
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 5.5rem;
  }
}
@media screen and (max-width: 767px) {
  .service-gallery__content-inner--repair {
    gap: 4.4rem;
  }
}
@media screen and (min-width: 768px) {
  .service-gallery__content-inner--repair {
    gap: 7rem;
    padding-top: 9rem;
  }
}
.service-gallery__button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 6rem;
  padding: 0 4.8rem 0 2rem;
  border: 0;
  border-radius: 1rem 1rem 0 0;
  color: #FEFEFE;
  background: #5E5B56;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .service-gallery__button {
    min-height: 10rem;
    padding: 0 7.2rem 0 4rem;
    font-size: 2.4rem;
  }
}
.service-gallery__button::before, .service-gallery__button::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  content: "";
}
.service-gallery__button::before {
  width: 2.4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(#5E5B56, #5E5B56) center/50% 2px no-repeat, #FEFEFE;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .service-gallery__button::before {
    right: 3.2rem;
    width: 3.2rem;
  }
}
.service-gallery__button::after {
  width: 2.4rem;
  aspect-ratio: 1;
  background: linear-gradient(#5E5B56, #5E5B56) center/2px 50% no-repeat;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.25s ease;
}
@media screen and (min-width: 768px) {
  .service-gallery__button::after {
    right: 3.2rem;
    width: 3.2rem;
  }
}
.service-gallery__button[aria-expanded=true]::after {
  transform: translateY(-50%) rotate(90deg);
}
@media (hover: hover) {
  .service-gallery__button:hover {
    opacity: 0.78;
  }
}
.service-gallery__group {
  display: grid;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .service-gallery__group {
    gap: 1.4rem;
  }
}
.service-gallery__group-title {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 13rem;
  min-height: 2.6rem;
  padding: 0.3rem 2rem;
  background: #fff;
  border: 1px solid #96918B;
  border-radius: 99rem;
  color: #5E5B56;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .service-gallery__group-title {
    width: 100%;
  }
}
.service-gallery__group-title--repair {
  width: 25rem;
  min-height: 3rem;
  padding: 0;
  border-color: #5E5B56;
  background: #FEFEFE;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .service-gallery__group-title--repair {
    min-height: 4rem;
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  .service-gallery__group-title--lining {
    width: 28rem;
  }
}
@media screen and (min-width: 768px) {
  .service-gallery__group-title--kate {
    width: 18rem;
  }
}
.service-gallery__text {
  line-height: 1.8;
}
.service-gallery__flow {
  display: grid;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .service-gallery__flow {
    gap: 1.1rem;
  }
}
@media screen and (min-width: 768px) {
  .service-gallery__flow {
    grid-template-columns: 28rem 3rem 28rem 3rem 28rem;
    gap: 0 1.3rem;
  }
}
.service-gallery__flow figure {
  display: grid;
  gap: 1.1rem;
}
.service-gallery__flow figure > img {
  width: 100%;
  aspect-ratio: 14/11;
  object-fit: cover;
  border-radius: 0.4rem;
}
@media screen and (min-width: 768px) {
  .service-gallery__flow--two {
    grid-template-columns: 42rem 3rem 42rem;
    justify-content: space-between;
  }
}
.service-gallery__flow--two figure > img {
  aspect-ratio: 3/2;
}
@media screen and (min-width: 768px) {
  .service-gallery__flow--two .service-gallery__arrow {
    margin-top: 12.35rem;
  }
}
.service-gallery__repair-case {
  display: grid;
}
.service-gallery__repair-case .service-gallery__text {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .service-gallery__repair-case .service-gallery__text {
    margin-top: 2rem;
  }
}
.service-gallery__repair-case .service-gallery__flow {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .service-gallery__repair-case .service-gallery__flow {
    margin-top: 4rem;
  }
}
.service-gallery__arrow {
  justify-self: center;
  width: 2.2rem;
  aspect-ratio: 20/22;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .service-gallery__arrow {
    margin-top: 9.35rem;
    width: 3rem;
    transform: none;
  }
}
.service-gallery figcaption {
  color: #96918B;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.service-gallery__equipment {
  display: grid;
  align-content: start;
  gap: 1.6rem;
}
.service-gallery__equipment img {
  width: 100%;
  aspect-ratio: 7/5;
  object-fit: cover;
}
.service-gallery__equipment h4 {
  color: #373835;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-gallery__equipment h4 {
    font-size: 2.4rem;
  }
}
.service-gallery__equipment p {
  line-height: 1.8;
}

.vehicle-section {
  background-color: #F8F4EF;
  background-image: radial-gradient(circle at 16% 20%, rgba(194, 187, 179, 0.23) 0 0.08rem, transparent 0.12rem), radial-gradient(circle at 68% 28%, rgba(194, 187, 179, 0.18) 0 0.08rem, transparent 0.12rem), radial-gradient(circle at 42% 74%, rgba(194, 187, 179, 0.16) 0 0.08rem, transparent 0.12rem);
}
@media screen and (max-width: 767px) {
  .vehicle-section {
    padding: 8rem 0 10rem;
  }
}
@media screen and (min-width: 768px) {
  .vehicle-section {
    padding: 16rem 0;
  }
}
.vehicle-section__inner {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .vehicle-section__inner {
    width: 33rem;
  }
}
@media screen and (min-width: 768px) {
  .vehicle-section__inner {
    width: 120rem;
  }
}
.vehicle-section__heading h2 {
  width: max-content;
  color: #373835;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .vehicle-section__heading h2 {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .vehicle-section__heading h2 {
    font-size: 4.8rem;
    line-height: 1.6;
  }
}
.vehicle-section__heading p {
  width: max-content;
  margin-top: 1rem;
  margin-left: -0.7rem;
  color: #373835;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}

.vehicle-grid {
  display: grid;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 1.5rem;
    margin-top: 4.9rem;
  }
}
.vehicle-grid figure {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .vehicle-grid figure {
    padding-bottom: 0.7rem;
  }
}
.vehicle-grid img {
  width: 100%;
  aspect-ratio: 390/280;
  object-fit: cover;
}
.vehicle-grid figcaption {
  display: grid;
  place-items: center;
  width: 18rem;
  min-height: 3.6rem;
  padding: 0 1.6rem;
  border: 1px solid #5E5B56;
  border-radius: 5rem;
  background: #FEFEFE;
  color: #5E5B56;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .recruit-message {
    padding: 8rem 0 10rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit-message {
    padding: 18rem 0 16rem;
  }
}
.recruit-message__inner {
  position: relative;
  display: grid;
  gap: 3.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .recruit-message__inner {
    gap: 0;
    width: 33rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit-message__inner {
    grid-template-areas: "main title" "text crane" "control crane";
    grid-template-columns: 79rem 41rem;
    grid-template-rows: 40rem auto auto;
    gap: 8rem 0;
    align-items: start;
    width: 120rem;
  }
}
.recruit-message__main {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  border-radius: 1rem;
}
.recruit-message__main img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit-message__main {
    aspect-ratio: 330/230;
  }
  .recruit-message__main img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 768px) {
  .recruit-message__main {
    grid-area: main;
    width: 79rem;
    border-radius: 2rem;
    box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.2);
  }
}
.recruit-message h2 {
  display: flex;
  flex-direction: row-reverse;
  color: #E14B1F;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .recruit-message h2 {
    gap: 1rem;
    justify-self: center;
    margin: 4.1rem 0 0;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit-message h2 {
    grid-area: title;
    grid-row: 1/3;
    justify-self: start;
    gap: 2rem;
    margin: 0 0 0 13.6rem;
    font-size: 4.8rem;
    letter-spacing: 0.2em;
  }
}
.recruit-message__title-line {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .recruit-message__title-line {
    width: 2.8rem;
    line-height: 1.1;
  }
  .recruit-message__title-line:nth-child(2) {
    width: 3.1rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit-message__title-line {
    line-height: 1.2;
  }
  .recruit-message__title-line:nth-child(2) {
    width: 5.2rem;
  }
}
.recruit-message__text {
  position: relative;
  width: 100%;
  padding-left: 3.6rem;
}
@media screen and (max-width: 767px) {
  .recruit-message__text {
    margin: 0.3rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .recruit-message__text {
    grid-area: text;
    width: 71.6rem;
    margin: 0 0 0 3.6rem;
    padding-left: 9.6rem;
  }
}
.recruit-message__text .section-label {
  position: absolute;
  top: 5.8rem;
  left: 0;
  width: 1.6rem;
  color: #727272;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .recruit-message__text .section-label {
    top: 0;
  }
}
.recruit-message__text .recruit-message__paragraph {
  margin-top: 2.5rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .recruit-message__text .recruit-message__paragraph {
    margin-top: 4rem;
    font-size: 2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__text .section-label + .recruit-message__paragraph {
    margin-top: 5.8rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit-message__text .section-label + .recruit-message__paragraph {
    margin-top: 0;
  }
}
.recruit-message__sub {
  display: block;
  max-width: none;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.2);
}
@media screen and (max-width: 767px) {
  .recruit-message__sub {
    width: 23.4rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit-message__sub {
    border-radius: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__sub--crane {
    margin: 4rem 0 0 7.8rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit-message__sub--crane {
    grid-area: crane;
    align-self: center;
    width: 47.2rem;
    margin: 35rem 0 0 -7.4rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message__sub--control {
    width: 12rem;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit-message__sub--control {
    grid-area: control;
    justify-self: start;
    width: 23.8rem;
    margin: 10rem 0 0 40rem;
  }
}

.job-field {
  isolation: isolate;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .job-field {
    --job-field-bg-overlap: 2px;
    --job-field-bg-top-h: calc(100vw * 98 / 1170);
    --job-field-bg-bottom-h: calc(100vw * 93 / 1536);
    --job-field-bg-middle-y: calc(var(--job-field-bg-top-h) - var(--job-field-bg-overlap));
    --job-field-bg-middle-h: calc(100% - var(--job-field-bg-top-h) - var(--job-field-bg-bottom-h) + (var(--job-field-bg-overlap) * 2));
    padding: 11rem 0 10rem;
  }
}
@media screen and (min-width: 768px) {
  .job-field {
    --job-field-bg-overlap: 2px;
    --job-field-bg-top-h: calc(100vw * 254 / 2880);
    --job-field-bg-bottom-h: calc(100vw * 156 / 2866);
    --job-field-bg-middle-y: calc(var(--job-field-bg-top-h) - var(--job-field-bg-overlap));
    --job-field-bg-middle-h: calc(100% - var(--job-field-bg-top-h) - var(--job-field-bg-bottom-h) + (var(--job-field-bg-overlap) * 2));
    padding: 18rem 0 22rem;
  }
}
.job-field::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/recruit/job-bg-top-sp.webp"), url("../img/recruit/job-bg-bottom-sp.webp"), linear-gradient(#E8E0D7, #E8E0D7);
  background-repeat: no-repeat;
  background-position: center top, center bottom, center var(--job-field-bg-middle-y);
  background-size: 100% auto, 100% auto, 100% var(--job-field-bg-middle-h);
  content: "";
}
@media screen and (min-width: 768px) {
  .job-field::before {
    background-image: url("../img/recruit/job-bg-top.webp"), url("../img/recruit/job-bg-bottom.webp"), linear-gradient(#E8E0D7, #E8E0D7);
  }
}
.job-field::after {
  position: absolute;
  top: var(--job-field-bg-middle-y);
  left: 0;
  z-index: 1;
  width: 100%;
  height: var(--job-field-bg-middle-h);
  background: url("../img/common/noise.webp") center top/200rem auto repeat-y;
  pointer-events: none;
  mix-blend-mode: multiply;
  content: "";
}
.job-field__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .job-field__inner {
    width: 33rem;
  }
}
@media screen and (min-width: 768px) {
  .job-field__inner {
    width: 122rem;
  }
}
.job-field .section-heading h2 {
  order: 1;
}
@media screen and (max-width: 767px) {
  .job-field .section-heading h2 {
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) {
  .job-field .section-heading h2 {
    font-size: 5.8rem;
    line-height: 1.6;
  }
}
.job-field .section-heading .section-label {
  color: #727272;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.2;
  order: 2;
}
@media screen and (max-width: 767px) {
  .job-field .section-heading {
    gap: 1rem;
  }
}
.job-field__list {
  display: grid;
}
@media screen and (max-width: 767px) {
  .job-field__list {
    row-gap: 3rem;
    margin-top: 4.1rem;
  }
}
@media screen and (min-width: 768px) {
  .job-field__list {
    margin-top: 1.1rem;
  }
}
.job-field__item {
  display: grid;
  border-bottom: 1px solid #FEFEFE;
}
.job-field__item h3 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
.job-field__item p {
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .job-field__item {
    gap: 2rem;
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .job-field__item {
    grid-template-columns: 1fr 48rem;
    gap: 9rem;
    align-items: center;
    padding: 4rem 0;
  }
}
.job-field__text {
  display: grid;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .job-field__text {
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .job-field__text {
    gap: 1.8rem;
  }
}
.job-field__image {
  display: block;
  overflow: hidden;
  width: 100%;
  line-height: 0;
  aspect-ratio: 330/240;
  border-radius: 1rem;
  box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.2);
}
.job-field__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .job-field__image {
    aspect-ratio: 480/260;
  }
}

.work-environment {
  isolation: isolate;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .work-environment {
    --work-environment-bg-bottom-h: calc(100vw * 252 / 1170);
    --work-environment-bg-overlap: 2px;
    --work-environment-bg-body-h: calc(100% - var(--work-environment-bg-bottom-h) + var(--work-environment-bg-overlap));
    margin-top: -2.5rem;
    padding: 8rem 0 9rem;
  }
}
@media screen and (min-width: 768px) {
  .work-environment {
    --work-environment-bg-bottom-h: calc(100vw * 169 / 2880);
    --work-environment-bg-overlap: 2px;
    --work-environment-bg-body-h: calc(100% - var(--work-environment-bg-bottom-h) + var(--work-environment-bg-overlap));
    margin-top: -8.5rem;
    padding: 24rem 0 22rem;
  }
}
.work-environment::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/recruit/data-bg-bottom-sp.webp"), linear-gradient(#96918B, #96918B);
  background-repeat: no-repeat;
  background-position: center bottom, center top;
  background-size: 100% auto, 100% var(--work-environment-bg-body-h);
  pointer-events: none;
  content: "";
}
@media screen and (min-width: 768px) {
  .work-environment::before {
    background-image: url("../img/recruit/data-bg-bottom.webp"), linear-gradient(#96918B, #96918B);
  }
}
.work-environment::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: var(--work-environment-bg-body-h);
  background: url("../img/common/noise.webp") center top/200rem auto repeat-y;
  mix-blend-mode: multiply;
  pointer-events: none;
  content: "";
}
.work-environment__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .work-environment__inner {
    width: 33rem;
  }
}
@media screen and (min-width: 768px) {
  .work-environment__inner {
    width: 120rem;
  }
}
.work-environment .section-heading h2 {
  order: 1;
  color: #FEFEFE;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .work-environment .section-heading h2 {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  .work-environment .section-heading h2 {
    margin-left: 0.2rem;
    font-size: 5.8rem;
  }
}
.work-environment .section-heading .section-label {
  order: 2;
  color: #E8E0D7;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .work-environment .section-heading .section-label {
    margin-left: -0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .work-environment .section-heading {
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .work-environment .section-heading {
    gap: 2rem;
  }
}

.survey-card {
  position: relative;
  display: grid;
  background: #FEFEFE;
  box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.15);
}
@media screen and (max-width: 767px) {
  .survey-card {
    gap: 0;
    margin-top: 2rem;
    padding: 2.8rem 2.7rem 2.3rem;
    border-radius: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card {
    grid-template-columns: 45.6rem 61rem;
    grid-template-areas: "stats chart" "voices license" "voices reason";
    gap: 0;
    margin-top: 8rem;
    min-height: 108.7rem;
    padding: 7.2rem 6.8rem 7rem 6.6rem;
    border-radius: 2rem;
  }
}
.survey-card h3 {
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .survey-card h3 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .survey-card__chart h3, .survey-card__voices h3, .survey-card__license h3, .survey-card__reason h3 {
    margin-bottom: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .survey-card__chart, .survey-card__voices, .survey-card__license {
    padding-block: 2rem;
    border-bottom: 1px solid #E8E0D7;
  }
}
.survey-card__stats {
  display: grid;
}
@media screen and (max-width: 767px) {
  .survey-card__stats {
    row-gap: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__stats {
    grid-area: stats;
    grid-template-columns: 23rem 22.6rem;
    row-gap: 2.2rem;
    align-items: start;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid #E8E0D7;
  }
}
.survey-card__stat {
  display: grid;
  align-items: center;
}
.survey-card__stat h3 {
  grid-area: title;
}
@media screen and (max-width: 767px) {
  .survey-card__stat {
    grid-template-columns: 11rem 1fr;
    grid-template-areas: "title title" "icon number";
    column-gap: 2.6rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid #E8E0D7;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__stat {
    grid-template-areas: "title title" "icon number";
  }
}
@media screen and (min-width: 768px) {
  .survey-card__stat--beginner {
    grid-column: 1/-1;
    grid-template-columns: 20rem 19rem;
    column-gap: 4rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #E8E0D7;
  }
}
@media screen and (max-width: 767px) {
  .survey-card__stat--beginner .survey-card__number {
    margin-left: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__stat--beginner .survey-card__number {
    margin-top: 7.4rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__stat--gender, .survey-card__stat--married {
    grid-template-columns: 6rem 11.5rem;
    grid-template-areas: "title icon" "number number";
    column-gap: 4.8rem;
    align-items: start;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__stat--gender {
    border-right: 1px solid #E8E0D7;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__stat--married {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .survey-card__stat--married .survey-card__number {
    margin-top: 0.5rem;
    margin-left: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__stat--married .survey-card__number {
    margin-top: 1.4rem;
    margin-left: 3.3rem;
  }
}
@media screen and (max-width: 767px) {
  .survey-card__icon-frame {
    grid-area: icon;
    display: grid;
    justify-items: center;
    width: 11.5rem;
    margin-left: -0.7rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__icon-frame {
    display: contents;
  }
}
.survey-card__icon {
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .survey-card__icon {
    grid-area: icon;
  }
}
@media screen and (max-width: 767px) {
  .survey-card__icon--beginner {
    width: 8rem;
    margin-top: 0.4rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__icon--beginner {
    width: 11rem;
    margin-top: 2.7rem;
    margin-left: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .survey-card__icon--gender {
    width: 11.5rem;
    margin-top: -0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__icon--gender {
    width: 11.5rem;
    margin-top: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .survey-card__icon--ring {
    width: 8rem;
    margin-top: 0.1rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__icon--ring {
    width: 8rem;
    margin-top: 1.3rem;
  }
}
.survey-card__number, .survey-card__ratio {
  grid-area: number;
  display: flex;
  align-items: flex-end;
  color: #3954DE;
  font-family: "Gabarito", sans-serif;
  font-weight: 500;
  line-height: 1;
}
.survey-card__number span, .survey-card__ratio span {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .survey-card__number, .survey-card__ratio {
    margin-top: 2.3rem;
    font-size: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__number, .survey-card__ratio {
    margin-top: 5rem;
    font-size: 10rem;
  }
}
.survey-card__number small {
  color: #373835;
  font-size: 2.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .survey-card__number small {
    transform: translateY(-1.1rem);
  }
}
@media screen and (min-width: 768px) {
  .survey-card__number small {
    font-size: 4.8rem;
    transform: translateY(-1.3rem);
  }
}
@media screen and (max-width: 767px) {
  .survey-card__number {
    gap: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__number {
    gap: 0.7rem;
  }
}
.survey-card__ratio small {
  color: #373835;
  font-family: "Gabarito", sans-serif;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .survey-card__ratio small {
    transform: translateY(-1.2rem);
  }
}
@media screen and (min-width: 768px) {
  .survey-card__ratio small {
    transform: translateY(-1.4rem);
  }
}
@media screen and (max-width: 767px) {
  .survey-card__ratio {
    margin-top: 1rem;
    gap: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__ratio {
    margin-top: 1.4rem;
    margin-left: 5.8rem;
    gap: 1.2rem;
  }
}
.survey-card__chart {
  display: grid;
}
@media screen and (min-width: 768px) {
  .survey-card__chart {
    grid-area: chart;
    padding-left: 4rem;
    padding-bottom: 0.4rem;
    border-left: 1px solid #E8E0D7;
    border-bottom: 1px solid #E8E0D7;
  }
}
.survey-card__chart picture,
.survey-card__chart img {
  display: block;
}
@media screen and (max-width: 767px) {
  .survey-card__chart img {
    width: 27.7rem;
    margin-left: -0.3rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__chart img {
    width: 57rem;
    margin-top: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__voices {
    position: static;
    grid-area: voices;
    padding-top: 3rem;
  }
}
.survey-card__voices ul {
  display: grid;
}
@media screen and (max-width: 767px) {
  .survey-card__voices ul {
    row-gap: 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__voices ul {
    grid-template-columns: repeat(2, 20rem);
    gap: 2rem 1.9rem;
    margin-top: 3rem;
  }
}
.survey-card__voices li {
  position: relative;
  display: grid;
  place-items: center;
  color: #373835;
  background: #E8E0D7;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .survey-card__voices li {
    width: 27rem;
    min-height: 4rem;
    padding: 0.7rem 1rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__voices li {
    width: 20rem;
    min-height: 8rem;
    padding: 1.4rem 2rem;
    font-size: 2rem;
  }
}
.survey-card__voices li::after {
  position: absolute;
  top: calc(100% - 0.5px);
  aspect-ratio: 93/41;
  background: url("../img/recruit/icon/comment-arrow.webp") center/contain no-repeat;
  pointer-events: none;
  content: "";
}
@media screen and (max-width: 767px) {
  .survey-card__voices li::after {
    left: 3.4rem;
    width: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__voices li::after {
    right: 3.7rem;
    width: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__voices li:nth-child(1),
  .survey-card__voices li:nth-child(2),
  .survey-card__voices li:nth-child(5) {
    min-height: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__license {
    grid-area: license;
    padding-top: 3rem;
    padding-left: 4rem;
    padding-bottom: 3.4rem;
    border-left: 1px solid #E8E0D7;
    border-bottom: 1px solid #E8E0D7;
  }
}
.survey-card__license ul {
  display: grid;
}
@media screen and (max-width: 767px) {
  .survey-card__license ul {
    row-gap: 0.63rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__license ul {
    grid-template-columns: repeat(2, 28rem);
    gap: 1rem;
    margin-top: 3rem;
  }
}
.survey-card__license li {
  display: grid;
  place-items: center;
  border-radius: 1rem;
  color: #FEFEFE;
  background: #96918B;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .survey-card__license li {
    min-height: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__license li {
    min-height: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .survey-card__reason {
    padding-block-start: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__reason {
    grid-area: reason;
    padding-top: 3rem;
    padding-left: 4rem;
    border-left: 1px solid #E8E0D7;
  }
}
.survey-card__reason ul {
  display: grid;
}
@media screen and (max-width: 767px) {
  .survey-card__reason ul {
    row-gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__reason ul {
    grid-template-columns: repeat(2, 28rem);
    column-gap: 0.9rem;
    margin-top: 1.9rem;
  }
}
.survey-card__reason li {
  position: relative;
  display: flex;
  padding-left: 2.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}
.survey-card__reason li::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #3954DE;
  transform: translateY(-50%);
  content: "";
}
.survey-card__team-icon {
  display: block;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .survey-card__team-icon {
    width: 8rem;
    margin-top: 1rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .survey-card__team-icon {
    position: absolute;
    left: 36.4rem;
    bottom: 7.6rem;
    width: 10rem;
  }
}

.support-section {
  background-color: #F8F4EF;
}
@media screen and (max-width: 767px) {
  .support-section {
    padding: 11rem 0 8rem;
  }
}
@media screen and (min-width: 768px) {
  .support-section {
    padding: 16rem 0 16rem;
  }
}
.support-section__inner {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .support-section__inner {
    width: 31rem;
  }
}
@media screen and (min-width: 768px) {
  .support-section__inner {
    width: 120rem;
  }
}
@media screen and (max-width: 767px) {
  .support-section .section-heading h2 {
    font-size: 2.4rem;
  }
}

.benefits-section {
  background-color: #F8F4EF;
}
@media screen and (max-width: 767px) {
  .benefits-section {
    padding: 0 0 10rem;
  }
}
@media screen and (min-width: 768px) {
  .benefits-section {
    padding: 0 0 16rem;
  }
}
.benefits-section__inner {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .benefits-section__inner {
    width: 33rem;
  }
}
@media screen and (min-width: 768px) {
  .benefits-section__inner {
    width: 120rem;
  }
}
.benefits-section .section-heading h2 {
  color: #373835;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .benefits-section .section-heading h2 {
    font-size: 5.8rem;
  }
}

.contact-section {
  padding: 13rem 4rem 15rem;
  background: #F8F4EF;
}
.contact-section__inner {
  width: min(100% - 8rem, 120rem);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact-section__inner {
    width: min(100%, 31rem);
  }
}

.support-grid {
  display: grid;
}
@media screen and (max-width: 767px) {
  .support-grid {
    gap: 1rem;
    margin-top: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  .support-grid {
    grid-template-columns: repeat(2, 58rem);
    gap: 3rem 4rem;
    margin-top: 7rem;
  }
}
.support-grid article {
  border-radius: 1rem;
  background: #E8E0D7;
}
@media screen and (max-width: 767px) {
  .support-grid article {
    padding: 2rem 2rem 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .support-grid article {
    padding: 4rem 5rem 4.8rem;
  }
}
.support-grid article img {
  width: 100%;
  aspect-ratio: 480/286;
  object-fit: cover;
}
.support-grid article h3 {
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .support-grid article h3 {
    margin-top: 1.8rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .support-grid article h3 {
    margin-top: 2.8rem;
    font-size: 3.2rem;
  }
}
.support-grid article p {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .support-grid article p {
    margin-top: 1.1rem;
    font-size: 1.3rem;
    line-height: 1.9;
  }
}
@media screen and (min-width: 768px) {
  .support-grid article p {
    margin-top: 1.6rem;
    line-height: 1.9;
  }
}

.benefit-list {
  display: grid;
}
@media screen and (max-width: 767px) {
  .benefit-list {
    grid-template-columns: repeat(2, 16rem);
    gap: 1rem;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .benefit-list {
    grid-template-columns: repeat(4, 26rem);
    gap: 5.3rem;
    margin-top: 8rem;
  }
}
.benefit-list > div {
  display: grid;
  justify-items: center;
  align-content: center;
  border: 1px solid #5E5B56;
  border-radius: 50%;
  background: #FEFEFE;
  text-align: center;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .benefit-list > div {
    width: 16rem;
  }
}
@media screen and (min-width: 768px) {
  .benefit-list > div {
    width: 26rem;
    gap: 1rem;
  }
}
.benefit-list > div p {
  color: #373835;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .benefit-list > div p {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  .benefit-list > div p {
    font-size: 2rem;
    line-height: 1.6;
  }
}

.benefit-icon {
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .benefit-icon {
    width: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .benefit-icon {
    width: 8rem;
  }
}

.benefit-note {
  background: #E8E0D7;
}
@media screen and (max-width: 767px) {
  .benefit-note {
    margin: 4rem auto 0;
    padding: 3.5rem 4rem;
    border-radius: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .benefit-note {
    grid-template-columns: 11.1rem 1fr;
    display: grid;
    column-gap: 7.7rem;
    align-items: center;
    width: 90rem;
    margin: 6rem auto 0;
    padding: 3.5rem 6.1rem 3.5rem 6.4rem;
    border-radius: 2rem;
  }
}
.benefit-note__title {
  color: #373835;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .benefit-note__lists {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .benefit-note__lists {
    display: grid;
    grid-template-columns: 16.1rem 19.5rem 17.1rem;
    gap: 3rem;
  }
}
.benefit-note ul {
  color: #373835;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
.benefit-note li {
  position: relative;
  padding-left: 1em;
}
.benefit-note li::before {
  position: absolute;
  left: 0;
  content: "・";
}

.recruit-gallery {
  position: relative;
  display: grid;
}
@media screen and (max-width: 767px) {
  .recruit-gallery {
    aspect-ratio: 330/371;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit-gallery {
    grid-template-columns: 29rem 25rem 29rem 25rem;
    gap: 4.1rem;
    justify-content: center;
    margin-top: 14rem;
  }
}
.recruit-gallery__item {
  display: block;
  width: 100%;
  object-fit: cover;
  box-shadow: 1rem 2rem 2rem rgba(102, 102, 102, 0.2);
}
@media screen and (max-width: 767px) {
  .recruit-gallery__item {
    position: absolute;
    border-radius: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit-gallery__item {
    border-radius: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit-gallery__item:nth-child(odd) {
    aspect-ratio: 29/25;
  }
}
@media screen and (min-width: 768px) {
  .recruit-gallery__item:nth-child(even) {
    margin-top: 5.8rem;
    aspect-ratio: 25/29;
  }
}
@media screen and (max-width: 767px) {
  .recruit-gallery__item:nth-child(1) {
    top: 0;
    left: 0;
    width: 16.5rem;
    aspect-ratio: 165/142;
  }
}
@media screen and (max-width: 767px) {
  .recruit-gallery__item:nth-child(2) {
    top: 3.3rem;
    left: 18.8rem;
    width: 14.2rem;
    aspect-ratio: 142/164;
  }
}
@media screen and (min-width: 768px) {
  .recruit-gallery__item:nth-child(2) {
    transition-delay: 0.1s;
  }
}
@media screen and (max-width: 767px) {
  .recruit-gallery__item:nth-child(3) {
    top: 23rem;
    left: 16.5rem;
    width: 16.5rem;
    aspect-ratio: 165/141;
  }
}
@media screen and (min-width: 768px) {
  .recruit-gallery__item:nth-child(3) {
    transition-delay: 0.2s;
  }
}
@media screen and (max-width: 767px) {
  .recruit-gallery__item:nth-child(4) {
    top: 17.3rem;
    left: 0;
    width: 14.2rem;
    aspect-ratio: 142/165;
  }
}
@media screen and (min-width: 768px) {
  .recruit-gallery__item:nth-child(4) {
    transition-delay: 0.3s;
  }
}

.notfound-section {
  background: #F8F4EF url("../img/common/noise.webp") center top/200rem auto repeat-y;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .notfound-section {
    padding: 10.1rem 4rem 15rem;
  }
}
@media screen and (min-width: 768px) {
  .notfound-section {
    padding: 30.1rem 4rem 25rem;
  }
}
.notfound-section__code {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E14B1F;
  font-family: "Gabarito", sans-serif;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .notfound-section__code {
    flex-direction: column;
    gap: 0.4rem;
    font-size: 4.8rem;
  }
}
@media screen and (min-width: 768px) {
  .notfound-section__code {
    gap: 2rem;
    font-size: 8.8rem;
  }
}
.notfound-section h1 {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .notfound-section h1 {
    margin-top: 1rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .notfound-section h1 {
    margin-top: 2rem;
    font-size: 2.4rem;
  }
}
.notfound-section__text {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .notfound-section__text {
    margin-top: 2rem;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .notfound-section__text {
    margin-top: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .notfound-section .button--back {
    margin-top: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .notfound-section .button--back {
    margin-top: 7.6rem;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #FEFEFE;
}
@media screen and (max-width: 767px) {
  .site-footer {
    margin-top: -3.5rem;
  }
}
@media screen and (min-width: 768px) {
  .site-footer {
    margin-top: -5.5rem;
  }
}
.site-footer::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
@media screen and (max-width: 767px) {
  .site-footer::before {
    background: url("../img/top/decor/footer-bg-sp.webp") center bottom/100% 100% no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .site-footer::before {
    background: url("../img/top/decor/footer-bg-pc.webp") center bottom/100% 100% no-repeat;
  }
}
.site-footer__gravel {
  display: none;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .site-footer__gravel {
    position: absolute;
    bottom: 21.75rem;
    left: 11.5rem;
    z-index: 2;
    display: block;
    width: 8.8rem;
    height: 6.8rem;
  }
}
.site-footer__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .site-footer__inner {
    margin: 0 4rem 3rem;
    padding-top: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .site-footer__inner {
    display: grid;
    width: 120rem;
    padding: 15rem 0 3.5rem;
  }
}
.site-footer__nav {
  display: grid;
}
.site-footer__nav div {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}
@media screen and (max-width: 767px) {
  .site-footer__nav div {
    order: 2;
  }
}
.site-footer__nav a {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .site-footer__nav a {
    font-size: 1.6rem;
  }
}
.site-footer__nav a.site-footer__nav-heading {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .site-footer__nav a.site-footer__nav-heading {
    font-size: 1.8rem;
  }
}
.site-footer__nav div:not(:first-child) a:not(.site-footer__nav-heading)::before {
  margin-right: 0.4rem;
  content: "- ";
}
@media screen and (max-width: 767px) {
  .site-footer__nav {
    grid-template-columns: 14rem 1fr;
    gap: 2.5rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .site-footer__nav {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr 20.4rem 16.8rem 16.1rem;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__nav div:first-child,
  .site-footer__nav div:nth-child(3) {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .site-footer__nav div:first-child {
    gap: 2.6rem;
  }
}
.site-footer__utility {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .site-footer__utility {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .site-footer__utility {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    width: 2.8rem;
    margin-top: 13.5rem;
  }
}
.site-footer__insta {
  display: inline-flex;
  width: 2.8rem;
}
.site-footer__insta img {
  width: 100%;
}
.site-footer__bottom {
  display: grid;
  gap: 3.2rem;
  padding-top: 3.6rem;
  border-top: 1px solid rgba(254, 254, 254, 0.25);
  color: rgba(254, 254, 254, 0.92);
  font-size: 1.4rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .site-footer__bottom {
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .site-footer__bottom {
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-top: 5rem;
  }
}
.site-footer__company {
  margin-bottom: 0.8rem;
  color: #FEFEFE;
  font-size: 2rem;
  font-weight: bold;
}
.site-footer__tel {
  white-space: nowrap;
}
.site-footer__copy {
  font-family: "Gabarito", sans-serif;
}

.page-top {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  color: #FEFEFE;
  font-family: "Gabarito", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
}
.page-top span::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.4rem;
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-bottom: 0.7rem solid #E14B1F;
  content: "";
}
.page-top img {
  width: 5.5rem;
}
@media screen and (min-width: 768px) {
  .page-top img {
    width: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .page-top {
    flex: 0 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .page-top {
    position: absolute;
    z-index: 2;
    top: 5rem;
    right: calc((120rem - 100vw) / 2 + 3.3rem);
  }
}

.reason-item {
  color: #FEFEFE;
}
@media screen and (max-width: 767px) {
  .reason-item {
    width: 27.3rem;
    margin: 2rem 0 5.4rem;
  }
}
@media screen and (min-width: 768px) {
  .reason-item {
    grid-column: 2;
    width: 40.7rem;
    padding-top: 3.1rem;
  }
}
@media screen and (max-width: 767px) {
  .reason-item:nth-child(1) {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .reason-item:nth-child(1) {
    grid-row: 1;
  }
}
@media screen and (max-width: 767px) {
  .reason-item:nth-child(2) {
    order: 4;
  }
}
@media screen and (min-width: 768px) {
  .reason-item:nth-child(2) {
    grid-row: 2;
  }
}
@media screen and (max-width: 767px) {
  .reason-item:nth-child(3) {
    order: 6;
    margin-bottom: 3.8rem;
  }
}
@media screen and (min-width: 768px) {
  .reason-item:nth-child(3) {
    grid-row: 3;
  }
}
.reason-item h3 {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .reason-item h3 {
    margin: 0 0 1.2rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .reason-item h3 {
    margin: 0 0 3rem;
    font-size: 3.2rem;
  }
}
.reason-item p {
  line-height: 1.8;
}

/*-----------------------------------*/
/*-----------------------------------*/
@media screen and (max-width: 767px) {
  .lower .page-hero {
    height: 17.8rem;
  }
}
@media screen and (min-width: 768px) {
  .lower .page-hero {
    height: 39.4rem;
  }
}
@media screen and (max-width: 767px) {
  .lower .page-hero__inner {
    width: 33rem;
    padding-top: 11.7rem;
  }
}
@media screen and (min-width: 768px) {
  .lower .page-hero__inner {
    width: 120rem;
  }
}
@media screen and (max-width: 767px) {
  .lower .page-hero__inner p {
    font-size: 3.2rem;
    letter-spacing: 0.32rem;
  }
}
@media screen and (min-width: 768px) {
  .lower .page-hero__inner p {
    font-size: 6.4rem;
    letter-spacing: 0.64rem;
  }
}
@media screen and (max-width: 767px) {
  .lower .page-hero__inner h1 {
    margin-top: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .lower .page-hero__inner h1 {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .company-page .anchor-nav {
    grid-template-columns: repeat(3, 18.7rem);
  }
}

@media screen and (min-width: 768px) {
  .business-page {
    overflow-x: hidden;
  }
}

.contact-page .grecaptcha-badge {
  z-index: 998;
}
@media screen and (max-width: 767px) {
  .contact-page .contact-section {
    padding: 3.7rem 0 10rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .contact-section {
    padding: 16rem 4rem 14rem;
  }
}
.contact-page .contact-section__inner {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact-page .contact-section__inner {
    width: 33rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .contact-section__inner {
    width: 70rem;
  }
}
.contact-page .form-steps {
  position: relative;
  background: #E6E6E6;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact-page .form-steps {
    height: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-steps {
    height: 6.5rem;
  }
}
.contact-page .form-steps::after {
  position: absolute;
  top: 0;
  z-index: 2;
  height: 100%;
  background: #F8F4EF;
  clip-path: polygon(0 0, 28% 0, 100% 50%, 28% 100%, 0 100%, 72% 50%);
  pointer-events: none;
  content: "";
}
@media screen and (max-width: 767px) {
  .contact-page .form-steps::after {
    left: 15.8rem;
    width: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-steps::after {
    left: 33.5rem;
    width: 2.5rem;
  }
}
.contact-page .form-steps__item {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
  color: #373835;
  background: #E6E6E6;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact-page .form-steps__item {
    gap: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-steps__item {
    gap: 0.7rem;
  }
}
.contact-page .form-steps__item:first-child {
  left: 0;
  z-index: 1;
  width: 50.21%;
  clip-path: polygon(0 0, calc(100% - 0.85rem) 0, 100% 50%, calc(100% - 0.85rem) 100%, 0 100%);
}
.contact-page .form-steps__item:first-child:not(.is-current) {
  width: 51%;
}
@media screen and (min-width: 768px) {
  .contact-page .form-steps__item:first-child {
    padding-left: 2rem;
    clip-path: polygon(0 0, calc(100% - 1.8rem) 0, 100% 50%, calc(100% - 1.8rem) 100%, 0 100%);
  }
}
.contact-page .form-steps__item:nth-child(2) {
  left: 48.79%;
  width: 51.21%;
}
@media screen and (max-width: 767px) {
  .contact-page .form-steps__item:nth-child(2) {
    padding-left: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-steps__item:nth-child(2) {
    padding-left: 3.5rem;
  }
}
.contact-page .form-steps__item.is-current {
  color: #FEFEFE;
  background: #808080;
}
@media screen and (max-width: 767px) {
  .contact-page .form-steps__label {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-steps__label {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-page .form-steps__text {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-steps__text {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
.contact-page .contact-form {
  display: block;
}
@media screen and (max-width: 767px) {
  .contact-page .contact-form {
    margin-top: 0.8rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form {
    margin-top: 2.8rem;
  }
}
.contact-page .contact-form__required-note {
  margin: 0;
  color: #C1272D;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .contact-page .contact-form__required-note {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__required-note {
    font-size: 1.6rem;
    line-height: 1.1875;
  }
}
.contact-page .contact-form__fields {
  display: grid;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .contact-page .contact-form__fields {
    margin-top: 0.9rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__fields {
    margin-top: 1rem;
  }
}
.contact-page .contact-form__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  border: 2px solid #E14B1F;
  border-radius: 8rem;
  color: #FEFEFE;
  background: #E14B1F;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}
@media screen and (max-width: 767px) {
  .contact-page .contact-form__submit {
    width: 31rem;
    height: 6rem;
    margin-top: 3rem;
    padding: 0 2.7rem 0 12rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__submit {
    width: 36.4rem;
    height: 7rem;
    margin-top: 4rem;
    padding: 0 2.7rem 0 14.5rem;
  }
}
.contact-page .contact-form__submit::after {
  width: 0.9rem;
  aspect-ratio: 1;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  content: "";
}
@media screen and (min-width: 768px) {
  .contact-page .contact-form__submit:hover {
    color: #E14B1F;
    background: #FEFEFE;
  }
}
.contact-page .form-row--honeypot {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  max-height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.contact-page .form-row {
  display: grid;
  background: #FEFEFE;
}
@media screen and (max-width: 767px) {
  .contact-page .form-row {
    grid-template-columns: 13.3rem 1fr;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-row {
    grid-template-columns: 15.5rem 1fr;
  }
}
@media screen and (max-width: 767px) {
  .contact-page .form-row:not(.form-row--textarea) {
    height: 5.6rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-row:not(.form-row--textarea) {
    height: 5rem;
  }
}
.contact-page .form-row:not(.form-row--textarea) label {
  align-self: center;
  height: 4rem;
}
.contact-page .form-row label {
  display: flex;
  align-items: center;
  padding: 0 1rem 0 1.8rem;
  border-right: 1px solid #CDCDCD;
  font-weight: bold;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .contact-page .form-row label {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-row label {
    font-size: 1.5rem;
    white-space: nowrap;
  }
}
.contact-page .form-row label .form-row__required {
  color: #E14B1F;
}
.contact-page .form-row input,
.contact-page .form-row textarea {
  width: 100%;
  border: 0;
  color: #373835;
  background: #FEFEFE;
  font-weight: 500;
  line-height: normal;
}
.contact-page .form-row input::placeholder,
.contact-page .form-row textarea::placeholder {
  color: #CDCDCD;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .contact-page .form-row input,
  .contact-page .form-row textarea {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-row input,
  .contact-page .form-row textarea {
    font-size: 1.5rem;
  }
}
.contact-page .form-row input {
  align-self: center;
  height: 4rem;
  padding: 1rem 1rem 1rem 2.4rem;
}
.contact-page .form-row__label-text {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .contact-page .form-row--textarea {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 18rem;
    padding: 0 1rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-row--textarea {
    min-height: 21.5rem;
    padding-block: 1.25rem;
  }
}
.contact-page .form-row--textarea label {
  align-items: flex-start;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .contact-page .form-row--textarea label {
    width: 100%;
    height: 4.6rem;
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px solid #CDCDCD;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-row--textarea label {
    align-self: stretch;
  }
}
.contact-page .form-row--textarea textarea {
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .contact-page .form-row--textarea textarea {
    height: 13rem;
    min-height: 13rem;
    padding: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-row--textarea textarea {
    align-self: stretch;
    min-height: 19rem;
    padding: 1rem 1rem 1rem 2.4rem;
  }
}
.contact-page .privacy-box {
  margin-top: 2rem;
  background: rgba(217, 217, 217, 0.54);
}
@media screen and (max-width: 767px) {
  .contact-page .privacy-box {
    height: 41.6rem;
    padding: 1.7rem 1.4rem 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .privacy-box {
    height: 25rem;
    padding: 2.3rem 2rem 1.5rem;
  }
}
.contact-page .privacy-box h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.09em;
}
.contact-page .privacy-box__body {
  overflow-y: auto;
  padding: 1.7rem 2rem 1.7rem 1.4rem;
  background: #FEFEFE;
}
@media screen and (max-width: 767px) {
  .contact-page .privacy-box__body {
    height: 26.8rem;
    margin-top: 1rem;
    border: 1px solid #B1B1B1;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .privacy-box__body {
    height: 13rem;
    margin-top: 1.4rem;
  }
}
.contact-page .privacy-box__body p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.09em;
  white-space: pre-line;
}
.contact-page .privacy-box__heading {
  margin-bottom: 0.7rem;
  font-weight: bold;
  line-height: 1;
}
.contact-page .agree-check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #373835;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-top: 1rem;
  cursor: pointer;
}
.contact-page .agree-check input {
  appearance: none;
  display: grid;
  place-items: center;
  border: 1px solid #C2BBB3;
  border-radius: 2px;
  background: #FEFEFE;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact-page .agree-check input {
    width: 1.14rem;
    aspect-ratio: 1;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .agree-check input {
    width: 1.3rem;
    aspect-ratio: 1;
  }
}
.contact-page .agree-check input::after {
  width: 55%;
  aspect-ratio: 1;
  border-right: 2px solid #E14B1F;
  border-bottom: 2px solid #E14B1F;
  opacity: 0;
  transform: rotate(45deg) translate(-5%, -10%);
  content: "";
}
.contact-page .agree-check input:checked::after {
  opacity: 1;
}
.contact-page .agree-check__lead {
  color: #373835;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .contact-page .agree-check__lead {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .agree-check__lead {
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 1.4rem;
  }
}
.contact-page .agree-check__lead span {
  color: #C22A30;
}
.contact-page .form-note {
  color: #373835;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .contact-page .form-note {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .form-note {
    width: 58.4rem;
    margin: 4rem auto 0;
    text-align: center;
  }
}
.contact-page .thanks-message {
  background: rgba(254, 254, 254, 0.7);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-page .thanks-message {
    margin-top: 4rem;
    padding: 4rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .thanks-message {
    margin-top: 5rem;
    padding: 6rem 4rem;
  }
}
.contact-page .thanks-message h2 {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact-page .thanks-message h2 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .thanks-message h2 {
    font-size: 3rem;
  }
}
.contact-page .thanks-message p {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .contact-page .thanks-message p {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .thanks-message p {
    margin-top: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-page .thanks-message .button--back {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .thanks-message .button--back {
    margin-top: 4rem;
  }
}

.fade-up {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}
@media screen and (max-width: 767px) {
  .fade-up {
    transform: translate3d(0, 3rem, 0);
  }
}
@media screen and (min-width: 768px) {
  .fade-up {
    transform: translate3d(0, 5rem, 0);
  }
}
.fade-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}
.fade-up.button {
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .fade-up.is-visible {
    transform: none;
  }
}

/*-----------------------------------*/
/*-----------------------------------*/

/*# sourceMappingURL=style.css.map */
