/* ======================================================================
 p_service
====================================================================== */
/*============================
l_container
============================*/
.l_container {
  overflow: visible;
}
.l_container .l_main {
  background-color: var(--color-gray);
}

/*============================
content_wrapper
============================*/
.content_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 85px;
  margin: 0 auto;
  padding: 80px 0 120px;
  width: 1200px;
}
.content_wrapper .main_content {
  flex-grow: 1;
}
.content_wrapper .side_content {
  position: sticky;
  flex-shrink: 0;
  width: 355px;
  height: 533px;
  top: 146px;
}
.content_wrapper .side_content .img_sec {
  position: relative;
}
.content_wrapper .side_content .img_sec .img_block {
  position: absolute;
  top: 0;
  left: 0;
}
.content_wrapper .side_content .img_sec .img_block .img {
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .content_wrapper {
    width: 100%;
    padding: 80px 20px 120px;
    gap: 7.08vw;
  }
  .content_wrapper .side_content .img_sec {
    width: 29.58vw;
  }
  .content_wrapper .side_content .img_sec .img_block .img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .content_wrapper {
    flex-direction: column-reverse;
    gap: 0;
    padding: 28px 20px 70px;
  }
  .content_wrapper .main_content {
    margin-top: 24px;
  }
  .content_wrapper .side_content {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
  }
  .content_wrapper .side_content .img_sec {
    width: 100%;
  }
  .content_wrapper .side_content .img_sec .img_block {
    position: relative;
    width: 70%;
    margin: 0 auto;
    top: auto;
    left: auto;
  }
  .content_wrapper .side_content .img_sec .img_block.img_block--after {
    display: none;
  }
}
/*============================
head_sec
============================*/
.head_sec {
  padding-bottom: 84px;
}
.head_sec .top_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 533px;
}
.head_sec .top_area .txt_block .bottome_box .degree {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.7;
}
.head_sec .top_area .txt_block .bottome_box .name {
  font-size: 28px;
  line-height: 1.7;
}
.head_sec .breadcrumb_area {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .head_sec .top_area {
    justify-content: flex-start;
    height: auto;
  }
  .head_sec .top_area .txt_block .bottome_box .degree {
    font-size: 12px;
  }
  .head_sec .top_area .txt_block .bottome_box .name {
    font-size: 18px;
  }
  .head_sec .breadcrumb_area {
    margin-top: 52px;
  }
}
/*============================
message_sec
============================*/
/*============================
career_sec
============================*/
/*============================
profile_sec
============================*/
.profile_sec .img_area {
  display: none;
}
@media screen and (max-width: 767px) {
  .profile_sec .img_area {
    display: block;
    width: 70%;
    margin: 0 auto 40px;
  }
  .profile_sec .img_area .img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
}