.about_nav_list {
  display: grid;
  gap: 4rem;
}
.about_nav_foot {
  margin-top: clamp(3.2rem, 4.4vw, 9.6rem);
}
.about_nav_card {
  --about-card-bg: #6f6f6f;
  display: block;
  background: linear-gradient(to right, transparent 0 50%, var(--about-card-bg) 50% 100%);
}
.about_nav_card.is_reverse {
  --about-card-bg: #000;
  background: linear-gradient(to right, var(--about-card-bg) 0 50%, transparent 50% 100%);
}
.about_nav_inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}
.about_nav_card.is_reverse .about_nav_photo {
  order: 2;
}
.about_nav_photo {
  position: relative;
  overflow: hidden;
}
.about_nav_photo::before {
  content: "";
  display: block;
  padding-top: 60.55%;
}
.about_nav_photo img {
  position: absolute;
  inset: 0;
  transition: transform var(--transition);
}
.about_nav_card:hover .about_nav_photo img {
  transform: scale(1.04);
}
.about_nav_body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 4.4rem 2.4rem 2.8rem 2rem;
  color: #fff;
}
.about_nav_title {
  font-size: clamp(2.4rem, 1.31vw + 1.91rem, 4rem);
  font-weight: var(--font-weight-black);
  line-height: 1.2;
}
.about_nav_lead {
  font-size: clamp(1.4rem, 0.49vw + 1.22rem, 2rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
}
.about_nav_body .link_arrow {
  margin-top: auto;
  font-size: clamp(1.3rem, 0.41vw + 1.15rem, 1.8rem);
  color: #fff;
}
.about_nav_body .link_arrow::after {
  width: 24px;
  height: 24px;
  background-image: url(../../img/global/icon_arrow_wh.svg);
}
@media screen and (min-width: 1025px) {
  .about_nav_body .link_arrow::after {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 768px) {
  .about_nav_list {
    gap: 2.4rem;
  }
  .about_nav_card {
    background: none;
  }
  .about_nav_inner {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }
  .about_nav_card.is_reverse .about_nav_photo {
    order: 0;
  }
  .about_nav_photo::before {
    padding-top: 62%;
  }
  .about_nav_body {
    gap: 1.2rem;
    padding: 2rem var(--container-padding) 2.4rem;
    background: var(--about-card-bg);
  }
}
.about_hero {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #000;
}
.about_hero_body {
  align-self: center;
  padding-block: 3.2rem;
  padding-right: var(--container-padding);
  padding-left: max(var(--container-padding), calc((100vw - var(--content-width)) / 2));
}
.about_hero_title {
  font-size: clamp(2.8rem, 1.8vw + 2.13rem, 5rem);
  font-weight: var(--font-weight-black);
  line-height: 1.4;
  color: #fff;
}
.about_hero_photo {
  aspect-ratio: 800 / 510;
  overflow: hidden;
  border-radius: clamp(48px, 8.75vw, 140px) 0 0 0;
}
.about_hero_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .about_hero {
    grid-template-columns: 1fr;
  }
  .about_hero_body {
    padding: 2.8rem var(--container-padding);
  }
  .about_hero_photo {
    aspect-ratio: 16 / 9;
  }
}
.glossary {
  padding: clamp(2.4rem, 2.09vw + 1.62rem, 4.8rem) clamp(1.6rem, 2.09vw + 0.82rem, 4rem);
  border: 1px solid var(--bg-color-gray-dark);
  border-radius: 20px;
  background: #fff;
}
.glossary .sec_head {
  padding-left: 3.4rem;
}
.glossary .sec_head::before {
  width: 16px;
}
.glossary .sec_title {
  margin-top: 0;
  font-size: clamp(2.2rem, 1.47vw + 1.65rem, 4rem);
}
.glossary .faq_list {
  gap: 0.8rem;
  margin-top: clamp(1.6rem, 1.04vw + 1.21rem, 2.8rem);
}
.glossary .faq_q {
  gap: 1.2rem;
  padding: 1.6rem 6.4rem 1.6rem 2.4rem;
  font-size: clamp(1.5rem, 0.41vw + 1.35rem, 2rem);
}
.glossary .faq_a_body {
  padding: 1.6rem 0 2rem;
  border-top-color: var(--border-color-1);
  font-size: clamp(1.4rem, 0.16vw + 1.34rem, 1.6rem);
}
.glossary_icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: url(../../img/module/glossary/icon_glossary.svg) no-repeat center / contain;
}
@media screen and (max-width: 768px) {
  .glossary .faq_q {
    padding: 1.2rem 4.8rem 1.2rem 1.6rem;
  }
  .glossary .faq_a_body {
    margin-inline: 1.6rem;
  }
  .glossary_icon {
    width: 24px;
    height: 24px;
  }
}
.numbers_lead {
  margin-bottom: clamp(2.4rem, 2.29vw + 1.54rem, 5.2rem);
  font-size: clamp(1.6rem, 0.65vw + 1.36rem, 2.4rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}
.numbers_group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.numbers_group + .numbers_group,
.numbers_band + .numbers_group {
  margin-top: clamp(1.6rem, 1.55vw + 1.02rem, 3.5rem);
}
.numbers_band {
  margin-top: clamp(1.6rem, 1.55vw + 1.02rem, 3.5rem);
  padding-block: clamp(2.4rem, 1.8vw + 1.72rem, 4.6rem);
  background: var(--bg-color-light);
}
.numbers_tile {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  font-weight: var(--font-weight-black);
  line-height: 1;
  text-align: center;
}
.js .numbers_tile.is_reveal {
  opacity: 0;
  transform:
    translate(var(--from-x, 0), var(--from-y, 3.2rem))
    rotate(var(--from-r, 0deg))
    scale(var(--from-s, 0.9));
  transition:
    opacity 0.5s var(--ease-reveal),
    transform 0.9s var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform;
}
.js .numbers_tile.is_reveal.is_visible {
  opacity: 1;
  transform: none;
}
.numbers_group .numbers_tile:nth-child(1) {
  --from-x: -7.2rem;
  --from-y: -4rem;
  --from-r: -7deg;
  --reveal-delay: 0s;
}
.numbers_group .numbers_tile:nth-child(2) {
  --from-x: 6.4rem;
  --from-y: 4.8rem;
  --from-r: 6deg;
  --reveal-delay: 0.1s;
}
.numbers_group .numbers_tile:nth-child(3) {
  --from-x: 8rem;
  --from-y: -5.6rem;
  --from-r: 8deg;
  --reveal-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .numbers_group .numbers_tile:nth-child(n) {
    --from-x: 0;
    --from-y: 3.2rem;
    --from-r: 0deg;
  }
}
.numbers_tile.is_tone1 { background: #efefef; }
.numbers_tile.is_tone2 { background: #dcdddd; }
.numbers_tile.is_tone3 { background: #c9caca; }
.numbers_tile_icon {
  display: block;
  width: 39cqw;
  height: auto;
}
.numbers_tile_num {
  font-size: 38.3cqw;
  letter-spacing: -0.02em;
}
.numbers_tile_unit {
  font-size: 13cqw;
}
.numbers_tile_label {
  font-size: 12.9cqw;
  white-space: nowrap;
}
.numbers_tile_value {
  display: flex;
  align-items: last baseline;
  justify-content: center;
  gap: 0.05em;
}
.numbers_tile.is_wide {
  grid-column: span 2;
  aspect-ratio: 1024 / 500;
}
.numbers_tile.is_stack .numbers_tile_icon {
  width: 39cqw;
}
.numbers_tile.is_stack .numbers_tile_label {
  margin-top: 1.2cqw;
}
.numbers_tile.is_stack .numbers_tile_value {
  margin-top: 2.2cqw;
}
.numbers_tile.is_stack .numbers_tile_num {
  font-size: 32.5cqw;
}
.numbers_tile.is_stack .numbers_tile_prefix {
  font-size: 10.5cqw;
}
.numbers_tile.is_stack .numbers_tile_unit {
  font-size: 11cqw;
}
.numbers_tile_prefix {
  align-self: center;
  font-size: 12.4cqw;
  line-height: 1.05;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.numbers_tile.is_founded .numbers_tile_icon {
  width: 40cqw;
}
.numbers_tile.is_founded .numbers_tile_value {
  align-items: baseline;
  margin-top: 4.8cqw;
}
.numbers_tile.is_founded .numbers_tile_label {
  align-self: center;
  font-size: 13.6cqw;
  line-height: 1.05;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.numbers_tile.is_founded .numbers_tile_num {
  font-size: 42.5cqw;
}
.numbers_tile.is_side {
  flex-direction: row;
  gap: 2cqw;
}
.numbers_tile.is_side .numbers_tile_icon {
  width: 32cqw;
}
.numbers_tile.is_side .numbers_tile_label {
  font-size: 14cqw;
}
.numbers_tile.is_side .numbers_tile_num {
  font-size: 35.5cqw;
}
.numbers_tile.is_side .numbers_tile_unit {
  font-size: 11.5cqw;
}
.numbers_tile.is_side .numbers_tile_value {
  margin-top: 1.6cqw;
}
.numbers_tile.is_ratio {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.4cqw;
}
.numbers_tile.is_ratio .numbers_tile_label {
  font-size: 14.2cqw;
  line-height: 1.05;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.numbers_tile.is_ratio .numbers_tile_body {
  display: flex;
  flex-direction: column;
  gap: 1.6cqw;
}
.numbers_tile_row {
  display: flex;
  align-items: last baseline;
  justify-content: flex-end;
  gap: 0.6cqw;
}
.numbers_tile_name {
  align-self: center;
  font-size: 7.6cqw;
  line-height: 1.1;
  text-align: right;
}
.numbers_tile.is_ratio .numbers_tile_num {
  font-size: 27.4cqw;
}
.numbers_tile.is_ratio .numbers_tile_unit {
  font-size: 10.2cqw;
}
.numbers_tile.is_ratio .numbers_tile_name {
  font-size: 7cqw;
}
.numbers_tile.is_wide {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3cqw;
}
.numbers_tile.is_wide .numbers_tile_num {
  font-size: 18.7cqw;
}
.numbers_tile.is_wide .numbers_tile_unit {
  font-size: 6.4cqw;
}
.numbers_tile.is_wide .numbers_tile_label {
  font-size: 8.2cqw;
  line-height: 1.15;
}
.numbers_tile.is_wide .numbers_tile_name {
  font-size: 5.4cqw;
}
.numbers_tile_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6cqw;
}
.numbers_tile_main,
.numbers_tile_sub {
  display: flex;
  flex-direction: column;
}
.numbers_tile_note {
  font-size: max(1.1rem, 2.4cqw);
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  text-align: left;
}
.numbers_tile.is_ships .numbers_tile_icon {
  width: 23.2cqw;
}
.numbers_tile.is_ships .numbers_tile_main {
  gap: 3.4cqw;
}
.numbers_tile.is_ships .numbers_tile_main .numbers_tile_row {
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4cqw;
}
.numbers_tile.is_ships .numbers_tile_main .numbers_tile_name {
  align-self: auto;
  font-size: 5.5cqw;
  white-space: nowrap;
}
.numbers_tile.is_ships .numbers_tile_main .numbers_tile_num {
  font-size: 15.6cqw;
}
.numbers_tile.is_ships .numbers_tile_sub {
  gap: 1.2cqw;
}
.numbers_tile.is_ships .numbers_tile_sub .numbers_tile_num {
  font-size: 11cqw;
}
.numbers_tile.is_ships .numbers_tile_sub .numbers_tile_unit {
  font-size: 4.4cqw;
}
.numbers_tile.is_holiday .numbers_tile_icon {
  width: 31.3cqw;
}
.numbers_tile.is_holiday .numbers_tile_head .numbers_tile_num {
  font-size: 9.4cqw;
}
.numbers_tile.is_holiday .numbers_tile_head .numbers_tile_unit {
  font-size: 4cqw;
}
.numbers_tile.is_holiday .numbers_tile_main {
  gap: 1.2cqw;
}
.numbers_tile.is_holiday .numbers_tile_main .numbers_tile_row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}
.numbers_tile.is_holiday .numbers_tile_main .numbers_tile_row:last-of-type {
  border-bottom: 0;
}
.numbers_foot {
  margin-top: clamp(3.2rem, 4.4vw, 9.6rem);
}
@media screen and (max-width: 768px) {
  .numbers_group {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .numbers_tile.is_wide {
    grid-column: auto;
  }
  .numbers_group + .numbers_group,
  .numbers_band + .numbers_group,
  .numbers_band {
    margin-top: 1.6rem;
  }
}
