@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;
}

img {
  max-width: 100%;
  vertical-align: middle;
  font-style: italic;
}

picture > img {
  max-width: none;
}

html {
  font-family: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 62.5%;
  color: #333;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
}

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

.heading--center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .heading--sp-left {
    margin: 0;
  }
}
.heading__image {
  margin-bottom: 24px;
  height: 63.77px;
}
@media screen and (max-width: 767px) {
  .heading__image {
    margin-bottom: 4px;
    height: 35.5px;
  }
}
.heading__jp {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .heading__jp {
    font-size: 12px;
  }
}
.heading__jp--center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .heading__jp--sp-left {
    text-align: left;
  }
}
.heading__jp--fs20 {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .heading__jp--fs20 {
    font-size: 12px;
  }
}
.heading__jp--white {
  color: #fff;
}
.heading__jp-text {
  margin-right: 5px;
}
.heading__en {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 3.0526315789em;
  color: #e30100;
}
@media screen and (max-width: 767px) {
  .heading__en {
    font-size: 14px;
  }
}
.heading__en--center {
  text-align: center;
}
.heading__jp-note {
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .heading__jp-note {
    font-size: 10px;
  }
}

.button:hover .button__circle {
  border-color: #fff;
}
.button:hover .button__circle::after {
  -webkit-animation: arrow-animation-white 0.3s ease forwards;
          animation: arrow-animation-white 0.3s ease forwards;
}
.button:hover .button__circle--red::after {
  -webkit-animation: arrow-animation-red-to-white 0.3s ease forwards;
          animation: arrow-animation-red-to-white 0.3s ease forwards;
}
.button:hover .button__circle--border-gray {
  border-color: #cfd2e0;
}
.button:hover .button__circle--border-gray::after {
  -webkit-animation: arrow-animation-red 0.3s ease forwards;
          animation: arrow-animation-red 0.3s ease forwards;
}
.button:hover .button__circle--header-sp::after {
  -webkit-animation: arrow-animation-red 0.3s ease forwards;
          animation: arrow-animation-red 0.3s ease forwards;
}
.button--red, .button--yellow, .button--white, .button--gradient {
  --min-width: 320px;
  --min-height: 80px;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: var(--min-width);
  min-height: var(--min-height);
  border-radius: calc(var(--min-height) / 2);
  padding: 0 40px;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button--red, .button--yellow, .button--white, .button--gradient {
    min-width: 206.25px;
    min-height: 51.5625px;
    padding: 0 23.4375px;
  }
}
.button--red::after, .button--yellow::after, .button--white::after, .button--gradient::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#ff4500), to(#fee803));
  background: linear-gradient(to right, #ff4500, #fee803);
  border-radius: calc(var(--min-height) / 2);
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.button--red:hover > .button__text, .button--yellow:hover > .button__text, .button--white:hover > .button__text, .button--gradient:hover > .button__text {
  color: #fff;
}
.button--red:hover::after, .button--yellow:hover::after, .button--white:hover::after, .button--gradient:hover::after {
  opacity: 1;
}
.button--red {
  background: #e30100;
}
.button--red:hover {
  background: none;
}
.button--yellow {
  background: #fdc300;
}
.button--white {
  background: #fff;
}
.button--gradient {
  background: -webkit-gradient(linear, left top, right top, from(#fee803), to(#ff4500));
  background: linear-gradient(to right, #fee803, #ff4500);
}
.button--entry {
  -webkit-transition: none;
  transition: none;
}
.button--entry::after {
  background: #e30100;
}
.button--entry:hover > .button__text {
  color: #fff;
}
.button--entry:hover > .button__circle {
  border-color: #fff;
}
.button--entry:hover > .button__circle::after {
  -webkit-animation-name: arrow-animation-white;
          animation-name: arrow-animation-white;
}
.button--reverse {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.button--reverse .button__circle {
  right: auto;
  left: 0px;
}
.button--reverse .button__circle::after {
  left: auto;
  right: 50%;
  -webkit-transform: translate(50%, -50%) scaleX(-1);
          transform: translate(50%, -50%) scaleX(-1);
}
.button--reverse:hover .button__circle::after {
  -webkit-animation: arrow-animation-red-to-white-reverse 0.3s ease forwards;
          animation: arrow-animation-red-to-white-reverse 0.3s ease forwards;
}
.button__text {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button__text {
    font-size: 12px;
  }
}
.button__text--red {
  color: #e30100;
}
.button__text--card {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .button__text--card {
    font-size: 13px;
  }
}
.button__text--center {
  margin: 0 auto;
}
.js-accordion .button__circle {
  right: 0px;
  border: 1px solid #c4c4c4 !important;
  z-index: -1;
}
.button__circle {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button__circle {
    width: 32.8125px;
    height: 32.8125px;
  }
}
.button__circle::after {
  content: "";
  width: 12.23px;
  height: 11.61px;
  background: url("./public/img/svg/icons/arrow-right-white.svg") no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .button__circle::after {
    width: 9.234375px;
    height: 8.765625px;
  }
}
.button__circle--red {
  border-color: #e30100;
}
.button__circle--red::after {
  background: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat center/cover;
}
.button__circle--border-gray {
  border-color: #cfd2e0;
}
.button__circle--border-gray::after {
  background: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .button__circle--header-sp {
    background: #fff;
    border: none !important;
  }
}
.button__circle--card {
  right: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .button__circle--card {
    width: 34.6875px;
    height: 34.6875px;
  }
}
.button__circle--card::after {
  width: 16.08px;
  height: 15.27px;
  background: url("./public/img/svg/icons/arrow-right-orange.svg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .button__circle--card::after {
    width: 10.7484375px;
    height: 10.2046875px;
  }
}
.button__circle--card.button__circle-card--blue::after {
  background: url("./public/img/svg/icons/arrow-right-blue.svg") no-repeat center/cover;
}
.button__circle--card.button__circle-card--yellow::after {
  background: url("./public/img/svg/icons/arrow-right-yellow.svg") no-repeat center/cover;
}
.button__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button__container--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.accordion__head {
  cursor: pointer;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 100001;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #f2f2f2;
  -webkit-transition: opacity 1s cubic-bezier(0.5, 0, 0.7, 0.9);
  transition: opacity 1s cubic-bezier(0.5, 0, 0.7, 0.9);
}
.loader.finish {
  opacity: 0;
  pointer-events: none;
}
.loader__image {
  position: relative;
  top: 50%;
  left: 50%;
  width: 100%;
  width: 162.42px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s cubic-bezier(0.9, 0.04, 0.74, 0.39);
  transition: opacity 0.3s cubic-bezier(0.9, 0.04, 0.74, 0.39);
}
@media screen and (max-width: 767px) {
  .loader__image {
    margin-left: 10px;
    width: 89.53125px;
  }
}
.loader__image.start {
  opacity: 1;
  pointer-events: none;
}

.intro {
  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;
}
@media screen and (max-width: 767px) {
  .intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.intro__text-container {
  width: 45.65%;
}
@media screen and (max-width: 767px) {
  .intro__text-container {
    width: 100%;
  }
}
.intro__heading {
  margin-block: 46px 36px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .intro__heading {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .intro__heading {
    font-size: 26.25px;
  }
}
@media screen and (max-width: 767px) {
  .intro__subheading {
    height: 10px;
  }
}
.intro__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .intro__text {
    font-size: 14px;
  }
}
.intro__card-container {
  position: relative;
  width: 340px;
  height: 458px;
}
@media screen and (max-width: 900px) {
  .intro__card-container {
    width: 50.7%;
    height: 314px;
  }
}
@media screen and (max-width: 767px) {
  .intro__card-container {
    width: 320px;
    height: 314px;
  }
}
.intro__card-top {
  position: absolute;
  width: 340px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  -webkit-transition: z-index 0s 400ms;
  transition: z-index 0s 400ms;
  -webkit-animation: card-back-left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: card-back-left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 1200px) {
  .intro__card-top {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .intro__card-top {
    width: 201.5625px;
  }
}
.intro__card-top--back {
  rotate: -5deg;
  z-index: 1;
}
.intro__card-top--middle {
  margin-top: -70px;
  margin-left: 50px;
  rotate: -20deg;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .intro__card-top--middle {
    margin-top: -40px;
    margin-left: 20px;
  }
}
.intro__card-top--front {
  z-index: 3;
}
.intro__card-top--front.sub {
  z-index: 2;
}
.intro__card-top.active {
  z-index: 4;
  -webkit-animation: card-active 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: card-active 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
.intro__card {
  position: absolute;
  width: 338px;
  height: 456px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
@media screen and (max-width: 900px) {
  .intro__card {
    width: 197px;
    height: 266px;
  }
}
.intro__card--1 {
  top: 36px;
  right: 51px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
@media screen and (max-width: 900px) {
  .intro__card--1 {
    top: 22px;
    right: 30px;
  }
}
.intro__card--2 {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.intro__card--3 {
  bottom: 36px;
  left: 51px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
@media screen and (max-width: 900px) {
  .intro__card--3 {
    bottom: 22px;
    left: 30px;
  }
}
.intro__card.visible {
  opacity: 1;
}

.banner {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .banner {
    padding-top: 68px;
    background: #e30100;
  }
}
.banner__container {
  width: 100%;
  height: 380px;
  background-color: #e30100;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .banner__container {
    height: 146.6875px;
  }
}
.banner__container::after {
  content: "";
  width: 800px;
  height: 670px;
  background: url("./public/img/banner/banner-deco.png") no-repeat center/contain;
  position: absolute;
  top: 159px;
  right: -107px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .banner__container::after {
    width: 650px;
    height: 420px;
    top: 20px;
    right: -150px;
  }
}
.banner__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner__image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .banner__image {
    height: 480px;
  }
}
@media screen and (max-width: 767px) {
  .banner__image {
    height: 234.375px;
  }
}
.banner__image--position-top img {
  -o-object-position: top;
     object-position: top;
}
.banner__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: absolute;
  top: 202px;
  bottom: 65px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .banner__title-wrap {
    gap: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: auto;
  }
}
.banner__title-wrap .heading{
  text-align: left;
}
.banner__heading-en {
  margin-bottom: 10px;
  height: 60px;
  padding-left: 0;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .banner__heading-en {
    height: 100%;
    max-height: 40px;
    margin-bottom: 4px;
    padding-right: 30px;
  }
}
.banner__heading-en--interview-details {
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .banner__heading-en--data {
    width: 90%;
    height: 31.53px;
  }
}
@media screen and (max-width: 580px) {
  .banner__heading-en--data {
            height: 100%;
        object-fit: contain;
        width: 100%;
        max-width: 140px;
  }
}
.banner__heading-jp {
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .banner__heading-jp {
    font-size: 12px;
  }
}
.banner__heading-jp.fs22 {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .banner__heading-jp.fs22 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .banner__heading-jp--interview-details {
    font-size: 12px;
  }
}
.banner__heading-jp-note {
  margin-left: 10px;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .banner__heading-jp-note {
    margin-left: 5px;
    font-size: 10px;
  }
}

.breadcrumbs {
  padding-top: 39px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding-top: 19.5px;
  }
}
.breadcrumbs__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs__link {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #333;
  position: relative;
  padding-right: 17px;
  margin-right: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link {
    font-size: 10px;
    padding-right: 10px;
    margin-right: 10px;
  }
}
.breadcrumbs__link::after {
  content: "/";
  width: auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  font-size: 1.4rem;
  font-weight: 600;
  color: #9a9a9a;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link::after {
    font-size: 12px;
  }
}
.breadcrumbs__title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #9a9a9a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__title {
    font-size: 10px;
  }
}
.breadcrumbs--dots {
  background: url("./public/img/about/intro-bg.jpg") no-repeat center/cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .breadcrumbs--dots {
    background-image: url("./public/img/about/intro-bg-sp.jpg");
  }
}

.footer {
  padding-block: 95.5px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 60.9375px 56.25px;
  }
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .footer__container {
    max-width: 640px !important;
    padding-inline: 28.125px !important;
  }
}
.footer__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 150px;
}
@media screen and (max-width: 980px) {
  .footer__upper {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .footer__upper {
    gap: 0;
  }
}
.footer__logo-wrapper {
  width: 153px;
  margin: 0 24px 64px auto;
}
.footer__button {
  min-width: 241px;
  min-height: 60px;
  padding-inline: 20px 45px;
}
.footer__button > .button__circle {
  width: 37px;
  height: 37px;
}
.footer__lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer__lower-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .footer__lower-list {
    gap: 23.4375px;
  }
}
.footer__lower-list-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .footer__lower-list-link {
    font-size: 10.78125px;
  }
}
.footer__lower-list-link:hover {
  opacity: 0.5;
}
.footer__copyright {
  display: block;
  font: 700 1rem "Roboto", sans-serif;
  letter-spacing: 0.06em;
  color: #c4c4c4;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 5.625px;
    color: #ffb4b4;
    text-align: center;
  }
}
.footer__card {
  width: 100%;
  max-width: 261px;
  aspect-ratio: 261/92;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer__card:hover {
  opacity: 0.5;
}
.footer__button-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer__button-to-top {
    width: 40px;
    bottom: 15px;
    right: 15px;
  }
}

.inquiry-block {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
.inquiry-block__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.inquiry-block__list-item {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.inquiry-block__list-item::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.inquiry-block__list-item--entry {
  grid-column: span 2;
  aspect-ratio: 1300/640;
  background-image: linear-gradient(45deg, #e30100 0%, #e30100 30%, #ff5b07 60%, #fee803 100%);
  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: 980px) {
  .inquiry-block__list-item--entry {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 850px) {
  .inquiry-block__list-item--entry {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .inquiry-block__list-item--entry {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    aspect-ratio: initial;
    padding: 56.25px 28.125px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.inquiry-block__list-item--entry::before {
  top: 35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 76.9%;
  aspect-ratio: 1000/749;
  background-image: url("./public/img/inquiry-block/group-people.png");
}
@media screen and (max-width: 767px) {
  .inquiry-block__list-item--entry::before {
    position: relative;
    top: initial;
    left: initial;
    -webkit-transform: none;
            transform: none;
    width: 85%;
    margin-bottom: 37.5px;
  }
}
.inquiry-block__list-item--red, .inquiry-block__list-item--blue, .inquiry-block__list-item--yellow, .inquiry-block__list-item--orange {
  padding: 50px;
  aspect-ratio: 650/340;
}
@media screen and (max-width: 768px) {
  .inquiry-block__list-item--red, .inquiry-block__list-item--blue, .inquiry-block__list-item--yellow, .inquiry-block__list-item--orange {
    aspect-ratio: 400/340;
  }
}
@media screen and (max-width: 767px) {
  .inquiry-block__list-item--red, .inquiry-block__list-item--blue, .inquiry-block__list-item--yellow, .inquiry-block__list-item--orange {
    padding: 14.0625px;
    aspect-ratio: 400/340;
  }
}
.inquiry-block__list-item--red::before, .inquiry-block__list-item--blue::before, .inquiry-block__list-item--yellow::before, .inquiry-block__list-item--orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), to(#333));
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #333 100%);
  z-index: -1;
}
.inquiry-block__list-item--red:hover .inquiry-block__list-item-background, .inquiry-block__list-item--blue:hover .inquiry-block__list-item-background, .inquiry-block__list-item--yellow:hover .inquiry-block__list-item-background, .inquiry-block__list-item--orange:hover .inquiry-block__list-item-background {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.inquiry-block__list-item-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}
@media screen and (max-width: 1024px) {
  .inquiry-block__list-item-background {
    -o-object-position: right;
       object-position: right;
  }
}
.inquiry-block__list-content {
  position: relative;
}
.inquiry-block__list-content--small {
  position: absolute;
  bottom: 50px;
  left: 50px;
}
@media screen and (max-width: 1024px) {
  .inquiry-block__list-content--small {
    left: 25px;
    bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .inquiry-block__list-content--small {
    bottom: 23.4375px;
    left: 11.5px;
  }
}
.inquiry-block__list-heading {
  height: 31px;
}
@media screen and (max-width: 767px) {
  .inquiry-block__list-heading {
    height: 50px;
  }
}
.inquiry-block__list-heading--big {
  height: 70px;
}
@media screen and (max-width: 767px) {
  .inquiry-block__list-heading--big {
    height: 77px;
  }
}
@media screen and (max-width: 767px) {
  .inquiry-block__heading {
    width: 210px;
  }
}
.inquiry-block__heading-image {
  margin-bottom: 5px;
  height: 40px;
}
@media screen and (max-width: 1024px) {
  .inquiry-block__heading-image {
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .inquiry-block__heading-image {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .inquiry-block__heading-image--intern {
    width: 101.953125px;
  }
}
@media screen and (max-width: 767px) {
  .inquiry-block__heading-image--career {
    width: 103.265625px;
  }
}
@media screen and (max-width: 767px) {
  .inquiry-block__heading-image--crew {
    width: 77.5875px;
  }
}
@media screen and (max-width: 767px) {
  .inquiry-block__heading-image--part-timer {
    width: 150px;
  }
}
.inquiry-block__list-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8333333333em;
  letter-spacing: 0.08em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .inquiry-block__list-text {
    font-size: 12.1875px;
  }
}
.inquiry-block__list-text--small {
  letter-spacing: 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .inquiry-block__list-text--small {
    font-size: 8.4375px;
  }
}
.inquiry-block__list-button {
  top: unset;
  -webkit-transform: none;
          transform: none;
  right: 40px;
  bottom: 32px;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 1024px) {
  .inquiry-block__list-button {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .inquiry-block__list-button {
    width: 25.78125px;
    height: 25.78125px;
    bottom: 14.0625px;
    right: 14.0625px;
  }
}
.inquiry-block__list-button::after {
  width: 18px;
  height: 17px;
}
@media screen and (max-width: 767px) {
  .inquiry-block__list-button::after {
    width: 7.884375px;
    height: 7.48125px;
  }
}
.inquiry-block__button {
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .inquiry-block__button {
    min-width: 225px;
    min-height: 56.25px;
    margin-top: 28.125px;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  -webkit-transition: background-color 0.5s, -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0.5s, -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.5s;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.5s, -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 999;
}
@media screen and (min-width: 1025px) {
  .header:hover {
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .header:hover {
    background: transparent;
  }
}
.header:hover .header__nav-item {
  color: #000;
}
.header:hover .header__nav-item:has(.header__submenu)::after {
  background: url("./public/img/svg/icons/chevron-down-red.svg") no-repeat center/cover;
}
.header__container {
  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;
  height: 90px;
  padding-block: 14.39px;
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(1080px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  padding-inline: 2%;
}
@media screen and (max-width: 767px) {
  .header__container {
    max-width: 100%;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header__container {
    height: 70px;
    padding-block: 11.25px;
    padding-inline: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
  }
}
.header__logo-wrapper {
  max-width: 64px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo-wrapper {
    margin-left: auto;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    max-width: 47px;
  }
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 35px;
  margin-inline: auto 20px;
}
.header__nav {
  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;
  gap: 35px;
}
@media screen and (max-width: 1300px) {
  .header__nav {
    gap: 20px;
  }
}
.header__nav-item {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #000;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}
@media screen and (max-width: 1300px) {
  .header__nav-item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-item {
    font-size: 1rem;
  }
}
.header__nav-item:hover {
  color: #e30100 !important;
}
.header__nav-item:has(.header__submenu) {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-item:has(.header__submenu)::before {
  content: "";
  position: absolute;
  bottom: -52px;
  left: 50%;
  width: calc(100% + 70px);
  height: 57px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .header__nav-item:has(.header__submenu)::before {
    display: none;
  }
}
.header__nav-item:has(.header__submenu)::after {
  display: inline-block;
  content: "";
  width: 12.36px;
  height: 6.18px;
  background: url("./public/img/svg/icons/chevron-down-red.svg") no-repeat center/cover;
  margin-left: 10px;
}
.header__nav-item:has(.header__submenu):hover {
  cursor: pointer;
}
.header__nav-item:has(.header__submenu):hover .header__submenu {
  max-height: 650px;
}
.header__nav-item:has(.header__submenu):hover:has(.header__submenu)::before {
  z-index: 0;
}
.header__nav-item-label {
  cursor: pointer;
}
.header__submenu {
  position: fixed;
  top: 90px;
  left: 0;
  bottom: 0;
  width: 100vw;
  max-height: 0;
  background: #f2f2f2;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  overflow-y: scroll;
}
.header__submenu-content {
  width: 100%;
  height: 100%;
  padding-block: 57px 63px;
}
.header__submenu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.header__submenu-list--col-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 710px;
  margin: 0 auto;
}
.header__submenu-item {
  position: relative;
  padding: 28px;
  background: #fff;
  border-radius: 28px;
}
.header__submenu-item--mh-280 {
  min-height: 280px;
}
.header__submenu-item--qa {
  min-height: auto;
  grid-column: 2;
  grid-row: 2;
  padding: 23px 28px;
}
.header__submenu-item:hover .header__submenu-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.header__submenu-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  width: 284px;
  height: 193px;
}
.header__submenu-image-wrapper img{
  height: 100%;
  width: 100%;
}
.header__submenu-image {
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}
.header__submenu-heading-row {
  margin-top: 24px;
  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;
}
.header__submenu-heading-row--m0 {
  margin: 0;
}
.header__submenu-heading {
  color: #000;
}
.header__submenu-circle {
  position: relative;
  right: initial;
  -webkit-transform: none;
          transform: none;
  width: 35px;
  height: 35px;
}
.header__button {
  min-width: 210px;
  min-height: 55px;
  -ms-flex-item-align: center;
      align-self: center;
  padding-inline: 20px 45px;
}
@media screen and (max-width: 1024px) {
  .header__button {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .header__container-button {
    min-height: 55px;
    margin: 0 20px 0 auto;
  }
}
.header__button-circle {
  width: 37px;
  height: 37px;
}
@media screen and (max-width: 767px) {
  .header__button-circle {
    border-width: 1px;
  }
}
.header__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: #e30100;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  transition: 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
  overflow: scroll;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__sp-menu {
    background: #f2f2f2;
  }
}
@media screen and (max-width: 767px) {
  .header__sp-menu {
    background: #f2f2f2;
  }
}
.header__sp-menu.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .header__sp-menu-list {
    display: grid;
    margin-top: 70px;
    gap: 56.25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__sp-menu-list {
    padding: 20px 0 100px;
    max-width: 600px;
    margin: 70px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .header__sp-menu-list {
    padding: 56px 37.5px;
    overflow-y: scroll;
  }
}
.header__sp-menu-item {
  padding-block: 21.09375px;
  border-bottom: 1px solid #fff;
}
.header__sp-accordion {
  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__sp-accordion.active .header__sp-circle::before {
  rotate: 90deg;
}
.header__sp-menu-label {
  font-size: getsp(26px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2.1538461538em;
  color: #fff;
}
.header__sp-circle {
  position: relative;
  width: 28.125px;
  height: 28.125px;
  -webkit-transform: none;
          transform: none;
  right: auto;
  border-width: 1px;
}
.header__hamburger {
  position: static;
  top: 7px;
  right: 15px;
  display: none;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__hamburger {
    top: 10px;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    margin-left: auto;
  }
}
.header__hamburger.active .header__hamburger-block > span {
  border-color: #e30100;
}
.header__hamburger.active .header__hamburger-block > span:first-child {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__hamburger.active .header__hamburger-block > span:last-child {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header__hamburger.active .header__hamburger-label {
  content: url("./public/img/svg/hamburger/close.svg");
}
.header__hamburger-block {
  position: relative;
  width: 22.5px;
  height: 30px;
  margin-bottom: 5px;
}
.header__hamburger-block span {
  position: absolute;
  display: inline-block;
  width: 100%;
  border-top: 3px solid #e30100;
  border-radius: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__hamburger-block span:first-child {
  top: 10px;
}
.header__hamburger-block span:nth-child(2) {
  top: 20px;
}
.header__hamburger-label {
  width: 42.1875px;
}

.interview {
  padding-top: 130px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .interview {
    padding-top: 56.25px;
    padding-inline: 28.125px;
  }
}
.interview--recruit {
  padding-block: 120px 140px;
  background: url("./public/img/interview/dotted-bg.png") #fff no-repeat top/cover;
}
@media screen and (max-width: 767px) {
  .interview--recruit {
    padding-block: 60px 39px;
  }
}
.interview--recruit .interview__slider {
  margin-block: 70px 54px;
}
@media screen and (max-width: 767px) {
  .interview--recruit .interview__slider {
    margin-block: 35px 27px;
  }
}
.interview--recruit .interview__item {
  background-color: #f2f2f2;
}
.interview--recruit .interview__slider-arrows .splide__arrow {
  border: 1px solid #cfd2e0;
}
.interview--recruit .interview__slider-arrows .splide__arrow:hover {
  border: none;
}
.interview__heading-container {
  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;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .interview__heading-container {
    padding-inline: 0 !important;
  }
}
.interview__slider {
  margin-block: 70px 40px;
}
@media screen and (max-width: 767px) {
  .interview__slider {
    margin-block: 35.625px 37.5px;
  }
}
@media screen and (max-width: 767px) {
  .interview__list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.interview__slider-arrows {
  position: relative;
  bottom: -94px;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .interview__slider-arrows {
    margin: 0 4%;
  }
}
.interview__slider-arrows .splide__arrow {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.interview__slider-arrows .splide__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18.65px;
  height: 17.7px;
  background: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat center/cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.interview__slider-arrows .splide__arrow:hover:not(:disabled) {
  opacity: 1;
}
.interview__slider-arrows .splide__arrow--prev:hover,
.interview__slider-arrows .splide__arrow--next:hover {
  background-color: #e30100;
}
.interview__slider-arrows .splide__arrow--prev:hover::after,
.interview__slider-arrows .splide__arrow--next:hover::after {
  background: url("./public/img/svg/icons/arrow-right-white.svg") no-repeat center/cover;
}
.interview__slider-arrows .splide__arrow--prev {
  right: 120px;
  left: unset;
}
.interview__slider-arrows .splide__arrow--prev::after {
  top: unset;
  left: unset;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.interview__slider-arrows .splide__arrow--next {
  right: 0;
}
.interview__item {
  position: relative;
  width: 760px;
  max-width: 100%;
  padding: 60px 60px 56.4px;
  border-radius: 30px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .interview__item {
    width: 500px;
    padding: 40px 40px 36.4px;
  }
}
@media screen and (max-height: 768px) {
  .interview__item {
    padding: 30px 30px 50px;
  }
}
@media screen and (max-width: 767px) {
  .interview__item {
    padding: 28.13px 28.13px 31.41px;
    border-radius: 14.0625px;
  }
  .interview__item:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .interview__item:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .interview__item:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.interview__item:hover .interview__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.interview__item:hover .button__circle::after {
  -webkit-animation: arrow-animation 0.8s ease forwards;
          animation: arrow-animation 0.8s ease forwards;
}
.interview__item .button__circle {
  border-color: #cfd2e0;
  background: #fff;
}
.interview__item .button__circle::after {
  background: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .interview__item .button__circle::after {
    width: 10.7484375px;
    height: 10.2046875px;
  }
}
.interview__item.disabled::before {
  content: "";
  position: absolute;
  z-index: 99;
  top: 42%;
  left: 50%;
  width: 383.31px;
  height: 38.77px;
  background: url("./public/img/interview/coming-soon.svg") no-repeat center/contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .interview__item.disabled::before {
    width: 179.6765625px;
    height: 18.1734375px;
  }
}
.interview__item.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: #fff;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .interview__item.disabled::after {
    border-radius: 14.0625px;
  }
}
.interview__image {
  border-radius: 20px;
}
@media screen and (max-height: 768px) {
  .interview__image {
    max-height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .interview__image {
    border-radius: 14.0625px;
  }
}
.interview__image img {
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}
.interview__title {
  margin-block: 48px 20px;
  font-size: 2.8rem;
  line-height: 1.6em;
  letter-spacing: 0.08em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
@media screen and (max-height: 768px) {
  .interview__title {
    font-size: 2rem;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .interview__title {
    font-size: 16px;
    margin-block: 18px 18px;
  }
}
.interview .splide__arrows {
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 960px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 0;
}
@media screen and (max-width: 1300px) {
  .interview .splide__arrows {
    margin: 0;
  }
}
.interview .splide__arrow--prev {
  left: 0;
  right: unset;
}
@media screen and (max-width: 1000px) {
  .interview .splide__arrow--prev {
    left: 4%;
  }
}
@media screen and (max-width: 1000px) {
  .interview .splide__arrow--next {
    right: 4%;
  }
}
.interview__position-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .interview__position-name {
    gap: 7.5px;
  }
}
.interview__position {
  width: 70px;
  height: 26.6px;
  background-color: #e30100;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2em;
  border-radius: 13px;
  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) {
  .interview__position {
    width: 37.5px;
    height: 16.875px;
    font-size: 8.4375px;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}
.interview__name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .interview__name {
    font-size: 11.25px;
  }
}
.interview__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 204px;
}
@media screen and (max-width: 767px) {
  .interview__note {
    height: 114.84375px;
    margin-top: 18.75px;
  }
}
.interview__note-image {
  position: absolute;
  top: 0;
  left: -72px;
  width: 172px;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .interview__note-image {
    -ms-flex-item-align: start;
        align-self: flex-start;
    position: relative;
    left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .interview__note-image {
    top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .interview__note-image {
    left: -30%;
    top: 30px;
    width: 112.753125px;
  }
}
.interview__note-text {
  position: relative;
  z-index: 1;
  width: 223.41px;
  height: 90px;
  margin-left: 100px;
  padding-left: 13px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5714285714em;
  letter-spacing: 0.08em;
  text-align: center;
  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: 1300px) {
  .interview__note-text {
    left: 0;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .interview__note-text {
    left: -8%;
    width: 262.5px;
    height: 42.8578125px;
    margin-left: -42.1875px;
    font-size: 9.375px;
  }
}
.interview__note-text::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 223.41px;
  height: 90px;
  background: url("./public/img/interview/text-bubble.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .interview__note-text::after {
    width: 100%;
    height: 100%;
    background: url("./public/img/interview/text-bubble-sp.svg") no-repeat center/contain;
  }
}
@media screen and (max-width: 767px) {
  .interview__note-container {
    padding-inline: 0 !important;
  }
}
.interview__top-note-text {
  font-size: 1.4rem;
  margin-left: 10px;
  color: #6c6c6c;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .interview__top-note-text {
    bottom: -18px;
    font-size: 1rem;
    position: absolute;
  }
}

.common-menu__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 80px 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .common-menu__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.common-menu__list-item {
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .common-menu__list-item {
    position: relative;
    padding-block: 23.4375px;
    border-bottom: 1px solid #c4c4c4;
  }
}
@media screen and (max-width: 767px) {
  .common-menu__list-item.active .common-menu__list-item-circle::after {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .common-menu__list-item--sp-border-gray {
    border-color: #cfd2e0;
  }
}
.common-menu__list-item--link {
  display: block;
}
.common-menu__list-item--link > .button__circle {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32.34375px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50px;
}
.common-menu__list-item--link > .button__circle::after {
  background: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat center/cover;
}
.common-menu__list-item + .common-menu__list-item {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .common-menu__list-item + .common-menu__list-item {
    margin-top: 0;
  }
}
.common-menu__list-item-circle {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  aspect-ratio: 1/1;
  border-radius: 50px;
}
.common-menu__list-item-circle::before, .common-menu__list-item-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #e30100;
  border-radius: 2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 10px;
  height: 1px;
  /* background: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat center/cover; */
}
.common-menu__list-item-circle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (max-width: 767px) {
  .common-menu__list-item-circle--header {
    background: #fff;
    border: none;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .common-menu__list-item-circle--header::before, .common-menu__list-item-circle--header::after {
    background: #e30100;
  }
}
.common-menu__list-heading {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .common-menu__list-heading {
    font-size: 12.1875px;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 1024px) {
  .common-menu__list-heading--tablet-sp-black {
    color: #333;
  }
}
.common-menu__accordion-content {
  max-height: 9999px !important;
}
@media screen and (max-width: 767px) {
  .common-menu__accordion-content {
    max-height: 0 !important;
  }
}
.common-menu__sublist {
  margin-top: 20px;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
@media screen and (max-width: 767px) {
  .common-menu__sublist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 21.09375px;
    margin-top: 0;
    padding-block: 23.4375px;
    /* border-bottom: 1px solid #c4c4c4; */
  }
}
.common-menu__sublist--sp-border-gray {
  border-color: #cfd2e0;
}
.common-menu__sublist-link {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.2857142857em;
  color: #5d5d5d;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .common-menu__sublist-link {
    font-size: 11.25px;
    letter-spacing: 0.02em;
    color: #333;
  }
}
.common-menu__sublist-link:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .common-menu__sublist-link--tablet-sp-black {
    color: #333;
  }
}

.marquee {
  height: 1000px;
}
@media screen and (max-width: 1024px) {
  .marquee {
    height: auto;
  }
}
.marquee--rotate-left-15 {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  margin-left: 100px;
}
@media screen and (max-width: 1024px) {
  .marquee--rotate-left-15 {
    -webkit-transform: none;
            transform: none;
    margin-left: 0;
  }
}
.marquee--rotate-right-15 {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
@media screen and (max-width: 1024px) {
  .marquee--rotate-right-15 {
    -webkit-transform: none;
            transform: none;
  }
}
.marquee__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .marquee__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100vw;
    margin-left: -37.5px;
    white-space: nowrap;
  }
}
.marquee__list--reverse .marquee__item {
  -webkit-animation: marquee-y-reverse 10s linear infinite;
          animation: marquee-y-reverse 10s linear infinite;
}
@media screen and (max-width: 1024px) {
  .marquee__list--reverse .marquee__item {
    -webkit-animation: marquee-x 10s linear infinite;
            animation: marquee-x 10s linear infinite;
  }
}
.marquee__item {
  -webkit-animation: marquee-y 10s linear infinite;
          animation: marquee-y 10s linear infinite;
}
@media screen and (max-width: 1024px) {
  .marquee__item {
    -webkit-animation: marquee-x 10s linear infinite;
            animation: marquee-x 10s linear infinite;
  }
}

.wp-pagenavi {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    font-size: 14px;
  }
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #e30100;
  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) {
  .wp-pagenavi .page,
  .wp-pagenavi .current,
  .wp-pagenavi .extend,
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 40px;
    height: 40px;
  }
}
.wp-pagenavi .page,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  background: #fff;
}
.wp-pagenavi .current {
  background: #e30100;
  color: #fff;
}
.wp-pagenavi .extend {
  width: auto;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  overflow: hidden;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  content: "";
  position: absolute;
  width: 14.98px;
  height: 14.22px;
  background: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat center/cover;
}
.wp-pagenavi .previouspostslink::after {
  -webkit-transform: scaleX(-1) translate(calc(50% - 14.98px), -50%);
          transform: scaleX(-1) translate(calc(50% - 14.98px), -50%);
  top: 50%;
  right: 50%;
}
.wp-pagenavi .previouspostslink:hover::after {
  -webkit-animation: arrow-animation-red-reverse 0.3s ease forwards;
          animation: arrow-animation-red-reverse 0.3s ease forwards;
}
.wp-pagenavi .nextpostslink::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wp-pagenavi .nextpostslink:hover::after {
  -webkit-animation: arrow-animation-red 0.3s ease forwards;
          animation: arrow-animation-red 0.3s ease forwards;
}

@media screen and (min-width: 767px) {
  .fpslider {
    pointer-events: none;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__wrap {
    margin-top: calc(-1 * (100vh - var(--fpslider-slide0-col-height)) / 2);
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__track {
    width: 100%;
    height: auto;
    position: sticky;
    top: 0;
    left: 0;
    pointer-events: none;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__track:not(.fpslider__track--clone) .slide-box__img img,
  .fpslider__track:not(.fpslider__track--clone) .slide-box__img picture {
    display: none;
  }
}
.fpslider__track--clone {
  width: 100%;
  overflow: visible;
  pointer-events: none;
  height: 100%;
  position: absolute;
  padding-block: var(--fpslider-wrap-padding-block);
}
@media screen and (max-width: 767px) {
  .fpslider__track--clone {
    display: none;
  }
}
.fpslider__track--clone .fpslider__slide {
  position: absolute;
  top: 0;
  padding-block: 0 !important;
  min-height: unset;
}
.fpslider__slide {
  position: relative;
  top: 0;
  height: auto;
  min-height: 100vh;
  scroll-margin-top: 250px;
}
@media screen and (max-width: 1280px) {
  .fpslider__slide {
    padding-inline: 4%;
  }
}
@media screen and (max-width: 767px) {
  .fpslider__slide {
    padding-inline: 0;
    min-height: unset;
    scroll-margin-top: 60px;
  }
}
.fpslider__slide.active {
  opacity: 1;
  visibility: visible;
}
.fpslider__slide.active .fpslider__slide-content > * {
  pointer-events: auto;
}
@media screen and (min-width: 767px) {
  .fpslider__slide, .fpslider__heading {
    width: 100%;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s 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 (min-width: 767px) {
  .fpslider__pagination {
    position: absolute;
    top: 0;
    left: -52px;
    height: 100%;
    padding-block: calc(50vh - var(--fpslider-pagi-height) / 2);
  }
}
@media screen and (min-width: 767px) and (max-width: 1280px) {
  .fpslider__pagination {
    left: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 767px) {
  .fpslider__pagination-list {
    position: sticky;
    top: calc(50vh - var(--fpslider-pagi-height) / 2);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__pagination-list::after {
    content: "";
    position: absolute;
    margin: auto;
    inset: 0;
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, transparent, transparent 8px, #e30100 8px, #e30100 48px);
  }
}
@media screen and (min-width: 767px) {
  .fpslider__pagination-page {
    border: 1px solid #e30100;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__pagination-page:not(:last-child) {
    margin-bottom: 40px;
  }
}
.fpslider__pagination-page::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #e30100;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: inherit;
  transition: inherit;
}
@media screen and (max-width: 767px) {
  .fpslider__pagination-page::before {
    content: none;
  }
}
.fpslider__pagination-page.active {
  -webkit-animation: pulse 1.5s 0.15s;
          animation: pulse 1.5s 0.15s;
}
.fpslider__pagination-page.active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 91, 170, 0.7);
            box-shadow: 0 0 0 0 rgba(0, 91, 170, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(0, 91, 170, 0);
            box-shadow: 0 0 0 10px rgba(0, 91, 170, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 91, 170, 0);
            box-shadow: 0 0 0 0 rgba(0, 91, 170, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 91, 170, 0.7);
            box-shadow: 0 0 0 0 rgba(0, 91, 170, 0.7);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(0, 91, 170, 0);
            box-shadow: 0 0 0 10px rgba(0, 91, 170, 0);
  }
  100% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 91, 170, 0);
            box-shadow: 0 0 0 0 rgba(0, 91, 170, 0);
  }
}
.fpslider__pin {
  height: calc(100% - 100vh);
  width: 2px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .fpslider__pin {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .fpslider:has(.fpslider__heading) .fpslider__wrap {
    margin-top: calc(-1 * (100vh - var(--fpslider-slide0-col-height) - var(--fpslider-heading-content-height) - 40px) / 2);
  }
}
@media screen and (min-width: 767px) {
  .fpslider:has(.fpslider__heading) .fpslider__slide {
    padding-top: calc(var(--fpslider-heading-content-height) + 40px);
  }
}
@media screen and (min-width: 767px) {
  .fpslider:has(.fpslider__heading) .fpslider__pagination {
    padding-top: calc(50vh - var(--fpslider-pagi-height) / 2 + var(--fpslider-heading-content-height) - 40px);
    padding-bottom: calc(100vh - (50vh - var(--fpslider-pagi-height) / 2 + var(--fpslider-heading-content-height) - 40px) - var(--fpslider-pagi-height));
  }
}
@media screen and (min-width: 767px) {
  .fpslider:has(.fpslider__heading) .fpslider__pagination-list {
    top: calc(50vh - var(--fpslider-pagi-height) / 2 + var(--fpslider-heading-content-height) - 40px);
  }
}
@media screen and (min-width: 767px) {
  .fpslider__heading {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__heading.hidden {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (min-width: 767px) {
  .fpslider__heading .fpslider__slide-content {
    padding-bottom: 550px;
  }
}
@media screen and (min-width: 767px) and (max-height: 850px) {
  .fpslider__heading .fpslider__slide-content {
    padding-bottom: calc(40px + 70vh - var(--fpslider-heading-content-height));
  }
}
@media screen and (min-width: 767px) {
  .fpslider__heading .fpslider__slide-content > * {
    pointer-events: auto;
  }
}
@media screen and (min-width: 767px) and (min-width: 1280px) {
  .fpslider--rev .fpslider__pagination {
    left: -62px;
  }
}
.fpslider__anchor {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .fpslider__anchor {
    top: -58px;
  }
}
.fpslider__clone-list {
  position: sticky;
  top: 0;
  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: 100vh;
  gap: 40px;
}
.fpslider__clone-list .fpslider__slide-content {
  padding-block: 0;
}
.fpslider__clone-images {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.fpslider__clone-images .fpslider__slide {
  position: static;
  padding-block: 0;
  min-height: unset;
}
.fpslider__clone-images .fpslider__slide-content {
  position: relative;
}
.fpslider__clone-images .fpslider__slide-content > picture,
.fpslider__clone-images .fpslider__slide-content > img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.fpslider__clone-images .fpslider__slide-content > picture.active,
.fpslider__clone-images .fpslider__slide-content > img.active {
  opacity: 1;
  visibility: visible;
}
.fpslider__slide-content {
  scroll-margin-top: 250px;
}
@media screen and (max-width: 767px) {
  .fpslider__slide-content {
    scroll-margin-top: 60px;
  }
}

.slide-box {
  position: relative;
}
@media screen and (max-width: 767px) {
  .slide-box {
    margin-bottom: 38px;
  }
}
.slide-box:only-child {
  padding-block: 40px;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .slide-box:only-child {
    padding-block: 0;
  }
}
.slide-box:has(.slide-box__col) {
  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) {
  .slide-box:has(.slide-box__col) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .slide-box:has(.slide-box__col).slide-box--rev {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .slide-box:has(.slide-box__col).slide-box--rev .slide-box__col:first-child {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .slide-box:has(.slide-box__col).slide-box--rev .slide-box__col:nth-child(2) {
    padding-right: 0;
  }
}
.slide-box__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 47%;
}
@media screen and (max-width: 767px) {
  .slide-box__col {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .slide-box__col:has(.slide-box__info) {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .slide-box__col:first-child {
    padding-left: 0;
    height: 35%;
  }
}
@media screen and (max-width: 767px) {
  .slide-box__col:nth-child(2) {
    height: 60%;
  }
}
@media screen and (max-width: 767px) {
  .slide-box__col--fit-content:nth-child(2) {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.slide-box__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: 1/1;
  height: auto;
}
@media screen and (max-height: 820px) {
  .slide-box__img {
    height: 55vh;
  }
}
@media screen and (max-width: 767px) {
  .slide-box__img {
    aspect-ratio: unset;
    height: 230px !important;
  }
}
.slide-box__img picture {
  display: block;
  width: 100%;
}
.slide-box__img img {
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .slide-box__img img {
    aspect-ratio: unset;
    height: 100%;
  }
}
.slide-box__img--has-bg {
  background: #9a9a9a;
}
.slide-box__info {
  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;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .slide-box__info {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.slide-box__info-par, .slide-box__bullet-list {
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .slide-box__info-par, .slide-box__bullet-list {
    font-size: 14px;
  }
}
.slide-box__info-par {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .slide-box__info-par {
    margin-top: 12px;
  }
}
.slide-box__info-par a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.slide-box__info-par a:hover {
  color: #e30100;
  opacity: 0.8;
}
@media screen and (min-width: 767px) {
  .slide-box__info-par--overflow-pc {
    overflow: visible;
  }
}
.slide-box__button {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .slide-box__button {
    margin-top: 15px;
  }
}
.slide-box__bullet-list {
  margin-top: 22px;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .slide-box__bullet-list {
    margin-top: 15px;
  }
}
.slide-box__bullet-list > li::before {
  content: "■";
  color: #004ea2;
}
.slide-box__bullet-list > li {
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .slide-box--center:has(.slide-box__col) {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}
.slide-box__note {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.2142857143em;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .slide-box__note {
    font-size: 12px;
  }
}

.req__list {
  padding: 99px 0 140px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .req__list {
    padding-block: 39px;
  }
}
.req__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.req__tabs-link {
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  max-width: 240px;
  width: 100%;
  height: 70px;
  background-color: #e30100;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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) {
  .req__tabs-link {
    font-size: 13px;
    max-width: 140px;
    height: 44px;
  }
}
.req__tabs-link.active {
  background-color: #fff;
  color: #e30100;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.req__tabs-link.is-next {
  background-color: #6c6c6c;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.req__tabs-content {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.req__content {
  padding: 97px 120px 66px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .req__content {
    padding: 45.46875px 56.25px 56.25px;
  }
}
@media screen and (max-width: 500px) {
  .req__content {
    padding: 40px 36px;
  }
}
.req__row {
  display: grid;
  grid-template-columns: 197px 1fr;
}
@media screen and (max-width: 767px) {
  .req__row {
    grid-template-columns: 120px 1fr;
  }
}
@media screen and (max-width: 500px) {
  .req__row {
    grid-template-columns: 100px 1fr;
  }
}
.req__row:first-child {
  padding-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .req__row:first-child {
    padding-bottom: 15.9375px;
  }
}
.req__row:not(:first-child) {
  padding-block: 34px;
}
@media screen and (max-width: 767px) {
  .req__row:not(:first-child) {
    padding-block: 15.9375px;
  }
}
.req__row:not(:last-child) {
  border-bottom: 1px solid #f2f2f2;
}
.req__row-label {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .req__row-label {
    font-size: 13px;
  }
}
.req__row-label--pt {
  padding-top: 12px;
}
.req__row-info {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #464646;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .req__row-info {
    font-size: 13px;
  }
}
.req__flow {
  padding-block: 120px 140px;
  position: relative;
  overflow: hidden;
  background-color: #db0c0b;
}
@media screen and (max-width: 767px) {
  .req__flow {
    padding-block: 56.25px 65.625px;
  }
}
.req__flow::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("./public/img/requirements/flow-deco.png") no-repeat center/cover;
  position: absolute;
  mix-blend-mode: multiply;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.req__flow-wrapper {
  margin-top: 53.6px;
}
@media screen and (max-width: 767px) {
  .req__flow-wrapper {
    margin-top: 25.125px;
  }
}
.req__flow-container {
  max-width: 961px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.req__flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  position: relative;
  padding: 30px 170px 30px 40px;
  border-radius: 90px;
}
@media screen and (max-width: 767px) {
  .req__flow-item {
    max-width: 318.75px;
    margin: 0 auto;
    padding: 175.78125px 37.5px 32.8125px !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28.125px;
    border-radius: 37.5px;
  }
}
@media screen and (max-width: 500px) {
  .req__flow-item {
    gap: 15px;
  }
}
.req__flow-item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .req__flow-item:not(:last-child) {
    margin-bottom: 18.75px;
  }
}
.req__flow-item:not(:last-child)::after {
  content: "";
  width: 7px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 100px;
  bottom: -40px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .req__flow-item:not(:last-child)::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -30px;
  }
}
.req__flow-item:nth-child(1) {
  background-color: #004ea2;
}
.req__flow-item:nth-child(1) .req__flow-img {
  aspect-ratio: 182/151;
  right: 15px;
}
@media screen and (max-width: 767px) {
  .req__flow-item:nth-child(1) .req__flow-img {
    width: 99.375px;
    top: 30px !important;
  }
}
.req__flow-item:nth-child(2) {
  background-color: #ff5b07;
}
.req__flow-item:nth-child(2) .req__flow-img {
  aspect-ratio: 143/143;
  right: 25px;
}
@media screen and (max-width: 767px) {
  .req__flow-item:nth-child(2) .req__flow-img {
    top: 20px !important;
  }
}
.req__flow-item:nth-child(3) {
  background-color: #fdc300;
  padding: 30px 201px 30px 40px;
}
.req__flow-item:nth-child(3) .req__flow-img {
  aspect-ratio: 146/125;
  right: 30px;
}
.req__flow-item:nth-child(4) {
  background-color: #004ea2;
  padding: 30px 195px 30px 40px;
}
.req__flow-item:nth-child(4) .req__flow-img {
  aspect-ratio: 212/158;
  right: 13px;
}
.req__flow-item:nth-child(5) {
  background-color: #ff5b07;
}
.req__flow-item:nth-child(5) .req__flow-img {
  aspect-ratio: 170/170;
  right: 25px;
}
@media screen and (max-width: 767px) {
  .req__flow-item:nth-child(5) .req__flow-img {
    top: 10px !important;
  }
}
.req__flow-step {
  width: 120px;
  height: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #fff;
  border-radius: 50%;
  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) {
  .req__flow-step {
    width: 56.25px;
    height: 56.25px;
    position: absolute;
    top: 14.0625px;
    left: 14.0625px;
  }
}
.req__flow-step > img {
  width: 63px;
}
@media screen and (max-width: 767px) {
  .req__flow-step > img {
    width: 29.2640625px;
  }
}
.req__flow-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .req__flow-info {
    gap: 7.96875px;
  }
}
.req__flow-info > span {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3181818182em;
}
@media screen and (max-width: 767px) {
  .req__flow-info > span {
    font-size: 15.9375px;
    text-align: center;
  }
}
.req__flow-info > p {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.625em;
}
@media screen and (max-width: 767px) {
  .req__flow-info > p {
    font-size: 13.125px;
  }
}
.req__flow-img {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .req__flow-img {
    width: auto !important;
    top: 30px !important;
    right: 50% !important;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
@media screen and (max-width: 767px) {
  .req__flow-heading-image {
    width: 146.8828125px;
    margin-bottom: 8px;
  }
}

.top__mv {
  position: relative;
  height: 100svh;
  background-color: #e30100;
  overflow: hidden;
}
.top__mv-bg {
  position: absolute;
  inset: auto -9.54% 0 auto;
  height: 83.61%;
}
@media screen and (max-width: 820px) {
  .top__mv-bg {
    bottom: -5%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-bg {
    inset: auto -5.38% 0 auto;
    max-width: 386.71875px;
    width: 103%;
    max-height: 334.6875px;
  }
}
@media screen and (max-width: 475px) {
  .top__mv-bg {
    width: 386.71875px;
    height: auto;
    bottom: -10px;
  }
}
.top__mv-bg svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.top__mv-overlay {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  position: relative;
  top: 22.91%;
  height: 56.47%;
  min-height: 384px;
  -webkit-transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 1000ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__mv-overlay {
    top: 13%;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-overlay {
    top: 15.45%;
    max-height: 337.5px;
    height: 53.73%;
    min-height: 270px;
  }
}
.top__mv-overlay.loaded {
  -webkit-transform: initial;
          transform: initial;
  opacity: 1;
}
.top__mv-slider {
  height: 100%;
}
.top__mv-slider-track {
  height: 100%;
}
.top__mv-slide {
  position: relative;
  max-width: 410px;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__mv-slide {
    max-width: 262.5px;
  }
}
.top__mv-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 41.67%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(98, 98, 98, 0)), to(#626262));
  background-image: linear-gradient(to bottom, rgba(98, 98, 98, 0), #626262);
  mix-blend-mode: multiply;
}
.top__mv-content {
  position: absolute;
  inset: auto 0 10.3%;
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(1080px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__mv-content {
    max-width: 100%;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-content {
    bottom: 6.72%;
    padding-inline: 10px;
  }
}
.top__mv-content.loaded img,
.top__mv-content.loaded svg {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.top__mv-title {
  overflow: hidden;
}
.top__mv-title img,
.top__mv-title svg {
  max-width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 1000ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.top__mv-lead {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .top__mv-lead {
    margin-top: 3px;
    width: 38.25%;
  }
}
.top__mv-lead img,
.top__mv-lead svg {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 1000ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}
.top__message {
  position: relative;
  padding-top: 116px;
  background-color: #f2f2f2;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top__message {
    padding-block: 56.25px 63.28125px;
  }
}
.top__message-bg-wrapper {
  overflow: hidden;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 0;
}
@media screen and (min-width: 1600px) {
  .top__message-bg-wrapper {
    overflow: initial;
    max-width: 1280px;
  }
}
.top__message-card {
  position: absolute;
  width: 105px;
  height: 141px;
}
.top__message-card svg {
  width: 100%;
  height: 100%;
}
.top__message-card[data-card="3"], .top__message-card[data-card="4"] {
  width: 141px;
  height: 105px;
}
@media screen and (max-width: 767px) {
  .top__message-card[data-card="3"], .top__message-card[data-card="4"] {
    width: 64.21875px;
    height: 35.15625px;
  }
}
.top__message-card[data-card="1"] {
  top: 14.03%;
  left: 2.23%;
  -webkit-transform: rotate(352deg);
          transform: rotate(352deg);
}
@media screen and (max-width: 767px) {
  .top__message-card[data-card="1"] {
    top: 7.31%;
    left: -3.13%;
    width: 47.4375px;
    height: 60.9375px;
  }
}
.top__message-card[data-card="2"] {
  top: 44.27%;
  left: -2.18%;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
@media screen and (max-width: 767px) {
  .top__message-card[data-card="2"] {
    top: 6.26%;
    right: -2.5%;
    left: unset;
    width: 41.25px;
    height: 61.875px;
  }
}
.top__message-card[data-card="3"] {
  top: 77.24%;
  -webkit-transform: rotate(355deg);
          transform: rotate(355deg);
}
@media screen and (max-width: 767px) {
  .top__message-card[data-card="3"] {
    bottom: 48.09%;
    right: -3.13%;
    -webkit-transform: rotate(-16deg);
            transform: rotate(-16deg);
  }
}
.top__message-card[data-card="4"] {
  top: 13.33%;
  right: 0;
  -webkit-transform: rotate(341deg);
          transform: rotate(341deg);
}
.top__message-card[data-card="5"] {
  top: 42.67%;
  right: -3.31%;
  -webkit-transform: scale(-1) rotate(360deg);
          transform: scale(-1) rotate(360deg);
}
@media screen and (max-width: 767px) {
  .top__message-card[data-card="5"] {
    top: unset;
    right: unset;
    bottom: 47.04%;
    left: -1%;
    width: 41.25px;
    height: 61.875px;
  }
}
.top__message-card[data-card="6"] {
  right: 2.23%;
  top: 75.14%;
  -webkit-transform: scale(-1) rotate(360deg);
          transform: scale(-1) rotate(360deg);
}
.top__message-content {
  position: relative;
  z-index: 1;
}
.top__section-sub-header {
  margin-block: 40px 48px;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4em;
}
@media screen and (max-width: 767px) {
  .top__section-sub-header {
    margin-block: 14.0625px 23.4375px;
    font-size: 2.625rem;
    line-height: 1.4285714286em;
  }
}
.top__message-text {
  max-width: 479px;
  margin: auto;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.875em;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .top__message-text {
    margin-bottom: 37.5px;
    font-size: 1.3125rem;
    line-height: 1.8571428571em;
  }
}
.top__message-section-banner {
  margin: 52px auto -180px;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .top__message-section-banner {
    margin: 49.21875px auto 0;
    width: 90%;
    min-width: unset;
  }
}
.top__about {
  position: relative;
  padding-block: 130px 113px;
  background-color: white;
  background-image: url("./public/img/top-upper/about-pattern.svg");
  background-attachment: fixed;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top__about {
    background-size: 163%;
    padding-block: 58.59375px 98.4375px;
    background-attachment: initial;
  }
}
.top__about-header {
  width: 440px;
}
@media screen and (max-width: 767px) {
  .top__about-header {
    width: 250.78125px;
  }
}
.top__about-heading {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .top__about-heading {
    margin-bottom: 37.5px;
  }
}
.top__about-text {
  margin-bottom: 70px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.9444444444em;
}
@media screen and (max-width: 767px) {
  .top__about-text {
    margin-bottom: 37.5px;
    font-size: 1.3125rem;
    line-height: 1.8571428571em;
    text-align: start;
  }
}
.top__diagram-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top__diagram {
  position: relative;
  display: grid;
  grid-template-rows: repeat(14, 50px);
  grid-template-columns: 18.8% 8.61% 32.13% 10.28% 19.91%;
  place-items: center;
  gap: 0 2.23%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top__diagram {
    scale: unset;
    max-width: 342.1875px;
    height: 626.71875px;
    gap: 0;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: 23.93% 11.22% 29.92% 13.46% 16.45%;
  }
}
@media screen and (max-width: 320px) {
  .top__diagram {
    height: 550px;
  }
}
.top__diagram-item {
  position: relative;
  border-radius: 50%;
  aspect-ratio: 1/1;
  text-align: center;
  background-color: #004ea2;
  color: #fff;
  isolation: isolate;
  z-index: 1;
}
.top__diagram-item::before {
  content: "";
  position: absolute;
  inset: 0 -100% 0 -100%;
  margin: auto;
  background-color: inherit;
  opacity: 0.16;
  border-radius: 50%;
  z-index: -2;
}
.top__diagram-item[data-content=manufacturer] {
  width: 84.17%;
  grid-column: 1/2;
  grid-row: 6/10;
}
@media screen and (max-width: 767px) {
  .top__diagram-item[data-content=manufacturer] {
    width: 84.38%;
    grid-row: 1/2;
    grid-column: 5/11;
  }
}
.top__diagram-item[data-content=manufacturer]::before {
  width: 118%;
  height: 118%;
}
.top__diagram-item[data-content=manufacturer]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  height: 4px;
  background-color: #004ea2;
  width: 120%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__diagram-item[data-content=manufacturer]::after {
    inset: 100% 0 auto;
    top: 100%;
    bottom: auto;
    width: 2px;
    height: 120%;
  }
}
.top__diagram-item[data-content=wholesaler] {
  width: 86.46%;
  grid-column: 3/4;
  grid-row: 5/11;
}
@media screen and (max-width: 767px) {
  .top__diagram-item[data-content=wholesaler] {
    grid-row: 3/4;
    grid-column: 4/12;
  }
}
.top__diagram-item[data-content=wholesaler]::before {
  width: 116%;
  height: 116%;
}
.top__diagram-item[data-content=hos-1], .top__diagram-item[data-content=hos-2], .top__diagram-item[data-content=hos-3] {
  width: 88%;
  grid-column: 5/6;
}
@media screen and (max-width: 767px) {
  .top__diagram-item[data-content=hos-1], .top__diagram-item[data-content=hos-2], .top__diagram-item[data-content=hos-3] {
    grid-column: unset;
    grid-row: 5/6;
  }
}
.top__diagram-item[data-content=hos-1]::before, .top__diagram-item[data-content=hos-2]::before, .top__diagram-item[data-content=hos-3]::before {
  width: 119%;
  height: 119%;
}
.top__diagram-item[data-content=hos-1] {
  position: relative;
  grid-row: 1/4;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top__diagram-item[data-content=hos-1] {
    grid-row: 5/6;
    grid-column: 11/15;
  }
}
.top__diagram-item[data-content=hos-1]::after {
  content: "";
  position: absolute;
  left: -200%;
  bottom: -20px;
  margin: auto;
  display: block;
  width: 277%;
  height: 4px;
  -webkit-transform: rotate(330deg);
          transform: rotate(330deg);
  background-color: #e30100;
  z-index: -2;
}
@media screen and (max-width: 1024px) {
  .top__diagram-item[data-content=hos-1]::after {
    bottom: -40px;
    width: 350px;
    -webkit-transform: rotate(330deg);
            transform: rotate(330deg);
  }
}
@media screen and (max-width: 767px) {
  .top__diagram-item[data-content=hos-1]::after {
    width: 2px;
    height: 220%;
    top: auto;
    right: auto;
    bottom: 92%;
    left: 10%;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
}
.top__diagram-item[data-content=hos-2] {
  grid-row: 6/9;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top__diagram-item[data-content=hos-2] {
    grid-row: 5/6;
    grid-column: 6/10;
  }
}
.top__diagram-item[data-content=hos-2]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  bottom: 0;
  margin: auto;
  display: block;
  width: 277%;
  height: 4px;
  background-color: #e30100;
  z-index: -2;
}
@media screen and (max-width: 1024px) {
  .top__diagram-item[data-content=hos-2]::after {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .top__diagram-item[data-content=hos-2]::after {
    width: 2px;
    height: 220%;
    top: auto;
    right: 0;
    bottom: 92%;
    left: 0;
  }
}
.top__diagram-item[data-content=hos-3] {
  grid-row: 11/14;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top__diagram-item[data-content=hos-3] {
    grid-row: 5/6;
    grid-column: 1/5;
  }
}
.top__diagram-item[data-content=hos-3]::after {
  content: "";
  position: absolute;
  left: -200%;
  top: -20px;
  margin: auto;
  display: block;
  width: 277%;
  height: 4px;
  -webkit-transform: rotate(-330deg);
          transform: rotate(-330deg);
  background-color: #e30100;
  z-index: -2;
}
@media screen and (max-width: 1024px) {
  .top__diagram-item[data-content=hos-3]::after {
    top: -40px;
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .top__diagram-item[data-content=hos-3]::after {
    width: 2px;
    height: 220%;
    top: auto;
    right: 10%;
    bottom: 92%;
    left: auto;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}
.top__diagram-item--solid-red, .top__diagram-item--reverse-red {
  background-color: transparent;
}
.top__diagram-item--solid-red .top__diagram-item-content {
  background-color: #e30100;
}
.top__diagram-item--solid-red::before {
  background-color: #e30100;
}
.top__diagram-item--reverse-red .top__diagram-item-content {
  background-color: #fff;
  color: #e30100;
}
.top__diagram-item--reverse-red::before {
  background-color: #e30100;
}
.top__diagram-item-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
}
.top__diagram-image {
  position: relative;
  z-index: 1;
  min-width: 95px;
}
@media screen and (max-width: 767px) {
  .top__diagram-image {
    width: 80%;
    min-width: unset;
  }
}
.top__diagram-image.meds {
  grid-row: 7/9;
  grid-column: 2/3;
}
@media screen and (max-width: 767px) {
  .top__diagram-image.meds {
    width: auto;
    grid-row: 2/3;
    grid-column: 7/9;
    justify-self: end;
  }
}
.top__diagram-image.case {
  grid-column: 4/5;
}
@media screen and (max-width: 767px) {
  .top__diagram-image.case {
    grid-column: initial;
    grid-row: 4/5 !important;
  }
}
.top__diagram-image.case-1 {
  grid-row: 4/5;
}
@media screen and (max-width: 767px) {
  .top__diagram-image.case-1 {
    grid-column: 2/6;
  }
}
.top__diagram-image.case-2 {
  grid-row: 7/8;
}
@media screen and (max-width: 767px) {
  .top__diagram-image.case-2 {
    grid-column: 6/10;
  }
}
.top__diagram-image.case-3 {
  grid-row: 10/11;
}
@media screen and (max-width: 767px) {
  .top__diagram-image.case-3 {
    grid-column: 10/14;
  }
}
.top__diagram-heading {
  font-size: 2.8rem;
  line-height: 1.125em;
}
@media screen and (max-width: 1024px) {
  .top__diagram-heading {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .top__diagram-heading {
    font-size: 1.875rem;
    line-height: 1.2em;
  }
}
.top__diagram-heading--lg {
  font-size: 3.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .top__diagram-heading--lg {
    font-size: 2.9rem;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .top__diagram-heading--lg {
    font-size: 1.96875rem;
    margin-bottom: 15px;
  }
}
.top__diagram-heading--md {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .top__diagram-heading--md {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  .top__diagram-heading--md {
    font-size: 1.40625rem;
  }
}
.top__diagram-content {
  font-size: 1.6rem;
  line-height: 1.625em;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .top__diagram-content {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .top__diagram-content {
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
    line-height: 1.7em;
    margin-top: 3px;
  }
}
.top__diagram-content.ls-80 {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top__diagram-content.ls-80 {
    margin-top: 0;
    line-height: 2.0909090909em;
    font-size: 1.03125rem;
  }
}
.top__diagram-content.lh-2 {
  line-height: 2em;
}
.top__diagram-logo {
  position: absolute;
  top: 0;
  width: 14.54%;
  height: 20.43%;
}
.top__diagram-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-row: 13/15;
  grid-column: 3/4;
}
.top__diagram-button.hidden {
  display: none;
}
.top__footnote {
  position: absolute;
  inset: auto auto -90px 0;
  max-width: 425px;
  width: 28.85%;
  min-width: 280px;
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  .top__footnote {
    inset: auto auto -160px 0;
  }
}
@media screen and (max-width: 767px) {
  .top__footnote {
    width: 100%;
    inset: auto auto -80px;
  }
}
.top__footnote-image {
  position: relative;
  width: 187px;
}
@media screen and (max-width: 767px) {
  .top__footnote-image {
    width: 127.96875px;
    z-index: 1;
  }
}
.top__footnote-content {
  position: absolute;
  inset: -55px 0 auto auto;
  width: 59.47%;
  height: 90px;
  background-image: url("./public/img/top-upper/footnote-bubble.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5714285714em;
  text-align: center;
  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: 1080px) {
  .top__footnote-content {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  .top__footnote-content {
    inset: 15px 0 auto 140px;
  }
}
@media screen and (max-width: 767px) {
  .top__footnote-content {
    width: 77.78%;
    height: 42.65625px;
    background-image: url("./public/img/top-upper/footnote-bubble-sp.svg");
    inset: auto 0 120px 70px;
    font-size: 0.9375rem;
    z-index: 0;
  }
}
.top__movie {
  padding-block: 137px;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .top__movie {
    padding-block: 64.21875px;
  }
}
.top__movie-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__movie-block {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top__movie-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.top__movie-embed {
  width: 560px;
  height: 330px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .top__movie-embed {
    height: auto;
    aspect-ratio: 16/9;
  }
}
.top__movie-heading {
  margin-block: 24px 35px;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top__movie-heading {
    font-size: 28px;
    line-height: 1.3em;
    margin-block: 16px;
  }
}
.top__movie-info {
  max-width: 420px;
}
.top__movie-description {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.9444444444em;
}
@media screen and (max-width: 767px) {
  .top__movie-description {
    font-size: 13.125px;
    line-height: normal;
  }
}
.top__scroll-to-top {
  top: 80%;
  z-index: 99;
  width: 80px;
  height: 80px;
  position: sticky;
  margin: -80px 40px 0 auto;
}
@media screen and (max-width: 767px) {
  .top__scroll-to-top {
    top: 85%;
    width: 40px;
    height: 40px;
    margin: -40px 15px 0 auto;
  }
}
.top__scroll-container {
  left: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  bottom: -40px;
  overflow: hidden;
  position: absolute;
  border-radius: 50%;
  border: 1px solid #f2f2f2;
  background-color: #fff;
  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) {
  .top__scroll-container {
    bottom: -20px;
  }
}
.top__scroll-container::before {
  content: "";
  width: 18.65px;
  display: block;
  height: 17.7px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat center/contain;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .top__scroll-container::before {
    scale: 0.5;
  }
}

@media screen and (max-width: 767px) {
  .intern__heading {
    font-size: 32px;
    margin-block: 16px 18px;
  }
}
.intern__message {
  padding: 120px 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .intern__message {
    padding-block: 40px;
  }
}
.intern__message .container {
  padding-inline: 10%;
}
.intern__overview {
  padding: 120px 0 130px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intern__overview {
    padding: 48px 0 56px;
  }
}
.intern__overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./public/img/intern/bg-style.svg");
  background-size: cover;
  opacity: 0.4;
  z-index: -1;
}
.intern__slides {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  margin: 60px 0 64px;
}
@media screen and (max-width: 767px) {
  .intern__slides {
    margin: 32px 0 28px;
  }
}
.intern__slide-content {
  display: inline-block;
  -webkit-animation: loop-banner-left 15s linear infinite;
          animation: loop-banner-left 15s linear infinite;
}
.intern__img {
  margin: 0 30px;
  width: 720px;
  height: 480px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .intern__img {
    margin: 0 15px;
    width: 337.5px;
    height: 240px;
  }
}
.intern__container {
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(720px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .intern__container {
    max-width: 100%;
    padding-inline: 30px;
  }
}
.intern__tag {
  border-radius: 15px;
  border: 1px solid #d5d5d5;
  padding: 7px 27px;
  margin-right: 0px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #db0c0b;
  letter-spacing: 0.06em;
  line-height: 2.4166666667em;
}
@media screen and (max-width: 767px) {
  .intern__tag {
    padding: 5.5px 12.66px;
    font-size: 10px;
  }
}
.intern__tag:last-child {
  margin-right: 0;
}
.intern__title {
  padding-block: 17px 35px;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1764705882em;
  color: #464646;
}
@media screen and (max-width: 767px) {
  .intern__title {
    padding-block: 12px 18px;
    font-size: 28px;
    line-height: 1.4em;
  }
}
.intern__text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.875em;
  letter-spacing: 0.06em;
  color: #464646;
}
@media screen and (max-width: 767px) {
  .intern__text {
    font-size: 14px;
    line-height: 1.6em;
    letter-spacing: 0.05em;
  }
}
.intern__apply {
  background-color: #db0c0b;
  padding: 120px 0 135px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .intern__apply {
    padding: 60px 4% 67.5px;
  }
}
.intern__apply::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./public/img/intern/bg-overlay.svg");
  background-size: cover;
  mix-blend-mode: multiply;
  z-index: -1;
}
.intern__apply-btn {
  width: 520px;
  height: 130px;
  border-radius: 120px;
  margin: 60px auto 0;
  padding-inline: 60px 30px;
}
@media screen and (max-width: 767px) {
  .intern__apply-btn {
    margin-top: 28.125px;
    width: 243.75px;
    height: 60.9375px;
    padding-inline: 28.125px 14.0625px;
  }
}
.intern__apply-btn-text {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .intern__apply-btn-text {
    font-size: 12px;
  }
}
.intern__apply-btn-circle {
  width: 70px;
  height: 70px;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .intern__apply-btn-circle {
    width: 32.8125px;
    height: 32.8125px;
    right: 14.0625px;
  }
}
.intern__apply-btn-circle::after {
  width: 17px;
  height: 17px;
}
@media screen and (max-width: 767px) {
  .intern__apply-btn-circle::after {
    width: 7.9921875px;
    height: 7.5890625px;
  }
}
@media screen and (max-width: 767px) {
  .intern__apply-heading-image {
    width: 174.6px;
  }
}
.intern__apply-subheading-text {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .intern__apply-subheading-text {
    font-size: 11.25px;
  }
}
.intern__heading-overview-image {
  display: block;
  margin: 0 auto 24px;
}
@media screen and (max-width: 767px) {
  .intern__heading-overview-image {
    width: 271.3828125px;
    margin: 0 0 10px;
  }
}
.intern__heading-jp {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .intern__heading-jp {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .intern__intro-text {
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
}

.top__data {
  position: relative;
  background: #e30100;
  min-height: 836px;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top__data {
    min-height: auto;
    padding-block: 56.25px;
  }
}
.top__data::before {
  content: "";
  background: url("./public/img/top/data-bg.svg") no-repeat center/cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top__data::before {
    background: url("./public/img/top/data-bg-sp.svg") no-repeat center/cover;
  }
}
@media screen and (max-width: 767px) {
  .top__data .button {
    min-width: 206.25px;
    min-height: 51.5625px;
  }
}
.top__data-row {
  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;
  gap: 14.5%;
  height: 840px;
}
@media screen and (max-width: 1024px) {
  .top__data-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    gap: 32.8125px;
    height: auto;
  }
}
.top__data-splide {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media screen and (max-width: 1024px) {
  .top__data-splide {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.top__data-splide .splide__track {
  overflow: unset;
}
.top__data-card {
  background: #fff;
  width: 391.86px;
  height: 505.7px;
  border-radius: 20px;
  padding: 40px 20px 50px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .top__data-card {
    width: 243.75px;
    height: 314.0625px;
    padding: 32.8125px 20px 30.46875px;
    gap: 24.375px;
    border-radius: 15px;
  }
}
.top__data-card-image {
  height: 100%;
}
.top__data-card-image img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top__data-card-image img {
    max-width: 164.0625px;
    max-height: 150px;
  }
}
.top__data-card-info {
  text-align: center;
}
.top__data-card-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .top__data-card-subtitle {
    font-size: 18.75px;
    margin-bottom: 11.25px;
  }
}
.top__data-card-subtitle-small {
  font-size: 1rem;
}
.top__data-card-note {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .top__data-card-note {
    margin-top: 11.25px;
    font-size: 10px;
  }
}
.top__data-card-title img {
  height: 60px;
}
@media screen and (max-width: 767px) {
  .top__data-card-title img {
    max-height: 35.15625px;
  }
}
@media screen and (max-width: 767px) {
  .top__data-heading-image {
    max-height: 36.3515625px;
  }
}
.top__data-heading-jp {
  color: #fff;
}
.top__data-desc {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.9444444444em;
  margin-block: 54px 72px;
}
@media screen and (max-width: 1024px) {
  .top__data-desc {
    margin-block: 35.15625px 0;
    font-size: 13.125px;
  }
}
@media screen and (max-width: 1024px) {
  .top__data-button {
    margin: 46.875px auto 0;
  }
}
.top__ws {
  position: relative;
  padding-block: 120px 110px;
  background: #f2f2f2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__ws {
    padding-block: 56.25px 123.75px;
  }
}
.top__ws .container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__ws .button {
    min-width: 206.25px;
    min-height: 51.5625px;
  }
}
@media screen and (max-width: 767px) {
  .top__ws-heading {
    height: 34.21875px;
  }
}
.top__ws-list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.37%;
}
@media screen and (max-width: 767px) {
  .top__ws-list {
    margin-top: 31.875px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.top__ws-item.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.top__ws-item.disabled .top__ws-box::before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .top__ws-item.disabled .top__ws-box::before {
    border-radius: 18.75px;
  }
}
.top__ws-item.disabled .top__ws-box::after {
  content: "";
  background: url("./public/img/svg/heading/coming-soon.svg") no-repeat center/contain;
  width: 100%;
  height: 31.26px;
  display: block;
  z-index: 2;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top__ws-item.disabled .top__ws-box::after {
    height: 14.653125px;
  }
}
.top__ws-item:hover .top__ws-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top__ws-item:hover .top__arrow-circle::before {
  -webkit-animation: arrow-animation-red 0.3s ease forwards;
          animation: arrow-animation-red 0.3s ease forwards;
}
.top__ws-box {
  position: relative;
  width: 100%;
  max-width: 511px;
  max-height: 531px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .top__ws-box {
    max-width: 100%;
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content;
    border-radius: 18.75px;
    padding: 28.125px 28.125px 23.4375px;
  }
}
.top__ws-box.orange {
  background: #ff4900;
}
.top__ws-box.orange .top__arrow-circle::before {
  background: #ff4900;
}
.top__ws-box.blue {
  background: #004ea2;
}
.top__ws-box.blue .top__arrow-circle::before {
  background: #004ea2;
}
.top__ws-image {
  width: 100%;
  aspect-ratio: 432/355;
  border-radius: 20px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__ws-image {
    border-radius: 9.375px;
  }
}
.top__ws-image img {
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}
.top__ws-info {
  margin-top: 40px;
  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;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .top__ws-info {
    margin-top: 20.15625px;
  }
}
.top__ws-info-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top__ws-info-title {
    font-size: 15px;
  }
}
.top__arrow-circle {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .top__arrow-circle {
    width: 34.6875px;
    height: 34.6875px;
  }
}
.top__arrow-circle::before {
  content: "";
  -webkit-mask: url("./public/img/svg/icons/arrow-right-white.svg") no-repeat center/contain;
          mask: url("./public/img/svg/icons/arrow-right-white.svg") no-repeat center/contain;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top__arrow-circle::before {
    width: 10px;
    height: 9.5px;
  }
}
.top__ws-footer {
  margin-top: 80px;
  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;
}
@media screen and (max-width: 767px) {
  .top__ws-footer {
    margin-top: 41.25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top__ws-quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: -233px;
  left: -3%;
}
@media screen and (max-width: 800px) {
  .top__ws-quote {
    left: -5%;
  }
}
@media screen and (max-width: 767px) {
  .top__ws-quote {
    bottom: -213px;
    left: -2.5%;
  }
}
@media screen and (max-width: 375px) {
  .top__ws-quote {
    left: -40px;
  }
}
.top__ws-person {
  width: 202px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top__ws-person {
    width: 127.96875px;
  }
}
.top__ws-baloon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 223.41px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("./public/img/top/ws-baloon.svg") no-repeat center/cover;
  padding-left: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5714285714em;
}
@media screen and (max-width: 767px) {
  .top__ws-baloon {
    max-width: 95%;
    height: 42.8578125px;
    background: url("./public/img/top/ws-baloon-sp.svg") no-repeat center/contain;
    font-size: 9.375px;
    padding-left: 0;
    margin-left: -30px;
    margin-top: 25px;
  }
}
.top__news {
  padding-block: 140px;
}
@media screen and (max-width: 767px) {
  .top__news {
    padding-block: 56.25px 51.5625px;
  }
}
@media screen and (max-width: 767px) {
  .top__news .button {
    min-width: 206.25px;
    min-height: 51.5625px;
  }
}
.top__news-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.41%;
}
@media screen and (max-width: 1024px) {
  .top__news-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .top__news-row {
    gap: 39.375px;
  }
}
.top__news-head-col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top__news-head-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 50px;
  }
}
.top__news-heading {
  margin-bottom: 127px;
}
@media screen and (max-width: 1024px) {
  .top__news-heading {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__news-heading {
    margin-bottom: 0;
  }
}
.top__news-button-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top__news-button-pc {
    display: none;
  }
}
.top__news-button-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__news-button-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
}
.top__news-list-col {
  width: 100%;
}
.top__news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .top__news-list {
    gap: 30.46875px;
    margin-bottom: 37.5px;
  }
}
.top__news-item {
  padding-bottom: 60px;
  border-bottom: 1px solid #cfd2e0;
}
@media screen and (max-width: 767px) {
  .top__news-item {
    padding-bottom: 30.46875px;
  }
}
.top__news-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .top__news-item:last-child {
    padding-bottom: 30.46875px;
    border-bottom: 1px solid #cfd2e0;
  }
}
.top__news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7%;
}
@media screen and (max-width: 767px) {
  .top__news-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    gap: 17.34375px;
  }
}
.top__news-link:hover .top__news-title {
  color: #e30100;
}
.top__news-link:hover .top__news-arrow::before {
  -webkit-animation: arrow-animation-red 0.3s ease forwards;
          animation: arrow-animation-red 0.3s ease forwards;
}
.top__news-info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .top__news-info {
    gap: 14.0625px;
  }
}
.top__news-date {
  color: #9a9a9a;
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .top__news-date {
    font-size: 11.25px;
  }
}
.top__news-categ {
  width: 100px;
  height: 30px;
  border-radius: 40px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  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) {
  .top__news-categ {
    width: 65.625px;
    height: 18.75px;
    border-radius: 18.75px;
    font-size: 8.4375px;
  }
}
.top__news-categ.orange {
  background: #ff5b07;
}
.top__news-categ.yellow {
  background: #fdc300;
}
.top__news-categ.blue {
  background: #004ea2;
}
.top__news-title-block {
  width: 60%;
  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;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .top__news-title-block {
    width: 100%;
    gap: 20px;
  }
}
.top__news-title {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.625em;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}
@media screen and (max-width: 767px) {
  .top__news-title {
    font-size: 13.125px;
  }
}
.top__news-arrow {
  position: relative;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 767px) {
  .top__news-arrow {
    width: 14.53125px;
    height: 14.53125px;
  }
}
.top__news-arrow::before {
  content: "";
  -webkit-mask: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat center/contain;
          mask: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat center/contain;
  background: #db0c0b;
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .top__news-arrow::before {
    width: 14.53125px;
    height: 14.53125px;
  }
}
.top__slide-image {
  width: 420px;
  height: 280px;
}
@media screen and (max-width: 767px) {
  .top__slide-image {
    width: 196.875px;
    height: 131.25px;
  }
}

@media screen and (max-width: 767px) {
  .recruit__heading {
    margin-block: 22px 0;
  }
}
.recruit__message {
  padding-top: 38px;
  background-color: #f2f2f2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit__message {
    padding-block: 39px 83px;
  }
}
.recruit__message > .container {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.recruit__banner-container {
  height: 80px;
  margin-block: 70px 80px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .recruit__banner-container {
    height: 40px;
    margin-block: 40px;
  }
}
.recruit__banner {
  display: inline-block;
  min-width: 1826px;
  height: 100%;
  -webkit-animation: loop-banner-right 15s linear infinite;
          animation: loop-banner-right 15s linear infinite;
}
@media screen and (max-width: 767px) {
  .recruit__banner {
    min-width: 913px;
  }
}
.recruit__message-container {
  position: relative;
  text-align: center;
  z-index: 1;
}
.recruit__message-deco-left, .recruit__message-deco-right {
  position: absolute;
  z-index: -1;
  height: 100%;
}
.recruit__message-deco-left {
  left: 0;
  top: 20px;
  width: 45.5390625px;
}
.recruit__message-deco-right {
  right: -10px;
  top: 20px;
  width: 71.4234375px;
}
.recruit__message-subheading {
  font-size: 1.6rem;
  line-height: 2.25em;
  letter-spacing: 0.08em;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}
@media screen and (max-width: 767px) {
  .recruit__message-subheading {
    font-size: 14px;
  }
}
.recruit__message-subheading:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.recruit__message-heading {
  margin-block: 38px 63px;
  font-size: 4rem;
  line-height: 1.4em;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .recruit__message-heading {
    margin-block: 19px 30px;
    padding-inline: 37.5px;
    font-size: 28px;
  }
}
.recruit__message-image {
  position: relative;
  height: 502px;
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(960px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit__message-image {
    max-width: 100%;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__message-image {
    height: auto;
  }
}
.recruit__message-image .image {
  -o-object-position: top;
     object-position: top;
}
.recruit__requirements {
  background: url("./public/img/recruit/requirements-bg.jpg") no-repeat top/cover;
}
.recruit__requirements-container {
  padding-block: 120px 140px;
}
@media screen and (max-width: 767px) {
  .recruit__requirements-container {
    padding-block: 60px 70px;
  }
}
.recruit__requirements-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .recruit__requirements-card-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
}
.recruit__requirements-card {
  padding: 40px;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .recruit__requirements-card {
    padding: 28.125px 28.125px 22.5px 28.125px;
    border-radius: 18.75px;
  }
}
.recruit__requirements-card--1 {
  background-image: -webkit-gradient(linear, left bottom, right top, from(#ff2c2b), color-stop(#ff4900), to(#fee803));
  background-image: linear-gradient(to top right, #ff2c2b, #ff4900, #fee803);
}
.recruit__requirements-card--2 {
  background-color: #004ea2;
}
.recruit__requirements-card--3 {
  background-color: #fdc300;
}
.recruit__requirements-card--4 {
  background-color: #ff4900;
}
.recruit__requirements-card:hover .recruit__requirements-card-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.recruit__requirements-card:hover .button__circle::after {
  -webkit-animation: arrow-animation-red 0.3s ease forwards;
          animation: arrow-animation-red 0.3s ease forwards;
}
.recruit__requirements-image-container {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .recruit__requirements-image-container {
    border-radius: 9.375px;
  }
}
.recruit__requirements-card-image {
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.recruit__requirements-card-text-container {
  min-width: 100%;
  min-height: 60px;
  margin-top: 40px;
  padding: 0 60px 0 0;
  background: none;
}
@media screen and (max-width: 767px) {
  .recruit__requirements-card-text-container {
    min-height: 34.6875px;
    margin-top: 20.15625px;
    padding: 0;
  }
}
.recruit__requirements-card-text-container::after {
  content: none;
}
.recruit__qa {
  padding-block: 116px 160px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .recruit__qa {
    padding-block: 58px 80px;
  }
}
.recruit__qa-container {
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(960px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit__qa-container {
    max-width: 100%;
    padding-inline: 30px;
  }
}
.recruit__qa-list-container {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .recruit__qa-list-container {
    margin-top: 28px;
  }
}
.recruit__qa-list-container:last-of-type {
  margin-top: 105px;
}
@media screen and (max-width: 767px) {
  .recruit__qa-list-container:last-of-type {
    margin-top: 50px;
  }
}
.recruit__qa-list-name {
  position: relative;
  font-size: 2.4rem;
  margin-bottom: 30px;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .recruit__qa-list-name {
    font-size: 13px;
    margin-bottom: 20px;
    padding-left: 40px;
  }
}
.recruit__qa-list-name::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 25.28px;
  height: 24px;
  background: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat top/cover;
}
.recruit__qa-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .recruit__qa-list {
    gap: 20px;
  }
}
.recruit__qa-item {
  font-weight: 600;
}
.recruit__qa-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100px;
  padding-inline: 60px;
  border: 1px solid #d3d3d3;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .recruit__qa-question {
    height: 80px;
    padding-inline: 20px 60px;
    font-size: 13px;
  }
}
.recruit__qa-question::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  width: 28px;
  height: 16px;
  background: url("./public/img/svg/icons/arrow-down-red.svg") no-repeat top/cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .recruit__qa-question::after {
    right: 20px;
    -webkit-transform: scale(0.8) translateY(-50%);
            transform: scale(0.8) translateY(-50%);
  }
}
.recruit__qa-question.active::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
@media screen and (max-width: 767px) {
  .recruit__qa-question.active::after {
    -webkit-transform: scale(0.8) translateY(-50%) rotate(-180deg);
            transform: scale(0.8) translateY(-50%) rotate(-180deg);
  }
}
.recruit__qa-answer {
  padding: 40px 60px;
  font-size: 1.6rem;
  line-height: 1.875em;
}
@media screen and (max-width: 767px) {
  .recruit__qa-answer {
    padding: 20px 20px 0;
    font-size: 12px;
  }
}
.recruit__qa-answer.red {
  color: #db0c0b;
}
@media screen and (max-width: 767px) {
  .recruit__intro {
    gap: 24px;
  }
}
.recruit__intro-card-container {
  margin: 40px 0 72px;
}
@media screen and (max-width: 767px) {
  .recruit__intro-card-container {
    margin: 0;
  }
}
.recruit__card-content {
  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;
  gap: 10px;
  min-height: 60px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .recruit__card-content {
    min-height: 34.6875px;
    margin-top: 20.15625px;
  }
}
.recruit__card-content::after {
  content: none;
}
.recruit__card-circle {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 767px) {
  .recruit__qa-heading-image {
    width: 95.4234375px;
  }
}

.top__people {
  padding: 130px 0 120px;
  background: url("./public/img/top/people-bg.png") no-repeat center/cover;
  background-color: #e30100;
  background-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .top__people {
    padding-top: 52.96875px;
    padding-bottom: 56.25px;
    background: url("./public/img/top/people-bg-sp.png") no-repeat center/cover;
    background-color: #e30100;
    background-blend-mode: multiply;
  }
}
.top__people .splide__track {
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .top__people .splide__track {
    padding: 0 0 46.875px;
  }
}
.top__middle-heading--people {
  color: #fff;
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .top__middle-heading--people {
    margin-bottom: 41.25px !important;
  }
}
.top__middle-head {
  gap: 20px;
  width: 100%;
  max-width: 560px;
}
.top__middle-container {
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .top__middle-container {
    gap: 0;
  }
}
.top__people-heading-text {
  margin-top: 33px;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 1.9444444444em;
}
@media screen and (max-width: 767px) {
  .top__people-heading-text {
    margin-top: 21.5625px;
    font-size: 13.125px;
  }
}
.top__people-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__people-item {
  height: 467px;
  min-width: 346px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .top__people-item {
    height: 329.0625px;
    min-width: 243.75px;
  }
}
.top__people-item:nth-child(3n-2) .top__people-front,
.top__people-item:nth-child(3n-2) .top__people-back {
  background-color: #004ea2;
}
.top__people-item:nth-child(3n-1) .top__people-front,
.top__people-item:nth-child(3n-1) .top__people-back {
  background-color: #fdc300;
}
.top__people-item:nth-child(3n) .top__people-front,
.top__people-item:nth-child(3n) .top__people-back {
  background-color: #ff4900;
}
@media screen and (hover: hover) {
  .top__people-item:hover .top__people-item-card {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}
.top__people-item.active .top__people-item-card {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.top__people-item-card {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.top__people-front, .top__people-back {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 20px;
  color: #fff;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  .top__people-front, .top__people-back {
    border-radius: 9.375px;
  }
}
.top__people-front {
  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__people-front::before {
  top: 50%;
  left: 50%;
  content: "";
  z-index: 0;
  width: 192.65px;
  height: 184.43px;
  position: absolute;
  -webkit-transform: translate(-80px, -50%);
          transform: translate(-80px, -50%);
  background: url("./public/img/logo-white.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top__people-front::before {
    width: 135.9375px;
    height: 129.84375px;
    -webkit-transform: translate(-60px, -50%);
            transform: translate(-60px, -50%);
  }
}
.top__people-back {
  z-index: 1;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.top__people-tag {
  left: 20px;
  bottom: 20px;
  height: 12.47px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  color: #fff;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .top__people-tag {
    bottom: 5px;
    left: 14.0625px;
    height: 8.784375px;
  }
}
.top__people-tag--right {
  top: 20px;
  left: unset;
  right: -95px;
  bottom: unset;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media screen and (max-width: 767px) {
  .top__people-tag--right {
    top: 5px;
    right: -67px;
  }
}
.top__people-image-front {
  z-index: 1;
  width: auto;
  height: 344px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__people-image-front {
    height: 238.125px;
  }
}
.top__people-image-back {
  left: 50%;
  bottom: 0;
  width: auto;
  height: 346px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top__people-image-back {
    height: 225px;
  }
}
.top__people-info {
  gap: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 40px 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;
}
@media screen and (max-width: 767px) {
  .top__people-info {
    padding: 25px 20px 0;
  }
}
.top__people-name {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.0357142857em;
}
@media screen and (max-width: 767px) {
  .top__people-name {
    font-size: 2.4rem;
  }
}
.top__people-dept {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.0714285714em;
}
@media screen and (max-width: 767px) {
  .top__people-dept {
    font-size: 1.2rem;
  }
}
.top__interview .interview__note {
  margin-left: -4%;
}
@media screen and (max-width: 767px) {
  .top__interview .interview__note {
    margin-left: 0;
  }
}
.top__business {
  padding: 130px 0 200px;
  background: url("./public/img/top/business-bg.jpg") no-repeat center/cover;
  background-attachment: fixed;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__business {
    background-repeat: repeat;
    background-size: contain;
    padding: 55.78125px 0 51.5625px;
    background-attachment: initial;
  }
}
.top__business-content {
  gap: 105.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 97px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top__business-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 46.875px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-block: 29.0625px 51.5625px;
  }
}
.top__business-list {
  width: 481px;
  padding-top: 38px;
}
@media screen and (max-width: 767px) {
  .top__business-list {
    width: 100%;
    padding: 0 4%;
  }
}
.top__business-item {
  margin-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .top__business-item {
    margin-bottom: 30px;
  }
}
.top__business-item:last-child {
  margin-bottom: 0;
}
.top__business-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  font-size: 2.8rem;
  line-height: 1em;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 29px;
  font-weight: 700;
  letter-spacing: 0.04em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (max-width: 767px) {
  .top__business-label {
    font-size: 18.75px;
    padding-bottom: 16.40625px;
  }
}
.top__business-label::before, .top__business-label::after {
  content: "";
  border-radius: 5px;
  background-color: #db0c0b;
}
.top__business-label::before {
  top: -3px;
  opacity: 1;
  width: 5px;
  right: 15px;
  height: 35px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .top__business-label::before {
    top: 0;
    right: 7.5px;
    width: 2.34375px;
    height: 18.75px;
  }
}
.top__business-label::after {
  height: 5px;
  width: 35px;
}
@media screen and (max-width: 767px) {
  .top__business-label::after {
    height: 2.34375px;
    width: 18.75px;
  }
}
.top__business-label.active::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.top__business-text {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .top__business-text {
    font-size: 13.125px;
  }
}
.top__business-text p {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .top__business-text p {
    padding-top: 26.25px;
  }
}
.top__middle-btn {
  width: 100%;
  height: 80px;
  padding: 0 20px;
  max-width: 320px;
  border-radius: 40px;
  background-color: #e30100;
  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__middle-btn img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.top__middle-btn--white {
  background-color: #fff;
}
.top__middle-btn--white img {
  -webkit-filter: unset;
          filter: unset;
}

.people {
  padding-block: 100px 140px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .people {
    padding-block: 39px 70px;
  }
}
.people.is-blurred {
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
.people__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .people__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.people__item {
  cursor: pointer;
}
.people__item:hover .people__image--hover {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.people__profile {
  position: relative;
  z-index: 0;
}
.people__image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  z-index: -1;
}
.people__image {
  position: relative;
  z-index: 0;
}
.people__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: opacity 0.7s cubic-bezier(0.32, 0.1, 0, 1), -webkit-transform 1.6s cubic-bezier(0.03, 0.52, 0, 1);
  transition: opacity 0.7s cubic-bezier(0.32, 0.1, 0, 1), -webkit-transform 1.6s cubic-bezier(0.03, 0.52, 0, 1);
  transition: transform 1.6s cubic-bezier(0.03, 0.52, 0, 1), opacity 0.7s cubic-bezier(0.32, 0.1, 0, 1);
  transition: transform 1.6s cubic-bezier(0.03, 0.52, 0, 1), opacity 0.7s cubic-bezier(0.32, 0.1, 0, 1), -webkit-transform 1.6s cubic-bezier(0.03, 0.52, 0, 1);
}
.people__text {
  position: absolute;
  bottom: 0;
  display: grid;
  width: 100%;
  padding: 49px 34px 32px;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(121, 121, 121, 0)), to(rgba(93, 93, 93, 0.8)));
  background: linear-gradient(to bottom, rgba(121, 121, 121, 0), rgba(93, 93, 93, 0.8));
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 767px) {
  .people__text {
    padding: 24px 14px 12px;
  }
}
.people__name {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 833px) {
  .people__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .people__name {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.people__info {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 833px) {
  .people__info {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .people__info {
    font-size: 8px;
  }
}
.people__modal {
  position: fixed;
  top: 50%;
  left: 46%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 960px;
  width: 92%;
  margin-inline: 4%;
  overflow: visible;
  border: 0;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: auto;
}
@media screen and (max-width: 767px) {
  .people__modal {
    border-radius: 10px;
  }
}
.people__modal::-ms-backdrop {
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(20px);
}
.people__modal::backdrop {
  background-color: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
.people__modal.is-active {
  opacity: 1;
  visibility: visible;
}
.people__modal-content {
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .people__modal-content {
    max-height: 80vh;
    border-radius: 10px;
  }
}
.people__plus {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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: 1000px) {
  .people__plus {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .people__plus {
    width: 28px;
    height: 28px;
  }
}
.people__plus img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .people__plus img {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
.people__close-modal {
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 10;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  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;
}
@media screen and (max-width: 767px) {
  .people__close-modal {
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
  }
}
.people__close-modal:hover > .people__close-modal-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .people__close-modal:hover > .people__close-modal-image {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
.people__close-modal-image {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .people__close-modal-image {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
.people__modal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  width: 100%;
  height: 90px;
  padding: 0 60px;
  background-color: #db0c0b;
  border-radius: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .people__modal-head {
    height: 52px;
    padding: 24px;
    border-radius: 10px 10px 0 0;
  }
}
.people__modal-name-en {
  height: 29px;
}
@media screen and (max-width: 767px) {
  .people__modal-name-en {
    height: 16px;
  }
}
.people__modal-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 85px 10.41%;
}
@media screen and (max-width: 767px) {
  .people__modal-profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-item-align: center;
        align-self: center;
    padding: 32px 40px 64px;
  }
}
.people__modal-text-container {
  width: 42.1%;
  font-weight: 600;
  color: #333;
}
@media screen and (max-width: 767px) {
  .people__modal-text-container {
    width: 100%;
  }
}
.people__modal-profile-name {
  margin-block: 24px 18px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .people__modal-profile-name {
    margin-block: 12px 6px;
    font-size: 24px;
  }
}
.people__modal-profile-position {
  margin-bottom: 36px;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #9f9f9f;
}
@media screen and (max-width: 767px) {
  .people__modal-profile-position {
    margin-bottom: 14px;
    font-size: 12px;
  }
}
.people__modal-profile-about {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .people__modal-profile-about {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6em;
    letter-spacing: 0.06em;
  }
}
.people__modal-image-container {
  position: relative;
  width: 257px;
  height: 347px;
}
@media screen and (max-width: 767px) {
  .people__modal-image-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.people__modal-profile-bg, .people__modal-profile-image {
  border-radius: 10px;
}
.people__modal-profile-bg {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
@media screen and (max-width: 767px) {
  .people__modal-profile-bg {
    -webkit-transform: scale(0.8) rotate(15deg);
            transform: scale(0.8) rotate(15deg);
  }
}
.people__modal-profile-image {
  position: absolute;
  top: 0;
  overflow: hidden;
}
.people__modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 220px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .people__modal-gallery {
    height: 90px;
  }
}

body.modal-open {
  overflow: hidden;
}

.welfare {
  background-color: #f2f2f2;
  padding: 114px 0 220px;
}
@media screen and (max-width: 767px) {
  .welfare {
    padding-block: 45.9375px 98.34375px;
  }
}
.welfare__container {
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(1000px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .welfare__container {
    max-width: 100%;
    padding-inline: 30px;
  }
}
.welfare__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(1000px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 70px auto 156px;
}
@media screen and (max-width: 767px) {
  .welfare__list {
    max-width: 100%;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .welfare__list {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__list {
    grid-template-columns: 1fr;
    margin: 35px 0 75px;
    padding-inline: 17.5%;
  }
}
.welfare__list:last-child {
  margin-bottom: 0;
}
.welfare__image {
  height: 160px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .welfare__image {
    height: auto;
    margin-bottom: 19.359375px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--1 {
    width: 169.021875px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--2 {
    width: 152.0109375px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--3 {
    width: 132.3234375px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--4 {
    width: 161.259375px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--5 {
    width: 124.228125px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--6 {
    width: 172.621875px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--7 {
    width: 159.853125px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--8 {
    width: 157.040625px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--9 {
    width: 188.1515625px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--10 {
    width: 160.790625px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--11 {
    width: 157.2140625px;
  }
}
@media screen and (max-width: 767px) {
  .welfare__image--12 {
    width: 121.415625px;
  }
}
.welfare__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.welfare__title {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.55em;
  margin-bottom: 21px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .welfare__title {
    font-size: 18px;
    margin-bottom: 16.40625px;
  }
}
.welfare__desc {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.75em;
}
@media screen and (max-width: 767px) {
  .welfare__desc {
    font-size: 14px;
    font-weight: 500;
  }
}
.welfare__desc.red {
  color: #db0c0b;
}
@media screen and (max-width: 767px) {
  .welfare__heading-image {
    height: 35.5px;
  }
}

.business__message-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 54px 58px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .business__message-container {
    padding-block: 39px;
  }
}
.business__deco-left, .business__deco-right {
  position: absolute;
  z-index: -1;
  top: 100px;
}
@media screen and (max-width: 767px) {
  .business__deco-left, .business__deco-right {
    height: 75%;
  }
}
.business__deco-left {
  left: -50px;
}
.business__deco-right {
  right: -50px;
}
.business__heading-wrap {
  padding-block: 175px 250px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .business__heading-wrap {
    padding-block: 64px 72px;
  }
}
.business__heading-wrap::before {
  content: "";
  width: 625px;
  height: 837px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./public/img/business/business-map-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .business__heading-wrap::before {
    width: unset;
    height: unset;
  }
}
.business__message-heading {
  font-size: 4rem;
  line-height: 1.45em;
  letter-spacing: 0.04em;
  margin: 48px 0 75px;
}
@media screen and (max-width: 767px) {
  .business__message-heading {
    font-size: 24px;
    margin: 13.59375px 0 35.15625px;
  }
}
.business__message-text {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.9444444444em;
  letter-spacing: 0.08em;
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(550px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .business__message-text {
    max-width: 100%;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .business__message-text {
    font-size: 14px;
    line-height: 1.7em;
    max-width: 479px;
    padding-inline: 60px;
  }
}
.business__slides {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, #f2f2f2), color-stop(50%, transparent));
  background: linear-gradient(to bottom, #f2f2f2 80%, transparent 50%);
}
.business__slide-content {
  display: inline-block;
  -webkit-animation: loop-banner-left 30s linear infinite;
          animation: loop-banner-left 30s linear infinite;
}
.business__slide-img {
  width: 420px;
  height: 280px;
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .business__slide-img {
    width: 200px;
    height: auto;
    margin: 0 4px;
  }
}
.business__about {
  position: relative;
}
.business__about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./public/img/intern/bg-style.svg");
  background-size: cover;
  opacity: 0.4;
  z-index: -1;
}
.business__about-content {
  padding: 112px 0 63px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  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;
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(560px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .business__about-content {
    max-width: 100%;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .business__about-content {
    padding: 60px 40px 16px;
  }
}
.business__about-content .business__message-heading {
  margin: 40px 0 59px;
}
@media screen and (max-width: 767px) {
  .business__about-content .business__message-heading {
    margin: 18.75px 0 27.65625px;
  }
}
.business__about-text {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .business__about-text {
    font-size: 1.4rem;
    line-height: 1.8em;
  }
}
.business__chart {
  height: 768px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 56px;
}
@media screen and (max-height: 768px) {
  .business__chart {
    height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .business__chart {
    max-width: 100%;
    height: auto;
    padding-bottom: 30px;
  }
}
.business__social {
  background-color: #f2f2f2;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .business__social {
    padding-bottom: 56px;
  }
}
.business__container {
  padding-top: 130px;
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(1000px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .business__container {
    max-width: 100%;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .business__container {
    padding: 48px 30px 0;
  }
}
.business__container--division {
  padding: 140px 0 173px;
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(1040px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .business__container--division {
    max-width: 100%;
    padding-inline: 30px;
  }
}
@media screen and (max-width: 767px) {
  .business__container--division {
    padding: 56px 30px 64px;
  }
}
.business__sm-list {
  margin-top: 77px;
}
@media screen and (max-width: 1200px) {
  .business__sm-list {
    padding-inline: 4%;
  }
}
@media screen and (max-width: 767px) {
  .business__sm-list {
    margin-top: 40px;
    padding-inline: 30px;
  }
}
.business__sm-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .business__sm-item {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .business__sm-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.business__sm-item:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .business__sm-item:not(:last-child) {
    margin-bottom: 32px;
  }
}
.business__sm-item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .business__sm-item:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.business__sm-item:nth-child(odd) .business__sm-wrapper {
  margin-left: 0;
  margin-right: auto;
}
.business__sm-item:nth-child(odd) .business__sm-image > img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media screen and (max-width: 1200px) {
  .business__sm-item:nth-child(odd) .business__sm-image > img {
    border-radius: 10px;
  }
}
.business__sm-item:nth-child(even) .business__sm-image > img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media screen and (max-width: 1200px) {
  .business__sm-item:nth-child(even) .business__sm-image > img {
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .business__sm-item-no {
    width: 33px;
  }
}
.business__sm-wrapper {
  max-width: 460px;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .business__sm-wrapper {
    width: calc(50% - 20px);
  }
}
.business__sm-title {
  display: block;
  margin: 35px 0 30px;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .business__sm-title {
    font-size: 20px;
    margin: 22px 0 10px;
  }
}
.business__sm-desc {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .business__sm-desc {
    font-size: 14px;
    line-height: 1.7em;
  }
}
.business__sm-image {
  width: calc(50% - 40px);
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .business__sm-image {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .business__sm-image {
    width: 100%;
  }
}
.business__sm-image img {
  border-radius: 10px;
  height: 440px;
}
@media screen and (max-width: 767px) {
  .business__sm-image img {
    height: auto;
  }
}
.business__services {
  background-color: #db0c0b;
  padding: 120px 0 160px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .business__services {
    padding: 60px 0 80px;
  }
}
.business__services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./public/img/requirements/flow-deco.png");
  background-size: cover;
  mix-blend-mode: multiply;
  z-index: -1;
}
.business__services-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
  margin-top: 67px;
}
@media screen and (max-width: 1200px) {
  .business__services-list {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .business__services-list {
    gap: 15px;
    margin-top: 30px;
  }
}
.business__services-item {
  background-color: #004ea2;
  border-radius: 20px;
  padding: 40px;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .business__services-item {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .business__services-item {
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.business__services-item:nth-child(2) {
  background-color: #ff4900;
}
.business__services-item:nth-child(3) {
  background-color: #fdc300;
}
@media screen and (max-width: 767px) {
  .business__services-no {
    display: inline-block;
  }
}
.business__services-img {
  width: 480px;
  border-radius: 10px;
  max-width: 100%;
}
.business__services-details {
  max-width: 360px;
}
@media screen and (max-width: 1200px) {
  .business__services-details {
    margin: 0 auto;
    width: calc(50% - 20px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 767px) {
  .business__services-details {
    width: 100%;
    margin-top: 16px;
  }
}
.business__services-title {
  margin: 45px 0 34px;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2857142857em;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .business__services-title {
    margin: 30px 0 14px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .business__services-title {
    display: inline-block;
    margin: 0 0 0 10px;
    vertical-align: middle;
    font-size: 18px;
  }
}
.business__services-desc {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2em;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .business__services-desc {
    font-size: 1.4rem;
    line-height: 1.7em;
    margin-top: 15px;
  }
}
.business__division {
  position: relative;
}
.business__division::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./public/img/top/business-bg.jpg");
  opacity: 0.4;
  z-index: -1;
}
.business__division-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 105px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .business__division-list {
    gap: 50px;
    margin-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .business__division-wrap {
    gap: 20px;
  }
}
.business__division-wrap:nth-child(2) {
  gap: 56px;
}
.business__division-heading {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  line-height: 1.25em;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .business__division-heading {
    font-size: 24px;
    margin-top: 8px;
  }
}
.business__division-subheading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5em;
  margin: 50px 0 40px;
}
@media screen and (max-width: 767px) {
  .business__division-subheading {
    font-size: 18px;
    margin: 20px 0;
  }
}
.business__division-text {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2.25em;
}
@media screen and (max-width: 767px) {
  .business__division-text {
    font-size: 14px;
    line-height: 1.7em;
  }
}
.business__card {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 0;
}
@media screen and (max-width: 900px) {
  .business__card {
    width: 197px;
    height: 266px;
  }
}
.business__card.item1 {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  bottom: 0;
  left: 0;
  z-index: 2;
}
.business__card.item2 {
  bottom: 0;
  left: 20px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .business__card.item2 {
    left: 10px;
  }
}
.business__card.item3 {
  bottom: 0;
  left: 60px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
@media screen and (max-width: 767px) {
  .business__card.item3 {
    left: 20px;
  }
}
.business__card.item4 {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
}
.business__card.item5 {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  left: 70px;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .business__card.item5 {
    left: 20px;
  }
}
.business__card.item6 {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  left: 0;
  bottom: 0;
}
.business__card.item7 {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  left: 50px;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .business__card.item7 {
    left: 20px;
  }
}
.business__card.item8 {
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.business__card.item9 {
  left: 0;
  bottom: 0;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
@media screen and (max-width: 767px) {
  .business__heading-en-business {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .business__heading-en-whatis {
    width: 80px;
  }
}
.business__fpslider {
  margin-top: 250px;
}
@media screen and (max-width: 767px) {
  .business__fpslider {
    margin-top: 35px;
  }
}
.business__intro-text-container {
  width: auto;
}
.business__intro-card-container {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 900px) {
  .business__intro-card-container {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .business__intro-card-container {
    position: relative;
    margin: 0 auto;
    width: 170px;
    height: 229px;
    opacity: 1;
  }
}
.business__intro-card-container.active {
  opacity: 1;
}
.business__intro-card-container.active .business__card.item1 {
  -webkit-animation: b-item-1 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: b-item-1 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.business__intro-card-container.active .business__card.item2 {
  -webkit-animation: b-item-2 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: b-item-2 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.business__intro-card-container.active .business__card.item3 {
  -webkit-animation: b-item-3 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: b-item-3 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.business__intro-card-container.active .business__card.item4 {
  -webkit-animation: b-item-4 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: b-item-4 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.business__intro-card-container.active .business__card.item5 {
  -webkit-animation: b-item-5 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: b-item-5 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.business__intro-card-container.active .business__card.item6 {
  -webkit-animation: b-item-6 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: b-item-6 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.business__intro-card-container.active .business__card.item7 {
  -webkit-animation: b-item-7 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: b-item-7 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.business__intro-card-container.active .business__card.item8 {
  -webkit-animation: b-item-8 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: b-item-8 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.business__intro-card-container.active .business__card.item9 {
  -webkit-animation: b-item-9 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: b-item-9 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .business__slide-box-img {
    position: relative;
    height: auto !important;
  }
}

.work-style {
  background-color: #f2f2f2;
}
.work-style__training {
  padding-block: 92px 140px;
}
@media screen and (max-width: 767px) {
  .work-style__training {
    padding-block: 43.125px 65.625px;
  }
}
.work-style__training .heading__image {
  max-width: 82%;
}
.work-style__training-intro {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6666666667em;
  margin-block: 46px 60px;
}
@media screen and (max-width: 767px) {
  .work-style__training-intro {
    font-size: 16px;
    margin-block: 21.5625px 28.125px;
  }
}
.work-style__training-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .work-style__training-list {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .work-style__training-list {
    grid-template-columns: 100%;
  }
}
.work-style__training-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px 50px;
  background-color: #fff;
  border-radius: 30px;
}
@media screen and (max-width: 992px) {
  .work-style__training-item {
    padding: 38px 40px;
  }
}
@media screen and (max-width: 767px) {
  .work-style__training-item {
    padding: 28px;
    border-radius: 14.0625px;
  }
}
.work-style__training-title {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  margin-block: 35px 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .work-style__training-title {
    font-size: 18px;
    margin-block: 22px 12px;
  }
}
.work-style__training-img {
  width: 100%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .work-style__training-img {
    border-radius: 9.375px;
    height: auto;
  }
}
.work-style__training-info {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.875em;
  text-align: justify;
  color: #333;
}
@media screen and (max-width: 767px) {
  .work-style__training-info {
    font-size: 14px;
    line-height: 1.7em;
  }
}
.work-style__culture {
  width: 100%;
  height: 800px;
  overflow: hidden;
  position: relative;
  background-color: #e30100;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .work-style__culture {
    padding-block: 60px;
    height: auto;
  }
}
.work-style__culture::before {
  content: "";
  background: url("./public/img/top/data-bg.svg") no-repeat center/cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: -1;
}
.work-style__culture-wrapper {
  max-width: 960px;
  margin: 0 auto;
}
.work-style__culture-wrap {
  width: 100%;
  height: 800px;
  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;
  gap: 14.5%;
}
@media screen and (max-width: 1024px) {
  .work-style__culture-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    gap: 30px;
  }
}
.work-style__culture-info-col {
  max-width: 430px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .work-style__culture-info-col {
    max-width: 100%;
  }
}
.work-style__culture-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
}
@media screen and (max-width: 992px) {
  .work-style__culture-info {
    gap: 35px;
  }
}
@media screen and (max-width: 767px) {
  .work-style__culture-info {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .work-style__culture-info .heading__image {
    max-width: 26%;
    margin-bottom: 4px;
  }
}
.work-style__culture-title {
  font-size: 3.4rem;
  letter-spacing: 0.04em;
  line-height: 1.6470588235em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .work-style__culture-title {
    font-size: 26px;
    line-height: 1.4em;
  }
}
.work-style__culture-desc {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 2.2222222222em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .work-style__culture-desc {
    font-size: 15px;
    line-height: 2em;
  }
}
.work-style__marquee-item {
  -webkit-animation-duration: 20s !important;
          animation-duration: 20s !important;
}
.work-style__culture-img {
  width: 380px;
  height: 506px;
  border-radius: 15px;
}
@media screen and (max-width: 1024px) {
  .work-style__culture-img {
    width: 260px;
    height: 325px;
  }
}
.work-style__gallery {
  padding-block: 128px 160px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .work-style__gallery {
    padding-block: 60px 75px;
  }
}
.work-style__gallery-item {
  max-width: 217px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .work-style__gallery-item {
    max-width: unset;
  }
}
.work-style__gallery-item:hover {
  opacity: 0.6;
}
.work-style__gallery-wrapper {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .work-style__gallery-wrapper .heading__image {
    max-width: 76%;
    margin-bottom: 8px;
  }
}
.work-style__gallery-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 62px;
}
@media screen and (max-width: 767px) {
  .work-style__gallery-list {
    gap: 14.0625px;
    margin-top: 29.0625px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.work-style__popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  -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;
  display: none;
}
.work-style__popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.work-style__popup.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.work-style__popup-container {
  width: 670px;
  margin: 0 auto;
  max-width: 95%;
}
.work-style__close {
  position: relative;
  right: -40px;
  margin-left: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  margin-bottom: -36px;
  z-index: 2;
  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;
}
@media screen and (max-width: 767px) {
  .work-style__close {
    width: 37.5px;
    height: 37.5px;
    aspect-ratio: 40/40;
    margin-bottom: -18.75px;
    right: 0;
  }
}
.work-style__close-icon {
  width: 21px;
  height: 21px;
}
@media screen and (max-width: 767px) {
  .work-style__close-icon {
    width: 15px;
    height: 15px;
  }
}
.work-style__popup-img {
  display: block;
  max-width: 640px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .work-style__popup-img {
    width: 88.25%;
  }
}
.work-style__welfare-link {
  width: 100%;
  height: 1300px;
  padding-block: 100px;
  background: url("./public/img/work-style/welfare-bg.jpg") no-repeat center bottom/cover;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .work-style__welfare-link {
    height: 960px;
  }
}
@media screen and (max-width: 980px) {
  .work-style__welfare-link {
    height: auto;
    aspect-ratio: 1300/959;
    padding-block: 50px;
  }
}
@media screen and (max-width: 767px) {
  .work-style__welfare-link {
    aspect-ratio: auto;
    background-image: none;
    padding-block: 46.875px 25.78125px;
  }
}
.work-style__welfare-link::after {
  content: "";
  width: 100%;
  height: 525px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(98, 98, 98, 0)), to(rgb(98, 98, 98)));
  background: linear-gradient(180deg, rgba(98, 98, 98, 0) 0%, rgb(98, 98, 98) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .work-style__welfare-link::after {
    display: none;
  }
}
.work-style__welfare-bg {
  position: absolute;
  top: 0;
  left: -45px;
  z-index: -1;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  width: calc(100% + 45px);
  max-width: none;
  -o-object-position: left;
     object-position: left;
}
.work-style__welfare-container {
  height: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .work-style__welfare-container {
    gap: 0;
    padding: 0 !important;
  }
}
.work-style__welfare-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;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .work-style__welfare-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 37.5px;
  }
}
.work-style__welfare-heading {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .work-style__welfare-heading {
    padding: 0 30px;
    margin-bottom: 27.421875px;
  }
}
@media screen and (max-width: 767px) {
  .work-style__welfare-heading .heading__image {
    max-width: 76%;
    margin-bottom: 8px;
  }
}
.work-style__welfare-info {
  width: 100%;
}
.work-style__welfare-title {
  font-size: 4rem;
  letter-spacing: 0.04em;
  line-height: 1.33em;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 1200px) {
  .work-style__welfare-title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 980px) {
  .work-style__welfare-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .work-style__welfare-title {
    white-space: normal;
    font-size: 23px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .work-style__welfare-title .nowrap {
    white-space: normal !important;
  }
}
.work-style__welfare-subtitle {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2em;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .work-style__welfare-subtitle {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 980px) {
  .work-style__welfare-subtitle {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .work-style__welfare-subtitle {
    font-size: 12px;
  }
}
.work-style__welfare-btn {
  padding-left: 44px;
  max-width: 100%;
  min-width: unset;
  width: 320px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .work-style__welfare-btn {
    width: auto;
    margin-top: 3px;
    margin-left: auto;
    padding: 0;
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .work-style__welfare-btn::after {
    display: none;
  }
}
.work-style__welfare-btn .button__text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .work-style__welfare-btn .button__text {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .work-style__welfare-btn .button__circle {
    position: static;
    width: 46.875px;
    height: 46.875px;
    background-color: #e30100;
    border: 0;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (max-width: 767px) {
  .work-style__welfare-btn .button__circle::after {
    width: 14.3203125px;
  }
}

.page-404 {
  height: calc(100vh - 380px);
  background: #e30100;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .page-404 {
    height: calc(100vh - 250px);
    padding-top: 50px;
  }
}
.page-404__heading {
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .page-404__heading {
    font-size: 20px;
  }
}

.about__intro {
  padding-top: 85px;
  text-align: center;
  background: url("./public/img/about/intro-bg.jpg") no-repeat center/cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .about__intro {
    background-image: url("./public/img/about/intro-bg-sp.jpg");
    padding-top: 40px;
  }
}
.about__intro-content {
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .about__intro-content {
    padding-bottom: 75px;
  }
}
.about__intro-logo, .about__intro-subtitle {
  display: block;
  margin: 0 auto;
}
.about__intro-logo {
  width: 234px;
}
@media screen and (max-width: 767px) {
  .about__intro-logo {
    width: 130px;
  }
}
.about__intro-logo img {
  margin-right: -68px;
}
@media screen and (max-width: 767px) {
  .about__intro-logo img {
    margin-right: -50px;
  }
}
.about__intro-subtitle {
  width: 93px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .about__intro-subtitle {
    margin-top: 40px;
  }
}
.about__intro-title {
  font-size: 3.4rem;
  margin: 48px 0 34px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4117647059em;
}
@media screen and (max-width: 767px) {
  .about__intro-title {
    font-size: 26px;
    margin: 24px 0 17px;
  }
}
.about__intro-text {
  margin: 0 auto;
  max-width: 540px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .about__intro-text {
    font-size: 14px;
  }
}
.about__slide {
  background-color: transparent;
}
.about__policy {
  padding-top: 140px;
  background: url("./public/img/about/policy-decor.svg") no-repeat center/contain;
  background-size: 880px 762px;
  background-color: #e30100;
  background-position: -40px 60%;
}
@media screen and (max-width: 767px) {
  .about__policy {
    padding-top: 75px;
    background-size: 640px 570px;
    background-position: -30px 65%;
  }
}
.about__policy-content {
  max-width: calc(960px + 8%) !important;
}
@media screen and (max-width: 767px) {
  .about__policy-content {
    max-width: 100% !important;
  }
}
.about__policy-list {
  max-width: 516px;
  margin: 95px 0 180px auto;
  counter-reset: counter-policy;
}
@media screen and (max-width: 767px) {
  .about__policy-list {
    max-width: 100%;
    margin: 30px 0 60px;
  }
}
.about__policy-item {
  gap: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 56px;
  counter-increment: counter-policy;
}
@media screen and (max-width: 767px) {
  .about__policy-item {
    gap: 20px;
    padding-bottom: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about__policy-item:not(:first-child) {
  padding-top: 56px;
}
@media screen and (max-width: 767px) {
  .about__policy-item:not(:first-child) {
    padding-top: 35px;
  }
}
.about__policy-item:not(:last-child) {
  border-bottom: 1px solid #ff7774;
}
.about__policy-item::before {
  color: #fff;
  font: 700 2.4rem "Inter", sans-serif;
  content: "0" counter(counter-policy);
}
@media screen and (max-width: 767px) {
  .about__policy-item::before {
    font-size: 1.8rem;
  }
}
.about__policy-text {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .about__policy-text {
    font-size: 20px;
  }
}
.about__policy-image {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .about__policy-image {
    height: 200px;
  }
}
.about__greeting {
  padding: 120px 0;
  background: url("./public/img/about/greeting-bg.svg") no-repeat center/cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .about__greeting {
    background-image: url("./public/img/about/greeting-bg-sp.svg");
    padding: 48px 0;
  }
}
.about__greeting-content {
  max-width: calc(720px + 8%) !important;
}
@media screen and (max-width: 767px) {
  .about__greeting-content {
    max-width: 100% !important;
  }
}
.about__greeting-image {
  width: 100%;
  height: 480px;
  overflow: hidden;
  margin-top: 60px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .about__greeting-image {
    margin-top: 30px;
    height: 240px;
    border-radius: 15px;
  }
}
.about__greeting-title {
  font-size: 3.2rem;
  margin: 64px 0 48px;
}
@media screen and (max-width: 767px) {
  .about__greeting-title {
    font-size: 28px;
    margin: 24px 0 20px;
  }
}
.about__greeting-text {
  font-size: 1.6rem;
  margin-bottom: 100px;
  letter-spacing: 0.08em;
  font-weight: 600;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .about__greeting-text {
    margin-bottom: 50px;
    font-size: 14px;
  }
}
.about__greeting-name {
  font-size: 1.6rem;
  text-align: right;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about__greeting-name {
    font-size: 1.4rem;
  }
}
.about__greeting-name--big {
  margin-left: 30px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .about__greeting-name--big {
    display: block;
    margin-left: 15px;
    font-size: 22px;
    white-space: nowrap;
  }
}
.about__outline {
  padding: 155px 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .about__outline {
    padding: 56px 0 40px;
  }
}
.about__outline-content {
  max-width: calc(904px + 8%) !important;
}
@media screen and (max-width: 767px) {
  .about__outline-content {
    max-width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .about__outline-content .heading__image {
    height: 40px;
  }
}
.about__outline-list {
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .about__outline-list {
    margin-top: 18px;
  }
}
.about__outline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 0;
}
@media screen and (max-width: 767px) {
  .about__outline-item {
    gap: 10px;
    padding: 22px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about__outline-item:not(:last-child) {
  border-bottom: 1px solid #c7c7c7;
}
.about__outline-label {
  width: 18%;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .about__outline-label {
    width: 100%;
  }
}
.about__outline-text {
  width: 82%;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about__outline-text {
    width: 100%;
  }
}
.about__outline-text--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #e30100;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.about__outline-text--link::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("./public/img/svg/icons/external-link.svg") no-repeat center/contain;
  margin-left: 15px;
}
.about__outline-text--anchor {
  color: #e30100;
}
.about__office {
  padding: 140px 0;
}
@media screen and (max-width: 767px) {
  .about__office {
    padding: 48px 0;
  }
}
.about__office-wrap {
  display: grid;
  gap: 75px 10.09%;
  grid-template-columns: 67.59% 22.32%;
  grid-template-rows: auto 1fr;
}
@media screen and (max-width: 1000px) {
  .about__office-wrap {
    gap: 75px 5%;
    grid-template-columns: 60% 35%;
  }
}
@media screen and (max-width: 767px) {
  .about__office-wrap {
    gap: 32px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto auto;
  }
}
.about__office-list {
  display: none;
  grid-row-start: 2;
}
@media screen and (max-width: 767px) {
  .about__office-list {
    grid-row-start: unset;
  }
}
.about__office-list.active {
  display: block;
}
.about__office-item {
  gap: 5%;
  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;
}
@media screen and (max-width: 1000px) {
  .about__office-item {
    gap: 20px;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about__office-item:not(:first-child) {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .about__office-item:not(:first-child) {
    padding-top: 32px;
  }
}
.about__office-item:not(:last-child) {
  padding-bottom: 48px;
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (max-width: 767px) {
  .about__office-item:not(:last-child) {
    padding-bottom: 32px;
  }
}
.about__office-item--tel {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1000px) {
  .about__office-item--tel {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}
.about__office-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .about__office-head {
    gap: 18px;
  }
}
.about__office-label {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.35em;
}
@media screen and (max-width: 767px) {
  .about__office-label {
    font-size: 18px;
  }
}
.about__office-link {
  gap: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-row-start: 2;
  color: #e30100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font: "Inter", sans-serif 1.3rem 500;
}
@media screen and (max-width: 767px) {
  .about__office-link {
    font-size: 10px;
  }
}
.about__office-link::before {
  content: "";
  width: 13px;
  height: 13px;
  background: url("./public/img/svg/icons/external-link.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .about__office-link::before {
    width: 10px;
    height: 10px;
  }
}
.about__office-link:hover {
  gap: 8px;
}
.about__office-text {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1.4444444444em;
}
@media screen and (max-width: 767px) {
  .about__office-text {
    font-size: 16px;
  }
}
.about__office-num {
  margin-top: 26px;
  font-size: 1.4rem;
  color: #626262;
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1.4285714286em;
}
@media screen and (max-width: 767px) {
  .about__office-num {
    margin-top: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4em;
  }
}
@media screen and (max-width: 767px) {
  .about__office-num--mtop {
    margin-top: 14px;
  }
}
.about__office-item-image {
  width: 280px;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .about__office-item-image {
    margin: auto;
    width: 100%;
    max-width: 380px;
    height: 200px;
  }
}
.about__office-tab {
  grid-row: span 2/span 2;
}
@media screen and (max-width: 767px) {
  .about__office-tab {
    gap: 7.5px 2.8125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-row: unset;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.about__office-tab-item {
  cursor: pointer;
  font-size: 1.4rem;
  padding: 25px 33px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  letter-spacing: 0.14em;
  font-weight: 600;
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (max-width: 767px) {
  .about__office-tab-item {
    display: block;
    width: 97px;
    padding: 5px 3.75px 3.75px;
    font-size: 9.375px;
    border: 1px solid #d3d3d3;
    border-radius: 41px;
    text-align: center;
  }
}
.about__office-tab-item:first-child {
  border-top: 1px solid #d3d3d3;
}
.about__office-tab-item:hover {
  color: #e30100;
}
.about__office-tab-item.active {
  color: #e30100;
}
@media screen and (max-width: 767px) {
  .about__office-tab-item.active {
    background-color: #e30100;
    color: #fff;
    border-color: transparent;
  }
}
.about__business-policy-heading-image {
  margin-bottom: 24px;
  height: 140px;
}
@media screen and (max-width: 767px) {
  .about__business-policy-heading-image {
    height: 89px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px) {
  .about__greeting-heading-image {
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about__outline-heading-image {
    height: 40px;
  }
}

.news {
  background: #f2f2f2;
  padding-block: 100px 130px;
}
@media screen and (max-width: 767px) {
  .news {
    padding-block: 39px 56px;
  }
}
.news__container {
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(800px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news__container {
    max-width: 100%;
    padding-inline: 30px;
  }
}
.news__category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .news__category-list {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .news__category-list {
    gap: 10px;
  }
}
.news__category {
  width: 100%;
  max-width: 176px;
  min-height: 40px;
  border-radius: 40px;
  padding: 8px;
  background: #fff;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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: 768px) {
  .news__category {
    min-width: auto;
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 767px) {
  .news__category {
    min-height: 30px;
    font-size: 1rem;
    min-width: auto;
    width: calc(50% - 5px);
  }
}
.news__category:hover, .news__category.active {
  color: #fff;
}
.news__category--red {
  color: #e30100;
}
.news__category--red:hover, .news__category--red.active {
  background: #e30100;
}
.news__category--orange {
  color: #ff4900;
}
.news__category--orange:hover, .news__category--orange.active {
  background: #ff5b07;
}
.news__category--yellow {
  color: #fdc300;
}
.news__category--yellow:hover, .news__category--yellow.active {
  background: #fdc300;
}
.news__category--blue {
  color: #004ea2;
}
.news__category--blue:hover, .news__category--blue.active {
  background: #004ea2;
}
.news__list {
  margin: 120px 0 130px;
}
@media screen and (max-width: 767px) {
  .news__list {
    margin: 56.25px 0 60.9375px;
  }
}
.news__list--top {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  max-width: 62.96%;
}
@media screen and (max-width: 1024px) {
  .news__list--top {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .news__list--top {
    margin-bottom: 60.9375px;
  }
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 63px;
}
@media screen and (max-width: 767px) {
  .news__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-block: 28px;
    row-gap: 12px;
  }
}
.news__item:first-child {
  padding-top: 0;
}
.news__item:last-child {
  padding-bottom: 0;
}
.news__item:not(:last-child) {
  border-bottom: 1px solid #cfd2e0;
}
.news__item-date, .news__item-category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-detail__date, .news__item-date {
  margin-right: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #9a9a9a;
}
@media screen and (max-width: 767px) {
  .news-detail__date, .news__item-date {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .news__item-date {
    font-size: 11.25px;
  }
}
.news__item-date--top {
  margin-right: 36px;
}
@media screen and (max-width: 767px) {
  .news__item-date--top {
    margin-right: 0;
  }
}
.news-detail__category, .news__item-category {
  min-width: 100px;
  min-height: 30px;
  padding: 3px 8px;
  border-radius: 40px;
  margin-right: 64px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: #ff4900;
  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) {
  .news-detail__category, .news__item-category {
    margin-inline: 12px 0;
  }
}
.news-detail__category--red, .news__item-category--red {
  background: #e30100;
}
.news-detail__category--blue, .news__item-category--blue {
  background: #004ea2;
}
.news-detail__category--yellow, .news__item-category--yellow {
  background: #fdc300;
}
@media screen and (max-width: 767px) {
  .news__item-category {
    min-width: 65.625px;
    min-height: 18.75px;
    font-size: 8.4375px;
  }
}
.news__item-category--top {
  margin-right: 48.2px;
}
@media screen and (max-width: 767px) {
  .news__item-category--top {
    margin-right: 0;
  }
}
.news__item-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news__item-title-container {
    width: 100%;
  }
}
.news__item-title-container:hover .news__item-arrow::after {
  -webkit-animation: arrow-animation-red 0.3s ease forwards;
          animation: arrow-animation-red 0.3s ease forwards;
}
.news__item-title {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 13.125px;
  }
}
.news__item-arrow {
  position: relative;
  width: 18.65px;
  height: 17.7px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news__item-arrow::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18.65px;
  height: 17.7px;
  background: url("./public/img/svg/icons/arrow-right-red.svg") no-repeat center/cover;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news__item-arrow::after {
    width: 15.4875px;
    height: 14.7046875px;
  }
}

.news-detail {
  background: #f2f2f2;
  padding-block: 108px 160px;
}
@media screen and (max-width: 767px) {
  .news-detail {
    padding-block: 39px 64px;
  }
}
.news-detail__date-category-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news-detail__date {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .news-detail__date {
    font-size: 16px;
  }
}
.news-detail__category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 120px;
  margin-right: 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .news-detail__category {
    min-height: 24px;
    min-width: 80px;
  }
}
.news-detail__heading {
  margin-top: 30px;
  font-size: 3.2rem;
  line-height: 1.4em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .news-detail__heading {
    margin-top: 14px;
    font-size: 28px;
  }
}
.news-detail__description {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .news-detail__description {
    font-size: 12px;
  }
}
.news-detail__image {
  width: 100%;
  margin-block: 58px 80px;
}
@media screen and (max-width: 767px) {
  .news-detail__image {
    margin-block: 20px 32px;
  }
}
.news-detail__button-container {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .news-detail__button-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .news-detail__button {
    width: 206.25px;
    height: 51.5625px;
  }
}
.news-detail__content {
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .news-detail__content {
    font-size: 1.5rem;
    line-height: 1.8em;
  }
}

.interview2 {
  background-color: #f2f2f2;
  padding-block: 93px 140px;
}
@media screen and (max-width: 767px) {
  .interview2 {
    padding-block: 39px 48px;
  }
}
.interview2__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .interview2__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.interview2__item {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 30px;
  padding: 40px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .interview2__item {
    padding: 24px;
    border-radius: 28px;
  }
}
.interview2__item.red {
  background-color: #e30100;
}
.interview2__item.red .interview2__item-category {
  color: #e30100;
}
.interview2__item.blue {
  background-color: #004ea2;
}
.interview2__item.blue .interview2__item-category {
  color: #004ea2;
}
.interview2__item.orange {
  background-color: #ff5b07;
}
.interview2__item.orange .interview2__item-category {
  color: #ff5b07;
}
.interview2__item.yellow {
  background-color: #fdc300;
}
.interview2__item.yellow .interview2__item-category {
  color: #fdc300;
}
.interview2__item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.interview2__item-image {
  max-width: 440px;
  max-height: 260px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.interview2__item-image img {
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.interview2__item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .interview2__item-row {
    gap: 10px;
  }
}
.interview2__item-info {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.06em;
  margin-block: 28px 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .interview2__item-info {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .interview2__item-info {
    margin-block: 16px 10px;
    font-size: 1.7rem;
    line-height: 1.5em;
    letter-spacing: 0.05em;
  }
}
.interview2__item-category {
  background: #fff;
  padding: 7px 16px 6px;
  border-radius: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .interview2__item-category {
    font-size: 1rem;
    line-height: 1.2em;
    padding: 4px 12px;
  }
}
.interview2__item-name {
  font-size: 2rem;
  line-height: 1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .interview2__item-name {
    font-size: 14px;
  }
}
.interview2__details {
  position: relative;
  overflow: hidden;
}
.interview2__card-container {
  position: relative;
  margin: 0 auto;
  width: 340px;
  height: 458px;
}
@media screen and (max-width: 900px) {
  .interview2__card-container {
    width: 50.7%;
    height: 314px;
  }
}
@media screen and (max-width: 767px) {
  .interview2__card-container {
    margin-top: 17px;
    width: 320px;
    height: 314px;
  }
}
.interview2__card-top {
  position: absolute;
  width: 340px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  -webkit-transition: z-index 0s 400ms;
  transition: z-index 0s 400ms;
  -webkit-animation: card-back-left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: card-back-left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 1200px) {
  .interview2__card-top {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .interview2__card-top {
    width: 201.5625px;
  }
}
.interview2__card-top--back {
  margin-top: -40px;
  margin-left: 40px;
  rotate: -10deg;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .interview2__card-top--back {
    margin-top: -30px;
    margin-left: 30px;
  }
}
.interview2__card-top--middle {
  z-index: 3;
}
.interview2__card-top--front {
  margin-top: 40px;
  margin-left: -40px;
  z-index: 3;
  rotate: 10deg;
}
@media screen and (max-width: 1200px) {
  .interview2__card-top--front {
    margin-top: 30px;
    margin-left: -30px;
  }
}
.interview2__card-top--front.sub {
  z-index: 2;
}
.interview2__card-top.active {
  z-index: 4;
  -webkit-animation: card-active 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          animation: card-active 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
.interview2__banner-container {
  position: absolute;
  top: 212px;
}
@media screen and (max-width: 767px) {
  .interview2__banner-container {
    top: 150px;
  }
}
.interview2__intro-texts {
  margin-block: 84px 120px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .interview2__intro-texts {
    margin-block: 48px 72px;
    gap: 8px;
  }
}
.interview2__intro-date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 6px 22px;
  border-radius: 14px;
  background-color: #fff;
  color: #db0c0b;
}
@media screen and (max-width: 767px) {
  .interview2__intro-date {
    font-size: 1.2rem;
    padding: 4px 18px;
  }
}
.interview2__intro-name {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .interview2__intro-name {
    font-size: 32px;
  }
}
.interview2__intro-dept {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #6c6c6c;
}
@media screen and (max-width: 767px) {
  .interview2__intro-dept {
    font-size: 14px;
  }
}
.interview2__intro-text {
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2em;
  max-width: 480px;
}
@media screen and (max-width: 767px) {
  .interview2__intro-text {
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 0.04em;
    line-height: 1.8em;
  }
}
@media screen and (max-width: 767px) {
  .interview2__details-image {
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .interview2__details-image .image--100 {
    height: 180px;
  }
}
.interview2__details-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .interview2__details-content {
    gap: 32px;
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 767px) {
  .interview2__details-content:last-of-type {
    margin-bottom: 0;
  }
}
.interview2__details-qa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .interview2__details-qa {
    gap: 48px;
  }
}
.interview2__details-qa-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px;
}
@media screen and (max-width: 767px) {
  .interview2__details-qa-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.interview2__details-question {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4285714286em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .interview2__details-question {
    font-size: 24px;
    gap: 15px;
    letter-spacing: 0.04em;
    line-height: 1.4em;
  }
}
.interview2__details-question::before {
  content: "";
  position: relative;
  max-width: 35px;
  width: 100%;
  height: 40px;
  background: url("./public/img/interview-details/q.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .interview2__details-question::before {
    max-width: 20px;
    height: 32px;
  }
}
.interview2__details-answer {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .interview2__details-answer {
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.8em;
  }
}

.data {
  background: #f2f2f2;
  padding-block: 103px 76px;
}
@media screen and (max-width: 767px) {
  .data {
    padding-block: 48.28px 48px;
  }
}
.data__card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .data__card-list {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .data__card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.data__card {
  background: #fff;
  border-radius: 10px;
  height: 420px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 40px;
}
@media screen and (max-width: 1200px) {
  .data__card {
    padding: 30px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .data__card {
    padding: 15px;
  }
}
.data__card-icon {
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .data__card-icon {
    width: 200px !important;
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.data__card-icon--1 {
  width: 172.86px;
}
@media screen and (max-width: 767px) {
  .data__card-icon--1 {
    width: 81.028125px;
  }
}
.data__card-icon--2 {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .data__card-icon--2 {
    width: 112.5px;
  }
}
.data__card-icon--3 {
  width: 192.68px;
}
@media screen and (max-width: 767px) {
  .data__card-icon--3 {
    width: 90.31875px;
  }
}
.data__card-icon--4 {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .data__card-icon--4 {
    width: 75px;
  }
}
.data__card-icon--5 {
  width: 253.83px;
}
@media screen and (max-width: 767px) {
  .data__card-icon--5 {
    width: 118.9828125px;
  }
}
.data__card-icon--6 {
  width: 158px;
}
@media screen and (max-width: 767px) {
  .data__card-icon--6 {
    width: 74.0625px;
  }
}
.data__card-icon--7 {
  width: 230.67px;
}
@media screen and (max-width: 767px) {
  .data__card-icon--7 {
    width: 108.1265625px;
  }
}
.data__card-icon--8 {
  width: 154.43px;
}
@media screen and (max-width: 767px) {
  .data__card-icon--8 {
    width: 72.3890625px;
  }
}
.data__card-icon--9 {
  width: 254.92px;
}
@media screen and (max-width: 767px) {
  .data__card-icon--9 {
    width: 119.49375px;
  }
}
@media screen and (min-width: 1200.98px) {
  .data__card-heading {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .data__card-heading {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .data__card-heading {
    display: block;
    margin: 0 auto;
  }
}
.data__card.group{
  justify-content: center;
}
@media screen and (max-width: 580px) {
  .group .data__card-heading--sp-w50 {
    max-width: 70px;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
@media screen and (max-width: 767px) {
  .data__card-heading--sp-w50 {
    object-fit: contain;
    height: 50px;
    width: 80%;
  }
}
@media screen and (max-width: 580px) {
  .data__card-heading--sp-w50 {
    object-fit: contain;
    height: 40px;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .data__card-heading--sp-w60 {
    width: 80%;
  }
}
.data__card-subheading {
  margin-block: 30px 13px;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1.3333333333em;
  color: #333;
}
@media screen and (max-width: 1200px) {
  .data__card-subheading {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .data__card-subheading {
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 1200px) {
  .data__card-subheading--small {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .data__card-subheading--small {
    font-size: 10px;
  }
}
.data__note {
  margin: 32px 0 0 auto;
  max-width: 710px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4em;
  color: #6c6c6c;
}
@media screen and (max-width: 767px) {
  .data__note {
    margin-top: 16px;
  }
}
.data__card-subheading-small {
  font-size: 1rem;
}

.container {
  padding-inline: 4%;
  margin: 0 auto;
  max-width: calc(1080px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-inline: 30px;
  }
}

.overflow {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

.hidden {
  visibility: hidden;
}

.nowrap {
  white-space: nowrap;
}

.fw300 {
  font-weight: 300;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

[data-aos=card-animation] .top__message-card {
  top: 0;
  opacity: 0;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: top 1000ms ease, opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 1000ms ease, opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), -webkit-transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 1000ms ease, opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 1000ms ease, opacity 800ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform 1200ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}
[data-aos=card-animation].aos-animate .top__message-card {
  opacity: 1;
}
[data-aos=card-animation].aos-animate .top__message-card[data-card="1"] {
  top: 14.03%;
  opacity: 1;
  -webkit-transform: rotate(352deg);
          transform: rotate(352deg);
}
@media screen and (max-width: 767px) {
  [data-aos=card-animation].aos-animate .top__message-card[data-card="1"] {
    top: 7.31%;
  }
}
[data-aos=card-animation].aos-animate .top__message-card[data-card="2"] {
  top: 44.27%;
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}
@media screen and (max-width: 767px) {
  [data-aos=card-animation].aos-animate .top__message-card[data-card="2"] {
    top: 6.26%;
  }
}
[data-aos=card-animation].aos-animate .top__message-card[data-card="3"] {
  top: 77.24%;
  -webkit-transform: rotate(355deg);
          transform: rotate(355deg);
}
@media screen and (max-width: 767px) {
  [data-aos=card-animation].aos-animate .top__message-card[data-card="3"] {
    top: 46.51%;
    -webkit-transform: rotate(-16deg);
            transform: rotate(-16deg);
  }
}
[data-aos=card-animation].aos-animate .top__message-card[data-card="4"] {
  top: 13.33%;
  -webkit-transform: rotate(341deg);
          transform: rotate(341deg);
}
[data-aos=card-animation].aos-animate .top__message-card[data-card="5"] {
  top: 42.67%;
  -webkit-transform: scale(-1) rotate(-360deg);
          transform: scale(-1) rotate(-360deg);
}
@media screen and (max-width: 767px) {
  [data-aos=card-animation].aos-animate .top__message-card[data-card="5"] {
    top: 44.27%;
    right: unset;
    left: -1%;
    width: 41.25px;
    height: 61.875px;
  }
}
[data-aos=card-animation].aos-animate .top__message-card[data-card="6"] {
  bottom: 14.29%;
  top: 75.14%;
  -webkit-transform: scale(-1) rotate(360deg);
          transform: scale(-1) rotate(360deg);
}

@-webkit-keyframes arrow-animation-white {
  0% {
    background-image: url("./public/img/svg/icons/arrow-right-white.svg");
    opacity: 1;
  }
  50% {
    opacity: 0;
    left: 116%;
  }
  50.1% {
    opacity: 0;
    left: -17%;
  }
  100% {
    opacity: 1;
  }
}

@keyframes arrow-animation-white {
  0% {
    background-image: url("./public/img/svg/icons/arrow-right-white.svg");
    opacity: 1;
  }
  50% {
    opacity: 0;
    left: 116%;
  }
  50.1% {
    opacity: 0;
    left: -17%;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes arrow-animation-red {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    left: 116%;
  }
  50.1% {
    opacity: 0;
    left: -17%;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-animation-red {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    left: 116%;
  }
  50.1% {
    opacity: 0;
    left: -17%;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes arrow-animation-red-reverse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    right: 116%;
  }
  50.1% {
    opacity: 0;
    right: -17%;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-animation-red-reverse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    right: 116%;
  }
  50.1% {
    opacity: 0;
    right: -17%;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes arrow-animation-red-to-white {
  0% {
    background-image: url("./public/img/svg/icons/arrow-right-red.svg");
    opacity: 1;
  }
  50% {
    opacity: 0;
    left: 116%;
  }
  50.1% {
    opacity: 0;
    left: -17%;
  }
  100% {
    background-image: url("./public/img/svg/icons/arrow-right-white.svg");
    opacity: 1;
  }
}
@keyframes arrow-animation-red-to-white {
  0% {
    background-image: url("./public/img/svg/icons/arrow-right-red.svg");
    opacity: 1;
  }
  50% {
    opacity: 0;
    left: 116%;
  }
  50.1% {
    opacity: 0;
    left: -17%;
  }
  100% {
    background-image: url("./public/img/svg/icons/arrow-right-white.svg");
    opacity: 1;
  }
}
@-webkit-keyframes arrow-animation-red-to-white-reverse {
  0% {
    background-image: url("./public/img/svg/icons/arrow-right-red.svg");
    opacity: 1;
  }
  50% {
    opacity: 0;
    right: 116%;
  }
  50.1% {
    opacity: 0;
    right: -17%;
  }
  100% {
    background-image: url("./public/img/svg/icons/arrow-right-white.svg");
    opacity: 1;
  }
}
@keyframes arrow-animation-red-to-white-reverse {
  0% {
    background-image: url("./public/img/svg/icons/arrow-right-red.svg");
    opacity: 1;
  }
  50% {
    opacity: 0;
    right: 116%;
  }
  50.1% {
    opacity: 0;
    right: -17%;
  }
  100% {
    background-image: url("./public/img/svg/icons/arrow-right-white.svg");
    opacity: 1;
  }
}
@-webkit-keyframes arrow-animation-white-to-red {
  0% {
    background-image: url("./public/img/svg/icons/arrow-right-white.svg");
    opacity: 1;
  }
  50% {
    opacity: 0;
    left: 116%;
  }
  50.1% {
    opacity: 0;
    left: -17%;
  }
  100% {
    background-image: url("./public/img/svg/icons/arrow-right-red.svg");
    opacity: 1;
  }
}
@keyframes arrow-animation-white-to-red {
  0% {
    background-image: url("./public/img/svg/icons/arrow-right-white.svg");
    opacity: 1;
  }
  50% {
    opacity: 0;
    left: 116%;
  }
  50.1% {
    opacity: 0;
    left: -17%;
  }
  100% {
    background-image: url("./public/img/svg/icons/arrow-right-red.svg");
    opacity: 1;
  }
}
@-webkit-keyframes loop-banner-right {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes loop-banner-right {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes loop-banner-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-banner-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes marquee-y {
  0% {
    -webkit-transform: translateY(calc(-300% - 90px));
            transform: translateY(calc(-300% - 90px));
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes marquee-y {
  0% {
    -webkit-transform: translateY(calc(-300% - 90px));
            transform: translateY(calc(-300% - 90px));
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes marquee-y-reverse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(calc(-300% - 90px));
            transform: translateY(calc(-300% - 90px));
  }
}
@keyframes marquee-y-reverse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(calc(-300% - 90px));
            transform: translateY(calc(-300% - 90px));
  }
}
@-webkit-keyframes marquee-x {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-300% - 90px));
            transform: translateX(calc(-300% - 90px));
  }
}
@keyframes marquee-x {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-300% - 90px));
            transform: translateX(calc(-300% - 90px));
  }
}
@-webkit-keyframes card-back-left {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(0);
            transform: translate3d(-50%, -50%, 0) rotate(0);
  }
  45% {
    -webkit-transform: translate3d(-90%, -50%, 0) rotate(-12deg);
            transform: translate3d(-90%, -50%, 0) rotate(-12deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
  }
}
@keyframes card-back-left {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(0);
            transform: translate3d(-50%, -50%, 0) rotate(0);
  }
  45% {
    -webkit-transform: translate3d(-90%, -50%, 0) rotate(-12deg);
            transform: translate3d(-90%, -50%, 0) rotate(-12deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
  }
}
@-webkit-keyframes card-active {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(5deg);
            transform: translate3d(-50%, -50%, 0) rotate(5deg);
  }
  55% {
    -webkit-transform: translate3d(-35%, -50%, 0) rotate(10deg);
            transform: translate3d(-35%, -50%, 0) rotate(10deg);
  }
  100% {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(0);
            transform: translate3d(-50%, -50%, 0) rotate(0);
  }
}
@keyframes card-active {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(5deg);
            transform: translate3d(-50%, -50%, 0) rotate(5deg);
  }
  55% {
    -webkit-transform: translate3d(-35%, -50%, 0) rotate(10deg);
            transform: translate3d(-35%, -50%, 0) rotate(10deg);
  }
  100% {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(0);
            transform: translate3d(-50%, -50%, 0) rotate(0);
  }
}
@-webkit-keyframes b-item-1 {
  from {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
    left: -100px;
  }
}
@keyframes b-item-1 {
  from {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
    left: -100px;
  }
}
@-webkit-keyframes b-item-2 {
  from {
    left: 30px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
@keyframes b-item-2 {
  from {
    left: 30px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
@-webkit-keyframes b-item-3 {
  from {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
}
@keyframes b-item-3 {
  from {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
}
@-webkit-keyframes b-item-4 {
  from {
    left: -100px;
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
  }
}
@keyframes b-item-4 {
  from {
    left: -100px;
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
  }
}
@-webkit-keyframes b-item-5 {
  from {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
}
@keyframes b-item-5 {
  from {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
}
@-webkit-keyframes b-item-6 {
  from {
    left: 20px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
@keyframes b-item-6 {
  from {
    left: 20px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
@-webkit-keyframes b-item-7 {
  from {
    left: -50px;
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
  }
}
@keyframes b-item-7 {
  from {
    left: -50px;
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
  }
}
@-webkit-keyframes b-item-8 {
  from {
    left: 50px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
@keyframes b-item-8 {
  from {
    left: 50px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
@-webkit-keyframes b-item-9 {
  from {
    left: -100px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}
@keyframes b-item-9 {
  from {
    left: -100px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}