*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1366px;
  margin-inline: auto;
  padding-inline: 52px;
}

.section-heading {
  position: relative;
  padding-left: 35px;
  margin-bottom: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 2.4px;
  line-height: 1.4;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 24px;
  height: 2px;
  background-color: #fa7163;
}

.arrow-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.arrow-icon:is(a) {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .arrow-icon:is(a):hover {
    opacity: 0.82;
  }
}
.arrow-icon__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.arrow-icon__vector {
  position: relative;
  width: 7px;
  height: 6px;
  z-index: 1;
}

.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
}
.header.is-menu-open {
  z-index: 220;
}
.header__bar {
  padding-block: 36px 24px;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}
.header.is-hidden .header__bar {
  transform: translateY(-100%);
}
.header.is-scrolled .header__bar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
@media (prefers-reduced-motion: reduce) {
  .header__bar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  .header.is-hidden .header__bar {
    transform: none;
  }
}
.header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1440px !important;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__logo-img {
  width: auto;
  height: 62.1166px;
  object-fit: contain;
  flex-shrink: 0;
}
.header__logo-text {
  font-weight: 500;
  font-size: 23.891px;
  color: #2a8c51;
  line-height: 1.3;
  white-space: pre-line;
}
.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #a7a7a7;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .header__menu-btn:hover {
    opacity: 0.82;
  }
}
.header__menu-btn img {
  width: 30px;
  height: 21px;
  pointer-events: none;
}
.header__drawer {
  position: absolute;
  top: calc(100% + 12px);
  right: 60px;
  width: min(340px, 100vw - 64px);
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d8d4d1;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.header__drawer[hidden] {
  display: none !important;
}
.header__drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.header__drawer-link {
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid #dedede;
  font-size: 16px;
  font-weight: 350;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.header__drawer-link:hover {
  color: #2a8c51;
}
.header__drawer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  margin-top: 20px;
  background: #2a8c51;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 350;
  transition: opacity 0.2s ease;
}
.header__drawer-contact:hover {
  opacity: 0.86;
}

.header--static .header__bar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

main:has(> .header--static) {
  padding-top: var(--header-offset, 122px);
}

.recruit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 34px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 350;
  transition: opacity 0.2s ease;
}
.recruit-button--green {
  background: #2a8c51;
  color: #fff;
}
.recruit-button--line {
  background: #fff;
  border: 1px solid #a39f9c;
  color: #000;
  font-weight: 300;
}
@media (hover: hover) {
  .recruit-button:hover {
    opacity: 0.82;
  }
}

.footer {
  width: 100%;
}
.footer__main {
  background: #f1ecec;
  padding: 82px 0;
}
.footer__main-inner {
  position: relative;
  display: grid;
  grid-template-columns: 336px 1fr;
  grid-template-rows: auto auto;
  gap: 40px 60px;
  padding-bottom: 14px;
  max-width: 1182px;
}
.footer__brand {
  grid-row: 1;
}
.footer__logo {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin-bottom: 30px;
}
.footer__logo-img {
  width: 41px;
  height: 47px;
  object-fit: cover;
  flex-shrink: 0;
}
.footer__logo-text {
  font-weight: 500;
  font-size: 19px;
  color: #2a8c51;
  line-height: 1.3;
  white-space: pre-line;
}
.footer__info {
  font-size: 16px;
  line-height: 2;
}
.footer__info strong {
  font-weight: 700;
}
.footer__info-br::after {
  content: none;
}
.footer__contact {
  grid-row: 2;
  align-self: start;
}
.footer__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 62px;
  background: #3d9661;
  border-radius: 2px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: opacity 0.2s;
}
.footer__contact-btn:hover {
  opacity: 0.9;
}
.footer__nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  gap: clamp(32px, 6vw, 105px);
  justify-content: center;
  align-self: start;
  padding-top: 0;
  flex-wrap: nowrap;
}
.footer__nav-title, .footer__nav-sub a {
  white-space: nowrap;
}
.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__nav-title {
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 8px;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .footer__nav-title:hover {
    opacity: 0.72;
  }
}
.footer__nav-sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 300;
  font-size: 14px;
  color: #4c4c4c;
  line-height: 1.6;
}
.footer__nav-sub a {
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .footer__nav-sub a:hover {
    opacity: 0.72;
  }
}
.footer__sns {
  display: flex;
  align-items: center;
  gap: 53px;
  position: absolute;
  right: 80px;
  bottom: 0;
}
.footer__sns-link {
  display: block;
  transition: opacity 0.2s;
}
.footer__sns-link:hover {
  opacity: 0.8;
}
.footer__sns-link--instagram {
  width: 38px;
  height: 38px;
}
.footer__sns-link--instagram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__sns-link--youtube {
  width: 46px;
  height: 32px;
}
.footer__sns-link--youtube img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__copyright {
  text-align: center;
  padding: 21px 0;
  font-weight: 100;
  font-size: 12.408px;
}

.section-heading__narrow {
  letter-spacing: -1px !important;
}

.section-heading__narrow2 {
  letter-spacing: -1.5px !important;
}

.section-heading__narrow3 {
  letter-spacing: -5px !important;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer__info-br::after {
    content: "\a";
    white-space: pre;
  }
  .footer__main {
    padding: 80px 0 60px;
  }
  .footer__main-inner {
    grid-template-columns: minmax(0, 280px) 1fr;
    grid-template-rows: auto auto;
    gap: 28px 40px;
    align-items: start;
    padding-inline: 52px;
  }
  .footer__brand {
    grid-column: 1;
    grid-row: 1;
  }
  .footer__contact {
    grid-column: 1;
    grid-row: 2;
  }
  .footer__nav {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
    gap: clamp(24px, 3vw, 56px);
    flex-wrap: wrap;
  }
  .footer__nav-title,
  .footer__nav-sub a {
    white-space: nowrap;
  }
}
@media (min-width: 769px) {
  body.is-menu-open {
    overflow: hidden;
  }
  .header__bar {
    padding-block: 28px 20px;
  }
  .header__inner {
    align-items: center;
  }
  .header__logo-img {
    height: 46px;
  }
  .header__logo-text {
    font-size: 18px;
  }
  .header__menu-btn {
    width: 44px;
    height: 44px;
  }
  .header__menu-btn img {
    width: 26px;
    height: 18px;
  }
  .header__overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__overlay.is-open {
    opacity: 1;
  }
  .header__overlay[hidden] {
    display: none !important;
  }
  .header__drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 210;
    width: min(360px, 90vw);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 100px 28px 32px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__drawer.is-open {
    transform: translateX(0);
  }
  .header__drawer.is-open .header__drawer-link {
    opacity: 1;
    transform: translateX(0);
  }
  .header__drawer.is-open .header__drawer-contact {
    opacity: 1;
    transform: translateX(0);
  }
  .header__drawer.is-open .header__drawer-links li:nth-child(1) .header__drawer-link {
    transition-delay: 0.08s;
  }
  .header__drawer.is-open .header__drawer-links li:nth-child(2) .header__drawer-link {
    transition-delay: 0.12s;
  }
  .header__drawer.is-open .header__drawer-links li:nth-child(3) .header__drawer-link {
    transition-delay: 0.16s;
  }
  .header__drawer.is-open .header__drawer-links li:nth-child(4) .header__drawer-link {
    transition-delay: 0.2s;
  }
  .header__drawer-links {
    flex: 1;
    gap: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .header__drawer-links li {
    border-bottom: 1px solid #dedede;
  }
  .header__drawer-links li:first-child {
    border-top: 1px solid #dedede;
  }
  .header__drawer-link {
    position: relative;
    padding: 16px 40px 16px 0;
    border-bottom: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
  }
  .header__drawer-link::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: translateY(-50%) rotate(45deg) translateX(-5px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .header__drawer-link:hover {
    color: #2a8c51;
  }
  .header__drawer-link:hover::after {
    opacity: 0.7;
    transform: translateY(-50%) rotate(45deg) translateX(0);
  }
  .header__drawer-contact {
    flex-shrink: 0;
    margin-top: 24px;
    height: 48px;
    border-radius: 10px;
    font-weight: 400;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 10px rgba(42, 140, 81, 0.22);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease 0.22s, transform 0.3s ease 0.22s, box-shadow 0.2s ease;
  }
  .header__drawer-contact:hover {
    box-shadow: 0 4px 16px rgba(42, 140, 81, 0.32);
  }
}
@media (max-width: 768px) {
  .header__bar {
    padding-block: 20px;
  }
  .header__inner {
    padding-inline: 12px !important;
  }
  .header__logo {
    gap: 2px;
  }
  .header__logo-img {
    height: 52px;
    width: auto;
  }
  .header__logo-text {
    font-size: 20px;
  }
  .header__drawer {
    right: 32px;
    width: calc(100vw - 64px);
    max-width: 360px;
    top: calc(100% + 8px);
  }
  .container {
    padding-inline: 52px;
  }
  .footer__main {
    padding: 60px 0 24px;
  }
  .footer__main-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-inline: 52px;
  }
  .footer__brand,
  .footer__contact,
  .footer__nav,
  .footer__sns {
    grid-column: 1;
    grid-row: auto;
  }
  .footer__brand {
    margin-bottom: 10px;
  }
  .footer__nav {
    justify-content: flex-start;
    gap: 32px;
  }
  .footer__contact {
    padding-top: 64px;
  }
  .footer__contact-btn {
    width: 100%;
    max-width: 280px;
  }
  .footer__sns {
    position: static;
    bottom: auto;
    right: auto;
    gap: 48px;
    margin-left: auto;
  }
  .footer__sns-link {
    width: 32px;
    height: auto;
  }
  .section-heading {
    letter-spacing: 1.2px;
  }
}
@media (max-width: 425px) {
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 32px 52px;
    justify-content: flex-start;
  }
  .footer__contact-btn {
    max-width: 200px;
    font-size: 16px;
  }
  .footer__info-br::after {
    content: "\a";
    white-space: pre;
  }
}
.business-headline__shortcuts a,
.recruit-headline__shortcuts a,
.intro__card-more,
.stock-info__back {
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .business-headline__shortcuts a:hover,
  .recruit-headline__shortcuts a:hover,
  .intro__card-more:hover,
  .stock-info__back:hover {
    opacity: 0.82;
  }
}

html.reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(36px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
  .reveal.is-visible {
    transition: none;
  }
}
.page-mv__media {
  opacity: 0;
  animation: page-mv-enter 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes page-mv-enter {
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-mv__media {
    opacity: 1;
    animation: none;
  }
}
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid #2a8c51;
  outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

.content-message {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: inherit;
}

.news__list .content-message {
  display: block;
  padding: 8px 0 15px;
  border-bottom: 1px solid #9b9b9b;
}

.recruit-guideline__panel .content-message,
.stock-overview__grid .content-message {
  grid-column: 1/-1;
  padding: 8px 0;
}

.stock-info .content-message {
  padding: 8px 0;
}

.recruit-guideline__panel.is-content-loading {
  min-height: 200px;
}

.skeleton {
  display: block;
  background: #e8e4e4;
  border-radius: 2px;
}

.is-content-loading .skeleton {
  animation: skeleton-pulse 1.35s ease-in-out infinite;
}

@keyframes skeleton-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.95;
  }
}
@media (prefers-reduced-motion: reduce) {
  .is-content-loading .skeleton {
    animation: none;
    opacity: 0.7;
  }
}
.news__item--skeleton {
  pointer-events: none;
}

.news__item--skeleton .skeleton--date {
  width: 75px;
  height: 16px;
}

.news__item--skeleton .skeleton--title {
  width: min(100%, 420px);
  height: 16px;
}

.recruit-guideline__skeleton-line {
  height: 16px;
  margin-bottom: 20px;
}
.recruit-guideline__skeleton-line:nth-child(1) {
  width: 40%;
}
.recruit-guideline__skeleton-line:nth-child(2) {
  width: 100%;
}
.recruit-guideline__skeleton-line:nth-child(3) {
  width: 88%;
}
.recruit-guideline__skeleton-line:nth-child(4) {
  width: 72%;
}

.stock-overview__item--skeleton {
  aspect-ratio: 1;
  pointer-events: none;
  background: #fff;
  box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.stock-overview__item--skeleton .skeleton--title {
  flex-shrink: 0;
  height: 38px;
  margin: 8px 12px 6px;
  width: calc(100% - 24px);
}

.stock-overview__item--skeleton .skeleton--image {
  flex: 1;
  min-height: 0;
  margin: 0;
  width: 100%;
  border-radius: 0;
}

.stock-overview__item--skeleton .skeleton--status {
  flex-shrink: 0;
  height: 32px;
  width: 100%;
  border-radius: 0;
}

.stock-info__skeleton {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  pointer-events: none;
}

.stock-info__skeleton .skeleton--image {
  aspect-ratio: 4/3;
  width: 100%;
}

.stock-info__skeleton .skeleton--line {
  height: 16px;
  margin-bottom: 16px;
}
.stock-info__skeleton .skeleton--line:nth-child(1) {
  width: 55%;
  height: 24px;
}
.stock-info__skeleton .skeleton--line:nth-child(2) {
  width: 35%;
}
.stock-info__skeleton .skeleton--line:nth-child(3) {
  width: 100%;
}
.stock-info__skeleton .skeleton--line:nth-child(4) {
  width: 92%;
}

@media (max-width: 768px) {
  .stock-info__skeleton {
    grid-template-columns: 1fr;
  }
}
.intro__card-more {
  display: inline-block;
  transition: transform 0.2s ease;
}

.intro__card:has(.intro__card-more:hover) .intro__card-more,
.intro__card-more:focus-visible {
  transform: translateX(4px);
  opacity: 0.82;
}

@media (prefers-reduced-motion: reduce) {
  .intro__card-more {
    transition: none;
  }
  .intro__card:has(.intro__card-more:hover) .intro__card-more,
  .intro__card-more:focus-visible {
    transform: none;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 849px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__foreground {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__foreground > * {
  pointer-events: auto;
}
.hero__copy {
  position: absolute;
  top: 148px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-inline: 60px;
  box-sizing: border-box;
}
.hero__copy-img {
  display: block;
  width: 100%;
  max-width: 836px;
  height: auto;
}
.hero__copy-mobile {
  display: none;
}
.hero__gallery {
  position: absolute;
  bottom: 124px;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 287px;
}
.hero__gallery-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.hero__gallery-track.is-css-marquee {
  animation: hero-gallery-scroll 50s linear infinite;
}
.hero__gallery-track.is-marquee {
  animation: none;
}
.hero__gallery-track.is-static {
  transform: none;
  animation: none;
}
.hero__gallery-set {
  display: flex;
  flex-shrink: 0;
  align-items: flex-end;
}
.hero__gallery-item {
  flex-shrink: 0;
  line-height: 0;
}
.hero__gallery-item img {
  display: block;
  width: auto;
  height: 287px;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.hero__actions {
  position: absolute;
  inset-inline: 0;
  bottom: 60px;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  height: 46px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid #a39f9c;
  border-radius: 5px;
  font-weight: 350;
  font-size: 16px;
  color: #000;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .hero__btn:hover {
    opacity: 0.82;
  }
}

@keyframes hero-gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__gallery-track:not(.is-css-marquee) {
    animation: none;
  }
}
.news {
  width: 100%;
  background: #fff;
  padding: 60px 0 0;
}
.news__body {
  padding-bottom: 60px;
}
.news .section-heading {
  margin-left: 105px;
  margin-bottom: 30px;
  padding-left: 60px;
}
.news .section-heading::before {
  content: none;
}
.news__list {
  max-width: 930px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.news__item {
  display: grid;
  grid-template-columns: 75px 1fr 22px;
  align-items: center;
  gap: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #9b9b9b;
  min-height: 34px;
  font-weight: 300;
  font-size: 16px;
}
.news__date {
  padding-left: 7px;
}
.news__banner {
  width: 100%;
  height: 310px;
}
.news__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro {
  width: 100%;
  background: #fcfbf6;
}
.intro__business {
  padding: 120px 0;
}
.intro__business .section-heading {
  margin-left: 39px;
  margin-bottom: 45px;
}
.intro__business-lead {
  max-width: 970px;
  margin: 0 auto 50px;
  padding-left: 138px;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  text-align: left;
}
.intro__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 65px;
}
.intro__card {
  display: flex;
  flex-direction: column;
}
.intro__card-img {
  width: 100%;
  aspect-ratio: 321/427;
  overflow: hidden;
  margin-bottom: 25px;
}
.intro__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro__card-title {
  font-weight: 350;
  font-size: 26px;
  color: #2a8c51;
  margin-bottom: 20px;
}
.intro__card-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}
.intro__card-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 46px;
  background: #fff;
  border: 1px solid #a39f9c;
  border-radius: 5px;
  font-weight: 100;
  font-size: 16px;
  align-self: flex-start;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-left: auto;
}
.intro__aisatsu {
  position: relative;
  margin-bottom: 0;
  display: flow-root;
}
.intro__aisatsu .section-heading {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-left: 38px;
  margin-bottom: 53px;
}
.intro__aisatsu-body {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 120px;
}
.intro__aisatsu-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80%;
  opacity: 0.18;
  background-image: url("/images/aisatsu-bg.png");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.intro__aisatsu-detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 333px minmax(0, 404px);
  column-gap: 53px;
  align-items: start;
  padding-left: 178px;
}
.intro__aisatsu-portrait {
  width: 333px;
  max-width: 333px;
  height: 417px;
  margin: 0;
  overflow: hidden;
}
.intro__aisatsu-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro__aisatsu-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 404px;
  min-width: 0;
  min-height: 412px;
  padding-top: 5px;
}
.intro__aisatsu-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
}
.intro__aisatsu-text p {
  margin: 0;
}
.intro__aisatsu-text p + p {
  margin-top: 0;
}
.intro__aisatsu-name {
  margin-top: auto;
  padding-top: 20px;
  text-align: right;
  font-weight: 350;
  font-size: 18px;
}

.blog {
  width: 100%;
  background: #f6f3ee;
  padding: 120px 0 120px;
}
.blog .section-heading {
  margin-left: 38px;
  margin-bottom: 50px;
}
.blog__grid {
  max-width: 1100px;
  margin: 0 auto;
}
.blog__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}
.blog__card-img {
  width: 100%;
  margin-bottom: 42px;
  overflow: hidden;
}
.blog__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog__card-body {
  position: relative;
  margin-bottom: 38px;
  padding-right: 30px;
}
.blog__card-text {
  margin: 0;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}
.blog__card-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
}
.blog__card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 30px;
  background: #fff;
  border: 1px solid #3d9661;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 350;
  color: #2a8c51;
  align-self: flex-start;
}

.section-heading__narrow {
  letter-spacing: -1px;
}

.section-heading__narrow2 {
  letter-spacing: -1.2px;
}

@media (max-width: 1440px) {
  .news .section-heading {
    max-width: 960px;
    padding-left: 0px;
    margin: 0 auto;
    margin-bottom: 45px;
  }
  .intro__aisatsu-bg {
    width: calc(1100px + 5%);
  }
}
@media (max-width: 1200px) {
  .intro__aisatsu-detail {
    padding-left: 80px;
    column-gap: 40px;
  }
  .intro__aisatsu-bg {
    width: calc(960px + 5%);
  }
  .blog__grid {
    grid-template-columns: repeat(2, 245px);
  }
}
@media (max-width: 1024px) {
  .news__body {
    padding: 0 44px;
    padding-bottom: 60px;
  }
  .news .section-heading {
    max-width: 900px;
  }
  .news__list {
    max-width: 900px;
    padding: 0 20px;
    margin: 0 auto;
  }
  .news__item {
    grid-template-columns: minmax(0, 1fr) 22px;
    grid-template-areas: "date date" "title arrow";
    gap: 8px 12px;
    align-items: center;
  }
  .news__date {
    grid-area: date;
    padding-left: 0;
  }
  .news__title {
    grid-area: title;
    min-width: 0;
  }
  .news__item .arrow-icon {
    grid-area: arrow;
    justify-self: end;
  }
  .intro__business .section-heading {
    margin-left: 24px;
  }
  .intro__business-lead {
    padding-left: 123px;
  }
  .intro__cards {
    padding-inline: 24px;
    gap: 24px;
  }
  .intro__aisatsu-body {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-right: 100px;
  }
  .intro__aisatsu-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding-left: 32px;
  }
  .intro__aisatsu-portrait {
    flex: 1 1 333px;
    min-width: 220px;
    width: min(333px, 100%);
    height: auto;
    aspect-ratio: 333/417;
  }
  .intro__aisatsu-content {
    flex: 0 1 404px;
    width: 404px;
    max-width: 100%;
    min-height: auto;
  }
  .intro__aisatsu-bg {
    width: calc(100% * 0.9267935578);
  }
}
@media (max-width: 943px) {
  .intro__aisatsu-content {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
  .intro__aisatsu-bg {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 874px;
    min-height: 874px;
  }
  .hero__copy {
    top: 0;
    bottom: 0;
    padding-inline: 0;
  }
  .hero__copy-img--desktop {
    display: none;
  }
  .hero__copy-mobile {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    max-width: 380px;
    height: 100%;
    margin: 0 auto;
    pointer-events: none;
  }
  .hero__copy-pattern {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation-name: hero-copy-fade;
    animation-duration: 16s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  .hero__copy-pattern--2 {
    animation-delay: 8s;
  }
  .hero__copy-part--top {
    position: absolute;
    left: 80.526%;
    top: 14.645%;
    height: 41.991%;
    width: auto;
  }
  .hero__copy-part--bottom {
    position: absolute;
    left: 12.895%;
    top: 25.858%;
    height: 26.544%;
    width: auto;
  }
  .hero__gallery {
    bottom: 169px;
    height: 133px;
  }
  .hero__gallery-item img {
    height: 133px;
  }
  .hero__actions {
    bottom: 90px;
    justify-content: center;
    gap: 14px;
    padding-inline: 22px;
  }
  .hero__btn {
    width: min(171.887px, (100% - 14px) / 2);
    flex: 0 0 min(171.887px, (100% - 14px) / 2);
    min-width: 0;
    max-width: 171.887px;
  }
  .news__list {
    padding: 0;
  }
  .intro__business {
    padding: 80px 0;
  }
  .intro__business-lead {
    padding-left: 0;
  }
  .intro__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
    padding-inline: 0;
    gap: 58px;
  }
  .intro__card-more {
    align-self: center;
    margin: 0 auto;
  }
  .intro__aisatsu-body {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 40px;
  }
  .intro__aisatsu-detail {
    grid-template-columns: 1fr;
    padding-left: 0;
    row-gap: 32px;
  }
  .intro__aisatsu-content {
    max-width: 80%;
    min-height: auto;
    padding-top: 0;
  }
  .news .section-heading,
  .intro__business .section-heading,
  .intro__aisatsu .section-heading,
  .blog .section-heading {
    margin-left: 0;
  }
  .intro__aisatsu-portrait {
    width: 100%;
    max-width: 333px;
    margin: 0 auto;
  }
  .intro__aisatsu-name {
    margin-top: 32px;
  }
  .blog {
    padding: 80px 0;
  }
  .blog__grid {
    grid-template-columns: minmax(0, 100%);
    justify-content: center;
    gap: 48px;
  }
  .blog__card {
    width: 80%;
    margin: 0 auto;
  }
}
@keyframes hero-copy-fade {
  0%, 48% {
    opacity: 1;
  }
  52%, 98% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .hero__copy-pattern {
    animation: none;
    opacity: 0;
  }
  .hero__copy-pattern--1 {
    opacity: 1;
  }
}
@media (max-width: 425px) {
  .blog__grid {
    padding: 0;
  }
  .blog__card {
    width: 100%;
  }
}
.recruit-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.recruit-heading-row .section-heading {
  margin-bottom: 0;
}

.recruit-headline {
  padding: 35px 0 55px;
  text-align: center;
}
.recruit-headline__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 65px;
  position: relative;
}
.recruit-headline__title::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  margin: 6px auto 0;
  background: #fa7163;
}
.recruit-headline__lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 34px;
}
.recruit-headline__shortcuts {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
}
.recruit-headline__shortcuts a {
  width: 132px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 5px;
  border: 1px solid #a39f9c;
  font-size: 16px;
  font-weight: 300;
  background: #fff;
}
.recruit-headline__shortcuts a:nth-child(2) {
  width: 196px;
}

.recruit-mv {
  position: relative;
  height: 754px;
  overflow: hidden;
}
.recruit-mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.recruit-mv__catch {
  position: absolute;
  left: 10vw;
  bottom: 60px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  text-shadow: 5px 5px 7px rgba(0, 0, 0, 0.7);
}

.recruit-works {
  padding: 120px 0 120px;
}
.recruit-works__grid {
  width: 93.6479128857%;
  margin-left: auto;
  margin-right: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.recruit-works__item img {
  width: 100%;
  aspect-ratio: 500/334;
  object-fit: cover;
  margin-bottom: 28px;
}
.recruit-works__item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.recruit-schedule {
  background: #f6f3ee;
  padding: 120px 0;
}
.recruit-schedule__panel {
  width: 93.6479128857%;
  margin: 0 auto;
  margin-right: 0;
  position: relative;
  background: #fff;
  padding: 55px 40px 57px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 47px;
}
.recruit-schedule__panel::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-0.5px);
  top: 55px;
  bottom: 55px;
  width: 1px;
  background: #cac6c3;
}
.recruit-schedule__person-head {
  display: grid;
  grid-template-columns: 273px 1fr;
  gap: 18px;
  margin-bottom: 30px;
}
.recruit-schedule__person-head img {
  width: 273px;
  height: 184px;
  object-fit: cover;
}
.recruit-schedule__person-head > div {
  display: flex;
  flex-direction: column;
  min-height: 184px;
}
.recruit-schedule__genre {
  font-size: 17px;
  font-weight: 300;
  margin-top: auto;
}
.recruit-schedule__genre span {
  display: inline-block;
}
.recruit-schedule__name {
  font-size: 16px;
  font-weight: 300;
}
.recruit-schedule__timeline {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}
.recruit-schedule__timeline-image {
  width: 310px;
  max-width: 100%;
  height: auto;
  display: block;
}
.recruit-schedule__qa {
  background: #fcfbf6;
  padding: 22px 14px 30px;
}
.recruit-schedule__qa dl {
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 16px;
}
.recruit-schedule__qa dl:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.recruit-schedule__qa dt {
  color: #2a8c51;
  font-size: 16px;
  margin: 12px 16px;
  line-height: 1.2;
}
.recruit-schedule__qa dd {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin-left: 39px;
  margin-right: 16px;
}

.recruit-genre {
  background: #fcfbf6;
  padding: 120px 0 120px;
}
.recruit-genre__grid {
  width: 93.6479128857%;
  margin-left: auto;
  margin-right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px;
}
.recruit-genre__item img {
  width: 100%;
  aspect-ratio: 500/334;
  object-fit: cover;
  margin-bottom: 27px;
}
.recruit-genre__item h3 {
  font-size: 26px;
  font-weight: 350;
  color: #2a8c51;
  margin-bottom: 15px;
}
.recruit-genre__item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.recruit-coworkers {
  padding: 120px 0;
}
.recruit-coworkers .section-heading {
  margin-bottom: 25px;
  letter-spacing: -0.3px;
}
.recruit-coworkers .section-heading span {
  display: inline-block;
}
.recruit-coworkers__lead {
  width: 93.6479128857%;
  margin-left: auto;
  margin-right: 0;
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 52px;
}
.recruit-coworkers__list {
  width: 93.6479128857%;
  margin-left: auto;
  margin-right: 0;
  display: grid;
  gap: 97px;
}
.recruit-coworkers__item {
  display: grid;
  grid-template-columns: 382px 1fr;
  gap: 46px;
  align-items: center;
}
.recruit-coworkers__item--reverse {
  grid-template-columns: 1fr 383px;
}
.recruit-coworkers__item--reverse img {
  order: 2;
}
.recruit-coworkers__item--reverse div {
  order: 1;
}
.recruit-coworkers__item img {
  width: 100%;
  height: 254px;
  object-fit: cover;
}
.recruit-coworkers__item h3 {
  color: #2a8c51;
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 24px;
  text-align: center;
}
.recruit-coworkers__item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.recruit-guideline {
  position: relative;
  padding: 120px 0;
}
.recruit-guideline__bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}
.recruit-guideline__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-guideline .container {
  position: relative;
  z-index: 1;
}
.recruit-guideline__title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 46px;
}
.recruit-guideline__panel {
  background: #f1ecec;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 80px 80px;
}
.recruit-guideline__panel h3 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 56px;
}
.recruit-guideline__panel h3:not(:first-child) {
  margin-top: 80px;
}
.recruit-guideline__panel dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid #c8c4c1;
  padding: 22px 0;
}
.recruit-guideline__panel dt {
  color: #2a8c51;
  font-size: 16px;
  font-weight: 350;
}
.recruit-guideline__panel dd {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.recruit-application {
  padding: 120px 0;
}
.recruit-application__title {
  font-size: 18px;
  font-weight: 400;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 23px;
}
.recruit-application__desc {
  background: #fcfbf6;
  padding: 41px 67px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 54px;
}
.recruit-application__desc h3 {
  color: #2a8c51;
  font-size: 24px;
  margin-bottom: 8px;
}
.recruit-application__desc p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}
.recruit-application__entry {
  display: flex;
  width: 100%;
  max-width: 1100px;
  height: 89px;
  font-size: 24px;
  margin: 0 auto;
  margin-bottom: 53px;
}
.recruit-application__contact {
  display: flex;
  width: max-content;
  max-width: 1100px;
  min-width: 248px;
  margin-left: auto;
  margin-right: calc((100% - min(1100px, 100%)) / 2);
  white-space: nowrap;
}

@media (min-width: 769px) {
  .recruit-schedule__person {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
  }
  .recruit-schedule__qa {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
  .recruit-schedule__qa dl {
    min-height: 100%;
    box-sizing: border-box;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .recruit-mv__catch {
    font-size: 5vw;
  }
  .recruit-schedule__person-head {
    grid-template-columns: 1fr 140px;
  }
  .recruit-schedule__person-head img {
    width: 100%;
    height: auto;
    aspect-ratio: 273/184;
  }
  .recruit-schedule__person-head > div {
    width: 140px;
    min-height: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .recruit-mv__catch {
    font-size: 5vw;
  }
  .recruit-schedule__person-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .recruit-schedule__person-head img {
    width: 100%;
    height: auto;
    aspect-ratio: 273/184;
  }
  .recruit-schedule__person-head > div {
    min-height: 0;
  }
  .recruit-schedule__genre {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .recruit-headline {
    padding: 40px 0;
    text-align: center;
  }
  .recruit-headline__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .recruit-headline__lead {
    display: block;
    width: 100%;
    font-size: 15px;
    text-align: center;
  }
  .recruit-headline__shortcuts {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
  }
  .recruit-headline__shortcuts a {
    width: 100%;
  }
  .recruit-headline__shortcuts a:nth-child(2) {
    width: 100%;
  }
  .recruit-headline .recruit-button--green {
    display: flex;
    width: 100%;
  }
  .recruit-mv {
    height: 460px;
  }
  .recruit-mv__catch {
    bottom: 58px;
    font-size: 40px;
  }
  .recruit-works .container,
  .recruit-schedule .container,
  .recruit-genre .container {
    display: flex;
    flex-direction: column;
  }
  .recruit-heading-row {
    display: contents;
  }
  .recruit-heading-row .section-heading {
    order: 1;
    margin-bottom: 28px;
  }
  .recruit-heading-row .recruit-button {
    order: 3;
    align-self: center;
    margin-top: 28px;
  }
  .recruit-works__grid,
  .recruit-schedule__panel,
  .recruit-genre__grid {
    order: 2;
  }
  .recruit-works,
  .recruit-schedule,
  .recruit-genre,
  .recruit-coworkers,
  .recruit-guideline,
  .recruit-application {
    padding: 80px 0;
  }
  .recruit-works__grid,
  .recruit-genre__grid,
  .recruit-application__desc {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: 1fr;
  }
  .recruit-genre__grid {
    gap: 56px;
  }
  .recruit-coworkers__lead,
  .recruit-coworkers__list {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .recruit-coworkers__list {
    gap: 56px;
  }
  .recruit-schedule__panel {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 58px;
  }
  .recruit-schedule__panel::before {
    display: none;
  }
  .recruit-schedule__person-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .recruit-schedule__person-head > div {
    min-height: 0;
  }
  .recruit-schedule__person-head img {
    width: 100%;
    height: auto;
    aspect-ratio: 273/184;
  }
  .recruit-schedule__genre {
    margin-top: 0;
  }
  .recruit-schedule__qa dl {
    padding-bottom: 16px;
  }
  .recruit-coworkers__item,
  .recruit-coworkers__item--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .recruit-coworkers__item--reverse img,
  .recruit-coworkers__item--reverse div {
    order: initial;
  }
  .recruit-coworkers__item h3 {
    font-size: 32px;
  }
  .recruit-guideline__title {
    font-size: 30px;
  }
  .recruit-guideline__panel {
    padding: 30px 24px 40px;
  }
  .recruit-guideline__panel h3 {
    margin-bottom: 24px;
    font-weight: 500;
  }
  .recruit-guideline__panel dl {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }
  .recruit-application__entry {
    height: 64px;
    font-size: 20px;
  }
  .recruit-application__contact {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 425px) {
  .recruit-schedule__qa dd {
    margin-left: 16px;
  }
}
.business-headline {
  padding: 35px 0 67px;
  text-align: center;
}
.business-headline__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 65px;
  position: relative;
}
.business-headline__title::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  margin: 6px auto 0;
  background: #fa7163;
}
.business-headline__lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 29px;
}
.business-headline__shortcuts {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.business-headline__shortcuts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 34px;
  border: 1px solid #a39f9c;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 300;
  background: #fff;
  white-space: nowrap;
}
.business-headline__shortcuts a.recruit-button--green {
  background: #2a8c51;
  border-color: #2a8c51;
  color: #fff;
  font-weight: 350;
}

.business-mv {
  height: 303px;
}
.business-mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-section {
  padding: 120px 0;
  --business-content-offset: 168px;
  --business-content-width: min(914px, calc(100% - var(--business-content-offset)));
  --business-content-right-gap: max(0px, calc(100% - var(--business-content-width) - var(--business-content-offset)));
}
.business-section--forest {
  background: #fcfbf6;
}
.business-section--forest .business-section__content {
  grid-template-rows: auto auto;
}
.business-section--forest .business-section__image {
  grid-row: 1/3;
}
.business-section--forest .business-section__action {
  grid-column: 2;
  justify-self: end;
  align-self: end;
  margin-left: 0;
  margin-right: 0;
}
.business-section--landscape {
  background: #fff;
  padding-bottom: 130px;
}
.business-section--landscape .business-section__content {
  grid-template-rows: auto auto;
}
.business-section--landscape .business-section__image {
  grid-row: 1/3;
}
.business-section--landscape .business-section__action {
  grid-column: 2;
  justify-self: end;
  align-self: end;
  margin-left: 0;
  margin-right: 0;
}
.business-section--products {
  background: #f6f3ee;
  padding-bottom: 126px;
}
.business-section__heading {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 42px;
  align-items: start;
  margin-bottom: 45px;
  padding-right: var(--business-content-right-gap);
}
.business-section__number {
  position: absolute;
  left: 0;
  top: -38px;
  font-size: 111.477px;
  line-height: 1;
  color: #2a8c51;
  opacity: 0.16;
  font-weight: 700;
}
.business-section__title {
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 500;
  margin-left: 90px;
  grid-column: 1;
}
.business-section__lead {
  grid-column: 2;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 4px;
  max-width: 840px;
}
.business-section__content {
  width: var(--business-content-width);
  margin-left: var(--business-content-offset);
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 36px;
  margin-bottom: 31px;
}
.business-section__content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.business-section__image {
  margin: 0;
  width: 100%;
  aspect-ratio: 400/267;
  overflow: hidden;
}
.business-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-section__action, .business-section__stock {
  width: 228px;
  padding: 0 12px;
  height: 46px;
  font-size: 16px;
}
.business-section__action {
  margin-left: auto;
  margin-right: var(--business-content-right-gap);
  display: flex;
}
.business-section__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  width: var(--business-content-width);
  margin-left: var(--business-content-offset);
}
.business-section__actions .business-section__action {
  margin-right: 0;
}
.business-section__stock {
  font-weight: 350;
}
.business-section .business-products {
  width: var(--business-content-width);
  margin-left: var(--business-content-offset);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 16px;
  margin-bottom: 45px;
}

.business-products__item {
  background: #fff;
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 214px;
}
.business-products__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-products__item div {
  padding: 30px 22px 24px;
}
.business-products__item h3 {
  color: #2a8c51;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}
.business-products__item p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .business-section {
    --business-content-width: 100%;
    --business-content-offset: 0px;
  }
  .business-section__lead {
    max-width: none;
  }
  .business-section__heading {
    padding-right: 0;
  }
  .business-section__content {
    width: 100%;
    margin-left: 0;
    grid-template-columns: minmax(280px, 40%) 1fr;
    gap: 24px;
  }
  .business-section__action {
    margin-right: 0;
  }
  .business-section .business-products {
    width: 100%;
    margin-left: 0;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .business-headline {
    padding: 40px 0 44px;
    text-align: center;
  }
  .business-headline__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .business-headline__lead {
    display: block;
    width: 100%;
    font-size: 15px;
    text-align: center;
  }
  .business-headline__shortcuts {
    flex-wrap: wrap;
    gap: 12px;
  }
  .business-headline__shortcuts a {
    flex: 1 1 calc(50% - 6px);
    max-width: 230px;
    min-width: 140px;
    padding: 0 14px;
  }
  .business-mv {
    height: 220px;
  }
  .business-section {
    padding: 80px 0;
  }
  .business-section--landscape {
    padding-bottom: 72px;
  }
  .business-section--products {
    padding-bottom: 80px;
  }
  .business-section__heading {
    grid-template-columns: 1fr;
    row-gap: 10px;
    margin-bottom: 32px;
  }
  .business-section__number {
    font-size: 72px;
    top: -26px;
  }
  .business-section__title {
    font-size: 24px;
    margin-left: 56px;
  }
  .business-section__lead {
    grid-column: 1;
    margin-left: 0;
    font-size: 15px;
    margin-top: 12px;
  }
  .business-section__content {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 0;
  }
  .business-section__content p {
    font-size: 15px;
  }
  .business-section__content .recruit-button {
    margin-top: 8px;
  }
  .business-section--forest .business-section__image, .business-section--landscape .business-section__image {
    grid-row: auto;
  }
  .business-section--forest .business-section__action, .business-section--landscape .business-section__action {
    grid-column: 1;
    justify-self: start;
  }
  .business-section__action, .business-section__stock {
    width: 100%;
    margin-left: auto;
  }
  .business-section__actions {
    align-items: flex-end;
    gap: 24px;
  }
  .business-section .business-products {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }
  .business-products__item {
    grid-template-columns: 1fr;
  }
  .business-products__item img {
    aspect-ratio: 16/9;
  }
  .business-products__item div {
    padding: 18px 16px 20px;
  }
  .business-products__item h3 {
    margin-bottom: 8px;
  }
}
@media (max-width: 425px) {
  .business-headline__shortcuts a {
    flex: 1 1 100%;
    max-width: none;
  }
}
.stock-headline {
  padding: 35px 0 82px;
  text-align: center;
}
.stock-headline__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 65px;
  position: relative;
}
.stock-headline__title::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  margin: 6px auto 0;
  background: #fa7163;
}
.stock-headline__lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
}

.stock-overview {
  padding: 120px 0;
  background: url("/images/stock_overview_bg.webp") center/cover no-repeat;
}
.stock-overview__grid {
  max-width: 660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.stock-overview__item {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}
.stock-overview__item:hover {
  transform: scale(1.05);
}
.stock-overview__item h2 {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  padding: 8px 12px 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.stock-overview__image {
  flex: 1;
  min-height: 0;
  height: auto;
}
.stock-overview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stock-overview__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a7a7a7;
}
.stock-overview__image--placeholder span {
  font-size: 18px;
  color: #fff;
}
.stock-overview__status {
  flex-shrink: 0;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}
.stock-overview__status--in, .stock-overview__status--shipping {
  background: #2a8c51;
}
.stock-overview__status--out {
  background: #fa7163;
}
.stock-overview__status--season_end {
  background: #878787;
}

.stock-info {
  padding: 120px 0;
}
.stock-info .container {
  max-width: 980px;
  display: grid;
  gap: 82px;
}
.stock-info__item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
}
.stock-info__image {
  width: 100%;
  max-width: 320px;
  height: 320px;
  background: #a7a7a7;
}
.stock-info__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stock-info__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stock-info__image--placeholder span {
  font-size: 28px;
  color: #fff;
}
.stock-info__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.stock-info__content h2 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
}
.stock-info__price {
  margin-top: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid #cfcfcf;
  font-size: 20px;
  font-weight: 350;
}
.stock-info__price-tax {
  font-size: 0.75em;
}
.stock-info__desc {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}
.stock-info__notice {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 300;
}
.stock-info__meta {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #cfcfcf;
  font-size: 16px;
  font-weight: 300;
}
.stock-info__meta dt {
  width: 72px;
}
.stock-info__status {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 500;
}
.stock-info__status--in, .stock-info__status--shipping {
  color: #2a8c51;
}
.stock-info__status--out {
  color: #fa7163;
}
.stock-info__status--season_end {
  color: #878787;
}
.stock-info__back {
  margin-top: auto;
  margin-left: auto;
  width: 170px;
  height: 42px;
  border: 1px solid #a39f9c;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 350;
}
.stock-info__back-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.stock-info__back-icon::before, .stock-info__back-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  width: 10px;
  height: 10px;
  border-top: 2.4px solid #000;
  border-left: 2.4px solid #000;
  transform: rotate(45deg);
}
.stock-info__back-icon::before {
  top: 6px;
}
.stock-info__back-icon::after {
  top: 12px;
}

@media (max-width: 1024px) {
  .stock-overview {
    padding: 90px 0 84px;
  }
  .stock-overview__grid {
    max-width: min(100%, 632px);
    grid-template-columns: repeat(auto-fit, 200px);
    justify-content: center;
    gap: 16px;
  }
  .stock-overview__item {
    max-width: 200px;
    width: 100%;
    justify-self: center;
  }
  .stock-info {
    padding: 80px 0;
  }
  .stock-info .container {
    gap: 56px;
  }
  .stock-info__item {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 28px;
  }
  .stock-info__image {
    max-width: 320px;
    width: 100%;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .stock-headline {
    padding: 40px 0 48px;
  }
  .stock-headline__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .stock-headline__lead {
    text-align: center;
    font-size: 15px;
  }
  .stock-headline__lead span {
    display: inline-block;
  }
  .stock-overview {
    padding: 80px 0;
  }
  .stock-overview__grid {
    max-width: 100%;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 12px;
  }
  .stock-overview__item {
    max-width: none;
    width: 100%;
    justify-self: stretch;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 1/0.92;
    min-height: 0;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2);
    background: #a7a7a7;
  }
  .stock-overview__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .stock-overview__item:hover {
    transform: none;
  }
  .stock-overview__item h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    padding: 0 8px 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  }
  .stock-overview__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: auto;
  }
  .stock-overview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .stock-overview__image--placeholder span {
    font-size: 14px;
  }
  .stock-overview__status {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    width: fit-content;
    min-width: 0;
    height: 22px;
    margin: 0 8px 8px;
    padding: 0 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 350;
    line-height: 1;
    gap: 4px;
    justify-content: flex-start;
  }
  .stock-overview__status--in, .stock-overview__status--out, .stock-overview__status--shipping {
    background: #fff;
    color: #000;
    border: 1px solid #e5e5e5;
  }
  .stock-overview__status--in::before, .stock-overview__status--out::before, .stock-overview__status--shipping::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .stock-overview__status--in::before, .stock-overview__status--shipping::before {
    background: #2a8c51;
  }
  .stock-overview__status--out::before {
    background: #fa7163;
  }
  .stock-overview__status--season_end {
    background: #878787;
    color: #fff;
    border: none;
  }
  .stock-info {
    padding: 80px 0;
  }
  .stock-info .container {
    gap: 70px;
  }
  .stock-info__item {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stock-info__image {
    max-width: 320px;
    width: 100%;
    height: 320px;
    margin-inline: auto;
    justify-self: center;
  }
  .stock-info__content h2 {
    font-size: 28px;
  }
  .stock-info__price {
    font-size: 20px;
  }
  .stock-info__desc {
    font-size: 15px;
    margin-top: 12px;
  }
  .stock-info__meta {
    gap: 14px;
    font-size: 15px;
  }
  .stock-info__meta dt {
    width: 62px;
  }
  .stock-info__status {
    font-size: 20px;
  }
  .stock-info__back {
    margin-top: 18px;
  }
}
@media (max-width: 425px) {
  .stock-info__back {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .business-page .business-headline,
  .recruit-page .recruit-headline {
    text-align: center;
  }
  .business-page .business-headline__lead,
  .recruit-page .recruit-headline__lead {
    display: block;
    width: 100%;
    text-align: center;
  }
}

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