:root {
  --orange: #f0531c;
  --ink: #181311;
  --blue-ink: #022a3e;
  --slate: #50575c;
  --taupe: #6c6259;
  --muted: #6e6258;
  --paper: #fbf7f2;
  --soft: #f3f4f5;
  --peach: #ffe3d4;
  --container: min(100% - 48px, 1288px);
}

.fade-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--fade-delay, 0ms);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}

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

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

.site-header {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 200px 1fr 150px;
  margin: 0 auto;
  padding: 24px 0 18px;
  position: sticky !important;
  top: 0 !important;
  width: var(--container);
  z-index: 100000 !important;
}

.site-header::before {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  content: "";
  inset: 0 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: absolute;
  z-index: -1;
}

.brand img {
  height: 56px;
  object-fit: contain;
  width: 200px;
}

.nav,
.footer-nav {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: clamp(16px, 2vw, 34px);
  justify-content: flex-end;
  line-height: 1;
}

.nav a,
.footer-nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.footer-nav a:hover {
  color: var(--orange);
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 46px;
  padding: 0 28px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--orange);
  color: #fff;
}

.button-primary:hover {
  background: #c94313;
}

.button-secondary {
  background: var(--peach);
  border: 1.2px solid var(--ink);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.button-secondary.pale,
.button-light {
  background: var(--paper);
  border: 1.2px solid var(--ink);
  color: var(--ink);
}

.button-secondary.pale:hover,
.button-light:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.header-button {
  padding-inline: 20px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 46px;
  justify-content: center;
  list-style: none;
  position: relative;
  width: 46px;
  z-index: 30;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  background: #fff;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: opacity 160ms ease, transform 160ms ease;
  width: 20px;
}

.mobile-menu[open] summary span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] summary span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu[open] summary {
  position: fixed;
  right: 28px;
  top: 28px;
}

.mobile-nav {
  background: #fff;
  border: 1px solid rgba(24, 19, 17, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(24, 19, 17, 0.16);
  display: grid;
  gap: 8px;
  max-height: calc(100vh - 40px);
  min-height: min(80vh, 680px);
  overflow-y: auto;
  padding: 88px 28px 32px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: min(80vw, 420px);
  z-index: 20;
}

.mobile-nav a:not(.button) {
  border-radius: 6px;
  font-size: clamp(24px, 7.5vw, 36px);
  font-weight: 700;
  line-height: 1;
  padding: 14px 0;
}

.mobile-nav a:not(.button):hover {
  background: var(--soft);
  color: var(--orange);
}

.mobile-nav .button {
  font-size: 16px;
  justify-self: start;
  margin-top: 18px;
  min-height: 52px;
  min-width: 180px;
}

.site-header:has(.mobile-menu[open]),
body.menu-open .site-header {
  inset: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  pointer-events: none;
  position: fixed !important;
  width: 100% !important;
  z-index: 2147483644 !important;
}

.site-header:has(.mobile-menu[open]) .brand,
.site-header:has(.mobile-menu[open]) .nav,
.site-header:has(.mobile-menu[open]) .header-button,
body.menu-open .site-header .brand,
body.menu-open .site-header .nav,
body.menu-open .site-header .header-button {
  visibility: hidden !important;
}

.site-header:has(.mobile-menu[open]) .mobile-menu,
body.menu-open .mobile-menu {
  pointer-events: none;
}

.site-header:has(.mobile-menu[open]) .mobile-menu summary,
.site-header:has(.mobile-menu[open]) .mobile-nav,
body.menu-open .mobile-menu summary,
body.menu-open .mobile-nav {
  pointer-events: auto;
}

.site-header:has(.mobile-menu[open]) .mobile-nav,
body.menu-open .mobile-nav {
  background: #fff !important;
  bottom: auto !important;
  box-shadow: 0 20px 60px rgba(24, 19, 17, 0.16) !important;
  max-height: calc(100vh - 32px) !important;
  min-height: min(80vh, 680px) !important;
  opacity: 1 !important;
  overflow-y: auto !important;
  position: fixed !important;
  right: 16px !important;
  top: 16px !important;
  transform: none !important;
  width: min(80vw, 420px) !important;
  z-index: 2147483646 !important;
}

.site-header:has(.mobile-menu[open]) .mobile-menu summary,
body.menu-open .mobile-menu summary {
  position: fixed !important;
  right: 20px !important;
  top: 20px !important;
  z-index: 2147483647 !important;
}

.section-grid {
  display: grid;
  gap: clamp(48px, 8vw, 112px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.83fr);
  margin: 0 auto;
  width: var(--container);
}

.eyebrow {
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.orange {
  color: var(--orange);
}

.muted {
  color: var(--muted);
}

.peach {
  color: var(--peach);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1.5;
  margin: 26px 0 36px;
}

h2 {
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 1.18;
  margin: 28px 0 0;
}

.lead {
  font-size: 20px;
  line-height: 1.7;
  max-width: 600px;
}

.hero {
  align-items: center;
  grid-template-columns: 1fr;
  min-height: 450px;
  padding: 90px 3% 50px;
}

.hero-copy {
  max-width: 1180px;
  padding-top: 16px;
  width: 100%;
}

.hero .lead {
  max-width: 100%;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-media {
  aspect-ratio: 430 / 520;
  background: var(--orange);
  border-radius: 8px;
  justify-self: end;
  max-width: 430px;
  position: relative;
  width: 100%;
}

.hero-media::after {
  background: rgba(184, 58, 12, 0.2);
  border-radius: 8px;
  content: "";
  inset: 35px -24px -35px 35px;
  position: absolute;
  z-index: -1;
}

.hero-mark {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52%;
}

.mission-band {
  background: var(--slate);
  color: #fff;
  padding: 77px 0 42px;
}

.mission-inner {
  align-items: start;
}

.mission-label {
  margin-top: 52px;
}

.mission-text {
  display: grid;
  gap: 44px;
  justify-items: end;
  padding-top: 90px;
}

.mission-text p {
  font-size: 20px;
  line-height: 1.75;
  margin: 0;
  max-width: 500px;
}

.mission-text img {
  width: 104px;
}

.solution-section {
  background: #fff !important;
  padding: 58px 0 72px;
  width: 100%;
}

.solution-intro {
  align-items: start;
}

.solution-intro p:last-child {
  font-size: 20px;
  line-height: 1.7;
  margin: 46px 0 0;
}

.business-cards {
  display: grid;
  gap: 0;
  margin: 0 auto;
  width: 80%;
}

.business-card {
  background: #fff;
  border-bottom: 1px solid rgba(24, 19, 17, 0.62);
  border-radius: 0;
  display: grid;
  gap: clamp(56px, 9vw, 160px);
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1fr);
  min-height: 260px;
  padding: 48px 50px 66px;
}

.business-card:first-child {
  border-top: 1px solid rgba(24, 19, 17, 0.62);
}

.card-rule {
  display: none;
}

.card-number {
  color: #555;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 18px;
}

.business-card h3 {
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(36px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 18px;
}

.card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.28;
  margin-bottom: 0;
}

.business-card dl,
.company-table dl {
  margin: 0;
}

.business-card dl {
  align-self: start;
  padding-top: 24px;
}

.business-card dl div {
  margin-top: 0;
}

.business-card dt {
  display: none;
}

.business-card dd {
  color: #555;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  margin: 0;
}

.about-section {
  background: var(--soft);
  padding: 84px 0 148px;
}

.about-heading {
  align-items: start;
}

.about-symbol {
  justify-self: center;
  width: 220px;
}

.about-content {
  align-items: start;
  margin-top: 30px;
}

.company-table dl div {
  border-top: 1px solid rgba(110, 98, 88, 0.24);
  display: grid;
  gap: 30px;
  grid-template-columns: 120px 1fr;
  max-width: 500px;
  padding: 20px 0;
}

.company-table dl div:last-child {
  border-bottom: 1px solid rgba(110, 98, 88, 0.24);
}

.company-table dt {
  color: var(--blue-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.company-table dd {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.about-copy {
  padding-top: 12px;
}

.about-copy p {
  font-size: 19px;
  line-height: 1.74;
  margin-bottom: 62px;
  max-width: 480px;
}

.news-section {
  min-height: 406px;
  padding: 78px max(24px, calc((100vw - 1288px) / 2)) 80px;
  position: relative;
}

.news-section h2 {
  font-size: 44px;
  margin-top: 34px;
}

.news-empty {
  left: 50%;
  max-width: 500px;
  position: absolute;
  text-align: center;
  top: 196px;
  transform: translateX(-50%);
  width: min(500px, calc(100% - 48px));
}

.news-empty p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 32px;
}

.news-empty span {
  background: rgba(110, 98, 88, 0.24);
  display: block;
  height: 1px;
  width: 100%;
}

.career-band {
  background: var(--taupe);
  color: var(--paper);
  margin: 0;
  min-height: 664px;
  padding: 120px max(24px, calc((100vw - 1288px) / 2)) 114px;
  width: 100%;
}

.career-copy {
  min-height: 324px;
  position: relative;
}

.career-copy p {
  color: #fff;
  font-size: 21px;
  line-height: 1.72;
  margin-bottom: 58px;
  margin-top: 3%;
  max-width: 900px;
}

.career-copy img {
  bottom: 0;
  opacity: 0.96;
  position: absolute;
  right: 0;
  width: 260px;
}

.contact-band {
  align-items: center;
  background: var(--soft);
  margin: 0;
  padding: 70px max(24px, calc((100vw - 1288px) / 2)) 78px;
  width: 100%;
}

.contact-brand img {
  height: 56px;
  object-fit: contain;
  width: 200px;
}

.contact-brand p {
  color: var(--muted);
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 800;
  margin-top: 208px;
}

.contact-band h2 {
  font-size: clamp(36px, 3.7vw, 46px);
  line-height: 1.17;
  margin-top: 0;
}

.contact-band p {
  font-size: 18px;
  line-height: 1.5;
  margin: 40px 0 42px;
}

.site-footer {
  background: var(--slate);
  color: #fff;
  min-height: 359px;
  padding: 56px 24px 44px;
  position: relative;
  text-align: center;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  height: 47px;
  object-fit: contain;
  width: 165px;
}

.footer-nav {
  justify-content: center;
  margin-top: 54px;
}

.footer-rule {
  background: rgba(255, 255, 255, 0.72);
  height: 1px;
  margin: 32px auto 12px;
  max-width: 505px;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  gap: 12px 28px;
  justify-content: center;
  letter-spacing: 2.25px;
  line-height: 1.5;
}

.footer-links a {
  align-items: center;
  display: inline-flex;
  gap: 5px;
}

.footer-links img {
  filter: grayscale(1) brightness(0) invert(1);
  height: 15px;
  object-fit: contain;
  width: 18px;
}

.copyright {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  letter-spacing: 2.25px;
  margin: 28px 0 0;
}

.page-top {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  left: 76px;
  line-height: 1;
  position: absolute;
  top: 160px;
  transform: rotate(90deg);
  transform-origin: left center;
}

.about-page {
  overflow: hidden;
}

.about-hero {
  align-items: start;
  display: grid;
  gap: clamp(48px, 12vw, 148px);
  grid-template-columns: minmax(0, 765px) minmax(320px, 430px);
  margin: 120px auto 0;
  width: var(--container);
}

.about-title-chip {
  background: var(--soft);
  border-bottom-right-radius: 100px;
  border-top-right-radius: 100px;
  margin-left: max(-76px, calc((100vw - 1288px) / -2));
  min-height: 179px;
  padding: 37px 80px 42px 76px;
}

.about-title-chip h1 {
  font-size: clamp(42px, 4vw, 51px);
  line-height: 1;
  margin: 20px 0 0;
}

.about-hero-media {
  aspect-ratio: 430 / 298;
  background: var(--orange);
  border-radius: 8px;
  margin-top: 15px;
  position: relative;
}

.about-hero-media::after {
  background: rgba(184, 58, 12, 0.2);
  border-radius: 8px;
  content: "";
  inset: 12px -23px -12px 23px;
  position: absolute;
  z-index: -1;
}

.about-hero-mark {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52%;
}

.philosophy-block {
  margin: 130px auto 0;
  width: min(100% - 96px, 1080px);
}

.philosophy-row {
  display: grid;
  gap: 72px;
  grid-template-columns: 220px 1fr;
}

.philosophy-row + .philosophy-row {
  margin-top: 150px;
}

.philosophy-label p {
  font-family: "Archivo", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}

.philosophy-label span,
.about-section-heading p {
  color: var(--orange);
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.philosophy-copy {
  border-top: 1px solid rgba(24, 19, 17, 0.5);
  padding-top: 30px;
}

.philosophy-copy h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: 3.2px;
  line-height: 1.4;
  margin: 0 0 34px;
}

.philosophy-copy p {
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 2.4px;
  line-height: 1.5;
  margin: 0;
}

.turning-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 170px auto 0;
  max-width: 1090px;
  min-height: 720px;
  position: relative;
}

.map-circle {
  align-items: center;
  aspect-ratio: 1;
  border: 1.4px solid var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
  padding: 68px;
  text-align: center;
}

.map-people {
  border-color: #b83a0c;
  color: var(--blue-ink);
}

.map-business {
  color: var(--blue-ink);
  margin-left: -100px;
}

.map-circle h3,
.map-japan h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 18px;
}

.map-circle h3 span {
  color: var(--orange);
  font-weight: 700;
}

.map-people h3 span,
.map-people strong {
  color: #b83a0c;
}

.map-business strong {
  color: var(--orange);
}

.map-circle p,
.map-japan p {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2.24px;
  line-height: 1.2;
}

.map-circle small,
.map-japan small {
  display: block;
  font-size: 20px;
  letter-spacing: 2.24px;
  line-height: 1.5;
}

.map-kicker {
  font-size: 36px;
  margin-bottom: 26px;
}

.map-japan {
  bottom: 0;
  color: var(--blue-ink);
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: min(430px, 90%);
}

.map-japan h3 {
  font-size: 24px;
  line-height: 1.45;
}

.map-japan h3 span,
.map-japan strong {
  color: #ffc300;
}

.value-section {
  background: var(--soft);
  border-radius: 71px;
  margin-top: 160px;
  padding: 170px max(48px, calc((100vw - 882px) / 2)) 150px;
}

.about-section-heading {
  align-items: center;
  display: flex;
  gap: 40px;
  margin: 0 auto 96px;
  width: min(100%, 882px);
}

.about-section-heading h2 {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.value-list {
  display: grid;
  gap: 74px;
  margin: 0 auto;
  width: min(100%, 882px);
}

.value-item {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: 150px 42px 1fr;
}

.value-item img {
  height: 150px;
  margin-top: -30px;
  object-fit: contain;
  width: 150px;
}

.value-item span {
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  padding-top: 15px;
}

.value-item h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 18px;
}

.value-item p {
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3.2px;
  line-height: 1.65;
}

.company-section {
  padding: 147px 0 140px;
}

.company-section .about-section-heading,
.about-company-table {
  width: min(100% - 96px, 884px);
}

.about-company-table,
.history-table {
  margin: 0 auto;
}

.about-company-table div,
.history-table div {
  border-bottom: 1px dashed #959595;
  display: grid;
  gap: 40px;
  grid-template-columns: 160px 1fr;
  padding: 20px 50px;
}

.about-company-table dt,
.about-company-table dd,
.history-table dt,
.history-table dd {
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.team-photo-section {
  margin: 0 0 -39px auto;
  max-width: 1320px;
  overflow: hidden;
  width: calc(100% - 120px);
}

.team-photo-section img {
  border-bottom-left-radius: 200px;
  border-top-left-radius: 200px;
  height: 402px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.history-section {
  background: var(--taupe);
  border-top-left-radius: 71px;
  border-top-right-radius: 71px;
  color: #fff;
  margin: 0 auto;
  padding: 147px 0 140px;
  width: min(100% - 160px, 1280px);
}

.history-heading p {
  color: #fff;
}

.history-table {
  width: min(100% - 96px, 884px);
}

.history-table div {
  border-color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  :root {
    --container: min(90%, 720px);
  }

  .site-header {
    gap: 18px;
    grid-template-columns: 1fr auto;
    padding-top: 24px;
    position: sticky;
    top: 0;
  }

  .brand img {
    height: 42px;
    width: 150px;
  }

  .nav,
  .header-button {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .section-grid,
  .business-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 84px;
  }

  .hero-media {
    justify-self: start;
    max-width: 360px;
  }

  .mission-text {
    justify-items: start;
    padding-top: 0;
  }

  .business-cards {
    gap: 0;
    margin-top: 0;
    width: 90%;
  }

  .business-card {
    gap: 26px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0 42px;
  }

  .business-card dl {
    padding-top: 0;
  }

  .about-symbol {
    justify-self: start;
  }

  .about-content {
    margin-top: 48px;
  }

  .career-copy {
    min-height: 360px;
  }

  .contact-brand p {
    margin-top: 40px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    margin-inline: auto;
    width: max-content;
  }

  .page-top {
    display: none;
  }

  .news-section,
  .career-band,
  .contact-band {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .about-hero,
  .philosophy-row,
  .turning-map,
  .value-item {
    grid-template-columns: 1fr;
  }

  .about-hero {
    gap: 48px;
    margin-top: 70px;
  }

  .about-title-chip {
    margin-left: -5vw;
    padding-left: 5vw;
    width: calc(100% + 5vw);
  }

  .about-hero-media {
    max-width: 430px;
  }

  .philosophy-block,
  .company-section .about-section-heading,
  .about-company-table,
  .history-table {
    width: 90%;
  }

  .philosophy-row {
    gap: 28px;
  }

  .turning-map {
    gap: 24px;
    min-height: auto;
  }

  .map-circle {
    margin: 0;
    max-width: none;
    padding: 52px;
  }

  .map-japan {
    background: #fff;
    border: 1.4px solid #ffc300;
    border-radius: 999px;
    padding: 44px 36px;
    position: static;
    transform: none;
    width: 100%;
  }

  .value-section {
    border-radius: 48px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .about-section-heading,
  .value-list {
    width: 100%;
  }

  .value-item {
    gap: 12px;
  }

  .value-item img {
    height: 120px;
    margin-top: 0;
    width: 120px;
  }

  .team-photo-section {
    width: 95%;
  }

  .history-section {
    width: 90%;
  }
}

@media (max-width: 560px) {
  :root {
    --container: 90%;
  }
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .lead,
  .solution-intro p:last-child,
  .mission-text p,
  .career-copy p {
    font-size: 17px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    min-height: 44px;
  }

  .hero-media::after {
    inset: 22px -14px -22px 18px;
  }

  .mission-band,
  .solution-section,
  .about-section,
  .career-band,
  .contact-band {
    padding-block: 70px;
  }

  .business-card {
    gap: 26px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0 42px;
  }

  .business-card dl {
    padding-top: 0;
  }

  .company-table dl div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 0;
  }

  .company-table dd {
    font-size: 16px;
  }

  .news-section {
    min-height: 360px;
  }

  .career-copy img {
    width: 180px;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .about-title-chip {
    min-height: 150px;
    padding-bottom: 34px;
    padding-top: 32px;
  }

  .about-title-chip h1 {
    font-size: 36px;
  }

  .about-hero-media::after {
    inset: 12px -14px -12px 18px;
  }

  .philosophy-block {
    margin-top: 80px;
  }

  .philosophy-row + .philosophy-row {
    margin-top: 90px;
  }

  .philosophy-label p {
    font-size: 30px;
  }

  .philosophy-copy h2 {
    font-size: 22px;
    letter-spacing: 1.4px;
  }

  .philosophy-copy p,
  .map-circle small,
  .map-japan small {
    font-size: 16px;
    letter-spacing: 1.2px;
  }

  .turning-map {
    margin-top: 80px;
  }

  .map-circle {
    padding: 36px 28px;
  }

  .map-circle h3,
  .map-japan h3 {
    font-size: 24px;
  }

  .map-circle p,
  .map-japan p {
    font-size: 17px;
  }

  .value-section {
    margin-top: 90px;
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .about-section-heading {
    gap: 18px;
    margin-bottom: 52px;
  }

  .about-section-heading h2 {
    font-size: 34px;
  }

  .value-list {
    gap: 56px;
  }

  .value-item h3 {
    font-size: 26px;
  }

  .value-item p {
    font-size: 14px;
    letter-spacing: 1.4px;
  }

  .company-section,
  .history-section {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .about-company-table div,
  .history-table div {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .about-company-table dt,
  .about-company-table dd,
  .history-table dt,
  .history-table dd {
    font-size: 16px;
  }

  .team-photo-section {
    margin-bottom: -28px;
    width: 95%;
  }

  .team-photo-section img {
    border-bottom-left-radius: 80px;
    border-top-left-radius: 80px;
    height: 260px;
  }

  .history-section {
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
  }
}
