@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/noto-sans-jp.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/noto-serif-jp.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("../fonts/roboto.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans Symbols 2";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/noto-sans-symbols2.woff2") format("woff2");
  unicode-range: U+2715;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color: #121212;
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
h1,
h2,
p,
ul {
  margin: 0;
}

body {
  min-width: 320px;
}

main {
  font-weight: 350;
}

ul {
  padding: 0;
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
  font: inherit;
  cursor: pointer;
}

button,
a {
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

[hidden] {
  display: none !important;
}

.only-mobile {
  display: none;
}
@media (max-width: 767px) {
  .only-mobile {
    display: initial;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.detail-link,
.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  max-width: 100%;
  padding-bottom: 17px;
  border: 0;
  text-decoration: none;
  font-weight: 350;
}
.detail-link > img,
.outline-link > img {
  flex-shrink: 0;
  width: 28px;
  height: 10px;
}
.detail-link:not(:has(img))::after,
.outline-link:not(:has(img))::after {
  flex-shrink: 0;
  width: 28px;
  height: 10px;
  background: currentColor;
  mask: url("../images/arrow-contact.svg") center/contain no-repeat;
  content: "";
}
.detail-link > img, .detail-link::after,
.outline-link > img,
.outline-link::after {
  transition: transform 200ms ease;
}
@media (hover: hover) {
  .detail-link:not(:disabled):hover,
  .outline-link:not(:disabled):hover {
    text-decoration: none;
  }
  .detail-link:not(:disabled):hover > img, .detail-link:not(:disabled):hover::after,
  .outline-link:not(:disabled):hover > img,
  .outline-link:not(:disabled):hover::after {
    transform: translateX(var(--arrow-shift, 4px));
  }
}

.detail-link {
  align-self: flex-start;
  min-height: 44px;
  margin-block: -11px;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.13em;
}
@media (max-width: 767px) {
  .detail-link {
    gap: 16px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
}

.outline-link {
  width: 220px;
  min-height: 56px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  main .outline-link {
    width: fit-content;
    justify-content: center;
  }
}

.site-header__nav .page-nav {
  position: absolute;
  inset: 100% 0 auto;
  max-height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  padding: 30px 3.645833%;
  color: #121212;
  background: #fff;
}
.site-header__nav .page-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px clamp(24px, 3.802083vw, 73px);
}
.site-header__nav .page-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 160px;
  min-height: 60px;
  padding-bottom: 17px;
  border-bottom: 1px solid #b9b9b9;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  white-space: normal;
}
.site-header__nav .page-nav__link > span,
.site-header__nav .page-nav__link > img {
  position: relative;
  top: 16px;
}
.site-header__nav .page-nav__link::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms ease;
  content: "";
}
.site-header__nav .page-nav__link img {
  flex-shrink: 0;
  width: 28px;
  height: 10px;
}
.site-header__nav .page-nav__link > img, .site-header__nav .page-nav__link::after {
  transition: transform 200ms ease;
}
@media (hover: hover) {
  .site-header__nav .page-nav__link:not(:disabled):hover {
    text-decoration: none;
  }
  .site-header__nav .page-nav__link:not(:disabled):hover > img, .site-header__nav .page-nav__link:not(:disabled):hover::after {
    transform: translateX(var(--arrow-shift, 4px));
  }
}
.site-header__nav .page-nav__link:focus-visible::before {
  transform: scaleX(1);
}
.site-header__nav .page-nav__link:focus-visible > img {
  transform: translateX(var(--arrow-shift, 4px));
}
@media (hover: hover) {
  .site-header__nav .page-nav__link:hover::before {
    transform: scaleX(1);
  }
}

.site-header__nav [data-submenu=rd] .page-nav__link {
  min-width: max-content;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .site-header__nav [data-submenu=ir] .page-nav__list {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 160px));
  }
  .site-header__nav [data-submenu=ir] .page-nav__link {
    width: 100%;
    gap: clamp(10px, 0.78125vw, 15px);
  }
  .site-header__nav [data-submenu=ir] .page-nav__link img {
    width: 28.1674px;
    height: 9.845px;
  }
}
.mobile-menu__nav .page-nav {
  margin-block: 12.5px;
  padding: 12.5px 50px;
  background: #f5f5f5;
}
.mobile-menu__nav .page-nav__link {
  display: flex;
  align-items: center;
  min-height: 39px;
  padding-block: 12.5px;
  font-size: 0.75rem;
  line-height: 1.166667;
  letter-spacing: 0.1em;
  overflow-wrap: anywhere;
}
.mobile-menu__nav .page-nav__link img, .mobile-menu__nav .page-nav__link .external-link-icon {
  display: none;
}

.page-intro__eyebrow {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125rem;
  letter-spacing: 0.1em;
}
.page-intro__eyebrow::after {
  display: block;
  width: 50px;
  height: 1px;
  margin-top: 30px;
  background: currentColor;
  content: "";
}
.page-intro__heading {
  margin-top: 45px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.4em;
  overflow-wrap: anywhere;
}
@media (max-width: 767px) {
  .page-intro__eyebrow {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .page-intro__eyebrow::after {
    width: 30px;
    margin-top: 20px;
  }
  .page-intro__heading {
    margin-top: 28px;
    font-size: 1.75rem;
    letter-spacing: 0.3em;
  }
}

html {
  --header-height: 100px;
  scroll-padding-top: var(--header-height);
}

.include-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.include-header:empty {
  min-height: var(--header-height);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(40px, 11.4583vw, 220px);
  height: var(--header-height);
  padding-inline: 3.645833vw;
  background: #fff;
}
.site-header__logo {
  flex-shrink: 0;
}
.site-header__logo img {
  width: 91px;
  height: 30px;
}
.site-header__nav {
  min-width: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 350;
}
.site-header__nav .navigation-list {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.645833vw, 70px);
  white-space: nowrap;
}
.site-header__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.1em;
}
.site-header__language {
  flex-shrink: 0;
  margin-left: auto;
}

.site-header__nav .navigation-list > li > a {
  position: relative;
}
@media (min-width: 1200px) {
  .site-header__nav .navigation-list > li > a {
    top: 5px;
  }
}
.site-header__nav .navigation-list > li > a::after {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms ease;
  content: "";
}
.site-header__nav .navigation-list > li > a[aria-current=page]::after, .site-header__nav .navigation-list > li > a:focus-visible::after {
  transform: scaleX(1);
}
@media (hover: hover) {
  .site-header__nav .navigation-list > li > a:hover::after {
    transform: scaleX(1);
  }
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.language-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 200;
}
.language-switch [aria-current] {
  font-weight: 400;
}
.language-switch > span {
  width: 1px;
  height: 12px;
  background-color: #999;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: -12px;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle img {
  width: 21px;
  height: 17px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0 0 max(35px, env(safe-area-inset-bottom));
  border: none;
  overflow-y: auto;
  color: #121212;
  background: #fff;
}
.mobile-menu::backdrop {
  background: #fff;
}
.mobile-menu__header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding-inline: 25px;
  background: #fff;
}
.mobile-menu__header img {
  width: 66px;
  height: 22px;
}
.mobile-menu__close {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -12px;
  border: 0;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__close:focus, .mobile-menu__close:focus-visible {
  outline: none;
  box-shadow: none;
}
.mobile-menu__close img {
  width: 20px;
  height: 20px;
}
.mobile-menu.is-keyboard-navigation .mobile-menu__close:focus-visible::after {
  position: absolute;
  bottom: 7px;
  left: 12px;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}
.mobile-menu__nav {
  margin-top: 22.5px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 350;
}
.mobile-menu__nav .navigation-list {
  display: flex;
  flex-direction: column;
}
.mobile-menu__nav .navigation-list > li > a,
.mobile-menu__nav .navigation-list__toggle {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 42px;
  padding: 12.5px 35px;
  font-size: 0.875rem;
  line-height: 1.214286;
  letter-spacing: 0.1em;
  text-align: left;
}
.mobile-menu__nav [data-submenu] > .navigation-list__link {
  display: none;
}
.mobile-menu__nav .navigation-list > li:first-child .navigation-list__toggle {
  min-height: 45px;
  line-height: 1.428571;
}
.mobile-menu__nav .navigation-list__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.mobile-menu__nav .navigation-list__plus {
  width: 14px;
  height: 14px;
}
.mobile-menu__nav .navigation-list__minus {
  display: none;
  width: 14px;
  height: 14px;
}
.mobile-menu__nav [aria-expanded=true] .navigation-list__plus {
  display: none;
}
.mobile-menu__nav [aria-expanded=true] .navigation-list__minus {
  display: block;
}
.mobile-menu__bottom {
  display: flex;
  justify-content: flex-end;
  height: 25px;
  margin: 12.5px 35px 0;
}
.mobile-menu__bottom a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: -9.5px;
}
.mobile-menu__bottom img {
  width: 25px;
  height: 25px;
}

html.is-menu-open {
  overflow: hidden;
  scrollbar-gutter: stable;
}

@media (max-width: 1600px) and (min-width: 1200px) {
  .site-header {
    gap: 5vw;
  }
  .site-header__nav .navigation-list {
    gap: clamp(20px, 2.8vw, 44px);
  }
}
@media (max-width: 1199px) {
  html {
    --header-height: 80px;
  }
  .site-header {
    padding-inline: 35px;
  }
  .site-header__nav, .site-header__language {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  html:not(.has-js) .site-header {
    height: auto;
    min-height: 80px;
    flex-wrap: wrap;
    gap: 20px;
    padding-block: 20px;
  }
  html:not(.has-js) .site-header__nav {
    display: block;
    width: 100%;
  }
  html:not(.has-js) .site-header__nav .navigation-list {
    flex-wrap: wrap;
    gap: 8px 24px;
  }
}
@media (max-width: 767px) {
  html {
    --header-height: 60px;
  }
  .site-header {
    padding-inline: 25px;
  }
  .site-header__logo img {
    width: 66px;
    height: 22px;
  }
}
.subfooter {
  display: flex;
  align-items: flex-end;
  min-height: 100px;
  padding: 0 6.25% 9px;
  background: #e9e9e9;
}
.subfooter__link {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  min-height: 44px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.07em;
}
.subfooter__link img {
  width: 28px;
  height: 10px;
}

.site-footer {
  min-height: 525px;
  padding: 80px 6.25% 40px;
  background: #fff;
  font-family: "Roboto", Arial, sans-serif, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
.site-footer__main {
  display: grid;
  grid-template-columns: 110px 220px 1fr;
  column-gap: clamp(50px, 9.635417vw, 185px);
  row-gap: 30px;
  align-items: start;
}
.site-footer__logo img {
  width: 110px;
  height: 36px;
}
.site-footer__nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(36px, 4.6875vw, 90px);
}
.site-footer__nav .external-link-icon {
  display: none;
}
.site-footer__label {
  margin-bottom: 30px;
  color: #9f9f9f;
  font-size: 0.625rem;
  line-height: 0.75rem;
  letter-spacing: 0.1em;
}
.site-footer__group ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.site-footer__group a {
  display: inline-block;
  padding-block: 5px;
  margin-block: -5px;
  transition: color 300ms ease-out;
}
@media (hover: hover) {
  .site-footer__group a:hover {
    color: #6e6e6e;
  }
}
.site-footer__contact {
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid currentColor;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.142857;
  transition: background-color 200ms ease, border-color 200ms ease;
}
.site-footer__contact:focus-visible {
  border-color: transparent;
  background-color: #ededed;
}
@media (hover: hover) {
  .site-footer__contact:not(:disabled):hover {
    border-color: transparent;
    background-color: #ededed;
    text-decoration: none;
  }
}
.site-footer__social {
  grid-column: 3;
  display: flex;
  justify-content: flex-end;
  gap: 11px;
  margin: -9px;
}
.site-footer__social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}
.site-footer__social img {
  width: 25px;
  height: 25px;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 29px;
  border-top: 1px solid #d9d9d9;
  color: #9f9f9f;
  font-size: 0.625rem;
  line-height: 0.75rem;
}
.site-footer__copyright {
  font-size: inherit;
}
.site-footer__legal {
  display: flex;
  gap: 30px;
}
.site-footer__legal a {
  display: inline-block;
  padding-block: 5px;
  margin-block: -5px;
}
.site-footer__logo, .site-footer__social a {
  transition: opacity 180ms ease;
}
@media (hover: hover) {
  .site-footer__logo:hover, .site-footer__social a:hover {
    opacity: 0.6;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .site-footer__main {
    grid-template-columns: 180px minmax(0, 1fr);
    column-gap: 40px;
  }
  .site-footer__contact {
    grid-column: 1;
    grid-row: 2;
    width: 180px;
  }
  .site-footer__nav {
    grid-column: 2;
    grid-row: 1/3;
  }
  .site-footer__social {
    grid-column: 2;
  }
}
@media (max-width: 767px) {
  .subfooter {
    min-height: 40px;
    padding: 0;
  }
  .subfooter__link {
    position: relative;
    justify-content: flex-end;
    width: 100%;
    min-height: 40px;
    background: url("../images/pagetop-mobile.svg") right center/375px 40px no-repeat;
  }
  .subfooter__link .sr-only {
    left: 1px;
  }
  .subfooter__link [data-page-top-label],
  .subfooter__link img {
    display: none;
  }
  .site-footer {
    min-height: 692px;
    padding: 40px 35px 32px;
  }
  .site-footer__main {
    grid-template-columns: minmax(0, 1fr) 75px;
    gap: 28px 10px;
  }
  .site-footer__logo {
    grid-column: 1/-1;
    min-height: 22px;
    margin-bottom: 32px;
  }
  .site-footer__logo img {
    width: 66px;
    height: 22px;
  }
  .site-footer__nav {
    grid-column: 1;
    grid-row: 2;
    flex-direction: column;
    gap: 28px;
  }
  .site-footer__label {
    margin-bottom: 12px;
    color: #9f9f9f;
    font-size: 0.625rem;
    line-height: 0.75rem;
  }
  .site-footer__group ul {
    gap: 12px;
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
  .site-footer__group:first-child .site-footer__label {
    margin-bottom: 16px;
  }
  .site-footer__group:first-child ul {
    gap: 16px;
  }
  .site-footer__contact {
    grid-column: 1;
    grid-row: 3;
    width: 160px;
    min-height: 40px;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 0.75rem;
    line-height: 1.166667;
  }
  .site-footer__contact img {
    width: 17px;
    height: 6px;
  }
  .site-footer__social {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
    gap: 6px;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
    padding-top: 15px;
    color: #656d67;
    font-size: 0.625rem;
    line-height: 0.75rem;
  }
  .site-footer__legal {
    order: -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .site-footer__legal a {
    min-height: 20px;
    padding-block: 4px;
    margin-block: -4px;
  }
}
.hero {
  position: relative;
  height: calc(61.354167vw - 100px);
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: #0b0c0c;
}
.hero__picture {
  position: absolute;
  inset: 0;
}
.hero__image {
  position: absolute;
  top: calc(50% - 50px);
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  transform: translateY(-50%);
}
.hero__heading {
  position: absolute;
  top: calc(50% - 50px);
  left: 50%;
  width: max-content;
  max-width: calc(100% - 70px);
  transform: translate(-50%, -50%);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.875rem, 2.1875vw, 2.625rem);
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
  text-align: center;
}
.hero__heading > span {
  display: block;
}

.home-sections {
  display: grid;
  gap: 4px;
  padding-top: 4px;
  background: #e9e9e9;
}

.feature {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 480px;
  height: 39.583333vw;
  overflow: hidden;
  color: #fff;
  background: #080909;
}
.feature__picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.feature__image {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.feature__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(110px, 10.416667vw, 200px);
  width: 100%;
  padding: 50px 7.65625%;
}
.feature__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(24px, 2.083333vw, 40px);
}
.feature__eyebrow {
  font-weight: 400;
  font-family: "Roboto", Arial, sans-serif, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  letter-spacing: 0.1em;
}
.feature__eyebrow::after {
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 19px;
  background: currentColor;
  content: "";
}
.feature__heading {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.875rem, 2.1875vw, 2.625rem);
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.feature__description {
  font-size: clamp(1rem, 1.145833vw, 1.375rem);
  font-weight: 350;
  line-height: 1.818182;
  letter-spacing: 0.13em;
}
.feature__description span {
  display: block;
}
.feature--philosophy {
  color: #343434;
  background: #dae4e8;
}
.feature--philosophy .feature__image {
  object-fit: fill;
}
.feature--philosophy .feature__heading {
  color: #121212;
}
.feature--story .feature__image {
  top: -59.88%;
  height: 378.62%;
}
.feature--business .feature__image {
  top: -279.91%;
  left: -0.01%;
  width: 127.77%;
  height: 483.77%;
}
.feature--strength .feature__image {
  top: -8.81%;
  left: -8.83%;
  width: 117.62%;
  height: 371.13%;
  object-fit: fill;
}
.feature--research .feature__image {
  top: -34.5%;
  left: -0.13%;
  width: 100.26%;
  height: 169%;
}
.feature--research .feature__content {
  transform: translateY(26px);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .home-sections .feature__picture {
    transition: scale 900ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .home-sections .feature:is(:hover, :focus-within) > .feature__picture {
    scale: 1.2;
  }
}
@media print {
  .home-sections .feature__picture {
    scale: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .hero {
    height: calc(70vw - 80px);
  }
  .hero__heading {
    font-size: 1.875rem;
  }
  .feature__content {
    padding-inline: 6.25%;
  }
  .feature__description {
    font-size: 0.875rem;
    letter-spacing: 0.07em;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 680px;
    min-height: 0;
  }
  .hero__picture::after {
    position: absolute;
    inset: 0;
    background: url("../images/hero-overlay-mobile.svg") top/100% 480px no-repeat;
    content: "";
  }
  .hero__image {
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-position: 44% center;
    transform: none;
  }
  .hero__heading {
    top: 159px;
    left: 35px;
    max-width: calc(100% - 60px);
    transform: none;
    font-size: 1.25rem;
    line-height: 2.2;
    text-align: left;
  }
  .home-sections {
    gap: 2px;
    padding-top: 2px;
  }
  .feature {
    align-items: stretch;
    height: auto;
    min-height: 360px;
  }
  .feature__picture::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 85%);
    content: "";
  }
  .feature__image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .feature__content {
    justify-content: space-between;
    gap: 64px;
    padding: 42px 35px 40px;
  }
  .feature__intro {
    gap: 22px;
  }
  .feature__eyebrow {
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
  .feature__eyebrow::after {
    height: 1px;
    margin-top: 15px;
  }
  .feature__heading {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .feature__description {
    max-width: 34em;
    font-size: 0.875rem;
    font-weight: 350;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .feature__description span {
    display: inline;
  }
  .feature--with-description {
    min-height: 420px;
  }
  .feature--with-description .feature__picture::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.18));
  }
  .feature--philosophy .feature__image {
    object-fit: cover;
  }
  .feature--philosophy .feature__picture::after {
    background: none;
  }
  .feature--company .feature__image {
    object-position: 52% 52%;
  }
  .feature--story .feature__image {
    object-position: 48% 29%;
  }
  .feature--business .feature__image {
    object-position: 58% 84%;
  }
  .feature--strength .feature__image {
    object-fit: cover;
    object-position: 56% 11%;
  }
  .feature--research .feature__image {
    object-position: 48% center;
  }
  .feature--research .feature__content {
    transform: none;
  }
}
.philosophy {
  color: #121212;
}
.philosophy section[id] {
  scroll-margin-top: 30px;
}
.philosophy section[id]:focus:not(:focus-visible) {
  outline: none;
}

.philosophy-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(1.5rem, 1.666667vw, 2rem);
  font-weight: 700;
  line-height: 1.1875;
  letter-spacing: 0.1em;
  text-align: center;
}
.philosophy-eyebrow::after {
  width: 30px;
  height: 2px;
  margin-top: 20px;
  background: currentColor;
  content: "";
}
.philosophy-eyebrow--left {
  align-items: flex-start;
  text-align: left;
}

.philosophy-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.philosophy-background img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.philosophy-hero {
  position: relative;
  height: calc(56.25vw - 120px);
  min-height: 440px;
  overflow: hidden;
  background: #b6c9d4;
}
.philosophy-hero__video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  object-fit: cover;
  pointer-events: none;
}
.philosophy-hero__heading {
  position: absolute;
  top: calc(50% - 65.5px);
  left: 50%;
  transform: translate(-50%, -50%);
}
.philosophy-hero__heading img {
  width: 160px;
  height: 53px;
  animation: philosophy-logo-fade-out 2s ease-in-out 2s forwards;
}

@keyframes philosophy-logo-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .philosophy-hero__heading img {
    animation: none;
  }
}
.philosophy-mission {
  position: relative;
  min-height: 65.364583vw;
  padding: clamp(180px, 19.895833vw, 382px) 35px 200px;
  background: #e5eaec;
  text-align: center;
}
.philosophy-mission__content {
  position: relative;
  max-width: 1400px;
  margin-inline: auto;
}
.philosophy-mission__lead {
  margin-top: 59px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.875rem, 2.1875vw, 2.625rem);
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.philosophy-mission__copy {
  margin-top: 52px;
  font-size: 1rem;
  font-weight: 350;
  line-height: 3.125;
  letter-spacing: 0.13em;
}
.philosophy-mission__copy span {
  display: block;
}

.philosophy-goal {
  position: relative;
  min-height: 60.375vw;
  padding: clamp(110px, 10.208333vw, 196px) 35px 160px;
  background: #f7f9f8;
  text-align: center;
}
.philosophy-goal__content {
  position: relative;
  max-width: 1200px;
  margin-inline: auto;
}
.philosophy-goal__formula {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.375rem, 1.605208vw, 1.92625rem);
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.philosophy-goal__formula span {
  display: inline-block;
}
.philosophy-goal__lead {
  font: inherit;
}
.philosophy-goal__copy {
  margin-top: 70px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 1.0273125rem;
  font-weight: 350;
  line-height: 2.1875;
  letter-spacing: 0.13em;
}
.philosophy-goal__copy span {
  display: block;
}
.philosophy-goal__copy p + p {
  margin-top: 36px;
}
.philosophy-goal__promise, .philosophy-goal__closing {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.2841875rem;
  font-weight: 400;
  letter-spacing: 0.13em;
}
.philosophy-goal__promise {
  margin-top: 44px;
  color: #0076ba;
  line-height: 2.5;
}
.philosophy-goal__closing {
  margin-top: 48px;
  line-height: 1.75;
}

.philosophy-future {
  min-height: 36.354167vw;
  padding-block: clamp(100px, 7.760417vw, 149px) 140px;
  background: #fff;
}
.philosophy-future__inner {
  width: 62.8125%;
  max-width: 1440px;
  margin-inline: auto;
}
.philosophy-future__body {
  display: grid;
  grid-template-columns: 30.6% 46.2%;
  gap: 10.2%;
  align-items: start;
  margin-top: 69px;
}
.philosophy-future__lead {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.5rem, 1.5625vw, 1.875rem);
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.philosophy-future__copy {
  padding-top: 7px;
  font-size: 1rem;
  font-weight: 350;
  line-height: 2.1875;
  letter-spacing: 0.13em;
  text-align: justify;
}

.philosophy-values {
  position: relative;
  min-height: 60.375vw;
  padding: 121.2px 0 140.4px;
  background: #f4f5f4;
  text-align: center;
}
.philosophy-values__content {
  position: relative;
}
.philosophy-values .philosophy-eyebrow {
  font-size: clamp(1.875rem, 1.984375vw, 2.38125rem);
}
.philosophy-values .philosophy-eyebrow::after {
  width: 35.719px;
  height: 2.38px;
  margin-top: 23.813px;
}
.philosophy-values__lead {
  margin-top: 69px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.5rem, 1.860365vw, 2.2324375rem);
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.philosophy-values__list {
  width: 62.5%;
  margin: 71.4px auto 0;
  border-top: 1.2px solid #dce0de;
}
.philosophy-values__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 208.8px;
  padding: 40px 20px;
  border-bottom: 1.2px solid #dce0de;
}
.philosophy-values__item dt {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.190625rem;
  font-weight: 700;
  line-height: 1.4375rem;
  letter-spacing: 0.1em;
}
.philosophy-values__item dd {
  margin: 0;
  font-size: clamp(1.125rem, 1.24026vw, 1.4883125rem);
  font-weight: 350;
  line-height: 1.75;
  letter-spacing: 0.13em;
}
.philosophy-values__arrow {
  display: block;
  width: 25px;
  height: 12px;
  margin: 11.906px auto;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 21.431px;
  font-weight: 200;
  line-height: 0.75rem;
  transform: rotate(90deg);
}

.philosophy-value {
  min-height: 650px;
  padding: 121px 35px 101px;
  background: #fff;
  text-align: center;
}
.philosophy-value__lead {
  margin-top: 38px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.375rem, 1.5625vw, 1.875rem);
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.philosophy-value__copy {
  margin-top: 34px;
  font-size: 1rem;
  font-weight: 350;
  line-height: 2.1875;
  letter-spacing: 0.13em;
}
.philosophy-value__copy span {
  display: block;
}
.philosophy-value__link {
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 63px;
  margin-top: 113px;
  font-size: 0.75rem;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .philosophy-mission__copy {
    max-width: 820px;
    margin-inline: auto;
    line-height: 2.5;
  }
  .philosophy-mission__copy span {
    display: inline;
  }
  .philosophy-future__inner {
    width: 80%;
  }
  .philosophy-future__body {
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
  }
  .philosophy-values__list {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .philosophy-eyebrow {
    font-size: 1.375rem;
    line-height: 1.35;
  }
  .philosophy-eyebrow::after {
    height: 1px;
    margin-top: 17px;
  }
  .philosophy-background img {
    object-fit: cover;
  }
  .philosophy-hero {
    height: 680px;
    min-height: 0;
  }
  .philosophy-hero__video {
    height: 100%;
  }
  .philosophy-hero__heading {
    top: 50%;
  }
  .philosophy-hero__heading img {
    width: 120px;
    height: 39px;
  }
  .philosophy-mission {
    min-height: 760px;
    padding: 130px 30px 120px;
  }
  .philosophy-mission__lead {
    margin-top: 45px;
    font-size: 1.5rem;
    line-height: 1.9;
    letter-spacing: 0.1em;
  }
  .philosophy-mission__copy {
    margin-top: 38px;
    font-size: 0.875rem;
    line-height: 2.3;
    letter-spacing: 0.07em;
    text-align: justify;
  }
  .philosophy-mission__copy span {
    display: inline;
  }
  .philosophy-goal {
    min-height: 0;
    padding: 100px 30px 110px;
  }
  .philosophy-goal__formula {
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.06em;
  }
  .philosophy-goal__copy {
    margin-top: 45px;
    font-size: 0.875rem;
    line-height: 2.3;
    letter-spacing: 0.07em;
    text-align: justify;
  }
  .philosophy-goal__copy span {
    display: inline;
  }
  .philosophy-goal__copy p + p {
    margin-top: 32px;
  }
  .philosophy-goal__promise, .philosophy-goal__closing {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
  .philosophy-goal__promise {
    margin-top: 40px;
  }
  .philosophy-goal__closing {
    margin-top: 30px;
  }
  .philosophy-future {
    min-height: 0;
    padding: 100px 35px;
  }
  .philosophy-future__inner {
    width: 100%;
  }
  .philosophy-future__body {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 45px;
  }
  .philosophy-future__lead {
    max-width: 18em;
    font-size: 1.5rem;
    line-height: 1.9;
    letter-spacing: 0.1em;
  }
  .philosophy-future__copy {
    padding-top: 0;
    font-size: 0.875rem;
    line-height: 2.3;
    letter-spacing: 0.07em;
  }
  .philosophy-future__copy p + p {
    margin-top: 20px;
  }
  .philosophy-values {
    min-height: 0;
    padding: 100px 30px;
  }
  .philosophy-values .philosophy-eyebrow {
    font-size: 1.375rem;
  }
  .philosophy-values .philosophy-eyebrow::after {
    width: 30px;
    height: 1px;
    margin-top: 17px;
  }
  .philosophy-values__lead {
    margin-top: 40px;
    font-size: 1.25rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .philosophy-values__list {
    width: 100%;
    margin-top: 45px;
  }
  .philosophy-values__item {
    min-height: 200px;
    padding: 35px 5px;
  }
  .philosophy-values__item dt {
    font-size: 1rem;
  }
  .philosophy-values__item dd {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.07em;
  }
  .philosophy-value {
    min-height: 0;
    padding: 100px 30px;
  }
  .philosophy-value__lead {
    margin-top: 36px;
    font-size: 1.25rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .philosophy-value__copy {
    margin-top: 30px;
    font-size: 0.875rem;
    line-height: 2.2;
    letter-spacing: 0.07em;
  }
  .philosophy-value__copy span {
    display: inline;
  }
  .philosophy-value__link {
    min-height: 56px;
    margin-top: 55px;
  }
}
.company {
  color: #121212;
}
.company section[id] {
  scroll-margin-top: 30px;
}
.company section[id]:focus:not(:focus-visible) {
  outline: none;
}

.company-hero {
  position: relative;
  height: 49.895833vw;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #050706;
}
.company-hero__picture {
  position: absolute;
  inset: 0;
}
.company-hero__picture img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 122.964509%;
  object-fit: cover;
}
.company-hero__content {
  position: relative;
  padding: 13.541667vw 6.041667% 60px;
}
.company-hero__eyebrow {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  letter-spacing: 0.1em;
}
.company-hero__eyebrow::after {
  display: block;
  width: 50px;
  height: 1px;
  margin-top: 30px;
  background: currentColor;
  content: "";
}
.company-hero__heading {
  margin-top: 45px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2.25rem, 2.8125vw, 3.375rem);
  font-weight: 400;
  line-height: 1.296296;
  letter-spacing: 0.4em;
}

.company-section__title {
  font: inherit;
}
.company-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 300fr) minmax(0, 900fr);
  column-gap: 7.692308%;
  width: 67.708333%;
  max-width: 1440px;
  margin-inline: auto;
}
.company-section__heading {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  font-size: 1.875rem;
  font-weight: 350;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.company-section__eyebrow {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  letter-spacing: 0.1em;
}
.company-section__eyebrow::after {
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 20px;
  background: currentColor;
  content: "";
}

.company-information {
  padding-block: 148px 157px;
}

.company-management {
  padding-block: 151px 150px;
  background: #f5f5f5;
}

.company-history {
  padding-block: 126px 261px;
}

.company-table {
  min-width: 0;
  margin: 0;
  border-top: 1px solid #e6e6e6;
  font-size: 1rem;
  font-weight: 350;
  line-height: 2.1875;
  letter-spacing: 0.1em;
}
.company-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  align-items: center;
  padding-block: 34.5px;
  border-bottom: 1px solid #e6e6e6;
}
.company-table__row--clients {
  align-items: start;
}
.company-table dt {
  padding-right: 20px;
  color: #6e6e6e;
}
.company-table dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}
.company-table [lang=en] {
  font-family: "Roboto", Arial, sans-serif;
}
.company-table--management .company-table__row {
  grid-template-columns: minmax(0, 54.555556fr) minmax(0, 45.444444fr);
}
.company-table--history dt {
  color: #696969;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
}

.company-clients {
  display: grid;
  grid-template-columns: minmax(0, 200fr) minmax(0, 287fr);
  gap: clamp(24px, 5.208333vw, 100px);
  max-width: 587px;
}
.company-clients__note {
  color: #6e6e6e;
  font-size: 0.875rem;
  line-height: 2.1875rem;
  letter-spacing: 0.13em;
}

.company-access {
  padding-block: 123px 108px;
  background: #f5f5f5;
}
.company-access__inner {
  display: grid;
  grid-template-columns: minmax(0, 335fr) minmax(0, 807fr);
  grid-template-rows: auto 1fr;
  column-gap: 13.287775%;
  width: 68.59375%;
  max-width: 1460px;
  margin-left: 17.96875%;
}
.company-access .company-section__heading {
  gap: 30px;
}
.company-access__details {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  padding-top: 60px;
  font-size: 1rem;
  font-weight: 350;
  line-height: 2.1875;
  letter-spacing: 0.1em;
}
.company-access__address {
  margin-top: 28px;
  color: #656d67;
  font-style: normal;
}
.company-access__link {
  width: 335px;
  max-width: 100%;
  min-height: 63px;
  margin-top: 49px;
  gap: 15px;
  padding: 12px 0 17px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}
.company-access__map {
  grid-column: 2;
  grid-row: 1/3;
  align-self: start;
}
.company-access__map iframe {
  display: block;
  width: 100%;
  height: auto;
  min-height: 240px;
  aspect-ratio: 807/569;
  border: 0;
}

@media (min-width: 768px) and (max-width: 1599px) {
  .company-section__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    column-gap: 6%;
    width: 83.333333%;
  }
  .company-clients {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .company-access__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    column-gap: 8%;
    width: 83.333333%;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .company-hero {
    height: 680px;
    min-height: 680px;
  }
  .company-hero__picture {
    height: 100%;
  }
  .company-hero__picture img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .company-hero__content {
    padding: 160px 35px 60px;
  }
  .company-hero__eyebrow {
    font-size: 0.75rem;
    line-height: 0.875rem;
    letter-spacing: 0.1em;
  }
  .company-hero__eyebrow::after {
    width: 30px;
    margin-top: 15px;
  }
  .company-hero__heading {
    margin-top: 45px;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.4em;
  }
  .company-section {
    padding-block: 80px;
  }
  .company-section__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
    width: auto;
    margin-inline: 25px;
  }
  .company-section__heading {
    gap: 25px;
    font-size: 1.375rem;
    line-height: 1.7;
    letter-spacing: 0.1em;
  }
  .company-section__eyebrow {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
  .company-section__eyebrow::after {
    height: 1px;
    margin-top: 15px;
  }
  .company-table {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .company-table__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding-block: 25px;
  }
  .company-table dt {
    padding-right: 0;
    font-size: 0.75rem;
  }
  .company-table--management .company-table__row {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 20px;
  }
  .company-table--history .company-table__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 3.2fr);
    align-items: start;
    gap: 20px;
  }
  .company-table--history dt {
    font-size: 0.875rem;
  }
  .company-clients {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .company-clients__note {
    margin-top: 8px;
    font-size: 0.75rem;
    line-height: 2;
  }
  .company-access {
    padding-block: 80px;
  }
  .company-access__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 40px;
    width: auto;
    margin-inline: 25px;
  }
  .company-access .company-section__heading {
    gap: 25px;
  }
  .company-access__details {
    grid-row: 3;
    padding-top: 0;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.07em;
  }
  .company-access__address {
    margin-top: 20px;
  }
  .company-access__link {
    width: 270px;
    min-height: 56px;
    margin-top: 30px;
  }
  .company-access__map {
    grid-column: 1;
    grid-row: 2;
  }
}
.story {
  color: #121212;
}

.story-hero {
  position: relative;
  height: calc(61.354167vw - 100px);
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: #0b0c0c;
}
.story-hero__picture {
  position: absolute;
  inset: 0;
}
.story-hero__picture img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: calc(100% + 100px);
  object-fit: cover;
}
.story-hero__content {
  position: relative;
  padding: calc(25vw - 100px) 5.729167% 60px;
}
.story-hero__eyebrow {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  letter-spacing: 0.1em;
}
.story-hero__eyebrow::after {
  display: block;
  width: 50px;
  height: 1px;
  margin-top: 30px;
  background: currentColor;
  content: "";
}
.story-hero__heading {
  margin-top: 45px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2.25rem, 2.8125vw, 3.375rem);
  font-weight: 400;
  line-height: 1.296296;
  letter-spacing: 0.13em;
}

.story-eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.0625rem;
  letter-spacing: 0.1em;
}
.story-eyebrow::after {
  width: 30px;
  height: 1px;
  margin-top: 20px;
  background: currentColor;
  content: "";
}

.story-copy {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 350;
  line-height: 2.1875;
  letter-spacing: 0.1em;
  text-align: justify;
  overflow-wrap: anywhere;
}
.story-copy p + p {
  margin-top: 35px;
}

.story-beginning {
  padding-block: 118px 65px;
  text-align: center;
}
.story-beginning__heading {
  margin: 53px 30px 0;
  color: #17201d;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.story-beginning__intro {
  width: 80%;
  max-width: 1320px;
  margin: 101px auto 0;
  text-align: center;
}
.story-beginning__intro p + p {
  margin-top: 0;
}

.story-founders {
  display: grid;
  grid-template-columns: minmax(0, 533fr) minmax(0, 530fr);
  gap: 13.082584%;
  width: 63.697917%;
  max-width: 1360px;
  margin: 104px auto 0;
  text-align: left;
}

.story-founder {
  min-width: 0;
}
.story-founder__picture img {
  width: 100%;
  height: auto;
}
.story-founder__profile {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 23px;
}
.story-founder__english, .story-founder__role {
  color: #6e6e6e;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.75rem;
  line-height: 0.875rem;
  letter-spacing: 0.1em;
}
.story-founder__name {
  margin: 0;
  color: #17201d;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.666667;
  letter-spacing: 0.3em;
}
.story-founder__bio {
  margin-top: 25px;
  color: #696969;
  font-size: 0.875rem;
  font-weight: 350;
  line-height: 1.7;
  letter-spacing: 0.07em;
  text-align: justify;
  overflow-wrap: anywhere;
}

.story-small {
  padding-block: 66px 200px;
}
.story-small__title {
  font: inherit;
}
.story-small__inner {
  display: grid;
  grid-template-columns: minmax(0, 607fr) minmax(0, 699fr);
  align-items: center;
  gap: 10.302198%;
  width: 75.833333%;
  max-width: 1600px;
  margin-inline: auto;
}
.story-small__heading {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 1.875rem;
  font-weight: 350;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.story-small__heading > p,
.story-small__heading > h2 {
  margin-right: -0.13em;
}
.story-small__heading [lang=en] {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.875rem, 2.1875vw, 2.625rem);
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.story-small .story-copy {
  margin-top: 200px;
}
.story-small__picture img {
  width: 100%;
  height: auto;
}

.story-chapter {
  padding-bottom: 150px;
}
.story-chapter__inner {
  display: grid;
  grid-template-columns: minmax(0, 577fr) minmax(0, 476fr);
  align-items: start;
  column-gap: 8.673027%;
  width: 60.052083%;
  max-width: 1320px;
  margin-left: 7.8125%;
}
.story-chapter__heading {
  margin-right: -0.13em;
  color: #17201d;
  font-size: 1.875rem;
  font-weight: 350;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.story-chapter .story-copy {
  margin-top: 100px;
}
.story-chapter__picture img {
  width: 100%;
  height: auto;
}
.story-chapter--leaf .story-chapter__inner {
  grid-template-columns: minmax(0, 507fr) minmax(0, 577fr);
  column-gap: 8.445946%;
  width: 61.666667%;
  margin-right: 7.8125%;
  margin-left: auto;
}
.story-chapter--beauty {
  padding-bottom: 256px;
}
.story-chapter--beauty .story-chapter__inner {
  grid-template-columns: minmax(0, 577fr) minmax(0, 464fr);
  column-gap: 8.764242%;
  width: 59.427083%;
}

.story-continues {
  position: relative;
  min-height: 688px;
  padding: 88px 30px 69px;
  background: #f5f5f5;
  text-align: center;
}
.story-continues__picture {
  position: absolute;
  inset: 0;
}
.story-continues__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-continues__content {
  position: relative;
}
.story-continues .story-eyebrow::after {
  height: 2px;
  margin-top: 17px;
}
.story-continues__heading {
  margin-top: 91px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.875rem, 2.1875vw, 2.625rem);
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.story-continues__copy {
  max-width: 1000px;
  margin: 66px auto 0;
  text-align: center;
}
.story-continues__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px 100px;
  margin-top: 93px;
}
.story-continues__links .detail-link {
  gap: 12px;
  min-height: 44px;
  margin-block: -4.5px;
  font-size: 1rem;
  font-weight: 350;
  line-height: 2.1875rem;
  letter-spacing: 0.1em;
}
.story-continues__links .detail-link img {
  width: 28px;
  height: 10px;
}

@media (min-width: 768px) and (max-width: 1599px) {
  .story-founders {
    width: 75%;
    gap: 10%;
  }
  .story-small__inner {
    width: 83.333333%;
    gap: 7%;
  }
  .story-small__heading {
    font-size: 1.5rem;
  }
  .story-small .story-copy {
    margin-top: 80px;
  }
  .story-chapter__inner, .story-chapter--leaf .story-chapter__inner, .story-chapter--beauty .story-chapter__inner {
    width: 83.333333%;
    gap: 7%;
    margin-inline: auto;
  }
  .story-chapter__heading {
    font-size: 1.5rem;
  }
  .story-chapter .story-copy {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .story-hero {
    height: 680px;
    min-height: 680px;
  }
  .story-hero__picture {
    height: 100%;
  }
  .story-hero__picture img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .story-hero__content {
    padding: 150px 35px 60px;
  }
  .story-hero__eyebrow {
    font-size: 0.75rem;
    line-height: 0.875rem;
    letter-spacing: 0.1em;
  }
  .story-hero__eyebrow::after {
    width: 30px;
    margin-top: 15px;
  }
  .story-hero__heading {
    margin-top: 45px;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.13em;
  }
  .story-eyebrow {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
  .story-eyebrow::after {
    margin-top: 15px;
  }
  .story-copy {
    font-size: 0.875rem;
    line-height: 2.2;
    letter-spacing: 0.07em;
  }
  .story-copy p + p {
    margin-top: 30px;
  }
  .story-beginning {
    padding: 80px 25px 0;
  }
  .story-beginning__heading {
    margin: 40px 0 0;
    font-size: clamp(1.125rem, 5.333333vw, 1.25rem);
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .story-beginning__intro {
    width: 100%;
    margin-top: 40px;
    text-align: justify;
  }
  .story-beginning__intro p + p {
    margin-top: 0;
  }
  .story-founders {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
    width: 100%;
    margin-top: 60px;
  }
  .story-founder__profile {
    margin-top: 20px;
  }
  .story-founder__english, .story-founder__role {
    font-size: 0.625rem;
    line-height: 1.5;
  }
  .story-founder__name {
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .story-founder__bio {
    margin-top: 20px;
    font-size: 0.75rem;
    line-height: 2;
  }
  .story-small {
    padding-block: 100px;
  }
  .story-small__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    width: auto;
    margin-inline: 25px;
  }
  .story-small__picture {
    order: -1;
  }
  .story-small__heading {
    gap: 25px;
    font-size: 1.25rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .story-small__heading [lang=en] {
    font-size: 1.375rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
  .story-small .story-copy {
    margin-top: 40px;
  }
  .story-chapter {
    padding-bottom: 100px;
  }
  .story-chapter__inner, .story-chapter--leaf .story-chapter__inner, .story-chapter--beauty .story-chapter__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    width: auto;
    margin-inline: 25px;
  }
  .story-chapter__picture {
    order: -1;
  }
  .story-chapter__heading {
    font-size: 1.25rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
    overflow-wrap: anywhere;
  }
  .story-chapter .story-copy {
    margin-top: 35px;
  }
  .story-continues {
    min-height: 0;
    padding: 80px 25px;
  }
  .story-continues__heading {
    margin-top: 45px;
    font-size: 1.5rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .story-continues__copy {
    margin-top: 35px;
    text-align: justify;
  }
  .story-continues__links {
    gap: 35px;
    margin-top: 45px;
  }
  .story-continues__links .detail-link {
    gap: 12px;
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .story-continues__links .detail-link img {
    width: 23px;
    height: 8px;
  }
}
.business {
  color: #121212;
}
.business section[id] {
  scroll-margin-top: 30px;
}
.business section[id]:focus:not(:focus-visible) {
  outline: none;
}

.business-hero {
  position: relative;
  height: 49.895833vw;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #050706;
}
.business-hero__picture {
  position: absolute;
  inset: 0;
}
.business-hero__picture img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 122.964509%;
  object-fit: cover;
}
.business-hero__content {
  position: relative;
  padding: 13.541667vw 5.729167% 60px;
}
.business-hero__eyebrow {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  letter-spacing: 0.1em;
}
.business-hero__eyebrow::after {
  display: block;
  width: 50px;
  height: 1px;
  margin-top: 30px;
  background: currentColor;
  content: "";
}
.business-hero__heading {
  margin-top: 45px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2.25rem, 2.8125vw, 3.375rem);
  font-weight: 400;
  line-height: 1.296296;
  letter-spacing: 0.4em;
}

.business-heading {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 3.375rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.business-heading [lang=en] {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 2.625rem;
}

.business-area__intro {
  padding: 126px 30px 109px;
  text-align: center;
}
.business-area__copy {
  margin-top: 30px;
  font-size: 1rem;
  font-weight: 350;
  line-height: 2.1875;
  letter-spacing: 0.1em;
}

.business-growth {
  margin: 0;
  padding: 0;
  list-style: none;
}
.business-growth__step {
  position: relative;
  min-height: var(--step-height);
}
.business-growth__step::before, .business-growth__step::after {
  position: absolute;
  z-index: 1;
  left: 50%;
  width: 1.5px;
  background: rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
  content: "";
}
.business-growth__step::before {
  top: 0;
  height: var(--badge-top);
}
.business-growth__step::after {
  top: calc(var(--badge-top) + var(--badge-size));
  bottom: 0;
}
.business-growth__step--first {
  --step-height: clamp(260px, 16.145833vw, 310px);
  --badge-size: clamp(120px, 7.916667vw, 152px);
  --badge-top: clamp(56px, 4.583333vw, 88px);
  --label-top: clamp(85px, 6.197917vw, 119px);
  --number-size: 2.5rem;
  --label-size: 0.625rem;
  --count-gap: 7px;
}
.business-growth__step--second {
  --step-height: clamp(360px, 24.010417vw, 461px);
  --badge-size: clamp(200px, 15.625vw, 300px);
  --badge-top: clamp(60px, 3.958333vw, 76px);
  --label-top: clamp(110px, 8.28125vw, 159px);
  --number-size: clamp(4rem, 5vw, 6rem);
  --label-size: 0.75rem;
  --count-gap: 10px;
}
.business-growth__step--third {
  --step-height: clamp(440px, 30.208333vw, 580px);
  --badge-size: clamp(300px, 23.4375vw, 450px);
  --badge-top: 61px;
  --label-top: clamp(135px, 11.041667vw, 212px);
  --number-size: clamp(6rem, 6.770833vw, 8.125rem);
  --label-size: 1rem;
  --count-gap: 10px;
}
.business-growth__step--third::after {
  display: none;
}
.business-growth__picture {
  position: absolute;
  inset: 0;
}
.business-growth__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-growth__description {
  position: relative;
  z-index: 2;
  top: var(--label-top);
  width: min(336px, 22vw);
  margin-left: 14.21875%;
  padding-bottom: 35px;
}
.business-growth__years {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.375rem;
  line-height: 1.625rem;
  letter-spacing: 0.1em;
}
.business-growth__symbol {
  font-family: "Noto Sans Symbols 2", sans-serif;
  font-size: 0.85em;
  font-weight: 400;
  line-height: 1;
}
.business-growth__heading {
  margin: 30px -0.1em 0 0;
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.business-growth__count {
  position: absolute;
  z-index: 2;
  top: var(--badge-top);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--count-gap);
  width: var(--badge-size);
  min-height: var(--badge-size);
  padding: 20px;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
  transform: translateX(-50%);
}
.business-growth__number {
  font-family: "Roboto", Arial, sans-serif;
  font-size: var(--number-size);
  font-weight: 400;
  line-height: 1;
}
.business-growth__label {
  font-size: var(--label-size);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.business-growth__arrow {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: 9px;
  height: calc(var(--step-height) - var(--badge-top) - var(--badge-size));
  transform: translateX(-50%);
}

@media (min-width: 1600px) {
  .business-growth__step--first .business-growth__heading {
    white-space: nowrap;
  }
}
.business-products {
  padding: 176px 35px 130px;
}
.business-products__heading {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 350;
  line-height: 1.666667;
  letter-spacing: 0.13em;
  text-align: center;
}
.business-products__group {
  margin-top: 152px;
}
.business-products__group + .business-products__group {
  margin-top: 143px;
}
.business-products__gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6.25vw, 120px);
  max-width: 1000px;
  margin-inline: auto;
}
.business-products__gallery--wellness {
  gap: clamp(40px, 5.833333vw, 112px);
}
.business-products__details {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 990px;
  margin: 70px auto 0;
}
.business-products__category {
  flex-shrink: 0;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.business-products__list {
  min-width: 0;
  min-height: 110px;
  padding-left: 60px;
  border-left: 1px solid #b5b5b5;
  font-size: 0.875rem;
  font-weight: 350;
  line-height: 1.6;
  letter-spacing: 0.16em;
  overflow-wrap: anywhere;
}

.business-product {
  flex-shrink: 0;
}
.business-product picture {
  display: block;
  width: 100%;
  height: 100%;
}
.business-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.business-product--air-01 {
  width: 76.11px;
  height: 107.017px;
}
.business-product--air-02 {
  width: 60.095px;
  height: 128.166px;
}
.business-product--air-03 {
  width: 72.064px;
  height: 85.041px;
}
.business-product--air-04 {
  width: 79.661px;
  height: 118.826px;
}
.business-product--air-05 {
  width: 61.376px;
  height: 111.717px;
}
.business-product--air-06 {
  width: 40.77px;
  height: 132.837px;
}
.business-product--wellness-01 {
  width: 20.071px;
  height: 129.763px;
}
.business-product--wellness-02 {
  width: 169px;
  height: 74px;
}
.business-product--wellness-03 {
  width: 62.809px;
  height: 139.499px;
}
.business-product--wellness-04 {
  width: 30.192px;
  height: 101.026px;
}
.business-product--wellness-05 {
  width: 115.216px;
  height: 64.878px;
}
.business-product--wellness-06 {
  width: 16.667px;
  height: 138.333px;
  overflow: hidden;
}
.business-product--wellness-06 img {
  position: relative;
  top: 1.05%;
  height: 114.77%;
  object-fit: fill;
}

.business-structure {
  padding: 194px 0 176px;
  background: #f5f5f5;
  text-align: center;
}
.business-structure__lead {
  margin: 65px 35px 0;
  font-size: 1.875rem;
  font-weight: 350;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.business-structure__copy {
  margin: 17px 35px 0;
  color: #696969;
  font-size: 1.125rem;
  font-weight: 350;
  line-height: 1.944444;
  letter-spacing: 0.13em;
}
.business-structure__panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 78.125%;
  max-width: 1680px;
  margin: 89px auto 0;
  text-align: left;
}

.business-panel {
  min-height: 520px;
  padding: 93px 10.133333% 90px;
  color: #fff;
  background: #202121;
}
.business-panel--partners {
  background: #2f2e2e;
}
.business-panel__eyebrow {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.75rem;
  line-height: 0.875rem;
  letter-spacing: 0.1em;
}
.business-panel__eyebrow::after {
  display: block;
  width: 30px;
  height: 1px;
  margin-top: 20px;
  background: currentColor;
  content: "";
}
.business-panel__heading {
  margin: 30px -0.13em 0 0;
  font-size: 1.5rem;
  font-weight: 350;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.business-panel__tasks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  margin: 130px 0 0;
}
.business-panel__tasks dt {
  padding-bottom: 12px;
  border-bottom: 1px solid #0ff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1875rem;
  letter-spacing: 0.1em;
}
.business-panel__tasks dd {
  margin: 12px 0 0;
  font-size: 0.75rem;
  font-weight: 350;
  line-height: 1.6;
  letter-spacing: 0.13em;
  text-align: justify;
  overflow-wrap: anywhere;
}
.business-panel--partners dt {
  border-color: #8c8c8c;
}

@media (min-width: 768px) and (max-width: 1599px) {
  .business-panel {
    padding-inline: 40px;
  }
  .business-panel__tasks {
    gap: 25px;
  }
  .business-products__details {
    gap: 35px;
  }
  .business-products__list {
    padding-left: 35px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .business-growth__count, .business-growth__arrow, .business-growth__step::before, .business-growth__step::after {
    left: 70%;
  }
  .business-growth__description {
    width: 35%;
    margin-left: 8.333333%;
  }
  .business-growth__heading {
    font-size: 1.125rem;
  }
  .business-products__gallery,
  .business-products__gallery--wellness {
    justify-content: space-around;
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1399px) {
  .business-structure__panels {
    grid-template-columns: minmax(0, 1fr);
    width: 83.333333%;
  }
  .business-panel {
    min-height: 0;
    padding: 65px 50px;
  }
  .business-panel__tasks {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .business-hero {
    height: 680px;
    min-height: 680px;
  }
  .business-hero__picture {
    height: 100%;
  }
  .business-hero__picture img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .business-hero__content {
    padding: 160px 35px 60px;
  }
  .business-hero__eyebrow {
    font-size: 0.75rem;
    line-height: 0.875rem;
    letter-spacing: 0.1em;
  }
  .business-hero__eyebrow::after {
    width: 30px;
    margin-top: 15px;
  }
  .business-hero__heading {
    margin-top: 45px;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.13em;
  }
  .business-heading {
    font-size: 1.375rem;
    line-height: 1.7;
    letter-spacing: 0.07em;
  }
  .business-heading [lang=en] {
    font-size: 1.75rem;
  }
  .business-area__intro {
    padding: 80px 25px;
  }
  .business-area__copy {
    margin-top: 35px;
    font-size: 0.875rem;
    line-height: 2.2;
    letter-spacing: 0.07em;
    text-align: justify;
  }
  .business-growth {
    --growth-axis: 76%;
  }
  .business-growth__step {
    overflow: hidden;
    --badge-top: 50px;
    --label-size: 0.5rem;
    --count-gap: 0px;
  }
  .business-growth__step::before, .business-growth__step::after {
    left: var(--growth-axis);
    width: 1.5px;
  }
  .business-growth__step--first {
    --step-height: 200px;
    --badge-size: min(26.666667vw, 100px);
    --label-top: 53px;
    --number-size: min(13.333333vw, 50px);
  }
  .business-growth__step--second {
    --step-height: 250px;
    --badge-size: min(40vw, 150px);
    --label-top: 70px;
    --number-size: min(21.333333vw, 80px);
    --label-size: 0.625rem;
  }
  .business-growth__step--third {
    --step-height: 300px;
    --badge-size: min(53.333333vw, 200px);
    --label-top: 91px;
    --number-size: min(26.666667vw, 100px);
    --label-size: min(3.733333vw, 14px);
  }
  .business-growth__picture img {
    object-fit: fill;
    object-position: center bottom;
  }
  .business-growth__description {
    width: min(140px, 48% - 38px);
    margin-left: 38px;
    padding-bottom: 0;
  }
  .business-growth__years {
    font-size: clamp(0.75rem, 3.733333vw, 0.875rem);
    font-weight: 500;
    line-height: 1.142857;
  }
  .business-growth__heading {
    margin-top: 30px;
    font-size: clamp(0.75rem, 3.733333vw, 0.875rem);
    line-height: 1.714286;
    letter-spacing: 0.07em;
  }
  .business-growth__count {
    left: var(--growth-axis);
    padding: 8px;
  }
  .business-growth__step--third .business-growth__number {
    letter-spacing: -0.1em;
    padding-right: 0.1em;
  }
  .business-growth__arrow {
    left: var(--growth-axis);
  }
  .business-products {
    padding: 80px 25px;
  }
  .business-products__heading {
    font-size: 1.25rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .business-products__group, .business-products__group + .business-products__group {
    margin-top: 60px;
  }
  .business-products__gallery, .business-products__gallery--wellness {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: center;
    gap: 30px 15px;
  }
  .business-products__details {
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
  }
  .business-products__category {
    font-size: 1.125rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .business-products__list {
    width: 100%;
    min-height: 0;
    padding: 0 0 0 20px;
    font-size: 0.75rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .business-product {
    max-width: 100%;
    max-height: 110px;
  }
  .business-product--wellness-02, .business-product--wellness-05 {
    height: auto;
  }
  .business-structure {
    padding: 80px 25px;
  }
  .business-structure__lead {
    margin: 40px 0 0;
    font-size: 1.25rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .business-structure__copy {
    margin: 25px 0 0;
    font-size: 0.875rem;
    line-height: 2.2;
    letter-spacing: 0.07em;
    text-align: justify;
  }
  .business-structure__panels {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin-top: 45px;
  }
  .business-panel {
    min-height: 0;
    padding: 45px 25px;
  }
  .business-panel__eyebrow {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
  .business-panel__heading {
    margin-top: 25px;
    font-size: 1.125rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .business-panel__tasks {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  .business-panel__tasks dt {
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.07em;
  }
  .business-panel__tasks dd {
    font-size: 0.75rem;
    line-height: 2;
    letter-spacing: 0.07em;
  }
}
.strength {
  color: #182320;
}
.strength section[id] {
  scroll-margin-top: 30px;
}
.strength section[id]:focus:not(:focus-visible) {
  outline: none;
}
.strength picture {
  display: block;
}

.strength-hero {
  position: relative;
  height: 49.895833vw;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #080604;
}
.strength-hero__picture {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 122.964509%;
}
.strength-hero__picture img {
  position: absolute;
  top: -13.42%;
  left: 0;
  width: 127.32%;
  max-width: none;
  height: 311%;
  object-fit: fill;
}
.strength-hero__picture::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.08) 72%);
  content: "";
}
.strength-hero__content {
  position: relative;
  padding: 13.541667vw 5.729167% 60px;
}
.strength-hero__eyebrow {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  letter-spacing: 0.1em;
}
.strength-hero__eyebrow::after {
  display: block;
  width: 50px;
  height: 1px;
  margin-top: 30px;
  background: currentColor;
  content: "";
}
.strength-hero__heading {
  margin-top: 45px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2.25rem, 2.8125vw, 3.375rem);
  font-weight: 400;
  line-height: 1.296296;
  letter-spacing: 0.4em;
}

.strength-copy {
  font-size: 1rem;
  font-weight: 350;
  line-height: 2.1875;
  letter-spacing: 0.1em;
  overflow-wrap: anywhere;
}
.strength-copy__break {
  display: none;
}
@media (min-width: 1200px) {
  .strength-copy__break {
    display: initial;
  }
}

.strength-intro {
  padding: 131px 30px 130px;
  text-align: center;
}
.strength-intro__heading {
  max-width: 915px;
  margin-inline: auto;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 3.5rem;
  letter-spacing: 0.1em;
}
.strength-intro__formula {
  margin-right: 0.1em;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
}
.strength-intro__formula span {
  font-weight: 200;
}
.strength-intro__conclusion {
  display: block;
}
.strength-intro__copy {
  max-width: 897px;
  margin: 30px auto 0;
  color: #000;
}

.strength-section-heading {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2.1875rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.strength-lead {
  margin: 70px auto 0;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
  text-align: center;
}
.strength-lead + .strength-copy {
  margin-top: 30px;
}

.strength-technology {
  width: 67.708333%;
  max-width: 1500px;
  margin-inline: auto;
  padding-bottom: 135px;
}
.strength-technology__intro {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
.strength-technology__picture {
  margin-top: 100px;
}
.strength-technology__picture img {
  width: 100%;
  height: auto;
}
.strength-technology__link {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 63px;
  margin: 103px auto 0;
  gap: 15px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.strength-technologies {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  margin-top: 150px;
}

.strength-technology-card__eyebrow {
  color: #696969;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  letter-spacing: 0.1em;
}
.strength-technology-card__heading {
  margin: 10px 0 30px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.strength-technology-card img {
  width: 100%;
  height: auto;
}
.strength-technology-card .strength-copy {
  margin-top: 30px;
  text-align: justify;
}
.strength-technology-card:not(:first-child) .strength-copy {
  letter-spacing: 0.09em;
}

.strength-design {
  padding-bottom: 153px;
}
.strength-design__intro {
  width: calc(100% - 60px);
  max-width: 780px;
  min-height: 427px;
  margin-inline: auto;
  padding-bottom: 32px;
  text-align: center;
}
.strength-design__intro .strength-copy {
  color: #555855;
}
.strength-design__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 83.333333%;
  max-width: 1840px;
  margin-inline: auto;
}
.strength-design__gallery img {
  width: 100%;
  height: auto;
}

.strength-eyebrow {
  margin: 0;
  color: #000;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.0625rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.strength-eyebrow::after {
  display: block;
  width: 30px;
  height: 2px;
  margin: 16px auto 0;
  background: currentColor;
  content: "";
}

.strength-awards {
  --award-scale: 1;
  --award-speed: 32;
  margin-top: 85px;
}
.strength-awards__scroll {
  margin-top: 25px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  overflow-anchor: none;
}
.strength-awards__scroll:focus-visible {
  outline-offset: -3px;
}
.strength-awards.is-carousel .strength-awards__scroll {
  scrollbar-width: none;
}
.strength-awards.is-carousel .strength-awards__scroll::-webkit-scrollbar {
  display: none;
}
.strength-awards__belt {
  display: flex;
  width: max-content;
}
.strength-awards__track {
  flex: 0 0 auto;
  position: relative;
  width: calc(3257px * var(--award-scale));
  height: calc(254px * var(--award-scale));
}

.strength-award {
  position: absolute;
  top: calc(var(--award-top) * var(--award-scale));
  left: calc(var(--award-left) * var(--award-scale));
  width: calc(var(--award-width) * var(--award-scale));
  height: calc(var(--award-height) * var(--award-scale));
}
.strength-award__image {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.strength-award img {
  position: absolute;
  top: var(--image-top);
  left: var(--image-left);
  width: var(--image-width);
  max-width: none;
  height: var(--image-height);
}
.strength-award--01 {
  --award-top: 71px;
  --award-left: 48px;
  --award-width: 555px;
  --award-height: 176px;
  --image-top: 0%;
  --image-left: 0.02%;
  --image-width: 192.04%;
  --image-height: 303.98%;
}
.strength-award--02 {
  --award-top: 64px;
  --award-left: 625px;
  --award-width: 594px;
  --award-height: 176px;
  --image-top: -106.82%;
  --image-left: 0.01%;
  --image-width: 179.43%;
  --image-height: 303.98%;
}
.strength-award--03 {
  --award-top: 54px;
  --award-left: 1222px;
  --award-width: 584px;
  --award-height: 169px;
  --image-top: -216.57%;
  --image-left: 0.01%;
  --image-width: 182.51%;
  --image-height: 316.57%;
}
.strength-award--04 {
  --award-top: 76px;
  --award-left: 1746px;
  --award-width: 489px;
  --award-height: 178px;
  --image-top: 0%;
  --image-left: -117.98%;
  --image-width: 217.96%;
  --image-height: 300.56%;
}
.strength-award--05 {
  --award-top: 55px;
  --award-left: 2187px;
  --award-width: 511px;
  --award-height: 185px;
  --image-top: -95.14%;
  --image-left: -108.59%;
  --image-width: 208.58%;
  --image-height: 289.19%;
}
.strength-award--06 {
  --award-top: 51px;
  --award-left: 2720px;
  --award-width: 489px;
  --award-height: 172px;
  --image-top: -211.05%;
  --image-left: -117.98%;
  --image-width: 217.96%;
  --image-height: 311.05%;
}

.strength-marketing {
  padding-bottom: 214px;
  text-align: center;
}
.strength-marketing .strength-lead {
  margin: 50px 30px 0;
}
.strength-marketing .strength-copy {
  width: calc(100% - 60px);
  max-width: 740px;
  margin: 31px auto 0;
  color: #555855;
}
.strength-marketing__picture {
  width: 83.333333%;
  max-width: 1840px;
  margin: 78px auto 0;
}
.strength-marketing__picture img {
  width: 100%;
  height: auto;
}

.strength-next {
  min-height: 550px;
  padding: 118px 30px 126px;
  background: #f5f5f5;
  text-align: center;
}
.strength-next .strength-eyebrow::after {
  margin-top: 20px;
}
.strength-next__lead {
  margin-top: 52px;
  font-weight: 400;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2rem;
  line-height: 2.1875;
  letter-spacing: 0.13em;
}
.strength-next__link {
  margin: 90px 0 -11px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) and (max-width: 1599px) {
  .strength-technology {
    width: 83.333333%;
  }
  .strength-technologies {
    gap: 30px;
  }
  .strength-technology-card__heading {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .strength-technologies {
    gap: 25px;
  }
  .strength-technology-card__heading {
    min-height: 3.333334em;
  }
}
@media (max-width: 767px) {
  .strength-hero {
    height: 680px;
    min-height: 680px;
  }
  .strength-hero__picture {
    height: 100%;
  }
  .strength-hero__picture img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .strength-hero__content {
    padding: 160px 35px 60px;
  }
  .strength-hero__eyebrow {
    font-size: 0.75rem;
    line-height: 0.875rem;
    letter-spacing: 0.1em;
  }
  .strength-hero__eyebrow::after {
    width: 30px;
    margin-top: 15px;
  }
  .strength-hero__heading {
    margin-top: 30px;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.13em;
  }
  .strength-copy {
    font-size: 0.875rem;
    line-height: 2.2;
    letter-spacing: 0.07em;
    text-align: justify;
  }
  .strength-intro {
    padding: 80px 25px 90px;
  }
  .strength-intro__heading {
    font-size: 1.375rem;
    line-height: 1.8;
    letter-spacing: 0.07em;
  }
  .strength-intro__formula {
    display: block;
    margin-right: 0;
    font-size: 1.625rem;
    letter-spacing: 0.02em;
  }
  .strength-intro__conclusion {
    display: inline;
  }
  .strength-intro__copy {
    margin-top: 35px;
  }
  .strength-section-heading {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .strength-lead {
    margin-top: 40px;
    font-size: 1.375rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .strength-technology {
    width: calc(100% - 50px);
    padding-bottom: 90px;
  }
  .strength-technology__picture {
    margin-top: 45px;
  }
  .strength-technology__link {
    min-height: 56px;
    margin-top: 45px;
  }
  .strength-technologies {
    grid-template-columns: minmax(0, 1fr);
    gap: 55px;
    margin-top: 60px;
  }
  .strength-technology-card__eyebrow {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .strength-technology-card__heading {
    margin-bottom: 25px;
    font-size: 1.25rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .strength-technology-card .strength-copy {
    margin-top: 25px;
    letter-spacing: 0.07em;
  }
  .strength-design {
    padding-bottom: 90px;
  }
  .strength-design__intro {
    width: calc(100% - 50px);
    min-height: 0;
    padding-bottom: 45px;
  }
  .strength-design__gallery {
    width: calc(100% - 50px);
  }
  .strength-eyebrow {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
  .strength-awards {
    --award-scale: 0.64;
    --award-speed: 22;
    margin-top: 50px;
  }
  .strength-marketing {
    padding-bottom: 90px;
  }
  .strength-marketing .strength-lead {
    margin: 40px 25px 0;
    font-size: clamp(1.25rem, 5.866667vw, 1.375rem);
  }
  .strength-marketing .strength-copy {
    width: calc(100% - 50px);
    margin-top: 30px;
  }
  .strength-marketing__picture {
    width: 100%;
    margin-top: 45px;
  }
  .strength-next {
    min-height: 0;
    padding: 80px 25px;
  }
  .strength-next__lead {
    margin-top: 40px;
    font-size: 1.375rem;
    line-height: 2;
    letter-spacing: 0.07em;
  }
  .strength-next__link {
    margin-top: 45px;
    font-size: 0.875rem;
  }
}
.rd {
  padding-bottom: 113px;
  color: #182320;
}
.rd section[id] {
  scroll-margin-top: 30px;
}
.rd section[id]:focus:not(:focus-visible) {
  outline: none;
}
.rd picture {
  display: block;
}

.rd-hero {
  position: relative;
  height: 50vw;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #111615;
}
.rd-hero__picture {
  position: absolute;
  inset: 0;
}
.rd-hero__picture img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 122.708333%;
  object-fit: cover;
}
.rd-hero__content {
  position: relative;
  padding: 13.541667vw 5.729167% 60px;
}
.rd-hero__eyebrow {
  font-weight: 400;
  color: #e4ebe8;
  font-size: 1rem;
  line-height: 1.4375rem;
  letter-spacing: 0.13em;
}
.rd-hero__eyebrow::after {
  display: block;
  width: 50px;
  height: 1px;
  margin-top: 30px;
  background: currentColor;
  content: "";
}
.rd-hero__heading {
  margin-top: 45px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2.25rem, 2.8125vw, 3.375rem);
  font-weight: 400;
  line-height: 1.296296;
  letter-spacing: 0.13em;
}
.rd-hero__lead {
  margin-top: 30px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.13em;
}

.rd-heading {
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 3.0625rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.rd-copy {
  font-size: 1rem;
  font-weight: 350;
  line-height: 2.1875;
  letter-spacing: 0.1em;
  overflow-wrap: anywhere;
}

.rd-core {
  padding: 260px 0 150px;
}
.rd-core__intro {
  padding-inline: 30px;
  text-align: center;
}
.rd-core__copy {
  margin-top: 30px;
  color: #000;
}
.rd-core__copy span {
  display: block;
}
.rd-core__technologies {
  width: 64.0625%;
  max-width: 1450px;
  margin: 141px auto 0;
}

.rd-technology {
  display: grid;
  grid-template-columns: 32.520325% minmax(0, 1fr);
  gap: 9.756098%;
  min-height: 400px;
}
.rd-technology:first-child {
  min-height: 420px;
}
.rd-technology + .rd-technology {
  margin-top: 235px;
}
.rd-technology:nth-child(2) {
  margin-top: 183px;
}
.rd-technology__picture img {
  width: 100%;
  height: auto;
}
.rd-technology__heading {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.5rem;
  letter-spacing: 0.13em;
}
.rd-technology__lead {
  margin-top: 15px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.666667;
  letter-spacing: 0.13em;
}
.rd-technology__copy {
  margin-top: 50px;
  text-align: justify;
}

.rd-research {
  width: 83.333333%;
  max-width: 1840px;
  margin-inline: auto;
  padding: 160px 7.8125% 171px;
  background: #f5f5f5;
}
.rd-research__intro {
  text-align: center;
}
.rd-research__intro .rd-copy {
  margin-top: 30px;
  color: #000;
}

.rd-collaboration {
  margin-top: 170px;
}
.rd-collaboration + .rd-collaboration {
  margin-top: 197px;
}
.rd-collaboration__heading {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid #a9a9a9;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 3.125rem;
  letter-spacing: 0.13em;
}
.rd-collaboration__body {
  display: grid;
  grid-template-columns: 33.846154% minmax(0, 1fr);
  gap: 9.230769%;
  margin-top: 70px;
}
.rd-collaboration__lead {
  margin-right: -0.13em;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 3.125rem;
  letter-spacing: 0.13em;
}
.rd-collaboration__copy {
  margin-top: 50px;
  color: #212121;
  text-align: justify;
}
.rd-collaboration__copy--tight {
  letter-spacing: 0.02em;
}
.rd-collaboration__copy--compact {
  letter-spacing: 0.06em;
}
.rd-collaboration__picture img {
  width: 100%;
  height: auto;
}
.rd-collaboration__figure {
  min-width: 0;
  margin: 0;
}
.rd-collaboration figcaption {
  margin-top: 14px;
  color: #212121;
  font-size: 0.875rem;
  line-height: 2.1875rem;
  letter-spacing: 0.1em;
  text-align: right;
  overflow-wrap: anywhere;
}

.rd-ip {
  width: 83.333333%;
  max-width: 1840px;
  margin-inline: auto;
  padding: 174px 0 124px;
}
.rd-ip__intro {
  text-align: center;
}
.rd-ip__intro .rd-copy {
  margin-top: 30px;
  color: #000;
}

.rd-patent {
  margin-top: 127px;
}
.rd-patent + .rd-patent {
  margin-top: 107px;
}
.rd-patent__picture {
  width: 600px;
  max-width: 100%;
  margin-inline: auto;
}
.rd-patent__picture img {
  width: 100%;
  height: auto;
}
.rd-patent__details {
  display: grid;
  grid-template-columns: 456px max-content;
  gap: 50px;
  width: max-content;
  max-width: 100%;
  margin: 60px auto 0;
}
.rd-patent__details > .rd-copy {
  color: #000;
  text-align: justify;
}
.rd-patent__list {
  margin: 0;
  padding-left: 50px;
  border-left: 2px solid #b0b0b0;
  font-size: 1rem;
  line-height: 2.1875rem;
  letter-spacing: 0.1em;
  overflow-wrap: anywhere;
}
.rd-patent__list dt {
  display: flex;
  flex-wrap: wrap;
}
.rd-patent__list strong {
  font-weight: 700;
}
.rd-patent__list dd {
  margin: 0;
  font-weight: 350;
}

.rd-next {
  position: relative;
  width: 83.333333%;
  max-width: 1840px;
  min-height: 820px;
  margin-inline: auto;
  color: #000;
  background: #f5f5f5;
  text-align: center;
}
.rd-next__picture {
  position: absolute;
  inset: 0;
}
.rd-next__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.rd-next__content {
  position: relative;
  padding: 154px 30px 95px;
}
.rd-next__eyebrow {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.0625rem;
  letter-spacing: 0.1em;
}
.rd-next__eyebrow::after {
  display: block;
  width: 30px;
  height: 2px;
  margin: 25px auto 0;
  background: currentColor;
  content: "";
}
.rd-next__lead {
  margin-top: 37px;
  font-weight: 400;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.625rem;
  line-height: 4.375rem;
  letter-spacing: 0.13em;
}
.rd-next__copy {
  margin-top: 171px;
}
.rd-next__link {
  margin: 133px 0 0;
  gap: 20px;
}

@media (min-width: 768px) and (max-width: 1599px) {
  .rd-core__technologies {
    width: 83.333333%;
  }
  .rd-technology {
    gap: 6%;
  }
  .rd-research {
    padding-inline: 5%;
  }
  .rd-collaboration__body {
    gap: 6%;
  }
  .rd-collaboration__lead {
    font-size: 1.5rem;
  }
  .rd-patent__details {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 35px;
    width: 1120px;
  }
  .rd-patent__list {
    padding-left: 35px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .rd-core {
    padding-top: 160px;
  }
  .rd-technology__heading {
    font-size: 1.25rem;
  }
  .rd-technology__lead {
    font-size: 1.5rem;
  }
  .rd-collaboration__body {
    grid-template-columns: minmax(0, 1fr);
    gap: 45px;
  }
  .rd-collaboration__copy {
    margin-top: 30px;
  }
  .rd-patent__details {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
    max-width: 600px;
  }
  .rd-patent__list {
    padding: 25px 0 0;
    border-top: 1px solid #b0b0b0;
    border-left: 0;
  }
  .rd-next__copy {
    margin-top: 120px;
  }
}
@media (max-width: 767px) {
  .rd {
    padding-bottom: 60px;
  }
  .rd-hero {
    height: 680px;
    min-height: 680px;
  }
  .rd-hero__picture {
    height: 100%;
  }
  .rd-hero__picture img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .rd-hero__content {
    padding: 160px 35px 60px;
  }
  .rd-hero__eyebrow {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .rd-hero__eyebrow::after {
    width: 30px;
    margin-top: 15px;
  }
  .rd-hero__heading {
    margin-top: 30px;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.13em;
  }
  .rd-hero__lead {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.875;
    letter-spacing: 0.13em;
  }
  .rd-heading {
    font-size: 1.375rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .rd-copy {
    font-size: 0.875rem;
    line-height: 2.2;
    letter-spacing: 0.07em;
    text-align: justify;
  }
  .rd-core {
    padding: 80px 25px 90px;
  }
  .rd-core__intro {
    padding: 0;
  }
  .rd-core__copy {
    margin-top: 30px;
  }
  .rd-core__technologies {
    width: 100%;
    margin-top: 60px;
  }
  .rd-technology {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 0;
  }
  .rd-technology:first-child {
    min-height: 0;
  }
  .rd-technology + .rd-technology, .rd-technology:nth-child(2) {
    margin-top: 65px;
  }
  .rd-technology__heading {
    font-size: 1.125rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .rd-technology__heading a {
    gap: 12px;
    margin-block: 0;
  }
  .rd-technology__lead {
    margin-top: 10px;
    font-size: 1.375rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .rd-technology__copy {
    margin-top: 25px;
  }
  .rd-research {
    width: 100%;
    padding: 80px 25px;
  }
  .rd-research .rd-heading {
    font-size: clamp(1.25rem, 5.866667vw, 1.375rem);
  }
  .rd-research__intro .rd-copy {
    margin-top: 30px;
  }
  .rd-collaboration {
    margin-top: 60px;
  }
  .rd-collaboration + .rd-collaboration {
    margin-top: 65px;
  }
  .rd-collaboration__heading {
    font-size: 1.25rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .rd-collaboration__body {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    margin-top: 30px;
  }
  .rd-collaboration__lead {
    font-size: 1.25rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .rd-collaboration__copy {
    margin-top: 25px;
  }
  .rd-collaboration figcaption {
    margin-top: 12px;
    font-size: 0.6875rem;
    line-height: 1.9;
    letter-spacing: 0.05em;
  }
  .rd-ip {
    width: calc(100% - 50px);
    padding: 80px 0;
  }
  .rd-ip__intro .rd-copy {
    margin-top: 30px;
  }
  .rd-patent {
    margin-top: 45px;
  }
  .rd-patent + .rd-patent {
    margin-top: 60px;
  }
  .rd-patent__details {
    grid-template-columns: minmax(0, 1fr);
    gap: 25px;
    width: 100%;
    margin-top: 30px;
  }
  .rd-patent__list {
    padding: 25px 0 0;
    border-top: 1px solid #b0b0b0;
    border-left: 0;
    font-size: 0.8125rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .rd-patent__list > div + div {
    margin-top: 18px;
  }
  .rd-patent__list dt {
    flex-direction: column;
  }
  .rd-patent__list dd {
    margin-top: 5px;
  }
  .rd-next {
    width: 100%;
    min-height: 0;
  }
  .rd-next__content {
    padding: 80px 25px;
  }
  .rd-next__eyebrow {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
  .rd-next__eyebrow::after {
    margin-top: 20px;
  }
  .rd-next__lead {
    margin-top: 35px;
    font-size: 1.5rem;
    line-height: 1.9;
    letter-spacing: 0.07em;
  }
  .rd-next__copy {
    margin-top: 55px;
  }
  .rd-next__link {
    margin-top: 45px;
  }
}
.news-hero {
  position: relative;
  height: 56.25vw;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: #080a09;
}
.news-hero__picture {
  position: absolute;
  inset: 0;
}
.news-hero__picture img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 109.074074%;
  object-fit: cover;
}
.news-hero__content {
  position: relative;
  padding: 19.791667vw 5.729167% 60px;
}
.news-hero__eyebrow {
  font-weight: 400;
  color: #e4ebe8;
  font-size: 1rem;
  line-height: 1.4375rem;
  letter-spacing: 0.13em;
}
.news-hero__eyebrow::after {
  display: block;
  width: 50px;
  height: 1px;
  margin-top: 30px;
  background: currentColor;
  content: "";
}
.news-hero__heading {
  margin-top: 45px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2.25rem, 2.8125vw, 3.375rem);
  font-weight: 400;
  line-height: 1.296296;
  letter-spacing: 0.13em;
}

.news-feed {
  padding-top: 146px;
}
.news-feed__heading {
  margin: 0 25px 24px;
  color: #030303;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 4.375rem;
  letter-spacing: 0.13em;
  text-align: center;
}
.news-feed__heading:focus {
  outline: none;
  box-shadow: none;
}
.news-feed__status {
  max-width: 906px;
  margin: 45px auto;
  padding-inline: 25px;
  font-size: 0.875rem;
  line-height: 2;
  text-align: center;
}
.news-feed__status--quiet {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.news-feed[data-state=loading] .news-feed__results {
  min-height: 1200px;
}
.news-feed__list {
  margin-inline: 5px;
  border-bottom: 1px solid #e5e5e5;
}
.news-feed__list:empty {
  border: 0;
}
.news-feed__actions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  min-height: 269px;
  padding: 96px 25px 117px;
}
.news-feed__actions noscript {
  font-size: 0.875rem;
  line-height: 2;
}
.news-feed__actions noscript a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.news-feed__more {
  max-width: 100%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.8125rem;
}
.news-feed__more:disabled {
  color: #888;
  cursor: wait;
}
.news-feed__fallback {
  align-self: center;
}

.news-entry {
  min-height: 425px;
  padding: 145px 0 47px;
  border-top: 1px solid #e5e5e5;
  color: #3a3a3a;
  font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
}
.news-entry__content {
  width: calc(100% - 50px);
  max-width: 906px;
  margin-inline: auto;
}
.news-entry__heading {
  margin: 0;
  font-family: "New York", "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: anywhere;
  scroll-margin-top: 30px;
}
.news-entry__heading:focus:not(:focus-visible) {
  outline: none;
}
@media (hover: hover) {
  .news-entry__heading a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
  }
}
.news-entry__date {
  display: block;
  margin-top: 8px;
  font-size: 0.9375rem;
  line-height: 1.375rem;
}
.news-entry__excerpt {
  display: block;
  margin-top: 24px;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  overflow-wrap: anywhere;
}
.news-entry__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 86px;
  min-height: 44px;
  margin-top: 30px;
  padding: 7px 0 17px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.75rem;
  line-height: 1.25rem;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .news-hero {
    height: 680px;
    min-height: 680px;
  }
  .news-hero__picture {
    height: 100%;
  }
  .news-hero__picture img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .news-hero__content {
    padding: 160px 35px 60px;
  }
  .news-hero__eyebrow {
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .news-hero__eyebrow::after {
    width: 30px;
    margin-top: 15px;
  }
  .news-hero__heading {
    margin-top: 30px;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.13em;
  }
  .news-feed {
    padding-top: 75px;
  }
  .news-feed__heading {
    margin-bottom: 40px;
    font-size: 1.875rem;
    line-height: 1.6;
  }
  .news-feed__list {
    margin-inline: 0;
  }
  .news-feed[data-state=loading] .news-feed__results {
    min-height: 700px;
  }
  .news-feed__actions {
    min-height: 0;
    padding: 60px 25px 80px;
  }
  .news-entry {
    min-height: 0;
    padding: 45px 0;
  }
  .news-entry__heading {
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .news-entry__date {
    margin-top: 12px;
    font-size: 0.75rem;
    line-height: 1.6;
  }
  .news-entry__excerpt {
    margin-top: 22px;
    font-size: 0.875rem;
    line-height: 1.9;
    -webkit-line-clamp: 4;
  }
  .news-entry__link {
    margin-top: 25px;
  }
}
.news-detail {
  color: #3a3a3a;
}
.news-detail__masthead {
  display: grid;
  place-items: center;
  height: 285px;
  margin-inline: 7px;
  padding-top: 90px;
  border-bottom: 1px solid #e8e8e8;
  color: #626262;
  font-family: "New York", "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.125rem;
  line-height: 2.75rem;
}
.news-detail__return {
  padding: 190px 25px 165px;
  text-align: center;
}
.news-detail__back {
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  gap: 25px;
  padding: 0;
  border: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.875rem;
  --arrow-shift: -4px;
}
.news-detail__back img {
  width: 28px;
  height: 10px;
}

.news-article {
  width: calc(100% - 50px);
  max-width: 906px;
  margin: 105px auto 0;
  font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  overflow-wrap: anywhere;
}
.news-article__header {
  text-align: center;
}
.news-article__heading {
  max-width: 840px;
  margin-inline: auto;
  color: #565656;
  font-family: "New York", "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.15;
  scroll-margin-top: 30px;
}
.news-article__heading:focus:not(:focus-visible) {
  outline: none;
}
.news-article__date {
  display: block;
  margin-top: 30px;
}
.news-article__body {
  margin-top: 60px;
}
.news-article__body p {
  margin-bottom: 20px;
}
.news-article__body h2, .news-article__body h3, .news-article__body h4, .news-article__body h5, .news-article__body h6 {
  margin: 36px 0 20px;
  font-weight: 600;
  line-height: 1.6;
}
.news-article__body h2 {
  font-size: 1.375rem;
}
.news-article__body h3 {
  font-size: 1.125rem;
}
.news-article__body h4, .news-article__body h5, .news-article__body h6 {
  font-size: 1rem;
}
.news-article__body ul, .news-article__body ol {
  margin: 20px 0;
  padding-left: 1.5em;
}
.news-article__body ul {
  list-style: disc;
}
.news-article__body li + li {
  margin-top: 8px;
}
.news-article__body dl, .news-article__body figure {
  margin: 24px 0;
}
.news-article__body dd {
  margin: 8px 0 16px 1.5em;
}
.news-article__body figcaption {
  margin-top: 10px;
  font-size: 0.8125rem;
}
.news-article__body blockquote {
  margin: 24px 0;
  padding-left: 20px;
  border-left: 2px solid #e9e9e9;
}
.news-article__body pre {
  white-space: pre-wrap;
}
.news-article__body hr {
  margin: 35px 0;
  border: 0;
  border-top: 1px solid #e5e5e5;
}
.news-article__body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-article__body > :first-child {
  margin-top: 0;
}
.news-article__body > :last-child {
  margin-bottom: 0;
}
.news-article__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
}
.news-article__body > p:first-child .news-article__image {
  margin-top: 0;
}
.news-article__align-right, .news-article__updated {
  text-align: right;
}
.news-article__align-center {
  text-align: center;
}
.news-article__strong {
  font-weight: 700;
}
.news-article__table {
  max-width: 100%;
  margin: 20px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}
.news-article__table table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
.news-article__table th, .news-article__table td {
  width: var(--content-cell-width, auto);
  padding: 8px 14px;
  border: 1px solid #e8e8e8;
  text-align: left;
  vertical-align: top;
}
.news-article__table th {
  background: #f7f7f7;
  font-weight: 600;
}
.news-article__table p:last-child {
  margin-bottom: 0;
}
.news-article__table ul, .news-article__table ol {
  margin: 0;
}
.news-article__status {
  margin-top: 35px;
  line-height: 2;
  text-align: center;
}
.news-article__status--quiet {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.news-article__recovery {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin-top: 35px;
}
.news-article__recovery .detail-link {
  align-self: center;
}
.news-article__noscript {
  margin-top: 35px;
  text-align: center;
}
.news-article__noscript a {
  text-decoration: underline;
}

.news-share {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 36px;
}
.news-share__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid #e5e5e5;
  font-family: "New York", "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
@media (hover: hover) {
  .news-share__link:hover {
    background: #f5f5f5;
  }
}
.news-share__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  mask: var(--share-icon) center/contain no-repeat;
}
.news-share__icon--facebook {
  --share-icon: url("../images/news-facebook.svg");
  background: #3b5998;
}
.news-share__icon--twitter {
  --share-icon: url("../images/news-twitter.svg");
  background: #1da1f2;
}
.news-share__icon--pinterest {
  --share-icon: url("../images/news-pinterest.svg");
  background: #bd081c;
}

@media (max-width: 767px) {
  .news-detail__masthead {
    height: 170px;
    margin-inline: 0;
    padding-top: 20px;
    font-size: 1.75rem;
  }
  .news-detail__return {
    padding: 90px 25px 100px;
  }
  .news-detail__back {
    min-height: 44px;
  }
  .news-article {
    margin-top: 55px;
    font-size: 0.875rem;
    line-height: 1.9;
  }
  .news-article__heading {
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .news-article__date {
    margin-top: 20px;
    font-size: 0.75rem;
  }
  .news-article__body {
    margin-top: 40px;
  }
  .news-article__body h2 {
    font-size: 1.125rem;
  }
  .news-article__body h3 {
    font-size: 1rem;
  }
  .news-article__table {
    font-size: 0.8125rem;
  }
  .news-share {
    gap: 8px;
  }
  .news-share__link {
    min-height: 44px;
  }
}
.contact {
  padding: clamp(60px, 5.15625vw, 99px) 5.729167% clamp(120px, 19.479167vw, 374px);
}
.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4.166667vw, 80px);
  max-width: 1268px;
  margin: clamp(100px, 9.791667vw, 188px) auto 0;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 299px;
  padding: 50px 24px;
  background: #ebebef;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  text-align: center;
}
.contact-card__heading {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.25rem;
  letter-spacing: 0.1em;
}
.contact-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  max-width: 100%;
  min-height: 48px;
  padding: 11px 10px;
  border: 1px solid #282828;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.1em;
  overflow-wrap: anywhere;
  text-wrap: balance;
  transition: background-color 200ms ease, border-color 200ms ease;
}
.contact-card__link:focus-visible {
  border-color: transparent;
  background: #fff;
}
@media (hover: hover) {
  .contact-card__link:hover {
    border-color: transparent;
    background: #fff;
  }
}

@media (max-width: 767px) {
  .contact {
    padding: 60px 30px 100px;
  }
  .contact__cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    margin-top: 70px;
  }
  .contact-card {
    gap: 18px;
    min-height: 240px;
    padding: 45px 20px;
  }
  .contact-card__heading {
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .contact-card__link {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.privacy-policy {
  padding: clamp(60px, 5.15625vw, 99px) 5.729167% 160px;
}
.privacy-policy__document {
  max-width: 1120px;
  margin: 150px auto 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 2.2;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}
.privacy-policy__document[data-state=loading] {
  min-height: 400px;
}
.privacy-policy__status {
  margin-bottom: 30px;
}
.privacy-policy__status--quiet {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.privacy-policy__content:focus:not(:focus-visible) {
  outline: none;
}
.privacy-policy__content h2, .privacy-policy__content h3, .privacy-policy__content h4, .privacy-policy__content h5, .privacy-policy__content h6 {
  font-weight: 500;
  line-height: 1.8;
}
.privacy-policy__content h2 {
  margin: 60px 0 24px;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}
.privacy-policy__content h3 {
  margin: 32px 0 16px;
  font-size: 1.0625rem;
}
.privacy-policy__content h4, .privacy-policy__content h5, .privacy-policy__content h6 {
  margin: 24px 0 12px;
  font-size: 1rem;
}
.privacy-policy__content p + p {
  margin-top: 20px;
}
.privacy-policy__content ul, .privacy-policy__content ol {
  margin: 16px 0 24px;
  padding-left: 1.5em;
}
.privacy-policy__content ul {
  list-style: disc;
}
.privacy-policy__content li + li {
  margin-top: 5px;
}
.privacy-policy__content li > ul, .privacy-policy__content li > ol {
  margin-block: 8px;
}
.privacy-policy__content dl {
  margin: 24px 0;
}
.privacy-policy__content dd {
  margin: 8px 0 16px 1.5em;
}
.privacy-policy__content blockquote {
  margin: 24px 0;
  padding-left: 24px;
  border-left: 2px solid #e9e9e9;
}
.privacy-policy__content pre {
  white-space: pre-wrap;
}
.privacy-policy__content a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.privacy-policy__content hr {
  margin: 60px 0;
  border: 0;
  border-top: 1px solid #d5d5d5;
}
.privacy-policy__content > :first-child {
  margin-top: 0;
}
.privacy-policy__table {
  max-width: 100%;
  margin: 30px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}
.privacy-policy__table table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  font-size: 0.875rem;
  line-height: 2;
}
.privacy-policy__table caption {
  margin-bottom: 12px;
  text-align: left;
}
.privacy-policy__table th, .privacy-policy__table td {
  padding: 20px;
  border: 1px solid #d5d5d5;
  text-align: left;
  vertical-align: top;
}
.privacy-policy__table th {
  background: #f5f5f5;
  font-weight: 500;
}
.privacy-policy__table ul, .privacy-policy__table ol {
  margin: 0;
  padding-left: 1.25em;
}
.privacy-policy__content .privacy-policy__updated {
  margin-top: 50px;
  text-align: right;
}
.privacy-policy__align-right {
  text-align: right;
}
.privacy-policy__align-center {
  text-align: center;
}
.privacy-policy__strong {
  font-weight: 700;
}
.privacy-policy__image {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.privacy-policy__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-top: 60px;
}
.privacy-policy__retry {
  max-width: 100%;
  font-family: inherit;
}
@media (max-width: 767px) {
  .privacy-policy {
    padding: 60px 30px 100px;
  }
  .privacy-policy__document {
    margin-top: 70px;
    font-size: 0.875rem;
    line-height: 2.1;
  }
  .privacy-policy__content h2 {
    margin-top: 45px;
    font-size: 1.125rem;
  }
  .privacy-policy__content h3 {
    margin-top: 28px;
    font-size: 0.9375rem;
  }
  .privacy-policy__content h4, .privacy-policy__content h5, .privacy-policy__content h6 {
    font-size: 0.875rem;
  }
  .privacy-policy__table {
    margin-block: 24px;
  }
  .privacy-policy__actions {
    margin-top: 45px;
  }
}

.personal-policy .page-intro__eyebrow {
  font-family: "Roboto", Arial, sans-serif;
}
@media (max-width: 767px) {
  .personal-policy .page-intro__heading {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
}

[data-reveal].is-reveal-ready:not(h1, h2):not(:has(h1, h2)),
[data-reveal=up].is-reveal-ready:is(h1, h2) {
  opacity: 0;
}
[data-reveal].is-reveal-ready:not(h1, h2):not(:has(h1, h2)).is-revealed,
[data-reveal=up].is-reveal-ready:is(h1, h2).is-revealed {
  opacity: 1;
  animation: cado-reveal-fade 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
[data-reveal].is-reveal-ready:not(h1, h2):not(:has(h1, h2)).is-revealed[data-reveal=up],
[data-reveal=up].is-reveal-ready:is(h1, h2).is-revealed[data-reveal=up] {
  animation-name: cado-reveal-up;
  animation-delay: 120ms;
}

[data-reveal].is-reveal-instant {
  animation: none !important;
}

@keyframes cado-reveal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes cado-reveal-up {
  from {
    opacity: 0;
    translate: 0 40px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@media (prefers-reduced-motion: reduce), print {
  [data-reveal].is-reveal-ready {
    opacity: 1 !important;
    animation: none !important;
  }
}
.is-scroll-zoom {
  --scroll-zoom-amount: 0.06;
  display: block;
  overflow: hidden;
  overflow: clip;
}
.is-scroll-zoom > img {
  scale: calc(1 + var(--scroll-zoom-progress, 0) * var(--scroll-zoom-amount));
}
.is-scroll-zoom.is-scroll-zoom-visible > img {
  will-change: scale;
}

.scroll-zoom-article {
  width: fit-content;
  max-width: 100%;
  margin: 24px auto;
}
.scroll-zoom-article > .news-article__image {
  margin: 0;
}

.news-article__body > p:first-child .scroll-zoom-article {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce), print {
  .is-scroll-zoom > img {
    scale: none !important;
    will-change: auto !important;
  }
}
.sr-only {
  position: absolute !important;
  display: block !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  max-width: calc(100% - 24px);
  padding: 12px 20px;
  transform: translateY(calc(-100% - 24px));
  color: #fff;
  background: #121212;
  font: 1rem/1.5 system-ui, sans-serif;
  text-decoration: underline;
}
.skip-link:focus {
  transform: none;
}

html {
  scroll-padding-top: calc(var(--header-offset, var(--header-height)) + 12px);
}

:focus-visible {
  outline: 3px solid #121212;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #fff;
}

#main-content:focus-visible,
#page-top:focus-visible {
  outline-offset: -3px;
  box-shadow: inset 0 0 0 6px #fff;
}

main section[tabindex="-1"]:focus {
  outline: none;
  box-shadow: none;
}

main :where(a, button, [tabindex="0"]) {
  scroll-margin-block: 12px;
}

.external-link-icon {
  display: inline-block;
  margin-inline-start: 0.35em;
  font-family: system-ui, sans-serif;
}

.site-header {
  height: auto;
  min-height: var(--header-height);
}
.site-header__nav .navigation-list {
  flex-wrap: wrap;
}
.site-header__nav a {
  line-height: 1.5;
}

.language-switch a {
  min-width: 24px;
  justify-content: center;
}

.mobile-menu__header {
  min-height: 60px;
  height: auto;
}

.site-footer__logo {
  width: fit-content;
  display: flex;
  align-items: center;
}

.site-footer__group ul {
  white-space: normal;
}

.site-footer__nav, .site-footer__group, .site-footer__legal li {
  min-width: 0;
}

.site-footer__legal {
  flex-wrap: wrap;
}

.site-footer__legal a {
  display: inline-flex;
  align-items: center;
}

.site-footer__group a {
  min-height: 24px;
}

@media (min-width: 768px) {
  .site-footer__logo {
    min-height: 44px;
  }
}
.feature {
  height: auto;
  min-height: max(480px, 39.583333vw);
}

.company-hero, .story-hero, .business-hero, .strength-hero, .rd-hero, .news-hero {
  height: auto;
}

.company-hero, .business-hero, .strength-hero, .rd-hero {
  min-height: max(520px, 50vw);
}

.story-hero {
  min-height: max(620px, 61.354167vw - 100px);
}

.news-hero {
  min-height: max(620px, 56.25vw);
}

main :where(h1, h2, h3, h4, p, dd, a, button) {
  overflow-wrap: anywhere;
}

.business-growth__step--second .business-growth__picture::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 38%, transparent 55%);
  content: "";
}

@media (max-width: 767px) {
  .feature {
    min-height: 360px;
  }
  .feature--with-description {
    min-height: 420px;
  }
  .company-hero, .story-hero, .business-hero, .strength-hero, .rd-hero, .news-hero {
    min-height: 680px;
  }
  .news-share {
    flex-wrap: wrap;
  }
  .feature:not(.feature--philosophy) .feature__picture::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.55));
  }
  .business-growth__step--second .business-growth__picture::after {
    display: none;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  img[src$="/logo.svg"], img[src$="/menu.svg"], img[src$="/menu-close.svg"], img[src$="/arrow-dark.svg"],
  img[src$="/arrow-contact.svg"], img[src$="/news-arrow-left.svg"],
  .site-footer__social img {
    filter: invert(1);
  }
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
  img[src$="/logo-white.svg"], img[src$="/arrow-light.svg"] {
    filter: invert(1);
  }
}
@media (forced-colors: active) {
  :focus-visible {
    outline-color: Highlight;
    box-shadow: none;
  }
  .skip-link {
    color: CanvasText;
    background: Canvas;
    border: 2px solid ButtonText;
  }
  .news-share__icon {
    background-color: LinkText;
  }
  .outline-link, .menu-toggle {
    border: 1px solid ButtonText;
  }
  .hero__heading, .feature__content, .company-hero__content, .story-hero__content,
  .business-hero__content, .strength-hero__content, .rd-hero__content, .news-hero__content {
    color: CanvasText;
    background: Canvas;
  }
}
