/* COMPANY Header */
.company_page header {
  background-color: rgba(250, 250, 250, .96);
  box-shadow: 0 1px 0 rgba(23, 23, 23, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* COMPANY HERO */
.company_hero {
  position: relative;
  padding-top: 80px;
  background-color: var(--color-white);
}

.company_visual {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-image: url("../images/COMPANY_hero_SP.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.company_visual::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      rgba(250, 250, 250, .90) 0%,
      rgba(250, 250, 250, .76) 30%,
      rgba(250, 250, 250, .48) 52%,
      rgba(250, 250, 250, .18) 72%,
      rgba(250, 250, 250, 0) 94%);
}

.company_hero_text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
}

.company_label {
  color: var(--color-purple);
  font-size: 14px;
  font-weight: 700;
}

.company_title {
  margin-top: 10px;
  color: var(--color-black);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

/* COMPANY_hero motion */
.company_hero_text {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .8s var(--motion-ease),
    transform .8s var(--motion-ease);
}

.company_hero.is_visible .company_hero_text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .08s;
}

/* label */
.company_section_label {
  color: var(--color-purple);
  font-size: 14px;
  font-weight: 700;
}

.company_section_title {
  margin-top: 12px;
  color: var(--color-black);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}

/* MESSAGE */
.company_message {
  padding: 72px 0 0;
  background-color: var(--color-white);
}

.company_message_inner {
  margin-top: 40px;
}

.company_message_text p {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.company_message_text p+p {
  margin-top: 14px;
}

.company_message_text p.company_signature {
  margin-top: 40px;
  color: var(--color-black);
  font-weight: 500;
  line-height: 1.7;
}

.company_message_photo {
  margin-top: 24px;
}

.company_message_photo img {
  display: block;
  width: clamp(210px, 62vw, 240px);
  height: auto;
  margin-left: auto;
}

/* MESSAGE motion */
.company_message .company_section_label,
.company_message .company_section_title,
.company_message_inner {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .7s var(--motion-ease),
    transform .7s var(--motion-ease);
}

.company_message.is_visible .company_section_label,
.company_message.is_visible .company_section_title,
.company_message.is_visible .company_message_inner {
  opacity: 1;
  transform: translateY(0);
}

.company_message.is_visible .company_section_label {
  transition-delay: .05s;
}

.company_message.is_visible .company_section_title {
  transition-delay: .12s;
}

.company_message.is_visible .company_message_inner {
  transition-delay: .20s;
}

/* PROFILE */
.company_profile {
  padding: 88px 0 96px;
  background-color: var(--color-white);
}

.company_profile_list {
  margin-top: 40px;
  border-top: 1px solid rgba(23, 23, 23, 0.12);
}

.company_profile_row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
}

.company_profile_row dt {
  color: var(--color-black);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.company_profile_row dd {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

/* PROFILE motion */
.company_profile .company_section_label,
.company_profile .company_section_title,
.company_profile_list {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .7s var(--motion-ease),
    transform .7s var(--motion-ease);
}

.company_profile.is_visible .company_section_label,
.company_profile.is_visible .company_section_title,
.company_profile.is_visible .company_profile_list {
  opacity: 1;
  transform: translateY(0);
}

.company_profile.is_visible .company_section_label {
  transition-delay: .05s;
}

.company_profile.is_visible .company_section_title {
  transition-delay: .12s;
}

.company_profile.is_visible .company_profile_list {
  transition-delay: .20s;
}


/* COMPANY PC用 */
@media screen and (min-width:1008px) {

  .company_hero_text,
  .company_message>.wrapper,
  .company_profile>.wrapper {
    padding-left: 56px;
    padding-right: 56px;
  }

  .company_hero {
    padding-top: 96px;
  }

  .company_visual {
    height: 380px;
    background-image: url("../images/COMPANY_hero_PC.jpg");
  }

  .company_visual::after {
    background: linear-gradient(90deg,
        rgba(250, 250, 250, .82) 0%,
        rgba(250, 250, 250, .58) 24%,
        rgba(250, 250, 250, .12) 52%,
        rgba(250, 250, 250, 0) 100%);
  }

  .company_hero_text {
    bottom: 40px;
  }

  .company_label {
    font-size: 16px;
  }

  .company_title {
    margin-top: 12px;
    font-size: 56px;
  }

  /* section_titl */
  .company_section_title {
    margin-top: 14px;
    font-size: 36px;
  }

  /* MESSAGE */
  .company_message {
    padding: 96px 0 0;
  }

  .company_message_inner {
    margin-top: 48px;
    display: grid;
    grid-template-columns:
      minmax(0, 1fr) clamp(240px, 24vw, 320px);
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
  }

  .company_message_text {
    max-width: 720px;
  }

  .company_message_text p {
    font-size: 15px;
    line-height: 2;
  }

  .company_message_photo {
    margin-top: 0;
  }

  .company_message_photo img {
    width: 100%;
    margin-left: 0;
  }

  /* PROFILE */
  .company_profile {
    padding: 104px 0 120px;
  }

  .company_profile_list {
    max-width: 1008px;
    margin-top: 48px;
    margin-left: 40px;
  }

  .company_profile_row {
    grid-template-columns: 160px 1fr;
    gap: 28px;
    padding: 18px 0;
  }

  .company_profile_row dt {
    font-size: 13px;
  }

  .company_profile_row dd {
    font-size: 14px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .company_hero_text,
  .company_message .company_section_label,
  .company_message .company_section_title,
  .company_message_inner,
  .company_profile .company_section_label,
  .company_profile .company_section_title,
  .company_profile_list {
    opacity: 1;
    transform: none;
    transition: none;
  }

}