@charset "UTF-8";

/* 
============================================================
---- リード文ブロック
============================================================
*/
.technologyIntro {
  padding-bottom: 104px;
}

.technologyIntro > figure {
  margin-top: 72px;
}

.technologyIntro > figure img {
  width: 100%;
  max-width: 773px;
  height: auto;
  display: block;
  margin-inline: auto;
}

.technologyIntro > figure figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  margin-top: 20px;
}

.technologyIntro > figure figcaption > span {
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.4;
}

.technologyIntro > figure figcaption > span:nth-of-type(1) {
  font-size: 16px;
  font-weight: 500;
}

.technologyIntro > figure figcaption > span:nth-of-type(2) {
  font-size: 11px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .technologyIntro {
    padding-bottom: 38px;
    padding-inline: 0;
  }

  .technologyIntro > * {
    padding-inline: var(--layout-margin-outside-sp);
  }

  .technologyIntro > figure {
    margin-top: 38px;
    overflow-x: scroll;
  }

  .technologyIntro > figure img,
  .technologyIntro > figure figcaption {
    width: calc(1220 / 750 * 100vw);
  }

  .technologyIntro > figure img {
    max-width: none;
  }

  .technologyIntro > figure figcaption > span:nth-of-type(1) {
    font-size: 13px;
  }

  .technologyIntro > figure figcaption > span:nth-of-type(2) {
    font-size: 9px;
  }
}

/* 
============================================================
---- Orbrayの製品
============================================================
*/
.orbrayProduct {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.orbrayProduct > header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
}

.orbrayProduct > header > a {
}

.orbrayProduct > header > a {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 10px;
  align-items: center;
  width: fit-content;
  color: var(--color-white);
  text-decoration: none;
}

.orbrayProduct > header > a span {
  font-family: var(--font-zen-kaku-gothic-new);
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.3s;
}

.orbrayProduct > header > a::before,
.orbrayProduct > header > a::after {
  content: "";
  grid-row: 1;
  grid-column: 2;
  place-self: center;
  transition: transform 0.3s;
}

.orbrayProduct > header > a::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  aspect-ratio: 1;
  border: 1px solid var(--color-white);
  border-radius: 50%;
}

.orbrayProduct > header > a::after {
  display: block;
  width: 8px;
  aspect-ratio: 1;
  mask: url(../../img/common/icon-arrow-navy.svg) no-repeat center / contain;
  background: var(--color-white);
}

.orbrayProduct > header > a:hover > span {
  opacity: 0.7;
}

.orbrayProduct > header > a:hover::before,
.orbrayProduct > header > a:hover::after {
  transform: translateX(3px);
}

.orbrayProduct > ul {
  width: 100%;
  margin-top: 48px;
}

.orbrayProduct > ul > li {
  background-color: var(--color-panel);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.orbrayProduct > ul > li + li {
  margin-top: 24px;
}

.orbrayProduct > ul > li > div {
  padding: 48px 47px;
}

.orbrayProduct > ul > li > div > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 20px;
  align-items: center;
}

.orbrayProduct > ul > li > div > div > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.orbrayProduct > ul > li > div > div > header > h3 {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
}

.orbrayProduct > ul > li > div > div > header > p {
  font-family: var(--font-marcellus);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 6px;
}

.orbrayProduct > ul > li > div > p {
  margin-top: 33px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.857;
}

.orbrayProduct > ul > li > img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .orbrayProduct > header {
    grid-template-columns: 1fr;
    align-items: flex-start;
    row-gap: 20px;
  }

  .orbrayProduct > header > a span {
    font-size: 14px;
  }

  .orbrayProduct > header > a::before {
    width: 18px;
  }

  .orbrayProduct > header > a::after {
    width: 8px;
  }

  .orbrayProduct > ul {
    margin-top: 24px;
  }

  .orbrayProduct > ul > li {
    grid-template-columns: 1fr;
  }

  .orbrayProduct > ul > li + li {
    margin-top: 16px;
  }

  .orbrayProduct > ul > li > div {
    padding: 20px 20px 16px;
  }

  .orbrayProduct > ul > li > div > div {
    grid-template-columns: 52px 1fr;
    column-gap: 14px;
  }

  .orbrayProduct > ul > li > div > div > header > h3 {
    font-size: 16px;
  }

  .orbrayProduct > ul > li > div > div > header > p {
    font-size: 12px;
    margin-top: 6px;
  }

  .orbrayProduct > ul > li > div > p {
    margin-top: 20px;
    padding-top: 15px;
    font-size: 14px;
  }

  .orbrayProduct > ul > li > img {
    height: auto;
    min-height: auto;
    aspect-ratio: 670 / 384;
  }
}

/* 
============================================================
---- Orbrayの製品
============================================================
*/
.technologyAside {
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  .technologyAside {
    padding-top: 24px;
  }
}
