:root {
  --blue: #9bf0ff;
  --blue-deep: #64e3f0;
  --ink: #050505;
  --muted: #4d4d4d;
  --paper: #fff;
  --grid: rgb(204 204 204 / 30%);
  --font-en: "Inter", "Arial", sans-serif;
  --font-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --layout-w: min(100vw, 1440px);
  --side: clamp(28px, calc(var(--layout-w) * .075), 140px);
  --indent-6: clamp(48px, calc(var(--layout-w) * .06), 130px);
  --indent-65: clamp(48px, calc(var(--layout-w) * .065), 130px);
  --section-y: 100px;
  --header-h: 100px;
  --hero-pc-height: calc(100vw * 630 / 1440);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(to right, var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
  background-size: 20px 20px;
  font-family: var(--font-jp);
  font-weight: 500;
  letter-spacing: .02em;
}

img {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.u-sp-br {
  display: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, calc(var(--layout-w) * 4 / 100), 70px);
  height: var(--header-h);
  padding: 0 24px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--grid);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(132px, calc(var(--layout-w) * 12 / 100), 170px);
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, calc(var(--layout-w) * 4.5 / 100), 70px);
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1.2;
}

.global-nav__link {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: var(--header-h);
  padding-top: 31px;
}

.global-nav__link::after {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  height: 8px;
  background: var(--blue);
  content: "";
  opacity: 0;
}

.global-nav__link.is-current::after,
.global-nav__link:hover::after {
  opacity: 1;
}

.nav-toggle {
  display: none;
}

@media (max-width: 1280px) and (min-width: 1001px) {
  .brand img {
    width: 150px;
  }

  .global-nav {
    gap: clamp(24px, calc(var(--layout-w) * 3.4 / 100), 44px);
    font-size: 14px;
    letter-spacing: .14em;
  }
}

.hero {
  position: relative;
  padding-top: calc(100vw * 60 / 1440);
}

.hero__slider {
  position: relative;
  height: var(--hero-pc-height);
  min-height: 0;
  overflow: hidden;
}

.hero__slider--sp {
  display: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(5%);
  transition:
    opacity 900ms ease,
    transform 1400ms cubic-bezier(.16, .86, .23, 1);
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
}

.hero__grid {
  display: grid;
  grid-template-columns: 39% 61%;
  grid-template-rows: 55.65% 44.35%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  --hero-photo-shift-x: 0px;
  --hero-photo-shift-y: 0px;
  --hero-photo-scale: 1.005;
  transform: translate(var(--hero-photo-shift-x), var(--hero-photo-shift-y)) scale(var(--hero-photo-scale));
  transition: transform 5200ms ease;
}

.hero__slide.is-active .hero__photo {
  transform: translate(var(--hero-photo-shift-x), var(--hero-photo-shift-y)) scale(var(--hero-photo-scale));
}

.hero__sp-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 5200ms ease;
}

.hero__slide.is-active .hero__sp-photo {
  transform: scale(1.015);
}

.hero__photo--a {
  grid-column: 1;
  grid-row: 1;
  object-position: 50% 45%;
}

.hero__photo--b {
  grid-column: 1;
  grid-row: 2;
  object-position: 50% 48%;
}

.hero__photo--c {
  grid-column: 2;
  grid-row: 1 / 3;
  object-position: 54% 43%;
}

.hero__slider--pc .hero__slide:nth-child(2) .hero__grid {
  grid-template-rows: 50.08% 49.92%;
}

.hero__slider--pc .hero__slide:nth-child(2) .hero__photo--a {
  --hero-photo-shift-x: 0px;
  --hero-photo-shift-y: 0px;
  --hero-photo-scale: 1;
  object-position: 50% 50%;
}

.hero__slider--pc .hero__slide:nth-child(2) .hero__photo--b {
  --hero-photo-shift-x: 0px;
  --hero-photo-shift-y: 0px;
  --hero-photo-scale: 1;
  object-position: 50% 50%;
}

.hero__slider--pc .hero__slide:nth-child(2) .hero__photo--c {
  --hero-photo-shift-x: 0px;
  --hero-photo-shift-y: 0px;
  --hero-photo-scale: 1;
  object-position: 50% 50%;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: calc(100vw * 14 / 1440);
  width: 100%;
  margin: calc(100vw * -18 / 1440) auto 0;
  padding: 0 calc(100vw * 140 / 1440);
  font-size: min(calc(100vw * 46 / 1440), 37px);
  line-height: 1.45;
  font-weight: 700;
}

.hero__copy-line {
  position: relative;
  z-index: 0;
  width: max-content;
  max-width: 100%;
  padding: 0 calc(100vw * 14 / 1440) calc(100vw * 5 / 1440);
  opacity: 0;
}

.hero__copy-line--sp {
  display: none;
}

.hero.is-visible .hero__copy-line {
  animation: highlightTextIn 900ms ease forwards;
}

.hero.is-visible .hero__copy-line--delay-1 {
  animation-delay: 220ms;
}

.hero.is-visible .hero__copy-line--delay-2 {
  animation-delay: 420ms;
}

.hero__copy-line::before,
.interview-card span::before,
.photo-label__text::before,
.lower-hero p span::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  animation: highlightBarIn 760ms cubic-bezier(.16, .86, .23, 1) forwards;
}

.hero__copy-line::before,
.interview-card span::before {
  animation-play-state: paused;
}

.hero.is-visible .hero__copy-line::before {
  animation-play-state: running;
}

.section {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: var(--section-y) var(--side);
}

.section-heading,
.section-body,
.prose,
.service-card,
.culture-teaser__text,
.culture-teaser__image,
.interview-card,
.photo-label,
.careers-cta__body {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(.16, .86, .23, 1);
}

.section-heading.is-visible,
.section-body.is-visible,
.prose.is-visible,
.service-card.is-visible,
.culture-teaser__text.is-visible,
.culture-teaser__image.is-visible,
.interview-card.is-visible,
.photo-label.is-visible,
.careers-cta__body.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.is-visible:nth-child(2),
.interview-card.is-visible:nth-child(2),
.photo-label.is-visible:nth-child(2) {
  transition-delay: 90ms;
}

.interview-card.is-visible:nth-child(3),
.photo-label.is-visible:nth-child(3) {
  transition-delay: 180ms;
}

.interview-card.is-visible:nth-child(4) {
  transition-delay: 60ms;
}

.interview-card.is-visible:nth-child(5) {
  transition-delay: 150ms;
}

.interview-card.is-visible:nth-child(6) {
  transition-delay: 240ms;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(260px, 40%) 1fr;
  gap: clamp(44px, calc(var(--layout-w) * 9 / 100), 140px);
}

.page-top .section--split,
.page-top .careers-cta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.page-top .careers-cta {
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
}

.lower-intro.section--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.page-top .section--split .section-body,
.page-top .section--split .service-list,
.page-top .careers-cta__body {
  padding-left: var(--indent-6);
}

.lower-intro.section--split .section-body {
  padding-left: var(--indent-6);
}

.page-top .section--services .service-list {
  padding-left: clamp(10px, calc(var(--layout-w) * 5 / 100), 70px);
}

.page-top .culture-teaser {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding-top: clamp(58px, calc(var(--layout-w) * 7 / 100), 95px);
}

.page-top .culture-teaser__image {
  justify-self: end;
  width: calc(100% + var(--side));
  max-width: none;
  height: clamp(730px, calc(var(--layout-w) * 58 / 100), 850px);
  margin-right: calc(var(--side) * -1);
  aspect-ratio: auto;
}

.page-top .culture-teaser__image img {
  object-position: 18% 50%;
}

.page-top .environment-teaser {
  padding-top: clamp(52px, calc(var(--layout-w) * 5 / 100), 82px);
}

.page-top #interview {
  padding-bottom: clamp(70px, calc(var(--layout-w) * 6 / 100), 96px);
}

.page-top .careers-cta .section-heading h2 {
  font-size: clamp(48px, calc(var(--layout-w) * 5.55 / 100), 80px);
}

.section-heading__title img {
  width: 100%;
  height: auto;
}

.section-heading__title {
  max-width: 100%;
}

.section-heading__title img {
  display: block;
}

.section-heading__title--stacked {
  display: grid;
  gap: 10px;
}

.section-heading__title--about {
  width: clamp(224px, calc(var(--layout-w) * 20 / 100), 288px);
}

.section-heading__title--services {
  width: clamp(286px, calc(var(--layout-w) * 25.6 / 100), 368px);
}

.section-heading__title--vision {
  width: clamp(222px, calc(var(--layout-w) * 19.9 / 100), 286px);
}

.section-heading__title--features {
  width: clamp(306px, calc(var(--layout-w) * 27.4 / 100), 394px);
}

.section-heading__title--spirit-culture {
  width: clamp(274px, calc(var(--layout-w) * 24.5 / 100), 352px);
}

.section-heading__title--corevalue {
  width: clamp(303px, calc(var(--layout-w) * 27 / 100), 389px);
}

.section-heading__title--valueinaction {
  width: clamp(312px, calc(var(--layout-w) * 27.8 / 100), 400px);
}

.section-heading__title--event {
  width: clamp(165px, calc(var(--layout-w) * 14.7 / 100), 212px);
}

.section-heading__title--interview {
  width: clamp(352px, calc(var(--layout-w) * 31.5 / 100), 453px);
}

.section-heading__title--environment {
  width: clamp(480px, calc(var(--layout-w) * 42.9 / 100), 617px);
}

.section-heading__title--careers {
  width: clamp(277px, calc(var(--layout-w) * 24.7 / 100), 356px);
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(48px, calc(var(--layout-w) * 6 / 100), 92px);
  line-height: .98;
  font-weight: 700;
  letter-spacing: .12em;
}

.section-heading p {
  margin: 20px 0 0;
  font-size: clamp(15px, calc(var(--layout-w) * 1.5 / 100), 22px);
  font-weight: 500;
  letter-spacing: 2px;
}

.section-heading--highlight .section-heading__title,
.section-heading--highlight > p {
  position: relative;
  width: fit-content;
  z-index: 0;
}

.section-heading--highlight .section-heading__title {
  padding: 8px 14px 10px;
}

.section-heading--highlight > p {
  margin-top: 22px;
  padding: 4px 12px 7px;
}

.section-heading--highlight .section-heading__title::before,
.section-heading--highlight > p::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: -1;
}

.section-heading--highlight.is-visible .section-heading__title::before,
.section-heading--highlight.is-visible > p::before {
  animation: highlightBarIn 480ms cubic-bezier(.16, .86, .23, 1) forwards;
}

.section-heading--highlight.is-visible > p::before {
  animation-delay: 120ms;
}

.section-heading--highlight .section-heading__title--about {
  width: clamp(290px, calc(var(--layout-w) * 25.8 / 100), 372px);
}

.section-heading--highlight .section-heading__title--spirit-culture {
  width: clamp(354px, calc(var(--layout-w) * 31.6 / 100), 455px);
}

.section-heading--highlight .section-heading__title--interview {
  width: clamp(455px, calc(var(--layout-w) * 40.6 / 100), 585px);
}

.section-heading--highlight .section-heading__title--environment {
  width: clamp(280px, calc(var(--layout-w) * 27 / 100), 422px);
}

.section-heading--highlight .section-heading__title--careers {
  width: clamp(358px, calc(var(--layout-w) * 32 / 100), 460px);
}

.prose {
  display: grid;
  gap: 60px;
  font-size: clamp(18px, calc(var(--layout-w) * 1.5 / 100), 23px);
  line-height: 2.45;
  font-weight: 500;
  letter-spacing: 0;
}

.prose p {
  margin: 0;
}

@media (min-width: 1025px) {
  .page-top #about .prose p {
    white-space: nowrap;
  }
}

.prose--large {
  font-size: clamp(19px, calc(var(--layout-w) * 1.65 / 100), 27px);
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 195px;
  min-height: 50px;
  padding: 8px 28px 10px;
  border-radius: 999px;
  background: var(--blue);
  font-family: var(--font-jp);
  font-size: clamp(16px, calc(var(--layout-w) * 1.6 / 100), 23px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 3px;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.pill-link:hover,
.pill-link:focus-visible {
  background: var(--blue-deep);
  box-shadow: 0 8px 18px rgba(5, 5, 5, .12);
  transform: translateY(-2px);
}

.pill-link--large {
  min-width: 330px;
  min-height: 80px;
  font-family: var(--font-jp);
  font-size: clamp(25px, calc(var(--layout-w) * 2.25 / 100), 35px);
  font-weight: 700;
  letter-spacing: .08em;
}

.section--services {
  padding-top: 92px;
  padding-bottom: clamp(60px, calc(var(--layout-w) * 7 / 100), 100px);
}

.service-list {
  display: grid;
  justify-items: start;
  gap: 82px;
}

.service-card {
  width: 100%;
  max-width: calc(var(--layout-w) - var(--side) * 2);
  padding: 42px 36px 34px;
  background: var(--blue);
  font-family: var(--font-jp);
  font-weight: 500;
  overflow: hidden;
}

.service-card__label,
.service-card p:first-child {
  margin: 0 0 20px;
  font-size: clamp(16px, calc(var(--layout-w) * 1.5 / 100), 21px);
  font-weight: 500;
  letter-spacing: 2px;
}

.service-card h3 {
  margin: 0 0 22px;
  font-size: 34px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0;
}

.service-card p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: 1.3px;
}

.culture-teaser {
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  align-items: center;
  gap: clamp(44px, calc(var(--layout-w) * 7 / 100), 110px);
}

.culture-teaser h3 {
  margin: 58px 0 36px;
  font-size: clamp(29px, calc(var(--layout-w) * 2.8 / 100), 40px);
  line-height: 1.48;
  letter-spacing: .03em;
}

.culture-teaser__text > p {
  margin: 0 0 55px;
  font-size: clamp(17px, calc(var(--layout-w) * 1.45 / 100), 21px);
  line-height: 2.15;
}

.culture-teaser__image {
  margin: 0;
  width: 100%;
  aspect-ratio: 680 / 690;
  overflow: hidden;
}

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

.page-top .culture-teaser__image {
  width: calc(100% + var(--side) - var(--indent-65));
  max-width: none;
  height: clamp(790px, calc(var(--layout-w) * 62 / 100), 920px);
  margin-right: calc(var(--side) * -1);
  aspect-ratio: auto;
}

.page-top .culture-teaser__image img {
  object-position: 20% 50%;
}

.interview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, min(350px, calc((100% - 84px) / 3))));
  justify-content: space-between;
  gap: 72px 42px;
  margin-top: 55px;
}

.page-interview .interview-page-rows {
  display: grid;
  gap: 72px;
  margin-top: 55px;
}

.page-interview .interview-page-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, min(350px, calc((100% - 84px) / 3))));
  justify-content: space-between;
  gap: 42px;
}

.interview-card__image {
  width: 100%;
  height: 470px;
  overflow: hidden;
}

.interview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.4);
  transform-origin: center center;
}

.interview-card:nth-child(n + 4):nth-child(-n + 6) img {
  transform: scale(1.6);
}

.interview-card:nth-child(6) img {
  object-position: 53% center;
}

.page-interview .interview-card img {
  object-position: center center;
  transform: scale(1.4);
  transform-origin: center center;
}

.page-interview .interview-card--5 img,
.page-interview .interview-card--6 img,
.page-interview .interview-card--7 img,
.page-interview .interview-card--8 img,
.page-interview .interview-card--9 img {
  transform: scale(1.6);
}

.page-interview .interview-card--7 img {
  object-position: 54% center;
  transform: scale(1.72);
}

.page-interview .interview-card--8 img {
  object-position: 46% center;
}

.page-interview .interview-card--9 img {
  object-position: 46% center;
  transform: scale(1.5);
}

.interview-card__role {
  margin: 28px 0 4px;
  font-size: 23px;
  letter-spacing: 2px;
}

.interview-card h2,
.interview-card h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, calc(var(--layout-w) * 2.35 / 100), 34px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 2px;
}

.interview-card span {
  position: relative;
  display: table;
  margin: 10px 0;
  padding: 1px 7px 3px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 2px;
  opacity: 0;
  z-index: 0;
  white-space: nowrap;
}

.interview-card.is-visible span {
  animation: highlightTextIn 780ms ease forwards;
}

.interview-card.is-visible span:nth-of-type(2) {
  animation-delay: 90ms;
}

.interview-card.is-visible span::before {
  animation-play-state: running;
}

.environment-teaser__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: repeat(2, clamp(275px, calc(var(--layout-w) * 20.85 / 100), 315px));
  gap: 28px 44px;
  margin-top: 52px;
}

.environment-teaser__grid--page {
  grid-template-rows: repeat(2, 300px);
}

.photo-label {
  position: relative;
  overflow: visible;
  background: #e8e8e8;
}

.photo-label--large {
  grid-row: span 2;
}

.photo-label__frame {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.photo-label--large img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-position: center center;
  transform: scale(1.02);
  transform-origin: left center;
}

.photo-label:not(.photo-label--large) img {
  object-position: center center;
}

.photo-label:nth-child(2) img {
  transform: scale(1.03) translateY(8px);
}

.photo-label:nth-child(3) img {
  transform: scale(1.06);
}

.photo-label__text {
  position: absolute;
  top: -12px;
  left: -12px;
  padding: 3px 12px 6px;
  font-size: 23px;
  letter-spacing: 1px;
  z-index: 0;
}

.photo-label__text::before,
.lower-hero p span::before {
  animation-play-state: paused;
}

.photo-label.is-visible .photo-label__text::before,
.lower-hero.is-visible p span::before {
  animation-play-state: running;
}

.careers-cta {
  display: grid;
  grid-template-columns: minmax(260px, 40%) 1fr;
  align-items: start;
  gap: clamp(44px, calc(var(--layout-w) * 9 / 100), 140px);
}

.careers-cta__body h2 {
  margin: 0 0 42px;
  font-size: clamp(36px, calc(var(--layout-w) * 3.82 / 100), 55px);
  line-height: 1.55;
}

.careers-cta__body h2 span {
  white-space: nowrap;
}

.careers-cta__body p {
  margin: 0 0 58px;
  font-size: clamp(18px, calc(var(--layout-w) * 1.7 / 100), 25px);
  line-height: 2;
}

.lower-hero {
  position: relative;
  margin-top: calc(100vw * 60 / 1440);
  height: calc(100vw * 635 / 1440);
  overflow: hidden;
}

.lower-hero picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lower-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(var(--lower-hero-offset-y, 0)) scale(var(--lower-hero-scale-start, 1.04));
  transform-origin: center center;
}

.lower-hero.is-visible img {
  opacity: 1;
  animation: lowerHeroImageIn 8600ms ease-out forwards;
}

.lower-hero p {
  position: absolute;
  right: var(--side);
  bottom: 48px;
  display: grid;
  justify-items: end;
  gap: 12px;
  max-width: min(760px, calc(100% - var(--side) * 2));
  margin: 0;
  font-size: clamp(16px, calc(var(--layout-w) * 1.65 / 100), 24px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .02em;
  text-align: right;
  z-index: 1;
}

.lower-hero p span {
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding: 2px 10px 5px;
  word-break: keep-all;
  z-index: 0;
}

.lower-hero__line--sp {
  display: none;
}

.lower-hero--about img {
  --lower-hero-offset-y: 50px;
  --lower-hero-scale-start: 1.15;
  --lower-hero-scale-end: 1.18;
  object-position: center 42%;
  transform-origin: center center;
}

.lower-hero--culture img {
  --lower-hero-scale-start: 1.03;
  --lower-hero-scale-end: 1.08;
  object-position: calc(50% + 30px) 30%;
}

.lower-hero--culture p {
  top: clamp(30px, calc(var(--layout-w) * 3 / 100), 48px);
  right: clamp(108px, calc(var(--layout-w) * 12 / 100), 190px);
  bottom: auto;
  gap: 8px;
  font-size: clamp(16px, calc(var(--layout-w) * 1.65 / 100), 24px);
  line-height: 1.45;
}

.lower-hero--culture p span {
  padding: 2px 10px 5px;
}

.lower-hero--interview img {
  object-position: 50% 46%;
}

.lower-hero--environment img {
  --lower-hero-scale-start: 1;
  --lower-hero-scale-end: 1.015;
  object-position: 50% 64%;
  transform-origin: center center;
}

.lower-hero--environment p {
  top: clamp(44px, calc(var(--layout-w) * 5 / 100), 78px);
  right: clamp(108px, calc(var(--layout-w) * 12 / 100), 190px);
  bottom: auto;
  gap: 8px;
  font-size: clamp(16px, calc(var(--layout-w) * 1.65 / 100), 24px);
  line-height: 1.45;
}

.lower-hero--careers img {
  --lower-hero-scale-start: 1;
  --lower-hero-scale-end: 1.025;
  object-position: 50% 38%;
}

.lower-intro {
  padding-top: clamp(82px, calc(var(--layout-w) * 10 / 100), 160px);
}

.culture-page {
  position: relative;
}

.culture-intro {
  display: grid;
  grid-template-columns: minmax(260px, 40%) 1fr;
  gap: clamp(48px, calc(var(--layout-w) * 9 / 100), 140px);
}

.culture-intro__body {
  gap: 0;
  font-size: clamp(18px, calc(var(--layout-w) * 1.5 / 100), 23px);
  line-height: 2.45;
  font-weight: 500;
  letter-spacing: 0;
}

.culture-core {
  display: grid;
  grid-template-columns: minmax(260px, 40%) 1fr;
  gap: clamp(48px, calc(var(--layout-w) * 9 / 100), 140px);
  padding-top: clamp(90px, calc(var(--layout-w) * 9 / 100), 140px);
}

.culture-core__body {
  display: grid;
  gap: 34px;
  font-size: clamp(18px, calc(var(--layout-w) * 1.5 / 100), 23px);
  line-height: 2.45;
  font-weight: 500;
  letter-spacing: 0;
}

.culture-core__body p {
  margin: 0;
}

.culture-actions,
.culture-events {
  display: grid;
  grid-template-columns: minmax(260px, 40%) 1fr;
  gap: clamp(48px, calc(var(--layout-w) * 9 / 100), 140px);
  padding-top: clamp(110px, calc(var(--layout-w) * 10 / 100), 160px);
}

.culture-action-list {
  display: grid;
  grid-template-columns: 1fr;
  justify-self: start;
  width: min(100%, 515px);
  gap: 84px;
  margin-top: 0;
}

.culture-action-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  min-height: 0;
  padding: 40px 38px 36px;
  background: var(--blue);
}

.culture-action-card h3 {
  margin: 0 0 18px;
  font-size: clamp(22px, calc(var(--layout-w) * 1.8 / 100), 27px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 1px;
}

.culture-action-card p {
  margin: 0;
  font-size: clamp(12px, calc(var(--layout-w) * .92 / 100), 14px);
  line-height: 1.9;
  font-weight: 600;
  letter-spacing: .6px;
}

.culture-action-card img {
  width: 100%;
  margin-top: 0;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
}

.culture-events {
  display: block;
}

.culture-event-list {
  width: min(100%, 1223px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 55px;
  margin: 56px auto 0;
}

.culture-event-card {
  display: grid;
  gap: 20px;
  align-content: start;
  min-height: 0;
  padding: 40px 50px;
  background: #f1f1f1;
}

.culture-event-card h3 {
  margin: 0;
  font-size: clamp(20px, calc(var(--layout-w) * 1.45 / 100), 24px);
  line-height: 1.5;
  letter-spacing: 1px;
}

.culture-event-card p {
  margin: 0;
  font-size: clamp(11px, calc(var(--layout-w) * .86 / 100), 13px);
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: .45px;
}

.culture-event-card img {
  width: 100%;
  align-self: end;
  margin-top: auto;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

@keyframes highlightBarIn {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes lowerHeroImageIn {
  0% {
    transform: translateY(var(--lower-hero-offset-y, 0)) scale(var(--lower-hero-scale-start, 1.04));
  }
  100% {
    transform: translateY(var(--lower-hero-offset-y, 0)) scale(var(--lower-hero-scale-end, 1.08));
  }
}

@keyframes highlightTextIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-first {
  padding-top: clamp(82px, calc(var(--layout-w) * 10 / 100), 160px);
}

.page-environment .page-first {
  padding-bottom: clamp(36px, calc(var(--layout-w) * 5.5 / 100), 80px);
}

.value-grid,
.number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 58px;
}

.value-grid article,
.number-grid article {
  min-height: 230px;
  padding: 36px;
  background: rgba(137, 233, 244, .72);
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(260px, 40%) minmax(0, 1fr);
  gap: clamp(40px, calc(var(--layout-w) * 7 / 100), 106px);
}

.feature-list {
  display: grid;
  gap: clamp(90px, calc(var(--layout-w) * 9 / 100), 136px);
  margin-top: 0;
}

.feature-list article {
  position: relative;
  --feature-num-space: clamp(90px, calc(var(--layout-w) * 8 / 100), 118px);
  min-width: 0;
  min-height: clamp(190px, calc(var(--layout-w) * 16 / 100), 230px);
  padding: 0 var(--feature-num-space) 0 0;
}

.feature-list__num {
  position: absolute;
  top: -34px;
  right: 0;
  width: auto;
  height: clamp(122px, calc(var(--layout-w) * 10.8 / 100), 156px);
  opacity: 0;
  transform: translateX(42px);
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(.16, .86, .23, 1);
  z-index: 0;
}

.feature-list article.is-visible .feature-list__num {
  opacity: 1;
  transform: translateX(0);
}

.feature-list__num img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
}

.feature-list h3,
.value-grid h3 {
  position: relative;
  z-index: 1;
}

.feature-list h3,
.feature-list p {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(.16, .86, .23, 1);
}

.feature-list article.is-visible h3,
.feature-list article.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

.feature-list article.is-visible p {
  transition-delay: 110ms;
}

.feature-list h3 {
  margin: 0 0 36px;
  font-size: clamp(31px, calc(var(--layout-w) * 2.6 / 100), 38px);
  line-height: 1.42;
  font-weight: 700;
  letter-spacing: 2px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.value-grid h3 {
  margin: 0 0 24px;
  font-size: 27px;
  line-height: 1.55;
}

.feature-list p,
.value-grid p {
  position: relative;
  z-index: 1;
}

.feature-list p {
  width: calc(100% + var(--feature-num-space));
  margin: 0;
  font-size: clamp(15px, calc(var(--layout-w) * 1.25 / 100), 18px);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 1px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.section--vision .prose {
  gap: 0;
}

.page-about .section--vision,
.page-about .feature-section,
.page-about .lower-services,
.page-spirit-culture .culture-intro,
.page-spirit-culture .culture-core,
.page-spirit-culture .culture-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.page-spirit-culture .culture-intro {
  padding-bottom: 0;
}

.page-spirit-culture .section-heading--highlight .section-heading__title--stacked {
  width: fit-content;
  padding: 0;
  gap: 12px;
}

.page-spirit-culture .section-heading--highlight .section-heading__title--stacked::before {
  content: none;
}

.page-spirit-culture .section-heading--highlight .section-heading__title--stacked img {
  box-sizing: border-box;
  width: clamp(344px, calc(var(--layout-w) * 30.7 / 100), 442px);
  padding: 8px 14px 10px;
  background: var(--blue);
}

.page-spirit-culture .section-heading__title--corevalue {
  width: clamp(360px, calc(var(--layout-w) * 34 / 100), 490px);
}

.page-spirit-culture .section-heading__title--event {
  width: clamp(210px, calc(var(--layout-w) * 19 / 100), 274px);
}

.page-environment .section-heading--highlight .section-heading__title--environment {
  width: fit-content;
  padding: 0;
  gap: 12px;
}

.page-environment .section-heading--highlight .section-heading__title--environment::before {
  content: none;
}

.page-environment .section-heading--highlight .section-heading__title--environment img {
  box-sizing: border-box;
  width: clamp(470px, calc(var(--layout-w) * 44 / 100), 634px);
  padding: 10px 18px 14px;
  background: var(--blue);
}

.page-environment .section-heading--highlight .section-heading__title--environment img:first-of-type {
  width: clamp(256px, calc(var(--layout-w) * 24 / 100), 345px);
}

.page-environment .lower-intro .section-body {
  gap: 0;
  position: relative;
  top: -15px;
  line-height: 2.12;
}

.page-spirit-culture .culture-core {
  padding-top: clamp(100px, calc(var(--layout-w) * 10 / 100), 150px);
  padding-bottom: 0;
}

.page-spirit-culture .culture-actions {
  padding-top: clamp(80px, calc(var(--layout-w) * 8 / 100), 120px);
  padding-bottom: 0;
}

.page-spirit-culture .culture-events {
  padding-top: clamp(90px, calc(var(--layout-w) * 9 / 100), 130px);
}

.page-about .section--vision .section-body,
.page-about .feature-section .feature-list,
.page-about .lower-services .service-list,
.page-spirit-culture .culture-intro .section-body,
.page-spirit-culture .culture-core__body {
  padding-left: var(--indent-6);
}

.page-spirit-culture .culture-action-list {
  margin-left: var(--indent-6);
}

@media (min-width: 1001px) {
  .section-heading--highlight > p {
    font-size: clamp(15px, calc(var(--layout-w) * 1.75 / 100), 25px);
    font-weight: 500;
  }

  .page-spirit-culture .section-heading--highlight .section-heading__title--stacked {
    gap: 22px;
  }

  .page-spirit-culture .section-heading--highlight .section-heading__title--stacked img {
    width: clamp(344px, calc(var(--layout-w) * 38.2 / 100), 550px);
  }

  .page-spirit-culture .culture-actions {
    padding-top: clamp(100px, calc(var(--layout-w) * 10 / 100), 150px);
  }

  .page-spirit-culture .culture-events {
    padding-top: clamp(100px, calc(var(--layout-w) * 10 / 100), 150px);
  }

  .culture-action-card h3,
  .culture-event-card h3 {
    font-size: clamp(24px, calc(var(--layout-w) * 2.43 / 100), 35px);
  }

  .culture-action-card p,
  .culture-event-card p {
    font-size: clamp(13px, calc(var(--layout-w) * 1.1 / 100), 16px);
  }
}

.value-grid p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}

.number-grid strong {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(58px, calc(var(--layout-w) * 6 / 100), 90px);
  line-height: 1;
}

.number-grid span {
  display: block;
  margin-top: 20px;
  font-size: 20px;
}

.lower-services .service-list {
  gap: 72px;
}

.lower-services .service-card {
  width: min(100%, 515px);
  min-height: 0;
  padding: 38px 40px 30px;
}

.lower-services .service-card p:first-child {
  margin-bottom: 24px;
  font-size: clamp(24px, calc(var(--layout-w) * 2.36 / 100), 34px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 3px;
}

.lower-services .service-card p:nth-child(2) {
  font-size: clamp(14px, calc(var(--layout-w) * 1.25 / 100), 18px);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 1.8px;
}

.service-card__link {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-left: auto;
  margin-top: 12px;
  font-family: var(--font-en);
  font-size: clamp(16px, calc(var(--layout-w) * 1.6 / 100), 23px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 2px;
}

.service-card__link::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(.16, .86, .23, 1);
}

.service-card__link span {
  display: inline-block;
  transition: transform 360ms cubic-bezier(.16, .86, .23, 1);
}

.service-card__link:hover::after,
.service-card__link:focus-visible::after {
  transform: scaleX(1);
}

.service-card__link:hover span,
.service-card__link:focus-visible span {
  transform: translateX(4px);
}

.lower-card-section {
  padding-top: clamp(64px, calc(var(--layout-w) * 7 / 100), 110px);
}

.lower-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 58px;
}

.lower-card-grid--events,
.lower-card-grid--env {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lower-image-card,
.lower-text-card {
  background: rgba(137, 233, 244, .72);
}

.lower-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.lower-image-card h3,
.lower-text-card h2 {
  margin: 0;
  padding: 28px 30px 0;
  font-size: clamp(22px, calc(var(--layout-w) * 2.1 / 100), 32px);
  line-height: 1.45;
}

.lower-image-card p,
.lower-text-card p {
  margin: 0;
  padding: 20px 30px 34px;
  font-size: 16px;
  line-height: 1.9;
}

.lower-text-card {
  padding-bottom: 8px;
}

.lower-office__body img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.lower-office__body p {
  margin: 28px 0 0;
  font-size: clamp(17px, calc(var(--layout-w) * 1.4 / 100), 21px);
  line-height: 2;
}

.env-support,
.env-office {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding-top: clamp(86px, calc(var(--layout-w) * 8 / 100), 126px);
  padding-bottom: clamp(80px, calc(var(--layout-w) * 7 / 100), 105px);
}

.env-numbers {
  display: block;
  padding-top: clamp(86px, calc(var(--layout-w) * 8 / 100), 126px);
  padding-bottom: clamp(80px, calc(var(--layout-w) * 7 / 100), 105px);
}

.env-numbers .env-number-grid {
  margin-top: clamp(38px, calc(var(--layout-w) * 4 / 100), 58px);
}

.env-support__heading h2 {
  max-width: 100%;
  margin: 0 0 30px;
  font-size: clamp(44px, calc(var(--layout-w) * 4 / 100), 58px);
  line-height: 1.32;
  letter-spacing: 2px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.env-support__heading p {
  margin: 0;
  font-size: clamp(18px, calc(var(--layout-w) * 1.5 / 100), 23px);
  line-height: 2.1;
  font-weight: 600;
  letter-spacing: 2px;
}

.env-support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, calc(var(--layout-w) * 3 / 100), 42px);
  padding-left: var(--indent-6);
}

.env-number-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.env-support-card,
.env-number-card {
  padding: 30px;
  background: rgba(137, 233, 244, .72);
}

.env-support--gray .env-support-card,
.env-number-card {
  background: #f1f1f1;
}

.env-support-card h3 {
  margin: 0 0 26px;
  font-size: clamp(27px, calc(var(--layout-w) * 2.35 / 100), 34px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 2.6px;
  word-break: keep-all;
  overflow-wrap: normal;
}

.env-support-card p,
.env-office__text p,
.env-number-card p {
  margin: 0;
  font-size: clamp(16px, calc(var(--layout-w) * 1.25 / 100), 18px);
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0px;
}

.env-office__body {
  display: grid;
  gap: 32px;
  padding-left: var(--indent-6);
}

.env-office__text {
  display: grid;
  gap: 24px;
}

.env-office__text h3 {
  margin: 8px 0 -24px;
  font-size: clamp(16px, calc(var(--layout-w) * 1.25 / 100), 18px);
  line-height: 2;
  letter-spacing: 1.8px;
}

.env-office__body img {
  display: block;
  width: 100%;
  aspect-ratio: 1.38 / 1;
  max-height: none;
  object-fit: cover;
  object-position: center 23%;
}

.env-number-card__label {
  width: max-content;
  margin-bottom: 18px !important;
  padding: 3px 8px 5px;
  background: var(--blue);
  font-size: 23px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}

.env-number-card__value {
  /* margin-bottom: 22px !important; */
  font-family: var(--font-en);
  font-size: clamp(64px, calc(var(--layout-w) * 8.33 / 100), 120px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  text-align: right;
  white-space: normal;
}

.env-number-card__value span {
  margin-left: 4px;
  font-size: .3em;
}

.env-number-card__value span.percent {
  font-family: var(--font-en);
  font-size: clamp(18px, calc(var(--layout-w) * 2.1 / 100), 30px) !important;
  line-height: 1.1;
  font-weight: 900;
}

.env-number-card__value--mixed {
  font-family: var(--font-ja) !important;
  font-size: clamp(18px, calc(var(--layout-w) * 1.75 / 100), 25px) !important;
  line-height: 1.42 !important;
  margin-top: -15px !important;
  letter-spacing: .02em !important;
  word-break: keep-all;
  overflow-wrap: normal;
}

.env-number-card__value--mixed span.number {
  font-family: var(--font-en);
  font-size: clamp(34px, calc(var(--layout-w) * 4.5 / 100), 65px);
  line-height: 1.1;
  font-weight: 900;
}

.env-number-card__value--clothes {
  font-size: 16px !important;
  line-height: 1.58 !important;
}

.env-number-card__value--clothes span {
  /* font-size: clamp(30px, calc(var(--layout-w) * 2.8 / 100), 40px); */
}

.careers-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding-top: clamp(82px, calc(var(--layout-w) * 10 / 100), 160px);
}

.job-list {
  display: grid;
  gap: clamp(118px, calc(var(--layout-w) * 10 / 100), 150px);
  padding-left: var(--indent-6);
}

.job-list h2 {
  margin: 0 0 clamp(64px, calc(var(--layout-w) * 6 / 100), 88px);
  padding: 2px 12px 7px;
  width: max-content;
  background: var(--blue);
  font-size: clamp(28px, calc(var(--layout-w) * 2.4 / 100), 35px);
}

.job-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding: 4px 20px 6px;
  background: #f2f2f2;
  font-size: clamp(20px, calc(var(--layout-w) * 1.9 / 100), 28px);
  font-weight: 700;
  overflow: hidden;
  isolation: isolate;
  transition:
    background-color 260ms ease,
    transform 320ms cubic-bezier(.16, .86, .23, 1),
    box-shadow 320ms cubic-bezier(.16, .86, .23, 1);
}

.job-link::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(155, 240, 255, .72) 58%, rgba(255, 255, 255, .12) 100%);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(.16, .86, .23, 1);
  z-index: -1;
}

.job-link::after {
  display: block;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: rotate(-45deg);
  transition: transform 320ms cubic-bezier(.16, .86, .23, 1);
}

.job-link:hover,
.job-link:focus-visible {
  background: #eaf9ff;
  box-shadow: 0 14px 34px rgba(80, 217, 232, .18);
  transform: translateX(8px);
}

.job-link:hover::before,
.job-link:focus-visible::before {
  transform: scaleX(1);
}

.job-link:hover::after,
.job-link:focus-visible::after {
  transform: translateX(7px) rotate(-45deg);
}

.job-link--compact {
  font-size: 21px;
  line-height: 1.65;
}

.job-link__break {
  display: none;
}

.job-link--plain {
  justify-content: flex-start;
  min-height: auto;
  margin: 0 0 34px;
  padding: 0;
  background: transparent;
  font-size: clamp(20px, calc(var(--layout-w) * 1.9 / 100), 28px);
  font-weight: 500;
  letter-spacing: .04em;
  overflow: visible;
  isolation: auto;
  transition: none;
}

.job-link:not(.job-link--plain) + .job-link--plain {
  margin-top: clamp(68px, calc(var(--layout-w) * 6 / 100), 94px);
}

.job-link--plain::before,
.job-link--plain::after {
  content: none;
}

.job-link--plain:hover,
.job-link--plain:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.site-footer {
  padding: 48px clamp(32px, calc(var(--layout-w) * 5 / 100), 70px) 60px;
  background: var(--blue);
}

.site-footer__wrap {
  width: min(100%, 1300px);
  margin: 0 auto;
}

.site-footer__sns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px;
}

.site-footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.site-footer__sns img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) auto;
  gap: 64px;
  align-items: end;
}

.site-footer__company {
  display: flex;
  align-items: flex-end;
  gap: 45px;
}

.brand--footer img {
  width: 168px;
}

.site-footer__company p {
  margin: 0;
  font-size: 11px;
  line-height: 1.8;
}

.site-footer__navs {
  display: grid;
  justify-items: end;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 29px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .14em;
}

.footer-nav--sub {
  gap: 22px;
  font-family: var(--font-jp);
  font-size: 10px;
  letter-spacing: .05em;
}

@media (max-width: 1000px) {
  :root {
    --side: 28px;
    --header-h: 66px;
  }

  .page-environment {
    --side: 40px;
  }

  html,
  body {
    overflow-x: clip;
  }

  body.is-nav-open {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    right: 0;
    left: 0;
    padding: 0 20px;
  }

  main {
    padding-top: var(--header-h);
  }

  .brand img {
    width: 106px;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 8px;
  }

  .nav-toggle span {
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--blue);
    transition:
      opacity 220ms ease,
      transform 320ms cubic-bezier(.16, .86, .23, 1);
  }

  .nav-toggle span:nth-child(1) {
    transform: translateY(-8px);
  }

  .nav-toggle span:nth-child(3) {
    transform: translateY(8px);
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(100dvh - var(--header-h));
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 0;
    padding: 48px 28px 78px;
    background: #fff;
    border-top: 1px solid var(--grid);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition:
      opacity 260ms ease,
      transform 320ms cubic-bezier(.16, .86, .23, 1);
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav__link {
    height: auto;
    padding: 15px 0;
    font-size: 18px;
  }

  .global-nav__link::after {
    left: 0;
    bottom: 4px;
    width: 100%;
  }

  .hero {
    --hero-sp-w: min(100vw, 500px);
    padding-top: 0;
  }

  .hero__slider--pc {
    display: none;
  }

  .hero__slider--sp {
    display: block;
    height: calc(var(--hero-sp-w) * 560 / 500);
    min-height: 0;
  }

  .hero__sp-photo--1 {
    object-position: 41% 63%;
    transform: translateY(calc(var(--hero-sp-w) * -24 / 500)) scale(1.16);
    transform-origin: left center;
  }

  .hero__slide.is-active .hero__sp-photo--1 {
    transform: translateY(calc(var(--hero-sp-w) * -40 / 500)) scale(1.18);
  }

  .hero__sp-photo--2 {
    object-position: 18% 45%;
  }

  .hero__sp-photo--3 {
    object-position: 57% 47%;
    transform: translateY(calc(var(--hero-sp-w) * -30 / 500)) scale(1.14);
  }

  .hero__slide.is-active .hero__sp-photo--3 {
    transform: translateY(calc(var(--hero-sp-w) * -30 / 500)) scale(1.14);
  }

  .hero__sp-photo--4 {
    object-position: 35% 43%;
    transform: translateY(calc(var(--hero-sp-w) * -40 / 500)) scale(1.18);
  }

  .hero__slide.is-active .hero__sp-photo--4 {
    transform: translateY(calc(var(--hero-sp-w) * -40 / 500)) scale(1.18);
  }

  .hero__sp-photo--5 {
    object-position: 64% 44%;
    transform: translateY(calc(var(--hero-sp-w) * 30 / 500)) scale(1.1);
  }

  .hero__slide.is-active .hero__sp-photo--5 {
    transform: translateY(calc(var(--hero-sp-w) * 30 / 500)) scale(1.1);
  }

  .hero__sp-photo--6 {
    object-position: 41% 47%;
    transform: translateY(calc(var(--hero-sp-w) * -24 / 500)) scale(1.06);
  }

  .hero__slide.is-active .hero__sp-photo--6 {
    transform: translateY(calc(var(--hero-sp-w) * -24 / 500)) scale(1.06);
  }

  .hero__copy {
    width: calc(var(--hero-sp-w) * 460 / 500);
    margin: calc(var(--hero-sp-w) * -72 / 500) 20px 0;
    padding: 0;
    font-size: min(calc(100vw * 22 / 500), 22px);
    line-height: 1.65;
    gap: calc(100vw * 10 / 500);
  }

  .hero__copy-line {
    padding: 0 calc(var(--hero-sp-w) * 10 / 500) calc(var(--hero-sp-w) * 3 / 500);
  }

  .hero__copy-line--pc {
    display: none;
  }

  .hero__copy-line--sp {
    display: block;
    width: fit-content;
    max-width: calc(var(--hero-sp-w) * 460 / 500);
    min-width: 0;
  }

  .u-sp-br {
    display: initial;
  }

  .section,
  .section--split,
  .culture-teaser,
  .careers-cta,
  .careers-page {
    display: block;
    overflow-x: clip;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .page-top .section--split .section-body,
  .page-top .section--split .service-list,
  .page-top .careers-cta__body {
    padding-left: 0;
  }

  .lower-intro.section--split .section-body {
    padding-left: 0;
  }

  .page-top #about .pill-link {
    justify-self: center;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 48px;
  }

  .section-heading__title--about {
    width: 168px;
  }

  .section-heading__title--services {
    width: 243px;
  }

  .section-heading__title--vision {
    width: 189px;
  }

  .section-heading__title--features {
    width: 260px;
  }

  .section-heading__title--spirit-culture {
    width: 233px;
  }

  .section-heading__title--corevalue {
    width: 258px;
  }

  .section-heading__title--valueinaction {
    width: 265px;
  }

  .section-heading__title--event {
    width: 140px;
  }

  .section-heading__title--interview {
    width: 299px;
  }

  .section-heading__title--environment {
    width: min(206px, calc(var(--layout-w) - var(--side) * 2));
  }

  .section-heading--highlight .section-heading__title--environment {
    width: min(206px, calc(var(--layout-w) - var(--side) * 2));
  }

  .page-environment .section-heading--highlight .section-heading__title--environment {
    width: fit-content;
    max-width: calc(var(--layout-w) - var(--side) * 2);
    padding: 0;
    gap: 8px;
  }

  .page-environment .section-heading--highlight .section-heading__title--environment img {
    width: min(252px, calc(var(--layout-w) - var(--side) * 2));
    padding: 6px 9px 8px;
  }

  .page-environment .section-heading--highlight .section-heading__title--environment img:first-of-type {
    width: min(137px, calc(var(--layout-w) - var(--side) * 2));
  }

  .section-heading__title--careers {
    width: 235px;
  }

  .careers-cta__body h2 {
    font-size: clamp(29px, calc(var(--layout-w) * 8 / 100), 36px);
  }

  .careers-cta__body h2 span {
    white-space: normal;
    overflow-wrap: normal;
  }

  .page-top .careers-cta .pill-link--large {
    display: flex;
    margin-right: auto;
    margin-left: auto;
  }

  .section-body,
  .service-list,
  .culture-teaser__image,
  .careers-cta__body,
  .job-list {
    margin-top: 42px;
  }

  .service-list {
    gap: 28px;
  }

  .service-card {
    width: 100%;
    min-height: 0;
    padding: 30px 24px;
  }

  .service-card h3 {
    font-size: clamp(22px, calc(var(--layout-w) * 5.8 / 100), 26px);
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .culture-teaser h3 {
    margin-top: 38px;
  }

  .page-top .culture-teaser {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-right: 0;
    padding-bottom: 82px;
  }

  .page-top .culture-teaser__text {
    display: contents;
  }

  .page-top .culture-teaser .section-heading {
    order: 1;
  }

  .page-top .culture-teaser h3 {
    order: 2;
    font-size: clamp(27px, calc(var(--layout-w) * 6.6 / 100), 32px);
    line-height: 1.55;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .page-top .culture-teaser__text > p {
    order: 3;
    margin-bottom: 42px;
  }

  .page-top .culture-teaser__image {
    order: 4;
    width: calc(100% + var(--side));
    height: calc((var(--layout-w) + var(--side)) * .676);
    margin-top: 0;
    margin-right: calc(var(--side) * -1);
    margin-left: 0;
    aspect-ratio: 1.48 / 1;
  }

  .page-top .culture-teaser__image img {
    object-fit: cover;
    object-position: 28% 68%;
    transform: scale(1.13);
    transform-origin: left bottom;
  }

  .page-top .culture-teaser .pill-link {
    order: 5;
    justify-self: start;
    margin-left: calc((var(--layout-w) - var(--side) * 2 - 195px) / 2);
    margin-top: 64px;
  }

  .value-grid,
  .number-grid,
  .lower-card-grid,
  .lower-card-grid--events,
  .lower-card-grid--env {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .value-grid article,
  .number-grid article,
  .lower-text-card {
    padding: 30px 24px;
  }

  .feature-section {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-list {
    gap: 96px;
    margin-top: 82px;
  }

  .feature-list article {
    --feature-num-space: 0px;
    width: 100%;
    min-height: 246px;
    padding: 0 0 0 0;
  }

  .feature-list__num {
    top: -8px;
    right: 0;
    width: auto;
    height: clamp(98px, calc(var(--layout-w) * 27 / 100), 110px);
  }

  .feature-list__num img {
    width: auto;
    max-width: none;
    height: 100%;
  }

  .feature-list h3 {
    margin-bottom: 30px;
    font-size: clamp(29px, calc(var(--layout-w) * 8.2 / 100), 35px);
    line-height: 1.42;
  }

  .feature-list p {
    font-size: clamp(15px, calc(var(--layout-w) * 4.2 / 100), 18px);
    line-height: 2.2;
    letter-spacing: .7px;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .lower-card-grid {
    margin-top: 42px;
  }

  .culture-intro,
  .culture-core {
    display: block;
  }

  .culture-intro {
    padding-top: 76px;
    padding-bottom: 0;
  }

  .culture-intro__body {
    gap: 0;
    margin-top: 46px;
    font-size: 18px;
    line-height: 2.45;
    font-weight: 500;
    letter-spacing: 0;
  }

  .culture-core {
    padding-top: 78px;
    padding-bottom: 0;
  }

  .culture-core__body {
    gap: 60px;
    margin-top: 38px;
    font-size: 18px;
    line-height: 2.45;
    letter-spacing: 0;
  }

  /* FB 2026-05-30 ②: SP幅で長い行に改行を追加（PC改行は維持・br出し分け）。u-sp-brは上のSP定義(display:initial)で有効化、u-pc-brはSPで無効化 */
  .u-pc-br {
    display: none;
  }

  /* FB 2026-05-30 ②: カード本文（流し込み）の最終行1〜2文字孤立を防ぐ */
  .service-card p,
  .culture-action-card p,
  .culture-event-card p,
  .env-support-card p,
  .env-office__text p,
  .env-number-card > p:last-child {
    text-wrap: pretty;
  }

  .culture-actions,
  .culture-events {
    display: block;
    padding-top: 78px;
    padding-bottom: 0;
  }

  .culture-action-list,
  .culture-event-list {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 18px;
    margin-top: 32px;
  }

  .page-about .section--vision .section-body,
  .page-about .feature-section .feature-list,
  .page-about .lower-services .service-list,
  .page-spirit-culture .culture-intro .section-body,
  .page-spirit-culture .culture-core__body {
    padding-left: 0;
  }

  .page-spirit-culture .culture-action-list {
    margin-left: 0;
  }

  .culture-action-card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
    padding: 18px;
  }

  .culture-action-card h3 {
    font-size: clamp(17px, calc(var(--layout-w) * 4.6 / 100), 21px);
  }

  .culture-action-card p {
    font-size: clamp(12px, calc(var(--layout-w) * 3.2 / 100), 14px);
  }

  .culture-event-card {
    min-height: 0;
    padding: 20px;
  }

  .lower-image-card h3,
  .lower-text-card h2 {
    padding: 24px 24px 0;
    font-size: 24px;
  }

  .lower-image-card p,
  .lower-text-card p {
    padding: 18px 24px 28px;
  }

  .interview-grid {
    display: flex;
    gap: 34px;
    margin-right: calc(var(--side) * -1);
    padding-right: var(--side);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .interview-grid::-webkit-scrollbar {
    display: none;
  }

  .page-interview .interview-page-rows {
    display: grid;
    gap: 90px;
    margin-top: 80px;
  }

  .page-interview .interview-page-row {
    display: flex;
    gap: 34px;
    margin-right: calc(var(--side) * -1);
    padding-right: var(--side);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .page-interview .interview-page-row::-webkit-scrollbar {
    display: none;
  }

  .interview-card {
    flex: 0 0 calc(var(--layout-w) * 74 / 100);
    opacity: 1;
    scroll-snap-align: start;
    transform: none;
    transition: none;
  }

  .interview-card__image {
    height: calc(var(--layout-w) * 88 / 100);
  }

  .interview-card span {
    opacity: 1;
  }

  .interview-card span::before {
    animation: none;
    transform: scaleX(1);
  }

  .environment-teaser__grid,
  .environment-teaser__grid--page {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .photo-label,
  .photo-label--large {
    grid-row: auto;
    aspect-ratio: 1.38 / 1;
  }

.environment-teaser__grid .photo-label:nth-child(1) .photo-label__text,
.environment-teaser__grid .photo-label:nth-child(3) .photo-label__text {
    right: -16px;
    left: auto;
  }

  .environment-teaser__grid .photo-label:nth-child(2) .photo-label__text {
    top: -8px;
    left: -14px;
  }

  .environment-teaser__grid .photo-label:nth-child(3) .photo-label__text {
    top: -10px;
    right: -16px;
  }

  .lower-hero p {
    left: 24px;
    right: 24px;
    bottom: 34px;
    font-size: 24px;
  }

  .lower-hero {
    margin-top: 0;
    height: 520px;
  }

  .lower-hero__line--pc {
    display: none;
  }

  .lower-hero__line--sp {
    display: block;
  }

  .lower-hero__line--sp-about-narrow {
    display: none;
  }

  .lower-hero--about,
  .lower-hero--interview,
  .lower-hero--culture,
  .lower-hero--environment,
  .lower-hero--careers {
    height: clamp(365px, calc(var(--layout-w) * 110.6 / 100), 660px);
    overflow: visible;
    z-index: 1;
  }

  .lower-hero--about p {
    left: var(--side);
    right: var(--side);
    justify-items: start;
    top: auto;
    bottom: -62px;
    gap: min(calc(100vw * 10 / 500), 10px);
    width: auto;
    height: auto;
    font-size: min(calc(100vw * 22 / 500), 22px);
    line-height: 1.65;
    text-align: left;
  }

  .lower-hero--about img {
    --lower-hero-offset-y: 0;
    --lower-hero-scale-start: 1.1;
    --lower-hero-scale-end: 1.1;
    height: 100%;
    object-fit: cover;
    object-position: 47% center;
    transform-origin: center center;
  }

  @media (max-width: 423px) {
    .lower-hero__line--sp-about-wide {
      display: none;
    }

    .lower-hero__line--sp-about-narrow {
      display: block;
    }
  }

  .lower-hero--interview img {
    --lower-hero-scale-start: 1.15;
    --lower-hero-scale-end: 1.15;
    object-position: 45% 50%;
    transform-origin: center 75%;
  }

  .lower-hero--interview p {
    left: var(--side);
    right: var(--side);
    justify-items: start;
    bottom: -62px;
    gap: min(calc(100vw * 10 / 500), 10px);
    width: auto;
    height: auto;
    font-size: min(calc(100vw * 22 / 500), 22px);
    line-height: 1.65;
    text-align: left;
  }

  .lower-hero--interview p span {
    padding: 2px 10px 5px;
  }

  .page-interview .page-first {
    padding-top: clamp(150px, calc(var(--layout-w) * 50 / 100), 160px);
  }

  .lower-intro {
    padding-top: clamp(150px, calc(var(--layout-w) * 50 / 100), 160px);
  }

  .page-spirit-culture .culture-intro.lower-intro {
    padding-top: clamp(150px, calc(var(--layout-w) * 50 / 100), 160px);
  }

  .lower-hero--culture img {
    --lower-hero-scale-start: 1.05;
    --lower-hero-scale-end: 1.05;
    object-position: 32% 50%;
  }

  .lower-hero--culture p {
    top: auto;
    left: var(--side);
    right: var(--side);
    justify-items: start;
    align-content: start;
    bottom: -62px;
    gap: min(calc(100vw * 10 / 500), 10px);
    width: auto;
    height: auto;
    font-size: min(calc(100vw * 22 / 500), 22px);
    line-height: 1.65;
    text-align: left;
  }

  .lower-hero--culture p span {
    padding: 2px 10px 5px;
  }

  .lower-hero--environment img {
    --lower-hero-scale-start: 1.55;
    --lower-hero-scale-end: 1.55;
    object-position: 110% 50%;
    transform-origin: center 47%;
  }

  .lower-hero--environment.is-visible img {
    --lower-hero-scale-start: 1.55;
    --lower-hero-scale-end: 1.55;
    animation: none;
    object-position: 110% 50%;
    transform: scale(var(--lower-hero-scale-end));
    transform-origin: center 47%;
  }

  .lower-hero--environment p {
    justify-items: start;
    gap: min(calc(100vw * 10 / 500), 10px);
    font-size: min(calc(100vw * 22 / 500), 22px);
    line-height: 1.65;
    text-align: left;
    top: auto;
    bottom: -62px;
  }

  .page-environment .lower-intro {
    padding-top: clamp(150px, calc(var(--layout-w) * 50 / 100), 160px);
    padding-bottom: 36px;
  }

  .page-environment .lower-intro .section-body {
    gap: 0;
    margin-top: 32px;
    top: 0;
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
  }

  .env-support,
  .env-office,
  .env-numbers {
    display: block;
    padding-top: 48px;
    padding-bottom: 0;
  }

  .env-numbers {
    padding-bottom: 82px;
  }

  .env-support__heading h2 {
    margin-bottom: 14px;
    font-size: clamp(27px, calc(var(--layout-w) * 8 / 100), 30px);
    line-height: 1.34;
  }

  .env-support__heading p {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 600;
    letter-spacing: 1.2px;
  }

  .env-support__grid,
  .env-number-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 30px;
  }

  .env-support__grid,
  .env-office__body {
    width: 100%;
    padding-left: 0;
  }

  .env-support-card,
  .env-number-card {
    padding: 16px 18px;
  }

  .env-support-card h3 {
    margin-bottom: 14px;
    font-size: clamp(18px, calc(var(--layout-w) * 5.1 / 100), 20px);
    line-height: 1.35;
  }

  .env-support-card p,
  .env-office__text p,
  .env-number-card p {
    font-size: 13px;
    line-height: 1.65;
  }

  .env-office__body {
    gap: 24px;
    margin-top: 30px;
  }

  .env-office__text {
    gap: 20px;
  }

  .env-office__text h3 {
    margin-bottom: -20px;
    font-size: 14px;
    line-height: 2;
  }

  .env-number-card__label {
    margin-bottom: 20px !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
  }

  .env-number-card__value {
    margin-bottom: 20px !important;
    font-size: clamp(54px, calc(var(--layout-w) * 17 / 100), 66px) !important;
  }

  .env-number-card__value--mixed {
    font-size: clamp(16px, calc(var(--layout-w) * 4.8 / 100), 20px) !important;
    line-height: 1.45 !important;
  }

  .env-number-card__value--mixed span.number {
    font-size: clamp(30px, calc(var(--layout-w) * 9 / 100), 38px);
  }

  .env-number-card__value span.percent {
    font-size: clamp(18px, calc(var(--layout-w) * 1.75 / 100), 25px) !important;
  }

  .env-number-card__value--clothes {
    font-size: 16px !important;
  }

  .env-number-card__value--clothes span.number {
    font-size: clamp(28px, calc(var(--layout-w) * 8 / 100), 34px);
  }

  .lower-hero--careers img {
    --lower-hero-scale-start: 1.04;
    --lower-hero-scale-end: 1.04;
    object-position: 16% 50%;
    transform-origin: center 33%;
  }

  .lower-hero--careers p {
    left: var(--side);
    right: var(--side);
    bottom: -20px;
    justify-items: start;
    gap: min(calc(100vw * 10 / 500), 10px);
    width: auto;
    height: auto;
    font-size: min(calc(100vw * 22 / 500), 22px);
    line-height: 1.65;
    text-align: left;
  }

  .lower-hero--careers p span {
    padding: 2px 10px 5px;
  }

  .careers-page {
    padding-top: clamp(150px, calc(var(--layout-w) * 50 / 100), 160px);
  }

  .job-list h2 {
    margin-bottom: 30px;
    font-size: clamp(27px, calc(var(--layout-w) * 7.4 / 100), 32px);
    line-height: 1.15;
  }

  .job-list {
    gap: 76px;
    margin-top: 90px;
    padding-left: 0;
  }

  .job-link {
    margin-top: 20px;
    gap: 14px;
    padding: 4px 14px 6px;
    font-size: clamp(18px, calc(var(--layout-w) * 4.3 / 100), 28px);
    line-height: 1.55;
    font-weight: 500;
  }

  .job-link::after {
    flex-basis: 10px;
    width: 10px;
    height: 10px;
  }

  .job-link--compact {
    font-size: clamp(15px, calc(var(--layout-w) * 4.3 / 100), 21px);
    line-height: 1.55;
    white-space: nowrap;
  }

  .job-link__break {
    display: block;
  }

  .job-link--plain {
    min-height: auto;
    margin: 34px 0 12px;
    padding: 0;
    background: transparent;
    font-size: clamp(20px, calc(var(--layout-w) * 4.5 / 100), 28px);
    line-height: 1.55;
    font-weight: 500;
  }

  .job-link:not(.job-link--plain) + .job-link--plain {
    margin-top: 54px;
  }

  .site-footer {
    padding: 78px var(--side) 76px;
  }

  .site-footer__wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 0;
  }

  .site-footer__inner,
  .site-footer__company,
  .site-footer__navs {
    display: contents;
  }

  .brand--footer {
    order: 1;
    grid-column: 1 / -1;
    justify-self: center;
    margin-bottom: 72px;
  }

  .brand--footer img {
    width: min(260px, calc(var(--layout-w) * 64 / 100));
  }

  .footer-nav--main {
    order: 2;
    grid-column: 1 / -1;
    display: grid;
    justify-content: start;
    gap: 34px;
    margin-bottom: 66px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .18em;
  }

  .footer-nav--sub {
    order: 3;
    grid-column: 1 / 2;
    display: grid;
    justify-content: start;
    gap: 32px;
    margin: 0 0 68px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .08em;
  }

  .site-footer__sns {
    order: 4;
    grid-column: 2 / 3;
    justify-content: flex-end;
    gap: 18px;
    margin: 2px 0 68px;
  }

  .site-footer__sns a {
    width: 32px;
    height: 32px;
  }

  .site-footer__company p {
    order: 5;
    grid-column: 1 / -1;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: .08em;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* FB 2026-06-01: 430px以下でsectionの左右余白(--side)を縮小し本文を広く使う */
@media (max-width: 430px) {
  :root {
    --side: 20px;
  }

  .page-environment {
    --side: 20px;
  }
}

/* FB 2026-05-30 ②: 375px以下の狭い端末でだけ効く追加改行（390では出さない） */
.u-sp375-br {
  display: none;
}

@media (max-width: 385px) {
  .u-sp375-br {
    display: initial;
  }
}
