@import "kiso.css";
.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

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

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}

@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
:root {
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
  --inner: 1080px;
  --padding-pc: 25px;
  --padding-sp: 15px;
  --color-white: #fff;
  --color-text: #0D2936;
  --color-black: #000;
  --color-gray: #F0F0F0;
  --color-accent: #408F95;
  --color-primary: #234F5E;
  --color-secondary: #0000ff;
  --color-orange: #DE8430;
  --regular: 300;
  --normal: 400;
  --medium: 500;
  --bold: 700;
  --leading-trim: calc((1em - 1lh) / 2);
  --spacing-unit: 0.5rem;
  --spacing-xs: calc(var(--spacing-unit) / 2);
  --spacing-sm: var(--spacing-unit);
  --spacing-md: calc(var(--spacing-unit) * 2);
  --spacing-lg: calc(var(--spacing-unit) * 3);
  --spacing-lg-2: calc(var(--spacing-unit) * 4);
  --spacing-xl: calc(var(--spacing-unit) * 5);
  --spacing-xl-2: calc(var(--spacing-unit) * 6);
  --spacing-2xl: calc(var(--spacing-unit) * 8);
  --spacing-3xl: calc(var(--spacing-unit) * 13);
  --spacing-xs-trim: calc(var(--spacing-xs) + var(--leading-trim));
  --spacing-sm-trim: calc(var(--spacing-sm) + var(--leading-trim));
  --spacing-md-trim: calc(var(--spacing-md) + var(--leading-trim));
  --spacing-lg-trim: calc(var(--spacing-lg) + var(--leading-trim));
  --spacing-xl-trim: calc(var(--spacing-xl) + var(--leading-trim));
  --spacing-2xl-trim: calc(var(--spacing-2xl) + var(--leading-trim));
  --spacing-3xl-trim: calc(var(--spacing-3xl) + var(--leading-trim));
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}
.c-btn {
  background-color: #005E3C;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 400;
  padding: 0.50625rem 0.625rem;
  line-height: 1.2;
  text-decoration: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 100%;
  min-width: 7.5rem;
  display: inline-block;
  text-align: center;
  position: relative;
}

.c-btn span {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}

.footer {
  background-color: #fff;
  padding-top: 2.625rem;
  padding-bottom: 1.25rem;
  color: #575757;
  position: relative;
}

.footer__line {
  width: 100%;
  height: 1px;
  background-color: #575757;
}

.footer__inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.375rem;
  grid-row-gap: 0;
  margin-top: 6.875rem;
}

.footer__info {
  padding-left: 5rem;
  display: flex;
  flex-direction: column;
}

.footer__logo {
  max-width: 16.125rem;
  height: auto;
}

.footer__address {
  font-style: normal;
  margin-top: 2.8125rem;
  margin-left: 1.5625rem;
}

.footer__address-head {
  display: flex;
}

.footer__address-title,
.footer__address-location,
.footer__address-row,
.footer__address-row a {
  font-size: 0.8125rem;
  font-weight: 700;
}

.footer__address-location {
  padding-left: 0.1875rem;
}

.footer__address-row {
  margin-top: 1.625rem;
}

.footer__address-row--fax {
  margin-top: 1.1875rem;
}

.footer__actions {
  display: flex;
  flex-direction: column;
  row-gap: 1.6825rem;
  margin-top: 2.678125rem;
  margin-left: 0.875rem;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 14.375rem;
  height: 3.02875rem;
  font-weight: 700;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .footer__btn:hover {
    opacity: 0.6;
  }
}
.footer__btn--map {
  border: 1px solid #005E3C;
  color: #005E3C;
  box-shadow: 2px 2px 0px #005E3C;
  position: relative;
  padding-left: 1.25rem;
}

.footer__btn--map::before {
  content: "";
  background-image: url(../../images/logo-map.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 2.946875rem;
  transform: translateY(-50%);
  width: 1.39125rem;
  height: 1.39125rem;
}

.footer__btn--calendar {
  border: 1px solid #575757;
  color: #575757;
  font-size: 0.875rem;
  box-shadow: 2px 2px 0px #575757;
  padding-left: 0.875rem;
}

.footer__btn--calendar::before {
  content: "";
  background-image: url(../../images/logo-calendar.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 2.0125rem;
  transform: translateY(-50%);
  width: 1.15rem;
  height: 1.176875rem;
}

.footer__nav-area {
  padding-top: 5.5rem;
  padding-left: 2rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}

.footer__item {
  display: flex;
}

.footer__link {
  font-weight: 700;
  position: relative;
  padding-left: 2.5rem;
}

.footer__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 0.9375rem;
  height: 0.1875rem;
  background-color: #005E3C;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .footer__link:hover::before {
    transform: translateX(15px);
  }
  .footer__item:has(.footer__link:hover) .footer__item::before {
    transform: translateX(30px);
  }
}
.footer__sns {
  margin-top: 1.5625rem;
  margin-left: 2.5rem;
}

.footer__sns-link {
  width: 1.5625rem;
  height: 1.5625rem;
  display: inline-block;
}

.footer__sns-icon {
  vertical-align: bottom;
  transition: 0.5s;
}

@media (any-hover: hover) {
  .footer__sns-icon:hover {
    scale: 1.2;
  }
}
.footer__visual {
  margin-top: 0.4375rem;
}

.splide__slide {
  max-width: 19.4575rem;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer__bottom {
  padding-left: 5.125rem;
  margin-top: 2.375rem;
}

.footer__copyright {
  font-family: "Inter", sans-serif;
  display: block;
  font-size: 0.6875rem;
  letter-spacing: -0.02em;
}

.footer__pagetop {
  max-width: 3.125rem;
  width: 100%;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.footer__pagetop.is-active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 0;
  }
  .footer__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .footer__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0.625rem;
    margin-top: 3.75rem;
  }
  .footer__info {
    padding-left: 0;
  }
  .footer__address {
    margin-left: 0;
  }
  .footer__nav-area {
    padding-top: 0;
    padding-left: 0;
  }
  .footer__visual {
    display: none;
  }
  .splide__slide {
    max-width: none;
  }
  .footer__bottom {
    padding-left: 0;
  }
  .footer__pagetop {
    max-width: 3.125rem;
  }
  .footer__pagetop-link {
    height: 3.125rem;
  }
  .footer__pagetop-link::before {
    width: 1rem;
    height: 1.625rem;
  }
}
@media screen and (max-width: 600px) {
  .footer__content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 1.875rem;
  }
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  transition: 1.5s;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.header {
  height: 4.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  transition: 0.3s;
}

.header.is-scrolled .header__logo,
.header.is-scrolled .header__nav {
  opacity: 0;
  pointer-events: none;
}
.header.is-scrolled .header__hamburger {
  display: block;
}

.header__inner {
  padding: 0rem 2.5625rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.header__logo {
  max-width: 18.658125rem;
  width: clamp(6.25rem, -7.931rem + 29.543vw, 18.658rem);
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

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

.header__logo-img02 {
  display: none;
}

@media (any-hover: hover) {
  .header__nav-link--underline:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.header.headerLogoScroll .header__logo-img {
  display: block;
}
.header.headerLogoScroll .header__logo-img02 {
  display: none;
}
.header.headerLogoScroll .header__nav-link--underline::before {
  background-color: currentColor;
}

.header__nav {
  height: 3rem;
  transition: opacity 0.3s ease;
}

.header__nav-list {
  display: flex;
  height: inherit;
  align-items: center;
}

.header__nav-item {
  height: inherit;
}

.header__nav-link {
  margin: 0rem 0.78125rem;
  font-size: clamp(0.875rem, 0.732rem + 0.298vw, 1rem);
  height: inherit;
  display: flex;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  font-weight: 500;
}

.header__nav-link--underline::before {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.6s cubic-bezier(0.6, 0, 0, 1);
}

@media (any-hover: hover) {
  .header__nav-link--underline:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.header__nav-link--contact {
  background: linear-gradient(264.68deg, #33B09E 4.22%, #005E3C 96.59%);
  padding-top: 0.9375rem;
  padding-right: 1.0625rem;
  padding-bottom: 0.9375rem;
  padding-left: 1.0625rem;
  border-radius: 3px;
  transition: 0.3s;
  min-height: 3.125rem;
  margin-right: 0;
}

@media (any-hover: hover) {
  .header__nav-link--contact:hover {
    opacity: 0.7;
  }
}
.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  display: none;
  position: absolute;
  z-index: 999;
  right: 2.5625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: 0.3s;
}
.header__hamburger.is-open {
  display: block;
}

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

.header__hamburger span {
  position: relative;
  left: 50%;
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(264.68deg, #33B09E 4.22%, #005E3C 96.59%);
  transition: 0.5s;
  transform: translate(-50%, 0);
}

.header__hamburger span:nth-of-type(1) {
  top: -10px;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 10px;
}

.header__hamburger.is-open span:nth-of-type(1) {
  transform: translate(-50%, 10px) rotate(-315deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  transform: translate(-50%, -12px) rotate(315deg);
}

.header__drawer {
  padding: 7.5rem 0rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(264.68deg, #33B09E 4.22%, #005E3C 96.59%);
  overflow-y: scroll;
  scrollbar-width: none;
  opacity: 0.85 !important;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0rem;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .header {
    height: 6.25rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .header__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .header__logo {
    max-width: 12.5rem;
    width: 100%;
  }
  .header__nav {
    display: none;
  }
  .header__hamburger {
    display: block;
    right: 1.25rem;
  }
  .header__drawer-item a {
    font-size: clamp(1.25rem, 1.071rem + 0.893vw, 1.5rem);
  }
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  transition: 1.5s;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.header-2 {
  background-color: #fff;
}
.header-2 .header__nav-link {
  color: #575757;
}
.header-2 .header__nav-link--contact {
  color: #fff;
}
.c-title {
  opacity: 0;
}

.c-title.is-active {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-title__en {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  position: relative;
  padding-left: 3.375rem;
}

.c-title__en::before {
  content: "";
  background-color: #005E3C;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.875rem;
  height: 0.4375rem;
}

.c-title__ja {
  font-size: 2.25rem;
  font-weight: 700;
}

@media screen and (max-width: 600px) {
  .c-title__ja {
    font-size: 1.5rem !important;
  }
  .c-title__en {
    font-size: 0.8125rem !important;
    padding-left: 1.5rem !important;
  }
  .c-title__en::before {
    width: 0.788125rem;
    height: 0.3125rem;
  }
}
.c-text {
  opacity: 0;
}

.c-text.is-active {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-fv {
  aspect-ratio: 1440/417.48;
  background-size: cover;
  position: relative;
}

.c-fv__head {
  display: flex;
  align-items: center;
  max-width: 53.125rem;
  width: 100%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  min-height: 8.75rem;
  background-color: #fff;
  position: absolute;
  bottom: -8.125rem;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.c-fv__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.40625;
  opacity: 0;
}

.c-fv__text {
  line-height: 1.9375;
  padding-right: 1.25rem;
  position: relative;
  flex: 1;
}

.c-fv__title.is-active {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-fv__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  background-color: #005E3C;
  width: 0.0625rem;
  height: 4.75rem;
}

@media screen and (max-width: 768px) {
  .c-fv {
    aspect-ratio: 500/600;
  }
  .c-fv__head {
    text-align: center;
    row-gap: 0.625rem;
    flex-direction: column;
    width: 90%;
    padding: 1.25rem;
  }
  .c-fv__text {
    border-top: 1px solid #005E3C;
    padding-top: 0.625rem;
  }
  .c-fv__text::before {
    display: none;
  }
}
.c-contact {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(241, 255, 253, 0.5) 8.65%, rgba(195, 254, 245, 0.5) 40.87%, rgba(199, 254, 246, 0.5) 67.31%, rgba(255, 255, 255, 0.5) 100%);
  padding-bottom: 6.5625rem;
}

.c-contact__loop .loop {
  position: relative;
  height: 12.5rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.c-contact__loop .loop__list {
  display: flex;
  width: max-content;
  animation: loopText 60s linear infinite;
}
@keyframes loopText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.c-contact__loop .loop__item {
  flex-shrink: 0;
  font-family: "Jost", sans-serif;
  font-size: 13.75rem;
  font-weight: 300;
  list-style: none;
  background: linear-gradient(90deg, #C5C3C3 0%, #F1F1F1 51.92%, #D9D9D9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-contact__inner {
  position: relative;
  max-width: 63.75rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  margin-inline: auto;
}

.c-contact__list {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 0.3125rem;
}

.c-contact__link {
  display: block;
  position: relative;
  width: 100%;
  max-width: 28.125rem;
  padding-top: 3.5625rem;
  padding-right: 3.875rem;
  padding-bottom: 3.125rem;
  padding-left: 3.875rem;
  border-radius: 3px;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
}

.c-contact__link.is-active {
  animation: blur 0.8s ease-out forwards;
}

.c-contact__link.u-delay.is-active {
  animation: blur 0.8s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
.c-contact__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .c-contact__link:hover::before {
    opacity: 1;
  }
}
.c-contact__link--primary {
  background: linear-gradient(257.05deg, #3FC1B9 0.51%, #154A42 100%);
}

.c-contact__link--primary::before {
  background: linear-gradient(77.05deg, #3FC1B9 0.51%, #154A42 100%);
}

.c-contact__link--secondary {
  background: linear-gradient(63.89deg, #3FC1B9 14.43%, #94EBDC 85.77%);
}

.c-contact__link--secondary::before {
  background: linear-gradient(243.89deg, #3FC1B9 14.43%, #94EBDC 85.77%);
}

.c-contact__content {
  position: relative;
  z-index: 2;
}

.c-contact__desc {
  font-size: 1.125rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6666666667;
}

.c-contact__line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 0.8125rem;
}

.c-contact__title {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: #fff;
  margin-top: 0.3125rem;
}

.c-contact__arrow {
  width: 3.375rem;
  transition: transform 0.3s ease;
}

@media (any-hover: hover) {
  .c-contact__link:hover .c-contact__arrow {
    transform: translateX(10px);
  }
}
.c-contact__icon {
  position: absolute;
  bottom: 0.4375rem;
  right: 2.3125rem;
  width: 8.5625rem;
  height: auto;
}

.c-contact__link--secondary .c-contact__icon {
  position: absolute;
  bottom: 2.3125rem;
  right: 5rem;
  width: 7.625rem;
  height: auto;
}

.c-contact__icon img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .c-contact {
    padding-bottom: 3.75rem;
  }
  .c-contact__loop .loop__item {
    font-size: 7.5rem;
  }
  .c-contact__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .c-contact__list {
    flex-direction: column;
  }
  .c-contact__link {
    max-width: none;
    padding: 1.875rem;
  }
  .c-contact__icon {
    width: 5.625rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }
  .c-contact__link--secondary .c-contact__icon {
    width: 5.625rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

a[href^=tel] {
  text-decoration: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
  font-size: var(--clamp);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #575757;
  font-weight: 500;
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;
  --clamp-min: 14;
  --clamp-max: 16;
}

body.is-scroll {
  overflow: hidden;
}

main {
  overflow: visible;
  transform: none;
}

@media (max-width: 767px) {
  [data-device=pc] {
    display: none;
  }
}

@media (min-width: 768px) {
  [data-device=sp] {
    display: none;
  }
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

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

input[type=text] {
  font-size: 1rem;
}

textarea {
  field-sizing: content;
}

@media screen and (max-width: 768px) {
  #wpadminbar {
    display: none;
  }
}
html {
  box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

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

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  appearance: none;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: bold;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  appearance: button;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  appearance: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: "";
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.top-fv {
  position: relative;
}

.top-fv__inner {
  height: inherit;
}

.top-fv__bg {
  position: relative;
}

.top-fv__bg video {
  aspect-ratio: 1440/390;
  display: block;
  object-fit: cover;
  width: 100%;
}

.top-fv__loop {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 100;
  mix-blend-mode: difference;
}
.top-fv__loop .loop {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  height: inherit;
}
.top-fv__loop .loop__list {
  display: flex;
  width: max-content;
  animation: loopText 40s linear infinite;
  animation-delay: 1s;
  padding-left: 6.25rem;
}
@keyframes loopText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.top-fv__loop .loop__item span {
  font-family: "Jost", sans-serif;
  font-size: clamp(6.25rem, 0.52rem + 11.923vw, 11.25rem);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  opacity: 0.8;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation-name: letterFadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes letterFadeIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-fv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 62%;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  opacity: 0;
}

.top-fv__title-wrap.is-active {
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 1.8s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-fv__main-title {
  font-size: 3.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-top: 0.75rem;
}

.top-fv__sub-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-top: 0.25rem;
}

.top-fv__img-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(264.68deg, #33B09E 4.22%, #005E3C 96.59%);
}

.top-fv__img {
  opacity: 0;
}

.top-fv__img.is-active {
  animation: timeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes timeIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-wrap {
  position: absolute;
  bottom: 0;
  left: 2.9375rem;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 100;
  height: 15.625rem;
}

.scroll-wrap.is-active {
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 2.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll {
  padding-bottom: 7.8125rem;
  margin-top: 3.875rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}

.scroll::before {
  animation: scroll 2s infinite;
  animation-delay: 4s;
  background-color: #fff;
  content: "";
  height: 6.875rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.0625rem;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media screen and (max-width: 768px) {
  .top-fv__bg video {
    aspect-ratio: 768/650;
  }
  .top-fv__loop {
    top: 90%;
  }
  .top-fv__loop .loop__list {
    min-height: 7.5rem;
  }
  .top-fv__loop .loop__item span {
    font-size: 5rem;
    height: 7.5rem;
  }
  .top-fv__title-wrap {
    top: 60%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .top-fv__main-title {
    font-size: clamp(1.5rem, 1.023rem + 2.036vw, 2rem);
  }
  .top-fv__img-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
  .scroll-wrap {
    height: auto;
  }
  .scroll {
    padding-bottom: 6.25rem;
    margin-top: 0;
  }
  .scroll::before {
    height: 5rem;
  }
}
.top-about {
  position: relative;
  background-image: url("../../images/top-about-bg.webp");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 300vh;
}

.top-about__bg {
  width: 100%;
  height: 100%;
}

.top-about__sticky-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.top-about__inner {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  padding-top: 8.4375rem;
  padding-right: 15.625rem;
  padding-bottom: 8.75rem;
  padding-left: 15.625rem;
  position: relative;
}

.top-about__img {
  width: 100%;
}

.top-about__img img {
  transition: transform 0.5s cubic-bezier(0.6, 0, 0, 1);
}

.top-about__content-wrap {
  position: absolute;
  bottom: 10.9375rem;
  left: 0;
}

.top-about__content {
  background-color: #fff;
  max-width: 45.625rem;
  margin-inline: auto;
  padding-top: 2.375rem;
  padding-bottom: 3.5625rem;
  text-align: center;
  position: relative;
  margin-top: -3.3125rem;
  z-index: 2;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.top-about__caption {
  font-size: 1.125rem;
  font-weight: 700;
  color: #353535;
  line-height: 1.6666666667;
  letter-spacing: 0.02em;
}

.top-about__caption-highlight {
  font-size: 1.5rem;
  color: #005E3C;
  line-height: 1.25;
}

.top-about__body {
  margin-top: 1rem;
  padding-right: 4.5625rem;
  padding-left: 6rem;
}

.top-about__text {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  text-align: left;
}

.top-about__btn-wrap {
  position: absolute;
  bottom: 0.9375rem;
  right: -1.75rem;
}

.top-about__btn {
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  position: relative;
  text-align: left;
  border-radius: 2px;
  border: none;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  padding-top: 0.5875rem;
  padding-bottom: 0.55625rem;
  padding-left: 1.6875rem;
}

.top-about__btn::after {
  content: "";
  background-image: url(../../images/top-btn-arrow-right-white.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  width: 1.5625rem;
  height: 0.625rem;
  transition: 0.5s;
}

@media (any-hover: hover) {
  .top-about__btn:hover::after {
    right: 0.5rem;
  }
  .top-about__inner:has(.top-about__btn:hover) .top-about__img img {
    transform: scale(1.1);
  }
}
.top-about__title {
  font-size: 10.9375rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #fff;
  position: absolute;
  left: -0.875rem;
  bottom: -1.5rem;
  line-height: 1;
  opacity: 0;
}

.top-about__title.is-active {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .top-about {
    height: 100%;
  }
  .top-about__sticky-wrapper {
    position: static;
    height: 100%;
  }
  .top-about__inner {
    padding-top: 3.75rem;
    padding-right: 1.25rem;
    padding-bottom: 6.25rem;
    padding-left: 1.25rem;
  }
  .top-about__content {
    margin-top: 0;
    padding-top: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 6.25rem;
    padding-left: 2.5rem;
    max-width: none;
  }
  .top-about__title {
    font-size: clamp(3.125rem, 0.893rem + 11.161vw, 6.25rem);
    left: 0;
    bottom: 0;
  }
  .top-about__body {
    padding: 0;
  }
  .top-about__btn-wrap {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 11.25rem;
  }
}
.top-works {
  padding-top: 4.4375rem;
  padding-bottom: 6.8125rem;
}

.top-works__inner {
  max-width: 90rem;
  margin-inline: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}

.top-works__head {
  display: flex;
  justify-content: center;
  column-gap: 5.3125rem;
}

.top-works__title-ja {
  margin-top: 1.25rem;
}

.top-works__lead {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  margin-top: 2.9375rem;
}

.top-works__list {
  margin-top: 4.8125rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.top-works__item {
  display: flex;
  height: 31.25rem;
  opacity: 0;
}

.top-works__item.is-active {
  animation: blur 0.8s ease-out forwards;
}

@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
.top-works__img {
  width: 64.7058823529%;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}

.top-works__img img {
  transition: transform 0.5s cubic-bezier(0.6, 0, 0, 1);
}

.top-works__content {
  flex: 1;
  padding-top: 7.5rem;
  padding-right: 6.25rem;
  padding-bottom: 6.5625rem;
  padding-left: 4.9375rem;
  color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 0 16px 16px 0;
}

.top-works__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.top-works__content > * {
  position: relative;
  z-index: 2;
}

.top-works__content--corporate {
  background: linear-gradient(245.62deg, #005E3C 13.81%, #3FC1B9 100%);
  isolation: isolate;
}

.top-works__content--corporate::before {
  background: linear-gradient(65.62deg, #005E3C 13.81%, #3FC1B9 100%);
}

.top-works__content--personal {
  background: linear-gradient(250.48deg, #83E7B4 2.89%, #40C1B9 64.99%);
  isolation: isolate;
}

.top-works__content--personal::before {
  background: linear-gradient(70.48deg, #83E7B4 2.89%, #40C1B9 64.99%);
}

@media (any-hover: hover) {
  .top-works__content--corporate:has(.top-works__btn:hover)::before {
    opacity: 1;
  }
  .top-works__content--personal:has(.top-works__btn:hover)::before {
    opacity: 1;
  }
}
.top-works__content-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.top-works__content-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  border-top: 1px solid #fff;
  width: 100%;
  padding-top: 0.625rem;
  margin-top: 0.625rem;
  line-height: 2;
}

.top-works__content-text {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 2.3076923077;
  margin-top: 1.1875rem;
}

.top-works__btn-wrap {
  margin-top: 2.5rem;
}

.top-works__btn {
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 2.1428571429;
  letter-spacing: -0.05em;
  background-color: transparent;
  border-radius: 3px;
  box-shadow: 2px 2px 0px #fff;
  max-width: 11.25rem;
  padding-top: 0.40625rem;
  padding-bottom: 0.40625rem;
  padding-left: 2.25rem;
  text-align: left;
}

.top-works__btn::after {
  content: "";
  background-image: url(../../images/top-btn-arrow-right-white.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 2.1875rem;
  width: 1.5625rem;
  height: 0.625rem;
  transition: 0.5s;
}

@media (any-hover: hover) {
  .top-works__btn:hover::after {
    right: 1.6875rem;
  }
  .top-works__item:has(.top-works__btn:hover) .top-works__img img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .top-works {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .top-works__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .top-works__head {
    flex-direction: column;
  }
  .top-works__lead {
    margin-top: 1.875rem;
  }
  .top-works__list {
    margin-top: 1.875rem;
    gap: 1.875rem;
  }
  .top-works__item {
    flex-direction: column;
    height: auto;
  }
  .top-works__img {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
  .top-works__content {
    padding: 1.875rem;
    border-radius: 0 0 16px 16px;
  }
  .top-works__btn-wrap {
    text-align: center;
  }
}
.top-recruit {
  width: 100%;
  position: relative;
  background: radial-gradient(77.93% 170.9% at 50% 50%, #3FC1B9 32.02%, #89D5C8 51.75%, #F1FFFD 72.62%);
  color: #fff;
  padding-top: 7.5625rem;
  padding-bottom: 8.125rem;
  overflow: hidden;
  min-height: 100vh;
  box-sizing: border-box;
}

.top-recruit__inner {
  position: relative;
  z-index: 100;
  width: 100%;
  max-width: 82.4375rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  height: 100%;
}

.top-recruit__title {
  position: relative;
  width: 100%;
  max-width: 76.875rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  z-index: 100;
}

.top-recruit__title-en {
  padding-left: 3.25rem;
}

.top-recruit__title-en::before {
  background-color: #fff;
}

.top-recruit__title-ja {
  margin-top: 0.875rem;
}

.top-recruit__bg-text {
  font-family: "Jost", sans-serif;
  font-size: clamp(4rem, -0.011rem + 8.346vw, 7.5rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 100;
  position: relative;
  margin-top: 2.0625rem;
  mix-blend-mode: overlay;
}

.top-recruit__bg-text br {
  display: none;
}

.top-recruit__content {
  position: relative;
  margin-top: 3.6875rem;
}

.top-recruit__text-body {
  max-width: 44.375rem;
  width: 100%;
  margin-inline: auto;
  text-align: left;
}

.top-recruit__desc {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
}

.top-recruit__btn-wrap {
  margin-top: 5.6875rem;
  text-align: center;
}

.top-recruit__btn {
  max-width: 18.75rem;
  border: 1px solid #575757;
  color: #575757;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.25;
  background-color: #fff;
  border-radius: 5px;
  padding-top: 1.1875rem;
  padding-bottom: 1.1875rem;
  padding-left: 4.5625rem;
  box-shadow: 2px 2px 0px #005E3C;
  text-align: left;
}

.top-recruit__btn::after {
  content: "";
  background-image: url(../../images/top-btn-arrow-right-black.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 2.9375rem;
  width: 2.8125rem;
  height: 0.5rem;
  transition: 0.5s;
}

@media (any-hover: hover) {
  .top-recruit__btn:hover::after {
    right: 2.3125rem;
  }
}
.top-recruit__img {
  position: absolute;
  z-index: 1;
  will-change: transform;
}

.top-recruit__img--1 {
  max-width: 22.93125rem;
  top: 7.4%;
  left: 22%;
}

.top-recruit__img--2 {
  width: 14rem;
  top: 37.2%;
  left: 0;
}

.top-recruit__img--3 {
  width: 19.5625rem;
  top: 73.8%;
  left: 7.7%;
}

.top-recruit__img--4 {
  width: 21.25rem;
  top: 2.8%;
  right: 9.4%;
}

.top-recruit__img--5 {
  width: 20.4375rem;
  top: 43.1%;
  right: 0;
}

.top-recruit__img--6 {
  width: 17.4375rem;
  top: 68.7%;
  right: 12.2%;
}

@media screen and (max-width: 768px) {
  .top-recruit {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .top-recruit__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .top-recruit__title {
    margin-top: 1.25rem;
  }
  .top-recruit__bg-text {
    font-size: clamp(3.75rem, 3.333rem + 1.781vw, 4.188rem);
  }
  .top-recruit__bg-text br {
    display: block;
  }
  .top-recruit__catch {
    margin-top: 1.25rem;
  }
  .top-recruit__text-body {
    margin-top: 1.25rem;
  }
  .top-recruit__desc {
    font-size: 1rem;
  }
  .top-recruit__desc br {
    display: none;
  }
  .top-recruit__btn-wrap {
    margin-top: 1.25rem;
  }
  .top-recruit__img {
    width: 40%;
  }
  .top-recruit__img--1 {
    left: 5%;
  }
  .top-recruit__img--3 {
    top: 75%;
    left: 3%;
  }
  .top-recruit__img--4 {
    right: 6%;
  }
  .top-recruit__img--6 {
    right: 4%;
  }
}
.top-company {
  padding-top: 7.5625rem;
}

.top-company__inner {
  max-width: 82.625rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  margin-inline: auto;
}

.top-company__container {
  display: flex;
  gap: 5.0625rem;
}

.top-company__content {
  width: 50%;
  padding-left: 3.25rem;
}

.top-company__title-en {
  letter-spacing: -0.03em;
}

.top-company__title-ja {
  margin-top: 0.875rem;
}

.top-company__body {
  margin-top: 3.875rem;
}

.top-company__text {
  font-size: 0.875rem;
  line-height: 2.8571428571;
}

.top-company__btn-wrap {
  text-align: center;
  margin-top: 3.9375rem;
}

.top-company__btn {
  max-width: 18.75rem;
  border: 1px solid #005E3C;
  color: #005E3C;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  background-color: #fff;
  border-radius: 5px;
  padding-top: 1.1875rem;
  padding-bottom: 1.1875rem;
  padding-left: 3.4375rem;
  box-shadow: 2px 2px 0px #005E3C;
  text-align: left;
}

.top-company__btn::after {
  content: "";
  background-image: url(../../images/top-btn-arrow-right-green.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  width: 2.8125rem;
  height: 0.5rem;
  transition: 0.5s;
}

@media (any-hover: hover) {
  .top-company__btn:hover::after {
    right: 1.875rem;
  }
}
.top-company__img {
  flex: 1;
  overflow: hidden;
  opacity: 0;
}

.top-company__img.is-active {
  animation: zoomIn 1s ease-out forwards;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.top-company__img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.6, 0, 0, 1);
}

@media screen and (max-width: 768px) {
  .top-company {
    padding-top: 3.75rem;
  }
  .top-company__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .top-company__container {
    flex-direction: column;
    gap: 1.875rem;
  }
  .top-company__content {
    width: 100%;
    padding-left: 0;
  }
  .top-company__body {
    margin-top: 1.875rem;
  }
  .top-company__btn-wrap {
    margin-top: 1.875rem;
  }
}
.policy {
  padding-top: 7.8125rem;
  padding-bottom: 4.5rem;
  color: #353535;
}

.policy__inner {
  max-width: 61.25rem;
  margin-inline: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}

.policy__title-en {
  color: #575757;
  font-weight: 700;
  padding-left: 3.125rem;
  letter-spacing: -0.05em;
}

.policy__title-ja {
  font-size: 2rem;
  margin-top: 1.1875rem;
}

.policy__lead {
  margin-top: 3.375rem;
}

.policy__lead-text {
  line-height: 1.625;
}

.policy__container {
  margin-top: 0.875rem;
}

.policy__content:not(:first-child) {
  margin-top: 4.1875rem;
}

.policy__content-title {
  font-size: 1.5rem;
  line-height: 1.0833333333;
  font-weight: 700;
  color: #005E3C;
  border-bottom: 1px solid #005E3C;
  padding-bottom: 0.9375rem;
  padding-left: 0.375rem;
}

.policy__content-text {
  font-weight: 400;
  line-height: 1.625;
  margin-top: 0.625rem;
  padding-left: 1.875rem;
}

.policy__list {
  list-style: disc;
  padding-left: 3.375rem;
}

.policy__item {
  font-weight: 400;
  line-height: 1.625;
}

.policy__contact-info {
  padding-left: 1.875rem;
}

.policy__company-name {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2;
  margin-top: 0.375rem;
}

.policy__address,
.policy__tel,
.policy__date,
.policy__representative {
  line-height: 2.5;
  font-weight: 400;
}

.policy__address {
  font-weight: 500;
}

.policy__tel a {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .policy {
    padding-bottom: 3.75rem;
  }
  .policy__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .policy__lead {
    margin-top: 1.875rem;
  }
  .policy__content {
    margin-top: 1.875rem;
  }
  .policy__content:not(:first-child) {
    margin-top: 1.875rem;
  }
}
.case-fv {
  background-image: url(../../images/case-fv.webp);
}

.case-fv__title {
  font-size: 1.75rem;
  line-height: 1.2857142857;
  width: 41.7647058824%;
  padding-left: 5.5rem;
}

.case-fv__text {
  font-size: 0.875rem;
  padding-left: 3rem;
}

.case {
  padding-bottom: 19.3125rem;
}

.case__head {
  display: flex;
  padding-top: 11.875rem;
  position: relative;
  width: 100%;
  max-width: 70.625rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.case__title {
  width: 28.9523809524%;
}

.case__title-en {
  font-weight: 700;
  padding-left: 3.0625rem;
  letter-spacing: -0.05em;
}

.case__title-ja {
  margin-top: 0.8125rem;
  font-size: 2rem;
  color: #353535;
}

.case__lead {
  color: #353535;
  line-height: 1.625;
  margin-top: 3.75rem;
  flex: 1;
}

.case__inner {
  position: relative;
  width: 100%;
  max-width: 67.5rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.case__grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: minmax(0, 423fr) minmax(0, 537fr);
  grid-template-rows: auto auto;
  gap: 2.5rem;
}

.case__item-01 {
  grid-area: 1/1/2/3;
}

.case__item-02 {
  grid-area: 2/1/3/2;
}

.case__item-03 {
  grid-area: 2/2/3/3;
}

@media screen and (max-width: 768px) {
  .case-fv__title {
    padding-left: 0;
    width: 100%;
  }
  .case-fv__text {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
  .case {
    padding-bottom: 3.75rem;
  }
  .case__head {
    flex-direction: column;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .case__title {
    width: 100%;
  }
  .case__lead {
    margin-top: 1.875rem;
  }
  .case__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .case__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
  .case__item {
    grid-area: auto;
  }
}
.calendar-fv {
  background-image: url(../../images/calendar-fv.webp);
}

.calendar-fv__title {
  font-size: 1.875rem;
  line-height: 1.2;
  width: 47.6470588235%;
  padding-left: 5.5625rem;
}

.calendar-fv__text {
  line-height: 1.8125;
  padding-left: 3.9375rem;
}

.calendar-fv__text-bold {
  font-weight: 700;
}

.calendar-fv__text-small {
  font-size: 0.75rem;
  line-height: 2.4166666667;
  letter-spacing: -0.03em;
}

.calendar {
  padding-bottom: 7.3125rem;
  position: relative;
  min-height: 18.75rem;
}
.calendar .notice {
  top: 50%;
}

.calendar__inner {
  width: 100%;
  max-width: 64.5625rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.calendar__item {
  margin-top: 11.3125rem;
}

@media screen and (max-width: 768px) {
  .calendar-fv__title {
    padding-left: 0;
    width: 100%;
  }
  .calendar-fv__text {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
  .calendar__head {
    flex-direction: column;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .calendar__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .calendar__item {
    margin-top: 6.25rem;
  }
}
.corporation-fv {
  background-image: url(../../images/corporation-fv.webp);
}

.corporation-fv__title {
  font-size: 1.75rem;
  line-height: 1.2857142857;
  width: 44.1176470588%;
  padding-left: 4.75rem;
}

.corporation-fv__title span {
  font-size: 1.25rem;
  line-height: 1.8;
}

.corporation-fv__text {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  padding-left: 3.125rem;
  padding-right: 3rem;
}

.corporation-fv__text-bold {
  font-weight: 700;
}

.corporation-fv__text-small {
  font-size: 0.75rem;
  line-height: 2.4166666667;
  letter-spacing: -0.03em;
}

@media screen and (max-width: 768px) {
  .corporation-fv__title {
    padding-left: 0;
    width: 100%;
  }
  .corporation-fv__text {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
}
.corporation-project {
  margin-top: 8.3125rem;
  position: relative;
}

.corporation-project__head {
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.corporation-project__title-en {
  font-weight: 600;
  letter-spacing: -0.07em;
  padding-left: 3.125rem;
}

.corporation-project__title-ja {
  color: #353535;
  font-size: 2rem;
  margin-top: 0.8125rem;
}

.corporation__splide {
  margin-top: 2.3125rem;
}
.corporation__splide .splide__slide {
  max-width: 59.375rem;
}
.corporation__splide .button {
  background-color: transparent;
  height: 3.9375rem;
  transition: 0.2s;
  width: 3.9375rem;
}
.corporation__splide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 3.9375rem;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 3.9375rem;
}
.corporation__splide .prev::before {
  background-image: url(../../images/slider-arrow-prev.webp);
}
.corporation__splide .next::before {
  background-image: url(../../images/slider-arrow-next.webp);
}
.corporation__splide .button:disabled::before {
  opacity: 0.5;
}
.corporation__splide .splide__slide img {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .corporation-project {
    margin-top: 5rem;
  }
  .corporation-project__head {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .corporation__splide {
    margin-top: 1.875rem;
  }
}
.corporation-public {
  margin-top: 5.5rem;
}

.corporation-public__inner {
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.corporation-public__title-en {
  font-weight: 700;
  letter-spacing: -0.05em;
  padding-left: 3.125rem;
}

.corporation-public__title-ja {
  color: #353535;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-top: 0.875rem;
}

.corporation-public__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 2.5rem;
  margin-top: 3.5625rem;
}

@media screen and (max-width: 768px) {
  .corporation-public {
    margin-top: 3.75rem;
  }
  .corporation-public__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .corporation-public__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}
.corporation-commerce {
  padding-bottom: 12.5625rem;
  margin-top: 15.3125rem;
}

.corporation-commerce__inner {
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.corporation-commerce__title-en {
  font-weight: 700;
  letter-spacing: -0.06em;
  padding-left: 3.125rem;
}

.corporation-commerce__title-ja {
  color: #353535;
  font-size: 2rem;
  margin-top: 0.875rem;
}

.corporation-commerce__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5625rem;
}

@media screen and (max-width: 768px) {
  .corporation-commerce {
    margin-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
  .corporation-commerce__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .corporation-commerce__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}
.house-fv {
  background-image: url(../../images/house-fv.webp);
}

.house-fv__title {
  font-size: 1.75rem;
  line-height: 1.2857142857;
  width: 44.1176470588%;
  padding-left: 5.3125rem;
}

.house-fv__title span {
  font-size: 1.25rem;
  line-height: 1.8;
}

.house-fv__text {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  padding-left: 3.125rem;
  padding-right: 3rem;
}

.house-fv__text-bold {
  font-weight: 700;
}

.house-fv__text-small {
  font-size: 0.75rem;
  line-height: 2.4166666667;
  letter-spacing: -0.03em;
}

@media screen and (max-width: 768px) {
  .house-fv__title {
    padding-left: 0;
    width: 100%;
  }
  .house-fv__text {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
}
.house-project {
  margin-top: 8.3125rem;
  position: relative;
}

.house-project__head {
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.house-project__title-en {
  font-weight: 600;
  letter-spacing: -0.07em;
  padding-left: 3.125rem;
}

.house-project__title-ja {
  color: #353535;
  font-size: 2rem;
  margin-top: 0.8125rem;
}

.house__splide {
  margin-top: 2.3125rem;
}
.house__splide .splide__slide {
  max-width: 59.375rem;
}
.house__splide .button {
  background-color: transparent;
  height: 3.9375rem;
  transition: 0.2s;
  width: 3.9375rem;
}
.house__splide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 3.9375rem;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 3.9375rem;
}
.house__splide .prev::before {
  background-image: url(../../images/slider-arrow-prev.webp);
}
.house__splide .next::before {
  background-image: url(../../images/slider-arrow-next.webp);
}
.house__splide .button:disabled::before {
  opacity: 0.5;
}
.house__splide .splide__slide img {
  height: auto;
  width: 100%;
}

.notice {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .house-project__head {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .house-project {
    margin-top: 5rem;
  }
}
.house {
  margin-top: 5.5rem;
  position: relative;
}

.house__inner {
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.house__title-en {
  font-weight: 700;
  letter-spacing: -0.05em;
  padding-left: 3.125rem;
}

.house__title-ja {
  color: #353535;
  font-size: 2rem;
  margin-top: 0.875rem;
}

.house__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5625rem;
}

@media screen and (max-width: 768px) {
  .house {
    margin-top: 3.75rem;
  }
  .house__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .house__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}
.house-link {
  margin-top: 8.875rem;
}

.house-link__inner {
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.house-link__container {
  display: flex;
  justify-content: center;
  column-gap: 4.34625rem;
  border-top: 1px solid #575757;
  padding-top: 3.6875rem;
}

.house-link__banner-wrap {
  overflow: hidden;
}

.house-link__banner-wrap--instagram {
  max-width: 37.5rem;
  width: 100%;
  height: 10.625rem;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
}

.house-link__banner-wrap--asj {
  max-width: 29.375rem;
  width: 100%;
  height: 10.625rem;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
}

.house-link__banner img {
  transition: transform 1s cubic-bezier(0.6, 0, 0, 1);
}

@media (any-hover: hover) {
  .house-link__banner-wrap:hover .house-link__banner img {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 768px) {
  .house-link {
    margin-top: 3.75rem;
  }
  .house-link__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .house-link__container {
    flex-direction: column;
    align-items: center;
    row-gap: 1.875rem;
    padding-top: 1.875rem;
  }
  .house-link__banner-wrap {
    height: auto;
  }
}
.error {
  padding-top: 7.8125rem;
  padding-bottom: 4.5rem;
  color: #353535;
}

.error__inner {
  max-width: 61.25rem;
  margin-inline: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}

.error__title-en {
  color: #575757;
  font-weight: 700;
  padding-left: 3.125rem;
  letter-spacing: -0.05em;
}

.error__title-ja {
  font-size: 2rem;
  margin-top: 1.1875rem;
}

.error__container {
  margin-top: 3.75rem;
}

.error__link {
  display: inline-block;
  margin-top: 1.875rem;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

@media screen and (max-width: 768px) {
  .error {
    padding-bottom: 3.75rem;
  }
  .error__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
.company-fv {
  background-image: url(../../images/company-fv.webp);
}

.company-fv__title {
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  width: 41.7647058824%;
  padding-left: 5.75rem;
}

.company-fv__text {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  padding-left: 4.375rem;
  padding-right: 3.75rem;
}

.company-fv__text-bold {
  font-weight: 700;
}

.company-fv__text-small {
  font-size: 0.75rem;
  line-height: 2.4166666667;
  letter-spacing: -0.03em;
}

@media screen and (max-width: 768px) {
  .company-fv__title {
    padding-left: 0;
    width: 100%;
  }
  .company-fv__text {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
}
.company-philosophy {
  width: 100%;
  padding-top: 7.9375rem;
  padding-bottom: 6.875rem;
  background-image: url(../../images/company-philosophy-bg.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}

.company-philosophy__inner {
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.company-philosophy__title-en {
  font-weight: 700;
  padding-left: 3.125rem;
  letter-spacing: -0.06em;
}

.company-philosophy__title-ja {
  font-size: 2rem;
  color: #353535;
  margin-top: 0.8125rem;
}

.company-philosophy__lead {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(245.62deg, #005E3C 13.81%, #3FC1B9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  line-height: 1.7916666667;
  margin-top: 2.625rem;
}

.company-philosophy__list {
  display: flex;
  justify-content: center;
  margin-top: 4.25rem;
  column-gap: 1rem;
}

.company-philosophy__item {
  max-width: 23.125rem;
  background-color: rgba(251, 251, 251, 0.9);
  padding-top: 2.25rem;
  padding-right: 3.125rem;
  padding-bottom: 1.5rem;
  padding-left: 3.125rem;
}

.company-philosophy__item-label {
  font-family: "Inter", sans-serif;
  font-size: 1.6875rem;
  font-weight: 800;
  line-height: 1.03125;
  background: linear-gradient(250.48deg, #83E7B4 2.89%, #40C1B9 64.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  text-transform: uppercase;
}

.company-philosophy__item-number {
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.90625;
  opacity: 0;
  width: 100%;
  display: inline-block;
  background: linear-gradient(250.48deg, #83E7B4 2.89%, #40C1B9 64.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-philosophy__item-number.is-active {
  animation: timeIn 0.8s ease-out forwards;
}

@keyframes timeIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.company-philosophy__item-line {
  width: 6.25rem;
  height: 0.0625rem;
  margin-top: 1.25rem;
  background-color: #D9D9D9;
  margin-inline: auto;
}

.company-philosophy__item-text {
  font-size: 1.25rem;
  line-height: 1.65;
  margin-top: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .company-philosophy {
    padding-top: 6.25rem;
    padding-bottom: 3.75rem;
  }
  .company-philosophy__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .company-philosophy__lead {
    margin-top: 1.875rem;
  }
  .company-philosophy__lead br {
    display: none;
  }
  .company-philosophy__list {
    margin-top: 1.875rem;
    flex-direction: column;
    row-gap: 1.25rem;
  }
  .company-philosophy__item {
    max-width: none;
    padding: 1.25rem;
  }
}
.company-profile {
  margin-top: 7.0625rem;
}

.company-profile__inner {
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.company-profile__title-en {
  padding-left: 3.125rem;
  letter-spacing: -0.02em;
}

.company-profile__title-ja {
  font-size: 2rem;
  color: #353535;
  margin-top: 0.875rem;
}

.company-profile__table {
  max-width: 62.5rem;
  margin-inline: auto;
  margin-top: 3.9375rem;
  border-top: 0.1875rem solid #005E3C;
  border-bottom: 0.1875rem solid #005E3C;
}

.company-profile__row {
  display: flex;
  column-gap: 1.5625rem;
}

.company-profile__term {
  max-width: 24.875rem;
  width: 100%;
  border-top: 1px solid #33B09E;
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
  text-align: center;
}

.company-profile__term--large {
  padding-top: 2.375rem;
  padding-bottom: 2.1875rem;
  border-top: none;
}

.company-profile__term-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #33B09E;
}

.company-profile__desc {
  flex: 1;
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
  border-top: 1px solid #D9D9D9;
  padding-left: 3.625rem;
}

.company-profile__desc--large {
  padding-top: 2.375rem;
  padding-bottom: 1.8125rem;
  border-top: none;
}

.company-profile__desc-text {
  font-size: 1.25rem;
  color: #353535;
}

.company-profile__desc-text--large {
  font-size: 1.5rem;
  font-weight: 700;
}

.company-profile__desc-text--small {
  font-size: 1rem;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .company-profile {
    margin-top: 3.75rem;
  }
  .company-profile__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .company-profile__table {
    margin-top: 1.875rem;
  }
  .company-profile__row {
    flex-direction: column;
    border-bottom: 1px solid #D9D9D9;
    row-gap: 1.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .company-profile__row:last-child {
    border-bottom: none;
  }
  .company-profile__term {
    border-top: none;
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  .company-profile__term-text {
    text-align: left;
  }
  .company-profile__desc {
    border-top: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
}
.company-initiative {
  margin-top: 6.125rem;
}

.company-initiative__head {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.company-initiative__title {
  width: 26.6666666667%;
}

.company-initiative__title-en {
  font-weight: 700;
  padding-left: 3.125rem;
  letter-spacing: -0.05em;
}

.company-initiative__title-ja {
  margin-top: 0.75rem;
  font-size: 2rem;
  color: #353535;
}

.company-initiative__lead {
  color: #353535;
  line-height: 1.625;
  margin-top: 3.75rem;
  flex: 1;
  max-width: 47.875rem;
}

.company-initiative__inner {
  position: relative;
  width: 100%;
  max-width: 61.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.company-initiative__list {
  background-color: #F5F5F5;
  padding-top: 3.0625rem;
  padding-right: 3.125rem;
  padding-left: 3.125rem;
  margin-top: 2.875rem;
}

.company-initiative__item {
  display: flex;
  padding-bottom: 1.875rem;
}

.company-initiative__item + .company-initiative__item {
  padding-top: 2.5rem;
  padding-bottom: 2.8125rem;
  border-top: 1px solid #005E3C;
}

.company-initiative__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #005E3C;
  width: 100%;
  padding-left: 2.375rem;
}

.company-initiative__sub-list {
  width: 100%;
  padding-left: 4.3125rem;
  margin-top: 0.125rem;
}

.company-initiative__sub-item {
  font-weight: 700;
  line-height: 2;
}

.company-initiative__footer-text {
  font-weight: 600;
  margin-top: 1.4375rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .company-initiative {
    margin-top: 3.75rem;
  }
  .company-initiative__head {
    flex-direction: column;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .company-initiative__title {
    width: 100%;
  }
  .company-initiative__lead {
    margin-top: 1.875rem;
  }
  .company-initiative__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .company-initiative__list {
    padding-top: 1.875rem;
    padding-right: 1.875rem;
    padding-bottom: 0.625rem;
    padding-left: 1.875rem;
    margin-top: 1.875rem;
  }
  .company-initiative__item {
    flex-direction: column;
    padding-bottom: 1.25rem;
    row-gap: 1.25rem;
  }
  .company-initiative__item + .company-initiative__item {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .company-initiative__item-title {
    padding-left: 0;
  }
  .company-initiative__sub-list {
    padding-left: 0;
  }
}
.company-access {
  padding-top: 7.625rem;
  margin-bottom: 1.6875rem;
}

.company-access__inner {
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.company-access__head {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
}

.company-access__title {
  width: 24%;
}

.company-access__title-en {
  font-weight: 700;
  padding-left: 3.125rem;
  letter-spacing: -0.08em;
}

.company-access__title-ja {
  margin-top: 0.875rem;
  font-size: 2rem;
  color: #353535;
}

.company-access__lead {
  color: #000;
  margin-top: 3.375rem;
  flex: 1;
}

.company-access__map-wrap {
  max-width: 71.25rem;
  width: 100%;
  margin-top: 2.5625rem;
}

.company-access__map-wrap iframe {
  width: 100%;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .company-access {
    padding-top: 6.25rem;
  }
  .company-access__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .company-access__head {
    flex-direction: column;
  }
  .company-access__title {
    width: 100%;
  }
  .company-access__lead {
    margin-top: 1.875rem;
  }
  .company-access__map-wrap {
    margin-top: 1.875rem;
  }
}
.contact-fv {
  background-image: url(../../images/calendar-fv.webp);
}

.contact-fv__title {
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  width: 45.2941176471%;
  padding-left: 5.5625rem;
}

.contact-fv__text {
  font-size: 0.875rem;
  line-height: 2.0714285714;
  letter-spacing: -0.03em;
  padding-right: 1.875rem;
  padding-left: 3.625rem;
}

.contact-tel__inner {
  position: relative;
  width: 100%;
  max-width: 58.125rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.contact-tel__container {
  display: flex;
  align-items: center;
  column-gap: 2.15625rem;
  margin-inline: auto;
  border: 1px solid #005E3C;
  padding-top: 3.0625rem;
  padding-right: 1.25rem;
  padding-bottom: 2.0625rem;
  padding-left: 3.6875rem;
  margin-top: 9.4375rem;
  border-radius: 3px;
}

.contact-tel__content-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 15.27375rem;
  width: 100%;
}

.contact-tel__text {
  font-size: 1.25rem;
  color: #353535;
}

.contact-tel__btn-wrap {
  width: 100%;
  margin-top: 0.125rem;
}

.contact-tel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 15.27375rem;
  height: 3.02875rem;
  font-size: 0.875rem;
  font-weight: 700;
  position: relative;
  background-color: #FBFBFB;
  border-radius: 3px;
  transition: 0.3s;
  border: 1px solid #33B09E;
  color: #33B09E;
  font-size: 0.875rem;
  box-shadow: 2px 2px 0px #33B09E;
  padding-left: 2.1875rem;
  margin-inline: auto;
}

.contact-tel__btn::before {
  content: "";
  background-image: url(../../images/logo-calendar-green.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 2.875rem;
  transform: translateY(-50%);
  width: 1.221875rem;
  height: 1.28rem;
}

@media (any-hover: hover) {
  .contact-tel__btn:hover {
    opacity: 0.6;
  }
}
.contact-tel__number {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 4rem;
  color: #353535;
  letter-spacing: -0.06em;
}

@media screen and (max-width: 768px) {
  .contact-fv__title {
    padding-left: 0;
    width: 100%;
  }
  .contact-fv__text {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
  .contact-tel__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .contact-tel__container {
    flex-direction: column;
    row-gap: 1.25rem;
    padding: 1.25rem;
    margin-top: 6.25rem;
  }
  .contact-tel__number {
    font-size: 2.25rem;
  }
}
.contact {
  margin-top: 3.5625rem;
  margin-bottom: 11.125rem;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-top: 1.875rem;
    margin-bottom: 3.75rem;
  }
}

.contact__inner {
  width: 100%;
  max-width: 69.375rem;
  margin-inline: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.contact__lead {
  font-size: 0.8125rem;
  line-height: 1.3;
  color: #353535;
  padding-left: 3.6875rem;
}
@media screen and (max-width: 768px) {
  .contact__lead {
    padding-left: 0;
  }
}

.contact__lead span {
  font-size: 0.8125rem;
  color: #FF543E;
}

.contact__required {
  width: 0.875rem;
  height: auto;
  margin-top: -1.375rem;
}

.p-form {
  margin-top: 0.4375rem;
}

label {
  font-size: 1.5rem;
  font-weight: 400;
  color: #353535;
}

@media screen and (max-width: 768px) {
  label br {
    display: none;
  }
}

.p-form__item {
  display: flex;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  column-gap: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-form__item {
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
    align-items: flex-start;
  }
}

.p-form__item:first-of-type {
  padding-left: 3.625rem;
}
@media screen and (max-width: 768px) {
  .p-form__item:first-of-type {
    padding-left: 0;
  }
}

.p-form__item--name {
  margin-top: 3.375rem;
  padding-left: 3.75rem;
  column-gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-form__item--name {
    padding-left: 0;
    margin-top: 0;
  }
}

.p-form__item--type02 {
  margin-top: 2.375rem;
  column-gap: 1.9375rem;
}
@media screen and (max-width: 768px) {
  .p-form__item--type02 {
    padding-left: 0;
    margin-top: 0;
  }
}

.p-form__item--kana {
  padding-left: 3.625rem;
}
@media screen and (max-width: 768px) {
  .p-form__item--kana {
    padding-left: 0;
  }
}

.p-form__item--tel {
  padding-left: 3.3125rem;
}
@media screen and (max-width: 768px) {
  .p-form__item--tel {
    padding-left: 0;
  }
}

.p-form__item--email {
  padding-left: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-form__item--email {
    padding-left: 0;
  }
}

.p-form__item--contact {
  padding-left: 1.75rem;
  column-gap: 2.25rem;
}
@media screen and (max-width: 768px) {
  .p-form__item--contact {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-form__title {
    width: 100%;
  }
}
.p-form__title span {
  display: inline-block;
  padding: 5px;
  color: #fff;
  font-size: 12px;
  background-color: #d00000;
}

.p-form__title--type03 {
  flex-direction: column;
}

.p-form__title--aiStart {
  display: flex;
  align-items: flex-start;
  text-align: right;
}

.p-form__title--name {
  padding-left: 2.625rem;
}
@media screen and (max-width: 768px) {
  .p-form__title--name {
    padding-left: 0;
  }
}

.p-form__title--kana {
  padding-left: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-form__title--kana {
    padding-left: 0;
  }
}

.p-form__input {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-form__input {
    width: 100%;
    margin-top: 0.625rem;
  }
}

.p-formInput input::placeholder,
.p-formTextarea textarea::placeholder {
  color: lightgray;
  font-size: 16px;
}

.p-formInput input {
  width: 81.7%;
  height: 6.25rem;
  padding-left: 20px;
  border: 1px solid #005E3C;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .p-formInput input {
    width: 100%;
    height: 50px;
    margin-left: 0;
    padding-left: 15px;
  }
}

.p-formInput input:focus,
.p-formTextarea textarea:focus {
  outline: 2px solid #b5b5b5;
}

.p-formInput__post {
  display: flex;
  gap: 10px;
  align-items: center;
}

.p-formInput__post input {
  width: 320px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-formInput__post input {
    width: 100%;
  }
}

.p-formInput__address {
  margin-top: 10px;
}

.p-formInput__address input {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .p-formInput__address input {
    width: 100%;
  }
}

.p-formInput--tel {
  display: flex;
  gap: 5px;
  align-items: center;
}

.p-formInput--tel > * {
  min-width: 0;
}

.p-formInput--tel input {
  width: 150px;
  max-width: 100%;
}

.p-formSelect select {
  width: 250px;
  max-width: 100%;
  height: 60px;
  padding-left: 20px;
  border: 1px solid #b5b5b5;
  border-radius: 0;
  color: lightgray;
  font-size: 16px;
  background: url(../images/common/pulldown.svg) right 10px center/10px no-repeat;
  appearance: none;
}
@media screen and (max-width: 768px) {
  .p-formSelect select {
    width: 100%;
    height: 50px;
  }
}

.p-formSelect select:focus {
  outline: 2px solid #b5b5b5;
}

.p-formSelect--selected select {
  color: #333;
}

.p-formDate__flex {
  display: flex;
  gap: 35px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-formDate__flex {
    gap: 20px;
    align-items: flex-start;
  }
}

.p-formDate__flex + .p-formDate__flex {
  margin-top: 20px;
}

.p-formDate__label {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .p-form__dataBlock {
    flex: 1;
  }
}

.p-form__dataBlockFlex {
  display: flex;
  align-items: center;
}
.p-form__dataBlockFlex + .p-form__dataBlockFlex {
  margin-top: 20px;
}

.p-form__dataBlockLabel {
  width: 80px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-form__dataBlockLabel {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .p-form__dataBlockDate {
    width: 100%;
  }
}

.p-formCalendar {
  position: relative;
}

.p-formCalendar input {
  width: 250px;
  height: 60px;
  padding-left: 20px;
  padding-right: 5px;
  border: 1px solid #b5b5b5;
  border-radius: 0;
  color: lightgray;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  position: relative;
  background: url(../images/common/calendar.svg) right 8px center/15px no-repeat;
}
@media screen and (max-width: 768px) {
  .p-formCalendar input {
    width: 100%;
    height: 50px;
  }
}

.p-formCalendar input::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  background: transparent;
  z-index: 1;
}

@-moz-document url-prefix() {
  .p-formCalendar input {
    background: none;
  }
  .p-formCalendar::after {
    position: absolute;
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="M13.5 2H13V1c0-.6-.4-1-1-1s-1 .4-1 1v1H5V1c0-.6-.4-1-1-1S3 .4 3 1v1h-.5C1.1 2 0 3.1 0 4.5v9C0 14.9 1.1 16 2.5 16h11c1.4 0 2.5-1.1 2.5-2.5v-9C16 3.1 14.9 2 13.5 2zm0 12.5h-11c-.6 0-1-.4-1-1V6h13v7.5c0 .6-.4 1-1 1z"></path></svg>') no-repeat center center/contain;
    top: 50%;
    right: 10px;
    transform: translateY(-55%);
    pointer-events: none;
  }
}
.p-formCalendar input::-webkit-date-and-time-value {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .Android .p-formCalendar input {
    padding-left: 15px;
  }
}

.p-formCalendar input:focus {
  outline: 2px solid #b5b5b5;
}

@media screen and (max-width: 768px) {
  .p-form__dataBlockSelect {
    width: 100%;
  }
}

.p-form__dataBlockDate input:not(.p-formDate__default) {
  color: #333;
}

.p-formNumber__txt {
  font-size: 16px;
}

.p-formNumber__flex {
  display: flex;
  margin-top: 20px;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-formNumber__flex {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

.p-formNumber__block {
  display: flex;
  align-items: center;
}

.p-formNumber__blockLabel01 {
  margin-right: 30px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-formNumber__blockLabel01 {
    width: 55px;
  }
}

.p-formNumber__blockLabel01 {
  font-size: 16px;
}

.p-formNumber__blockInput {
  width: 150px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-formNumber__blockInput {
    flex: 1;
    margin-right: 20px;
  }
}

.p-formCheckbox {
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .p-formCheckbox {
    padding-left: 0;
  }
}

.p-formCheckbox input {
  display: none;
}

.p-formCheckbox .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.p-formCheckbox .wpcf7-list-item {
  margin-left: 0;
}

.p-formCheckbox--vertical .wpcf7-checkbox {
  display: block;
}

.p-formCheckbox--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}

.p-formCheckbox--vertical .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 20px;
}

.p-formCheckbox input + span {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0 0 0 32px;
  font-size: 16px;
  cursor: pointer;
}

.p-formCheckbox input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #005E3C;
  border-radius: 4px;
  background-color: #fff;
  transform: translateY(-50%);
}

.p-formCheckbox input + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5rem;
  display: block;
  width: 8px;
  height: 13px;
  margin-top: -8px;
  border-right: 3px solid #005E3C;
  border-bottom: 3px solid #005E3C;
  opacity: 0;
  transform: rotate(45deg);
}

.p-formCheckbox input:checked + span::after {
  opacity: 1;
}

.p-formRadio .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.p-formRadio--vertical .wpcf7-radio {
  display: block;
}

.p-formRadio .wpcf7-list-item {
  margin: 0;
}

.p-formRadio--vertical .wpcf7-list-item {
  display: block;
  margin: 0;
}

.p-formRadio--vertical .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 20px;
}

.p-formRadio input + span {
  display: flex;
  font-size: 16px;
  cursor: pointer;
}

.p-formRadio input[type=radio] {
  display: none;
}

.p-formRadio input + span::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: auto;
  margin-right: 0.5em;
  margin-bottom: auto;
  border: 1px solid #b5b5b5;
  border-radius: 100%;
  background: #fff;
  transition: background-color 0.5s;
}

.p-formRadio input:checked + span::before {
  background-color: blue;
  box-shadow: inset 0 0 0 3px #fff;
}

.p-formFile .wpcf7-form-control-wrap {
  display: block;
}

.p-formFile .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 20px;
}

.p-formFile input {
  max-width: 100%;
  font-size: 16px;
  line-height: 1;
}

.p-formTextarea textarea {
  width: 81.7%;
  min-height: 18.75rem;
  padding-top: 10px;
  padding-left: 20px;
  border: 1px solid #005E3C;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .p-formTextarea textarea {
    width: 100%;
    min-height: 300px;
    margin-left: 0;
    padding-left: 15px;
  }
}

.p-form__privacy {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-form__privacy {
    text-align: left;
  }
}

.p-form__privacy a {
  line-height: 1;
  text-decoration: underline;
}

.p-form__acceptance {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-form__acceptance {
    text-align: left;
  }
}

.p-form__submit {
  margin-top: 1.6875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-form__submit {
    margin-top: 30px;
  }
}

.p-formBtn input {
  max-width: 28.125rem;
  width: 100%;
  padding-top: 1.6875rem;
  padding-bottom: 1.6875rem;
  border: none;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  border-radius: 3px;
  background: linear-gradient(245.62deg, #005E3C 13.81%, #3FC1B9 100%);
  cursor: pointer;
  transition: opacity 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
.p-formBtn input:disabled {
  color: #fff;
  background-color: #eee;
  border-color: #eee;
}
@media screen and (min-width: 768px) {
  .p-formBtn input:disabled:hover {
    cursor: not-allowed;
  }
}
@media screen and (min-width: 768px) {
  .p-formBtn input:hover {
    opacity: 0.7;
    transition: opacity 0.5s;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 15px 10px;
  border-color: #2c94de;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .wpcf7 form.sent .wpcf7-response-output {
    font-size: 16px;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  padding: 15px 10px;
  border-color: red;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output,
  .wpcf7 form.payment-required .wpcf7-response-output {
    font-size: 16px;
  }
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  color: red;
  font-size: 16px;
  font-weight: normal;
}

.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
  display: none;
}

.p-formValidation .wpcf7-not-valid-tip {
  display: none;
}

.p-formValidation__error {
  display: none;
  margin-top: 10px;
  color: red;
  font-size: 16px;
  font-weight: normal;
}

.wpcf7-form:not(.hide_error_message) .p-formValidation:has(.wpcf7-not-valid-tip) .p-formValidation__error {
  display: block;
}

.about-fv {
  background-image: url(../../images/about-fv.webp);
}

.about-fv__title {
  font-size: 2rem;
  line-height: 1.40625;
  width: 50%;
  padding-left: 7.8125rem;
}

.about-fv__text {
  line-height: 1.9375;
  padding-left: 2.3125rem;
}

@media screen and (max-width: 768px) {
  .about-fv__title {
    padding-left: 0;
    width: 100%;
  }
  .about-fv__text {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
}
.about-message {
  margin-top: 8.4375rem;
}

.about-message__inner {
  max-width: 77.5rem;
  width: 100%;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  background-image: url(../../images/about-message-bg.webp);
  background-size: 58.625rem;
  background-position: bottom 0 right 50px;
}

.about-message-title {
  margin-left: 0.625rem;
}

.about-message-title-en {
  padding-left: 2.625rem;
  letter-spacing: -0.024em;
}

.about-message-title-ja {
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-top: 0.875rem;
}

.about-message__body {
  display: flex;
  column-gap: 4.4375rem;
  margin-top: 2.4375rem;
  margin-left: 0.6875rem;
}

.about-message__left {
  width: 25.125rem;
}

.about-message__profile {
  margin-top: 1.125rem;
  margin-left: 1.5625rem;
}

.about-message__company {
  font-size: 0.8125rem;
  font-weight: 400;
}

.about-message__name {
  font-size: 0.6875rem;
  font-weight: 400;
  margin-top: 0.3125rem;
  display: flex;
  column-gap: 0.625rem;
  align-items: center;
}

.about-message__name span {
  font-size: 1rem;
  font-weight: 400;
}

.about-message__right {
  margin-top: 0.9375rem;
  flex: 1;
  padding-bottom: 3.3125rem;
}

.about-message__right-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.about-message__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2.2142857143;
  padding-right: 3.875rem;
  margin-top: 1.6875rem;
}

.about-message__strong {
  font-size: 0.875rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .about-message {
    margin-top: 5rem;
  }
  .about-message__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    background-size: cover;
    background-position: center;
  }
  .about-message-title {
    margin-left: 0;
  }
  .about-message__body {
    flex-direction: column;
    row-gap: 1.875rem;
    margin-top: 1.875rem;
    margin-left: 0;
    width: 100%;
  }
  .about-message__left {
    width: 100%;
  }
  .about-message__profile {
    margin-top: 1.25rem;
    margin-left: 0;
  }
  .about-message__right {
    margin-top: 0;
  }
  .about-message__text {
    margin-top: 1.25rem;
    padding-right: 0;
  }
}
.about-strengths {
  margin-top: 11.0625rem;
}

.about-strengths__inner {
  position: relative;
  width: 100%;
  max-width: 78.75rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-inline: auto;
}

.about-strengths__title {
  padding-left: 1.25rem;
}

.about-strengths__title-en {
  font-size: 0.875rem;
  font-weight: 400;
  padding-left: 3.375rem;
  letter-spacing: -0.03em;
}

.about-strengths__title-ja {
  font-size: 2rem;
  margin-top: 0.9375rem;
}

.about-strengths__list {
  display: flex;
  column-gap: 1.1875rem;
  margin-top: 3.8125rem;
}

.about-strengths__item {
  width: 33.3333333333%;
}

.about-strengths__img {
  position: relative;
}

.about-strengths__number-wrap {
  height: 8.6875rem;
  text-align: center;
  margin-top: -5.25rem;
  opacity: 0;
}

.about-strengths__number-wrap.is-active {
  animation: timeIn 0.8s ease-out forwards;
}

@keyframes timeIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-strengths__number {
  font-size: 8.6875rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  opacity: 0.2;
  background: linear-gradient(180deg, #575757 0%, #BDBDBD 79.81%, #E9E9E9 99.04%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-strengths__item-body {
  margin-top: 4.125rem;
  padding-left: 0.625rem;
}

.about-strengths__item-title {
  font-size: 2rem;
  line-height: 1.40625;
  font-weight: 500;
}

.about-strengths__item-text {
  margin-top: 0.9375rem;
  line-height: 2.1875;
  margin-top: 3.0625rem;
  padding-right: 1.1875rem;
}

@media screen and (max-width: 768px) {
  .about-strengths {
    margin-top: 3.75rem;
  }
  .about-strengths__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .about-strengths__list {
    margin-top: 1.875rem;
    flex-direction: column;
    row-gap: 1.875rem;
  }
  .about-strengths__item {
    width: 100%;
  }
  .about-strengths__title {
    padding-left: 0;
  }
  .about-strengths__item-body {
    margin-top: 2.5rem;
    padding-left: 0;
  }
  .about-strengths__item-text {
    margin-top: 1.25rem;
    padding-right: 0;
  }
}
.about-history {
  margin-top: 4.75rem;
  margin-bottom: 12.5rem;
}

.about-history__inner {
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.about-history__title-en {
  font-size: 0.875rem;
  padding-left: 3.875rem;
  letter-spacing: -0.03em;
}

.about-history__title-ja {
  font-size: 2rem;
  margin-top: 0.9375rem;
}

.about-history__timeline {
  margin-top: 9.0625rem;
}

.about-history__item {
  display: flex;
  position: relative;
}

.about-history__item + .about-history__item {
  margin-top: 6.6rem;
}

.about-history__year {
  font-family: "Inter", sans-serif;
  width: 7.0175438596%;
  font-size: 2.25rem;
  color: #353535;
  line-height: 1.25;
}

.about-history__axis {
  width: 7.5%;
  display: flex;
  justify-content: center;
  position: relative;
}

.about-history__axis::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 50%;
  width: 1px;
  height: calc(100% + 6.25rem);
  background-color: #005E3C;
}

.about-history__item:last-child .about-history__axis::before {
  height: 100%;
}

.about-history__dot {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #005E3C;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-top: 0.875rem;
}
.about-history__dot.is-active {
  background-color: #FF543E;
}

.about-history__dot-01 {
  background-color: #FF543E;
}

.about-history__dot-02 {
  background-color: #FF543E;
}

.about-history__dot-03 {
  background-color: #FF543E;
}

.about-history__dot-04 {
  background-color: #FF543E;
}

.about-history__dot-05 {
  background-color: #FF543E;
}

.about-history__dot-06 {
  background-color: #FF543E;
}

.about-history__content {
  flex: 1;
  margin-left: 2.1875rem;
}

.about-history__content-head {
  display: flex;
  align-items: center;
}

.about-history__term {
  font-size: 2.25rem;
  font-weight: 700;
  color: #33B09E;
  line-height: 1.25;
  width: 19.2758253461%;
}

.about-history__separator {
  flex: 1;
  height: 1px;
  background-color: #33B09E;
  margin-left: 5.75rem;
  position: relative;
}

.about-history__separator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #33B09E;
  border-radius: 50%;
  margin-top: -0.5625rem;
  margin-left: -0.5625rem;
}

.about-history__body {
  display: flex;
  column-gap: 2.5rem;
  margin-top: 0.875rem;
  margin-left: 20rem;
}

.about-history__text {
  font-size: 1.25rem;
  color: #353535;
  line-height: 2.25;
}

.about-history__img {
  flex: 1;
}

.about-history__img-01 {
  max-width: 20.1875rem;
}

.about-history__img-02 {
  max-width: 11.6875rem;
}

.about-history__img-03,
.about-history__img-04 {
  max-width: 19.4375rem;
}

@media screen and (max-width: 768px) {
  .about-history {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
  .about-history__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .about-history__timeline {
    margin-top: 1.875rem;
  }
  .about-history__item + .about-history__item {
    margin-top: 1.875rem;
  }
  .about-history__year {
    font-size: 1.2rem;
    width: clamp(2.875rem, 2.159rem + 3.053vw, 3.625rem);
  }
  .about-history__dot {
    margin-top: 0.3125rem;
    width: 1rem;
    height: 1rem;
  }
  .about-history__content {
    margin-left: 0.625rem;
  }
  .about-history__term {
    width: clamp(5.625rem, 4.432rem + 5.089vw, 6.875rem);
    font-size: 1.2rem;
  }
  .about-history__separator {
    margin-left: 0;
  }
  .about-history__separator::before {
    display: none;
  }
  .about-history__body {
    margin-left: 0;
    flex-direction: column;
    row-gap: 1.25rem;
    margin-top: 1.25rem;
  }
  .about-history__text {
    font-size: 1rem;
  }
}
.interview-fv {
  position: relative;
  color: #fff;
  background-size: cover;
  aspect-ratio: 1440/660;
}

.interview-fv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.interview-fv-content {
  position: absolute;
  bottom: 34%;
  left: 2.5rem;
}

.interview-fv__lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3125;
}

.interview-fv__name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 1.3125rem;
}

.interview-fv__info {
  margin-top: 2.8125rem;
}

.interview-fv__position,
.interview-fv__career {
  font-weight: 700;
  line-height: 2.625;
}

.interview-fv__title-en {
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  font-size: clamp(1.875rem, -0.021rem + 8.09vw, 13.125rem);
  letter-spacing: 0.05em;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.interview-fv__title-en.is-active {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.interview-fv__title-en br {
  display: none;
}

@media screen and (max-width: 768px) {
  .interview-fv {
    aspect-ratio: 500/600;
    background-position: right;
  }
  .interview-fv__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .interview-fv-content {
    left: 1.25rem;
  }
  .interview-fv__lead {
    font-size: clamp(1.5rem, 1.022rem + 2.041vw, 2rem);
  }
  .interview-fv__name {
    margin-top: 1.25rem;
  }
  .interview-fv__info {
    margin-top: 1.25rem;
  }
  .interview-fv__title-en {
    bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .interview-fv__title-en {
    font-size: clamp(3.563rem, -0.947rem + 18.357vw, 5.938rem);
    line-height: 1;
    bottom: 1.8125rem;
  }
  .interview-fv__title-en br {
    display: block;
  }
}
.interview-detail__inner {
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  margin-top: 5.4375rem;
}

.interview-detail__content {
  display: flex;
  column-gap: 2.5rem;
}

.interview-detail__content + .interview-detail__content {
  margin-top: 4.1875rem;
}

.interview-detail__content--reverse {
  flex-direction: row-reverse;
}

.interview-detail__img {
  flex: 1;
  max-width: 24.25rem;
}

.interview-detail__img img {
  object-fit: cover;
}

.interview-detail__text-wrap {
  width: 60.1754385965%;
  margin-top: 2.875rem;
}

.interview-detail__question-wrap + .interview-detail__question-wrap {
  margin-top: 2.5625rem;
}

.interview-detail__question {
  color: #005E3C;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.875;
  border-bottom: 1px dashed #005E3C;
  padding-bottom: 0.8125rem;
}

.interview-detail__answer {
  line-height: 2.8125;
  color: #353535;
  margin-top: 0.4375rem;
}

@media screen and (max-width: 768px) {
  .interview-detail__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    margin-top: 3.75rem;
  }
  .interview-detail__content {
    flex-direction: column;
  }
  .interview-detail__content + .interview-detail__content {
    margin-top: 1.875rem;
  }
  .interview-detail__img {
    max-width: none;
  }
  .interview-detail__text-wrap {
    margin-top: 1.875rem;
    width: 100%;
  }
  .interview-detail__question-wrap + .interview-detail__question-wrap {
    margin-top: 1.875rem;
  }
}
.interview-team {
  padding-top: 7rem;
  background: radial-gradient(44.43% 92.94% at 85.35% -48.64%, #E7FEFB 26.78%, #FFFFFF 75.26%);
  z-index: 100;
  position: relative;
}

.interview-team__inner {
  position: relative;
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
}

.interview-team-title {
  padding-left: 9.5rem;
}

.interview-team-title-en {
  font-weight: 700;
  padding-left: 3.5rem;
  letter-spacing: -0.07em;
}

.interview-team-title-ja {
  font-size: 2rem;
  color: #353535;
  margin-top: 0.5625rem;
}

.interview-team__number {
  position: absolute;
  top: clamp(-2.375rem, 11.875rem - 15.8333vw, 0rem);
  left: clamp(-3.5rem, 17.5rem - 23.3333vw, 0rem);
  z-index: 100;
  font-family: "Inter", sans-serif;
  font-size: clamp(6.25rem, -6.25rem + 16.667vw, 8.75rem);
  font-weight: 700;
  opacity: 0.59;
  background: linear-gradient(250.48deg, #83E7B4 2.89%, #40C1B9 64.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.interview-team__content {
  position: absolute;
  bottom: clamp(-1.5625rem, 7.8125rem - 10.4167vw, 0rem);
  right: clamp(-1.625rem, 8.125rem - 10.8333vw, 0rem);
  z-index: 2;
  background-color: #F5F5F5;
  max-width: 12.5rem;
  width: 100%;
  border-radius: 3px;
  padding-top: 0.625rem;
  padding-right: 0.625rem;
  padding-bottom: 1.6875rem;
}

.interview-team__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #005E3C;
  line-height: 1.3333333333;
  padding-left: 1.6875rem;
}

.interview-team__meta {
  margin-top: 0.5rem;
}

.interview-team__meta-year {
  font-weight: 700;
  color: #fff;
  background-color: #33B09E;
  line-height: 1;
  padding-top: 0.0625rem;
  padding-bottom: 0.3125rem;
  padding-left: 1.6875rem;
  width: 82.5%;
}

.interview-team__meta-job {
  font-size: 1.25rem;
  font-weight: 700;
  color: #005E3C;
  line-height: 1.5;
  padding-left: 1.6875rem;
  margin-top: 0.0625rem;
}

.interview-team__meta-job--small {
  font-size: 1rem;
  line-height: 1.375;
}

.interview__splide {
  position: relative;
  padding-top: 5.875rem;
  padding-bottom: 8.125rem;
  padding-left: clamp(0rem, -60.625rem + 80.833vw, 12.125rem);
  overflow: hidden;
}
.interview__splide .splide__track {
  overflow: visible;
}
.interview__splide .splide__slide {
  max-width: 21.875rem;
  width: clamp(12.5rem, 1.786rem + 22.321vw, 21.875rem);
  opacity: 0;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.interview__splide .splide__slide.is-active,
.interview__splide .splide__slide.is-prev,
.interview__splide .splide__slide.is-next {
  opacity: 1;
}
.interview__splide .splide__slide.is-active {
  transform: translateY(3.125rem);
  z-index: 1;
}
.interview__splide .splide__slide img {
  height: auto;
  width: 100%;
  display: block;
  margin-inline: auto;
}
.interview__splide .button {
  background-color: transparent;
  height: 3.9375rem;
  transition: 0.2s;
  width: 3.9375rem;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  z-index: 2;
}
.interview__splide .prev {
  left: 5.25rem;
}
.interview__splide .next {
  right: 5.25rem;
}
.interview__splide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 3.9375rem;
  width: 3.9375rem;
  display: block;
}
.interview__splide .prev::before {
  background-image: url(../../images/slider-arrow-prev.webp);
}
.interview__splide .next::before {
  background-image: url(../../images/slider-arrow-next.webp);
}
.interview__splide .button:disabled::before {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .interview-team {
    padding-top: 3.75rem;
  }
  .interview-team__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .interview-team-title {
    padding-left: 1.375rem;
  }
  .interview-team-title-ja {
    margin-top: 0.3125rem;
  }
  .splide__slide {
    width: 100%;
  }
  .splide__slide-img {
    height: 100%;
  }
  .interview-team__number {
    top: -2.8125rem;
    left: -1.5625rem;
    font-size: clamp(5.625rem, 2.643rem + 12.723vw, 8.75rem);
  }
  .interview-team__content {
    bottom: -1.875rem;
    right: -2.875rem;
    max-width: 9.6875rem;
    padding-bottom: 0.625rem;
    min-height: 5.9375rem;
  }
  .interview-team__name,
  .interview-team__meta-job {
    font-size: 1rem;
  }
  .interview-team__name {
    padding-left: 1.25rem;
  }
  .interview-team__meta {
    margin-top: 0.3125rem;
  }
  .interview-team__meta-year {
    font-size: 0.9375rem;
    padding-top: 0.0625rem;
    padding-bottom: 0.25rem;
    padding-left: 1.25rem;
    width: 89%;
  }
  .interview-team__meta-job {
    padding-left: 1.25rem;
    margin-top: 0.125rem;
  }
  .interview__splide {
    padding-top: 5.625rem;
    padding-left: 0;
    padding-bottom: 5.625rem;
  }
  .interview__splide .splide__track {
    overflow: visible;
  }
  .interview__splide .splide__slide {
    max-width: none;
    width: 100%;
    opacity: 0;
    transform: translateY(0);
  }
  .interview__splide .splide__slide.is-prev,
  .interview__splide .splide__slide.is-next {
    opacity: 0;
  }
  .interview__splide .splide__slide.is-active {
    transform: translateY(0);
  }
  .interview__splide .splide__slide img {
    height: 100%;
  }
}
.interview-entry {
  position: relative;
  padding-top: 8.5rem;
  padding-bottom: 2.625rem;
  background-color: #fff;
  z-index: 100;
  position: relative;
}

.interview-entry::after {
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(241, 255, 253, 0.5) 8.65%, rgba(195, 254, 245, 0.5) 40.87%, rgba(199, 254, 246, 0.5) 67.31%, rgba(255, 255, 255, 0.5) 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  width: 100%;
  height: 31.25rem;
}

.interview-entry__loop {
  z-index: 100;
  position: relative;
}
.interview-entry__loop .loop {
  position: relative;
  height: 11.4375rem;
  padding-top: 0.625rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.interview-entry__loop .loop__list {
  display: flex;
  width: max-content;
  animation: loopText 60s linear infinite;
}
@keyframes loopText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.interview-entry__loop .loop__item {
  flex-shrink: 0;
  font-family: "Jost", sans-serif;
  font-size: 13.75rem;
  font-weight: 300;
  list-style: none;
  background: linear-gradient(90deg, #C5C3C3 0%, #F1F1F1 51.92%, #D9D9D9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.interview-entry__inner {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.interview-entry__link-wrap {
  width: 100%;
  max-width: 48.61125rem;
  margin-inline: auto;
  margin-top: -4rem;
}

.interview-entry__link {
  width: 100%;
  height: inherit;
  line-height: 1;
  display: inline-block;
  position: relative;
  background: linear-gradient(250.48deg, #83E7B4 2.89%, #40C1B9 64.99%);
  padding-top: 2.375rem;
  padding-right: 5.5rem;
  padding-bottom: 3.125rem;
  padding-left: 4.875rem;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.interview-entry__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(70.48deg, #83E7B4 2.89%, #40C1B9 64.99%);
}

@media (any-hover: hover) {
  .interview-entry__link:hover::before {
    opacity: 1;
  }
}
.interview-entry__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.interview-entry__desc {
  font-family: "Inter", sans-serif;
  color: #fff;
}

.interview-entry__title {
  font-size: 3.875rem;
  font-family: "Inter", sans-serif;
  color: #fff;
  margin-top: 1.125rem;
}

.interview-entry__arrow {
  width: 3.375rem;
  height: 3.375rem;
  transition: transform 0.3s ease;
  margin-top: 1.25rem;
}

@media (any-hover: hover) {
  .interview-entry__link:hover .interview-entry__arrow {
    transform: translateX(10px);
  }
}
@media screen and (max-width: 768px) {
  .interview-entry {
    margin-top: 1.5rem;
    padding-top: 0;
  }
  .interview-entry__loop .loop {
    display: none;
  }
  .interview-entry__inner {
    padding-right: 0;
    padding-left: 0;
  }
  .interview-entry__link-wrap {
    width: 64.84375%;
    height: auto;
    margin-top: -1.25rem;
  }
  .interview-entry__link {
    padding-top: 1.375rem;
    padding-right: 2.3125rem;
    padding-bottom: 2.125rem;
    padding-left: 2.875rem;
  }
  .interview-entry__desc {
    font-size: 0.8125rem;
    line-height: 1.3846153846;
  }
  .interview-entry__title {
    font-size: 2rem;
    margin-top: 0.375rem;
  }
  .interview-entry__arrow {
    margin-top: 0.625rem;
    width: 2.545625rem;
    height: 2.545625rem;
  }
}
@media screen and (max-width: 600px) {
  .interview-entry__link-wrap {
    width: 100%;
    max-width: 21.875rem;
  }
  .interview-entry__link {
    padding-top: 1.375rem;
    padding-right: 2.3125rem;
    padding-bottom: 2.125rem;
    padding-left: 2.875rem;
  }
}
.recruit-fv {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  aspect-ratio: 1440/660;
  z-index: 1;
  color: #fff;
  background-image: url(../../images/recruit-fv.webp);
  background-size: cover;
  background-position: center;
}
.recruit-fv.is-hidden-text .recruit-fv__title-en.is-active,
.recruit-fv.is-hidden-text .recruit-fv__lead.is-active {
  opacity: 0 !important;
  transition: opacity 0.3s ease-out;
}

.recruit-fv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 90rem;
  margin-inline: auto;
}

.recruit-fv-content {
  position: absolute;
  bottom: 22.8%;
  left: 2.75rem;
}

.recruit-fv__lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3125;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.recruit-fv__lead.is-active {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.recruit-fv__name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 1.3125rem;
}

.recruit-fv__info {
  margin-top: 2.8125rem;
}

.recruit-fv__position,
.recruit-fv__career {
  font-weight: 700;
  line-height: 2.625;
}

.recruit-fv__title-en {
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  font-size: clamp(1.875rem, -0.021rem + 8.09vw, 13.125rem);
  letter-spacing: 0.05em;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.recruit-fv__title-en.is-active {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.recruit-fv__title-en br {
  display: none;
}

@media screen and (max-width: 768px) {
  .recruit-fv {
    position: relative;
    aspect-ratio: auto;
    height: 41.25rem;
  }
  .recruit-fv__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .recruit-fv-content {
    bottom: 12%;
    left: 1.25rem;
  }
  .recruit-fv__name {
    margin-top: 1.25rem;
  }
  .recruit-fv__info {
    margin-top: 1.25rem;
  }
  .recruit-fv__title-en {
    bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .recruit-fv-content {
    bottom: clamp(9.563rem, 2.303rem + 29.858vi, 13.5rem);
    left: 0.9375rem;
  }
  .recruit-fv__lead {
    font-size: clamp(1.25rem, -0.174rem + 5.797vw, 2rem);
  }
  .recruit-fv__title-en {
    font-size: clamp(3.563rem, -0.947rem + 18.357vw, 5.938rem);
    line-height: 1;
    bottom: 1.8125rem;
  }
  .recruit-fv__title-en br {
    display: block;
  }
}
.recruit-message {
  position: relative;
  z-index: 100;
  color: #fff;
  aspect-ratio: 1440/660;
}
.recruit-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(77.93% 170.9% at 50% 50%, rgba(63, 193, 185, 0.85) 32.02%, rgba(137, 213, 200, 0.85) 51.75%, rgba(241, 255, 253, 0.85) 72.62%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}
.recruit-message.is-active::before {
  opacity: 0.85;
}

.recruit-message__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.recruit-message__content {
  display: flex;
  column-gap: 4.125rem;
  padding-top: 3.9375rem;
}

.recruit-message__title-en {
  padding-left: 3.25rem;
}

.recruit-message__title-ja {
  margin-top: 0.8125rem;
}

.recruit-message__lead {
  font-size: 1.5rem;
  line-height: 1.875;
  margin-top: 2.875rem;
}

.recruit-message__loop {
  height: 7.8125rem;
  margin-top: clamp(4.063rem, -37.723rem + 46.429vw, 40.625rem);
}
.recruit-message__loop .loop {
  position: relative;
  height: inherit;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.recruit-message__loop .loop__list {
  display: flex;
  width: max-content;
  animation: loopText 100s linear infinite;
}
@keyframes loopText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.recruit-message__loop .loop__item {
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: 7.8125rem;
  font-weight: 600;
  list-style: none;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .recruit-message {
    background-image: none;
    aspect-ratio: auto;
    height: 41.25rem;
  }
  .recruit-message::before {
    opacity: 0.85;
    transition: none;
  }
  .recruit-message__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .recruit-message__content {
    flex-direction: column;
    padding-top: 0;
    padding-top: 3.125rem;
  }
  .recruit-message__title-en::before {
    background-color: #fff;
  }
  .recruit-message__lead {
    margin-top: 2.25rem;
    font-size: 1.125rem;
    line-height: 1.9444444444;
    letter-spacing: 0.03em;
  }
  .recruit-message__lead .pc {
    display: none;
  }
  .recruit-message__loop {
    margin-top: clamp(0.438rem, -10.239rem + 43.467vi, 10.625rem);
  }
  .recruit-message__loop .loop {
    height: 7.5rem;
  }
  .recruit-message__loop .loop__item {
    font-size: clamp(4.813rem, 4.288rem + 2.133vi, 5.313rem);
  }
}
@media screen and (max-width: 600px) {
  .recruit-message__title-ja {
    margin-top: 0.3125rem;
  }
  .recruit-message__lead .sp {
    display: block;
  }
}
.recruit-require {
  padding-top: 6.5rem;
  padding-bottom: 9.8125rem;
  background-color: #FBFBFB;
  z-index: 100;
  position: relative;
}

.recruit-require__inner {
  position: relative;
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.recruit-require__title-en {
  font-size: 0.875rem;
  font-weight: 400;
  padding-left: 2.75rem;
  letter-spacing: -0.04em;
}

.recruit-require__title-ja {
  font-size: 2rem;
  margin-top: 0.9375rem;
}

.recruit-require__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.5rem;
  row-gap: 1.6875rem;
  margin-top: 3.5625rem;
  max-width: 67rem;
  margin-inline: auto;
}

.recruit-require__item {
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  max-width: 15.625rem;
  height: 10rem;
}

.recruit-require__card {
  padding: 1.25rem;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.recruit-require__card-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #33B09E;
  position: relative;
  z-index: 2;
}

.recruit-require__img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  pointer-events: none;
  object-fit: cover;
}

@media (any-hover: hover) {
  .recruit-require__item:hover .recruit-require__img {
    animation-play-state: running;
  }
}
.recruit-require__img--01 {
  animation: float-y 4s ease-in-out infinite paused;
  height: 1.25rem;
  object-fit: cover;
  top: 70%;
}

.recruit-require__img--02 {
  animation: float-y-02 3s ease-in-out infinite reverse paused;
  width: clamp(7.25rem, 5.819rem + 5.826vw, 11.063rem);
  height: clamp(5.813rem, 4.64rem + 4.776vw, 8.938rem);
}

.recruit-require__img--03 {
  animation: float-x 4s ease-in-out infinite paused;
  width: 11.625rem;
  height: 2.1875rem;
  top: 80%;
  left: 0;
}

.recruit-require__img--04 {
  animation: bounce-scale 2s ease-in-out infinite paused;
  width: clamp(8.75rem, 7.131rem + 6.59vw, 13.063rem);
  height: clamp(4.625rem, 3.757rem + 3.534vw, 6.938rem);
}

.recruit-require__img--05 {
  animation: sway-rotate 3s ease-in-out infinite paused;
  height: 4.875rem;
  top: 90%;
  left: 63%;
}

.recruit-require__img--06 {
  animation: float-diagonal 3s ease-in-out infinite paused;
  width: 15.625rem;
  height: 6.4375rem;
  top: 75%;
}

.recruit-require__img--07 {
  animation: heartbeat 2s ease-in-out infinite paused;
  width: 12.5rem;
  height: 8.125rem;
  top: 56%;
  left: 45%;
}

.recruit-require__img--08 {
  animation: float-x-02 2.5s ease-in-out infinite reverse paused;
  top: 75%;
  left: 0;
  width: 17.5rem;
  height: 4.625rem;
}

@keyframes float-y {
  0%, 100% {
    transform: translate(-50%, 0%);
  }
  50% {
    transform: translate(-50%, -100%);
  }
}
@keyframes float-y-02 {
  0%, 100% {
    transform: translate(-50%, -40%);
  }
  50% {
    transform: translate(-50%, -55%);
  }
}
@keyframes float-x {
  0%, 100% {
    transform: translate(35%, -50%);
  }
  50% {
    transform: translate(80%, -50%);
  }
}
@keyframes float-x-02 {
  0%, 100% {
    transform: translate(-10%, -50%);
  }
  50% {
    transform: translate(-20%, -50%);
  }
}
@keyframes bounce-scale {
  0%, 100% {
    transform: translate(-40%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
@keyframes sway-rotate {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-10deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
}
@keyframes float-diagonal {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-45%, -55%);
  }
}
@keyframes heartbeat {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  15% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  30% {
    transform: translate(-50%, -50%) scale(1);
  }
  45% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  60% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@media screen and (max-width: 768px) {
  .recruit-require {
    padding-top: 2.9375rem;
    padding-bottom: 1.375rem;
  }
  .recruit-require__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .recruit-require__list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    padding-right: 1.0625rem;
    padding-left: 1.0625rem;
    margin-top: 1.75rem;
  }
  .recruit-require__item {
    max-width: none;
    width: clamp(9.375rem, -2.873rem + 49.867vw, 21.063rem);
    height: clamp(6.875rem, -2.107rem + 36.568vw, 15.446rem);
  }
  .recruit-require__card-text {
    font-size: clamp(1.125rem, 0.732rem + 1.6vw, 1.5rem);
  }
  .recruit-require__img--01 {
    height: 1.6875rem;
    top: 70%;
  }
  .recruit-require__img--03 {
    left: unset;
    right: 0;
  }
  .recruit-require__img--05 {
    height: clamp(4.875rem, 2.321rem + 10.4vw, 7.313rem);
    top: 100%;
  }
  .recruit-require__img--07 {
    width: clamp(8.438rem, -0.078rem + 34.667vw, 16.563rem);
    height: clamp(5.625rem, -0.401rem + 24.533vw, 11.375rem);
  }
  .recruit-require__img--08 {
    left: 8%;
    width: clamp(9.375rem, 0.86rem + 34.667vw, 17.5rem);
    height: clamp(2.5rem, 0.273rem + 9.067vw, 4.625rem);
  }
}
@media screen and (max-width: 600px) {
  .recruit-require__title-ja {
    margin-top: -0.3125rem;
  }
}
.recruit-management {
  background-image: url(../../images/recruit-bg.webp);
  background-size: cover;
  background-position: top;
  padding-top: 1.9375rem;
  z-index: 100;
  position: relative;
}

.recruit-management__inner {
  position: relative;
  width: 100%;
  max-width: 76.125rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.recruit-management__content {
  display: flex;
  column-gap: 2.375rem;
  padding-top: 3.9375rem;
}

.recruit-management__title {
  max-width: 19.6875rem;
}

.recruit-management__title-en {
  padding-left: 3.0625rem;
  letter-spacing: -0.02em;
}

.recruit-management__title-ja {
  font-size: 2rem;
  margin-top: 0.5625rem;
  color: #353535;
}

.recruit-management__lead {
  line-height: 1.875;
  color: #353535;
  font-weight: 400;
  flex: 1;
  margin-top: 2.5625rem;
}

.recruit-management__loop {
  padding-top: 5.625rem;
}
.recruit-management__loop .loop {
  position: relative;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.recruit-management__loop .loop__list {
  display: flex;
  width: max-content;
  animation: loopText 30s linear infinite;
  column-gap: 0.25rem;
}
@keyframes loopText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.recruit-management__loop .loop__item {
  width: 17.625rem;
}

@media screen and (max-width: 768px) {
  .recruit-management {
    padding-top: 3.75rem;
    background-size: auto;
  }
  .recruit-management__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .recruit-management__content {
    flex-direction: column;
    padding-top: 0;
  }
  .recruit-management__title-ja {
    margin-top: 0;
  }
  .recruit-management__lead {
    margin-top: 2.375rem;
    line-height: 1.7142857143;
  }
  .recruit-management__loop {
    padding-top: 1.1875rem;
  }
  .recruit-management__loop .loop {
    padding-top: 1.25rem;
  }
  .recruit-management__loop .loop__list {
    column-gap: 0.125rem;
  }
  .recruit-management__loop .loop__item {
    width: 11.25rem;
  }
}
.recruit-work {
  background-image: url(../../images/recruit-bg.webp);
  background-size: cover;
  background-position: center;
  padding-top: 8rem;
  padding-bottom: 6.5625rem;
  position: relative;
  z-index: 100;
}

.recruit-work__inner {
  position: relative;
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding-left: 9.3125rem;
}

.recruit-work__bg-text {
  position: absolute;
  top: 8.4%;
  left: 2.3125rem;
  font-size: 6.25rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #3FC1B9;
  writing-mode: sideways-lr;
  opacity: 0.3;
  white-space: nowrap;
  z-index: 100;
}

.recruit-work__title-en {
  padding-left: 3.4375rem;
  letter-spacing: -0.02em;
}

.recruit-work__title-ja {
  font-size: 2rem;
  margin-top: 0.5rem;
}

.recruit-work__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 2rem;
  margin-top: 3.375rem;
}

.recruit-work__item {
  display: flex;
  min-height: 24rem;
}

.recruit-work__card {
  max-width: 41.875rem;
  height: 21.25rem;
  width: 100%;
  background-color: #fff;
  padding-top: 3.6875rem;
  padding-right: 2.5rem;
  margin-top: 2.25rem;
  border-radius: 16px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

.recruit-work__card-head {
  display: flex;
  align-items: center;
  column-gap: 1.125rem;
}

.recruit-work__number {
  font-family: "Inter", sans-serif;
  font-size: 2.8125rem;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(245.62deg, #3FC1B9 13.81%, #005E3C 100%);
  padding-top: 0.125rem;
  padding-right: 0.9375rem;
  padding-bottom: 0.1875rem;
  padding-left: 2.9375rem;
}

.recruit-work__card-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.recruit-work__desc {
  line-height: 1.75;
  font-weight: 400;
  margin-top: 2.0625rem;
  padding-right: 13.25rem;
  padding-left: 5.1875rem;
}

.recruit-work__img {
  flex: 1;
  margin-left: -12.4375rem;
  height: 21.25rem;
  overflow: hidden;
  border-radius: 16px;
}

.recruit-work__img img {
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.6, 0, 0, 1);
}

@media (any-hover: hover) {
  .recruit-work__item:hover .recruit-work__img img {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 768px) {
  .recruit-work {
    padding-top: 5.1875rem;
    padding-bottom: 0;
    background-size: auto;
  }
  .recruit-work__bg-text {
    display: none;
  }
  .recruit-work__title-ja {
    margin-top: 0;
  }
  .recruit-work__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .recruit-work__list {
    margin-top: 2.25rem;
  }
  .recruit-work__item {
    min-height: 23.125rem;
    display: grid;
    grid-column-gap: 0;
    grid-row-gap: 0;
    align-content: space-between;
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
  }
  .recruit-work__card {
    max-width: none;
    margin-top: 0;
    border-radius: 16px 16px 0 0;
    padding-top: 2.3125rem;
    height: auto;
    padding-right: 0.6875rem;
    box-shadow: none;
  }
  .recruit-work__card-head {
    column-gap: 1.875rem;
  }
  .recruit-work__number {
    font-size: 2rem;
    line-height: 0.9375;
    padding-top: 0.3125rem;
    padding-right: 0;
    padding-bottom: 0.3125rem;
    padding-left: 0;
    max-width: 5rem;
    width: 100%;
    text-align: center;
    border-radius: 0 3px 3px 0;
  }
  .recruit-work__card-title {
    font-size: 1.25rem;
  }
  .recruit-work__desc {
    margin-top: 1.5rem;
    padding-right: 0;
    padding-left: 1.25rem;
  }
  .recruit-work__desc br {
    display: none;
  }
  .recruit-work__img {
    margin-left: 0;
    height: 10.9375rem;
    flex: none;
  }
  .recruit-work__img {
    border-radius: 0 0 16px 16px;
  }
}
.recruit-career {
  position: relative;
  padding-bottom: 12.125rem;
  background-image: url(../../images/recruit-bg.webp);
  background-size: cover;
  background-position: bottom;
  z-index: 100;
}

.recruit-career__title {
  position: relative;
  width: 100%;
  max-width: 75.875rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.recruit-career__title-en {
  font-weight: 500;
  padding-left: 2.75rem;
}

.recruit-career__title-ja {
  font-size: 2rem;
  color: #353535;
  margin-top: 0.5625rem;
}

.recruit-career__title-ja br {
  display: none;
}

.recruit-career__inner {
  position: relative;
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
}

.recruit-career__decoration {
  position: absolute;
  top: -10.125rem;
  left: 0;
  opacity: 0;
}

.recruit-career__decoration.is-active {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.recruit-career__decoration img {
  object-fit: cover;
}

.recruit-career__list-pc {
  display: flex;
  position: relative;
  padding-top: clamp(8.438rem, -3.095rem + 23.994vw, 18.5rem);
  margin-left: 10.8%;
}

.recruit-career__list-sp-wrap {
  display: none;
}

.recruit-career__item {
  width: clamp(7.625rem, -0.019rem + 15.905vw, 14.295rem);
  position: relative;
}

.recruit-career__item--year1 {
  margin-top: 25.4%;
}

.recruit-career__item--year3 {
  margin-top: 18.7%;
  margin-left: 1.3%;
}
.recruit-career__item--year3 span {
  font-size: 0.6875rem;
}

.recruit-career__item--year5 {
  margin-top: 12%;
  margin-left: 1.2%;
}
.recruit-career__item--year5 span {
  font-size: 0.625rem;
}

.recruit-career__item--year10 {
  margin-top: 5.852%;
  margin-left: 1.1%;
}

.recruit-career__item--year15 {
  margin-left: 0.7%;
}

.recruit-career__card {
  background-color: #fff;
  border-radius: 16px;
  padding-top: 0.625rem;
  padding-right: 0.9375rem;
  padding-left: 1.25rem;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 5.718125rem;
}

.recruit-career__card-title {
  text-align: center;
  font-size: 2rem;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  background: linear-gradient(250.48deg, #83E7B4 2.89%, #40C1B9 64.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.recruit-career__card-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.75;
  color: #353535;
  letter-spacing: -0.1em;
}

.recruit-career__bg-text {
  position: absolute;
  bottom: 6rem;
  right: 10%;
  letter-spacing: 0.05em;
  font-size: clamp(2rem, -0.299rem + 9.36vw, 8.125rem);
  font-weight: 700;
  line-height: 0.962962963;
  background: linear-gradient(245.62deg, #005E3C 13.81%, #3FC1B9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: right;
  opacity: 0.3;
}

.recruit-career__bg-text-pc {
  display: block;
}

.recruit-career__bg-text-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .recruit-career {
    padding-top: 3.375rem;
    padding-bottom: 2.9375rem;
    background-size: auto;
  }
  .recruit-career__title {
    right: 1.25rem;
    bottom: 0;
  }
  .recruit-career__title-ja.c-title__ja {
    font-size: 1.25rem !important;
    margin-top: 0.125rem;
  }
  .recruit-career__title-ja br {
    display: block;
  }
  .recruit-career__decoration {
    margin-top: -4.5rem;
    position: relative;
    top: unset;
    left: unset;
  }
  .recruit-career__list-pc {
    display: none;
  }
  .recruit-career__list-sp-wrap {
    display: block;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    margin-top: 0.1875rem;
  }
  .recruit-career__list-sp {
    padding-top: 0.875rem;
    padding-right: 0.875rem;
    padding-bottom: 1.3125rem;
    padding-left: 0.875rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
    width: 100%;
    margin-inline: auto;
    display: inline-block;
  }
  .recruit-career__item-sp {
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 1.625rem;
  }
  .recruit-career__item-sp:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .recruit-career__item-sp:last-child::after {
    display: none;
  }
  .recruit-career__item-sp::after {
    content: "";
    background-image: url(../../images/icon-arrow-under-green.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.5625rem;
    height: 0.75rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .recruit-career__year-sp {
    text-align: center;
    font-size: 1.25rem;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    background: linear-gradient(250.48deg, #83E7B4 2.89%, #40C1B9 64.99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .recruit-career__desc-sp {
    font-size: 0.75rem;
    font-weight: 400;
    color: #353535;
    line-height: 1.75;
    margin-left: 1.375rem;
  }
  .recruit-career__item {
    width: 18%;
  }
  .recruit-career__card {
    align-items: normal;
    padding-top: 0.9375rem;
    padding-right: 0.3125rem;
    padding-bottom: 0.625rem;
    padding-left: 0.3125rem;
  }
  .recruit-career__card-title {
    font-size: clamp(0.875rem, 0.517rem + 1.527vw, 1.25rem);
  }
  .recruit-career__card-text {
    font-size: clamp(0.625rem, 0.506rem + 0.509vw, 0.75rem);
  }
  .recruit-career__bg-text-pc {
    display: none;
  }
  .recruit-career__bg-text-sp {
    display: block;
    position: absolute;
    bottom: 0.1875rem;
    right: 1rem;
  }
}
.recruit-about {
  padding-top: 7.875rem;
  padding-bottom: 9.75rem;
  background-color: #fff;
  z-index: 100;
  position: relative;
}

.recruit-about__inner {
  position: relative;
  width: 100%;
  max-width: 65.125rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.recruit-about__title {
  width: 100%;
  max-width: 76.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.recruit-about__title-en {
  padding-left: 4.125rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.recruit-about__title-ja {
  font-size: 2rem;
  color: #353535;
  margin-top: 0.625rem;
}

.recruit-about__contents {
  position: relative;
  margin-top: 9.25rem;
}

.recruit-about__contents::before {
  content: "";
  background-image: url(../../images/recruit-about-line-vertical.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -2.0625rem;
  left: 50%;
  width: 0.0625rem;
  height: 75.9375rem;
}

.recruit-about__item {
  position: relative;
  width: 46.7775467775%;
}

.recruit-about__item--left {
  margin-right: auto;
  text-align: left;
  padding-left: 1.125rem;
}

.recruit-about__item--right {
  margin-left: 53%;
  padding-left: 2.25rem;
}

.recruit-about__item--02 {
  margin-top: -2.25rem;
}

.recruit-about__item--03 {
  margin-top: 1.3125rem;
}

.recruit-about__item--03::before,
.recruit-about__item--04::before,
.recruit-about__item--05::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #005E3C;
  width: 28.125rem;
  height: 0.0625rem;
}

.recruit-about__item--03::before {
  top: -8.3125rem;
}

.recruit-about__item--04::before {
  top: -9.6875rem;
}

.recruit-about__item--05::before {
  top: -9.125rem;
}

.recruit-about__item--04 {
  margin-top: 3.875rem;
}

.recruit-about__item--05 {
  margin-top: 0.875rem;
}

.recruit-about__number {
  position: absolute;
  top: -7.1875rem;
  left: -0.8125rem;
  font-size: 8.6875rem;
  font-weight: 700;
  background: linear-gradient(180deg, #575757 0%, #BDBDBD 79.81%, #E9E9E9 99.04%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
}

.recruit-about__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(245.62deg, #3FC1B9 13.81%, #005E3C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.recruit-about__item-title-en {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  background: linear-gradient(250.48deg, #83E7B4 2.89%, #40C1B9 64.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  letter-spacing: -0.06em;
  margin-top: 0.125rem;
}

.recruit-about__text {
  line-height: 1.5625;
  margin-top: 1.6875rem;
  font-weight: 400;
  padding-right: 1.0625rem;
}

.recruit-about__img {
  position: absolute;
  height: auto;
  opacity: 0;
}

.recruit-about__img.is-active {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.recruit-about__img--01 {
  width: 14.125rem;
  top: -8.125rem;
  right: -23.125rem;
}

.recruit-about__img--02 {
  width: 12.0625rem;
  top: -4.625rem;
  left: -40.75rem;
}

.recruit-about__img--03 {
  width: 15.9375rem;
  top: -11.3125rem;
  right: -41.3125rem;
}

.recruit-about__img--04 {
  width: 11.625rem;
  top: -0.25rem;
  left: -15rem;
}

.recruit-about__img--05 {
  width: 13.9375rem;
  top: -0.5rem;
  right: -26.375rem;
}

@media screen and (max-width: 768px) {
  .recruit-about {
    padding-top: 3.75rem;
    padding-bottom: 1.875rem;
  }
  .recruit-about__title {
    margin-left: 0;
    padding-left: 1.25rem;
  }
  .recruit-about__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .recruit-about__contents {
    margin-top: 0;
  }
  .recruit-about__contents::before {
    display: none;
  }
  .recruit-about__item {
    width: 100%;
  }
  .recruit-about__item {
    margin-top: 7.5rem;
  }
  .recruit-about__item--left {
    padding-left: 0;
  }
  .recruit-about__number {
    font-size: 6.875rem;
    top: -6.25rem;
    left: 0;
  }
  .recruit-about__text {
    padding-right: 0;
    margin-top: 0.625rem;
  }
  .recruit-about__item--right {
    padding-left: 0;
    margin-left: 0;
  }
  .recruit-about__item--02 br {
    display: none;
  }
  .recruit-about__img--01,
  .recruit-about__img--02,
  .recruit-about__img--03,
  .recruit-about__img--04,
  .recruit-about__img--05 {
    top: -52%;
    left: unset;
    right: 0;
    width: clamp(3.75rem, 1.365rem + 10.178vw, 6.25rem);
  }
  .recruit-about__item--02::before {
    content: "";
    position: absolute;
    top: -5.625rem;
    left: 0;
    background-color: #005E3C;
    width: 100%;
    height: 0.0625rem;
  }
  .recruit-about__item--03::before,
  .recruit-about__item--04::before,
  .recruit-about__item--05::before {
    top: -5.625rem;
    width: 100%;
  }
  .pc-only {
    display: none;
  }
}
.recruit-day {
  background-color: #FBFBFB;
  z-index: 100;
  position: relative;
  padding-top: 2.875rem;
}

.recruit-day__inner {
  position: relative;
  width: 100%;
  max-width: 80.25rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.recruit-day__container-sp {
  display: none;
}

.recruit-day__head {
  padding-left: 1.9375rem;
}

.recruit-day__title {
  margin-top: 1.3125rem;
}

.recruit-day__title-en {
  font-weight: 700;
  letter-spacing: -0.06em;
  padding-left: 4.0625rem;
}

.recruit-day__title-ja {
  font-size: 2rem;
  color: #353535;
  margin-top: 0.75rem;
}

.recruit-day__content {
  display: flex;
  margin-top: 0.4375rem;
}

.recruit-day__container-sp {
  display: none;
}

.recruit-day__left {
  margin-top: 2.8125rem;
  margin-left: 1.125rem;
}

.recruit-day__name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  background: linear-gradient(245.62deg, #005E3C 13.81%, #3FC1B9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 1.375rem;
}

.recruit-day__left-img {
  width: 13.311875rem;
  margin-top: 1.5rem;
}

.recruit-day__right {
  margin-left: -1.6875rem;
}

.recruit-day__lead {
  font-size: 5.3125rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.0112359551;
  letter-spacing: -0.055em;
  background: linear-gradient(180deg, #575757 1.26%, #BDBDBD 20.54%, #6B6B6B 55.33%, #D3D3D3 71.25%, #848484 84.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  text-align: center;
}

.recruit-day__right-img {
  max-width: 61.0625rem;
  width: 100%;
  margin-top: -0.625rem;
}

.recruit-day--office {
  padding-top: 7.1875rem;
}
.recruit-day--office .recruit-day__left {
  margin-left: 0.8125rem;
}
.recruit-day--office .recruit-day__left-img {
  width: 18.875rem;
  margin-top: -3.375rem;
  margin-left: -2.1875rem;
}
.recruit-day--office .recruit-day__right {
  margin-left: -4.25rem;
}
.recruit-day--office .recruit-day__lead {
  text-align: left;
  margin-left: 1.5625rem;
  letter-spacing: -0.04em;
}
.recruit-day--office .recruit-day__right-img {
  max-width: 60.5rem;
  width: 100%;
  margin-top: -0.5625rem;
}

@media screen and (max-width: 768px) {
  .recruit-day {
    padding-top: 3.4375rem;
  }
  .recruit-day--office {
    padding-top: 3.75rem;
  }
  .recruit-day__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .recruit-day__content,
  .recruit-day__head {
    display: none;
  }
  .recruit-day__container-sp {
    display: block;
  }
  .recruit-day__container-sp .recruit-day__head {
    padding-left: 0;
    display: block;
  }
  .recruit-day__container-sp .recruit-day__title-ja {
    font-weight: 700;
    margin-top: 0.125rem;
  }
  .recruit-day__container-sp .recruit-day__content {
    display: flex;
    margin-top: -1.25rem;
  }
  .recruit-day__container-sp .recruit-day__left {
    width: 47.5920679887%;
  }
  .recruit-day__container-sp .recruit-day__lead {
    font-size: clamp(1.625rem, -0.275rem + 7.733vi, 3.438rem);
    text-align: left;
    letter-spacing: -0.07em;
    position: relative;
    z-index: 100;
    white-space: nowrap;
  }
  .recruit-day__container-sp .recruit-day__right {
    position: relative;
    width: 47.8753541076%;
    margin-left: -0.875rem;
  }
  .recruit-day__container-sp .recruit-day__right-img {
    width: 98.224852071%;
  }
  .recruit-day__container-sp .recruit-day__img {
    width: 94.3%;
    margin-top: 0.75rem;
    margin-left: 0.9375rem;
  }
}
@media screen and (max-width: 600px) {
  .recruit-day__container-sp .recruit-day__title-ja {
    font-size: 1.25rem;
  }
}