@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&family=Zen+Kaku+Gothic+Antique&display=swap");
:root {
  --line-height: calc(66 / 28);
}

body {
  letter-spacing: 0.05em;
  line-height: calc(var(--line-height) * 1em);
}

.font-specific * {
  font-family: "Lato", "BIZ UDGothic", "Zen Kaku Gothic Antique", "Oswald", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h2 {
  font-family: "BIZ UDGothic", sans-serif;
}

/* Opening Animation */
.opening-anim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #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;
  overflow: hidden;
}
.opening-anim__inner {
  position: relative;
  width: 100%;
  height: 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;
}
.opening-anim__logo {
  position: absolute;
  z-index: 10;
  width: 300px;
  max-width: 80%;
  opacity: 0; /* Initial state for GSAP */
}
.opening-anim__logo img {
  width: 100%;
  height: auto;
}
.opening-anim__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0; /* Initial state for GSAP */
}
.opening-anim__circle--1 {
  width: 600px; /* Adjust size as needed */
  z-index: 5;
}
.opening-anim__circle--2 {
  width: 800px; /* Adjust size as needed */
  z-index: 4;
}
.opening-anim__circle img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 500px) {
  .opening-anim__logo {
    width: 200px;
  }
  .opening-anim__circle--1 {
    width: 300px;
  }
  .opening-anim__circle--2 {
    width: 400px;
  }
}

.c-anim-slide-in-left {
  --slide-distance: -40px;
  --slide-duration: 0.8s;
  --slide-delay: 0s;
  opacity: 0;
  -webkit-transform: translateX(var(--slide-distance));
          transform: translateX(var(--slide-distance));
  -webkit-animation: slideInLeft var(--slide-duration) ease-out var(--slide-delay) forwards;
          animation: slideInLeft var(--slide-duration) ease-out var(--slide-delay) forwards;
}

@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(var(--slide-distance));
            transform: translateX(var(--slide-distance));
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(var(--slide-distance));
            transform: translateX(var(--slide-distance));
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInLeftPerson {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px) translate(var(--person-shift-x, 0), var(--person-shift-y, 0)) scale(var(--person-scale, 1));
            transform: translateX(-50px) translate(var(--person-shift-x, 0), var(--person-shift-y, 0)) scale(var(--person-scale, 1));
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0) translate(var(--person-shift-x, 0), var(--person-shift-y, 0)) scale(var(--person-scale, 1));
            transform: translateX(0) translate(var(--person-shift-x, 0), var(--person-shift-y, 0)) scale(var(--person-scale, 1));
  }
}
@keyframes slideInLeftPerson {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px) translate(var(--person-shift-x, 0), var(--person-shift-y, 0)) scale(var(--person-scale, 1));
            transform: translateX(-50px) translate(var(--person-shift-x, 0), var(--person-shift-y, 0)) scale(var(--person-scale, 1));
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0) translate(var(--person-shift-x, 0), var(--person-shift-y, 0)) scale(var(--person-scale, 1));
            transform: translateX(0) translate(var(--person-shift-x, 0), var(--person-shift-y, 0)) scale(var(--person-scale, 1));
  }
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-base {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  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: 500px) {
  .hero-base {
    min-height: 400px;
  }
}

body .hero-sub {
  padding-top: 8rem;
}
@media screen and (max-width: 500px) {
  body .hero-sub {
    padding-top: 4rem;
  }
}
body .hero-sub__inner {
  position: relative;
  height: 100%;
}
body .hero-sub__inner::after {
  content: "";
  display: none;
}
body .hero-sub__content {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 820px) {
  body .hero-sub__content {
    width: 90%;
  }
}
body .hero-sub__content h2 {
  text-align: center;
  font-size: clamp(20px, 4vw, 36px);
  font-weight: 300;
}
body .hero-sub__titles {
  top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 3;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  gap: 10px;
}
body .hero-sub__titles .weight-bold {
  font-weight: 900;
  font-size: clamp(36px, 6vw, 80px);
  color: #333333;
  width: auto;
}
body .hero-sub__titles .weight-lighter {
  font-weight: 300;
  font-size: clamp(36px, 6vw, 80px);
  color: #333333;
  width: auto;
}
body .hero-sub__desc {
  margin: 20px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #555555;
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
}
@media screen and (max-width: 500px) {
  body .hero-sub__desc {
    text-align: justify;
    font-size: clamp(16px, 3vw, 20px);
  }
}
@media screen and (max-width: 500px) {
  body .hero-sub__desc br.br-pc {
    display: none;
  }
}
body .hero-sub__img {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0;
}
body .hero-sub__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}

.hero-swiper {
  margin: 100px 0 0 0;
  height: 100%;
  min-height: 600px;
  position: relative;
  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;
  overflow: visible !important;
}
@media screen and (max-width: 500px) {
  .hero-swiper {
    margin: 0;
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
}
.hero-swiper__container {
  position: relative;
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  gap: 20px;
}
@media screen and (min-width: 1400px) {
  .hero-swiper__container {
    margin: 6% auto 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .hero-swiper__container {
    gap: 20px;
    margin: 60px 0 0 0;
  }
}
.hero-swiper__container .hero-welcome-message {
  font-size: clamp(36px, 6vw, 80px);
}
.hero-swiper__container .hero-welcome-message .weight-bold {
  font-weight: 900;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
}
.hero-swiper__container .hero-welcome-message .weight-bold .hero-letter {
  display: inline-block;
}
.hero-swiper__container .hero-welcome-message .weight-bold .hero-letter--kumatoyo {
  color: #880025;
}
.hero-swiper__container .hero-welcome-message .weight-bold .hero-letter--lexus {
  color: #221815;
}
.hero-swiper__container .hero-welcome-message .weight-bold .hero-letter--lf {
  color: #e60012;
}
.hero-swiper__container .hero-welcome-message .weight-bold .hero-letter--oitatoypetto {
  color: #006057;
}
.hero-swiper__container .hero-welcome-message .weight-bold .hero-letter--weltown {
  color: #004823;
}
.hero-swiper__container .hero-welcome-message .weight-bold .hero-letter--jms {
  color: #fabe00;
}
.hero-swiper__container .hero-welcome-message .weight-lighter {
  font-weight: 300;
}
.hero-swiper__container .hero-people {
  width: 100%;
  max-width: 1200px;
  overflow: clip;
  margin: 0rem auto 8rem;
}
.hero-swiper__container .hero-people__bg-floating {
  position: absolute;
  top: 5%;
  width: 100%;
  max-width: 1200px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  -webkit-animation: hero-bg-in 0.9s ease-out 0.2s forwards, hero-bg-float 3s ease-in-out 1.1s infinite alternate;
          animation: hero-bg-in 0.9s ease-out 0.2s forwards, hero-bg-float 3s ease-in-out 1.1s infinite alternate;
}
@media screen and (min-width: 1400px) {
  .hero-swiper__container .hero-people__bg-floating {
    top: 5%;
  }
}
.hero-swiper__container .hero-people__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  padding: 0;
  scrollbar-width: none;
  min-height: 230px;
  max-width: 1140px;
}
.hero-swiper__container .hero-people__list::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 500px) {
  .hero-swiper__container .hero-people__list {
    min-height: auto;
    max-height: 85px;
  }
}
.hero-swiper__container .hero-people__item {
  opacity: 0;
  --enter-x: 0px;
  --person-shift-x: var(--person-shift-x-base, 0px);
  --person-shift-y: var(--person-shift-y-base, 0px);
  --person-scale: var(--person-scale-base, 1);
  -webkit-transform: translateX(var(--enter-x)) translate(var(--person-shift-x, 0), var(--person-shift-y, 0)) scale(var(--person-scale, 1));
          transform: translateX(var(--enter-x)) translate(var(--person-shift-x, 0), var(--person-shift-y, 0)) scale(var(--person-scale, 1));
  position: relative;
  z-index: calc(10 + var(--person-index, 0));
}
body.is-ready .hero-swiper__container .hero-people__item {
  -webkit-animation: slideInLeftPerson 0.8s ease-out forwards;
          animation: slideInLeftPerson 0.8s ease-out forwards;
  -webkit-animation-delay: calc(var(--person-order) * 0.1s + 0.5s);
          animation-delay: calc(var(--person-order) * 0.1s + 0.5s);
}
.hero-swiper__container .hero-people__item img {
  display: block;
  height: clamp(140px, 18vw, 260px);
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: var(--person-obj-pos, center bottom);
     object-position: var(--person-obj-pos, center bottom);
}
@-webkit-keyframes hero-bg-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.96) translateY(12px);
            transform: scale(0.96) translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@keyframes hero-bg-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.96) translateY(12px);
            transform: scale(0.96) translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@-webkit-keyframes hero-bg-float {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes hero-bg-float {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.hero-swiper__container .hero-people::after {
  content: "";
  position: absolute;
  z-index: 10;
  display: block;
  height: 8px;
  width: 100%;
  max-width: 1180px;
  background: -webkit-gradient(linear, left top, right top, from(#880025), color-stop(8.33%, #221815), color-stop(16.66%, #006057), color-stop(24.99%, #e60012), color-stop(33.32%, #004823), color-stop(41.65%, #fabe00), color-stop(49.98%, #880025), color-stop(58.31%, #221815), color-stop(66.64%, #006057), color-stop(74.97%, #e60012), color-stop(83.3%, #004823), color-stop(91.63%, #fabe00));
  background: linear-gradient(to right, #880025 0% 8.33%, #221815 8.33% 16.66%, #006057 16.66% 24.99%, #e60012 24.99% 33.32%, #004823 33.32% 41.65%, #fabe00 41.65% 49.98%, #880025 49.98% 58.31%, #221815 58.31% 66.64%, #006057 66.64% 74.97%, #e60012 74.97% 83.3%, #004823 83.3% 91.63%, #fabe00 91.63% 100%);
}
@media screen and (max-width: 500px) {
  .hero-swiper__container .hero-people {
    max-width: 100%;
    margin: 0rem auto 4rem;
  }
  .hero-swiper__container .hero-people__item {
    --person-shift-x: var(
      --person-shift-x-sp,
      var(--person-shift-x-base, 0px)
    );
    --person-shift-y: var(
      --person-shift-y-sp,
      var(--person-shift-y-base, 0px)
    );
    --person-scale: var(--person-scale-sp, var(--person-scale-base, 1));
  }
  .hero-swiper__container .hero-people__item img {
    height: clamp(120px, 35vw, 180px);
  }
}
.hero-swiper__circle-container {
  position: relative;
  width: 500px;
  height: 500px;
}
@media screen and (min-width: 1400px) {
  .hero-swiper__circle-container {
    width: 650px;
    height: 650px;
  }
}
@media screen and (max-width: 500px) {
  .hero-swiper__circle-container {
    width: 250px;
    height: 250px;
  }
}
.hero-swiper__center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}
.hero-swiper__center-image .center-logo {
  width: 500px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 500px) {
  .hero-swiper__center-image .center-logo {
    width: 150px;
  }
}
.hero-swiper__circle-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  -webkit-transform: rotate(var(--rotation-angle, 0deg));
          transform: rotate(var(--rotation-angle, 0deg));
  mask: radial-gradient(circle, transparent 45%, black 45%, black 55%, transparent 55%);
  -webkit-mask: radial-gradient(circle, transparent 45%, black 45%, black 55%, transparent 55%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-swiper__image-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(var(--rotation-angle, 0deg));
          transform: rotate(var(--rotation-angle, 0deg));
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-swiper__image-item {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-260px) rotate(calc(-1 * var(--circle-angle)));
          transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-260px) rotate(calc(-1 * var(--circle-angle)));
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 5;
}
@media screen and (min-width: 1400px) {
  .hero-swiper__image-item {
    width: 250px;
    height: 250px;
    -webkit-transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-320px) rotate(calc(-1 * var(--circle-angle)));
            transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-320px) rotate(calc(-1 * var(--circle-angle)));
  }
}
@media screen and (max-width: 500px) {
  .hero-swiper__image-item {
    width: 120px;
    height: 120px;
    -webkit-transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-130px) rotate(calc(-1 * var(--circle-angle)));
            transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-130px) rotate(calc(-1 * var(--circle-angle)));
  }
}
.hero-swiper__image-item:hover {
  -webkit-transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-252px) rotate(calc(-1 * var(--circle-angle))) scale(1.05);
          transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-252px) rotate(calc(-1 * var(--circle-angle))) scale(1.05);
  z-index: 10;
}
@media screen and (min-width: 1400px) {
  .hero-swiper__image-item:hover {
    -webkit-transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-323px) rotate(calc(-1 * var(--circle-angle))) scale(1.05);
            transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-323px) rotate(calc(-1 * var(--circle-angle))) scale(1.05);
  }
}
@media screen and (max-width: 500px) {
  .hero-swiper__image-item:hover {
    -webkit-transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-130px) rotate(calc(-1 * var(--circle-angle))) scale(1.05);
            transform: translate(-50%, -50%) rotate(var(--circle-angle)) translateY(-130px) rotate(calc(-1 * var(--circle-angle))) scale(1.05);
  }
}
.hero-swiper__image-item .image-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  -webkit-transform: rotate(var(--rotation-angle));
          transform: rotate(var(--rotation-angle));
  border-radius: 8px;
}
.hero-swiper__image-item .image-icon.svg-type {
  border-radius: 0;
}
.hero-swiper__bubble-container {
  position: absolute;
  top: 38%;
  left: 15%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: left;
  z-index: 20;
}
@media screen and (max-width: 500px) {
  .hero-swiper__bubble-container {
    top: 22%;
    left: 8%;
  }
}
.hero-swiper__bubble-text {
  background: #221815;
  padding: 8px 30px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
  opacity: 1;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}
.hero-swiper__bubble-text::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 40%;
  width: 0;
  height: 0;
  border-left: 40px solid #221815;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 500px) {
  .hero-swiper__bubble-text::after {
    left: 25%;
    bottom: -10px;
    border-left: 20px solid #221815;
    -webkit-transform: rotate(65deg);
            transform: rotate(65deg);
  }
}
@media screen and (max-width: 500px) {
  .hero-swiper__bubble-text {
    padding: 6px;
  }
}
.hero-swiper__bubble-text.show {
  opacity: 1;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
@media screen and (max-width: 500px) {
  .hero-swiper__bubble-text.show {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
.hero-swiper__description {
  width: 100%;
  background: #222222;
  color: white;
  line-height: 1.6;
  border-top: 8px solid var(--description-color, #8c0027);
}
.hero-swiper__description .description-title {
  font-size: clamp(20px, 3vw, 28px);
  border-bottom: 4px solid transparent; /* 高さ調整用 */
  background-image: -webkit-gradient(linear, left top, right top, from(#8c0027), color-stop(15%, #c0c0c0), color-stop(30%, #006d66), color-stop(45%, #d00000), color-stop(60%, #004d26), color-stop(80%, #f0b400));
  background-image: linear-gradient(to right, #8c0027 0% 15%, #c0c0c0 15% 35%, #006d66 30% 50%, #d00000 45% 65%, #004d26 60% 80%, #f0b400 80% 100%);
  background-size: 100% 4px; /* 高さ調整 */
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 10px 0;
  margin: 10px auto 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.hero-swiper__description .description-title span {
  font-weight: 900;
}
.hero-swiper__description .description-text {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 300;
  text-align: justify;
  max-width: 1140px;
  margin: 20px auto;
  padding: 0 30px;
}
.hero-swiper__description .company-img {
  padding-top: 0px !important;
}
.hero-swiper__description .company-img__img {
  --img-delay: 0s;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hero-swiper__description .company-img__img.is-animating {
  opacity: 0;
  -webkit-animation: companyImgFade 0.6s ease forwards;
          animation: companyImgFade 0.6s ease forwards;
  -webkit-animation-delay: var(--img-delay, 0s);
          animation-delay: var(--img-delay, 0s);
}
.hero-swiper__description .company-img__img-el {
  display: block;
  width: 100%;
  height: auto;
}
@-webkit-keyframes companyImgFade {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes companyImgFade {
  from {
    opacity: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.hero-swiper__rotation-controls {
  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;
  pointer-events: none;
  gap: 20px;
  z-index: 20;
  margin-top: 30px;
}
@media screen and (max-width: 500px) {
  .hero-swiper__rotation-controls {
    width: 90%;
  }
}
.hero-swiper__control-btn {
  pointer-events: auto;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-swiper__control-btn svg,
.hero-swiper__control-btn img {
  border-radius: 50%;
  background: #333333;
  color: white;
  width: 35px;
  height: 35px;
}
.hero-swiper__control-btn .btn-label {
  font-size: 10px;
  line-height: 1;
}
@media screen and (max-width: 500px) {
  .hero-swiper__control-btn .btn-label {
    font-size: 8px;
  }
}
.hero-swiper__control-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.hero-swiper__control-btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.hero-swiper__prev-btn .hero-swiper__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.hero-swiper__pause-btn {
  position: relative;
}
.hero-swiper__pause-btn .icon-play {
  display: none;
}
.hero-swiper__pause-btn.is-paused .icon-pause {
  display: none;
}
.hero-swiper__pause-btn.is-paused .icon-play {
  display: block;
}
.hero-swiper__nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 500px) {
  .hero-swiper__nav-buttons {
    overflow: auto;
    width: 90%;
  }
}
.hero-swiper__nav-btn {
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  color: var(--btn-color, #333);
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 8px;
}
@media screen and (max-width: 500px) {
  .hero-swiper__nav-btn {
    padding: 6px;
  }
}
.hero-swiper__nav-btn:hover {
  background: var(--btn-color, #333);
  color: #fff;
}
.hero-swiper__nav-btn.active {
  background: var(--btn-color, #333);
  color: #fff;
}
.hero-swiper__nav-btn.active::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid var(--btn-color, #333);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.hero-swiper__nav-btn .btn-text {
  font-size: inherit;
  font-family: "Oswald", sans-serif !important;
  line-height: 1;
  display: inline-block;
}

.header {
  height: auto !important;
}
.header .logo {
  max-width: 300px !important;
}
.header .header__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 8px solid #333;
  padding: 16px 0;
}
@media screen and (max-width: 500px) {
  .header .header__inner {
    padding: 0;
    gap: 10px;
    height: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header .header__li .sub-menu {
  top: 30px;
}
.header .header__li .sub-menu li > a:hover {
  font-weight: normal;
}
.header .header__li a {
  min-width: auto;
  color: #949494;
  font-size: 14px;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.header .header__li > a:hover > span {
  color: #000;
  border-color: #000;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.header .header__li.is-current-parent > a {
  color: #000;
}
.header .header__li.is-current-parent > a span {
  border-bottom-color: #000;
}
.header .header__li:last-child > a {
  border-radius: 0px;
  background: none;
  color: #ce083e;
}
.header .header__li.is-current-parent:last-child > a {
  color: #000;
}
.header .header__li > a > span {
  font-size: 14px;
  border-bottom: 2px solid #949494;
  white-space: nowrap;
}
.header .header__nav {
  display: none;
}
@media screen and (min-width: 980px) {
  .header .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header .mobile-menu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 980px) {
  .header .mobile-menu__btn {
    display: none;
  }
}

.project-content .section-titles h2 {
  font-weight: 300;
  line-height: 1;
}
.project-content .section-titles span {
  font-weight: 400;
}
.project-content .project-content__inner {
  padding-top: 0 !important;
}
.project-content .project-content__inner .project-content__desc {
  border-bottom: 0 !important;
}
.project-content .project-content__inner .project-content__desc .project-content__desc-inner {
  font-weight: 800;
  border-bottom: 3px solid #333333;
  padding-bottom: 20px;
}
.project-content .project-content__inner .project-content__desc .project-content__desc-inner h2 {
  text-align: center;
  padding-bottom: 0;
  font-size: clamp(24px, 6vw, 80px);
  line-height: 1.2;
  text-shadow: 5px 5px 5px rgba(255, 255, 255, 0.9), -5px 5px 5px rgba(255, 255, 255, 0.9), 5px -5px 5px rgba(255, 255, 255, 0.9), -5px -5px 5px rgba(255, 255, 255, 0.9);
}
.project-content .project-content__inner .project-content__desc .project-content__desc-inner span {
  display: block;
  text-align: center;
  font-size: clamp(14px, 1.5vw, 24px);
  text-shadow: 5px 5px 5px rgba(255, 255, 255, 0.9), -5px 5px 5px rgba(255, 255, 255, 0.9), 5px -5px 5px rgba(255, 255, 255, 0.9), -5px -5px 5px rgba(255, 255, 255, 0.9);
}
.project-content .project-content__inner .project-content__desc .project-content__desc-inner::after {
  display: none;
}
@media screen and (max-width: 500px) {
  .project-content .project-content__inner .project-content__desc .project-content__desc-inner {
    padding-bottom: 10px;
  }
}
.project-content .project-content__inner .project-content__desc p {
  margin-top: 20px;
  text-align: center;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.8;
}
.project-content .project-content__inner .toyota-group {
  display: block;
  margin: 70px auto;
}
.project-content .project-content__inner .toyota-group img {
  width: 100%;
  height: auto;
}
.project-content .project-content__inner .toyota-group .logo-orbit {
  --color-kumatoyo: #880025;
  --color-lexus: #221815;
  --color-oita: #006057;
  --color-weltown: #004823;
  --color-jms: #fabe00;
  --color-lf: #e60012;
  position: relative;
  z-index: 0;
  width: 70%;
  aspect-ratio: 1/1;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
}
.project-content .project-content__inner .toyota-group .logo-orbit__center {
  position: relative;
  z-index: 1;
  width: 90%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
@media screen and (max-width: 500px) {
  .project-content .project-content__inner .toyota-group .logo-orbit__center {
    width: 85%;
  }
}
.project-content .project-content__inner .toyota-group .logo-orbit__center img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.project-content .project-content__inner .toyota-group .logo-orbit__dot-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  opacity: 0;
  -webkit-animation: dotbg-in 0.9s ease-out 0.5s forwards, dotbg-float 2s ease-in-out 1.5s infinite alternate;
          animation: dotbg-in 0.9s ease-out 0.5s forwards, dotbg-float 2s ease-in-out 1.5s infinite alternate;
}
@media screen and (max-width: 500px) {
  .project-content .project-content__inner .toyota-group .logo-orbit__dot-bg {
    width: 80%;
  }
}
.project-content .project-content__inner .toyota-group .logo-orbit__dot-bg img {
  width: 100%;
  height: auto;
  -webkit-animation: dotbg-spin 18s linear infinite;
          animation: dotbg-spin 18s linear infinite;
}
.project-content .project-content__inner .toyota-group .logo-orbit__ring {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.project-content .project-content__inner .toyota-group .logo-orbit__item {
  position: absolute;
  z-index: 2;
  max-width: 180px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.project-content .project-content__inner .toyota-group .logo-orbit__floaters {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.project-content .project-content__inner .toyota-group .logo-orbit__floater {
  position: absolute;
  border-radius: 50%;
  opacity: 1;
  -webkit-filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
}
@-webkit-keyframes dotbg-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9) translateY(12px);
            transform: scale(0.9) translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@keyframes dotbg-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9) translateY(12px);
            transform: scale(0.9) translateY(12px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@-webkit-keyframes dotbg-float {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes dotbg-float {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@-webkit-keyframes dotbg-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes dotbg-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media screen and (max-width: 600px) {
  .project-content .project-content__inner .toyota-group .logo-orbit {
    width: min(520px, 92vw);
    margin: 24px auto 10px;
  }
  .project-content .project-content__inner .toyota-group .logo-orbit__item {
    width: 30%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .project-content .project-content__inner .toyota-group .logo-orbit__dot-bg {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
  }
  .project-content .project-content__inner .toyota-group .logo-orbit__dot-bg img {
    -webkit-animation: none;
            animation: none;
  }
}
.project-content .project-content__inner .conmpanies-list li a {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  border: none;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}
.project-content .project-content__inner .conmpanies-list li a img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  min-height: 0%;
}

main .sales-revenue {
  background: #fff !important;
  background-image: none !important;
  padding-bottom: 0 !important;
}
main .sales-revenue .project-content__desc {
  width: 90%;
  margin: 0 auto;
  max-width: 1140px;
}
main .sales-revenue .project-content__desc-inner {
  font-weight: 800;
  border-bottom: 3px solid #333333;
  padding-bottom: 20px;
}
main .sales-revenue .project-content__desc-inner h2 {
  font-size: clamp(25px, 6vw, 80px);
  text-align: center;
  font-weight: 800;
  padding-bottom: 0;
  color: #333333;
  line-height: 1.2;
  text-shadow: 5px 5px 5px rgba(255, 255, 255, 0.9), -5px 5px 5px rgba(255, 255, 255, 0.9), 5px -5px 5px rgba(255, 255, 255, 0.9), -5px -5px 5px rgba(255, 255, 255, 0.9);
}
main .sales-revenue .project-content__desc-inner span {
  display: block;
  text-align: center;
  font-size: clamp(14px, 1.5vw, 24px);
  font-weight: 400;
  text-shadow: 5px 5px 5px rgba(255, 255, 255, 0.9), -5px 5px 5px rgba(255, 255, 255, 0.9), 5px -5px 5px rgba(255, 255, 255, 0.9), -5px -5px 5px rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 500px) {
  main .sales-revenue .project-content__desc-inner {
    padding-bottom: 10px;
  }
}
main .sales-revenue dt,
main .sales-revenue dd {
  text-align: center;
  color: #333333;
}
main .sales-revenue__box .count {
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .sales-revenue__box .count dl {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  padding: 20px;
}
main .sales-revenue__box .count dl dt {
  font-size: clamp(20px, 2.5vw, 35px);
  font-weight: 900;
  letter-spacing: 0.5rem;
}
main .sales-revenue__box .count dl dd {
  font-size: clamp(20px, 4vw, 50px);
  font-weight: 600;
  border-bottom: 2px solid #333333;
  text-align: center;
  line-height: 1.3;
}
main .sales-revenue__box .count dl dd > span {
  font-size: clamp(3.5em, 4vw, 10em);
  font-family: "Oswald", sans-serif;
  font-weight: 900;
}
main .sales-revenue__box .count dl p {
  padding-top: 20px;
  color: #333333;
  font-size: clamp(17px, 3vw, 19px);
  text-align: justify;
}

main .area-map {
  background: #fff !important;
  background-image: none !important;
  padding-top: 0 !important;
}
main .area-map .area-map__desc {
  padding: 20px;
}
main .area-map .area-map__desc h4 {
  font-size: clamp(20px, 2.5vw, 35px);
  color: #333333;
  font-weight: 900;
  letter-spacing: 0.5rem;
  text-align: center;
}
main .area-map .area-map__desc h3 {
  font-weight: 800;
  text-align: center;
  padding-bottom: 0;
  color: #333333;
  line-height: 1.3;
  border-bottom: 2px solid #333333;
}
main .area-map .area-map__desc p {
  padding-top: 20px;
  color: #333333;
  text-align: justify;
}
@media screen and (max-width: 500px) {
  main .area-map .area-map__desc p .br-sp {
    display: none;
  }
}

main .yuukyuu-rate {
  display: none;
  padding-top: 0 !important;
  background: #fff !important;
  background-image: none !important;
}
main .yuukyuu-rate .section-titles {
  width: 90%;
  margin: 0 auto;
  max-width: 1140px;
  position: relative;
  border-bottom: 3px solid #333333;
}
main .yuukyuu-rate .section-titles h2 {
  text-align: center;
  font-weight: 800;
  padding-bottom: 0;
  color: #333333;
}
main .yuukyuu-rate dt,
main .yuukyuu-rate dd {
  text-align: center;
  color: #333333;
}
main .yuukyuu-rate .sales-revenue__box .count dl dd {
  text-align: center;
  line-height: 1.3;
  border-bottom: 2px solid #333333;
}
main .yuukyuu-rate .sales-revenue__box .count dl p {
  padding-top: 20px;
  color: #333333;
  font-size: clamp(17px, 3vw, 19px);
}

main .core-vision__inner h3 {
  font-size: clamp(16px, 3vw, 35px);
  letter-spacing: 0.2em;
  line-height: 2;
}
@media screen and (max-width: 500px) {
  main .core-vision__inner h3 {
    font-size: clamp(14px, 4vw, 24px);
    letter-spacing: 0.05em;
  }
}

.core-vision__inner.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
}
@media screen and (max-width: 500px) {
  .core-vision__inner.grid {
    grid-template-columns: none;
    gap: 30px;
    margin-top: 40px;
  }
}
.core-vision__inner.grid figure {
  border-right: 2px solid #221815;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .core-vision__inner.grid figure {
    padding-bottom: 30px;
    border-right: none;
    border-bottom: 2px solid #221815;
  }
}
.core-vision__inner.grid figure img {
  max-width: 60%;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.core-vision__inner.grid .core-vision__buttons-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: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .core-vision__inner.grid .core-vision__buttons-container {
    margin: 0;
  }
}
.core-vision__inner.grid .core-vision__buttons-container .btn {
  width: 100%;
  background: #221815;
  font-size: clamp(17px, 3vw, 19px);
  padding: 0.3rem 5rem 0.3rem 1rem;
  border: none;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 500px) {
  .core-vision__inner.grid .core-vision__buttons-container .btn {
    padding: 0.1rem 2rem 0.1rem 1rem;
  }
}
.core-vision__inner.grid .core-vision__buttons-container .btn p {
  margin-bottom: 0;
}
.core-vision__inner.grid .core-vision__buttons-container .btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  color: #fff;
  font-weight: 400;
}
.core-vision__inner.grid .core-vision__buttons-container .btn span svg {
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0 0.1rem;
}
.core-vision__inner.grid .core-vision__buttons-container .btn span svg .cls-1 {
  fill: #221815;
}
.core-vision__inner.grid .core-vision__buttons-container .btn span::before {
  display: none;
  content: "none";
}
.core-vision__inner.grid .core-vision__buttons-container .btn:hover {
  background: #fff;
}
.core-vision__inner.grid .core-vision__buttons-container .btn:hover span {
  color: #221815;
}
.core-vision__inner.grid .core-vision__buttons-container .btn:hover span svg {
  background: #221815;
}
.core-vision__inner.grid .core-vision__buttons-container .btn:hover span svg .cls-1 {
  fill: #fff;
}

.sdgs-sec {
  height: 365px;
  background-image: url(../images/green_slide.webp) !important;
}
@media screen and (max-width: 500px) {
  .sdgs-sec {
    height: auto;
    -webkit-animation: scrollBackground 80s linear infinite;
            animation: scrollBackground 80s linear infinite;
  }
}

body[data-page=group-member] .section-titles h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
body[data-page=group-member] .section-titles h2 span {
  font-weight: bold;
}

body .staff-interviews__inner {
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  body .staff-interviews__inner {
    width: 100%;
  }
}
body .staff-interviews__block-inner {
  padding: 40px 0;
}
body .staff-interviews__lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 500px) {
  body .staff-interviews__lists {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
}
body .staff-interviews__list {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: hidden;
}
body .staff-interviews__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
body .staff-interviews__link:hover .staff-interviews__img::before {
  opacity: 0.7;
}
body .staff-interviews__link:hover .staff-interviews__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
body .staff-interviews__img {
  position: relative;
  width: 215px;
  height: 260px;
  overflow: hidden;
  border: 10px solid #e60012;
  border-radius: 50% 50% 0 0/40% 40% 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  body .staff-interviews__img {
    width: 150px;
    height: 190px;
    border-radius: 50% 50% 0 0/40% 40% 0 0;
  }
}
body .staff-interviews__img img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -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: 500px) {
  body .staff-interviews__img {
    border-width: 8px;
  }
}
body .staff-interviews__list:nth-child(1) .staff-interviews__img, body .staff-interviews__list:nth-child(2) .staff-interviews__img {
  border-color: #880025;
}
body .staff-interviews__list:nth-child(1) .staff-interviews__text::after, body .staff-interviews__list:nth-child(2) .staff-interviews__text::after {
  color: #880025;
}
body .staff-interviews__list:nth-child(3) .staff-interviews__img, body .staff-interviews__list:nth-child(4) .staff-interviews__img {
  border-color: #221815;
}
body .staff-interviews__list:nth-child(3) .staff-interviews__text::after, body .staff-interviews__list:nth-child(4) .staff-interviews__text::after {
  color: #221815;
}
body .staff-interviews__list:nth-child(5) .staff-interviews__img, body .staff-interviews__list:nth-child(6) .staff-interviews__img {
  border-color: #e60012;
}
body .staff-interviews__list:nth-child(5) .staff-interviews__text::after, body .staff-interviews__list:nth-child(6) .staff-interviews__text::after {
  color: #e60012;
}
body .staff-interviews__list:nth-child(7) .staff-interviews__img, body .staff-interviews__list:nth-child(8) .staff-interviews__img {
  border-color: #006057;
}
body .staff-interviews__list:nth-child(7) .staff-interviews__text::after, body .staff-interviews__list:nth-child(8) .staff-interviews__text::after {
  color: #006057;
}
body .staff-interviews__list:nth-child(9) .staff-interviews__img {
  border-color: #004823;
}
body .staff-interviews__list:nth-child(9) .staff-interviews__text::after {
  color: #004823;
}
body .staff-interviews__list:nth-child(10) .staff-interviews__img, body .staff-interviews__list:nth-child(11) .staff-interviews__img {
  border-color: #fabe00;
}
body .staff-interviews__list:nth-child(10) .staff-interviews__text::after, body .staff-interviews__list:nth-child(11) .staff-interviews__text::after {
  color: #fabe00;
}
body .staff-interviews__list:nth-child(n+12) .staff-interviews__img {
  border-color: #e60012;
}
body .staff-interviews__list:nth-child(n+12) .staff-interviews__text::after {
  color: #e60012;
}
body .staff-interviews__desc {
  padding: 20px;
  text-align: center;
  position: relative;
}
body .staff-interviews__desc::before, body .staff-interviews__desc::after {
  content: none !important;
  display: none !important;
}
@media screen and (max-width: 500px) {
  body .staff-interviews__desc {
    padding: 15px 0;
  }
}
body .staff-interviews__name {
  margin-bottom: 10px;
}
body .staff-interviews__name h3 {
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.4;
}
body .staff-interviews__text p {
  color: #666;
  margin: 5px 0 0 0;
  line-height: 1.5;
}
body .staff-interviews__text p:first-child {
  font-weight: 600;
}
body .staff-interviews__text::after {
  content: "›››";
  display: block;
  font-size: 3rem;
  letter-spacing: 0.12em;
}

.staff-details {
  margin-top: 60px;
}
.staff-details .staff-detail:nth-child(1) .staff-detail__badge,
.staff-details .staff-detail:nth-child(2) .staff-detail__badge {
  background: linear-gradient(45deg, #880025, rgb(212.5, 0, 57.8125)) !important;
}
.staff-details .staff-detail:nth-child(1) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(1) .staff-detail__video .recruit-btn,
.staff-details .staff-detail:nth-child(2) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(2) .staff-detail__video .recruit-btn {
  background: linear-gradient(45deg, #880025, rgb(212.5, 0, 57.8125)) !important;
  -webkit-box-shadow: 0 4px 15px rgba(136, 0, 37, 0.3) !important;
          box-shadow: 0 4px 15px rgba(136, 0, 37, 0.3) !important;
}
.staff-details .staff-detail:nth-child(1) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(1) .staff-detail__video .recruit-btn:hover,
.staff-details .staff-detail:nth-child(2) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(2) .staff-detail__video .recruit-btn:hover {
  -webkit-box-shadow: 0 6px 20px rgba(136, 0, 37, 0.4) !important;
          box-shadow: 0 6px 20px rgba(136, 0, 37, 0.4) !important;
}
.staff-details .staff-detail:nth-child(1) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(1) .staff-detail__video .recruit-btn svg .cls-1,
.staff-details .staff-detail:nth-child(2) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(2) .staff-detail__video .recruit-btn svg .cls-1 {
  fill: #880025 !important;
}
.staff-details .staff-detail:nth-child(1) .staff-detail__profile,
.staff-details .staff-detail:nth-child(2) .staff-detail__profile {
  border-left-color: #880025 !important;
}
@media screen and (max-width: 500px) {
  .staff-details .staff-detail:nth-child(1) .staff-detail__profile,
  .staff-details .staff-detail:nth-child(2) .staff-detail__profile {
    border-top-color: #880025 !important;
  }
}
.staff-details .staff-detail:nth-child(3) .staff-detail__badge,
.staff-details .staff-detail:nth-child(4) .staff-detail__badge {
  background: linear-gradient(45deg, #221815, rgb(81.2909090909, 57.3818181818, 50.2090909091)) !important;
}
.staff-details .staff-detail:nth-child(3) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(3) .staff-detail__video .recruit-btn,
.staff-details .staff-detail:nth-child(4) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(4) .staff-detail__video .recruit-btn {
  background: linear-gradient(45deg, #221815, rgb(81.2909090909, 57.3818181818, 50.2090909091)) !important;
  -webkit-box-shadow: 0 4px 15px rgba(34, 24, 21, 0.3) !important;
          box-shadow: 0 4px 15px rgba(34, 24, 21, 0.3) !important;
}
.staff-details .staff-detail:nth-child(3) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(3) .staff-detail__video .recruit-btn:hover,
.staff-details .staff-detail:nth-child(4) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(4) .staff-detail__video .recruit-btn:hover {
  -webkit-box-shadow: 0 6px 20px rgba(34, 24, 21, 0.4) !important;
          box-shadow: 0 6px 20px rgba(34, 24, 21, 0.4) !important;
}
.staff-details .staff-detail:nth-child(3) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(3) .staff-detail__video .recruit-btn svg .cls-1,
.staff-details .staff-detail:nth-child(4) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(4) .staff-detail__video .recruit-btn svg .cls-1 {
  fill: #221815 !important;
}
.staff-details .staff-detail:nth-child(3) .staff-detail__profile,
.staff-details .staff-detail:nth-child(4) .staff-detail__profile {
  border-left-color: #221815 !important;
}
@media screen and (max-width: 500px) {
  .staff-details .staff-detail:nth-child(3) .staff-detail__profile,
  .staff-details .staff-detail:nth-child(4) .staff-detail__profile {
    border-top-color: #221815 !important;
  }
}
.staff-details .staff-detail:nth-child(5) .staff-detail__badge,
.staff-details .staff-detail:nth-child(6) .staff-detail__badge {
  background: linear-gradient(45deg, #e60012, rgb(255, 51.5, 67.4260869565)) !important;
}
.staff-details .staff-detail:nth-child(5) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(5) .staff-detail__video .recruit-btn,
.staff-details .staff-detail:nth-child(6) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(6) .staff-detail__video .recruit-btn {
  background: linear-gradient(45deg, #e60012, rgb(255, 51.5, 67.4260869565)) !important;
  -webkit-box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3) !important;
          box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3) !important;
}
.staff-details .staff-detail:nth-child(5) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(5) .staff-detail__video .recruit-btn:hover,
.staff-details .staff-detail:nth-child(6) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(6) .staff-detail__video .recruit-btn:hover {
  -webkit-box-shadow: 0 6px 20px rgba(230, 0, 18, 0.4) !important;
          box-shadow: 0 6px 20px rgba(230, 0, 18, 0.4) !important;
}
.staff-details .staff-detail:nth-child(5) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(5) .staff-detail__video .recruit-btn svg .cls-1,
.staff-details .staff-detail:nth-child(6) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(6) .staff-detail__video .recruit-btn svg .cls-1 {
  fill: #e60012 !important;
}
.staff-details .staff-detail:nth-child(5) .staff-detail__profile,
.staff-details .staff-detail:nth-child(6) .staff-detail__profile {
  border-left-color: #e60012 !important;
}
@media screen and (max-width: 500px) {
  .staff-details .staff-detail:nth-child(5) .staff-detail__profile,
  .staff-details .staff-detail:nth-child(6) .staff-detail__profile {
    border-top-color: #e60012 !important;
  }
}
.staff-details .staff-detail:nth-child(7) .staff-detail__badge,
.staff-details .staff-detail:nth-child(8) .staff-detail__badge {
  background: linear-gradient(45deg, #006057, rgb(0, 172.5, 156.328125)) !important;
}
.staff-details .staff-detail:nth-child(7) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(7) .staff-detail__video .recruit-btn,
.staff-details .staff-detail:nth-child(8) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(8) .staff-detail__video .recruit-btn {
  background: linear-gradient(45deg, #006057, rgb(0, 172.5, 156.328125)) !important;
  -webkit-box-shadow: 0 4px 15px rgba(0, 96, 87, 0.3) !important;
          box-shadow: 0 4px 15px rgba(0, 96, 87, 0.3) !important;
}
.staff-details .staff-detail:nth-child(7) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(7) .staff-detail__video .recruit-btn:hover,
.staff-details .staff-detail:nth-child(8) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(8) .staff-detail__video .recruit-btn:hover {
  -webkit-box-shadow: 0 6px 20px rgba(0, 96, 87, 0.4) !important;
          box-shadow: 0 6px 20px rgba(0, 96, 87, 0.4) !important;
}
.staff-details .staff-detail:nth-child(7) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(7) .staff-detail__video .recruit-btn svg .cls-1,
.staff-details .staff-detail:nth-child(8) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(8) .staff-detail__video .recruit-btn svg .cls-1 {
  fill: #006057 !important;
}
.staff-details .staff-detail:nth-child(7) .staff-detail__profile,
.staff-details .staff-detail:nth-child(8) .staff-detail__profile {
  border-left-color: #006057 !important;
}
@media screen and (max-width: 500px) {
  .staff-details .staff-detail:nth-child(7) .staff-detail__profile,
  .staff-details .staff-detail:nth-child(8) .staff-detail__profile {
    border-top-color: #006057 !important;
  }
}
.staff-details .staff-detail:nth-child(9) .staff-detail__badge {
  background: linear-gradient(45deg, #004823, rgb(0, 148.5, 72.1875)) !important;
}
.staff-details .staff-detail:nth-child(9) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(9) .staff-detail__video .recruit-btn {
  background: linear-gradient(45deg, #004823, rgb(0, 148.5, 72.1875)) !important;
  -webkit-box-shadow: 0 4px 15px rgba(0, 72, 35, 0.3) !important;
          box-shadow: 0 4px 15px rgba(0, 72, 35, 0.3) !important;
}
.staff-details .staff-detail:nth-child(9) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(9) .staff-detail__video .recruit-btn:hover {
  -webkit-box-shadow: 0 6px 20px rgba(0, 72, 35, 0.4) !important;
          box-shadow: 0 6px 20px rgba(0, 72, 35, 0.4) !important;
}
.staff-details .staff-detail:nth-child(9) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(9) .staff-detail__video .recruit-btn svg .cls-1 {
  fill: #004823 !important;
}
.staff-details .staff-detail:nth-child(9) .staff-detail__profile {
  border-left-color: #004823 !important;
}
@media screen and (max-width: 500px) {
  .staff-details .staff-detail:nth-child(9) .staff-detail__profile {
    border-top-color: #004823 !important;
  }
}
.staff-details .staff-detail:nth-child(10) .staff-detail__badge,
.staff-details .staff-detail:nth-child(11) .staff-detail__badge {
  background: linear-gradient(45deg, #fabe00, rgb(255, 210.96, 71.5)) !important;
}
.staff-details .staff-detail:nth-child(10) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(10) .staff-detail__video .recruit-btn,
.staff-details .staff-detail:nth-child(11) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(11) .staff-detail__video .recruit-btn {
  background: linear-gradient(45deg, #fabe00, rgb(255, 210.96, 71.5)) !important;
  -webkit-box-shadow: 0 4px 15px rgba(250, 190, 0, 0.3) !important;
          box-shadow: 0 4px 15px rgba(250, 190, 0, 0.3) !important;
}
.staff-details .staff-detail:nth-child(10) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(10) .staff-detail__video .recruit-btn:hover,
.staff-details .staff-detail:nth-child(11) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(11) .staff-detail__video .recruit-btn:hover {
  -webkit-box-shadow: 0 6px 20px rgba(250, 190, 0, 0.4) !important;
          box-shadow: 0 6px 20px rgba(250, 190, 0, 0.4) !important;
}
.staff-details .staff-detail:nth-child(10) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(10) .staff-detail__video .recruit-btn svg .cls-1,
.staff-details .staff-detail:nth-child(11) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(11) .staff-detail__video .recruit-btn svg .cls-1 {
  fill: #fabe00 !important;
}
.staff-details .staff-detail:nth-child(10) .staff-detail__profile,
.staff-details .staff-detail:nth-child(11) .staff-detail__profile {
  border-left-color: #fabe00 !important;
}
@media screen and (max-width: 500px) {
  .staff-details .staff-detail:nth-child(10) .staff-detail__profile,
  .staff-details .staff-detail:nth-child(11) .staff-detail__profile {
    border-top-color: #fabe00 !important;
  }
}
.staff-details .staff-detail:nth-child(n+12) .staff-detail__badge {
  background: linear-gradient(45deg, #e60012, rgb(255, 51.5, 67.4260869565)) !important;
}
.staff-details .staff-detail:nth-child(n+12) .staff-detail__video .movie-btn,
.staff-details .staff-detail:nth-child(n+12) .staff-detail__video .recruit-btn {
  background: linear-gradient(45deg, #e60012, rgb(255, 51.5, 67.4260869565)) !important;
  -webkit-box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3) !important;
          box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3) !important;
}
.staff-details .staff-detail:nth-child(n+12) .staff-detail__video .movie-btn:hover,
.staff-details .staff-detail:nth-child(n+12) .staff-detail__video .recruit-btn:hover {
  -webkit-box-shadow: 0 6px 20px rgba(230, 0, 18, 0.4) !important;
          box-shadow: 0 6px 20px rgba(230, 0, 18, 0.4) !important;
}
.staff-details .staff-detail:nth-child(n+12) .staff-detail__video .movie-btn svg .cls-1,
.staff-details .staff-detail:nth-child(n+12) .staff-detail__video .recruit-btn svg .cls-1 {
  fill: #e60012 !important;
}
.staff-details .staff-detail:nth-child(n+12) .staff-detail__profile {
  border-left-color: #e60012 !important;
}
@media screen and (max-width: 500px) {
  .staff-details .staff-detail:nth-child(n+12) .staff-detail__profile {
    border-top-color: #e60012 !important;
  }
}

.staff-detail {
  margin-bottom: 80px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  scroll-margin-top: 80px;
}
@media screen and (max-width: 500px) {
  .staff-detail {
    margin-bottom: 60px;
    padding: 0;
  }
}
.staff-detail__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
}
.staff-detail__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 600px) {
  .staff-detail__content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 500px) {
  .staff-detail__content {
    grid-template-columns: 1fr;
  }
}
.staff-detail__image-section {
  margin-top: 30px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.staff-detail__image-section .staff-detail__badge {
  position: absolute;
  top: -20px;
  left: -5%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(45deg, #880025, #ce083e);
}
@media screen and (min-width: 1400px) {
  .staff-detail__image-section .staff-detail__badge {
    width: 110px;
    height: 110px;
  }
}
@media screen and (max-width: 500px) {
  .staff-detail__image-section {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
.staff-detail__badge {
  position: absolute;
  font-size: clamp(25px, 3vw, 60px);
  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;
  font-weight: 900;
  color: white;
  z-index: 10;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.25rem;
}
@media screen and (min-width: 1400px) {
  .staff-detail__badge {
    font-size: clamp(30px, 2.5vw, 70px);
  }
}
@media screen and (max-width: 500px) {
  .staff-detail__badge {
    padding: 8px 20px;
    left: 20px;
  }
}
.staff-detail__image {
  position: relative;
  min-width: 500px;
  max-width: 500px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.staff-detail__image img {
  border-radius: 15% 0 15% 0/20% 0 20% 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 500px) {
  .staff-detail__image {
    margin: 0 auto;
    min-width: auto;
  }
}
.staff-detail:nth-child(even) .staff-detail__image-section {
  grid-auto-flow: row;
}
.staff-detail:nth-child(even) .staff-detail__image-section .staff-detail__catch-copy {
  margin-left: 0;
}
.staff-detail:nth-child(even) .staff-detail__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.staff-detail:nth-child(even) .staff-detail__info {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 500px) {
  .staff-detail:nth-child(even) .staff-detail__image,
  .staff-detail:nth-child(even) .staff-detail__info {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}
.staff-detail__profile {
  text-align: left;
  padding-left: 30px;
  border-left: 8px solid #221815;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 500px) {
  .staff-detail__profile {
    padding-left: 0;
    border-left: none;
    padding-top: 10px;
    border-top: 0px solid #221815 !important;
  }
}
.staff-detail__name {
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.staff-detail__name span {
  display: block;
  font-weight: 300;
  letter-spacing: 0.3rem;
  font-size: clamp(14px, 2vw, 18px);
}
@media screen and (max-width: 500px) {
  .staff-detail__name span {
    letter-spacing: 0.2rem;
  }
}
.staff-detail__name span:first-child {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  margin-bottom: 5px;
}
.staff-detail__company-job {
  margin: 30px 0;
  line-height: 1.5;
}
.staff-detail__company-job .company {
  font-weight: 500;
}
.staff-detail__company-job .job {
  color: #555;
}
@media screen and (max-width: 500px) {
  .staff-detail__company-job {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.staff-detail__catch-copy {
  margin-bottom: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.staff-detail__catch-copy .catch-ribbon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 18px 10px 20px;
  background: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px 0px;
          box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px 0px;
}
.staff-detail__catch-copy .catch-ribbon__text {
  font-size: clamp(16px, 2.3vw, 26px);
  line-height: 1.4;
  white-space: nowrap;
  color: #333;
}
@media screen and (max-width: 500px) {
  .staff-detail__catch-copy {
    gap: 6px;
    margin-left: 0;
    margin-top: 5%;
  }
  .staff-detail__catch-copy .catch-ribbon {
    padding: 8px 12px 8px 14px;
  }
  .staff-detail__catch-copy .catch-ribbon__text {
    font-size: 14px;
  }
  .staff-detail__catch-copy .catch-ribbon::after {
    right: -12px;
    width: 12px;
    height: calc(100% - 3px);
  }
}
.staff-detail__comment p {
  color: #555;
  margin: 0;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.7;
}
@media screen and (max-width: 500px) {
  .staff-detail__comment p {
    text-align: justify;
  }
}
@media screen and (max-width: 500px) {
  .staff-detail__comment {
    margin-bottom: 0px;
  }
}
.staff-detail__off-desc {
  line-height: 1.7;
  margin: 0;
  color: #555;
}
.staff-detail__video {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.staff-detail__video .movie-btn,
.staff-detail__video .recruit-btn {
  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: 20px;
  background: linear-gradient(45deg, #880025, #ce083e);
  color: white;
  border: none;
  padding: 5px 30px;
  border-radius: 30px;
  letter-spacing: 0.5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(136, 0, 37, 0.3);
          box-shadow: 0 4px 15px rgba(136, 0, 37, 0.3);
  position: relative;
  overflow: hidden;
}
.staff-detail__video .movie-btn::before,
.staff-detail__video .recruit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.staff-detail__video .movie-btn:hover,
.staff-detail__video .recruit-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(136, 0, 37, 0.4);
          box-shadow: 0 6px 20px rgba(136, 0, 37, 0.4);
}
.staff-detail__video .movie-btn:hover::before,
.staff-detail__video .recruit-btn:hover::before {
  left: 100%;
}
.staff-detail__video .movie-btn:active,
.staff-detail__video .recruit-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.staff-detail__video .movie-btn span,
.staff-detail__video .recruit-btn span {
  position: relative;
  z-index: 1;
}
.staff-detail__video .movie-btn svg,
.staff-detail__video .recruit-btn svg {
  background: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  padding: 0 0.2rem;
}
.staff-detail__video .movie-btn svg .cls-1,
.staff-detail__video .recruit-btn svg .cls-1 {
  fill: #880025;
}
@media screen and (max-width: 500px) {
  .staff-detail__video .movie-btn,
  .staff-detail__video .recruit-btn {
    padding: 8px 20px;
    gap: 10px;
  }
}
.staff-detail__video .recruit-btn {
  text-decoration: none;
  letter-spacing: 0.25rem;
}
@media screen and (max-width: 500px) {
  .staff-detail__video {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .staff-detail {
    scroll-margin-top: 60px;
  }
}

@media screen and (max-width: 500px) {
  .staff-interviews__inner {
    padding: 0 15px;
  }
  .staff-interviews__block-inner {
    padding: 30px 0;
  }
}
.staff-interviews__list.item {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.staff-interviews__list.item.appear {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.staff-interviews__list.item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.staff-interviews__list.item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.staff-interviews__list.item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.staff-interviews__list.item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.staff-interviews__list.item:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.staff-interviews__list.item:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.staff-interviews__list.item:nth-child(7) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.staff-interviews__list.item:nth-child(8) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.staff-interviews__list.item:nth-child(9) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.staff-interviews__list.item:nth-child(10) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.staff-interviews__list.item:nth-child(11) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.staff-interviews__list.item:nth-child(12) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.staff-detail__image-section {
  opacity: 0;
  -webkit-transform: translateY(40px) scale(0.98);
          transform: translateY(40px) scale(0.98);
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transition: opacity 0.85s ease, -webkit-transform 0.95s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s ease;
  transition: opacity 0.85s ease, -webkit-transform 0.95s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s ease;
  transition: opacity 0.85s ease, transform 0.95s cubic-bezier(0.19, 1, 0.22, 1), filter 1s ease;
  transition: opacity 0.85s ease, transform 0.95s cubic-bezier(0.19, 1, 0.22, 1), filter 1s ease, -webkit-transform 0.95s cubic-bezier(0.19, 1, 0.22, 1), -webkit-filter 1s ease;
  will-change: opacity, transform, filter;
}
.staff-detail__image-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .staff-detail__image-section {
    -webkit-transition: none;
    transition: none;
    -webkit-filter: none;
            filter: none;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

html {
  scroll-behavior: smooth;
}

body .worklife-balance {
  display: grid;
  gap: clamp(40px, 15vw, 150px);
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
  background: none;
}
body .worklife-balance__inner .section-titles {
  text-align: left !important;
  margin-bottom: 30px;
}
body .worklife-balance__title {
  line-height: 1;
  font-size: clamp(24px, 4vw, 45px) !important;
  font-weight: 300;
  padding-left: 20px;
  border-left: 10px solid #222222;
  letter-spacing: 0.5rem;
}
body .worklife-balance__img {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}
body .worklife-balance__block {
  display: grid;
  grid-template-columns: 2.7fr 7fr;
}
@media screen and (max-width: 500px) {
  body .worklife-balance__block {
    grid-template-columns: 1fr;
  }
}
body .worklife-balance__onetitle {
  width: 250px;
  height: auto;
}
body .worklife-balance__onetitle img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 500px) {
  body .worklife-balance__onetitle {
    width: auto;
    margin: 0 auto 0 0;
  }
}
body .worklife-balance__text {
  text-align: left !important;
}
body .worklife-balance__text h3 {
  font-size: clamp(18px, 3.5vw, 28px);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-top: 30px;
  margin-bottom: 10px;
}
body .worklife-balance__text p {
  font-size: clamp(14px, 2.5vw, 16px);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: justify;
}
body .worklife-balance__text .btn {
  display: table;
  margin-left: auto;
  background: #221815;
  font-size: clamp(17px, 3vw, 19px);
  padding: 0.5rem 1rem;
  border: none;
  -webkit-box-shadow: 6px 6px 8px 1px rgba(0, 0, 0, 0.5);
          box-shadow: 6px 6px 8px 1px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 500px) {
  body .worklife-balance__text .btn {
    padding: 0.1rem 2rem 0.1rem 1rem;
  }
}
body .worklife-balance__text .btn p {
  margin-bottom: 0;
}
body .worklife-balance__text .btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  color: #fff;
  font-weight: 400;
}
body .worklife-balance__text .btn span svg {
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0 0.1rem;
}
body .worklife-balance__text .btn span svg .cls-1 {
  fill: #221815;
}
body .worklife-balance__text .btn span::before {
  display: none;
  content: "none";
}
body .worklife-balance__text .btn:hover {
  background: #fff;
}
body .worklife-balance__text .btn:hover span {
  color: #221815;
}
body .worklife-balance__text .btn:hover span svg {
  background: #221815;
}
body .worklife-balance__text .btn:hover span svg .cls-1 {
  fill: #fff;
}
body .worklife-balance__club-activities {
  margin: 0 0 30px 0;
  padding: 20px 0;
  border-top: 2px solid #3e3e3e;
  border-bottom: 2px solid #3e3e3e;
}
body .worklife-balance__club-cards {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 30px;
  margin-bottom: 30px;
}
body .worklife-balance__club-card h3 {
  font-size: clamp(20px, 4vw, 36px);
}
body .worklife-balance__club-card .worklife-balance__img {
  margin: 20px 0;
}
body .worklife-balance__club-card .worklife-balance__img img {
  position: relative;
  z-index: 2;
}
body .worklife-balance__club-card .worklife-balance__img::after {
  content: "";
  background-image: url("../../../themes/kumamoto-toyora-theme/images/person_image1.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 30%;
  height: 80%;
  position: absolute;
  top: -80%;
  right: 0px;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  body .worklife-balance__club-card .worklife-balance__img::after {
    width: 15%;
    height: 40%;
    top: -40%;
  }
}
body .worklife-balance__club-card .worklife-balance__img.backnone::after {
  display: none;
}
body .worklife-balance__club-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body .worklife-balance__club-card ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  body .worklife-balance__club-card ul li {
    margin-bottom: 5px;
  }
}
body .worklife-balance__club-card ul li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 500px) {
  body .worklife-balance__club-card ul li img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
}
body .worklife-balance__club-card .btn {
  margin-top: 20px;
  background: #221815;
  font-size: clamp(17px, 3vw, 19px);
  padding: 0.5rem 1rem;
  border: none;
  -webkit-box-shadow: 6px 6px 8px 1px rgba(0, 0, 0, 0.5);
          box-shadow: 6px 6px 8px 1px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 500px) {
  body .worklife-balance__club-card .btn {
    padding: 0.1rem 2rem 0.1rem 1rem;
  }
}
body .worklife-balance__club-card .btn p {
  margin-bottom: 0;
}
body .worklife-balance__club-card .btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  color: #fff;
  font-weight: 400;
}
body .worklife-balance__club-card .btn span svg {
  background: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0 0.1rem;
}
body .worklife-balance__club-card .btn span svg .cls-1 {
  fill: #221815;
}
body .worklife-balance__club-card .btn span::before {
  display: none;
  content: "none";
}
body .worklife-balance__club-card .btn:hover {
  background: #fff;
}
body .worklife-balance__club-card .btn:hover span {
  color: #221815;
}
body .worklife-balance__club-card .btn:hover span svg {
  background: #221815;
}
body .worklife-balance__club-card .btn:hover span svg .cls-1 {
  fill: #fff;
}

body[data-page=recruit-info] .project-content {
  padding: 0 !important;
}
body[data-page=recruit-info] .project-content__desc {
  margin: 0 !important;
}
body[data-page=recruit-info] .project-content__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body[data-page=recruit-info] .hero-swiper {
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 60px 0;
}
@media screen and (max-width: 500px) {
  body[data-page=recruit-info] .hero-swiper {
    margin: 0 auto;
    width: 90%;
  }
}
body[data-page=recruit-info] .hero-swiper .hero-swiper__container {
  margin: 0;
}
body[data-page=recruit-info] .hero-swiper .hero-swiper__container .hero-people {
  margin: 0;
}
body[data-page=recruit-info] .recruit-people__text {
  text-align: center;
}
body[data-page=recruit-info] .recruit-people__text h2 {
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-size: clamp(18px, 3.5vw, 28px);
  margin-bottom: 20px;
  font-weight: 500;
}
body[data-page=recruit-info] .recruit-people__text p {
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #555555;
  text-align: center;
}
@media screen and (max-width: 500px) {
  body[data-page=recruit-info] .recruit-people__text p {
    text-align: justify;
  }
  body[data-page=recruit-info] .recruit-people__text p .br-sp {
    display: none;
  }
}
body[data-page=recruit-info] .recruit-orbit {
  display: block;
  margin: 0 auto;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit--recruit {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1/1;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit__center {
  position: relative;
  z-index: -1;
  width: 55%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit__center img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit__spinner {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  z-index: 2;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit__spinner img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit__dot-bg {
  position: absolute;
  inset: 0;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  z-index: 1;
  opacity: 0;
  -webkit-animation: dotbg-in 0.9s ease-out 0.4s forwards, dotbg-float 2s ease-in-out 1.2s infinite alternate;
          animation: dotbg-in 0.9s ease-out 0.4s forwards, dotbg-float 2s ease-in-out 1.2s infinite alternate;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit__dot-bg img {
  width: 65%;
  height: auto;
  -webkit-animation: dotbg-spin 16s linear infinite;
          animation: dotbg-spin 16s linear infinite;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit__ring {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit__ring.is-rotating {
  -webkit-animation: recruit-orbit-spin 26s linear infinite;
          animation: recruit-orbit-spin 26s linear infinite;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit__item {
  position: absolute;
  z-index: 3;
  max-width: 180px;
  width: 22%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
body[data-page=recruit-info] .recruit-orbit .logo-orbit__item.is-visible {
  opacity: 1;
  -webkit-transform: translate(var(--orbit-x, 0), var(--orbit-y, 0));
          transform: translate(var(--orbit-x, 0), var(--orbit-y, 0));
}
@media screen and (max-width: 500px) {
  body[data-page=recruit-info] .recruit-orbit .logo-orbit__item {
    max-width: 60px;
  }
}
@media (prefers-reduced-motion: reduce) {
  body[data-page=recruit-info] .recruit-orbit .logo-orbit__dot-bg {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
  }
  body[data-page=recruit-info] .recruit-orbit .logo-orbit__dot-bg img {
    -webkit-animation: none;
            animation: none;
  }
  body[data-page=recruit-info] .recruit-orbit .logo-orbit__ring {
    -webkit-animation: none;
            animation: none;
  }
  body[data-page=recruit-info] .recruit-orbit .logo-orbit__item img {
    -webkit-animation: none;
            animation: none;
  }
  body[data-page=recruit-info] .recruit-orbit .logo-orbit__spinner {
    -webkit-animation: none;
            animation: none;
  }
}
body[data-page=recruit-info] .job-info-block__title h3 {
  font-weight: 700;
  line-height: 1;
  text-shadow: none;
}
body[data-page=recruit-info] .job-info-block__title h3 span {
  display: inline-block;
  line-height: 1;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(1) {
  color: #880025;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(2) {
  color: #221815;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(3) {
  color: #006057;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(4) {
  color: #e60012;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(5) {
  color: #004823;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(6) {
  color: #fabe00;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(7) {
  color: #880025;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(8) {
  color: #221815;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(9) {
  color: #006057;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(10) {
  color: #e60012;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(11) {
  color: #004823;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(12) {
  color: #fabe00;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(13) {
  color: #880025;
}
body[data-page=recruit-info] .job-info-block__title h3 span:nth-child(14) {
  color: #221815;
}
body[data-page=recruit-info] .job-info-block .staff-img3::after {
  display: none;
}
body[data-page=recruit-info] .job-info-block__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body[data-page=recruit-info] .job-info-block__box {
  margin-bottom: 0px;
}
body[data-page=recruit-info] .job-info-block__link {
  background: #fafafa;
  border-top: 1px dashed #535353 !important;
  border: none;
  padding: 50px 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}
body[data-page=recruit-info] .job-info-block__link:hover {
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 500px) {
  body[data-page=recruit-info] .job-info-block__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body[data-page=recruit-info] .job-info-block__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 500px) {
  body[data-page=recruit-info] .job-info-block__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body[data-page=recruit-info] .job-info-block__company-img {
  padding-top: 0 !important;
}
body[data-page=recruit-info] .job-info-block__company-img .company-img__img-el {
  display: block;
  width: 100%;
  height: auto;
}
body[data-page=recruit-info] .job-info-block__right {
  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;
  padding: 2%;
}
body[data-page=recruit-info] .job-info-block__left {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
body[data-page=recruit-info] .job-info-block__left > img {
  height: auto;
}
body[data-page=recruit-info] .job-info-block__logo img {
  display: block;
  margin: 0 auto 0 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
body[data-page=recruit-info] .job-info-block__copy h4 {
  font-size: clamp(16px, 3vw, 25px);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.2rem;
}
body[data-page=recruit-info] .job-info-block__desc {
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 300;
}
body[data-page=recruit-info] .job-info-block__desc p {
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
}
body[data-page=recruit-info] .job-info-block .btn {
  display: table;
  background: #221815;
  font-size: clamp(17px, 3vw, 19px);
  padding: 0.5rem 1rem;
  border: none;
  -webkit-box-shadow: 6px 6px 8px 1px rgba(0, 0, 0, 0.5);
          box-shadow: 6px 6px 8px 1px rgba(0, 0, 0, 0.5);
  max-width: 260px;
}
@media screen and (max-width: 500px) {
  body[data-page=recruit-info] .job-info-block .btn {
    padding: 0.1rem 2rem 0.1rem 1rem;
    margin: 0 auto;
  }
}
body[data-page=recruit-info] .job-info-block .btn p {
  margin-bottom: 0;
}
body[data-page=recruit-info] .job-info-block .btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  color: white;
  font-weight: 400;
}
body[data-page=recruit-info] .job-info-block .btn span svg {
  background: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0 0.1rem;
}
body[data-page=recruit-info] .job-info-block .btn span svg .cls-1 {
  fill: #221815;
}
body[data-page=recruit-info] .job-info-block .btn span::before {
  display: none;
  content: "none";
}
body[data-page=recruit-info] .job-info-block .btn:hover {
  background: white;
}
body[data-page=recruit-info] .job-info-block .btn:hover span {
  color: #221815;
}
body[data-page=recruit-info] .job-info-block .btn:hover span svg {
  background: #221815;
}
body[data-page=recruit-info] .job-info-block .btn:hover span svg .cls-1 {
  fill: white;
}
body[data-page=recruit-info] .job-info-block .btn--kumatoyo {
  background: #880025 !important;
}
body[data-page=recruit-info] .job-info-block .btn--kumatoyo span .cls-1 {
  fill: #880025 !important;
}
body[data-page=recruit-info] .job-info-block .btn--kumatoyo:hover {
  background: white !important;
}
body[data-page=recruit-info] .job-info-block .btn--kumatoyo:hover span {
  color: #880025 !important;
}
body[data-page=recruit-info] .job-info-block .btn--kumatoyo:hover span svg {
  background: #880025 !important;
}
body[data-page=recruit-info] .job-info-block .btn--kumatoyo:hover span svg .cls-1 {
  fill: white !important;
}
body[data-page=recruit-info] .job-info-block .btn--lf {
  background: #e60012 !important;
}
body[data-page=recruit-info] .job-info-block .btn--lf span .cls-1 {
  fill: #e60012 !important;
}
body[data-page=recruit-info] .job-info-block .btn--lf:hover {
  background: white !important;
}
body[data-page=recruit-info] .job-info-block .btn--lf:hover span {
  color: #e60012 !important;
}
body[data-page=recruit-info] .job-info-block .btn--lf:hover span svg {
  background: #e60012 !important;
}
body[data-page=recruit-info] .job-info-block .btn--lf:hover span svg .cls-1 {
  fill: white !important;
}
body[data-page=recruit-info] .job-info-block .btn--oita {
  background: #006057 !important;
}
body[data-page=recruit-info] .job-info-block .btn--oita span .cls-1 {
  fill: #006057 !important;
}
body[data-page=recruit-info] .job-info-block .btn--oita:hover {
  background: white !important;
}
body[data-page=recruit-info] .job-info-block .btn--oita:hover span {
  color: #006057 !important;
}
body[data-page=recruit-info] .job-info-block .btn--oita:hover span svg {
  background: #006057 !important;
}
body[data-page=recruit-info] .job-info-block .btn--oita:hover span svg .cls-1 {
  fill: white !important;
}
body[data-page=recruit-info] .job-info-block .btn--weltown {
  background: #004823 !important;
}
body[data-page=recruit-info] .job-info-block .btn--weltown span .cls-1 {
  fill: #004823 !important;
}
body[data-page=recruit-info] .job-info-block .btn--weltown:hover {
  background: white !important;
}
body[data-page=recruit-info] .job-info-block .btn--weltown:hover span {
  color: #004823 !important;
}
body[data-page=recruit-info] .job-info-block .btn--weltown:hover span svg {
  background: #004823 !important;
}
body[data-page=recruit-info] .job-info-block .btn--weltown:hover span svg .cls-1 {
  fill: white !important;
}
body[data-page=recruit-info] .job-info-block .btn--jms {
  background: #fabe00 !important;
}
body[data-page=recruit-info] .job-info-block .btn--jms span {
  color: #221815;
}
body[data-page=recruit-info] .job-info-block .btn--jms span .cls-1 {
  fill: #221815 !important;
}
body[data-page=recruit-info] .job-info-block .btn--jms:hover {
  background: white !important;
}
body[data-page=recruit-info] .job-info-block .btn--jms:hover span {
  color: #fabe00 !important;
}
body[data-page=recruit-info] .job-info-block .btn--jms:hover span svg {
  background: #fabe00 !important;
}
body[data-page=recruit-info] .job-info-block .btn--jms:hover span svg .cls-1 {
  fill: white !important;
}

@-webkit-keyframes recruit-orbit-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes recruit-orbit-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes recruit-orbit-counter {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes recruit-orbit-counter {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}/*# sourceMappingURL=style.css.map */