@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: "Zen Kaku Gothic New", 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;
  }
}

.is-pc__flex {
  display: flex !important;
}
@media screen and (max-width: 768px) {
  .is-pc__flex {
    display: none !important;
  }
}

.is-sp__flex {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .is-sp__flex {
    display: flex !important;
  }
}

nav li::marker,
.header li::marker,
.footer li::marker,
.menu li::marker {
  content: "";
}

main {
  overflow: hidden;
}

.page-wating {
  padding: 20rem 0;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
}
.page-wating h1 {
  font-size: 4rem;
  color: #333;
}

.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: auto;
  height: 3rem;
}
@media screen and (max-width: 768px) {
  .header__logo-text {
    max-width: 8.7rem;
    height: auto;
    width: auto;
    max-height: 2.2rem;
  }
}

.header__nav {
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
  display: flex;
  padding: 0 1.6rem 0 2.4rem;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__nav.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@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;
  position: relative;
}
.header__nav-list li:hover {
  color: #fe0e00;
}
.header__nav-list li:hover .sub-menu {
  display: flex;
}
.header__nav-list li:hover > a {
  color: #fe0e00;
}
.header__nav-list li:hover::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 6rem;
}
.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;
  white-space: nowrap;
}
.header__nav-list a:hover {
  color: #fe0e00;
}
.header__nav-list .sub-menu {
  position: absolute;
  top: 5rem;
  background: #fff;
  padding: 3.3rem 3.2rem 3.3rem 3.3rem;
  display: none;
  flex-direction: column;
  gap: 1.6rem;
  border-radius: 0.8rem;
  min-width: 21rem;
  left: 60%;
  transform: translateX(-50%);
}
.header__nav-list .sub-menu li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.4rem;
  line-height: 1.4;
}
.header__nav-list .sub-menu li::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background: #fe0e00;
  position: absolute;
  left: 0.2rem;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.header__nav-list .sub-menu:hover {
  display: flex;
}

.header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  flex-direction: row;
  justify-content: flex-end;
  margin: 0 2rem;
  padding: 0 0.4rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__search {
    display: none;
  }
}
.header__search.is-open {
  border: 1px solid #ccc;
}
.header__search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 101;
}
.header__search-form {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.4s ease, opacity 0.3s ease;
}
.header__search-form.is-open {
  max-width: 25rem;
  opacity: 1;
}
.header__search-form form {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 2px;
  padding: 0.4rem 1.2rem;
  background: #fff;
  white-space: nowrap;
}
.header__search-input {
  width: 20rem;
  height: 3rem;
  padding: 0;
  border: none;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  color: #282828;
  background: transparent;
}
.header__search-input::placeholder {
  color: #282828;
  font-weight: 600;
}
.header__search-input:focus {
  outline: none;
}

.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: 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);
}

.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: auto;
  right: -100%;
  width: 100%;
  height: calc(100vh - 6rem);
  background: rgba(48, 61, 82, 0.9);
  background-blend-mode: multiply;
  z-index: 999;
  overflow-y: hidden;
  transition: right 0.3s ease;
  display: flex;
  justify-content: flex-end;
  align-items: end;
}
.header__mobile-menu.is-open {
  width: 100%;
  right: 0;
  top: auto;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .header__mobile-menu {
    display: none;
  }
}

.header__mobile-nav {
  padding: 3rem 2.3rem 10rem;
  max-width: 37rem;
  width: 100%;
  background-color: #ffffff;
  height: 100%;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  overflow-y: auto;
}

.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 #fe0e00 !important;
  cursor: pointer;
}
.header__mobile-nav-list li:hover a {
  color: #fe0e00;
}
.header__mobile-nav-list a {
  padding: 1.2rem 0.2rem 0.8rem 0rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #282828;
  pointer-events: none;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__mobile-nav-list a:hover {
  color: #fe0e00;
}
.header__mobile-nav-list a::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  padding-bottom: 0.4rem;
  content: "+";
  font-size: 3.4rem;
  color: #fe0e00;
  font-weight: 300;
  transition: transform 0.3s ease, content 0.3s ease;
  position: relative;
  top: -0.1rem;
}
.header__mobile-nav-list a.is-open {
  border-bottom: 0;
}
.header__mobile-nav-list a.is-open::after {
  content: "−";
  transform: rotate(180deg);
  position: relative;
  top: 0.4rem;
}

/* Mobile Menu */
.header__mobile-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__mobile-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

.header__mobile-nav-item {
  border-bottom: 1px solid #fe0e00 !important;
}

@media screen and (max-width: 768px) {
  .header__mobile-nav-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .header__mobile-nav-list li.is-external a::after {
    content: "→" !important;
    font-size: 2.2rem;
    display: flex;
    position: relative;
    top: -0.1rem;
  }
  .header__mobile-nav-list li.is-open a::after {
    content: "−";
    transform: rotate(180deg);
    position: relative;
    top: 0.2rem;
  }
  .header__mobile-nav-list .header__mobile-nav-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0.2rem 1.1rem 0rem;
    cursor: pointer;
  }
  .header__mobile-nav-list .header__mobile-nav-list a span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #282828;
    letter-spacing: -0.02em;
  }
  .header__mobile-nav-list .header__mobile-nav-list a .footer__nav-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .header__mobile-nav-list .sub-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
    list-style: none;
    padding: 0;
  }
  .header__mobile-nav-list .sub-menu a {
    border-bottom: 0 !important;
    pointer-events: auto;
  }
  .header__mobile-nav-list .sub-menu a::after {
    display: none !important;
  }
  .header__mobile-nav-list .sub-menu li {
    border-bottom: 0 !important;
  }
  .header__mobile-nav-list li.is-open .sub-menu {
    max-height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: -0.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
  }
  .header__mobile-nav-list .sub-menu li {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #282828;
    letter-spacing: -0.02em;
    padding-left: 1.6rem;
  }
  .header__mobile-nav-list .sub-menu li a {
    font-size: 1.4rem;
    color: #282828;
    text-decoration: none;
    padding: 0;
  }
  .header__mobile-nav-list .sub-menu li a:hover {
    color: #fe0e00;
  }
}
.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;
}
@media screen and (max-width: 768px) {
  .footer .container {
    margin: 0 auto;
  }
}

.footer__top {
  display: flex;
  gap: 17.2rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 1440px) {
  .footer__top {
    gap: 16.4rem;
    margin-bottom: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 0;
    margin-bottom: 5.2rem;
  }
}

.footer__company {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 25.1rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1440px) {
  .footer__company {
    gap: 2.9rem;
  }
}
@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;
  }
}

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

.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: 1440px) {
  .footer__nav {
    margin-top: -0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}

.footer__nav-top {
  display: flex;
  gap: 10rem;
}
@media screen and (max-width: 1440px) {
  .footer__nav-top {
    gap: 8rem;
    padding-left: 0;
    margin: 0;
  }
}
.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: 1440px) {
  .footer__nav-cols {
    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 h4 a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
}

.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;
  list-style: none !important;
}
.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;
    padding: 0;
    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%;
    margin-top: 6.24rem;
  }
}

@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;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer__nav-subitems::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .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;
  }
}
.scroll-top-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .scroll-top-btn {
    position: fixed;
    right: 1.6rem;
    bottom: 2rem;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    border: none;
    background-color: #fe0e00;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .scroll-top-btn svg {
    width: 2rem;
    height: 2rem;
  }
}

@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(90%);
    opacity: 0;
  }
  51% {
    transform: rotate(-90deg) translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: rotate(-90deg) translateY(0);
    opacity: 1;
  }
}
@keyframes arrowSlideRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(0.6rem);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrowBackgroundSlide {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: 3.8rem center;
  }
}
@keyframes arrowBackgroundSlide2 {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: 3.1rem center;
  }
}
@keyframes arrowBackgroundSlideLeft {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -3.8rem center;
  }
}
@keyframes arrowBackgroundSlideLeft2 {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -4.5rem center;
  }
}
@media screen and (max-width: 1440px) {
  .container {
    margin: 0 12rem;
  }
}

.footer__tse {
  background-color: #eee;
}
@media screen and (max-width: 768px) {
  .footer__tse {
    margin-top: 1.2rem;
    background-color: #eee;
  }
}

@media screen and (max-width: 1440px) {
  .footer__nav {
    margin-top: -0.4rem;
  }
}

@media screen and (max-width: 1440px) {
  .footer__nav-col ul {
    margin: 0 0 2.3rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-mobile {
    margin-top: 6.7rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-subitems::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-subitems li a {
    color: #000000;
    font-weight: 500;
  }
}

.container {
  max-width: 144rem;
  margin: 0 auto;
  box-sizing: content-box;
  position: relative;
}

.box-sizing-border {
  box-sizing: border-box;
}

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

.section-title__en {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  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: 5rem;
    height: 3.8rem;
  }
}

@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.6rem;
  line-height: 1.7;
  color: #282828;
  margin: 0;
}

.section-title__dot {
  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;
}

.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,
.is-active.company-glance__number .countup__part {
  translate: 0 calc(var(--digit) * -1lh);
}

.countup__dot,
.countup__comma {
  display: inline-block;
  width: auto;
}

.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-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .stat-card__details-wrapper {
    gap: 1.5rem;
    padding: 0 9rem;
  }
}

.stat-card__details {
  display: flex;
  flex-direction: column;
  gap: 1.166rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.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;
  }
}

.hero {
  height: auto;
}

.hero-lines {
  display: flex;
  flex-direction: column;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line__inner {
  display: inline-flex;
  flex-wrap: nowrap;
  --hero-char-offset: 0s;
}

.hero-title .hero-line__inner {
  --hero-char-offset: 0.15s;
}

.hero-lines--subtitle .hero-line__inner {
  flex-wrap: wrap;
  --hero-char-offset: 0.45s;
}

.hero-char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 110%, 0);
  animation: heroCharRise 0.6s cubic-bezier(0.25, 0.9, 0.35, 1) forwards;
  animation-delay: calc(var(--hero-char-offset, 0s) + var(--char-delay, 0s));
  will-change: transform, opacity;
}

@keyframes heroCharRise {
  from {
    opacity: 0;
    transform: translate3d(0, 110%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes arrowSlideRightPartial {
  0% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
  100% {
    transform: translateX(2rem) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
}
@keyframes arrowSlideInPartial {
  0% {
    transform: translateX(-0.8rem) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
    opacity: 1;
  }
}
.hero-news .quick-nav__arrow::before {
  --arrow-rotation: 0deg;
  transform: translateX(0) rotate(var(--arrow-rotation, 0deg));
}

.hero-news .quick-nav__arrow--mail::before {
  --arrow-rotation: -90deg;
}

.hero-news .quick-nav__arrow {
  overflow: hidden;
}

.hero-news:hover .quick-nav__arrow::before {
  animation: arrowSlideRightPartial 0.32s ease forwards, arrowSlideInPartial 0.32s ease 0.32s forwards;
}

.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;
  filter: none;
}
.quick-nav__arrow.quick-nav__arrow--mail::before {
  transform: rotate(-90deg);
}

.hero-container {
  display: flex;
  width: 100%;
  max-width: 144rem;
  min-height: 80rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1441px) {
  .hero-container {
    max-width: 100%;
  }
}

/* ===== LEFT (repeat vertical) ===== */
.hero-left {
  width: 26%;
  background-image: url("../../images/pages/home/worker-left.jpg");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center top;
  max-width: 37.1rem;
}
@media screen and (max-width: 768px) {
  .hero-left {
    position: absolute;
    width: 14.5rem;
    height: 16rem;
    left: 0;
    top: 6.8rem;
    border-top-right-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
    background-image: url("../../images/pages/v2/worker-left-sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  .hero-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
@media screen and (min-width: 1441px) {
  .hero-left {
    max-width: 26%;
    background-size: cover;
  }
}

/* ===== CENTER ===== */
.hero-center {
  width: 50%;
  max-width: 70rem;
  position: relative;
  background-image: url("../../images/pages/home/city.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hero-center {
    width: 100%;
    height: 69.9rem;
  }
}
@media screen and (min-width: 1441px) {
  .hero-center {
    max-width: 100%;
  }
}

/* ===== RIGHT ===== */
.hero-right {
  width: 26%;
  max-width: 37rem;
  background-image: url("../../images/pages/home/worker-right.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .hero-right {
    position: absolute;
    background-image: url("../../images/pages/v2/worker-right-sp.jpg");
    width: 15.2rem;
    height: 20rem;
    right: 0;
    bottom: 29.2rem;
    border-top-left-radius: 0.8rem;
    border-bottom-left-radius: 0.8rem;
  }
  .hero-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
@media screen and (min-width: 1441px) {
  .hero-right {
    max-width: 26%;
  }
}

/* ===== OVERLAY TEXT ===== */
.hero-overlay {
  width: 100%;
  max-width: 44rem;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .hero-overlay {
    padding: 0 2.4rem;
    position: absolute;
    top: 21.2%;
  }
}

.hero-title {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 6.4rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
  }
}

.hero-subtitle {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.8rem;
  }
}

.hero-news {
  background: #fff;
  position: absolute;
  bottom: 6.4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 1.2rem 1.6rem;
  gap: 1.5rem;
  border-radius: 0.8rem;
  left: 50%;
  transform: translateX(-100%);
}
@media screen and (max-width: 768px) {
  .hero-news {
    left: 50%;
    transform: translateX(-50%);
    bottom: 19.7rem;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.2rem 2rem 1.5rem;
    max-width: 35rem;
    align-items: flex-start;
    width: 100%;
  }
}

.hero-news__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fe0e00;
}
@media screen and (max-width: 768px) {
  .hero-news__title {
    letter-spacing: 0.07em;
  }
}

.hero-news__date {
  font-size: 1.2rem;
  font-weight: 500;
  color: #767676;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 768px) {
  .hero-news__date {
    font-size: 1.2rem;
    margin-right: 1.5rem;
  }
}

.hero-news__desc {
  font-size: 1.3rem;
  font-weight: 500;
  color: #767676;
  margin-right: 0.8rem;
}
@media screen and (max-width: 768px) {
  .hero-news__desc {
    font-size: 1.5rem;
    max-width: 19.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.hero-news__content {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-left: 1.5rem;
  border-left: 1px solid #fe0e00;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .hero-news__content {
    border: none;
    padding-left: 0;
    gap: 0.8rem;
  }
}

.quick-nav {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  max-width: 104rem;
  border-radius: 0.8rem;
  z-index: 10;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .quick-nav {
    width: 100%;
    max-width: 35.3rem;
    bottom: 3.4rem;
  }
  .quick-nav .quick-nav__arrow {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.quick-nav .quick-nav__arrow {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  flex-shrink: 0;
  border: 1px solid #fe0e00;
  background: #fe0e00;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .quick-nav .quick-nav__arrow {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.quick-nav .quick-nav__arrow::before {
  content: "";
  position: absolute;
  width: 2.6rem;
  height: 1.4rem;
  background-image: url("../../images/icon/icon_arrow_more.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}
.quick-nav .quick-nav__arrow.quick-nav__arrow--mail::before {
  transform: rotate(-90deg);
}

.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;
  width: 50%;
  max-width: 50rem;
  background: #fff;
  border-radius: 0.8rem;
  padding: 2rem 4rem;
  box-shadow: 0 0 1rem rgba(105, 105, 105, 0.2);
  text-decoration: none;
  color: #282828;
}
@media screen and (max-width: 768px) {
  .quick-nav__item {
    flex-direction: column;
    height: auto;
    padding: 0.8rem 1.55rem;
    max-width: 17.3rem;
    border: 0.1rem solid #fe0e00;
    gap: 1.2rem;
  }
}

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

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

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

.quick-nav__icon {
  width: 4rem;
  height: 4rem;
  margin-right: 0.8rem;
}
.quick-nav__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .quick-nav__icon {
    margin: 0;
  }
}

.quick-nav__title {
  color: #fe0e00;
  font-size: 2.4rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .quick-nav__title {
    font-size: 2rem;
  }
}

.quick-nav__subtitle {
  margin-left: -0.5rem;
}

.company-glance {
  padding: 10rem 10rem 0 10rem;
  background-color: #fff;
}
.company-glance .company-glance__inner {
  max-width: 128rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .company-glance {
    padding: 0;
    margin-top: 0;
  }
  .company-glance .company-glance__inner {
    padding: 4.6rem 2rem 0;
    margin: 0 auto;
  }
}
.company-glance .section-title {
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 768px) {
  .company-glance .section-title {
    margin-bottom: 2.4rem;
  }
}
.company-glance .section-title.animate-in .section-title__highlight::before {
  width: 5.8rem;
}
.company-glance .section-title__en {
  letter-spacing: 0.03em;
}
.company-glance .section-title__en span {
  margin-left: 0.6rem;
}
@media screen and (max-width: 768px) {
  .company-glance .section-title__en {
    margin-bottom: 0.8rem;
    display: block;
    font-size: 3.2rem !important;
    margin-top: -0.4rem;
    line-height: 1.3;
  }
  .company-glance .section-title__en span {
    margin-left: 0rem;
  }
}
.company-glance .section-title__en .section-title__highlight {
  margin-left: 0;
}
.company-glance .section-title__en .section-title__highlight::before {
  top: 0;
  left: 0.1rem;
}
@media screen and (max-width: 768px) {
  .company-glance .section-title__en .section-title__highlight::before {
    top: 0.4rem;
  }
}
.company-glance .section-title.animate-in .section-title__highlight::before {
  width: 5.8rem;
}
.company-glance .company-glance__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 32px;
  position: relative;
  padding-left: 12px;
}
.company-glance .company-glance__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 24px;
  background-color: #e60012;
  transform: translateY(-50%);
}
.company-glance .company-glance__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .company-glance .company-glance__list {
    flex-direction: column;
    max-width: 35rem;
    margin: 0 auto;
    gap: 1.6rem;
  }
}
.company-glance .company-glance__item {
  width: 25%;
  max-width: 29.2rem;
  border: 1px solid #e60012;
  border-radius: 8px;
  padding: 2rem 1.6rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .company-glance .company-glance__item {
    padding: 2rem 1.6rem 1.3rem;
    width: 100%;
    flex-direction: row;
    max-width: 100%;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .company-glance .company-glance__info {
    min-width: 19.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.company-glance .company-glance__icon {
  width: 8rem;
}
.company-glance .company-glance__icon img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .company-glance .company-glance__icon {
    position: relative;
    top: 0.6rem;
  }
}
.company-glance .company-glance__label {
  font-size: 2rem;
  color: #e60012;
  font-weight: 700;
}
.company-glance .company-glance__value {
  color: #e60012;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  margin-top: -0.4rem;
}
.company-glance .company-glance__number {
  font-size: 7.2rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  font-style: italic;
  display: flex;
  align-items: flex-start;
  height: 1lh;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .company-glance .company-glance__number {
    font-size: 6.4rem;
  }
}
.company-glance .company-glance__number-small .countup__dot {
  font-size: 4rem;
  position: relative;
  top: 3rem;
}
@media screen and (max-width: 768px) {
  .company-glance .company-glance__number-small .countup__dot {
    top: 2.3rem;
  }
}
.company-glance .company-glance__number-small .countup__part:nth-of-type(4) {
  font-size: 4rem !important;
  position: relative;
  top: 1rem;
  line-height: 9rem;
}
@media screen and (max-width: 768px) {
  .company-glance .company-glance__number-small .countup__part:nth-of-type(4) {
    top: 0.2rem;
  }
}
.company-glance .company-glance__unit {
  font-size: 2rem;
  margin-left: 0.8rem;
  font-weight: 700;
  position: relative;
  top: -0.5rem;
}
.company-glance .company-glance__note {
  margin-top: 3.6rem;
  font-size: 1.4rem;
  color: #666;
  text-align: right;
}

.section-desc {
  font-size: 1.6rem;
}

.section-title__ja {
  margin-bottom: 1.6rem !important;
}

.service {
  padding: 10rem 0rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 8rem 0rem 2.1rem;
  }
}
.service .service__inner {
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.service .service__title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  padding-left: 12px;
}
.service .service__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 24px;
  background: #e60012;
  transform: translateY(-50%);
}
.service .section-title {
  margin-bottom: 4.4rem;
}
@media screen and (max-width: 768px) {
  .service .section-title {
    padding-left: 2rem;
    margin-bottom: 3.8rem;
  }
}
.service .section-title__en {
  margin: -0.3rem 0 1.5rem;
}
.service .section-title__en .section-title__highlight::before {
  top: -0.2rem;
  left: -0.2rem;
}
@media screen and (max-width: 768px) {
  .service .section-title__en .section-title__highlight::before {
    left: 0rem;
  }
}
.service .section-title.animate-in .section-title__highlight::before {
  width: 6rem;
  height: 3.8rem;
}
@media screen and (max-width: 768px) {
  .service .section-title.animate-in .section-title__highlight::before {
    width: 6.6rem;
    height: 3.8rem;
  }
}
.service .section-title__ja {
  margin-bottom: 1.8rem !important;
}
.service .service__desc {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 32px;
}
.service .service__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 5.9rem;
}
@media screen and (max-width: 768px) {
  .service .service__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    row-gap: 2.4rem;
    margin-bottom: 4.1rem;
  }
}

/* =========================
     Service Card
  ========================= */
.service-card {
  position: relative;
}
.service-card .service-card__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #333;
}
.service-card .service-card__image {
  border-radius: 0.8rem;
  overflow: hidden;
}
.service-card .service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card .service-card__label {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8rem;
  text-align: left;
  position: relative;
  padding-right: 4.8rem;
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
}
.service-card .service-card__label::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border: 1px solid #cccccc;
  z-index: 1;
}
.service-card .service-card__label::after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1rem;
  top: 50%;
  margin-top: -0.5rem;
  right: 0.6rem;
  transform: rotate(-90deg);
  background-image: url("../../images/icon/icon_arrow_more.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: none;
  z-index: 2;
}
.service-card:hover .service-card__label::after {
  animation: arrowSlideDownRotated 0.6s ease-in-out;
}
.service-card:hover .service-card__label::before {
  border: 1px solid #fe0e00;
}
.service-card:hover img {
  transform: scale(1.1);
}
.service-card {
  /* large card */
}
.service-card--large {
  grid-column: span 2;
  margin-bottom: 2rem;
  position: relative;
}
.service-card--large .service-card__image {
  min-height: 30rem;
}
.service-card--large .service-card__label {
  border-top-left-radius: 0.8rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  margin-top: 0;
  font-size: 2rem;
  padding: 1.6rem 5.6rem 1.6rem 2rem;
  line-height: 1.4;
  margin-bottom: -0.1rem;
  margin-right: -0.1rem;
}
.service-card--large .service-card__label .service-card__conner {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  background-image: url("../../images/pages/v2/service-card-conner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.service-card--large .service-card__label .conner-top-right {
  top: -0.7rem;
  right: -0.01rem;
}
.service-card--large .service-card__label .conner-bottom-left {
  bottom: -0.02rem;
  left: -0.7rem;
}
.service-card--large .service-card__label::before {
  width: 4rem;
  height: 4rem;
}
.service-card--large .service-card__label:after {
  width: 1.6rem;
  height: 1.4rem;
  top: 36%;
  margin-top: 0.1rem;
  right: 1.2rem;
}
@media screen and (max-width: 768px) {
  .service-card--large {
    margin-bottom: 0.8rem;
  }
  .service-card--large .service-card__image {
    min-height: 22rem;
    margin-bottom: 0;
  }
  .service-card--large .service-card__label {
    padding: 1.4rem 5.6rem 1.4rem 1.6rem;
  }
  .service-card--large .service-card__label:after {
    margin-top: 0rem;
  }
}
.service-card {
  /* normal card */
}
.service-card:not(.service-card--large):not(.service-card--small) .service-card__image {
  min-height: 180px;
}
.service-card {
  /* small icon card */
}
.service-card--small {
  text-align: center;
  margin-bottom: 0.8rem;
}
.service-card--small img {
  width: 100%;
  border-radius: 0.8rem;
}
@media screen and (max-width: 768px) {
  .service-card--small .service-card__label {
    line-height: 1.4;
    margin-top: 1.2rem;
  }
  .service-card--small .service-card__label::before {
    top: -0.2rem;
    transform: translateY(0%);
  }
  .service-card--small .service-card__label::after {
    top: 1rem;
    right: 0.6rem;
  }
  .service-card--small {
    margin-bottom: 0rem;
  }
  .service-card--small .service-card__image {
    min-height: 12rem;
  }
  .service-card--small .service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.service-estimate {
  width: calc(100% - 0.2rem);
  margin-left: 0.1rem;
}
.service-estimate .section-title {
  margin-bottom: 0 !important;
}
.service-estimate .section-title .section-title__en {
  color: #fff !important;
  margin: 0 0 1.2rem;
  position: relative;
  top: -0.2rem;
  letter-spacing: 0.03em;
}
.service-estimate .section-title .section-title__highlight {
  color: #fe0e00 !important;
}
.service-estimate .section-title .section-title__highlight::before {
  background: #fff !important;
  top: -0.1rem;
  left: 0.1rem;
}
.service-estimate .section-title .section-title__ja {
  color: #fff !important;
  margin-bottom: 0 !important;
}
.service-estimate .section-title .section-title__dot {
  color: #fff !important;
}
.service-estimate {
  background: #fe0e00;
  padding: 4rem;
  border-radius: 0.8rem;
}
@media screen and (max-width: 768px) {
  .service-estimate {
    padding: 3.6rem 2rem 3.9rem;
    width: calc(100% - 0.1rem);
    margin-left: 0.05rem;
  }
  .service-estimate .section-title {
    padding-left: 0;
  }
  .service-estimate .section-title__en {
    font-size: 3.2rem !important;
    line-height: 1.2;
    margin: 0 0 1rem !important;
  }
  .service-estimate .service-estimate__text {
    font-size: 2rem !important;
    text-align: start !important;
    margin-top: 0rem !important;
  }
  .service-estimate .section-title__highlight::before {
    top: 0.2rem !important;
  }
  .service-estimate .section-title.animate-in .section-title__highlight::before {
    width: 6rem !important;
  }
}
.service-estimate .service-estimate__inner {
  max-width: 128rem;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .service-estimate .service-estimate__inner {
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    gap: 1.5rem;
  }
}
.service-estimate .service-estimate__content {
  display: flex;
  align-items: center;
  gap: 14.1rem;
}
@media screen and (max-width: 768px) {
  .service-estimate .service-estimate__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
}
.service-estimate .service-estimate__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  padding-left: 12px;
}
.service-estimate .service-estimate__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 24px;
  background: #fff;
  transform: translateY(-50%);
}
.service-estimate .service-estimate__text {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: -0.1rem;
}
.service-estimate .service-estimate__action {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .service-estimate .service-estimate__action {
    width: 100%;
  }
}
.service-estimate .service-estimate__button {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.6rem 0.5rem 0.8rem 2.4rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 0.4rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.service-estimate .service-estimate__button .service-estimate__button__divider {
  width: 1px;
  height: 3.4rem;
  background: #ffffff;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .service-estimate .service-estimate__button {
    width: calc(100% + 0.2rem);
    justify-content: space-between;
    padding: 1.2rem 0rem 1rem 2.2rem;
    margin-left: -0.1rem;
  }
}
.service-estimate .service-estimate__arrow {
  width: 3.3rem;
  height: 0.8rem;
  display: inline-flex;
  flex-shrink: 0;
  background-image: url("../../images/icon/icon-arrow.png");
  background-size: 3.8rem 1.1rem;
  background-repeat: repeat-x;
  background-position: 0 center;
  animation: none;
}
.service-estimate:hover .service-estimate__arrow {
  animation: arrowBackgroundSlide 0.6s ease-in-out forwards;
}

/* =========================
    Company Section
  ========================= */
.service-area {
  display: flex;
  margin-top: -2.2rem;
  margin-bottom: 2.4rem;
  justify-content: space-between;
  position: relative;
  bottom: 0;
  max-width: unset;
  left: auto;
  transform: unset;
  border-radius: unset;
}
@media screen and (max-width: 768px) {
  .service-area {
    margin-top: -0.1rem;
    margin-bottom: 4rem;
  }
}
.service-area .service-area__map {
  max-width: 33.4rem;
  margin-left: 9.1rem;
}
@media screen and (max-width: 768px) {
  .service-area .service-area__map {
    display: none;
  }
}
.service-area .service-area__map img {
  width: 100%;
}
.service-area .quick-nav__item {
  width: 100%;
  max-width: 67.1rem;
  background: #fff;
  padding: 6rem 4rem;
  height: auto;
  box-shadow: none;
  border: 1px solid #fe0e00;
}
@media screen and (max-width: 768px) {
  .service-area .quick-nav__item {
    padding: 4rem 2rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .service-area .quick-nav__item-content {
    gap: 0.4rem;
    flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  .service-area .quick-nav__subtitle {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .service-area .quick-nav__arrow {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .service-area .quick-nav__title {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-left: 1rem;
  }
}

.company-section {
  padding: 10rem 0 16.05rem;
  background: #f7f7f7;
}
@media screen and (max-width: 768px) {
  .company-section {
    padding: 10rem 0 10.2rem;
  }
}
.company-section .section-title__en {
  letter-spacing: 0.06em;
}
.company-section .section-title {
  margin-bottom: 3.9rem;
}
@media screen and (max-width: 768px) {
  .company-section .section-title {
    margin-bottom: 4.1rem;
    padding: 0.1rem 0 0;
  }
}
.company-section .company-section__inner {
  max-width: 128rem;
  padding: 0 2rem;
  margin: 0 auto;
}
.company-section .company-section__title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
}
.company-section .company-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 24px;
  background: #e60012;
  transform: translateY(-50%);
}
.company-section .company-section__sub {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 32px;
}
.company-section .company-section__list {
  width: 100%;
  max-width: 104rem;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .company-section .company-section__list {
    flex-direction: column;
    gap: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .company-section .company-section__list {
    grid-template-columns: 1fr;
  }
}
.company-section {
  /* =========================
    Company Card
  ========================= */
}
.company-section .company-card {
  background: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  width: 50%;
  max-width: 49rem;
}
@media screen and (max-width: 768px) {
  .company-section .company-card {
    width: 100%;
  }
}
.company-section .company-card__link {
  display: flex;
  text-decoration: none;
  color: #333;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .company-section .company-card__link {
    flex-direction: column-reverse;
  }
}
.company-section .company-card__content {
  padding: 2.4rem;
  position: relative;
  max-width: 23.7rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .company-section .company-card__content {
    padding: 2rem;
    width: 100%;
    max-width: 100%;
  }
}
.company-section .company-card__en {
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  color: #767676;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.company-section .company-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0.8rem 0 1.2rem;
  color: #282828;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .company-section .company-card__title {
    margin: 0.7rem 0 0.9rem;
  }
}
.company-section .company-card__desc {
  font-size: 1.5rem;
  color: #282828;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .company-section .company-card__desc {
    max-width: 25.4rem;
    font-size: 1.6rem;
    line-height: 1.77;
  }
}
.company-section .company-card__arrow {
  position: absolute;
  left: 2.4rem;
  bottom: 2.4rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid #fe0e00;
  background: #fe0e00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.company-section .company-card__arrow::before {
  content: "";
  width: 1.6rem;
  height: 1rem;
  background-image: url("../../images/icon/icon_arrow_more.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  transform: rotate(-90deg);
}
@media screen and (max-width: 768px) {
  .company-section .company-card__arrow::before {
    width: 1rem;
    height: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .company-section .company-card__arrow {
    left: auto;
    right: 2rem;
    bottom: 1.85rem;
  }
}
.company-section .company-card:hover .company-card__arrow::before {
  animation: arrowSlideDownRotated 0.6s ease-in-out;
}
.company-section .company-card__image {
  overflow: hidden;
  width: 23.7rem;
  height: 28rem;
}
@media screen and (max-width: 768px) {
  .company-section .company-card__image {
    width: 100%;
    height: 18rem;
  }
}
.company-section .company-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.company-section .company-card:hover .company-card__image img {
  transform: scale(1.1);
}

.recruit {
  position: relative;
  background: #282828;
  border-radius: 4rem;
  max-width: 144rem;
  margin: auto;
}
.recruit .recruit__container {
  overflow: hidden;
  clip-path: inset(0 round 2.4rem);
  position: relative;
  z-index: 9;
}
.recruit .section-title__en {
  font-size: 5.5rem;
  margin-bottom: 1.1rem;
}
.recruit .section-title {
  margin-bottom: 0 !important;
}
.recruit .section-title .section-title__en {
  color: #fff !important;
}
@media screen and (max-width: 768px) {
  .recruit .section-title .section-title__en {
    margin-bottom: 1.9rem;
  }
}
.recruit .section-title .section-title__ja {
  color: #fff !important;
}
.recruit .section-title.animate-in .section-title__highlight::before {
  width: 10.4rem;
  height: 6.6rem;
  top: -0.1rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .recruit .section-title {
    margin-left: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit .recruit__desc {
    margin-bottom: 0.9rem !important;
    margin-top: 1.1rem !important;
    margin-left: 0.2rem !important;
  }
}
@media screen and (max-width: 768px) {
  .recruit {
    overflow: hidden;
    min-height: 84.3rem;
    border-radius: 2.4rem;
  }
}

.recruit__inner {
  max-width: 108rem;
  margin: 0 auto;
  padding: 12.4rem 2rem;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  position: relative;
  --recruit-offset-x: 0px;
  --recruit-offset-y: 0px;
  --recruit-arrow-translate-x: 0px;
  --recruit-cursor-x: 50%;
  --recruit-cursor-y: 50%;
}
@media screen and (max-width: 768px) {
  .recruit__inner {
    padding: 6.4rem 2rem;
    gap: 0;
    --recruit-offset-x: 0px !important;
    --recruit-offset-y: 0px !important;
    --recruit-arrow-translate-x: 0px !important;
    --recruit-cursor-x: 50% !important;
    --recruit-cursor-y: 50% !important;
  }
}

/* =========================
   Left Content
========================= */
.recruit__content {
  color: #fff;
  position: relative;
  z-index: 2;
  padding-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .recruit__content {
    margin-top: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }
}

.recruit__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
}

.recruit__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 28px;
  background: #e60012;
  transform: translateY(-50%);
}

.recruit__desc {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 6rem;
  max-width: 45rem;
  margin-top: 2.8rem;
}
@media screen and (max-width: 768px) {
  .recruit__desc {
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}

/* CTA */
.recruit__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  height: 20rem;
  background: #fe0e00;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
  isolation: isolate;
  transform: translate3d(var(--recruit-offset-x), var(--recruit-offset-y), 0);
  transition: transform 0.08s ease-out, background 0.3s ease;
  opacity: 0.8;
  z-index: 9;
}
.recruit__inner.is-pointer-active .recruit__button {
  transition: background 0.3s ease;
}
@media screen and (max-width: 768px) {
  .recruit__button {
    background: rgba(254, 14, 0, 0.9);
    align-self: center;
    transform: none;
  }
}
.recruit__button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at var(--recruit-cursor-x) var(--recruit-cursor-y), rgba(255, 255, 255, 0.3), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.recruit__button-text {
  display: flex;
  font-size: 2rem;
  align-items: end;
  margin-left: 0.7rem;
  margin-top: 0.9rem;
  margin-bottom: -0.3rem;
}
.recruit__button-text .recruit__button-subtext {
  font-size: 1.6rem;
}

.recruit__button:hover {
  background: #fe0e00;
  transform: translate3d(var(--recruit-offset-x), var(--recruit-offset-y), 0) scale(1.05);
}
@media screen and (max-width: 768px) {
  .recruit__button:hover {
    transform: scale(1.05);
  }
}

.recruit__arrow {
  font-size: 0;
  width: 1.7rem;
  height: 3rem;
  margin-left: 0.7rem;
  display: inline-flex;
  background-image: url("../../images/icon/icon_arrow_more.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.08s ease-out;
  transform: rotate(269deg);
}
.recruit__inner.is-pointer-active .recruit__arrow {
  transition: none;
}

.recruit__inner.is-pointer-active .recruit__button::after {
  opacity: 1;
}

/* =========================
   Right Visual
========================= */
.recruit__visual {
  z-index: 1;
}

.recruit__image {
  position: absolute;
  border-radius: 0.8rem;
  overflow: hidden;
}

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

/* image positions */
.recruit__image--main {
  width: 37.6rem;
  right: 11rem;
  top: 17.6rem;
  z-index: 8;
}
@media screen and (max-width: 768px) {
  .recruit__image--main {
    width: 19.2rem;
    height: 19rem;
    top: auto;
    bottom: 13.2rem;
    right: -1rem;
  }
}

.recruit__image--top {
  width: 16.3rem;
  right: 42.5rem;
  top: 6.8rem;
}
@media screen and (max-width: 768px) {
  .recruit__image--top {
    width: 7.2rem;
    height: 7.3rem;
    right: 20.7rem;
    top: auto;
    bottom: 26.9rem;
  }
}

.recruit__image--bottom {
  width: 20.6rem;
  right: 52.9rem;
  bottom: 3.8rem;
}
@media screen and (max-width: 768px) {
  .recruit__image--bottom {
    width: 11.8rem;
    height: 11.6rem;
    right: 23.8rem;
    bottom: 9.6rem;
  }
}

.recruit__bg-text {
  position: absolute;
  font-size: 35rem;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.2;
  line-height: 1;
  top: 53%;
  transform: translateY(-50%);
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .recruit__bg-text {
    font-size: 12rem;
    font-weight: 700;
    right: -5.4rem;
    top: 57.4%;
  }
}

@media screen and (max-width: 768px) {
  .recruit__visual {
    height: 420px;
  }
}
/* =========================
   Decorative Squares
========================= */
.recruit__square {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(90deg, #df5b5b 0%, #fe0e00 100%);
  opacity: 0.5;
  border-radius: 0.8rem;
}

.recruit__squares {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  --recruit-squares-scroll-y: 0px;
  transform: translate(0, calc(-50px + var(--recruit-squares-scroll-y)));
  /* No transition: smoothness from JS lerp (many small steps per frame) */
  z-index: 9;
}

.recruit__square--1 {
  top: 0;
  right: 23.8rem;
}
@media screen and (max-width: 768px) {
  .recruit__square--1 {
    display: none;
  }
}

.recruit__square--2 {
  width: 2.6rem;
  height: 2.6rem;
  top: 20.6rem;
  right: 37rem;
}
@media screen and (max-width: 768px) {
  .recruit__square--2 {
    width: 1.5rem;
    height: 1.4rem;
    top: auto;
    right: 14.85rem;
    bottom: 32.1rem;
  }
}

.recruit__square--3 {
  width: 8rem;
  height: 8rem;
  bottom: 26.5rem;
  right: 56.7rem;
}
@media screen and (max-width: 768px) {
  .recruit__square--3 {
    width: 5.7rem;
    height: 5.7rem;
    bottom: 27.8rem;
    right: 7.34rem;
  }
}

.recruit__square--4 {
  width: 8.9rem;
  height: 8.9rem;
  bottom: 2.2rem;
  right: 33.5rem;
}
@media screen and (max-width: 768px) {
  .recruit__square--4 {
    width: 5.9rem;
    height: 5.9rem;
    bottom: 2.6rem;
    right: 2rem;
  }
}

.recruit__square--5 {
  width: 2.6rem;
  height: 2.6rem;
  bottom: -1rem;
  right: 80.1rem;
}
@media screen and (max-width: 768px) {
  .recruit__square--5 {
    width: 3rem;
    height: 3rem;
    bottom: 16.5rem;
    right: 22.3rem;
  }
}

/* =========================
   News Section
========================= */
.news-section {
  padding: 16rem 0 10rem !important;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .news-section {
    padding: 10rem 0 9.8rem !important;
  }
}
.news-section .section-title__en {
  letter-spacing: 0.09em;
  margin-top: -0.2rem;
  margin-bottom: 1.6rem;
}
.news-section .quick-nav__arrow {
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 768px) {
  .news-section .quick-nav__arrow {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.news-section .quick-nav__arrow::before {
  width: 1.6rem;
  height: 1.4rem;
}
@media screen and (max-width: 768px) {
  .news-section .quick-nav__arrow::before {
    width: 0.583rem;
    height: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .news-section .section-title__en {
    font-size: 3.2rem !important;
    margin: 0 0 1.5rem !important;
  }
}
.news-section .section-title__highlight::before {
  transition: width 0.53s ease-out;
}
@media screen and (max-width: 768px) {
  .news-section .section-title__highlight::before {
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .news-section .section-title.animate-in .section-title__highlight::before {
    width: 5.8rem !important;
    height: 3.8rem !important;
  }
}
@media screen and (max-width: 768px) {
  .news-section .section-title {
    margin-bottom: -1.6rem;
  }
}

.news-section__inner {
  max-width: 128rem;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news-section__inner {
    flex-direction: column;
  }
}

/* =========================
   Header
========================= */
.news-section__title {
  font-size: 2.6rem;
  font-weight: 700;
  position: relative;
  padding-left: 12px;
  margin-bottom: 4px;
}

.news-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 24px;
  background: #e60012;
  transform: translateY(-50%);
}

.news-section__sub {
  font-size: 1.4rem;
  color: #666666;
}

/* =========================
   List
========================= */
.news-list {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-section__content {
  max-width: 70rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.news-item {
  border-bottom: 1px solid #e5e5e5;
}

.news-item__link {
  display: flex;
  align-items: center;
  padding: 1.6rem 0 1.5rem;
  text-decoration: none;
  color: #333333;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .news-item__link {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem 0 1.4rem;
    gap: 0.8rem;
  }
}
.news-item__link:hover .quick-nav__arrow::before {
  animation: arrowSlideDownRotated 0.6s ease-in-out;
}

.news-item__header {
  min-width: unset;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.news-item__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-item__date {
  font-size: 1.2rem;
  color: #999999;
  font-family: "Lato", sans-serif;
}

.news-item__category {
  font-size: 1.2rem;
  color: #e60012;
  border: 1px solid #e60012;
  padding: 0.2rem 0.8rem;
  border-radius: 1rem;
  text-align: center;
  width: fit-content;
  white-space: nowrap;
}

.news-item__text {
  font-size: 1.6rem;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

.news-item__arrow {
  font-size: 1.6rem;
  color: #e60012;
  text-align: right;
}

/* =========================
   More Button
========================= */
.news-section__more {
  margin-top: 4rem;
  text-align: right;
  align-self: flex-end;
}
@media screen and (max-width: 768px) {
  .news-section__more {
    align-self: flex-start;
  }
}

.news-more-button {
  display: flex;
  align-self: flex-end;
  align-items: center;
  justify-content: space-between;
  width: 17.1rem;
  padding: 0.8rem 1.6rem 0.8rem 2.8rem;
  background: #ffffff;
  border-radius: 0.8rem;
  color: #fe0e00;
  text-decoration: none;
  border: 0.1rem solid #fe0e00;
  font-size: 1.6rem;
  gap: 1.2rem;
  transition: all 0.3s ease;
}
.news-more-button .news-more-button__divider {
  background: #e60012;
  width: 1px;
  height: 3.4rem;
  flex-shrink: 0;
  margin-left: -0.6rem;
}

.news-more-button:hover {
  background: #e60012;
  color: #ffffff;
}
.news-more-button:hover .news-more-button__arrow {
  animation: arrowBackgroundSlide 0.6s ease-in-out forwards;
  background-image: url("../../images/icon/icon-arrow.png");
  background-size: 3.8rem 1.1rem;
}
.news-more-button:hover .news-more-button__divider {
  background: #ffffff;
}

.news-more-button__arrow {
  width: 1.8rem;
  height: 0.8rem;
  display: inline-flex;
  flex-shrink: 0;
  background-image: url("../../images/icon/icon-arrow-red.png");
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: cover;
  animation: none;
  position: relative;
  left: -0.3rem;
}

.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
  .is-pc {
    display: none;
  }
}
.other-links {
  position: relative;
  padding: 0 !important;
  height: 32rem;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .other-links {
    height: 44.3rem;
  }
}
@media screen and (max-width: 768px) {
  .other-links {
    height: 43rem;
    padding: 4rem 1.5rem !important;
  }
}
.other-links__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.other-links__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.other-links__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.other-links .container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 108rem;
  width: 100%;
  padding: 0 2rem;
}
@media screen and (max-width: 1440px) {
  .other-links .container {
    position: absolute !important;
    z-index: 2;
    max-width: 108rem;
    width: 100%;
    top: 35.9%;
    left: 13.9%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .other-links .container {
    position: absolute !important;
    z-index: 2;
    padding: 0;
    max-width: 27rem;
    height: 27rem;
    top: 18.2%;
    left: 15.4%;
  }
}
.other-links .other-link-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .other-links .other-link-card {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}
.other-links .section-title {
  flex: 1;
  margin: 0 !important;
}
@media screen and (max-width: 1440px) {
  .other-links .section-title {
    flex: 0.9;
  }
}
.other-links .section-title .section-title__en {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
  color: #fff !important;
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 1.2rem !important;
}
@media screen and (max-width: 1440px) {
  .other-links .section-title .section-title__en {
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.4rem !important;
    margin-top: -0.2rem;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 768px) {
  .other-links .section-title .section-title__en {
    font-size: 3.2rem !important;
    margin-bottom: 1.5rem !important;
  }
}
.other-links .section-title .section-title__highlight::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: #fe0e00 !important;
  height: 3.8rem;
  top: 0.3rem;
}
@media screen and (max-width: 768px) {
  .other-links .section-title .section-title__highlight::before {
    top: 0.18rem;
    left: 0;
  }
}
.other-links .section-title.animate-in .section-title__highlight::before {
  width: 6rem;
  height: 3.8rem;
}
.other-links .section-title .section-title__ja {
  color: #fff !important;
  font-size: 1.4rem !important;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 1440px) {
  .other-links .section-title .section-title__ja {
    margin-bottom: 2.4rem !important;
  }
}
@media screen and (max-width: 768px) {
  .other-links .section-title .section-title__ja {
    font-size: 1.4rem !important;
    margin-bottom: 2.4rem !important;
  }
}
.other-links .section-title .section-desc {
  color: #fff !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}
@media screen and (max-width: 1440px) {
  .other-links .section-title .section-desc {
    font-size: 1.6rem !important;
  }
}
@media screen and (max-width: 768px) {
  .other-links .section-title .section-desc {
    font-size: 1.6rem !important;
    line-height: 1.8 !important;
  }
}
.other-links .other-link-card__btn {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fe0e00;
  color: #fff;
  padding: 1.2rem 3rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.other-links .other-link-card__btn:hover .other-link-card__arrow {
  animation: arrowBackgroundSlide 0.6s ease-in-out forwards;
}
@media screen and (max-width: 1440px) {
  .other-links .other-link-card__btn {
    width: 35.1rem;
    height: 7.4rem;
    margin-left: -0.7rem;
    margin-top: 5rem;
    margin-right: 4rem;
    flex: 0.4;
    border-radius: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .other-links .other-link-card__btn {
    width: 27rem;
    height: 5.8rem;
    margin-top: 4rem;
    margin-left: 0;
    flex: 0.4;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem 1.5rem;
  }
}
.other-links .section-title__dot {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fe0e00;
}
.other-links .other-link-card__btn-text {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: #fff !important;
}
@media screen and (max-width: 1440px) {
  .other-links .other-link-card__btn-text {
    font-size: 2rem !important;
    margin-left: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .other-links .other-link-card__btn-text {
    font-size: 1.6rem !important;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
  }
}
.other-links .other-link-card__divider {
  width: 0.1rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
@media screen and (max-width: 1440px) {
  .other-links .other-link-card__divider {
    margin: 0 2.4rem;
    height: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
  .other-links .other-link-card__divider {
    margin: 0 0.7rem;
    height: 3.4rem;
  }
}
.other-links .other-link-card__arrow {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  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);
  animation: none;
}
@media screen and (max-width: 768px) {
  .other-links .other-link-card__arrow {
    margin-left: 0.8rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 1440px) {
  .other-links .other-links__overlay {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .other-links .other-links__overlay {
    display: inline !important;
    position: absolute;
    bottom: 0.2rem;
    left: 0;
    z-index: 1;
    pointer-events: none;
  }
}
.other-links .other-links__text-overlay {
  font-family: "Lato", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1440px) {
  .other-links .other-links__text-overlay {
    font-size: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .other-links .other-links__text-overlay {
    font-size: 9rem;
    margin: 0;
    letter-spacing: 0;
  }
}
.other-links .other-links__text {
  position: absolute;
  bottom: -3.2rem;
  left: -1.6rem;
  font-size: 9rem;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.2;
}

.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
  .is-pc {
    display: none;
  }
}
/* =========================
   Recruit Section
========================= */
.header__logo-text {
  display: none;
}

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

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