html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #ffffff;
  background: #000000;
  font-family: CopyRight, Emoji, "Hiragino Sans", "BIZ UDPGothic Alphabet", "BIZ UDGothic", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: normal;
  font-feature-settings: normal;
  word-break: break-all;
  overflow-wrap: break-word;
  line-break: strict;
}

* {
  box-sizing: border-box;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #212121;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__inner,
.container {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: grid;
  gap: 2px;
}

.brand__title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.brand__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: #ffffff;
  border-color: #00b900;
}

.language {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 12px;
}

.language__link {
  min-width: 32px;
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  text-align: center;
  font-weight: 700;
}

.language__link[aria-current="true"] {
  color: #ffffff;
  background: #00b900;
  border-color: #00b900;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: #1a1a1a;
  color: #ffffff;
  font-weight: 700;
}

.hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__image {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.28)),
    url("https://images.unsplash.com/photo-1562774053-701939374585?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero__content {
  display: grid;
  align-content: center;
  min-height: 360px;
  color: #ffffff;
}

.hero__eyebrow,
.section__eyebrow,
.card__meta,
.tag {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero__eyebrow {
  color: #ffffff;
}

.hero__title {
  max-width: 640px;
  margin: 8px 0 12px;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero__text {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.section {
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section--soft {
  background: #111111;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section__title {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

.section__text {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.grid {
  display: grid;
  gap: 12px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #1a1a1a;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
}

.card__body {
  padding: 16px;
}

.card__image {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  border-bottom: 0;
}

.card__title {
  margin: 6px 0 8px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.33;
  font-weight: 700;
}

.card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #00b900;
  background: #212121;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid #00b900;
  border-radius: 4px;
  color: #ffffff;
  background: #00b900;
  font-weight: 700;
}

.button--secondary {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.lead__image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 4px;
}

.profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.profile__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 0;
  border-radius: 4px;
}

.definition {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.definition__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.definition__term {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.contact-visual {
  aspect-ratio: 21 / 9;
  width: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 4px;
}

.contact-info {
  margin-top: 12px;
}

.overview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.overview__image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 4px;
}

.image-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 12px;
  margin-top: 24px;
}

.image-strip__image {
  width: 100%;
  min-height: 180px;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 4px;
}

.content-block {
  background: #1a1a1a;
  border: 0;
  border-radius: 4px;
  padding: 16px;
}

.content-block + .content-block {
  margin-top: 12px;
}

.content-block__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.33;
  font-weight: 700;
}

.content-block__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.simple-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.simple-list__item {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.simple-list__label {
  display: block;
  color: #00b900;
  font-weight: 700;
}

.schedule {
  display: grid;
  gap: 0;
  border: 0;
  border-radius: 4px;
  background: #1a1a1a;
}

.schedule__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 16px;
}

.schedule__row + .schedule__row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.schedule__term {
  color: #00b900;
  font-weight: 700;
}

.schedule__body {
  color: rgba(255, 255, 255, 0.7);
}

.research-layout {
  display: grid;
  gap: 16px;
}

.research-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.research-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.research-item__label {
  color: #00b900;
  font-weight: 700;
}

.research-item__title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.research-item__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.research-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.research-visual__main,
.research-visual__sub {
  width: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 4px;
}

.research-visual__main {
  aspect-ratio: 16 / 10;
}

.research-visual__sub {
  aspect-ratio: 16 / 10;
}

.research-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.research-intro__note {
  border-left: 3px solid #00b900;
  padding: 14px 0 14px 16px;
  color: rgba(255, 255, 255, 0.7);
  background: #1a1a1a;
}

.research-theme {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.research-theme:first-child {
  border-top: 0;
  padding-top: 0;
}

.research-theme__number {
  color: #00b900;
  font-size: 10px;
  font-weight: 700;
}

.research-theme__title {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.research-theme__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.research-theme__image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 4px;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.method-list__item {
  background: #1a1a1a;
  border: 0;
  border-radius: 4px;
  padding: 16px;
}

.method-list__label {
  display: block;
  margin-bottom: 8px;
  color: #00b900;
  font-weight: 700;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #000000;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

@media (max-width: 980px) {
  .grid--3,
  .grid--2,
  .lead,
  .profile,
  .overview,
  .research-item,
  .image-strip,
  .research-visual,
  .research-intro,
  .research-theme,
  .method-list {
    grid-template-columns: 1fr;
  }

  .profile__image {
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 64px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 64px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 12px 12px;
    background: #212121;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
  }

  .nav.is-open {
    display: flex;
  }

  .language {
    margin: 8px 0 0;
    padding: 8px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__image,
  .hero__content {
    min-height: 320px;
  }

  .section {
    padding: 40px 0;
  }

  .section__head,
  .site-footer__inner {
    display: grid;
  }
}
