/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .visible {
    visibility: visible;
  }
  .absolute {
    position: absolute;
  }
  .fixed {
    position: fixed;
  }
  .relative {
    position: relative;
  }
  .static {
    position: static;
  }
  .sticky {
    position: sticky;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .end {
    inset-inline-end: var(--spacing);
  }
  .container {
    width: 100%;
    @media (width >= 40rem) {
      max-width: 40rem;
    }
    @media (width >= 48rem) {
      max-width: 48rem;
    }
    @media (width >= 64rem) {
      max-width: 64rem;
    }
    @media (width >= 80rem) {
      max-width: 80rem;
    }
    @media (width >= 96rem) {
      max-width: 96rem;
    }
  }
  .block {
    display: block;
  }
  .contents {
    display: contents;
  }
  .flex {
    display: flex;
  }
  .hidden {
    display: none;
  }
  .inline {
    display: inline;
  }
  .inline-block {
    display: inline-block;
  }
  .inline-flex {
    display: inline-flex;
  }
  .table {
    display: table;
  }
  .resize {
    resize: both;
  }
  .italic {
    font-style: italic;
  }
  .overline {
    text-decoration-line: overline;
  }
  .blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Unbounded:wght@400;500&display=swap');
:root {
  --ink: #151219;
  --paper: #f7f5f2;
  --magenta: #ed168c;
  --muted: #716b73;
  --content-width: 1120px;
  --body-text: 15px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Meiryo,'メイリオ','Hiragino Kaku Gothic ProN',sans-serif;
  font-weight: 400;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  height: 84px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,245,242,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(21,18,25,.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Unbounded',sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.035em;
}
.brand-mark {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 7px 7px 0 rgba(237,22,140,.24);
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-family: 'Unbounded',sans-serif;
  font-size: 10pt;
  font-weight: 400;
  letter-spacing: -.015em;
}
nav a {
  transition: color .2s;
}
nav a:hover {
  color: var(--magenta);
}
nav a.current {
  color: var(--magenta);
}
.nav-contact {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 18px;
}
.hero {
  min-height: 620px;
  height: clamp(620px,78vh,760px);
  position: relative;
  overflow: hidden;
  background: #17151a;
  color: #fff;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('./hero-group.jpg') center 46%/cover no-repeat;
  transform: scale(1.005);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(13,10,16,.80) 0%,rgba(13,10,16,.35) 55%,rgba(13,10,16,.08)),linear-gradient(0deg,rgba(13,10,16,.65),transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(76px,9vh,100px) 7vw 90px;
  max-width: 1000px;
}
.eyebrow {
  font-family: 'Unbounded',sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .1em;
}
.eyebrow:before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  background: var(--magenta);
  margin: 0 14px 3px 0;
}
.hero h1 {
  font-size: clamp(40px,4.7vw,70px);
  line-height: 1.24;
  letter-spacing: -.04em;
  margin: 34px 0 30px;
  font-weight: 500;
}
.hero h1 .hero-line {
  display: block;
  white-space: nowrap;
}
.hero h1 .accent {
  color: #ff4dac;
}
.hero-lead {
  font-size: clamp(15px,1.3vw,20px);
  line-height: 1.9;
  letter-spacing: .03em;
}
.hero-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 230px;
  margin-top: 42px;
  padding: 17px 2px;
  border-bottom: 1px solid rgba(255,255,255,.7);
  font-weight: 700;
  font-size: 13px;
}
.hero-link span {
  color: var(--magenta);
  font-size: 21px;
}
.hero-meta {
  position: absolute;
  z-index: 2;
  bottom: 31px;
  left: 7vw;
  right: 4vw;
  display: flex;
  justify-content: space-between;
  font: 9px 'Unbounded',sans-serif;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}
.intro,.news-section {
  padding: 130px 7vw;
}
.section-kicker {
  font: 400 10px 'Unbounded',sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-kicker span {
  color: var(--magenta);
}
.section-kicker:after {
  content: "";
  width: 54px;
  height: 1px;
  background: currentColor;
  opacity: .25;
}
.intro-copy {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 9vw;
  margin-top: 68px;
  align-items: start;
}
.intro h2,.news-title h2 {
  font-size: clamp(38px,4vw,58px);
  line-height: 1.3;
  letter-spacing: -.055em;
  margin: 0;
}
.intro-line {
  display: block;
  white-space: nowrap;
}
.intro-copy>div {
  max-width: 560px;
  padding-top: 12px;
}
.intro-copy p {
  font-size: 16px;
  line-height: 2.1;
  margin: 0 0 20px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  margin-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.text-link span {
  color: var(--magenta);
}
.research-section {
  background: var(--ink);
  color: #fff;
  padding: 130px 7vw 150px;
}
.section-kicker.light {
  color: #fff;
}
.section-heading {
  display: grid;
  grid-template-columns: .8fr 1fr .8fr;
  align-items: end;
  gap: 40px;
}
.section-heading h2 {
  font: 500 clamp(52px,6.5vw,92px)/.92 'Unbounded',sans-serif;
  letter-spacing: -.06em;
  margin: 0;
}
.section-heading>p {
  color: #bdb7bf;
  line-height: 1.9;
  margin: 0;
}
.research-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #3b373e;
  margin-top: 80px;
}
.research-card {
  display: grid;
  grid-template-columns: minmax(250px,.68fr) minmax(235px,.62fr) 1fr;
  grid-template-rows: auto auto auto 1fr;
  column-gap: 30px;
  min-height: 300px;
  background: var(--ink);
  padding: 0 32px 0 0;
  position: relative;
  transition: background-color .3s;
}
.research-image {
  grid-column: 1;
  grid-row: 1/5;
  align-self: start;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1/1;
  margin: 0;
  overflow: hidden;
  background: #ede9ed;
}
.research-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter .3s;
}
.research-card:hover img {
  filter: saturate(1.12) brightness(1.05);
}
.research-card.is-linked:hover {
  background: #252129;
}
.research-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.research-card-link:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: -4px;
}
.research-number,.research-en,.research-card h3,.research-description {
  grid-column: 2;
}
.research-number {
  align-self: end;
  padding-top: 30px;
  font: 400 9px 'Unbounded',sans-serif;
  color: var(--magenta);
}
.research-en {
  min-height: 0;
  margin: 8px 0 0;
  font: 8px/1.55 'Unbounded',sans-serif !important;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #aaa3ad !important;
}
.research-card h3 {
  font-size: 21px;
  margin: 14px 0;
}
.research-description {
  max-width: 430px;
  min-height: 0;
  margin: 0 0 30px;
  font-size: 13px;
  line-height: 1.85;
  color: #c9c3ca;
}
.research-references {
  position: relative;
  z-index: 2;
  grid-column: 3;
  grid-row: 1/5;
  align-self: center;
  margin: 24px 0;
  border-top: 1px solid #413c43;
  border-bottom: 1px solid #413c43;
}
.research-references .references-label {
  margin: 0;
  padding: 17px 0 10px;
  color: var(--magenta);
  font: 500 9px/1.5 'Unbounded',sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.research-references ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: references;
}
.research-references li {
  counter-increment: references;
  border-bottom: 1px solid #353139;
}
.research-references a {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 7px;
  padding: 10px 0;
  color: #d9d4da;
}
.research-references a:before {
  content: "0" counter(references);
  color: #777078;
  font: 8px/1.6 'Unbounded',sans-serif;
}
.research-references a:hover .reference-title {
  color: #fff;
}
.reference-author {
  grid-column: 2;
  color: #b8b1b9;
  font: 500 8px/1.5 'Unbounded',sans-serif;
}
.reference-collaboration {
  grid-column: 2;
  color: #9a929b;
  font-size: 9px;
  line-height: 1.45;
}
.reference-title {
  grid-column: 2;
  font-size: 10px;
  line-height: 1.45;
  transition: color .2s;
}
.reference-meta {
  grid-column: 2;
  color: #89838b;
  font: 8px/1.5 'Unbounded',sans-serif;
}
.reference-meta b {
  color: var(--magenta);
  font-weight: 400;
}
.news-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 9vw;
}
.news-title h2 {
  font-family: 'Unbounded',sans-serif;
  font-weight: 500;
  line-height: .98;
  margin: 35px 0 30px;
}
.news-list {
  border-top: 1px solid #cfcace;
}
.news-item {
  display: grid;
  grid-template-columns: 100px 100px 1fr 24px;
  gap: 18px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #cfcace;
}
.news-item time,.tag {
  font: 10px 'Unbounded',sans-serif;
  letter-spacing: 0;
}
.tag {
  color: var(--magenta);
}
.news-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
.arrow {
  color: var(--magenta);
  font-size: 18px;
  transition: transform .2s;
}
.news-item:hover .arrow {
  transform: translate(3px,-3px);
}
.join {
  background: var(--ink);
  color: white;
  padding: 120px 7vw;
  text-align: center;
  border-top: 1px solid #353139;
}
.join .eyebrow {
  color: #d1cad2;
}
.join .eyebrow:before {
  background: var(--magenta);
}
.join h2 {
  font-size: clamp(38px,4vw,58px);
  line-height: 1.3;
  letter-spacing: -.055em;
  margin: 30px 0;
}
.join>p:not(.eyebrow) {
  font-size: 14px;
}
.join>a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 230px;
  margin-top: 40px;
  padding: 16px 4px;
  border-bottom: 1px solid #fff;
  font: 400 11px 'Unbounded',sans-serif;
}
.join>a span {
  color: var(--magenta);
}
footer {
  background: #100e12;
  color: #fff;
  padding: 76px 7vw 34px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 60px;
  font-size: 12px;
  line-height: 1.9;
}
.footer-brand {
  font-size: 21px;
  align-self: start;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 25px;
  font-family: 'Unbounded',sans-serif;
  font-size: 9px;
}
footer small {
  grid-column: 1/-1;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #39353b;
  color: #8c858e;
  font: 10px Arial,sans-serif;
  letter-spacing: .08em;
}
.legacy-page-title {
  min-height: 220px;
  padding: 62px 7vw 48px;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.legacy-page-title>span {
  color: var(--magenta);
  font: 9px 'Unbounded',sans-serif;
  letter-spacing: .1em;
}
.legacy-page-title h1 {
  margin: 16px 0 0;
  font: 500 clamp(36px,4.5vw,64px)/1 'Unbounded',sans-serif;
  letter-spacing: -.055em;
}
.legacy-content {
  padding: 100px 7vw 140px;
}
.legacy-content section {
  max-width: var(--content-width);
  margin: 0 auto;
}
.legacy-content h2 {
  margin: 0 0 85px;
  max-width: 900px;
  font-size: clamp(32px,4vw,56px);
  line-height: 1.35;
  letter-spacing: -.05em;
}
.about-page .legacy-content h2 {
  font-size: clamp(26px,3.2vw,44px);
}
.legacy-content h3 {
  clear: both;
  margin: 78px 0 26px;
  padding-top: 24px;
  border-top: 1px solid #cbc6cb;
  font-size: clamp(20px,2vw,26px);
  line-height: 1.5;
}
.legacy-content h3:first-of-type {
  margin-top: 0;
}
.legacy-content h3 .color1 {
  color: var(--ink);
}
.legacy-content h3 .color1::first-letter {
  color: var(--magenta);
}
.legacy-content p {
  font-size: var(--body-text);
  line-height: 2;
  margin: 0 0 28px;
}
.about-page .legacy-content section>p {
  font-size: 16.33px;
}
.about-page .legacy-content .about-standard-text {
  font-size: var(--body-text);
}
.about-lead {
  max-width: none;
  font-size: var(--body-text) !important;
  line-height: 2 !important;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 52px 0 20px;
  background: #cbc6cb;
  border: 1px solid #cbc6cb;
}
.about-points>div {
  display: grid;
  grid-template-columns: 48px minmax(220px,.72fr) minmax(0,1.28fr);
  column-gap: 28px;
  align-items: start;
  padding: 34px 40px 30px;
  background: var(--paper);
}
.about-points>div>span {
  color: var(--magenta);
  font: 500 9px 'Unbounded',sans-serif;
  letter-spacing: .08em;
}
.about-points h4 {
  margin: 0;
  font-size: clamp(19px,2vw,25px);
  line-height: 1.55;
  letter-spacing: -.035em;
}
.about-points p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}
.about-page .about-points p {
  font-size: 15.33px;
}
.about-welcome p+p {
  grid-column: 3;
  margin-top: 12px;
}
.about-welcome strong {
  color: var(--magenta);
  font-size: 16.66px;
  line-height: 1.8;
}
.career-destinations {
  margin-top: 42px;
  border-top: 1px solid #cbc6cb;
}
.career-destinations>div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  padding: 32px 0 28px;
  border-bottom: 1px solid #cbc6cb;
}
.career-heading span {
  color: var(--magenta);
  font: 500 9px 'Unbounded',sans-serif;
  letter-spacing: .08em;
}
.career-heading h4 {
  margin: 12px 0 0;
  font-size: 22px;
  letter-spacing: -.035em;
}
.career-destinations p {
  margin: 0;
}
.legacy-content font[color="red"] {
  color: var(--magenta);
  font-weight: 700;
}
.legacy-content img.hidari {
  float: left;
  width: min(400px,46%);
  height: auto;
  margin: 5px 38px 25px 0;
  background: #fff;
}
.legacy-content h3[id] {
  scroll-margin-top: 110px;
}
.legacy-content .topref {
  clear: both;
  margin: 38px 0 0;
  padding: 28px 32px;
  background: #ece9eb;
}
.legacy-content .topref dt {
  margin-bottom: 14px;
  color: var(--magenta);
  font: 500 13px 'Unbounded',sans-serif;
  letter-spacing: .04em;
}
.legacy-content .topref dd {
  margin: 7px 0;
  padding-left: 20px;
  text-indent: -20px;
  font-size: 14px;
  line-height: 1.75;
}
.news-content {
  width: 100%;
  max-width: calc(var(--content-width) + 14vw);
  margin: 0 auto;
  padding: 100px 7vw 140px;
}
.news-year-heading {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: end;
  padding-bottom: 34px;
}
.news-year-heading>span {
  color: var(--magenta);
  font: 500 13px 'Unbounded',sans-serif;
}
.news-year-heading h2 {
  grid-column: 2;
  margin: 0;
  font: 500 clamp(28px,3.2vw,44px)/1.1 'Unbounded',sans-serif;
  letter-spacing: -.055em;
}
.news-timeline {
  border-top: 1px solid #c9c4c9;
}
.news-entry {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-bottom: 1px solid #c9c4c9;
  padding: 34px 0 36px;
}
.news-entry-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  font: 500 10px/1.5 'Unbounded',sans-serif;
}
.news-entry-meta span {
  color: var(--magenta);
}
.news-entry-body h3 {
  margin: 0 0 14px;
  font-size: clamp(17px,1.65vw,22px);
  line-height: 1.65;
  letter-spacing: -.025em;
}
.news-entry-body p {
  max-width: 820px;
  margin: 0;
  font-size: 15px;
  line-height: 2;
}
.news-entry-copy {
  max-width: 820px;
  font-size: 15px;
  line-height: 2;
}
.news-entry-body a {
  border-bottom: 1px solid var(--ink);
}
.news-entry-detail {
  max-width: 820px;
  margin-top: 16px !important;
  padding: 16px 20px;
  background: #ece9eb;
  font-size: 13px !important;
  line-height: 1.8 !important;
}
.news-bibliography {
  display: block;
  color: #514b52;
}
.news-bibliography a {
  border-bottom: 1px solid #9e979f;
}
.news-photo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 14px;
  padding: 9px 15px 8px;
  border: 1px solid var(--ink) !important;
  border-radius: 999px;
  font: 500 10px/1.2 'Unbounded',sans-serif;
  vertical-align: middle;
  white-space: nowrap;
}
.news-photo-link span {
  color: var(--magenta);
  font-size: 14px;
  line-height: 1;
}
.news-photo-link:hover {
  border-color: var(--magenta) !important;
  color: var(--magenta);
}
.news-archive {
  display: grid;
  grid-template-columns: 130px 1fr;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid #c9c4c9;
}
.news-archive>p {
  margin: 0;
  color: var(--magenta);
  font: 500 11px 'Unbounded',sans-serif;
}
.news-archive>div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.news-archive a {
  font: 500 12px 'Unbounded',sans-serif;
  border-bottom: 1px solid #bfb9c0;
  padding-bottom: 5px;
}
.news-archive a.current {
  color: var(--magenta);
  border-color: var(--magenta);
}
.achievements-content {
  width: 100%;
  max-width: calc(var(--content-width) + 14vw);
  margin: 0 auto;
  padding: 100px 7vw 140px;
}
.achievement-tabs {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  margin-bottom: 90px;
  background: #cbc6cb;
  border: 1px solid #cbc6cb;
}
.achievement-tabs a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  background: var(--paper);
  font-family: 'Unbounded',sans-serif;
}
.achievement-tabs a.current {
  background: var(--ink);
  color: #fff;
}
.achievement-tabs span {
  font-size: 11px;
  line-height: 1.4;
}
.achievement-tabs small {
  color: #817a82;
  font-family: Meiryo,'メイリオ',sans-serif;
  font-size: 11px;
}
.achievement-tabs a.current small {
  color: #c5bec7;
}
.achievement-heading {
  margin-bottom: 60px;
}
.achievement-heading>span {
  color: var(--magenta);
  font-size: 12px;
}
.achievement-heading h2 {
  margin: 12px 0 0;
  font: 500 clamp(30px,3.4vw,48px)/1.15 'Unbounded',sans-serif;
  letter-spacing: -.055em;
}
.achievement-legacy h3 {
  margin: 78px 0 22px;
  padding-top: 24px;
  border-top: 1px solid #c9c4c9;
  font-size: clamp(20px,2vw,26px);
}
.achievement-legacy h3:first-child {
  margin-top: 0;
}
.achievement-legacy h3 .color1 {
  color: var(--ink);
}
.achievement-legacy h3 .color1::first-letter {
  color: var(--magenta);
}
.achievement-legacy .ta3 {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.achievement-legacy .ta3 tr {
  vertical-align: top;
}
.achievement-legacy .ta3 th {
  width: 42px;
  padding: 9px 8px 9px 0;
  color: var(--magenta);
  font: 500 11px/1.7 'Unbounded',sans-serif;
  text-align: left;
}
.achievement-legacy .ta3 td {
  padding: 9px 0;
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: normal;
  word-break: normal;
}
.achievement-legacy .ta3 tr:has(th:empty) td {
  color: #585159;
}
.achievement-legacy .ta3 a {
  color: #2557b7;
  border-bottom: 0;
}
.achievement-legacy .ta3 a:hover {
  color: var(--magenta);
}
.achievement-legacy .ta3 img {
  max-width: 100%;
  height: auto;
}
.achievement-role {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  padding: 4px 9px 3px;
  border: 1px solid rgba(237,22,140,.45);
  border-radius: 999px;
  color: var(--magenta);
  font: 700 10px/1.3 Meiryo,'メイリオ',sans-serif;
  letter-spacing: .02em;
  vertical-align: middle;
}
.achievement-role--collaborator {
  border-color: rgba(77,101,142,.38);
  color: #62789d;
}
.people-content {
  width: 100%;
  max-width: calc(var(--content-width) + 14vw);
  margin: 0 auto;
  padding: 100px 7vw 140px;
}
.people-heading {
  margin-bottom: 36px;
}
.people-heading>span {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 700;
}
.people-heading h2 {
  margin: 12px 0 0;
  font: 500 clamp(30px,3.4vw,48px)/1.15 'Unbounded',sans-serif;
  letter-spacing: -.055em;
}
.people-group-photo {
  margin: 0 0 60px;
}
.people-group-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.people-legacy h3 {
  margin: 78px 0 22px;
  padding-top: 24px;
  border-top: 1px solid #c9c4c9;
  font-size: clamp(20px,2vw,26px);
}
.people-legacy h3:first-child {
  margin-top: 0;
}
.people-legacy h3 .color1 {
  color: var(--ink);
}
.people-legacy h3 .color1::first-letter {
  color: var(--magenta);
}
.people-legacy h4 {
  margin: 48px 0 10px;
  color: var(--magenta);
  font: 500 13px/1.5 'Unbounded',Meiryo,'メイリオ',sans-serif;
}
.people-legacy .alumni-section h4 {
  font-weight: 700;
}
.people-legacy br+h3 {
  margin-top: 54px;
}
.people-legacy table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.people-legacy th,.people-legacy td {
  padding: 15px 0;
  border-bottom: 1px solid #ddd8dd;
  font-size: 14px;
  line-height: 1.8;
  vertical-align: top;
  text-align: left;
}
.people-legacy th {
  width: 36%;
  padding-right: 36px;
  font-weight: 700;
}
.people-legacy .tablemem th {
  width: 150px;
  color: var(--muted);
  font-weight: 400;
}
.people-legacy .member-list th {
  width: 150px;
  color: var(--ink);
  font-weight: 700;
}
.people-legacy .member-list td {
  font-weight: 700;
}
.people-legacy .staff-list .staff-role {
  color: var(--ink) !important;
  font-weight: 700 !important;
}
.people-legacy a {
  color: #2557b7;
  border-bottom: 0;
}
.people-legacy a:hover {
  color: var(--magenta);
}
.people-legacy sup,.people-legacy sub {
  line-height: 0;
}
.contact-content {
  width: 100%;
  max-width: calc(var(--content-width) + 14vw);
  margin: 0 auto;
  padding: 100px 7vw 140px;
}
.contact-intro {
  max-width: 760px;
  margin-bottom: 60px;
}
.contact-intro>span,.access-heading>span {
  color: var(--magenta);
  font: 700 10px/1.5 'Unbounded',sans-serif;
  letter-spacing: .06em;
}
.contact-intro h2,.access-heading h2 {
  margin: 15px 0 22px;
  font-size: clamp(30px,3.4vw,48px);
  line-height: 1.35;
  letter-spacing: -.05em;
}
.contact-intro p {
  margin: 0;
  font-size: var(--body-text);
  line-height: 2;
}
.contact-main {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: 430px;
  border: 1px solid #cbc6cb;
}
.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
}
.contact-details dl {
  margin: 0;
}
.contact-details dl>div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #ddd8dd;
}
.contact-details dl>div:first-child {
  padding-top: 0;
}
.contact-details dt {
  color: var(--magenta);
  font: 500 10px/1.7 'Unbounded',sans-serif;
}
.contact-details dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}
.contact-details dd a {
  color: #2557b7;
}
.contact-details dd a:hover {
  color: var(--magenta);
}
.contact-mail,.access-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 2px 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.contact-mail {
  width: 210px;
  margin-top: 36px;
}
.contact-mail span,.access-link span {
  color: var(--magenta);
  font-size: 18px;
}
.contact-map {
  min-height: 430px;
  background: #e7e3e6;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: grayscale(.35);
}
.access-section {
  margin-top: 110px;
  padding-top: 30px;
  border-top: 1px solid #cbc6cb;
}
.access-heading h2 {
  margin-bottom: 48px;
}
.access-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #cbc6cb;
  border: 1px solid #cbc6cb;
}
.access-routes article {
  min-height: 220px;
  padding: 34px;
  background: var(--paper);
}
.access-routes article>span {
  color: var(--magenta);
  font: 500 10px 'Unbounded',sans-serif;
}
.access-routes h3 {
  margin: 28px 0 18px;
  font-size: 20px;
}
.access-routes p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}
.access-link {
  width: 270px;
  margin-top: 38px;
}
.gallery-content {
  width: 100%;
  max-width: calc(var(--content-width) + 14vw);
  margin: 0 auto;
  padding: 100px 7vw 140px;
}
.gallery-heading {
  margin-bottom: 60px;
}
.gallery-heading>span {
  color: var(--magenta);
  font: 700 10px/1.5 'Unbounded',sans-serif;
  letter-spacing: .06em;
}
.gallery-heading h2 {
  margin: 12px 0 0;
  font: 500 clamp(30px,3.4vw,48px)/1.15 'Unbounded',sans-serif;
  letter-spacing: -.055em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px 28px;
}
.gallery-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}
.gallery-card figure {
  aspect-ratio: 16/10;
  margin: 0;
  overflow: hidden;
  background: #e5e1e4;
}
.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.25);
  transition: transform .45s,filter .45s;
}
.gallery-card:hover img {
  transform: scale(1.025);
  filter: grayscale(0);
}
.gallery-card>div {
  position: relative;
  padding: 24px 44px 0 0;
}
.gallery-card>div>span {
  color: var(--magenta);
  font: 500 9px 'Unbounded',sans-serif;
}
.gallery-card h3 {
  margin: 12px 0 14px;
  font-size: clamp(17px,1.55vw,21px);
  line-height: 1.55;
  letter-spacing: -.025em;
}
.gallery-card p {
  margin: 0;
  color: #5e585f;
  font-size: 14px;
  line-height: 1.9;
}
.gallery-card b {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
}
.gallery-card.featured {
  grid-column: 1/-1;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 1fr;
  gap: 42px;
  padding-bottom: 70px;
  border-bottom: 1px solid #cbc6cb;
}
.gallery-card.featured figure {
  aspect-ratio: 16/9;
}
.gallery-card.featured>div {
  align-self: center;
  padding-top: 0;
}
.album-content {
  width: 100%;
  max-width: calc(1320px + 10vw);
  margin: 0 auto;
  padding: 80px 5vw 140px;
}
.album-back {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.album-heading {
  max-width: 980px;
  margin: 65px 0 70px;
}
.album-heading>span {
  color: var(--magenta);
  font: 700 10px 'Unbounded',sans-serif;
  letter-spacing: .06em;
}
.album-heading h2 {
  margin: 15px 0 0;
  font-size: clamp(28px,4vw,52px);
  line-height: 1.35;
  letter-spacing: -.05em;
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-flow: dense;
  gap: 12px;
}
.album-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e5e1e4;
}
.album-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.album-photo:hover img {
  transform: scale(1.025);
}
.album-photo span {
  position: absolute;
  right: 10px;
  bottom: 8px;
  padding: 4px 7px;
  background: rgba(15,13,17,.72);
  color: #fff;
  font: 8px 'Unbounded',sans-serif;
}
.album-back.bottom {
  margin-top: 70px;
}
@media (max-width:1100px) {
  .research-card {
    grid-template-columns: minmax(220px,.58fr) minmax(210px,.56fr) 1fr;
    column-gap: 24px;
    padding-right: 26px;
  }
}
@media (max-width:900px) {
  .site-header {
    height: auto;
    min-height: 72px;
    padding: 18px 5vw;
    align-items: flex-start;
    gap: 18px;
  }
  nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  nav a:nth-child(5) {
    display: none;
  }
  .nav-contact {
    padding: 7px 12px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-photo {
    background-position: 58% center;
  }
  .hero-content {
    padding: 150px 6vw 100px;
  }
  .hero h1 {
    font-size: clamp(30px,4.7vw,44px);
  }
  .intro,.news-section,.research-section {
    padding: 90px 6vw;
  }
  .intro-copy,.news-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .research-card {
    grid-template-columns: minmax(230px,.58fr) 1fr;
    grid-template-rows: auto auto auto 1fr auto;
    column-gap: 28px;
    padding-right: 28px;
  }
  .research-image {
    grid-row: 1/6;
  }
  .research-references {
    grid-column: 2;
    grid-row: 5;
    align-self: end;
    margin: 24px 0 28px;
  }
  .research-card h3 {
    font-size: 21px;
  }
  .research-description {
    font-size: 13px;
    margin-bottom: 0;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .legacy-page-title {
    min-height: 190px;
    padding: 52px 6vw 42px;
  }
  .legacy-content {
    padding: 80px 6vw 100px;
  }
  .legacy-content h2 {
    margin-bottom: 60px;
  }
  .legacy-content img.hidari {
    float: none;
    width: 100%;
    margin: 5px 0 30px;
  }
  .about-points>div {
    grid-template-columns: 38px minmax(190px,.75fr) 1fr;
    column-gap: 20px;
  }
  .news-content {
    padding: 80px 6vw 110px;
  }
  .achievements-content,.people-content {
    padding: 80px 6vw 110px;
  }
  .achievement-tabs {
    margin-bottom: 70px;
  }
  .achievement-tabs a {
    padding: 18px 15px;
  }
  .achievement-tabs span {
    font-size: 9px;
  }
  .contact-content,.gallery-content {
    padding: 80px 6vw 110px;
  }
  .contact-main {
    grid-template-columns: 1fr;
  }
  .contact-map,.contact-map iframe {
    min-height: 360px;
  }
  .access-section {
    margin-top: 85px;
  }
  .gallery-card.featured {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .album-content {
    padding: 70px 4vw 110px;
  }
  .album-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width:600px) {
  .brand {
    font-size: 17px;
    white-space: nowrap;
  }
  .site-header nav {
    font-size: 10px;
    gap: 11px;
  }
  .site-header nav a:nth-child(4) {
    display: none;
  }
  .hero {
    min-height: 690px;
  }
  .hero-photo {
    background-position: 61% center;
  }
  .hero-content {
    padding: 120px 6vw 90px;
  }
  .hero h1 {
    font-size: clamp(18px,5.7vw,34px);
    line-height: 1.3;
    margin-top: 28px;
  }
  .desktop-only {
    display: none;
  }
  .hero-meta span:last-child {
    display: none;
  }
  .intro h2,.news-title h2,.join h2 {
    font-size: clamp(26px,8.2vw,36px);
  }
  .intro-copy {
    margin-top: 45px;
  }
  .research-section {
    padding-left: 0;
    padding-right: 0;
  }
  .research-section>.section-heading {
    padding: 0 6vw;
  }
  .research-grid {
    margin-top: 60px;
  }
  .research-card {
    display: block;
    min-height: 0;
    padding: 0 6vw 36px;
  }
  .research-image {
    width: auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 1/1;
    margin: 0 -6vw 30px;
  }
  .research-number {
    padding-top: 0;
  }
  .research-description {
    min-height: 0;
  }
  .research-references {
    margin-bottom: 0;
  }
  .reference-title {
    font-size: 10.5px;
  }
  .news-item {
    grid-template-columns: 82px 1fr 20px;
    gap: 10px;
  }
  .news-item .tag {
    grid-column: 2;
  }
  .news-item p {
    grid-column: 1/3;
  }
  .news-item .arrow {
    grid-column: 3;
    grid-row: 1/3;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .footer-brand,footer small {
    grid-column: 1;
  }
  .legacy-page-title h1 {
    font-size: clamp(34px,10vw,48px);
  }
  .legacy-content p {
    font-size: 14px;
  }
  .legacy-content .topref {
    padding: 24px 20px;
  }
  .about-page .legacy-content section>p,.about-page .about-points p {
    font-size: 15.33px;
  }
  .about-points>div {
    display: grid;
    grid-template-columns: 32px 1fr;
    padding: 28px 24px 24px;
    column-gap: 12px;
  }
  .about-points h4 {
    margin: 0 0 14px;
  }
  .about-points p,.about-welcome p+p {
    grid-column: 2;
  }
  .about-welcome p+p {
    margin-top: 12px;
  }
  .career-destinations>div {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .career-heading h4 {
    font-size: 20px;
  }
  .news-year-heading,.news-entry,.news-archive {
    grid-template-columns: 1fr;
  }
  .news-year-heading {
    gap: 14px;
  }
  .news-year-heading h2 {
    grid-column: 1;
  }
  .news-entry {
    gap: 18px;
    padding: 28px 0;
  }
  .news-entry-meta {
    flex-direction: row;
    gap: 18px;
  }
  .news-entry-body p {
    font-size: 14px;
  }
  .news-archive {
    gap: 20px;
  }
  .achievement-tabs {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 55px;
  }
  .achievement-tabs span {
    font-size: 9px;
  }
  .achievement-legacy .ta3 th {
    width: 38px;
    font-size: 9px;
  }
  .achievement-legacy .ta3 td {
    font-size: 13px;
  }
  .people-legacy th,.people-legacy td {
    display: block;
    width: 100% !important;
    padding: 10px 0;
  }
  .people-legacy th {
    padding-top: 18px;
    border-bottom: 0;
  }
  .people-legacy td {
    padding-top: 0;
  }
  .contact-details {
    padding: 30px 24px;
  }
  .contact-details dl>div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .contact-map,.contact-map iframe {
    min-height: 300px;
  }
  .access-routes {
    grid-template-columns: 1fr;
  }
  .access-routes article {
    min-height: 0;
    padding: 28px 24px;
  }
  .contact-mail,.access-link {
    width: 100%;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .gallery-card.featured {
    grid-column: 1;
    padding-bottom: 52px;
  }
  .gallery-card>div {
    padding-right: 0;
  }
  .album-content {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .album-heading {
    margin: 50px 0;
  }
  .album-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }
  }
}
