@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: redlight;
  src: url("../public/redlight.woff");
}
@font-face {
  font-family: futura-std-light;
  src: url("../public/FuturaStdLight.otf");
}
@font-face {
  font-family: futura-std-heavy;
  src: url("../public/FuturaStdHeavy.otf");
}
html {
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 10px;
  color: #000;
  scroll-behavior: smooth;
  overflow-x: clip;
}

main {
  position: relative;
  overflow: clip;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.image--position-top {
  -o-object-position: top;
     object-position: top;
}

.card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 25px;
  margin-block: 187px 270px;
}
@media screen and (max-width: 767px) {
  .card__list {
    margin-block: 50px 75px;
  }
}
.card__item {
  width: 405px;
  min-height: 384px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 15px rgba(142, 4, 4, 0.05);
          box-shadow: 0 0 15px rgba(142, 4, 4, 0.05);
  padding: 55px 50px;
}
@media screen and (max-width: 767px) {
  .card__item {
    width: 310px;
    min-height: 290px;
    border-radius: 23px;
    -webkit-box-shadow: 0 0 11.5px rgba(142, 4, 4, 0.05);
            box-shadow: 0 0 11.5px rgba(142, 4, 4, 0.05);
    padding: 40px 35px;
  }
}
.card__icon, .card__title {
  display: block;
}
.card__icon {
  width: auto;
  height: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .card__icon {
    height: 47px;
  }
}
.card__content {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .card__content {
    margin-top: 32.5px;
  }
}
.card__title, .card__desc {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.875em;
}
.card__title {
  font-weight: 700;
  color: #a41b2d;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 16px;
  }
}
.card__desc {
  font-weight: 300;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .card__desc {
    font-size: 15px;
    margin-top: 17.5px;
  }
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header.white .header__link {
  color: #fff;
}
.header.white .header__link::after {
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .header.white .header__link::after {
    display: none;
  }
}
.header.white .header__hamburger-icon {
  background-color: #fff;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: calc(1451px + 8%);
  padding: 48px 4%;
  margin: auto;
  z-index: 1;
  isolation: isolate;
}
@media screen and (max-width: 1024px) {
  .header__content {
    position: relative;
    padding: 32px 6.43%;
  }
}
@media screen and (max-width: 767px) {
  .header__content {
    padding: 17px 6.27%;
  }
}
.header__logo {
  position: relative;
  width: 281px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: get80(281px);
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 200px;
  }
}
.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 47px;
}
@media screen and (max-width: 1280px) {
  .header__navigation {
    gap: 37.6px;
  }
}
@media screen and (max-width: 1080px) {
  .header__navigation {
    gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .header__navigation {
    position: absolute;
    inset: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    width: 100%;
    height: 100vh;
    padding: 154.4px 7.47% 0;
    background-color: #a41b2d;
    z-index: 0;
    overflow: auto;
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    visibility: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .header__navigation {
    padding-top: 96.5px;
  }
}
.header__navigation.hamburger-open {
  opacity: 1;
  -webkit-transform: initial;
          transform: initial;
  visibility: visible;
}
.header__link {
  position: relative;
  padding: 10px;
  font-family: futura-pt, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7333333333em;
  letter-spacing: 0.098em;
  color: #000;
}
@media screen and (max-width: 1280px) {
  .header__link {
    font-size: 13px;
  }
}
@media screen and (max-width: 1024px) {
  .header__link {
    width: 100%;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 17.5px;
  }
}
@media screen and (max-width: 1024px) {
  .header__link:first-of-type {
    border-top: 1px solid #fff;
  }
}
.header__link::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  height: 2px;
  width: 0;
  background-color: #a41b2d;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__link:hover::after {
  width: 100%;
}
.header__link--dropdown {
  position: static;
  cursor: default;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header__link--dropdown {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    height: auto;
    border-bottom: 1px solid #fff;
  }
}
.header__link--dropdown:hover .header__sub-menu {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.header__link--dropdown::after {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__link:nth-child(2) {
    border-top: none;
  }
}
.header__submenu-label {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__submenu-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.header__submenu-label::after {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  margin-inline: auto;
  height: 450%;
  width: 200%;
}
@media screen and (max-width: 1024px) {
  .header__submenu-label::after {
    display: none;
  }
}
.header__submenu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: centerm;
      -ms-flex-align: centerm;
          align-items: centerm;
  gap: 9px;
}
.header__submenu-icon {
  position: absolute;
  inset: 0 -20px 0 auto;
  margin: auto;
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 1024px) {
  .header__submenu-icon {
    grid-column: 2/3;
    position: relative;
    right: -5px;
    margin: 0 0 0 auto;
    width: 16px;
    height: 16px;
  }
}
.header__submenu-icon span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #000;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .header__submenu-icon span {
    background-color: #fff;
  }
}
.header__submenu-icon span:last-of-type {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__submenu-icon.acc-expanded span:last-of-type {
  -webkit-transform: initial;
          transform: initial;
}
.header__sub-menu {
  position: absolute;
  inset: 100% 0 auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13.69%;
  padding: 65.5px 14.75%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .header__sub-menu {
    position: relative;
    top: 0;
    grid-column: 1/3;
    grid-row: 2/3;
    -webkit-transform: initial;
            transform: initial;
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    padding: 0;
    z-index: 0;
  }
}
.header__label {
  font-family: futura-pt, sans-serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.2380952381em;
  letter-spacing: 0.1em;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .header__label {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header__sub-nav {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    -webkit-transition: grid-template-rows 0.3s ease-in-out;
    transition: grid-template-rows 0.3s ease-in-out;
    transition: grid-template-rows 0.3s ease-in-out, -ms-grid-rows 0.3s ease-in-out;
  }
}
.header__sub-nav.acc-expanded {
  grid-template-rows: 1fr;
}
.header__sub-nav.acc-expanded .header__sub-nav-wrapper {
  visibility: visible;
}
.header__sub-nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
}
@media screen and (max-width: 1024px) {
  .header__sub-nav-wrapper {
    min-height: 0;
    -webkit-transition: visibility 1s;
    transition: visibility 1s;
    visibility: hidden;
  }
}
.header__sub-link {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.17em;
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
}
@media screen and (max-width: 1024px) {
  .header__sub-link {
    color: #fff;
    font-size: 13px;
  }
}
.header__sub-link::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  height: 2px;
  width: 0;
  background-color: #a41b2d;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__sub-link:hover::after {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header__sub-link:first-of-type {
    margin-top: 21.5px;
  }
}
.header__sub-link:last-of-type {
  margin-bottom: 4px;
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__hamburger {
    width: 40.5px;
    border: none;
    background-color: transparent;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 30px;
    gap: 6px;
    z-index: 1;
  }
}
.header__hamburger.hamburger-open .header__hamburger-icon {
  background-color: #fff;
}
.header__hamburger.hamburger-open .header__hamburger-icon:first-of-type {
  -webkit-transform: rotate(30deg) translate(3px, 3px);
          transform: rotate(30deg) translate(3px, 3px);
}
.header__hamburger.hamburger-open .header__hamburger-icon:last-of-type {
  -webkit-transform: rotate(-30deg) translate(3px, -3px);
          transform: rotate(-30deg) translate(3px, -3px);
}
.header__hamburger-icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__button {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 36px;
  border-radius: 15px;
  background-color: #000;
  padding-block: 16px;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.header__button::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 120%;
  height: 250%;
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(60%, #fff), to(transparent));
  background-image: linear-gradient(to bottom right, #fff 60%, transparent);
  -webkit-transform: translate(-100%, -100%);
          transform: translate(-100%, -100%);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: -1;
  pointer-events: none;
}
.header__button:hover {
  color: #a41b2d;
}
.header__button:hover::before {
  -webkit-transform: initial;
          transform: initial;
}
.header__button:hover .header__link-icon {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.header__link-icon {
  margin-left: initial;
  width: 41px !important;
  height: 41px !important;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.cs {
  background-color: #a41b2d;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.cs:hover {
  opacity: 0.85;
}
.cs:hover .cs__link-icon::before {
  -webkit-animation: 0.4s ease 0s 1 normal forwards running link-animation-1;
          animation: 0.4s ease 0s 1 normal forwards running link-animation-1;
}
.cs:hover .cs__link-icon::after {
  -webkit-animation: 0.4s ease 0s 1 normal forwards running link-animation-2;
          animation: 0.4s ease 0s 1 normal forwards running link-animation-2;
}
.cs__layout {
  max-width: calc(1211px + 8%);
  padding: 167px 4%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17.75%;
}
@media screen and (max-width: 767px) {
  .cs__layout {
    padding: 83px 10.67%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 35px;
  }
}
.cs__title-wrapper {
  font-weight: 500;
  font-family: futura-pt, sans-serif;
  color: #fff;
}
.cs__title-wrapper span {
  display: block;
}
.cs__title {
  font-size: 4.4rem;
}
@media screen and (max-width: 767px) {
  .cs__title {
    margin-bottom: 5px;
    font-size: 28px;
  }
}
.cs__sub-title {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .cs__sub-title {
    font-size: 12.5px;
  }
}
.cs__links {
  max-width: 804px;
  width: 66.39%;
}
@media screen and (max-width: 767px) {
  .cs__links {
    width: 100%;
  }
}
.cs__link {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 37px 11.94%;
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.09em;
  overflow: hidden;
  isolation: isolate;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .cs__link {
    padding: 21.5px 35px 21.5px 13.64%;
    font-size: 14px;
  }
}
.cs__link:first-of-type {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .cs__link:first-of-type {
    margin-bottom: 13px;
  }
}
.cs__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: -1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.cs__link svg path {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.cs__link:hover {
  color: #a41b2d;
}
.cs__link:hover::before {
  -webkit-transform: initial;
          transform: initial;
}
.cs__link:hover svg path {
  stroke: #a41b2d;
}
.cs__link-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .cs__link-icon {
    width: 47px;
    height: 47px;
  }
}

.footer {
  padding: 82px 4.81% 82px 5.63%;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 42px 4.81% 39px 5.63%;
  }
}
.footer__content {
  max-width: 1431px;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16.5px;
  }
}
.footer__text {
  font-size: 1.8em;
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 13px;
  }
}

.banner {
  position: relative;
  overflow: hidden;
}
.banner--no-img {
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .banner--no-img {
    padding-bottom: 80px;
  }
}
.banner--no-img::after {
  right: -40% !important;
}
.banner__bg {
  position: absolute;
  top: 1000px;
  left: -1165px;
  right: -60.94%;
  width: 240%;
  height: 313px;
  background-color: #a41b2d;
  -webkit-transform: rotate(-49deg);
          transform: rotate(-49deg);
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 1600px) {
  .banner__bg {
    top: calc(800px + (975 - 800) * (100vw - 768px) / 832);
    width: calc(2900px + (3852 - 2900) * (100vw - 768px) / 832);
    height: calc(200px + (313 - 200) * (100vw - 768px) / 832);
  }
}
@media screen and (max-width: 1366px) {
  .banner__bg {
    left: -1205px;
  }
}
@media screen and (max-width: 1080px) {
  .banner__bg {
    left: -1280px;
  }
}
@media screen and (max-width: 1024px) {
  .banner__bg {
    left: -1200px;
  }
}
@media screen and (max-width: 767px) {
  .banner__bg {
    inset: 191px -248% auto -180%;
    width: 1983px;
    height: 223px;
    margin: auto;
  }
}
.banner--service {
  padding-block: 80px 126px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .banner--service {
    padding-block: 20px 63px;
  }
}
.banner--service::after {
  display: none;
}
.banner__title {
  padding: 160px 8% 0;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .banner__title {
    padding: 80px 8% 0;
  }
}
.banner__title-en {
  font: 900 6.6rem futura-std-heavy, sans-serif;
  letter-spacing: 0.1em;
  line-height: 1em;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .banner__title-en {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
.banner__title-en span {
  display: inline-block;
  margin-right: 20px;
}
.banner__title-en span:last-child {
  margin: 0;
}
.banner__title-en span::first-letter {
  color: #a41b2d;
}
.banner__title-jp {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .banner__title-jp {
    font-size: 16px;
  }
}
.banner__content {
  background-color: #eef2f8;
  position: relative;
  padding: 0 4%;
  margin-top: 230px;
}
@media screen and (max-width: 767px) {
  .banner__content {
    padding: 0 8%;
    margin-top: 150px;
  }
}
.banner__content-image {
  max-width: 1500px;
  width: 100%;
  height: 560px;
  margin: 0 auto;
  padding: 0 4%;
  position: absolute;
  top: 20%;
  left: 50%;
  -o-object-position: top;
     object-position: top;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .banner__content-image {
    height: 207.5px;
    top: 0;
  }
}
.banner__content-image img {
  border-radius: 30px;
}
.banner__content-service {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding-block: 500px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .banner__content-service {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    padding-block: 150px 0;
  }
}
.banner__content-service--leasing .banner__content-heading {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .banner__content-service--leasing .banner__content-heading {
    width: 100%;
  }
}
.banner__content-service--leasing .banner__content-text {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .banner__content-service--leasing .banner__content-text {
    width: 100%;
  }
}
.banner__content-heading {
  width: 40%;
  font-size: 4.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .banner__content-heading {
    width: 100%;
    font-size: 19px;
  }
}
.banner__content-text {
  width: 55%;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 2em;
  color: #000;
}
@media screen and (max-width: 767px) {
  .banner__content-text {
    width: 100%;
    font-size: 16px;
  }
}

.form {
  position: relative;
  max-width: 1268px;
  width: 79.25%;
  margin: 120px auto 0;
  border-radius: 28px;
  background-color: #fff;
  padding: 117px 109px 121px;
  -webkit-box-shadow: 0 0 14px rgba(142, 4, 4, 0.05);
          box-shadow: 0 0 14px rgba(142, 4, 4, 0.05);
}
@media screen and (max-width: 1200px) {
  .form {
    padding-inline: 54.5px;
  }
}
@media screen and (max-width: 980px) {
  .form {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .form {
    margin-top: 60px;
    padding: 58.5px 4% 60.5px;
  }
}
.form--confirm .form__item {
  margin-bottom: 66px;
}
@media screen and (max-width: 767px) {
  .form--confirm .form__item {
    margin-bottom: 44px;
  }
}
.form--mt-0 {
  margin-top: 0;
}
.form input,
.form select,
.form textarea {
  font-size: 1.6rem;
  padding: 19.5px 20px;
  background-color: #f2f2f2;
  border: none;
  font-weight: 300;
}
.form input::-webkit-input-placeholder, .form select::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
  color: #909090;
}
.form input::-moz-placeholder, .form select::-moz-placeholder, .form textarea::-moz-placeholder {
  color: #909090;
}
.form input:-ms-input-placeholder, .form select:-ms-input-placeholder, .form textarea:-ms-input-placeholder {
  color: #909090;
}
.form input::-ms-input-placeholder, .form select::-ms-input-placeholder, .form textarea::-ms-input-placeholder {
  color: #909090;
}
.form input::placeholder,
.form select::placeholder,
.form textarea::placeholder {
  color: #909090;
}
.form textarea {
  height: 206px;
  resize: none;
}
.form select {
  width: 100%;
  position: relative;
  /* stylelint-disable */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* stylelint-enable */
}
.form select:invalid {
  color: #909090;
}
.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 41px;
  padding-inline: 57px;
  margin-bottom: 33px;
}
@media screen and (max-width: 1200px) {
  .form__item {
    padding-inline: 28.5px;
  }
}
@media screen and (max-width: 767px) {
  .form__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-inline: 28.5px;
    gap: 20.5px;
  }
}
.form__item.required .form__label::after {
  content: "必須";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 20px;
  border-radius: 10px;
  background-color: #a41b2d;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 300;
}
.form__item.optional .form__label::after {
  content: "任意";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 20px;
  border-radius: 10px;
  background-color: #3e3a39;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 300;
}
.form__item--padded {
  background-color: #f3e1e3;
  padding-block: 72px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .form__item--padded {
    padding-block: 36px;
    margin-bottom: 22.5px;
  }
}
.form__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 167px;
      flex-basis: 167px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .form__label {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.form__label:has(+ div > textarea), .form__label:has(+ [data-content=content]) {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 20px;
}
.form__input {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .form__input {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.form__input input[type=text],
.form__input input[type=email],
.form__input input[type=tel],
.form__input select,
.form__input textarea {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.form__input:has(select)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.form__input:has(input + input) input {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .form__input:has(input + input) input {
    width: 100%;
  }
}
.form__input-checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-left: 48px;
}
@media screen and (max-width: 767px) {
  .form__input-checkboxes {
    gap: 20px;
    margin-left: 0;
    width: 100%;
  }
}
.form__input-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 300;
}
.form__input-checkbox input {
  display: none;
}
.form__input-checkbox span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  cursor: pointer;
}
.form__input-checkbox span::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 3px;
}
.form__input-checkbox span::before {
  content: "";
  position: absolute;
  top: 0;
  right: 2px;
  bottom: 0;
  margin: auto;
  display: block;
  background-color: #a41b2d;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .form__input-checkbox span::before {
    right: 3px;
  }
}
.form__input-checkbox--reverse span {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form__input-checkbox--reverse span::before {
  right: initial;
  left: 2px;
}
.form__input-checkbox:has(:checked) span::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.form__input-checkbox.required::after {
  content: "必須";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 20px;
  border-radius: 10px;
  background-color: #a41b2d;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 300;
}
.form__agreement {
  margin-block: 86px 69px;
}
@media screen and (max-width: 767px) {
  .form__agreement {
    margin-block: 43px 34.5px;
  }
}
.form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.form__action {
  margin: auto;
  width: 430px;
  height: 88px;
  border: none;
  border-radius: 0;
  background-color: #a41b2d;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__action {
    width: 100%;
    max-width: 400px;
    height: 66px;
  }
}
.form__action:hover {
  opacity: 0.7;
}
.form__action--return {
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
}
.form__action--return:hover {
  color: #fff;
  background-color: #000;
}
.form__complete {
  margin-bottom: 50px;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  font-weight: 300;
}

.terms {
  margin-top: 129px;
  padding-inline: 57px;
}
@media screen and (max-width: 1200px) {
  .terms {
    padding-inline: 28.5px;
  }
}
@media screen and (max-width: 767px) {
  .terms {
    margin-top: 64.5px;
  }
}
.terms__header {
  margin-bottom: 34px;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
}
.terms__wrapper {
  height: 365px;
  padding: 10px 57px;
  border: 1px solid #8c8c8c;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .terms__wrapper {
    height: 280px;
    padding: 28.5px;
  }
}
.terms__wrapper p {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 2em;
}

.leasing {
  padding-bottom: 145px;
}
@media screen and (max-width: 767px) {
  .leasing {
    padding-bottom: 75px;
  }
}
.leasing__content {
  position: relative;
}
.leasing__container {
  position: relative;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: calc(1068px + 8%);
}
@media screen and (max-width: 767px) {
  .leasing__container {
    max-width: 100%;
  }
}
.leasing__card {
  margin-block: unset;
  padding-block: 147.07px 450px;
  background-color: #eef2f8;
}
@media screen and (max-width: 1200px) {
  .leasing__card {
    padding-bottom: 350px;
  }
}
@media screen and (max-width: 767px) {
  .leasing__card {
    padding: 55px 8% 150px;
  }
}
.leasing__gallery {
  margin-block: -175px 155px;
}
@media screen and (max-width: 1024px) {
  .leasing__gallery {
    min-width: initial;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .leasing__gallery {
    margin-block: -60px 60px;
  }
}
.leasing__gallery-main {
  position: relative;
  aspect-ratio: 1068.63/603;
  max-width: 1068px;
  max-height: 603px;
}
.leasing__gallery-list {
  margin-top: 13px !important;
}
@media screen and (max-width: 767px) {
  .leasing__gallery-list {
    margin-top: 10px !important;
  }
}
.leasing__gallery-item {
  max-height: 97.2px;
  max-width: 172.26px;
  width: 16.1%;
  margin-right: 8px;
  border: none !important;
}
@media screen and (max-width: 767px) {
  .leasing__gallery-item {
    height: 60px;
    width: 120px;
  }
}
.leasing__service {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 65px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .leasing__service {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .leasing__service {
    gap: 20px;
    margin-bottom: 30px;
  }
}
.leasing__service-list {
  gap: 2.67px;
  display: grid;
  width: 731.58px;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1000px) {
  .leasing__service-list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .leasing__service-list {
    grid-template-rows: unset;
    grid-template-columns: repeat(2, 1fr);
  }
}
.leasing__service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 180.89px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: #eef2f8;
}
@media screen and (max-width: 767px) {
  .leasing__service-item {
    height: 160px;
  }
}
.leasing__service-detail {
  width: 28%;
}
@media screen and (max-width: 1000px) {
  .leasing__service-detail {
    width: 100%;
  }
}
.leasing__service-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .leasing__service-title {
    font-size: 1.9rem;
    margin-bottom: 12px;
  }
}
.leasing__service-title--plan {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .leasing__service-title--plan {
    margin-bottom: 17px;
  }
}
.leasing__service-text {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 2em;
}
.leasing__service-img {
  width: 100%;
  height: auto;
  max-width: 64.5px;
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .leasing__service-img {
    margin-bottom: 14px;
  }
}
.leasing__service-img--2 {
  max-width: 43.56px;
}
.leasing__service-img--3 {
  max-width: 42.02px;
}
.leasing__service-img--4 {
  max-width: 50.61px;
}
.leasing__service-img--5 {
  max-width: 60.16px;
}
.leasing__service-img--6 {
  max-width: 68.21px;
}
.leasing__service-img--7 {
  max-width: 53.13px;
}
.leasing__service-img--8 {
  max-width: 59.22px;
}
.leasing__service-label {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 2.2857142857em;
}
.leasing__plan {
  margin-bottom: 124px;
}
@media screen and (max-width: 767px) {
  .leasing__plan {
    margin-bottom: 60px;
  }
}
.leasing__plan-content {
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1000px) {
  .leasing__plan-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.leasing__plan-wrap {
  text-align: center;
  border-radius: 29px;
  padding: 55px 45px 30px;
  background-color: #fff;
  border: 1px solid #e6e6e6;
}
@media screen and (max-width: 767px) {
  .leasing__plan-wrap {
    padding: 25px;
  }
}
.leasing__plan-title {
  font-size: 3rem;
  margin-bottom: 27px;
  color: #a41b2d;
  font-weight: 700;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .leasing__plan-title {
    font-size: 2.1rem;
    margin-bottom: 13px;
  }
}
.leasing__plan-subtitle {
  font-size: 3.1rem;
  margin-bottom: 8px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .leasing__plan-subtitle {
    font-size: 2.2rem;
  }
}
.leasing__plan-subtitle .small {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .leasing__plan-subtitle .small {
    font-size: 1.5rem;
  }
}
.leasing__plan-note {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #a41b2d;
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .leasing__plan-note {
    font-size: 1.5rem;
  }
}
.leasing__plan-note--mb {
  margin-bottom: 23px;
}
@media screen and (max-width: 767px) {
  .leasing__plan-note--mb {
    margin-bottom: 18px;
  }
}
.leasing__plan-text {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 2.0714285714em;
}
@media screen and (max-width: 767px) {
  .leasing__plan-text {
    font-size: 1.6rem;
  }
}
.leasing__request-text {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 2em;
}
.leasing__request-text .red {
  color: #a41b2d;
}
.leasing__sticky {
  left: 36px;
  position: absolute;
}
@media screen and (max-width: 1440px) {
  .leasing__sticky {
    left: 0;
  }
}
@media screen and (max-width: 1366px) {
  .leasing__sticky {
    left: -36px;
  }
}
.leasing__sticky-text {
  left: 5%;
  position: relative;
  color: #a41b2d;
  letter-spacing: 0.2em;
  text-orientation: mixed;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font: 900 14.6rem futura-std-heavy, sans-serif;
}
@media screen and (max-width: 1600px) {
  .leasing__sticky-text {
    left: 2%;
  }
}
@media screen and (max-width: 1400px) {
  .leasing__sticky-text {
    left: 0;
  }
}
@media screen and (max-width: 1250px) {
  .leasing__sticky-text {
    display: none;
  }
}

.contact {
  background-color: #eef2f8;
  padding: 165px 4% 185px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-block: 80px 90px;
  }
}
.contact__card-list {
  width: 100%;
  max-width: 1268px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .contact__card-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 93px;
  padding-inline: 8.12%;
  width: 100%;
  min-height: 277px;
  background-color: #fff;
  border-radius: 28px;
  -webkit-box-shadow: 0 0 5px rgba(142, 4, 4, 0.05);
          box-shadow: 0 0 5px rgba(142, 4, 4, 0.05);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .contact__card {
    width: 100%;
    min-height: 250px;
  }
}
.contact__card:is(a):hover {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}
.contact__card-content {
  width: 100%;
}
.contact__card-heading {
  margin-bottom: 11px;
  font-size: 2.8rem;
  letter-spacing: 0.15em;
}
.contact__card-leading {
  position: relative;
  left: -10px;
  font-size: 1.8rem;
  letter-spacing: 0.09em;
}
.contact__card-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 45px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.contact__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .contact__card-link {
    width: 100%;
  }
}
.contact__card-link:hover {
  opacity: 0.5;
}
.contact__link-text {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 1px solid #000;
  line-height: 1.1em;
}
.contact__arrow {
  width: 68px;
  height: 68px;
  background: url("../public/img/icons/arrow.svg") center/12px 9px no-repeat;
  -webkit-filter: invert(1) brightness(0);
          filter: invert(1) brightness(0);
  border: 1px solid #000;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .contact__arrow {
    width: 50px;
    height: 50px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.contact__text {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-left: 24px;
}
@media screen and (max-width: 1024px) {
  .contact__text {
    font-size: 21px;
  }
}

.company {
  padding-block: 180px 160px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company {
    padding-block: 90px 80px;
  }
}
.company::before {
  content: "";
  width: 100%;
  height: 1147px;
  background-color: #eef2f8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.company__sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: calc(1259px + 8%);
  padding-left: 4%;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .company__sec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 8%;
  }
}
.company__sec--full {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  padding: 0;
}
.company__sec--full .title {
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .company__sec--full .title {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .company__sec--full .title {
    padding-inline: 8%;
  }
}
.company__sec:not(:last-child) {
  margin-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .company__sec:not(:last-child) {
    margin-bottom: 90px;
  }
}
.company__slider-wrap {
  width: 100%;
  min-width: 1100px;
  max-width: 60%;
  display: block;
  margin: 0 auto 260px;
}
@media screen and (max-width: 1300px) {
  .company__slider-wrap {
    min-width: 80%;
    max-width: 80%;
    margin-bottom: 90px;
  }
}
.company__slider {
  width: 100%;
}
.company__slide {
  width: 100%;
  height: 512px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 28px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company__slide {
    height: 200px;
  }
}
.company__slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 28px;
}
.company__slide-counter {
  width: 100%;
  max-width: 291px;
  margin: 30px 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .company__slide-counter {
    margin: 30px auto;
  }
}
.company__current-slide, .company__total-slides {
  font-size: 1.3rem;
}
.company__progress {
  width: 217px;
  height: 1px;
  background-color: #bfbebe;
  margin: 0 25px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.company__progress-bar {
  width: 0;
  height: 100%;
  background-color: #3e3a39;
}
.company__wrap {
  width: 58%;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .company__wrap {
    width: 100%;
    margin-left: initial;
  }
}
.company__name {
  display: block;
  margin-top: 50px;
}
.company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #dbdbdb;
  padding-block: 35px;
}
@media screen and (max-width: 767px) {
  .company__item {
    padding-block: 25px;
  }
}
.company__item:first-child {
  border-top: 1px solid #dbdbdb;
}
.company__label {
  display: block;
  width: 190px;
  font-weight: 700 !important;
}
@media screen and (max-width: 767px) {
  .company__label {
    width: 100px;
  }
}
.company__detail {
  width: calc(100% - 190px);
}
@media screen and (max-width: 767px) {
  .company__detail {
    width: calc(100% - 100px);
  }
}
.company__info-img {
  width: 199px;
  height: 78px;
  margin-block: 25px 20px;
}
@media screen and (max-width: 767px) {
  .company__info-img {
    width: 130px;
    height: 51px;
  }
}
.company__info-link {
  display: block;
  text-decoration: underline;
  word-break: break-all;
}
.company__group-item {
  width: 100%;
  height: 174px;
  border: 1px solid #dbdbdb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 45px;
  padding: 30px 48px;
}
@media screen and (max-width: 767px) {
  .company__group-item {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 20px;
  }
}
.company__group-item:not(:last-child) {
  margin-bottom: 8px;
}
.company__group-img {
  width: 200px;
}
.company__group-logo {
  display: block;
  margin: 0 auto;
}
.company__group-logo--01 {
  width: 149px;
  height: 36px;
}
.company__group-logo--02 {
  width: 84px;
  height: 85px;
}
.company__group-logo--03 {
  width: 104px;
  height: 73px;
}
.company__group-logo--04 {
  width: 116px;
  height: 54px;
}
.company__group-content {
  width: calc(100% - 240px);
}
@media screen and (max-width: 767px) {
  .company__group-content {
    width: 100%;
  }
}
.company__group-title {
  font-weight: 700 !important;
}
.company__office {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
}
.company__office-item {
  width: 50%;
  min-height: 361px;
  background-color: #eef2f8;
  border: 1px solid #dbdbdb;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .company__office-item {
    width: 100%;
    min-height: auto;
  }
}
.company__office-item::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.company__office-item:hover, .company__office-item:hover .company__office-link {
  color: #fff;
}
.company__office-item:hover .company__office-img, .company__office-item:hover::after {
  opacity: 1;
}
.company__office-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.company__office-wrap {
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .company__office-wrap {
    padding: 30px 20px;
  }
}
.company__office-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: 38%;
}
@media screen and (max-width: 767px) {
  .company__office-title {
    font-size: 17px;
    width: 50%;
  }
}
.company__office-content {
  width: 62%;
}
@media screen and (max-width: 767px) {
  .company__office-content {
    width: 50%;
  }
}
.company__office-link {
  color: #a41b2d;
  display: block;
  margin-top: 25px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.top {
  opacity: 1;
  position: relative;
  overflow: clip;
  padding-top: 150px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media screen and (max-width: 1600px) {
  .top {
    padding-top: calc(90px + (150 - 90) * (100vw - 768px) / 832);
  }
}
@media screen and (max-width: 767px) {
  .top {
    padding-top: 64px;
  }
}
.top__bg {
  position: absolute;
  inset: 230px -95.44% auto -95.63%;
  width: 4289px;
  height: 653px;
  margin: auto;
  background-color: #a41b2d;
  z-index: -1;
  -webkit-transform: rotate(-49deg);
          transform: rotate(-49deg);
}
@media screen and (max-width: 1600px) {
  .top__bg {
    width: calc(3000px + (4289 - 3000) * (100vw - 768px) / 832);
    height: calc(550px + (653 - 550) * (100vw - 768px) / 832);
  }
}
@media screen and (max-width: 1440px) {
  .top__bg {
    top: calc(-10px + (30 - -10) * (100vw - 768px) / 832);
  }
}
@media screen and (max-width: 1280px) {
  .top__bg {
    top: -140px;
  }
}
@media screen and (max-width: 1100px) {
  .top__bg {
    top: -240px;
  }
}
@media screen and (max-width: 1024px) {
  .top__bg {
    top: -150px;
    left: -900px;
  }
}
@media screen and (max-width: 767px) {
  .top__bg {
    inset: calc(45px + (60 - 45) * (100vw - 375px) / 393) -2000px auto -1706px;
    width: 2173px;
    height: 440px;
    margin: auto;
  }
}
.top__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 32px;
  font-size: 1.7rem;
  font-weight: 500;
  font-family: futura-pt, sans-serif;
  line-height: 1.7058823529em;
  color: #000;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media screen and (max-width: 767px) {
  .top__link {
    gap: 8.5px;
    font-size: 15px;
  }
}
.top__link--white {
  color: #fff;
}
.top__link:hover {
  color: #a41b2d;
}
.top__link:hover .top__link-icon::before {
  -webkit-animation: 0.4s ease 0s 1 normal forwards running link-animation-1;
          animation: 0.4s ease 0s 1 normal forwards running link-animation-1;
}
.top__link:hover .top__link-icon::after {
  -webkit-animation: 0.4s ease 0s 1 normal forwards running link-animation-2;
          animation: 0.4s ease 0s 1 normal forwards running link-animation-2;
}
.top__link-icon {
  position: relative;
  width: 68px;
  height: 68px;
  border: 1px solid #000;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .top__link-icon {
    width: 53px;
    height: 53px;
  }
}
.top__link-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-image: url("../public/img/icons/arrow.svg");
  background-size: 11px 8px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  margin: auto;
  width: 100%;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.top__link-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-image: url("../public/img/icons/arrow.svg");
  background-size: 11px 8px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  margin: auto;
  width: 100%;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.top__link-icon--white {
  border-color: #fff;
}
.top__link-icon--white::before {
  -webkit-filter: initial;
          filter: initial;
}
.top__link-icon--white::after {
  -webkit-filter: initial;
          filter: initial;
}
.top__title-en {
  display: block;
  margin-bottom: 8px;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-size: 10.4rem;
}
@media screen and (max-width: 1280px) {
  .top__title-en {
    font-size: 8.32rem;
  }
}
@media screen and (max-width: 1024px) {
  .top__title-en {
    font-size: 6.656rem;
  }
}
@media screen and (max-width: 767px) {
  .top__title-en {
    margin-bottom: 0;
    font-size: 52.5px;
  }
}
.top__title-en--white {
  color: #fff;
}
.top__title-en--red {
  color: #a41b2d;
}
.top__title-ja {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top__title-ja {
    font-size: 13px;
  }
}
.top__title-ja--white {
  color: #fff;
}
.top__section-wrapper {
  position: relative;
}
.top__section-wrapper::before {
  content: "";
  position: absolute;
  bottom: 3.8%;
  display: block;
  width: 100%;
  height: 59.67%;
  background-color: #a41b2d;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__section-wrapper::before {
    bottom: 93px;
  }
}
.top .mv {
  position: relative;
  z-index: 1;
}
.top .mv__wrapper {
  position: relative;
  max-width: 1502px;
  width: 93.86%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .top .mv__wrapper {
    width: 91.33%;
    height: 86svh;
  }
}
.top .mv__slider {
  border-radius: 29px;
  background-color: #e7f1f8;
  position: relative;
  width: 100%;
  max-height: 731px;
  min-height: 600px;
  aspect-ratio: 1502/731;
}
@media screen and (max-width: 767px) {
  .top .mv__slider {
    border-radius: 15px;
    min-height: initial;
    height: 100%;
    aspect-ratio: unset;
  }
}
.top .mv__slider-track {
  height: 100%;
}
.top .mv__slide {
  border-radius: 29px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top .mv__slide {
    border-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .top .mv__slide img {
    -o-object-position: 46% 75px;
       object-position: 46% 75px;
  }
}
.top .mv__slide .current {
  -webkit-animation: top-main-zoom 7s linear 0s 1 normal forwards;
          animation: top-main-zoom 7s linear 0s 1 normal forwards;
}
@media screen and (max-width: 767px) {
  .top .mv__slide:first-of-type img {
    height: 98%;
    -o-object-position: 50% 100px;
       object-position: 50% 100px;
  }
}
.top .mv__overlay {
  position: absolute;
  inset: 0;
  border-radius: 29px;
  z-index: 1;
}
.top .mv__main-text-wrapper {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.top .mv__main-text {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top .mv__main-text {
    position: absolute;
    right: 0;
    bottom: 24.25%;
    left: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: auto;
    margin: auto;
  }
}
@media screen and (max-width: 390px) {
  .top .mv__main-text {
    max-width: initial;
  }
}
@supports (-webkit-touch-callout: none) {
  .top .mv__main-text {
    bottom: 20%;
  }
}
.top .mv__main-text-item {
  position: absolute;
  display: block;
  -webkit-transform: rotate(-24deg);
          transform: rotate(-24deg);
  font-family: redlight, serif;
  font-weight: 400;
  font-size: 17.8rem;
  color: #a41b2d;
  letter-spacing: -0.01em;
  padding-block: 170px;
}
@media screen and (max-width: 1600px) {
  .top .mv__main-text-item {
    font-size: calc(89px + (178 - 89) * (100vw - 768px) / 832);
  }
}
@media screen and (max-width: 767px) {
  .top .mv__main-text-item {
    padding-block: 15px;
    display: block;
    position: relative;
    top: auto;
    margin: auto;
    white-space: nowrap;
    font-size: calc(68px + (80 - 68) * (100vw - 375px) / 393);
  }
}
@media screen and (max-width: 390px) {
  .top .mv__main-text-item {
    font-size: calc(64px + (74 - 64) * (100vw - 375px) / 393);
  }
}
@media screen and (max-width: 359px) {
  .top .mv__main-text-item {
    font-size: calc(58px + (68 - 58) * (100vw - 375px) / 393);
  }
}
@media screen and (max-width: 341px) {
  .top .mv__main-text-item {
    font-size: calc(54px + (66 - 54) * (100vw - 375px) / 393);
  }
}
.top .mv__main-text-item:first-of-type {
  top: 8%;
  left: 12%;
}
@media screen and (max-width: 767px) {
  .top .mv__main-text-item:first-of-type {
    top: auto;
    left: -9%;
  }
}
.top .mv__main-text-item:last-of-type {
  top: 9%;
  left: 31.36%;
}
@media screen and (max-width: 767px) {
  .top .mv__main-text-item:last-of-type {
    top: auto;
    left: 13%;
    margin-top: -55px;
  }
}
@media screen and (max-width: 390px) {
  .top .mv__main-text-item:last-of-type {
    left: 13%;
  }
}
@supports (-webkit-touch-callout: none) {
  .top .mv__main-text-item:last-of-type {
    left: 13%;
    margin-top: -55px;
  }
}
.top .mv__main-text-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .top .mv__main-text-row {
    gap: 10px;
  }
}
.top .mv__text {
  position: relative;
  inset: 9% 4.59% auto;
  font-size: 2rem;
  line-height: 2.05em;
  letter-spacing: 0.31em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top .mv__text {
    inset: 3.29% 6.57% auto;
    font-size: 16px;
    line-height: 1.875em;
  }
}
.top .mv__scroll {
  position: absolute;
  bottom: 13.26%;
  right: 2%;
}
.top .mv .text-rotate {
  width: 117px;
  height: 117px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top .mv .text-rotate p {
  width: 100%;
  height: 100%;
  letter-spacing: 0.1em;
  font-weight: 500;
  -webkit-animation: rotate-text 8s linear infinite;
          animation: rotate-text 8s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top .mv .text-rotate img {
  width: 100%;
  height: 100%;
  -webkit-animation: rotate-text 8s linear infinite;
          animation: rotate-text 8s linear infinite;
}
.top .mv .text-rotate span {
  position: absolute;
  left: 50%;
  top: -10px;
  color: #fff;
  letter-spacing: 0.1em;
  -webkit-transform-origin: 0 66px;
          transform-origin: 0 66px;
  font: 500 0.9rem "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}
.top .mv .text-rotate svg {
  width: 20px;
  height: 10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.top .mv .text-rotate svg polygon {
  fill: #000;
}
.top .mv__scroll-arrow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 27px;
  height: 41px;
}
.top .mv__button-wrapper {
  position: absolute;
  right: 0;
  bottom: -18.88%;
  width: 51.25%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top .mv__button-wrapper {
    bottom: -7.552%;
  }
}
@media screen and (max-width: 767px) {
  .top .mv__button-wrapper {
    width: 84.53%;
    max-width: 317px;
    bottom: -4%;
  }
}
.top .mv__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  width: 100%;
  height: 100%;
  padding: 71px 0 71px 175px;
  background-color: #000;
  border-radius: 30px 0 0 30px;
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.2em;
  overflow: hidden;
  border: 1px solid transparent;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  isolation: isolate;
}
@media screen and (max-width: 1440px) {
  .top .mv__button {
    padding: 56.8px 0 56.8px 140px;
  }
}
@media screen and (max-width: 1280px) {
  .top .mv__button {
    padding-left: 70px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top .mv__button {
    gap: 14px;
    padding: 35px 0 35px 33px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top .mv__button {
    padding: 22px 0 23px 4.99%;
    border-radius: 15px 0 0 15px;
    font-size: 1.3rem;
  }
}
.top .mv__button::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 120%;
  height: 250%;
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(60%, #a41b2d), to(transparent));
  background-image: linear-gradient(to bottom right, #a41b2d 60%, transparent);
  -webkit-transform: translate(-100%, -100%);
          transform: translate(-100%, -100%);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: -1;
  pointer-events: none;
}
.top .mv__button:hover {
  border-color: #000;
  -webkit-box-shadow: -10px 10px 30px rgba(164, 27, 45, 0.2);
          box-shadow: -10px 10px 30px rgba(164, 27, 45, 0.2);
}
.top .mv__button:hover::before {
  -webkit-transform: initial;
          transform: initial;
}
.top .mv__button:hover .mv__button-arrow::before {
  -webkit-animation: 0.4s ease 0s 1 normal forwards running link-animation-1;
          animation: 0.4s ease 0s 1 normal forwards running link-animation-1;
}
.top .mv__button:hover .mv__button-arrow::after {
  -webkit-animation: 0.4s ease 0s 1 normal forwards running link-animation-2;
          animation: 0.4s ease 0s 1 normal forwards running link-animation-2;
}
.top .mv__button .mv__button-text {
  position: relative;
  z-index: 1;
}
.top .mv__button-arrow {
  position: relative;
  width: 68px;
  height: 68px;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .top .mv__button-arrow {
    width: 54px;
    height: 54px;
  }
}
@media screen and (max-width: 767px) {
  .top .mv__button-arrow {
    width: 41px;
    height: 41px;
  }
}
.top .mv__button-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-image: url("../public/img/icons/arrow.svg");
  background-size: 11px 8px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  margin: auto;
  width: 100%;
}
.top .mv__button-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-image: url("../public/img/icons/arrow.svg");
  background-size: 11px 8px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  margin: auto;
  width: 100%;
}
.top .msg {
  position: relative;
  padding-block: 257px 180px;
}
@media screen and (max-width: 1600px) {
  .top .msg {
    padding-block: calc(154px + (257 - 154) * (100vw - 768px) / 832) calc(108px + (180 - 108) * (100vw - 768px) / 832);
  }
}
@media screen and (max-width: 767px) {
  .top .msg {
    padding-block: 90.5px 102.5px;
  }
}
.top .msg__marquee {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-size: 19.5rem;
  color: #f2f2f2;
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media screen and (max-width: 1280px) {
  .top .msg__marquee {
    font-size: 15.6rem;
  }
}
@media screen and (max-width: 767px) {
  .top .msg__marquee {
    font-size: 97px;
  }
}
.top .msg__marquee-text-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 86px;
  padding-left: 86px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee-move-text 15s linear infinite;
          animation: marquee-move-text 15s linear infinite;
}
.top .msg__section-image {
  position: relative;
  max-width: 1031px;
  width: 64.44%;
  margin-block: -89px 93px;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top .msg__section-image {
    width: 86.67%;
  }
}
@media screen and (max-width: 767px) {
  .top .msg__section-image {
    height: 283.5px;
    margin-block: -39px 47px;
  }
}
.top .msg__section-image img {
  display: block;
}
@media screen and (max-width: 767px) {
  .top .msg__section-image img {
    height: 100%;
  }
}
.top .msg__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top .msg__content {
    max-width: 521px;
    margin: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .top .msg__content {
    max-width: 300px;
    gap: 24px;
  }
}
.top .msg__section-title {
  font-size: 8.2rem;
  font-weight: 500;
  font-family: futura-pt, sans-serif;
  color: #a41b2d;
  line-height: 1.4268292683em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1280px) {
  .top .msg__section-title {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .top .msg__section-title {
    font-size: 37px;
    line-height: 1.3970588235em;
  }
}
.top .msg__header {
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 2.75em;
  letter-spacing: 0.23em;
}
@media screen and (max-width: 767px) {
  .top .msg__header {
    font-size: 22px;
  }
}
.top .msg__text {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.7222222222em;
  letter-spacing: 0.17em;
}
@media screen and (max-width: 767px) {
  .top .msg__text {
    font-size: 17px;
    line-height: 2.5rem;
  }
}
.top .about {
  padding-top: 302px;
}
@media screen and (max-width: 1280px) {
  .top .about {
    padding-top: 241.6px;
  }
}
@media screen and (max-width: 767px) {
  .top .about {
    padding-top: 90px;
  }
}
.top .about__content {
  max-width: calc(1428px + 6.66%);
  margin: auto;
  padding-inline: 3.33%;
}
.top .about__section-header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 5.39% 0.63%;
  margin-bottom: 44px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .top .about__section-header-row {
    gap: 4%;
  }
}
@media screen and (max-width: 767px) {
  .top .about__section-header-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
    max-width: 292.5px;
    margin: 0 auto 33px;
    padding-inline: 0;
  }
}
.top .about__title-column {
  position: relative;
  top: -15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1280px) {
  .top .about__title-column {
    top: -10px;
  }
}
@media screen and (max-width: 767px) {
  .top .about__title-column {
    top: initial;
  }
}
.top .about__content-column {
  max-width: 600px;
  margin-left: auto;
}
.top .about__header {
  display: block;
  margin-bottom: 16px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.72em;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .top .about__header {
    margin-bottom: 11px;
    font-size: 16px;
  }
}
.top .about__text {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .top .about__text {
    font-size: 14px;
    line-height: 2em;
  }
}
.top .about__banner-link {
  position: relative;
  display: block;
  height: 451px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top .about__banner-link {
    height: 225.5px;
    border-radius: 15px;
  }
}
.top .about__banner-link:hover .about__banner-bg {
  opacity: 0.5;
}
.top .about__banner-bg {
  height: 100%;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}
.top .about__banner-bg img {
  -o-object-position: center 23%;
     object-position: center 23%;
}
.top .about__banner-overlay {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 6.63%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
  z-index: 1;
  isolation: isolate;
}
@media screen and (max-width: 767px) {
  .top .about__banner-overlay {
    padding-left: 8.73%;
  }
}
.top .about__banner-overlay .top__link {
  margin-top: 0;
}
.top .about__banner-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 120%;
  height: 250%;
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(60%, rgba(164, 27, 45, 0.4)), to(transparent));
  background-image: linear-gradient(to bottom right, rgba(164, 27, 45, 0.4) 60%, transparent);
  -webkit-transform: translate(-100%, -100%);
          transform: translate(-100%, -100%);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.top .news {
  padding-block: 209px 246px;
}
@media screen and (max-width: 767px) {
  .top .news {
    padding-block: 91.5px 130.5px;
  }
}
.top .news__container {
  max-width: calc(1185px + 8%);
  width: 82.06%;
  margin: auto;
  padding-inline: 4%;
}
@media screen and (max-width: 1024px) {
  .top .news__container {
    width: 80.27%;
    padding-inline: 0;
  }
}
.top .news__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top .news__layout {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.top .news__header {
  font-size: 4.7rem;
  font-weight: 500;
  font-family: futura-pt, sans-serif;
}
@media screen and (max-width: 767px) {
  .top .news__header {
    margin-bottom: 23px;
    font-size: 27.5px;
  }
}
.top .news__list {
  max-width: 851px;
  width: 70.39%;
}
@media screen and (max-width: 767px) {
  .top .news__list {
    width: 100%;
  }
}
.top .news__item {
  position: relative;
  display: block;
  padding-bottom: 27px;
  border-bottom: 1px solid #cdcdcd;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.875em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .top .news__item {
    font-size: 16px;
    padding-bottom: 17px;
  }
}
.top .news__item:first-of-type {
  border-top: 1px solid #cdcdcd;
}
.top .news__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(164, 27, 45, 0.05);
  width: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: -1;
}
.top .news__item:hover::before {
  width: 100%;
}
.top .news__item:has(.acc-expanded) .news__title::after {
  rotate: -135deg;
}
.top .news .js-accordion-trigger {
  padding-top: 27px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top .news .js-accordion-trigger {
    padding-top: 17px;
  }
}
.top .news__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top .news__title {
    margin-top: 8px;
  }
}
.top .news__title::after {
  content: "";
  position: relative;
  margin-left: auto;
  margin-right: 2%;
  bottom: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  rotate: 45deg;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top .news__content-wrapper {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top .news__content-wrapper.acc-expanded {
  margin-top: 27px;
  grid-template-rows: 1fr;
}
.top .news__content-wrapper.acc-expanded .news__content-container {
  top: 0;
}
.top .news__content-container {
  position: relative;
  top: 27px;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top .recruit {
  padding-bottom: 172px;
}
@media screen and (max-width: 767px) {
  .top .recruit {
    padding-bottom: 82.5px;
  }
}
.top .recruit__title {
  margin-bottom: 89px;
}
@media screen and (max-width: 767px) {
  .top .recruit__title {
    margin-bottom: 40px;
    padding-inline: 6%;
  }
}
.top .recruit__header {
  margin-bottom: 11px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.72em;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .top .recruit__header {
    margin-bottom: 13px;
    font-size: 18px;
    line-height: 1.7333333333em;
  }
}
.top .recruit__text {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.875em;
}
@media screen and (max-width: 767px) {
  .top .recruit__text {
    font-size: 16px;
  }
}
.top .recruit__slider {
  margin-bottom: 59px;
}
@media screen and (max-width: 767px) {
  .top .recruit__slider {
    margin-bottom: 12px;
  }
}
.top .recruit__slide:nth-of-type(even) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.top .recruit__slide-image {
  width: 100%;
  height: 85.44%;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top .recruit__slide-image {
    height: 85%;
  }
}
.top .recruit__slide-image img {
  -o-object-position: top;
     object-position: top;
}
.top .recruit__content {
  margin-left: 7.58%;
}
@media screen and (max-width: 767px) {
  .top .recruit__content {
    margin-left: initial;
    padding-inline: 6%;
  }
}

.preloader {
  position: fixed;
  inset: 0;
  background-color: #fff;
  display: grid;
  place-items: center;
  z-index: 1001;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}
.preloader.complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__logo {
  width: 16vw;
  height: 3vh;
}
@media screen and (max-width: 767px) {
  .preloader__logo {
    width: 38vw;
    height: 7vw;
  }
}

.hr__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .hr__container {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .hr__container {
    padding: 0 8%;
  }
}
.hr__cards {
  padding-block: 1px;
  background: #eef2f8;
}
.hr__card-list {
  margin-bottom: 530px;
}
@media screen and (max-width: 767px) {
  .hr__card-list {
    margin-bottom: 242.5px;
  }
}
.hr__service {
  position: relative;
  margin-top: -160px;
}
@media screen and (max-width: 767px) {
  .hr__service {
    margin-top: 0;
  }
}
.hr__service-text {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  top: -150px;
  left: 100px;
  font-family: futura-std-heavy, sans-serif;
  font-size: 14.6rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1em;
  color: #a41b2d;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .hr__service-text {
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  .hr__service-text {
    top: -190px;
    left: 8%;
    font-size: 60px;
  }
}
.hr__service-main {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 100px;
}
@media screen and (max-width: 1200px) {
  .hr__service-main {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .hr__service-main {
    grid-template-columns: 1fr;
  }
}
.hr__service-image-column {
  position: sticky;
  top: 11.4583333333vw;
  height: calc(100vh - 11.4583333333vw);
}
@media screen and (max-width: 767px) {
  .hr__service-image-column {
    position: static;
    height: auto;
  }
}
.hr__service-image-wrapper {
  position: absolute;
  top: 0;
  height: 31.25vw;
}
@media screen and (max-width: 767px) {
  .hr__service-image-wrapper {
    position: static;
    margin-bottom: 22.5px;
    height: auto;
  }
}
.hr__service-image-wrapper.visible img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.hr__service-image-wrapper.always-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.hr__service-image-wrapper img {
  vertical-align: middle;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .hr__service-image-wrapper img {
    opacity: 1;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.hr__service-content {
  width: 450px;
  height: 100vh;
}
@media screen and (max-width: 1200px) {
  .hr__service-content {
    width: auto;
    padding-right: 4%;
  }
}
@media screen and (max-width: 767px) {
  .hr__service-content {
    width: 100%;
    height: auto;
    padding-right: 0;
  }
}
.hr__service-content:first-child {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .hr__service-content:first-child {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .hr__service-content + .hr__service-content {
    margin-top: 50px;
  }
}
.hr__service-title {
  margin-bottom: 35px;
  font-family: futura-std-heavy, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 3.3125em;
  color: #000;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .hr__service-title {
    white-space: normal;
  }
}
@media screen and (max-width: 767px) {
  .hr__service-title {
    font-size: 15px;
    white-space: normal;
    line-height: normal;
    margin-bottom: 30px;
  }
}
.hr__service-heading {
  font-size: 2.9rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.75em;
  color: #a41b2d;
}
@media screen and (max-width: 767px) {
  .hr__service-heading {
    font-size: 24.5px;
    line-height: 1.7441860465em;
  }
}
.hr__service-description {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .hr__service-description {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .hr__service-title, .hr__service-heading, .hr__service-description {
    padding: 0 8%;
  }
}
.hr__field {
  padding-block: 25px 165px;
}
@media screen and (max-width: 767px) {
  .hr__field {
    padding-block: 82.5px;
  }
}
.hr__field-block-list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .hr__field-block-list {
    margin-top: 30px;
  }
}
.hr__field-block {
  background: #eef2f8;
  padding: 35px 40px;
}
@media screen and (max-width: 767px) {
  .hr__field-block {
    padding: 30px 5%;
  }
}
.hr__field-block + .hr__field-block {
  margin-top: 20px;
}
.hr__field-heading {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.75em;
  color: #a41b2d;
}
@media screen and (max-width: 767px) {
  .hr__field-heading {
    font-size: 16px;
  }
}
.hr__field-category-list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .hr__field-category-list {
    margin-top: 17.5px;
  }
}
.hr__field-category {
  padding: 7px 20px 8px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #d8dfeb;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .hr__field-category {
    padding: 10px 15px;
    font-size: 16px;
  }
}
.hr__compliance {
  padding-block: 105px;
  background: url("../public/img/hr/compliance_bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .hr__compliance {
    padding-block: 67.5px 52.5px;
  }
}
.hr__compliance-heading {
  margin-bottom: 60px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.75em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hr__compliance-heading {
    margin-bottom: 30px;
    font-size: 19px;
  }
}
.hr__compliance-content {
  max-width: 830px;
  margin: 0 auto;
}
.hr__compliance-text {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 2em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .hr__compliance-text {
    font-size: 16px;
  }
}
.hr__field-title-en {
  font-size: 6.6rem !important;
}
@media screen and (max-width: 767px) {
  .hr__field-title-en {
    font-size: 36px !important;
    font-weight: 500 !important;
  }
}
.hr__field-title-jp {
  font-size: 2rem !important;
  line-height: 1.75em !important;
}
@media screen and (max-width: 767px) {
  .hr__field-title-jp {
    font-size: 16px !important;
  }
}
.hr__field-class:not(:last-of-type) {
  margin-bottom: 22px;
}
.hr__class-heading {
  padding: 12px 2.36%;
  background-color: #a41b2d;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.75em;
}
.hr__field-class-block:not(:last-of-type) {
  margin-bottom: 37px;
}

.bpo__card {
  margin-block: unset;
  padding-block: 147.07px 450px;
  background-color: #eef2f8;
}
@media screen and (max-width: 1200px) {
  .bpo__card {
    padding-bottom: 350px;
  }
}
@media screen and (max-width: 767px) {
  .bpo__card {
    padding: 55px 8% 350px;
  }
}
.bpo__service {
  position: relative;
  margin-top: -160px;
}
@media screen and (max-width: 767px) {
  .bpo__service {
    margin-top: 0;
  }
}
.bpo__sticky-text {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  top: -150px;
  left: 100px;
  font: 900 14.6rem futura-std-heavy, sans-serif;
  letter-spacing: 0.2em;
  line-height: 1em;
  color: #a41b2d;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .bpo__sticky-text {
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  .bpo__sticky-text {
    top: -190px;
    left: 8%;
    font-size: 60px;
  }
}
.bpo__service-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 1200px) {
  .bpo__service-container {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .bpo__service-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bpo__service-images {
  width: 55%;
  position: sticky;
  top: 11.4583333333vw;
  height: calc(100vh - 11.4583333333vw);
}
@media screen and (max-width: 767px) {
  .bpo__service-images {
    position: static;
    width: 100%;
    height: auto;
  }
}
.bpo__service-image-wrapper {
  position: absolute;
  top: 0;
  height: 31.25vw;
}
@media screen and (max-width: 767px) {
  .bpo__service-image-wrapper {
    position: static;
    margin-bottom: 22.5px;
    height: auto;
  }
}
.bpo__service-image-wrapper.visible img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.bpo__service-image-wrapper.always-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.bpo__service-image-wrapper img {
  vertical-align: middle;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .bpo__service-image-wrapper img {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    width: 100%;
  }
}
.bpo__service-content {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .bpo__service-content {
    width: 100%;
  }
}
.bpo__service-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 450px;
  height: 100vh;
}
@media screen and (max-width: 1200px) {
  .bpo__service-content-item {
    width: auto;
    padding-right: 4%;
  }
}
@media screen and (max-width: 767px) {
  .bpo__service-content-item {
    width: 100%;
    height: auto;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .bpo__service-content-item:first-child {
    margin-bottom: 50px;
  }
}
.bpo__service-title-en {
  display: block;
  font: 900 1.6rem futura-std-heavy, sans-serif;
  letter-spacing: 0.14em;
  margin-bottom: 43px;
}
@media screen and (max-width: 767px) {
  .bpo__service-title-en {
    font-size: 15px;
    white-space: normal;
    line-height: normal;
    margin-bottom: 30px;
  }
}
.bpo__service-title-jp {
  font-weight: 500;
  font-size: 2.9rem;
  letter-spacing: 0.09em;
  color: #a41b2d;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .bpo__service-title-jp {
    font-size: 23.5px;
    line-height: 1.7441860465em;
  }
}
.bpo__service-text {
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .bpo__service-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .bpo__service-title-en, .bpo__service-title-jp, .bpo__service-text {
    padding: 0 8%;
  }
}
.bpo__location {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .bpo__location {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .bpo__location {
    padding-inline: 8%;
  }
}
.bpo__location-title-en {
  font-size: 6.6rem !important;
}
@media screen and (max-width: 767px) {
  .bpo__location-title-en {
    font-size: 36px !important;
    font-weight: 500 !important;
  }
}
.bpo__location-title-jp {
  font-size: 2rem !important;
  line-height: 1.75em !important;
}
@media screen and (max-width: 767px) {
  .bpo__location-title-jp {
    font-size: 16px !important;
  }
}
.bpo__location-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 300px 0 90px;
}
@media screen and (max-width: 1200px) {
  .bpo__location-wrapper {
    margin-top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .bpo__location-wrapper {
    margin: 50px 0 45px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.bpo__location-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-left: auto;
}
.bpo__location-arrow {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .bpo__location-arrow {
    width: 53px;
    height: 53px;
  }
}
.bpo__location-arrow:hover, .bpo__location-arrow.disabled {
  opacity: 0.3;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.bpo__location-list {
  margin: 0 0 300px;
}
@media screen and (max-width: 767px) {
  .bpo__location-list {
    margin: 0 0 150px;
    padding: 0 8%;
  }
}
.bpo__location-item {
  max-width: 690px;
  width: 100%;
}
.bpo__location-name {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.75em;
  color: #a41b2d;
  margin-block: 12px 10px;
}
.bpo__location-content-wrapper:not(:last-child) {
  margin-bottom: 15px;
}
.bpo__location-text {
  display: block;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6em;
}
.bpo__location-text--title {
  font-weight: 700;
}
.bpo__location-text--gmap {
  text-decoration: underline;
}
.bpo__location-img {
  height: 390px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .bpo__location-img {
    height: 280px;
  }
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}

.tablet {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}

.tablet-flex {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tablet-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

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

.container {
  max-width: calc(1263px + 8%);
  padding-inline: 4%;
  margin: auto;
}

@media screen and (max-width: 1024px) {
  .filter-invert {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}

.bold {
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .title {
    margin-bottom: 40px;
  }
}
.title__en {
  font: 900 4.6rem futura-std-heavy, sans-serif;
  color: #a41b2d;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .title__en {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
.title__jp {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .title__jp {
    font-size: 16px;
  }
}

.desc {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .desc {
    font-size: 14.5px;
  }
}
.desc--white {
  color: #fff;
}

.heading {
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .heading {
    font-size: 1.8rem;
  }
}

.leasing .splide__arrows {
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
}
.leasing .splide__arrow {
  opacity: 1;
  top: unset;
  left: unset;
  right: unset;
  width: 72.69px;
  height: 72.69px;
  border-radius: 0;
  -webkit-transform: unset;
          transform: unset;
  position: relative;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .leasing .splide__arrow {
    width: 45px;
    height: 45px;
  }
}
.leasing .splide__arrow svg {
  fill: #fff;
}
.leasing .splide__arrow:hover {
  opacity: 1;
}

.company__slider .splide__arrow {
  width: 68px;
  height: 68px;
  background: transparent url("../public/img/icons/arrow.svg") center/12px 9px no-repeat;
  border: 1px solid #000;
  -webkit-filter: invert(1) brightness(0);
          filter: invert(1) brightness(0);
}
@media screen and (max-width: 767px) {
  .company__slider .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.company__slider .splide__arrow > svg {
  display: none;
}
.company__slider .splide__arrow--prev {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  left: -10%;
}
@media screen and (max-width: 1400px) {
  .company__slider .splide__arrow--prev {
    left: -8%;
  }
}
.company__slider .splide__arrow--next {
  right: -10%;
}
@media screen and (max-width: 1400px) {
  .company__slider .splide__arrow--next {
    right: -8%;
  }
}

.service {
  padding-inline: 3.13%;
}
@media screen and (max-width: 767px) {
  .service {
    padding-inline: 3.33%;
  }
}
.service--lower {
  position: relative;
  padding-bottom: 212px;
}
@media screen and (max-width: 767px) {
  .service--lower {
    padding-bottom: 106px;
  }
}
.service__container {
  max-width: 1500px;
  margin: auto;
  background-color: #000;
  border-radius: 100px;
  padding-block: 140px 0;
  color: #fff;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .service__container {
    padding-block: 70px 93px;
    border-radius: 42px;
  }
}
.service__header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 6.53% 6.07%;
  margin-bottom: 188px;
}
@media screen and (max-width: 767px) {
  .service__header-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-inline: 9.29%;
    margin-bottom: 109.5px;
  }
}
.service__title-column {
  position: relative;
  top: -15px;
}
@media screen and (max-width: 1280px) {
  .service__title-column {
    top: -10px;
  }
}
@media screen and (max-width: 767px) {
  .service__title-column {
    top: initial;
    margin-bottom: 39.5px;
  }
}
@media screen and (max-width: 767px) {
  .service__title-column .top__title-en {
    font-size: 55px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .service__title-column .top__title-ja {
    font-size: 14px;
  }
}
.service__content-column {
  max-width: 750px;
  width: 57.69%;
}
@media screen and (max-width: 1366px) {
  .service__content-column {
    max-width: 600px;
  }
}
@media screen and (max-width: 1024px) {
  .service__content-column {
    max-width: 480px;
  }
}
@media screen and (max-width: 767px) {
  .service__content-column {
    max-width: unset;
    width: 100%;
  }
}
.service__content-column--lower {
  max-width: initial;
  width: 100%;
}
.service__content-column--lower .service__text {
  color: #c0c1c1;
}
.service__header {
  margin-bottom: 15px;
  font-size: 2.5rem;
  letter-spacing: 0.09em;
  line-height: 1.72em;
}
@media screen and (max-width: 767px) {
  .service__header {
    font-size: 18px;
  }
}
.service__header--lower {
  position: relative;
  left: -13px;
}
@media screen and (max-width: 767px) {
  .service__header--lower {
    left: -9px;
  }
}
.service__text {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.02em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .service__text {
    font-size: 14.5px;
    line-height: 2em;
  }
}
.service__text--item-content {
  color: #c0c1c1;
}
.service__text--header {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .service__text--header {
    font-size: 17px;
  }
}
.service__list {
  display: grid;
  grid-template-columns: 486px 56%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .service__list {
    grid-template-columns: 388.8px 56%;
  }
}
@media screen and (max-width: 1080px) {
  .service__list {
    grid-template-columns: 34% 56%;
  }
}
@media screen and (max-width: 767px) {
  .service__list {
    padding-bottom: 0;
    grid-template-columns: auto;
  }
}
.service__text-column {
  padding-left: 19%;
}
@media screen and (max-width: 1280px) {
  .service__text-column {
    padding-left: 15.2%;
  }
}
@media screen and (max-width: 1024px) {
  .service__text-column {
    padding-left: 9.5%;
  }
}
@media screen and (max-width: 767px) {
  .service__text-column {
    padding-left: initial;
  }
}
.service__item-content {
  height: 100svh;
  padding-top: 51px;
}
@media screen and (max-width: 1024px) {
  .service__item-content {
    padding-top: 40.5px;
  }
}
@media screen and (max-width: 767px) {
  .service__item-content {
    height: auto;
    padding-top: initial;
  }
}
.service__item-content:not(:last-of-type) {
  margin-bottom: 97px;
}
.service__item-title-en {
  display: block;
  margin-bottom: 55px;
  font-size: 4.1rem;
  font-family: futura-std-light, sans-serif;
  font-weight: 300;
  white-space: nowrap;
}
@media screen and (max-width: 1080px) {
  .service__item-title-en {
    white-space: initial;
  }
}
@media screen and (max-width: 767px) {
  .service__item-title-en {
    padding-inline: 9.29%;
    font-size: 32px;
    line-height: 1.3770491803em;
    margin-bottom: 20px;
  }
}
.service__item-title-ja {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.75em;
  letter-spacing: 0.09em;
  white-space: nowrap;
}
@media screen and (max-width: 1100px) {
  .service__item-title-ja {
    white-space: initial;
  }
}
@media screen and (max-width: 767px) {
  .service__item-title-ja {
    padding-inline: 9.29%;
    margin-bottom: 15px;
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .service__item-content-wrapper {
    padding-inline: 9.29%;
  }
}
@media screen and (max-width: 767px) {
  .service__item-content-wrapper .top__link {
    margin-top: 22px;
  }
}
.service__image-column {
  position: sticky;
  top: 22svh;
  width: 100%;
  height: 100svh;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .service__image-column {
    display: none;
  }
}
.service__item-image {
  position: absolute;
  inset: 0 0 auto;
  height: 75%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .service__item-image {
    position: relative;
    width: 89.86%;
    height: 283px;
    margin: 0 0 14px auto;
  }
}
.service__item-image img {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .service__item-image img {
    width: 100%;
    opacity: 1;
    -webkit-transform: initial;
            transform: initial;
  }
}
.service__item-image.visible img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.service__item-image.always-active img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@-webkit-keyframes rotate-text {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-text {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes marquee-move-text {
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes marquee-move-text {
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes sweep-in {
  0% {
    inset: 0 100% 0 0;
  }
  50% {
    inset: 0 0 0 0;
  }
  100% {
    inset: 0 0 0 100%;
  }
}
@keyframes sweep-in {
  0% {
    inset: 0 100% 0 0;
  }
  50% {
    inset: 0 0 0 0;
  }
  100% {
    inset: 0 0 0 100%;
  }
}
@-webkit-keyframes link-animation-1 {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(20%, 0, 0);
            transform: translate3d(20%, 0, 0);
    opacity: 0;
  }
}
@keyframes link-animation-1 {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(20%, 0, 0);
            transform: translate3d(20%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes link-animation-2 {
  0% {
    -webkit-transform: translate3d(-10%, 0, 0);
            transform: translate3d(-10%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes link-animation-2 {
  0% {
    -webkit-transform: translate3d(-10%, 0, 0);
            transform: translate3d(-10%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes logo-preloader {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes logo-preloader {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes top-main-zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes top-main-zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
:root {
  --duration: 0.6s;
}

.custom-fade-up-wrapper {
  overflow: hidden;
}

[data-aos=custom-fade-up] {
  position: relative;
  display: block;
  -webkit-transform: translateY(101%);
          transform: translateY(101%);
  opacity: 0;
}
[data-aos=custom-fade-up].aos-animate {
  -webkit-transform: initial;
          transform: initial;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  [data-aos=custom-fade-up-sp] {
    position: relative;
    display: block;
    -webkit-transform: translateY(101%);
            transform: translateY(101%);
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  [data-aos=custom-fade-up-sp].aos-animate {
    -webkit-transform: initial;
            transform: initial;
    opacity: 1;
  }
}

[data-aos=custom-sweep-in] {
  position: relative;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
[data-aos=custom-sweep-in] span {
  opacity: 0;
  -webkit-transition-delay: var(--duration);
          transition-delay: var(--duration);
}
[data-aos=custom-sweep-in].aos-animate::before {
  content: "";
  position: absolute;
  background-color: #a41b2d;
  -webkit-animation: sweep-in calc(var(--duration) * 2) forwards;
          animation: sweep-in calc(var(--duration) * 2) forwards;
}
[data-aos=custom-sweep-in].aos-animate span {
  opacity: 1;
}

[data-aos=custom-scale-in] {
  width: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: var(--duration);
  transition: var(--duration);
}
[data-aos=custom-scale-in].aos-animate {
  width: 100%;
}
/*# sourceMappingURL=main.css.map */
