/* ===================================
   Careers Section (TOP page) - New Design
   =================================== */
.top-careers-new {
  position: relative;
  width: 100%;
  min-height: 540px;
  margin-bottom: 100px;
  overflow: hidden;
  background: linear-gradient(201.58deg, #2e2e97 39.37%, #ff0061 99.16%);
}

.careers-hero-image {
  position: absolute;
  top: 0;
  right: 85px;
  width: 582px;
  height: 324px;
  z-index: 2;
  overflow: visible;
}

.careers-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(12% 0, 97% 0%, 85% 100%, 0% 100%);
}

.top-careers-new .inner {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 30px 60px 0;
  z-index: 3;
}

.careers-header {
  margin-bottom: 4px;
}

.careers-title-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}

.careers-title-en {
  font-family: 'Futura', 'Trebuchet MS', sans-serif;
  font-weight: 500;
  font-size: 35px;
  letter-spacing: -0.7px;
  color: #fff;
}

.careers-title-jp {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.careers-heading {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 60px;
  color: #fff;
  margin: 0 0 30px 0;
}

.careers-subheading {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  margin: 0 0 25px 0;
}

.careers-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid #fff;
  border-radius: 6px;
  background: transparent;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.careers-btn-arrow {
  width: 7px;
  height: 10px;
}

.careers-btn span {
  font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}

.careers-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.careers-cards {
  display: flex;
  gap: 10px;
  padding-top: 60px;
  padding-bottom: 50px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  margin-right: calc(-50vw + 50%);
  padding-right: calc(50vw - 50%);
}

.careers-cards::-webkit-scrollbar {
  display: none;
}

.careers-card {
  position: relative;
  flex-shrink: 0;
  width: 390px;
  height: 166px;
  display: flex;
  background-color: transparent;
  margin-right: 0;
  overflow: visible;
  z-index: 1;
}

.careers-card-image {
  width: 130px;
  height: 166.7px;
  flex-shrink: 0;
  border-radius: 6px 0 0 6px;
  overflow: hidden;
  z-index: 3;
}

.careers-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.careers-card-content {
  flex: 1;
  padding: 20px 20px 20px 15px;
  background-color: #fff;
  border-radius: 0 6px 6px 0;
  position: relative;
  z-index: 2;
}

.careers-card-name {
  font-family: "A P-OTF Gothic MB101 Pr6N", 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #000;
  margin: 0 0 5px 0;
}

.careers-card-role {
  font-family: "A P-OTF Gothic MB101 Pr6N", 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #000;
  margin: 0 0 10px 0;
}

.careers-card-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #312d96 0%, #ff0061 100%);
  margin-bottom: 10px;
}

.careers-card-date {
  font-family: "A P-OTF Gothic MB101 Pr6N", 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin: 0;
}

.careers-card-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #ff0061 transparent;
  border-radius: 0 0 6px 0;
  z-index: 4;
}

.careers-card-arrow {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 5;
}

.careers-card-arrow svg {
  width: 18px;
  height: 18px;
}

.careers-card-arrow svg path {
  stroke: #fff;
}

.careers-pagination {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #312d96;
  padding: 10px 20px;
  border-top-left-radius: 6px;
  z-index: 10;
}

.careers-pagination-dots {
  display: flex;
  gap: 8px;
}

.careers-pagination-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.careers-pagination-dots .dot.active {
  background-color: #fff;
}

.careers-pagination-prev,
.careers-pagination-next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.careers-pagination-prev:hover,
.careers-pagination-next:hover {
  opacity: 1;
}

/* Careers Section Responsive */
@media screen and (max-width: 1200px) {
  .careers-card {
    width: 340px;
  }

  .careers-card-image {
    width: 110px;
  }

  .careers-heading {
    font-size: 48px;
  }
}

@media screen and (max-width: 768px) {
  .top-careers-new {
    min-height: auto;
  }

  .careers-hero-image {
    display: none;
  }

  .top-careers-new .inner {
    padding: 30px 20px;
  }

  .careers-heading {
    font-size: 36px;
  }

  .careers-subheading {
    font-size: 16px;
  }

  .careers-cards {
    flex-direction: column;
    gap: 15px;
    padding-bottom: 60px;
  }

  .careers-card {
    width: 100%;
    margin-right: 0;
  }

  .careers-pagination {
    width: 100%;
    justify-content: center;
    border-radius: 0;
  }
}

@media screen and (max-width: 480px) {
  .top-careers-new {
    min-height: 460px;
    background: linear-gradient(201.58deg, #2e2e97 39.37%, #ff0061 99.16%);
    overflow: visible;
  }

  .careers-hero-image {
    display: none;
  }

  .top-careers-new .inner {
    padding: 30px 17px 0 17px;
    overflow: visible;
  }

  .careers-header {
    margin-bottom: 0;
  }

  .careers-title-row {
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    gap: 0;
    margin-bottom: 15px;
  }

  .careers-title-en {
    font-size: 24px;
    grid-column: 1;
    grid-row: 1;
    letter-spacing: -0.48px;
  }

  .careers-title-jp {
    font-size: 10px;
    grid-column: 1;
    grid-row: 1;
    margin-left: 115px;
    margin-top: 12px;
  }

  .careers-heading {
    font-size: 34px;
    margin: 0 0 25px 0;
  }

  .careers-subheading {
    font-size: 20px;
    margin: 0 0 25px 0;
  }

  .careers-btn {
    margin-left: 0px;
    padding: 8px 20px;
  }

  .careers-btn span {
    font-size: 16px;
  }

  /* Show slider cards on mobile, swipeable */
  .careers-cards {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-top: 30px;
    padding-bottom: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-right: 17px;
  }

  .careers-card {
    scroll-snap-align: start;
    width: 320px;
    min-width: 320px;
    flex-shrink: 0;
  }

  /* Hide pagination arrows on mobile */
  .careers-pagination {
    display: none;
  }
}

/* Responsive Slider */
@media screen and (max-width: 1024px) {
  .hero-slider {
    max-height: 500px;
  }
  
  .slide-title {
    font-size: 32px;
  }
  
  .slide-title-lg {
    font-size: 50px;
  }
  
  .slide-logo {
    width: 100px;
  }
  
  .slide-button {
    font-size: 14px;
    padding: 12px 30px;
  }

  /* Slide 1 responsive */
  .slide-1-logo-mask {
    top: -8px;
    left: -25px;
    width: 300px;
    height: 120px;
    border-radius: 20px;
  }

  .slide-1-logo-wrapper {
    top: 25px;
    left: 18px;
  }

  .slide-1-logo {
    width: 80px;
    height: 72px;
  }

  .slide-1-logo-blur {
    width: 130px;
    height: 155px;
  }

  /* Slide 2 responsive */
  .slide-2-left {
    width: 50%;
  }
  
  .slide-2-right {
    width: 50%;
  }
  
  .slide-2-title {
    font-size: 40px;
    line-height: 50px;
  }
  
  .slide-2-button {
    width: 320px;
    height: 70px;
  }
  
  .slide-2-button span {
    font-size: 22px;
  }

  /* Slide 4 responsive */
  .slide-4-title {
    font-size: 56px;
    line-height: 50px;
    letter-spacing: 3.5px;
    left: 55px;
  }

  /* News section responsive */
  .top-news .inner {
    padding: 0 40px;
  }
  
  .news-title-en {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .hero-slider {
    max-height: 400px;
    min-height: 300px;
  }
  
  .slide-overlay {
    padding: 20px 30px;
  }
  
  .slide-logo {
    width: 80px;
  }
  
  .slide-title {
    font-size: 24px;
  }
  
  .slide-title-lg {
    font-size: 36px;
  }
  
  .slide-subtitle {
    font-size: 16px;
    margin-top: 10px;
  }
  
  .slide-button {
    font-size: 13px;
    padding: 10px 25px;
    margin-top: 15px;
  }
  
  .slider-pagination {
    padding: 12px 20px;
  }

  /* Slide 1 responsive */
  .slide-1-logo-mask {
    top: -5px;
    left: -20px;
    width: 200px;
    height: 100px;
    border-radius: 16px;
  }

  .slide-1-logo-wrapper {
    top: 20px;
    left: 15px;
  }

  .slide-1-logo {
    width: 70px;
    height: 63px;
  }

  .slide-1-logo-blur {
    width: 165px;
    height: 109px;
    filter: blur(10px);
  }

  /* Slide 2 responsive */
  .slide-2-left {
    width: 55%;
  }
  
  .slide-2-right {
    width: 45%;
  }
  
  .slide-2-logo-wrapper {
    top: 20px;
    left: 15px;
  }
  
  .slide-2-logo {
    width: 70px;
    height: 63px;
  }
  
  .slide-2-logo-blur {
    width: 120px;
    height: 140px;
    filter: blur(10px);
  }
  
  .slide-2-content {
    left: 30px;
  }
  
  .slide-2-title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
  }
  
  .slide-2-button {
    width: 260px;
    height: 60px;
    gap: 15px;
  }
  
  .slide-2-button span {
    font-size: 18px;
  }

  /* Slide 4 responsive */
  .slide-4-title {
    font-size: 42px;
    line-height: 40px;
    letter-spacing: 2.5px;
    left: 40px;
  }

  /* News section responsive */
  .top-news {
    padding: 30px 0 40px;
  }
  
  .top-news .inner {
    padding: 0 20px;
  }
  
  .top-news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .news-title-en {
    font-size: 28px;
  }
  
  .news-title-jp {
    font-size: 14px;
  }
  
  .top-news-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 15px;
  }
  
  .news-title {
    font-size: 16px;
    line-height: 26px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

@media screen and (max-width: 480px) {
  .hero-slider {
    height: calc(100vw * 0.48);
    min-height: auto;
    max-height: none;
    margin-top: 52px;
    overflow: hidden;
  }

  /* Force all slides to absolute — override .slide-1 position:relative */
  .slide,
  .slide-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .slide picture,
  .slide picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Slide 1 (SVG) — fill to match container exactly, no gaps */
  .slide[data-slide="1"] picture img,
  .slide-1-bg {
    object-fit: fill !important;
  }

  /* Slide 4 (SVG) — cover to fill without gaps */
  .slide-4-bg {
    object-fit: cover;
    object-position: 25% center;
  }

  .slide-1-logo-mask {
    top: -5px;
    left: -15px;
    width: 140px;
    height: 70px;
    border-radius: 12px;
  }

  .slide-1-logo-wrapper {
    top: 12px;
    left: 10px;
  }

  .slide-1-logo {
    width: 50px;
    height: 45px;
  }

  .slide-1-logo-blur {
    width: 165px;
    height: 75px;
    filter: blur(8px);
  }

  /* Slide 2 — overlay text on full-width image */
  .slide-2-layout {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .slide-2-right {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .slide-2-gradient {
    display: none;
  }

  .slide-2-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0) 100%);
    z-index: 2;
  }

  .slide-2-logo-wrapper,
  .slide-2-logo,
  .slide-2-logo-blur {
    display: none;
  }

  .slide-2-content {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    right: auto;
    bottom: auto;
  }

  .slide-2-title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
    color: #061840;
  }

  .slide-2-button {
    width: 180px;
    height: 45px;
    gap: 10px;
  }

  .slide-2-button span {
    font-size: 14px;
  }

  /* Slide 3 — scale down text */
  .slide-overlay {
    padding: 15px 20px;
  }

  .slide-title-lg {
    font-size: 24px;
    line-height: 1.3;
  }

  /* Slide 4 — scale down logo/text */
  .slide-4-title {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 1.5px;
    left: 20px;
    bottom: 20px;
  }

  /* News section responsive */
  .top-news {
    padding: 26px 0 35px;
    background: #fff;
  }
  
  .top-news .inner {
    padding: 0 20px;
  }
  
  .top-news-header {
    margin-bottom: 26px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .top-news-title {
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    align-items: start;
  }
  
  .news-title-en {
    font-size: 24px;
    grid-column: 1;
    grid-row: 1;
    letter-spacing: -0.48px;
    width: 79px;
  }
  
  .news-title-jp {
    font-size: 10px;
    grid-column: 1;
    grid-row: 1;
    margin-left: 79px;
    margin-top: 8px;
    color: #8b8b8b;
    letter-spacing: 0.6px;
  }
  
  .top-news-more {
    width: 75px;
    height: 25px;
    padding: 0;
    gap: 2px;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(264deg, #ff0061 44%, #452b92 114%) border-box;
    border: 1px solid transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .top-news-more span {
    font-size: 9px;
    color: #151515;
    order: 2;
  }
  
  .news-more-arrow {
    width: 16px;
    height: 12px;
    order: 1;
    transform: rotate(0deg);
  }
  
  .news-more-arrow path {
    fill: #231E1F;
  }
  
  .top-news-item {
    height: 63px;
    border-bottom: 0.4px solid #8b8b8b;
  }
  
  .top-news-item a {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  
  .news-date {
    font-size: 9px;
    color: #8b8b8b;
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .news-title {
    font-size: 13px;
    line-height: 20px;
    color: #151515;
    margin-left: calc(50% - 98px);
    width: 264px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ====================================
   PEOPLE Section
   ==================================== */
.careers-people {
    position: relative;
    margin-top: 100px;
    padding: 0 60px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.careers-people__title {
    font-family: 'Futura', sans-serif;
    font-weight: 500;
    font-size: 35px;
    background: linear-gradient(90deg, #452b92 0%, #f00466 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 75px;
    margin: 0 0 19px 0;
}

.careers-people__slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    margin-right: calc(-50vw + 50%);
    padding-right: calc(50vw - 50%);
}

.careers-people__slider::-webkit-scrollbar {
    display: none;
}

/* People Card - Exactly same as Top Page */
.people-card {
    position: relative;
    flex-shrink: 0;
    width: 390px;
    height: 166px;
    display: flex;
    background-color: transparent;
    margin-right: 0;
    overflow: visible;
    z-index: 1;
}

.people-card__link {
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.people-card__image {
    width: 130px;
    height: 166.7px;
    flex-shrink: 0;
    border-radius: 6px 0 0 6px;
    overflow: hidden;
    z-index: 3;
}

.people-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.people-card__content {
    flex: 1;
    padding: 20px 20px 20px 15px;
    background-color: #fff;
    border-radius: 0 6px 6px 0;
    position: relative;
    z-index: 2;
}

.people-card__name {
    font-family: "A P-OTF Gothic MB101 Pr6N", 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin: 0 0 5px 0;
}

.people-card__role {
    font-family: "A P-OTF Gothic MB101 Pr6N", 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #000;
    margin: 0 0 10px 0;
}

.people-card__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #312d96 0%, #ff0061 100%);
    margin-bottom: 10px;
}

.people-card__date {
    font-family: "A P-OTF Gothic MB101 Pr6N", 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin: 0;
}

.people-card__corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50px 50px;
    border-color: transparent transparent #ff0061 transparent;
    border-radius: 0 0 6px 0;
    z-index: 4;
}

.people-card__arrow {
    position: absolute;
    bottom: 7px;
    right: 4px;
    z-index: 5;
}

.people-card__arrow svg {
    width: 28px;
    height: 28px;
}

.people-card__arrow svg path {
    fill: #fff;
}

/* People Slider Navigation - Circular Gradient Border Buttons */
.people-slider-nav {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-top: 20px;
    justify-content: flex-end;
}

.people-slider-nav__btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #452b92 0%, #ff0061 100%);
    padding: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.people-slider-nav__btn:hover {
    transform: scale(1.05);
}

.people-slider-nav__btn-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.people-slider-nav__btn svg {
    width: 24px;
    height: 24px;
}

.people-slider-nav__btn--prev svg {
    transform: rotate(90deg);
}

.people-slider-nav__btn--next svg {
    transform: rotate(-90deg);
}

/* People More Button (hidden on desktop, shown on mobile) */
.people-more-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 160px;
    height: 40px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(264deg, #ff0061 44%, #452b92 114%) border-box;
    border: 1px solid transparent;
    transition: background 0.3s ease, color 0.3s ease;
    margin-top: 30px;
}

.people-more-btn span {
    font-family: 'Hiragino Kaku Gothic Pro', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #231E1F;
}

.people-more-arrow {
    width: 33px;
    height: 24px;
}

.people-more-btn:hover {
    background: linear-gradient(90deg, #312d96 0%, #fd0162 100%);
}

.people-more-btn:hover span {
    color: #fff;
}

.people-more-btn:hover .people-more-arrow path {
    fill: #fff;
}

/* ====================================
   CULTURE Section
   ==================================== */
.careers-culture {
    margin-top: 110px;
    padding: 0 60px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.careers-culture__title {
    font-family: 'Futura', sans-serif;
    font-weight: 500;
    font-size: 35px;
    background: linear-gradient(90deg, #452b92 0%, #f00466 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: normal;
    margin: 0 0 40px 0;
}

.careers-culture__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.careers-culture__row {
    display: flex;
    gap: 102px;
    justify-content: flex-start;
}

.careers-culture__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 313px;
    text-align: center;
}

.careers-culture__icon {
    width: 136px;
    height: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-culture__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.careers-culture__item-title {
    font-family: 'A-OTF Gothic MB101 Pr6N', 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #212633;
    margin: 0;
}

.careers-culture__item-desc {
    font-family: 'A-OTF Gothic MB101 Pr6N', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #212633;
    margin: 0;
}

/* ====================================
   SP (≤767px) — People Section
   These must live here (after the base styles) so they win the cascade,
   since people-common.css loads after careers.css on careers page.
   ==================================== */
@media (max-width: 767px) {
    .careers-people {
      padding: 0 20px;
    }
    /* Disable horizontal slider layout */
    .careers-people__slider {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: visible;
        gap: 15px;
        padding-bottom: 0;
        margin-right: 0;
        padding-right: 0;
    }

    /* Full-width cards, no shrink/grow interference */
    .people-card {
        width: 100%;
        height: 130px;
        flex-shrink: 1;
    }

    /* Show only first 3 cards; hide clones entirely */
    .people-card:nth-child(n+4),
    .people-card-clone {
        display: none;
    }

    .people-card__image {
        width: 100px;
        height: 130px;
    }

    .people-card__content {
        padding: 15px;
    }

    .people-card__name {
        font-size: 16px;
    }

    .people-card__role {
        font-size: 10px;
    }

    .people-card__date {
        font-size: 12px;
        line-height: 18px;
    }

    .people-card__corner {
        border-width: 0 0 40px 40px;
    }

    .people-card__arrow {
        bottom: 6px;
        right: 6px;
    }

    .people-card__arrow svg {
        width: 14px;
        height: 14px;
    }

    /* Hide slider nav arrows */
    .people-slider-nav {
        display: none;
    }

    /* Show もっと見る button */
    .people-more-btn {
        display: flex;
        margin-left: auto;
        margin-right: 0;
    }

    /* CULTURE Section — stack items vertically, centered */
    .careers-culture {
        padding: 0 16px;
    }

    .careers-culture__row {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .careers-culture__item {
        width: 100%;
        align-items: center;
    }

    .careers-culture__icon {
        width: 100px;
        height: 100px;
    }

    .careers-culture__item-title {
        font-size: 18px;
    }

    .careers-culture__item-desc {
        font-size: 14px;
        line-height: 24px;
    }
}