.co-creation-wrapper {
  width: 100%;
  max-width: 650px;
  margin-inline: auto;
  padding-bottom: 40px;

  @media screen and (min-width: 1024px) {
    padding-bottom: 80px;
  }
}

.co-creation-intro {
  .co-creation-intro__header {
    font-size: 30px;
    margin-bottom: 40px;
    line-height: 140%;
  }

  .co-creation-intro__content {
    font-weight: 500;
    line-height: 2;

    > *:not(:last-child) {
      margin-bottom: 19px;

      @media screen and (min-width: 768px) {
        margin-bottom: 40px;
      }
    }
  }

  @media screen and (min-width: 768px) {
    padding: 20px;

    .co-creation-intro__header {
      font-size: 36px;
    }
  }
}

.co-creation-block {
  margin-block: 40px;

  @media screen and (min-width: 1024px) {
    margin-block: 80px;
  }
}

.co-creation-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;

  padding: 20px;
  @media screen and (min-width: 1024px) {
    padding: 40px;
  }
}

.co-creation-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;

  @media screen and (min-width: 1024px) {
    font-size: 24px;
  }
}

.co-creation-card__description {
  line-height: 2;
}

.co-creation-card__link {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 17px;
  gap: 16px;
  padding-block: 16px;
  font-weight: 500;
  max-width: 300px;
}

.co-creation-card__link-text {
  display: block;
}

.co-creation-card__link-text.en {
  font-weight: 500;
}

.co-creation-card__link-clip {
  display: block;
  overflow: hidden;
  height: 1.625em;
}

.co-creation-card__link-slide {
  display: block;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.co-creation-card__link-line {
  display: block;
  height: 1.625em;
  line-height: 1.625em;
}

.co-creation-card__icon {
  flex: 0 0 auto;
  margin-left: auto;
  overflow: hidden;
  width: 13px;
  height: 12px;
}

.co-creation-card__icon-inner {
  display: block;
  will-change: transform;
}

.co-creation-card__icon svg {
  display: block;
}

.co-creation-card__underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

@media (hover: hover) {
  .co-creation-card__link:hover .co-creation-card__link-slide {
    transform: translateY(-50%);
  }

  .co-creation-card__link:hover .co-creation-card__icon-inner {
    animation: co-creation-card-arrow-loop 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .co-creation-card__link:hover .co-creation-card__underline {
    animation: co-creation-card-rule-loop 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.co-creation-card__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.co-creation-card__link:focus-visible .co-creation-card__link-slide {
  transform: translateY(-50%);
}

.co-creation-card__link:focus-visible .co-creation-card__icon-inner {
  animation: co-creation-card-arrow-loop 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.co-creation-card__link:focus-visible .co-creation-card__underline {
  animation: co-creation-card-rule-loop 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes co-creation-card-arrow-loop {
  0% {
    transform: translateX(0);
  }
  38% {
    transform: translateX(110%);
  }
  38.01% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes co-creation-card-rule-loop {
  0% {
    clip-path: inset(0 0 0 0);
  }
  38% {
    clip-path: inset(0 0 0 100%);
  }
  38.01% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .co-creation-card__link-slide {
    transition: none;
  }

  .co-creation-card__link:hover .co-creation-card__icon-inner,
  .co-creation-card__link:focus-visible .co-creation-card__icon-inner,
  .co-creation-card__link:hover .co-creation-card__underline,
  .co-creation-card__link:focus-visible .co-creation-card__underline {
    animation: none;
  }
}

/* Leader Page */
body.is-page-leadership {
  .global-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: #fff;
    color: var(--color-primary);

    .global-header__logo-link {
      filter: none;
    }
  }

  .global-header__lang-button {
    border-color: var(--color-primary);
    &.is-active {
      background-color: var(--color-primary);
      color: #fff;
    }
  }

  .global-header__hamburger {
    span {
      background-color: var(--color-primary);
    }
  }

  .full-screen-menu {
    --color-primary: #fff;
    color: #fff;
    background-color: rgb(0 30 64 / 0.8);
  }

  .global-header:has(.full-screen-menu.is-open) {
    color: #fff;

    .global-header__logo-link {
      filter: grayscale(100%) brightness(0) invert(1);
    }

    .global-header__lang-button {
      border-color: #fff;

      &.is-active {
        background-color: #fff;
        color: #001e40;
      }
    }

    .global-header__hamburger {
      span {
        background-color: #fff;
      }
    }
  }

  .full-screen-menu__catch,
  .full-screen-menu__logo {
    img {
      filter: grayscale(100%) brightness(0) invert(1);
    }
  }

  .full-screen-menu__link {
    img,
    &::after {
      filter: grayscale(100%) brightness(0) invert(1);
    }
  }

  .full-screen-menu__button {
    .circle-arrow-button {
      &:hover {
        background-color: #001e40;
        border-color: #001e40;
      }
    }
  }
}

body.is-page-leadership .leadership-banner,
body.is-page-leadership .leadership-wrapper,
body.is-page-leadership .personal-info-popup {
  font-family: var(--font-base);
}

.leadership-banner {
  position: relative;
  background-color: var(--color-primary);
  color: #fff;
  padding: 80px 0;

  @media screen and (min-width: 768px) {
    padding: 160px 0 120px;
  }

  .leadership-banner__inner {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 24px;
  }

  .leadership-banner__scroll {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 60px;
    text-align: center;
    text-transform: uppercase;
    pointer-events: none;
    display: flex;
    justify-content: center;

    &::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 20px;
      background: #fff;
    }
  }

  .leadership-scroll__letter {
    display: inline-block;
    overflow: hidden;
    line-height: 1;
  }

  .leadership-scroll__letter > span {
    display: inline-block;
    transform: translateY(0);
    animation: leadership-scroll-letter 3.55s linear infinite;
  }

  .leadership-scroll__letter:nth-child(2) > span {
    animation-delay: 0.095s;
  }

  .leadership-scroll__letter:nth-child(3) > span {
    animation-delay: 0.19s;
  }

  .leadership-scroll__letter:nth-child(4) > span {
    animation-delay: 0.285s;
  }

  .leadership-scroll__letter:nth-child(5) > span {
    animation-delay: 0.38s;
  }

  .leadership-scroll__letter:nth-child(6) > span {
    animation-delay: 0.475s;
  }

  .banner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;

    .page-header {
      padding-top: 0;
    }

    @media screen and (min-width: 768px) {
      grid-template-columns: repeat(4, 1fr);
    }

    .grid-item {
      @media screen and (min-width: 768px) {
        &:nth-child(2) {
          grid-area: 1 / 2 / 3 / 4;
        }

        &:nth-child(3) {
          grid-area: 2 / 1 / 3 / 2;
          place-content: end;
        }

        &:nth-child(4) {
          grid-area: 1 / 4 / 3 / 5;
          place-content: center;
        }
      }
      /* @media screen and (max-width: 767px) {
        &:nth-child(4) {
          display: none;
        }
      } */
    }
  }

  .banner-title {
    font-size: 18px;
    max-width: 160px;

    > *:not(:last-child) {
      margin-bottom: 1em;
    }

    .banner-title__en {
      font-family: var(--font-en);
    }

    .banner-title__jp {
      font-size: 0.8em;
    }

    @media screen and (min-width: 768px) {
      font-size: 20px;
    }
  }

  .banner-logo {
    filter: grayscale(1) brightness(0) invert(1);
    text-align: center;
    > * {
      margin-block: 20px;
    }
  }
}

@keyframes leadership-scroll-letter {
  0% {
    transform: translateY(0);
  }
  3.4% {
    transform: translateY(-100%);
  }
  3.41% {
    transform: translateY(100%);
  }
  27.3% {
    transform: translateY(100%);
  }
  30.7% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .leadership-banner .leadership-scroll__letter > span {
    animation: none;
    transform: translateY(0);
  }
}

.leadership-wrapper {
  width: 100%;
  max-width: 790px;
  margin-inline: auto;
}

.leadership-block {
  padding-block: 56px;

  .leadership-block__header {
    margin-bottom: 48px;

    h2 {
      display: flex;
      align-items: baseline;
      gap: 0.5em;
      font-size: 24px;

      > span {
        font-family: var(--font-en);
      }

      small {
        font-size: 0.45em;
        font-weight: 500;
        flex: none;
      }

      @media screen and (min-width: 768px) {
        font-size: 30px;
      }

      @media screen and (min-width: 768px) {
        font-size: 36px;
      }
    }
  }

  @media screen and (min-width: 768px) {
    padding-block: 100px;

    .leadership-block__header {
      margin-bottom: 56px;
    }
  }

  @media screen and (min-width: 1024px) {
    padding-block: 140px;

    .leadership-block__header {
      margin-bottom: 64px;
    }
  }
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;

  @media screen and (min-width: 768px) {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  @media screen and (min-width: 1024px) {
    grid-template-columns: repeat(3, 230px);
    justify-content: center;
    column-gap: 30px;
    row-gap: 56px;
  }
}

.profile-card {
  .profile-card__img {
    margin-bottom: 20px;

    img {
      transition: all 0.3s ease-out;
    }

    button {
      display: block;
      cursor: pointer;
      overflow: hidden;

      &:hover {
        img {
          scale: 1.05;
        }
      }

      &:focus-visible {
        outline: 2px solid var(--color-primary);
        outline-offset: 4px;
      }
    }

    @media screen and (min-width: 1024px) {
      img {
        width: 230px;
        height: 230px;
        object-fit: cover;
      }
    }
  }

  .profile-card__content {
    h3 {
      display: flex;
      flex-flow: row-reverse wrap-reverse;
      align-items: baseline;
      justify-content: center;
      gap: 0.2em 0.5em;
      font-size: 18px;

      small {
        font-size: 12px;
      }
    }
  }
}

/* Base style for the closed dialog */
dialog {
  opacity: 0;
  box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
  border: none;
  border-radius: 0;
  outline: none;
  padding: 0;
  transform: translateY(40px);
  transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    display 0.3s ease-out allow-discrete,
    overlay 0.3s ease-out allow-discrete;
}

/* Styles applied when the dialog is open */
dialog[open] {
  opacity: 1;
  transform: translateY(0);
}

/* Defines the initial visual state right as the dialog opens */
@starting-style {
  dialog[open] {
    opacity: 0;
    transform: translateY(40px);
  }
}

/* Backdrop/Overlay styling and transition */
dialog::backdrop {
  overscroll-behavior: contain;
  background-color: rgb(8 14 20 / 0%);
  backdrop-filter: blur(0px);
  transition:
    background-color 0.3s ease-out,
    display 0.3s ease-out allow-discrete,
    overlay 0.3s ease-out allow-discrete;
}

dialog[open]::backdrop {
  background-color: rgb(8 14 20 / 0.5);
  backdrop-filter: blur(32px);
}

@starting-style {
  dialog[open]::backdrop {
    background-color: rgb(8 14 20 / 0%);
    backdrop-filter: blur(0px);
  }
}

.fancybox__backdrop {
  background-color: rgb(0 0 0 / 0.8);
  backdrop-filter: blur(60px);
}

.personal-info-popup {
  position: relative;
  padding: 80px 20px 40px;
  background-color: #fff;
  color: var(--color-primary);
  width: 100%;
  max-width: 960px;
  margin-inline: auto;

  display: flex;
  flex-flow: column;
  gap: 20px;

  @media screen and (min-width: 768px) {
    flex-flow: row wrap;
    gap: 40px;
    padding: 60px;
  }

  @media screen and (min-width: 1024px) {
    gap: 40px 80px;
    padding: 80px;
  }

  /* .personal-info-popup__close-button {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;

    display: flex;
    flex-flow: column;
    gap: 4px;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;

    &:hover {
      opacity: 0.5;
    }
  } */

  .f-button {
    right: 20px;
    top: 20px;
    filter: invert(1);
    transition: opacity 0.3s ease;

    &:hover {
      opacity: 0.5;
    }
  }

  .personal-info-popup__img {
    flex: none;
    img {
      width: 240px;
      height: 240px;
    }
  }

  .personal-info-popup__content {
    flex: 1 1 0%;

    > *:not(:last-child) {
      margin-bottom: 40px;
    }

    @media screen and (min-width: 768px) {
      max-width: 400px;
    }
  }
}

/* Partnership */
.partnership-wrapper {
  width: 100%;
  max-width: 810px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-bottom: 40px;

  @media screen and (min-width: 1024px) {
    padding-bottom: 80px;
  }
}

.partnership-intro {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;

  .partnership-intro__img {
    text-align: center;
    margin-bottom: 40px;
    img {
      display: block;
      margin: 0 auto;
    }
  }

  .partnership-intro__text {
    line-height: 2;
  }
}

.partnership-block {
  margin: 40px 0;

  > *:not(:last-child) {
    margin-bottom: 40px;
  }

  @media screen and (min-width: 768px) {
    margin: 80px 0;
    > *:not(:last-child) {
      margin-bottom: 80px;
    }
  }

  .partnership-block__top {
    display: flex;
    flex-flow: column;
    gap: 20px;

    @media screen and (min-width: 768px) {
      flex-flow: row;
      align-items: center;
      gap: 40px;
    }
  }

  .partnership-block__header {
    flex: 1 1 0%;
  }

  .partnership-block__title {
    > * {
      display: block;
    }

    .title-en {
      font-family: var(--font-en);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: normal;

      @media screen and (min-width: 768px) {
        font-size: 24px;
      }
    }

    .title-jp {
      font-size: 14px;
    }
  }

  .partnership-block__img {
    width: 100%;
    @media screen and (min-width: 768px) {
      max-width: 420px;
    }
  }

  .partnership-block__text {
    line-height: 2;
    letter-spacing: 0.02em;
  }
}

.card-grid {
  .card-grid__header {
    font-size: 18px;
    margin-bottom: 24px;

    @media screen and (min-width: 768px) {
      margin-bottom: 32px;
    }
  }

  .card-grid__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;

    @media screen and (min-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;

      .card-grid-item--phr-council {
        grid-column: 1;
        grid-row: 4 / span 3;
      }

      .card-grid-item--phr-service {
        grid-column: 2;
        grid-row: 4 / span 3;
      }
    }
  }
}

.card-grid-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  border: 1px solid;

  &:has(.card-grid-item__category) {
    grid-row: span 3;
  }

  .card-grid-item__logo {
    place-content: center;
    padding: 10px;
    position: relative;
    text-align: center;
    img {
      display: block;
      margin: 0 auto;
    }
  }

  .card-grid-item__category {
    padding: 0 20px;

    span {
      background-color: var(--color-primary);
      color: #fff;
      padding: 4px 16px;
      font-size: 12px;
      font-weight: 700;
      display: inline-block;
    }
  }

  .card-grid-item__content {
    background-color: rgb(0 30 64 / 0.1);
    padding: 20px;
    line-height: 2;
    font-size: 14px;

    display: flex;
    gap: 16px;

    &::after {
      align-self: center;
      flex: none;
      content: '';
      width: 32px;
      height: 32px;
      background: transparent url('../img/common/circle-arrow.svg') no-repeat
        center center / contain;
    }
  }
}

.partner-logo-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 24px;

  img {
    display: block;
  }

  @media screen and (min-width: 768px) {
    gap: 32px;
  }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;

  @media screen and (min-width: 768px) {
    gap: 32px;
  }

  .stat-item {
    background-color: #f2f2f2;
    padding: 16px;
    text-align: center;

    .stat-item__header {
      h3 {
        font-size: 18px;
        color: #fff;
        background-color: var(--color-primary);
        padding: 16px;

        > * {
          display: block;
        }

        > small {
          font-size: 0.76em;
          margin-bottom: 8px;
        }
      }
    }

    .stat-item__content {
      padding: 32px 16px 16px;
      font-weight: 700;
      display: flex;
      flex-flow: column;
      gap: 16px;

      .stat-num {
        font-size: 48px;
        line-height: 1;
        font-family: var(--font-en);
      }

      .stat-unit {
        font-size: 18px;
      }

      .stat-remark {
        font-size: 14px;
      }

      @media screen and (min-width: 768px) {
        .stat-num {
          font-size: 72px;
        }
      }
    }

    @media screen and (min-width: 768px) {
      padding: 24px;
    }
  }
}

.resource-links {
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;

  p {
    &:not(:first-child) {
      margin-top: 16px;
    }
  }

  .button {
    width: 100%;
  }
}

/* Joint Research */
.joint-research {
  .joint-research__header {
    margin-bottom: 24px;

    @media screen and (min-width: 768px) {
      margin-bottom: 32px;
    }
  }
}

.research-block {
  &:not(:last-child) {
    margin-bottom: 40px;
  }

  .research-block__header {
    font-weight: 700;
    margin-bottom: 24px;

    @media screen and (min-width: 768px) {
      margin-bottom: 32px;
    }
  }
}

.topic-item {
  font-size: 14px;
  line-height: 2;
  border: 1px solid;

  &:not(:last-child) {
    margin-bottom: 20px;
  }

  &:has(.topic-item__content) {
    .topic-item__header {
      cursor: pointer;
    }
  }

  .topic-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;

    .topic-item__header-icon {
      flex: none;
      display: flex;
      transition: transform 0.2s ease;
      transform: rotate(180deg);
    }

    &.is-open {
      .topic-item__header-icon {
        transform: rotate(0deg);
      }
    }

    @media screen and (min-width: 768px) {
      padding: 32px;
      gap: 48px;
    }
  }

  .topic-item__content {
    font-weight: 400 !important;

    li {
      &:nth-child(odd) {
        background-color: rgb(0 30 64 / 0.1);
      }

      &:nth-child(even) {
        background-color: #fff;
      }
    }

    .item-link {
      padding: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;

      .item-link__icon {
        flex: none;
        display: flex;
      }

      @media screen and (min-width: 768px) {
        padding: 32px;
        gap: 48px;
      }
    }
  }
}

/* Human Resource */
.human-resource-wrapper {
  padding-bottom: 80px;
  @media screen and (min-width: 768px) {
    padding-bottom: 160px;
  }

  > *:not(:last-child) {
    margin-bottom: 40px;
    @media screen and (min-width: 768px) {
      margin-bottom: 80px;
    }
  }
}

.human-resource-banner {
  padding-block: 40px;
  @media screen and (min-width: 768px) {
    padding-block: 80px;
  }

  .human-resource-banner__inner {
    position: relative;
    width: min(100%, 1080px);
    margin-inline: auto;
    @media screen and (min-width: 768px) {
      padding-inline: 20px;
    }
  }

  .human-resource-banner__overlay {
    margin-bottom: 24px;
    span {
      display: block;
      font-weight: 700;
      margin-block: 0.5em;

      &:nth-child(1) {
        font-size: 32px;
      }

      &:nth-child(2) {
        font-size: 14px;
      }
    }

    @media screen and (min-width: 768px) {
      position: absolute;
      left: 0;
      top: 0;
    }
  }

  .human-resource-banner__wrapper {
    display: flex;
    flex-flow: column;
    gap: 40px;

    @media screen and (min-width: 768px) {
      flex-flow: row-reverse;
      align-items: center;
    }
  }

  .human-resource-banner__content {
    flex: 1 1 0%;

    h1 {
      font-feature-settings: 'palt';
      font-size: 24px;
      line-height: 1.625;
      margin-bottom: 8px;
    }

    ul {
      font-weight: 700;

      li {
        &:not(:last-child) {
          margin-bottom: 8px;
        }
      }

      .position {
        font-size: 14px;
        margin-bottom: 4px;
      }

      .initial-join {
        display: flex;
        align-items: center;
        gap: 16px;
      }

      .initial {
        font-size: 24px;
      }

      .join {
        font-size: 12px;
        border: 1px solid;
        padding: 2px 4px;
      }
    }

    @media screen and (min-width: 768px) {
      flex: 1 1 0%;
      padding-left: 40px;
    }

    @media screen and (min-width: 1024px) {
      padding-left: 60px;
    }
  }

  .human-resource-banner__img {
    flex: 1 1 0%;

    @media screen and (min-width: 768px) {
      max-width: 550px;
    }

    @media screen and (min-width: 1024px) {
      flex: auto;
    }
  }
}

.human-resource-intro {
  width: 100%;
  max-width: 620px;
  margin-inline: auto;

  h2 {
    margin-bottom: 24px;
    font-size: 30px;

    @media screen and (min-width: 768px) {
      font-size: 36px;
      margin-bottom: 32px;
    }
  }

  p {
    font-weight: 500;
    line-height: 2;
  }
}

.interview-list {
  .interview-list__header {
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1;
    margin-bottom: 40px;

    @media screen and (min-width: 768px) {
      margin-bottom: 80px;
    }

    h2 {
      font-size: 28px;
      font-family: var(--font-en);
    }

    hr {
      flex: 1 1 0%;
    }

    span {
      font-size: 14px;
    }
  }

  .interview-list__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;

    @media screen and (min-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 48px;
    }
  }
}

.interview-card {
  border: 1px solid var(--color-primary);

  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;

  &:hover {
    .interview-card__img {
      img {
        transform: scale(1.1);
      }
    }
  }

  .interview-card__img {
    overflow: hidden;
    img {
      transition: transform 0.3s ease;
      display: block;
      width: 100%;
    }
  }

  .interview-card__content {
    padding: 24px;
  }

  .interview-card__title {
    font-size: 18px;
    line-height: 1.625;

    @media screen and (min-width: 768px) {
      font-size: 20px;
    }
  }

  .interview-card__footer {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;

    background-color: #f2f2f2;

    &::after {
      flex: none;
      content: '';
      width: 32px;
      height: 32px;
      background: transparent url('../img/common/circle-arrow.svg') no-repeat
        center center / contain;
      align-self: center;
    }

    ul {
      font-size: 14px;
      line-height: 1.625;
      font-weight: 500;
      li {
        &:not(:last-child) {
          margin-bottom: 4px;
        }
      }
    }
  }
}
