@charset "utf-8";

#center_intro .content_photo {
  position: relative;
  margin-bottom: 12rem;
}

#center_intro .sub_title_tit {
  margin-bottom: 4rem;
  line-height: 1.2;
  font-size: 3.2rem;
  font-weight: 700;
}

#center_intro .content_photo .txt_area {
  position: absolute;
  right: 4rem;
  bottom: -4rem;
  z-index: 2;

  padding: 4rem;

  background: var(--primary-color);
}

#center_intro .content_photo .txt_area p {
  color: var(--white-color);

  font-size: 1.6rem;
  line-height: 2.4rem;
}

#center_intro .con_wrap {
  display: flex;
  gap: 3.2rem;
}

#center_intro .con_wrap > * {
  flex: 1;
}

#center_intro .con_wrap .itm {
  position: relative;
  padding: 4rem;
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-radius: 1.6rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

#center_intro .con_wrap .itm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

#center_intro .con_wrap .itm:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

#center_intro .con_wrap .itm:hover::before {
  transform: scaleX(1);
}

#center_intro .con_wrap .itm_number {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 7.2rem;
  font-weight: 900;
  color: rgba(42, 51, 67, 0.05);
  line-height: 1;
  z-index: 1;
}

#center_intro .con_wrap .itm_icon {
  position: relative;
  width: 5.6rem;
  height: 5.6rem;
  margin-bottom: 2.4rem;
  color: var(--primary-color);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 51, 67, 0.05);
  border-radius: 1.2rem;
  transition: all 0.3s ease;
}

#center_intro .con_wrap .itm:hover .itm_icon {
  background: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.1);
}

#center_intro .con_wrap .itm_icon svg {
  width: 2.8rem;
  height: 2.8rem;
}

#center_intro .con_wrap .itm_content {
  position: relative;
  z-index: 2;
}

#center_intro .con_wrap .itm.character_bg::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 200px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

#center_intro .con_wrap .itm.character_bg[data-character]::after {
  background-image: var(--character-bg-image);
}

#center_intro .con_wrap .itm.character_bg[data-character-position='left-top']::after {
  top: 2rem;
  left: 0rem;
  bottom: auto;
  right: auto;
}

#center_intro .con_wrap .itm.character_bg[data-character-position='left-bottom']::after {
  bottom: 2rem;
  left: 0rem;
  top: auto;
  right: auto;
}

#center_intro .con_wrap .itm.character_bg[data-character-position='right-top']::after {
  top: 2rem;
  right: 0rem;
  bottom: auto;
  left: auto;
}

#center_intro .con_wrap .itm.character_bg[data-character-position='right-bottom']::after {
  bottom: 2rem;
  right: 0rem;
  top: auto;
  left: auto;
}

#center_intro .con_wrap .itm.character_bg[data-character-position='center']::after {
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translate(-50%, -50%);
}

#center_intro .con_wrap .itm_content p {
  margin-top: 3rem;
  margin-bottom: 7rem;
  color: var(--body-color);
  font-size: 1.7rem;
  line-height: 2.6rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  #center_intro .con_wrap {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }

  #center_intro .con_wrap .itm {
    padding: 3.2rem;
    border-radius: 1.2rem;
  }

  #center_intro .con_wrap .itm_number {
    top: 1.6rem;
    left: 1.6rem;
    font-size: 5.6rem;
  }

  #center_intro .con_wrap .itm_icon {
    width: 5.2rem;
    height: 5.2rem;
    margin-bottom: 2rem;
  }

  #center_intro .con_wrap .itm_icon svg {
    width: 2.4rem;
    height: 2.4rem;
  }

  #center_intro .con_wrap .itm_content p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  #center_intro .sub_title_tit {
    margin-bottom: 4rem;
    line-height: 1.2;
    font-size: 2.4rem;
    font-weight: 700;
  }

  #center_intro .content_photo {
    position: relative;
    margin-bottom: 8rem;
  }

  #center_intro .content_photo img {
    height: 40rem;
    object-fit: cover;
  }

  #center_intro .content_photo .txt_area {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    padding: 2.4rem;
  }
}

#center_vision,
#center_goal,
#center_location {
  margin-top: 12rem;
  padding-top: 12rem;
  border-top: 1px solid var(--line-color);
}

#center_vision .sub_title_tit,
#center_goal .sub_title_tit,
#center_strategy .sub_title_tit,
#center_location .sub_title_tit,
#center_role .sub_title_tit {
  margin-bottom: 4rem;
  line-height: 1.2;
  font-size: 3.6rem;
  font-weight: 700;
}

#center_vision .vision_wrap {
  width: 100%;
}

#center_vision .vision_img {
  position: relative;
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
}

#center_vision .vision_img img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

#center_vision .vision_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  background: rgba(0, 0, 0, 0.3);
}

#center_vision .vision_content p {
  color: var(--white-color);
  line-height: 2.8rem;
  font-size: 2rem;
  text-align: center;
  max-width: 90rem;
  font-weight: 500;
}

#center_goal .goal_wrap {
  width: 100%;
}

#center_goal .goal_img {
  position: relative;
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
}

#center_goal .goal_img img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

#center_goal .goal_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  background: rgba(0, 0, 0, 0.3);
}

#center_goal .goal_content p {
  color: var(--white-color);
  line-height: 2.8rem;
  font-size: 2rem;
  text-align: center;
  max-width: 90rem;
  margin-bottom: 2.4rem;
  font-weight: 500;
}

#center_goal .goal_content p:last-child {
  margin-bottom: 0;
}

#center_strategy {
  margin-top: 12rem;
  padding-top: 12rem;
  border-top: 1px solid var(--line-color);
}

#center_strategy .strategy_wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

#center_strategy .strategy_item {
  position: relative;
  display: flex;
  gap: 4rem;
  padding: 4rem;
  background: var(--background-color);
  border-radius: 1.2rem;
  align-items: center;
  overflow: hidden;
}

#center_strategy .strategy_item.character_bg::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 200px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

#center_strategy .strategy_item.character_bg[data-character]::after {
  background-image: var(--character-bg-image);
}

#center_strategy .strategy_item.character_bg[data-character-position='left-top']::after {
  top: 2rem;
  left: 0rem;
  bottom: auto;
  right: auto;
}

#center_strategy .strategy_item.character_bg[data-character-position='left-bottom']::after {
  bottom: 2rem;
  left: 0rem;
  top: auto;
  right: auto;
}

#center_strategy .strategy_item.character_bg[data-character-position='right-top']::after {
  top: 2rem;
  right: 0rem;
  bottom: auto;
  left: auto;
}

#center_strategy .strategy_item.character_bg[data-character-position='right-bottom']::after {
  bottom: 2rem;
  right: 0rem;
  top: auto;
  left: auto;
}

#center_strategy .strategy_item.character_bg[data-character-position='center']::after {
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translate(-50%, -50%);
}

#center_strategy .strategy_img {
  flex: 0 0 40%;
  position: relative;
  z-index: 2;
}

#center_strategy .strategy_img img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  border-radius: 1.2rem;
}

#center_strategy .strategy_content {
  flex: 1;
  position: relative;
  z-index: 2;
}

#center_strategy .strategy_content strong {
  width: 60%;
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-color);
}

#center_strategy .strategy_content p {
  line-height: 2.6rem;
  font-size: 1.8rem;
}

#center_role {
  margin-top: 12rem;
  padding-top: 12rem;
  border-top: 1px solid var(--line-color);
}

#center_location .location_wrap {
  width: 100%;
}

#center_location .location_img {
  position: relative;
  width: 100%;
  border-radius: 1.2rem;
  overflow: hidden;
}

#center_location .location_img img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}

#center_location .location_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  background: rgba(0, 0, 0, 0.3);
}

#center_location .location_content p {
  color: var(--white-color);
  line-height: 2.8rem;
  font-size: 2rem;
  text-align: center;
  max-width: 90rem;
  font-weight: 500;
}

#center_role .role_wrap {
  display: flex;
  gap: 4rem;
}

#center_role .role_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--background-color);
  border-radius: 1.2rem;
  overflow: hidden;
}

#center_role .role_img {
  width: 100%;
}

#center_role .role_img img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

#center_role .role_content {
  padding: 4rem;
}

#center_role .role_content strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line-color);
}

#center_role .role_content p {
  line-height: 2.6rem;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  #center_vision,
  #center_goal,
  #center_strategy,
  #center_location,
  #center_role {
    margin-top: 8rem;
    padding-top: 8rem;
  }

  #center_vision .sub_title_tit,
  #center_goal .sub_title_tit,
  #center_strategy .sub_title_tit,
  #center_location .sub_title_tit,
  #center_role .sub_title_tit {
    font-size: 2.8rem;
    margin-bottom: 3.2rem;
  }

  #center_vision .vision_img img {
    height: 30rem;
  }

  #center_vision .vision_content {
    padding: 2.4rem;
  }

  #center_vision .vision_content p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  #center_goal .goal_img img {
    height: 30rem;
  }

  #center_goal .goal_content {
    padding: 2.4rem;
  }

  #center_goal .goal_content p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 1.6rem;
  }

  #center_strategy .strategy_wrap {
    gap: 2.4rem;
  }

  #center_strategy .strategy_item {
    flex-direction: column;
    padding: 2.4rem;
  }

  #center_strategy .strategy_img {
    flex: none;
    width: 100%;
  }

  #center_strategy .strategy_img img {
    height: 24rem;
  }

  #center_strategy .strategy_content strong {
    font-size: 2.2rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
  }

  #center_strategy .strategy_content p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  #center_location .location_img img {
    height: 30rem;
  }

  #center_location .location_content {
    padding: 2.4rem;
  }

  #center_location .location_content p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  #center_role .role_wrap {
    flex-direction: column;
    gap: 2.4rem;
  }

  #center_role .role_img img {
    height: 20rem;
  }

  #center_role .role_content {
    padding: 2.4rem;
  }

  #center_role .role_content strong {
    font-size: 2.2rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
  }

  #center_role .role_content p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}

#center_info {
  margin-top: 12rem;
  padding-top: 12rem;
  border-top: 1px solid var(--line-color);
}

#center_info .table_wrap {
  display: flex;
  justify-content: center;
}

#center_info .table {
  width: 100%;
  /* max-width: 80rem; */
  border-collapse: collapse;
}

#center_info .table th {
  background: var(--background-color);
  padding: 1.6rem 2.4rem;
  text-align: left;
  font-weight: 700;
  font-size: 1.8rem;
  border: 1px solid var(--line-color);
  border-right: none;
}

#center_info .table td {
  border: 1px solid var(--line-color);
  padding: 1.6rem 2.4rem;
  font-size: 1.8rem;
  line-height: 2.6rem;
}

@media (max-width: 768px) {
  #center_info {
    margin-top: 8rem;
    padding-top: 8rem;
  }

  #center_info .table_wrap {
    padding: 0 2rem;
  }

  #center_info .table {
    width: 100%;
  }

  #center_info .table th {
    font-size: 1.6rem;
    padding: 1.2rem 1.6rem;
  }

  #center_info .table td {
    font-size: 1.6rem;
    line-height: 2.4rem;
    padding: 1.2rem 1.6rem;
  }
}
