@charset "UTF-8";
/* ▼▼▼ company ▼▼▼ */
#company {
  /* company_items */
}
#company .company_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-block: 60px;
}
@media screen and (max-width: 767px) {
  #company .company_items {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 32px 0;
  }
}
@media screen and (max-width: 999px) and (min-width: 375px) {
  #company .company_items {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  }
}
#company .company_item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding: 16px;
  background: var(--Background-Primary);
  border: 1px solid var(--Line-Primary);
  border-radius: 4px;
  color: var(--Object-Primary);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 999px) {
  #company .company_item_link {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  #company .company_item_link {
    padding-block: 8px;
    padding-inline: 8px 16px;
  }
}
@media (any-hover: hover) {
  #company .company_item_link:hover {
    opacity: 1;
    color: var(--Object-Attention);
    border-color: var(--Object-Attention);
  }
  #company .company_item_link:hover .company_item_text::after {
    background: var(--Object-Attention);
  }
}
#company .company_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
#company .company_item_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 56px;
  aspect-ratio: 1/1;
  background: var(--Background-Secondary);
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#company .company_item_icon img {
  width: 24px;
  aspect-ratio: 1/1;
}
#company .company_item_text {
  width: 100%;
  font-size: var(--Body-Small);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor, transparent 50%);
  text-underline-offset: 4px;
  padding-right: 8px;
  position: relative;
}
#company .company_item_text::after {
  content: "";
  width: 1px;
  height: 22px;
  background: var(--Line-Primary);
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#company .company_item_arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--Object-Secondary);
  background: url(../img/icon_arrow.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#company .company_item_arrow.--top {
  background-image: url(../img/icon_arrow_external.svg);
}

/* ▼▼▼ profile ▼▼▼ */
#profile .profile_group {
  padding-block: 60px;
}
@media screen and (max-width: 767px) {
  #profile .profile_group {
    padding-block: 32px 0;
  }
}
#profile .profile_group_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  #profile .profile_group_title {
    margin-bottom: 24px;
  }
}
#profile .profile_group_title::before {
  content: "";
  width: 4px;
  height: 100%;
  min-height: 28px;
  background: var(--Brand-color-Primary);
  border-radius: 4px;
}
#profile .profile_group_title_ja {
  font-size: var(--Heading-H2);
  font-weight: var(--font-weight-medium);
  color: var(--Object-Primary);
}
#profile .profile_group_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  #profile .profile_group_list {
    gap: 8px;
  }
}
#profile .profile_group_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 32px 16px;
  background: var(--Background-Primary);
  border: 1px solid var(--Line-Primary);
  border-radius: 4px;
  color: var(--Object-Primary);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #profile .profile_group_item {
    padding-block: 8px;
    padding-inline: 8px 16px;
  }
}
@media (any-hover: hover) {
  #profile .profile_group_item:hover {
    opacity: 1;
    background: var(--Brand-color-Primary);
    color: var(--Object-Primary-Reverse);
  }
  #profile .profile_group_item:hover .profile_group_item_arrow {
    background-image: url(../img/icon_arrow_wht.svg);
    translate: 5px;
  }
}
#profile .profile_group_item_text {
  width: 100%;
  font-size: var(--Body-Small);
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, currentColor, transparent 50%);
  text-underline-offset: 4px;
  padding-right: 8px;
  position: relative;
}
#profile .profile_group_item_text::after {
  content: "";
  width: 1px;
  height: 22px;
  background: var(--Line-Primary);
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
#profile .profile_group_item_arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--Object-Secondary);
  background: url(../img/icon_arrow.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}