@charset "UTF-8";
@font-face {
  font-family: "Avenir";
  src: url("../fonts/avenir_roman_12.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "noto-sans-jp", sans-serif;
}

html {
  font-size: 10px;
}

@media (max-width: 1439px) {
  html {
    font-size: 0.69vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 2.56vw;
  }
}
.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

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

main {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .header {
    height: 4.8rem;
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  height: 100%;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header__container {
    padding: 0;
  }
}

.header__logo {
  margin-left: 2.4rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    margin-left: 0.8rem;
  }
}

.header__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .header__logo-link {
    gap: 0.8rem;
  }
}

.header__logo-img {
  width: 12rem;
  height: 4.5rem;
}
@media screen and (max-width: 768px) {
  .header__logo-img {
    width: 6.2rem;
    height: 2.4rem;
  }
}

.header__logo-text {
  width: 12.5rem;
  height: 2.2rem;
}
@media screen and (max-width: 768px) {
  .header__logo-text {
    width: 8.7rem;
    height: 2rem;
  }
}

.header__nav {
  flex: 1;
  justify-content: flex-end;
  display: flex;
  padding: 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    gap: 2.4rem;
  }
}
.header__nav-list li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #282828;
}
.header__nav-list a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header__nav-list a:hover {
  color: #fe0e00;
}

.header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header__search-icon {
  width: 3rem;
  height: 3rem;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__actions {
    gap: 0;
  }
}

.header__recruit,
.header__tel,
.header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  width: 15rem;
  padding: 0 1.2rem 0.2rem;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header__recruit:hover,
.header__tel:hover,
.header__contact:hover {
  opacity: 0.85;
}
.header__recruit span,
.header__tel span,
.header__contact span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header__recruit,
  .header__tel,
  .header__contact {
    width: 4.8rem;
    padding: 0;
    gap: 0;
  }
  .header__recruit span,
  .header__tel span,
  .header__contact span {
    display: none;
  }
}

.header__tel .header__tel-icon, .header__tel .header__tel-text {
  margin-left: -0.4rem;
}
@media screen and (max-width: 768px) {
  .header__tel .header__tel-icon, .header__tel .header__tel-text {
    margin-left: 0;
  }
}

.header__contact .header__contact-icon, .header__contact .header__contact-text {
  margin-left: -0.3rem;
}
@media screen and (max-width: 768px) {
  .header__contact .header__contact-icon, .header__contact .header__contact-text {
    margin-left: 0;
  }
}

.header__contact {
  border-right: 1px solid #fe0e00;
}

.header__recruit {
  border-left: 1px solid #fe0e00;
  color: #fe0e00;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header__recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fe0e00;
  transition: width 0.4s ease-out;
  z-index: -1;
}
.header__recruit:hover {
  opacity: 1;
  color: #ffffff;
}
.header__recruit:hover::before {
  width: 100%;
}
.header__recruit:hover .header__recruit-icon {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .header__recruit {
    border-right: none;
  }
}

.header__recruit-icon {
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 768px) {
  .header__recruit-icon {
    width: 3rem;
    height: 3rem;
  }
}

.header__tel {
  background: #282828;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header__tel span {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.header__tel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff;
  transition: width 0.4s ease-out;
  z-index: 0;
}
.header__tel:hover {
  opacity: 1;
  color: #000000;
}
.header__tel:hover::before {
  width: 100%;
}
.header__tel:hover .header__tel-icon {
  filter: brightness(0);
}

.header__tel-icon {
  width: 3rem;
  height: 3rem;
}
@media screen and (max-width: 768px) {
  .header__tel-icon {
    width: 3rem;
    height: 3rem;
  }
}

.header__contact {
  background: #fe0e00;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header__contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff;
  transition: width 0.4s ease-out;
  z-index: -1;
}
.header__contact:hover {
  opacity: 1;
  color: #FE0E00;
}
.header__contact:hover::before {
  width: 100%;
}
.header__contact:hover .header__contact-icon {
  filter: brightness(0) saturate(100%) invert(19%) sepia(98%) saturate(7426%) hue-rotate(357deg) brightness(99%) contrast(114%);
}

.header__contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .header__contact-icon {
    width: 3rem;
    height: 3rem;
  }
}

.header__menu-toggle {
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    width: 4.8rem;
    height: 100%;
    background: #fe0e00;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }
  .header__menu-toggle span {
    display: block;
    width: 2.4rem;
    height: 0.2rem;
    background: #ffffff;
    transition: all 0.3s ease;
  }
  .header__menu-toggle span:nth-child(2) {
    opacity: 1;
  }
  .header__menu-toggle.is-active span:nth-child(1) {
    transform: translateY(0.8rem) rotate(45deg);
  }
  .header__menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-0.8rem) rotate(-45deg);
  }
}

.header__mobile-menu {
  position: fixed;
  top: 6rem;
  right: -100%;
  width: 100%;
  height: calc(100vh - 6rem);
  background: #ffffff;
  z-index: 999;
  overflow-y: auto;
  transition: right 0.3s ease;
}
.header__mobile-menu.is-open {
  right: 0;
}
@media screen and (min-width: 769px) {
  .header__mobile-menu {
    display: none;
  }
}

.header__mobile-nav {
  padding: 4rem 2rem;
}

.header__mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.header__mobile-nav-list li {
  border-bottom: 1px solid #f6f6f6;
}
.header__mobile-nav-list a {
  display: block;
  padding: 2rem 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header__mobile-nav-list a:hover {
  color: #fe0e00;
  padding-left: 2rem;
}

.footer {
  background: #f6f6f6;
  padding: 10rem 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 8rem 2rem 2.4rem;
  }
}

.footer .container {
  max-width: 116.1rem;
}

.footer__top {
  display: flex;
  gap: 17.2rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 6.8rem;
    margin-bottom: 6rem;
  }
}

.footer__company {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 25.1rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer__company {
    width: 25.1rem;
    margin: 0 auto;
    align-items: center;
  }
}

.footer__logo img {
  width: 20.4rem;
  height: 7.65rem;
}

.footer__address {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #282828;
  font-style: normal;
  flex-direction: column;
  display: flex;
  gap: 0.7rem;
}
@media screen and (max-width: 768px) {
  .footer__address {
    text-align: center;
    align-items: center;
    gap: 0;
  }
}

.footer__address__tel {
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 768px) {
  .footer__address__info {
    margin-top: -0.1rem;
  }
}

.footer__tse {
  background-color: #eee;
  border-radius: 0.8rem;
  font-size: 1.2rem;
  color: #767676;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__tse .footer__tse__logo {
  display: flex;
  justify-content: center;
}
.footer__tse .footer__tse__logo img {
  max-width: 5.2rem;
}

.footer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8.4rem;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}

.footer__nav-top {
  display: flex;
  gap: 15rem;
}
.footer__nav-top a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__nav-top a:hover {
  color: #fe0e00;
}
@media screen and (max-width: 768px) {
  .footer__nav-top {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

.footer__nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 78rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-cols {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.footer__nav-col h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #282828;
  margin: 0 0 1.3rem;
  letter-spacing: -0.02em;
}

.footer__nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 5.3rem;
  padding-left: 1.6rem;
  position: relative;
}
.footer__nav-col ul::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 0.6rem);
  background-color: #fe0e00;
  left: 0;
  top: 0.3rem;
}

.footer__nav-col ul li {
  margin-bottom: 1.8rem;
}
.footer__nav-col ul li:last-child {
  margin-bottom: 0;
}

.footer__nav-col ul li a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #767676;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}
.footer__nav-col ul li a:hover {
  color: #fe0e00;
}

.footer__nav-single {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.footer__nav-single a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}
.footer__nav-single a:hover {
  color: #fe0e00;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
}

.footer__policies {
  display: flex;
  gap: 4rem;
  justify-content: center;
  height: 2.4rem;
}
.footer__policies a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #767676;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}
.footer__policies a:hover {
  color: #fe0e00;
}
@media screen and (max-width: 768px) {
  .footer__policies {
    flex-direction: column;
    gap: 0.8rem;
    height: auto;
    align-items: center;
  }
}

.footer__copyright {
  font-family: "Avenir", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #cccccc;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 0;
}

.footer__nav-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer__nav-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-item {
    border-bottom: 1px solid #fe0e00;
  }
  .footer__nav-item:last-child {
    border-bottom: 1px solid #fe0e00;
  }
  .footer__nav-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0 1.1rem;
    cursor: pointer;
    text-decoration: none;
  }
  .footer__nav-item-header.is-open {
    padding: 1.2rem 0 0.5rem;
  }
  .footer__nav-item-header span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #282828;
    letter-spacing: -0.02em;
  }
  .footer__nav-item-header .footer__nav-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-bottom: 0.4rem;
  }
  .footer__nav-item-header .footer__nav-icon::after {
    content: "+";
    font-size: 3.4rem;
    color: #fe0e00;
    font-weight: 300;
  }
  .footer__nav-item-header.is-open .footer__nav-icon::after {
    content: "−";
  }
  .footer__nav-item-header.is-external .footer__nav-icon::after {
    content: "→";
    font-size: 2.2rem;
    display: flex;
    margin-top: 0.5rem;
  }
  .footer__nav-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .footer__nav-item-content.is-open {
    max-height: 50rem;
    padding-bottom: 1.65rem;
  }
  .footer__nav-subitems {
    padding-left: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    list-style: none;
    margin: 0;
    padding-top: 0.8rem;
    position: relative;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer__nav-subitems {
    padding-top: 0;
    gap: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-subitems::before {
    content: "";
    width: 1px;
    height: calc(100% - 0.6rem);
    background-color: #fe0e00;
    position: absolute;
    left: 0;
    top: 0.3rem;
  }
  .footer__nav-subitems li {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #767676;
    letter-spacing: -0.02em;
  }
  .footer__nav-subitems li a {
    color: #767676;
    text-decoration: none;
  }
  .footer__nav-subitems li a:hover {
    color: #fe0e00;
  }
}
.container {
  max-width: 144rem;
  margin: 0 auto;
  box-sizing: content-box;
  position: relative;
}

.section-title {
  margin-bottom: 6rem;
}

.section-title__en {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Lato", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 1.6rem;
}
.section-title__en span {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .section-title__en {
    font-size: 3.6rem;
    margin: 0 0 1rem;
  }
}

.section-title__highlight {
  position: relative;
  color: #000000;
  padding: 0.6rem 4rem 0.6rem 0;
  display: inline-block;
  z-index: 1;
  transition: color 0.53s ease-out;
}
.section-title__highlight::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  bottom: 0;
  width: 0;
  background: #fe0e00;
  z-index: -1;
  transition: width 0.53s ease-out;
}
@media screen and (max-width: 768px) {
  .section-title__highlight::before {
    top: -0.1rem;
    left: 0.16rem;
  }
}

.section-title.animate-in .section-title__highlight {
  color: #ffffff;
}
.section-title.animate-in .section-title__highlight::before {
  width: 6rem;
  height: 3.8rem;
}
@media screen and (max-width: 768px) {
  .section-title.animate-in .section-title__highlight::before {
    width: 5.3rem;
    height: 3.9rem;
  }
}

@keyframes highlightExpand {
  0% {
    padding-right: 0;
  }
  100% {
    padding-right: 4rem;
  }
}
@keyframes highlightExpandBg {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.section-title__ja {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #282828;
  margin: 0;
}

.section-title__dot {
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fe0e00;
}

.section-title--white .section-title__en {
  color: #ffffff;
}

.section-title--white .section-title__ja {
  color: #ffffff;
}

.hero {
  position: relative;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .hero {
    height: 80rem;
    margin-top: 4.8rem;
  }
}
.hero .container {
  max-width: 100%;
}

.hero__bg {
  position: relative;
  inset: 0;
  margin: 0 auto;
  height: 100%;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.25));
}

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

.hero__content {
  position: absolute;
  left: 12.1rem;
  top: 27.7rem;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .hero__content {
    left: 6rem;
    top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__content {
    left: 3.35rem;
    top: unset;
    bottom: 11.3rem;
  }
}

.hero__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin: 0 0 0.8rem;
}
@media screen and (max-width: 1024px) {
  .hero__title {
    font-size: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__title {
    font-size: 5.2rem;
  }
}

.hero__subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .hero__subtitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__subtitle {
    font-size: 2rem;
  }
}

.hero__scroll {
  position: absolute;
  right: 4rem;
  bottom: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .hero__scroll {
    right: 2rem;
    bottom: 3rem;
    display: none;
  }
}
.hero__scroll span {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 10rem;
  background: #fff;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background: #969696;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(10rem);
    opacity: 0;
  }
}
.quick-nav {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 108rem;
  padding: 0 8rem;
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0 1rem rgba(105, 105, 105, 0.2);
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .quick-nav {
    width: 90%;
    padding: 0 4rem;
  }
}
@media screen and (max-width: 768px) {
  .quick-nav {
    position: absolute;
    bottom: -7.8rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    width: calc(100% - 6rem);
    padding: 0.8rem 2rem;
    gap: 0;
  }
}

.quick-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  height: 8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #282828;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.quick-nav__item:hover {
  color: #fe0e00;
}
@media screen and (max-width: 1024px) {
  .quick-nav__item {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .quick-nav__item {
    height: auto;
    width: 100%;
    padding: 0.05rem 0 0.2rem;
    gap: 4rem;
    font-size: 1.5rem;
  }
  .quick-nav__item:not(:last-child) {
    border-bottom: 1px solid #cccccc;
  }
}

.quick-nav__item-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .quick-nav__item-content {
    gap: 4rem;
  }
}

.quick-nav__icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-nav__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quick-nav__arrow {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  border: 1px solid #cccccc;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}
.quick-nav__arrow::before {
  content: "";
  position: absolute;
  width: 0.583rem;
  height: 1rem;
  background-image: url("../images/icon/icon_arrow_more.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.quick-nav__arrow.quick-nav__arrow--mail::before {
  transform: rotate(-90deg);
}

@keyframes arrowSlideDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(150%);
    opacity: 0;
  }
  51% {
    transform: translateY(-150%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes arrowSlideDownRotated {
  0% {
    transform: rotate(-90deg) translateY(0);
    opacity: 1;
  }
  50% {
    transform: rotate(-90deg) translateY(150%);
    opacity: 0;
  }
  51% {
    transform: rotate(-90deg) translateY(-150%);
    opacity: 0;
  }
  100% {
    transform: rotate(-90deg) translateY(0);
    opacity: 1;
  }
}
.quick-nav__item:hover .quick-nav__arrow::before {
  animation: arrowSlideDown 0.6s ease-in-out;
}

.quick-nav__item:hover .quick-nav__arrow--mail::before {
  animation: arrowSlideDownRotated 0.6s ease-in-out;
}

.service-card {
  background: #f6f6f6;
  border-radius: 8px;
  border-bottom: 1.6rem solid #fe0e00;
  padding: 3rem;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .service-card {
    padding: 2rem;
  }
}

.service-card__image {
  height: 25rem;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.6rem;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__content {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.service-card__header {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.service-card__number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-end;
  gap: 0.8rem;
}

.service-card__label {
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fe0e00;
  text-transform: capitalize;
  padding-bottom: 0.7rem;
}

.service-card__number {
  font-family: "Lato", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
  line-height: 1;
}

.service-card__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: #282828;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .service-card__title {
    font-size: 2.8rem;
  }
}

.service-card__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #282828;
  margin: 0;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .stat-card {
    flex-direction: column;
  }
}

.stat-card--with-details {
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .stat-card--with-details {
    gap: 1.55rem;
  }
}

@media screen and (max-width: 768px) {
  .stat-card__sp {
    position: absolute;
    top: 20.4rem;
    left: 5.6rem;
    gap: 0;
  }
}

.stat-card__main {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .stat-card__main {
    flex-direction: column;
    margin: 0 auto;
  }
  .stat-card__main .stat-card__icon {
    width: 3.5rem;
    height: 5rem;
  }
  .stat-card__main .stat-card__label {
    margin-bottom: -0.1rem;
  }
  .stat-card__main .stat-card__icon-wrapper {
    margin-bottom: 0.2rem;
  }
}

.stat-card__icon-wrapper {
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .stat-card__icon-wrapper {
    width: 6.1rem;
    height: 6rem;
    margin-bottom: 1rem;
  }
}

.stat-card__icon {
  width: 9.5rem;
  height: 8.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-card__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .stat-card__icon {
    width: 7rem;
    height: 6rem;
  }
}

.stat-card__content {
  display: flex;
  flex-direction: column;
}

.stat-card__label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  line-height: 1.7;
  color: #282828;
  margin: -0.4rem 0 1.7rem;
}
@media screen and (max-width: 768px) {
  .stat-card__label {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
  }
}

.stat-card__value {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
}

.stat-card__number {
  font-family: "Lato", sans-serif;
  font-size: 8rem;
  line-height: 1;
  color: #fe0e00;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  height: 1lh;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .stat-card__number {
    font-size: 4rem;
  }
}

.countup__part {
  display: inline-block;
  width: 1ch;
  max-width: 1ch;
  text-align: center;
  word-break: break-all;
  transition-property: translate;
  transition-timing-function: cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition-duration: 0.8s;
}
.countup__part:nth-of-type(1) {
  transition-duration: 1.8s;
}
.countup__part:nth-of-type(2) {
  transition-duration: 1.6s;
}
.countup__part:nth-of-type(3) {
  transition-duration: 1.4s;
}
.countup__part:nth-of-type(4) {
  transition-duration: 1.2s;
}

.is-active.stat-card__number .countup__part {
  translate: 0 calc(var(--digit) * -1lh);
}

.countup__sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stat-card__unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: #fe0e00;
  padding-bottom: 0.3rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .stat-card__unit {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }
}

.stat-card__details {
  display: flex;
  flex-direction: column;
  gap: 1.166rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.stat-card__details li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #767676;
}
@media screen and (max-width: 768px) {
  .stat-card__details {
    margin: 0 auto;
    gap: 0.8rem !important;
  }
  .stat-card__details li {
    font-size: 1.2rem;
  }
}

.concept {
  padding: 13.85rem 0 6rem;
  background: #ffffff;
}
.concept .section-title.animate-in .section-title__highlight::before {
  width: 5.9rem;
  height: 3.8rem;
}
@media screen and (max-width: 768px) {
  .concept .section-title.animate-in .section-title__highlight::before {
    width: 5.3rem;
    height: 3.9rem;
  }
}
.concept .section-title {
  margin-bottom: -1.6rem;
}
@media screen and (max-width: 768px) {
  .concept {
    padding: 15.25rem 2rem 6rem;
  }
  .concept .section-title {
    margin-bottom: 0.1rem;
  }
  .concept .section-title__en {
    letter-spacing: 0;
  }
}

.concept__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .concept__content {
    gap: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .concept__content {
    flex-direction: column;
    gap: 4rem;
  }
}

.concept__text {
  width: 45.83%;
  flex-shrink: 0;
  padding-left: 10rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .concept__text {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .concept__text {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    gap: 2.4rem;
  }
}

.concept__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #282828;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .concept__heading {
    font-size: 4.8rem;
    line-height: 1.3;
  }
}

.concept__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  color: #282828;
  margin: 0;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .concept__lead {
    font-size: 2rem;
  }
}

.concept__description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #282828;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.concept__description p {
  margin: 0 0 4rem;
}
.concept__description p:last-child {
  margin-bottom: 0;
}

.concept__image-wrapper {
  width: 47.23%;
  flex-shrink: 0;
  position: relative;
  top: 0.2rem;
}
@media screen and (max-width: 1024px) {
  .concept__image-wrapper {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .concept__image-wrapper {
    width: 100%;
    left: 0;
  }
}

.concept__image {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .concept__image {
    border-radius: 0.4rem;
  }
}

.service {
  padding: 10.2rem 0 10rem;
  background: #ffffff;
}
.service .container {
  max-width: 124rem;
}
.service .section-title__highlight::before {
  top: -0.1rem;
  left: 0.11rem;
}
.service .section-title.animate-in .section-title__highlight::before {
  width: 5.9rem;
}
.service .section-title__en {
  margin: 0 0 1.4rem;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 10.2rem 0 8rem;
  }
  .service .section-title__en {
    margin: 0 0 1.1rem;
  }
  .service .section-title {
    margin-bottom: 2.4rem;
  }
  .service .container {
    max-width: 35rem;
  }
  .service .section-title.animate-in .section-title__highlight::before {
    width: 5.3rem;
  }
}

.service__content {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .service__content {
    margin-top: 2.4rem;
  }
}

.service__grid {
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .service__grid {
    flex-direction: column;
    gap: 3.9rem;
  }
}

.service-card {
  flex: 1;
  background: #f6f6f6;
  border-radius: 0.8rem;
  border-bottom: 1.5rem solid #fe0e00;
  display: flex;
  flex-direction: column;
  padding: 3rem 3rem 3.1rem;
}
@media screen and (max-width: 768px) {
  .service-card {
    flex: none;
    padding: 2rem 2rem 1.8rem;
    border-bottom: 0.8rem solid #fe0e00;
  }
}

@media screen and (max-width: 768px) {
  .service-card:nth-child(2) .service-card__content {
    padding: 1.6rem 0 1.5rem;
  }
}

.service-card__image-wrapper {
  width: 100%;
  height: 25rem;
  border-radius: 0.8rem 0.8rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .service-card__image-wrapper {
    height: 15.09rem;
  }
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__content {
  padding: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .service-card__content {
    padding: 1.5rem 0;
    gap: 1.6rem;
  }
}

.service-card__info {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .service-card__info {
    gap: 0.9rem;
  }
}

.service-card__header {
  display: flex;
  flex-direction: column;
}

.service-card__number-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  justify-content: flex-start;
}

.service-card__label {
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: #fe0e00;
  text-transform: capitalize;
  padding-bottom: 0.7rem;
}

.service-card__number {
  font-family: "Lato", sans-serif;
  font-size: 8rem;
  line-height: 1;
  color: #ffffff;
  text-transform: capitalize;
  -webkit-text-stroke: 0.1rem #fe0e00;
}
@media screen and (max-width: 768px) {
  .service-card__number {
    font-size: 6rem;
  }
}

.service-card__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: #282828;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .service-card__title {
    font-size: 3.2rem;
  }
}

.service-card__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #282828;
}
@media screen and (max-width: 768px) {
  .service-card__text {
    font-size: 1.6rem;
  }
}

.system {
  padding: 10rem 0 12rem;
  background: #f6f6f6;
}
.system .container {
  max-width: 124rem;
}
.system .section-title__highlight::before {
  top: 0.08rem;
}
.system .section-title.animate-in .section-title__highlight::before {
  width: 7rem;
  height: 3.8rem;
}
@media screen and (max-width: 768px) {
  .system {
    padding: 8.1rem 0 8rem;
  }
  .system .section-title {
    margin-bottom: 2.1rem;
    padding-left: 2rem;
  }
  .system .section-title__en {
    margin: 0 0 1.1rem;
  }
  .system .section-title.animate-in .section-title__highlight::before {
    width: 6.5rem;
    height: 3.8rem;
  }
}

.system__content {
  margin-top: 6rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .system__content {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.8rem;
  }
}

.system__map {
  width: 44rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .system__map {
    width: 100%;
    max-width: 44rem;
  }
}

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

.system__map-list-map {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 1.4rem;
  padding: 0 0.3rem;
  margin-top: -0.3rem;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #767676;
}
@media screen and (max-width: 768px) {
  .system__map-list-map {
    margin-top: 0.2rem;
    padding: 0 2rem;
    gap: 0.5rem 1.2rem;
  }
}
.system__map-list-map a {
  text-decoration: none;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #767676;
}

/* Leaflet map container */
.leaflet-map {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #f7f7f7;
}

.system__stats {
  display: flex;
  flex-direction: column;
  gap: 7rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .system__stats {
    gap: 5rem;
  }
}

.system__clients {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  flex-shrink: 0;
  justify-content: space-between;
}

.system__chart {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  position: relative;
  left: -0.4rem;
}
@media screen and (max-width: 768px) {
  .system__chart {
    margin-top: 2.1rem;
    gap: 0.7rem;
    left: 0;
  }
}

.system__chart-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  line-height: 1.7;
  color: #282828;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .system__chart-label {
    font-size: 2rem;
    font-weight: 700;
  }
}

.system__chart-img {
  position: relative;
  width: 35.2rem;
  height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fff;
}
.system__chart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .system__chart-img {
    width: 100%;
    max-width: 35.2rem;
    height: 25rem;
  }
}

.system__chart-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.7;
  color: #fe0e00;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .system__chart-placeholder {
    font-size: 6rem;
  }
}

.system__client-list {
  display: flex;
  flex-direction: column;
  gap: 1.45rem;
}

.system__client-header {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.system__client-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  line-height: 1.7;
  color: #282828;
  text-align: center;
}

.system__client-tag {
  border: 1px solid #282828;
  padding: 0.2rem 0.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #282828;
  text-align: center;
}

.system__client-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 36rem;
  gap: 1.8rem;
}
@media screen and (max-width: 768px) {
  .system__client-items {
    width: 100%;
    max-width: 35rem;
    margin: 0 auto !important;
  }
}

.system__client-item {
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  gap: 2.4rem;
  margin-bottom: 0;
}

.system__client-icon {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.system__client-icon img {
  max-width: 71%;
  max-height: 100%;
  object-fit: contain;
}

.system__client-info {
  display: flex;
  flex-direction: column;
}

.system__client-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fe0e00;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  text-align: left;
  margin-bottom: -0.2rem;
}

.system__client-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #282828;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
}

.system__note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #767676;
  text-align: right;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .system__note {
    padding-right: 2rem;
  }
}

.system__client-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 0;
}
.system__client-header p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  color: #282828;
  margin: 0;
}

.system__client-tag {
  border: 1px solid #282828;
  padding: 0.2rem 0.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  color: #282828;
}
@media screen and (max-width: 768px) {
  .system__client-tag {
    font-size: 1.4rem;
  }
}

.system__client-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.system__client-items li {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  margin-top: 0.1rem;
  margin-bottom: -0.1rem;
}
.system__client-items li:last-child {
  margin-bottom: 0;
}
.system__client-items li:nth-child(2) {
  align-items: center;
}

.system__client-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: #f6f6f6;
  border-radius: 4px;
  flex-shrink: 0;
}

.system__note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #767676;
  text-align: right;
  margin: 0;
}

.recruit-banner {
  position: relative;
  height: 49rem;
  overflow: hidden;
  background: #ffffff;
}
.recruit-banner .section-title__en {
  margin: 0 0 1.4rem;
}
.recruit-banner .section-title__highlight::before {
  top: 0rem;
  left: 0.1rem;
}
.recruit-banner .section-title {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .recruit-banner {
    height: 60rem;
  }
  .recruit-banner .section-title__en {
    margin: 0 0 1rem;
  }
  .recruit-banner .section-title__highlight::before {
    top: -0.1rem;
    left: 0.1rem;
  }
}

.recruit-banner__bg {
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 768px) {
  .recruit-banner__bg {
    max-height: 53.7rem;
  }
}

.recruit-banner__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-banner__decorative {
  position: absolute;
  top: 0;
  width: 45.6rem;
  height: 49rem;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .recruit-banner__decorative {
    display: none;
  }
}

.recruit-banner__decorative--left {
  left: 0;
  transform: rotate(180deg);
}

.recruit-banner__decorative--right {
  right: 0;
}

.recruit-banner__container {
  position: relative;
  max-width: 144rem;
  height: 100%;
  margin: 0 auto;
  z-index: 3;
}

.recruit-banner__content {
  position: absolute;
  left: 20rem;
  top: 12rem;
  padding-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
@media screen and (max-width: 768px) {
  .recruit-banner__content {
    left: 2rem;
    top: 6.5rem;
    gap: 2.5rem;
  }
}

.recruit-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 61.2rem;
}
@media screen and (max-width: 768px) {
  .recruit-banner__text {
    width: 100%;
    max-width: calc(100vw - 4rem);
  }
}

.recruit-banner__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.7;
  color: #282828;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .recruit-banner__lead {
    font-size: 2rem;
  }
}

.recruit-banner__description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #282828;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .recruit-banner__description {
    font-size: 1.6rem;
  }
}

.recruit-banner__btn {
  position: absolute;
  top: 26rem;
  right: 20rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 25rem;
  height: 10rem;
  padding: 1.2rem 0.5rem 1.2rem 2.8rem;
  background: #fe0e00;
  border-radius: 0.4rem;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.recruit-banner__btn:hover .recruit-banner__btn-icon::before {
  background-position: 3.8rem center;
}
@media screen and (max-width: 768px) {
  .recruit-banner__btn {
    left: 2rem;
    right: auto;
    top: auto;
    bottom: 13.1rem;
    width: 25rem;
    height: 8rem;
    margin-top: 2rem;
  }
}

.recruit-banner__btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recruit-banner__btn-text span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .recruit-banner__btn-text span {
    font-size: 1.6rem;
  }
}

.recruit-banner__btn-divider {
  width: 1px;
  height: 3.4rem;
  background: #ffffff;
  flex-shrink: 0;
}

.recruit-banner__btn-icon {
  position: relative;
  width: 3.3rem;
  height: 1.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.recruit-banner__btn-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../images/icon/icon-arrow.png");
  background-size: 3.8rem 1.1rem;
  background-repeat: repeat-x;
  background-position: 0 center;
  left: 0;
  top: 0;
  transition: background-position 0.3s ease;
}

@keyframes arrowSlideRightPartial {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(1.2rem);
    opacity: 1;
  }
}
@keyframes arrowSlideInPartial {
  0% {
    transform: translateX(-0.8rem);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes telArrowSlide {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: 3.8rem center;
  }
}
.company {
  padding: 10rem 0 10.1rem;
  background: #ffffff;
}
.company .container {
  max-width: 124rem;
}
.company .section-title__en {
  margin: 0 0 1.4rem;
}
.company .section-title__highlight::before {
  top: -0.1rem;
  left: 0.1rem;
}
@media screen and (max-width: 768px) {
  .company {
    padding: 3.9rem 0 10rem;
  }
  .company .container {
    max-width: 35rem;
  }
  .company .section-title__en {
    margin: 0 0 1.1rem;
  }
  .company .section-title {
    margin-bottom: 2.8rem;
  }
}

.company__info {
  display: flex;
  flex-direction: column;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .company__info {
    gap: 0.5rem;
  }
}

.company__info-row {
  display: flex;
  border-bottom: 1px solid #cccccc;
  padding: 1.6rem 0 1.5rem;
}
.company__info-row dt {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  color: #282828;
  width: 25rem;
  flex-shrink: 0;
}
.company__info-row dd {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #282828;
  font-weight: 400;
  margin: 0;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .company__info-row {
    flex-direction: column;
    gap: 0;
    padding-bottom: 0.2rem;
    padding-top: 0;
  }
  .company__info-row dt {
    width: 100%;
  }
}

.company__info-row:nth-child(3) {
  padding: 1.4rem 0 1.7rem;
}
@media screen and (max-width: 768px) {
  .company__info-row:nth-child(3) {
    padding: 1.4rem 0 0.5rem;
    padding-top: 0;
  }
}
.company__info-row:nth-child(3) dd {
  max-width: 42.6rem;
}

.company__info-row:last-child {
  padding: 1.6rem 0 1.3rem;
}
@media screen and (max-width: 768px) {
  .company__info-row:last-child {
    padding-top: 0;
    padding-bottom: 0.7rem;
  }
  .company__info-row:last-child dt {
    margin-bottom: 0.4rem;
  }
}

.company__info-row--access dd {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}

.company__address p {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
.company__address p:last-child {
  margin-bottom: 0;
}

.company__address p:nth-child(2) {
  margin-bottom: -0.2rem;
  margin-top: 0.2rem;
}
@media screen and (max-width: 768px) {
  .company__address {
    margin-bottom: 0.2rem;
    margin-top: 0.3rem;
    line-height: 1.5;
  }
}

.company__contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.company__tel-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  padding: 0.8rem 0.5rem 0.8rem 2.8rem;
  background: #fe0e00;
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  gap: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.company__tel-btn:hover .company__tel-arrow::before {
  background-position: 3.8rem center;
}

.company__tel-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -0.5rem;
}
@media screen and (max-width: 768px) {
  .company__tel-icon {
    width: 2rem;
    height: 2rem;
    margin-right: unset;
  }
}
.company__tel-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.company__tel-number {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
  color: #ffffff;
}

.company__tel-divider {
  width: 1px;
  height: 3.4rem;
  background: #ffffff;
  flex-shrink: 0;
}

.company__tel-arrow {
  position: relative;
  width: 3.3rem;
  height: 0.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.company__tel-arrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../images/icon/icon-arrow.png");
  background-size: 3.8rem 1.1rem;
  background-repeat: repeat-x;
  background-position: 0 center;
  filter: brightness(0) invert(1);
  left: 0;
  top: 0;
  transition: background-position 0.3s ease;
}

.company__fax {
  font-family: "Lato", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #282828;
  margin: 0;
}

.company__transport {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company__transport li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: #767676;
  margin-bottom: 0.8rem;
}
.company__transport li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .company__transport {
    margin-bottom: 4rem;
  }
}

.company__map {
  flex: 1;
  height: 36rem;
  background: #f6f7fa;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .company__map {
    height: 25rem;
  }
}
.company__map iframe {
  height: 36rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .company__map iframe {
    height: 25rem;
  }
}

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

.company__cert-btn {
  display: inline-flex;
  align-items: center;
  width: 18.7rem;
  padding: 0.6rem 0.5rem 0.8rem 2.8rem;
  border: 1px solid #fe0e00;
  border-radius: 4px;
  color: #fe0e00;
  text-decoration: none;
  gap: 1.2rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.company__cert-btn:hover .company__cert-arrow::before {
  background-position: 3.8rem center;
}

.company__cert-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #fe0e00;
  white-space: nowrap;
}

.company__cert-divider {
  width: 1px;
  height: 3.4rem;
  background: #fe0e00;
  flex-shrink: 0;
}

.company__cert-arrow {
  position: relative;
  width: 3.3rem;
  height: 1.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.company__cert-arrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../images/icon/icon_arrow_more-hoz.png");
  background-size: 3.8rem 1rem;
  background-repeat: repeat-x;
  background-position: 0 center;
  left: 0;
  top: 0;
  transition: background-position 0.3s ease;
}

.other-links {
  position: relative;
  padding: 9.9rem 0 10rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .other-links {
    padding: 10.5rem 0 10rem;
  }
}
.other-links .section-title {
  margin-bottom: -0.1rem;
  margin-left: -4rem;
}
@media screen and (max-width: 768px) {
  .other-links .section-title {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .other-links .section-title .section-title__en {
    margin-top: -0.3rem;
    margin-bottom: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .other-links .section-title.animate-in .section-title__highlight::before {
    width: 6.3rem;
    height: 4.1rem;
  }
}

.other-links__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.other-links__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-links .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  max-width: 104rem;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .other-links .container {
    align-items: flex-start;
  }
}

.other-links__grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 4rem;
}
@media screen and (max-width: 1024px) {
  .other-links__grid {
    flex-direction: column;
    gap: 3.95rem;
  }
}

.other-link-card {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.other-link-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .other-link-card__header {
    gap: 0.9rem;
  }
}

.other-link-card__title-en {
  font-family: "Lato", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .other-link-card__title-en {
    font-size: 3.2rem;
  }
}

.other-link-card__title-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  margin: 0;
}

.other-link-card__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 25rem;
  padding: 1.2rem 0.5rem 1.2rem 2.8rem;
  background: #fe0e00;
  border-radius: 4px;
  color: #ffffff;
  text-decoration: none;
  gap: 1.2rem;
  transition: all 0.3s ease;
}
.other-link-card__btn:hover .other-link-card__arrow::before {
  background-position: 3.8rem center;
}

.other-link-card__btn-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
}

.other-link-card__divider {
  width: 1px;
  height: 3.4rem;
  background: #ffffff;
  flex-shrink: 0;
}

.other-link-card__arrow {
  position: relative;
  width: 3.3rem;
  height: 0.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.other-link-card__arrow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../images/icon/icon-arrow.png");
  background-size: 3.8rem 1.1rem;
  background-repeat: repeat-x;
  background-position: 0 center;
  filter: brightness(0) invert(1);
  left: 0;
  top: 0;
  transition: background-position 0.3s ease;
}

.error-page {
  min-height: calc(100vh - 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .error-page {
    min-height: calc(100vh - 4.8rem);
    padding: 6rem 2rem;
  }
}

.error-page__content {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}

.error-page__number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .error-page__number {
    gap: 0.8rem;
    margin-bottom: 3rem;
  }
}

.error-page__digit {
  font-family: "Lato", sans-serif;
  font-size: 20rem;
  font-weight: 900;
  line-height: 1;
  color: #cccccc;
}
@media screen and (max-width: 768px) {
  .error-page__digit {
    font-size: 12rem;
  }
}

.error-page__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #282828;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .error-page__title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
}

.error-page__message {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #767676;
  margin: 0 0 4.8rem;
}
@media screen and (max-width: 768px) {
  .error-page__message {
    font-size: 1.4rem;
    margin-bottom: 3.2rem;
  }
}

.error-page__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .error-page__actions {
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 4.8rem;
  }
}

.error-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.6rem 3.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .error-page__btn {
    width: 100%;
    max-width: 32rem;
    padding: 1.4rem 2.4rem;
    font-size: 1.4rem;
  }
}
.error-page__btn--primary {
  background: #fe0e00;
  color: #ffffff;
}
.error-page__btn--primary:hover {
  background: rgb(213.36, 11.76, 0);
  transform: translateX(4px);
}
.error-page__btn--secondary {
  background: #ffffff;
  color: #282828;
  border: 2px solid #cccccc;
}
.error-page__btn--secondary:hover {
  border-color: #282828;
  background: #f6f6f6;
}

.error-page__btn-icon {
  width: 2rem;
  height: 2rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .error-page__btn-icon {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.error-page__btn--primary:hover .error-page__btn-icon {
  transform: translateX(4px);
}

.error-page__links {
  padding-top: 4.8rem;
  border-top: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .error-page__links {
    padding-top: 3.2rem;
  }
}

.error-page__links-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #282828;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .error-page__links-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.error-page__links-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem 4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .error-page__links-list {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.error-page__links-list li {
  margin: 0;
}
.error-page__links-list a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #282828;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .error-page__links-list a {
    font-size: 1.4rem;
  }
}
.error-page__links-list a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fe0e00;
  transition: all 0.3s ease;
}
.error-page__links-list a:hover {
  color: #fe0e00;
}
.error-page__links-list a:hover::after {
  width: 100%;
}

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