@charset "utf-8";

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, a, address,
em, img, strong, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td,
footer, header, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-family: 'Pretendard';
  vertical-align: baseline;
}

*,*:before, *:after {
  box-sizing: inherit
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
}

ol, ul, li {
  list-style: none
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: 'Pretendard';
}

html {
  width: 100%;
  max-width: 100%;
  height: 100%;
  box-sizing: border-box;
  font-size: 16px;
}

body {
  width: 100%;
  height: 100%;
}
body.idx {
  background: url(../image/bg.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
body.sub {
  position: relative;
}
body.sub::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 930px;
  background: url(../image/detail_bg.png) no-repeat;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto
}

main {
  text-align: center;
  font-family: Pretendard, sans-serif
}

.c2 {
  height: 400px
}

.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh
}

.slide-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%
}

.slide {
  position: absolute;
  display: none;
  z-index: 0
}
.slide.enabled {
  display: block
}

#scroll-down {
  position: absolute;
  bottom: 70px;
  width: 150px;
  padding: 8px 0;
  text-align: center;
  color:#333333;
  background: rgba(255, 255, 255, .4);
  border-radius: 50px;
  animation:scrollDwonbAni 2s infinite;
  transition: .3s;
}
@keyframes scrollDwonbAni {
  0% {background: rgba(255, 255, 255, .4);}
  50% {transform: scale(1.04); background: rgba(255, 255, 255, .8);}
  100% {background: rgba(255, 255, 255, .4);}
}
@media (max-width: 740px), (max-height: 570px) {
  #scroll-down {
    width: 103px;
    padding: 7px 0;
    font-size: 13px;
    transition: .3s;
  }
}

#moving-background {
  width: 500px;
  padding-top: 40px;
  height: 500px;
  background-color: #f5f5f5;
  color: #777;
  z-index: -1
}

.header, .footer {
  width: 100%;
  height: 90px;
  text-align: center;
  line-height: 90px;
  z-index: 1000;
  transition: .3s;
}
.header {
  position: fixed;
  font-size: 27.5px;
  font-weight: 600;
  color: #051759;
}

.footer {
  position: fixed;
  bottom:0;
  font-size: 16px;
  font-weight: 500;
  color: #272727;
}

@media (max-width: 740px), (max-height: 570px) {
  .header {
    height: 60px;
    font-size: 22px;
    line-height: 60px;
    transition: .3s;
  }
  .footer {
    height: 60px;
    font-size: 13px;
    line-height: 60px;
    transition: .3s;
  }
}
.sub_header {
  display: flex;
  justify-content: space-between;
  padding: 30px 200px;
  z-index: 1000;
  transition: .3s;
}
.sub_header>h1 {
  font-size: 21px;
  font-weight: 600;
  color: #051759;
  transition: .3s;
}
.sub_header>ul {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  transition: .3s;
}
.sub_header>ul>li:not(:last-of-type) {
  margin-right: 50px;
  transition: .3s;
}
.sub_header>ul>li>a {
  position: relative;
  font-weight: 500;
}
.sub_header>ul>li.on>a {
  font-weight: 800;
  color: #051759;
}
.sub_header>ul>li>a::before {
  content:"";
  position: absolute;
  bottom: -10.5px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: #051759;
  border-radius: 5px;
  opacity: 0;
  transition: .3s;
  z-index: -1;
}
.sub_header>ul>li.on>a::before {
  opacity: 1;
}
.sub_header>ul>li:not(.on):hover>a::before {
  opacity: 1;
  transition: .3s;
}

.sub_footer {
  height: 100px;
  padding-bottom: 50px;
  margin: 0 200px;
  z-index: 1000;
  transition: .3s;
}
.sub_footer > p {
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #272727;
  background: rgba(255, 255, 255, .6);
  box-shadow: 2px 2px 8px rgb(0 0 0 / 20%);
  border-radius: 28px;
  transition: .3s;
}

.sub_content {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px 200px 60px;
  transition: .3s;
}

@media (max-width: 1700px) {
  .sub_header {
    padding: 25px 50px;
    transition: .3s;
  }

  .sub_content {
    padding: 25px 50px 60px;
    transition: .3s;
  }

  .sub_footer {
    margin: 0 50px;
    transition: .3s;
  }
}

@media (max-width: 950px) {
  .sub_header>h1 {
    font-size: 19px;
    transition: .3s;
  }

  .sub_header>ul {
    font-size: 13.5px;
    transition: .3s;
  }

  .sub_header>ul>li:not(:last-of-type) {
    margin-right: 15px;
    transition: .3s;
  }

  .sub_footer {
    height: 80px;
    padding-bottom: 30px;
    transition: .3s;
  }

  .sub_footer > p {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #272727;
    background: rgba(255, 255, 255, .6);
    box-shadow: 2px 2px 8px rgb(0 0 0 / 20%);
    border-radius: 28px;
  }
}

@media (max-width: 700px) {
  .sub_header {
    flex-direction: column;
    padding: 15px 20px;
    transition: .3s;
  }
  .sub_header>h1 {
    padding-bottom: 10px;
    transition: .3s;
  }
  .sub_header>ul {
    justify-content: start;
    font-size: 14px;
    line-height: 22px;
    transition: .3s;
  }
  
  .sub_header>ul>li>a::before {
    bottom: 50%;
    left: 101%;
    transform: translate(50%, 50%);
    width: 4px;
    height: 4px;
  }

  .sub_header>ul>li:not(:last-of-type) {
    margin-right: 25px;
    transition: .3s;
  }

  .sub_content {
    padding: 10px 20px 30px;
    transition: .3s;
  }

  .sub_footer {
    height: 70px;
    padding-bottom: 30px;
    margin: 0 20px;
    transition: .3s;
  }
}

@media (max-width: 400px) {
  .sub_header>ul {
    font-size: 13px;
    transition: .3s;
  }

  .sub_header>ul>li:not(:last-of-type) {
    margin-right: 18px;
    transition: .3s;
  }
}

.business_card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 630px;
  min-height: 360px;
  max-height: 360px;
  margin: auto;
  padding: 30px 25px;
  text-align: center;
  background: rgba(255, 255, 255, .6);
  border-radius: 33px;
  box-shadow: 2px 2px 8px rgb(0 0 0 / 15%);
  transition: .3s;
}
.business_card.back {
  position: relative;
}
.business_card.back::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 45px;
  background: url(../image/flowers.svg) no-repeat;
  z-index: 1;
  transition: .3s;
}
.business_card.back::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 25px;
  width: 375px;
  height: 75px;
  background: url(../image/leeyura_gray.svg) no-repeat;
  transition: .3s;
}

.business_card .flowers>img {
  height: 35px;
  margin: auto;
  transition: .3s;
}

.business_card.back .name {
  text-align: right;
}
.business_card.back .name>img {
  height: 70px;
  margin: 0;
  transition: .3s;
}
.business_card .name>img {
  height: 140px;
  margin: auto;
  transition: .3s;
}

.business_card.back .list {
  font-size: 18px;
  text-align: left;
  line-height: 28px;
  z-index: 1;
  transition: .3s;
}
.business_card.back .list>li:first-of-type {
  padding-bottom: 10px;
  font-size: 25px;
  font-weight: 700;
  transition: .3s;
}
.business_card.back .list>li:nth-of-type(2) {
  padding-bottom: 20px;
  font-size: 23px;
  font-weight: 500;
  transition: .3s;
}

.business_card .card_text {
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 8px rgb(0 0 0 / 15%);
  font-size: 23px;
  font-weight: 500;
  transition: .3s;
}

@media (max-width: 740px), (max-height: 570px) {
  .business_card {
    width: 100%;
    min-width: 315px;
    min-height: 225px;
    padding: 20px 23px;
    transition: .3s;
  }
  
  .business_card .flowers>img {
    height: 27px;
    transition: .3s;
  }

  .business_card .card_text {
    font-size: 16px;
    color: #272727;
    text-shadow: none;
    transition: .3s;
  }

  .business_card .name>img {
    height: 70px;
    transition: .3s;
  }

  
  .business_card.back::before {
    width: 70px;
    height: 22px;
    transition: .3s;
  }
  .business_card.back::after {
    width: 73%;
    height: 47px;
    bottom: 20px;
    transition: .3s;
  }

  .business_card.back .name>img {
    height: 38px;
    transition: .3s;
  }
  
  .business_card.back .list {
    font-size: 15px;
    line-height: 19px;
    transition: .3s;
  }

  .business_card.back .list>li:first-of-type {
    font-size: 17px;
    padding-bottom: 5px;
    transition: .3s;
  }

  .business_card.back .list>li:nth-of-type(2) {
    font-size: 16px;
    padding-bottom: 15px;
    transition: .3s;
  }
}

.projects {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 380px;
  margin: auto;
  transition: .3s;
}
.projects .project {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .4);
  transition: .3s;
}
.projects .project:hover {
  background: rgba(255, 255, 255, .8);
  transition: .3s;
}
.projects .project:nth-of-type(n+3) {
  margin-top: 20px;
  transition: .3s;
}
.projects .project::before {
  content: "";
  position: absolute;
  bottom: 45px;
  left: 30px;
  width: 25px;
  height: 25px;
  background: url(../image/arrow.svg) no-repeat;
  transition: .3s;
  z-index: 10;
}
.projects .project>a {
  display: block;
  width: 100%;
  height: 100%;
}
.projects .project>a>img {
  width: 150px;
  padding-top: 10px;
  transition: .3s;
}
.projects .project:hover>a>img {
  transform: scale(1.02);
  transition: .3s;
}
.projects .project>a>p {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 17px;
  transition: .3s;
}

@media (max-width: 740px), (max-height: 570px) {
  .projects  {
    width: 70%;
    transition: .3s;
  }
  .projects .project {
    width: calc(50% - 5px);
    height: calc(50% - 5px);
    padding: 10px 0 13px;
    transition: .3s;
  }
  .projects .project:nth-of-type(n+3) {
    margin-top: 10px;
    transition: .3s;
  }

  .projects .project::before {
    bottom: 38px;
    left: 22px;
    width: 22px;
    height: 22px;
    transition: .3s;
  }

  .projects .project>a>img {
    width: 105px;
    padding-top: 0;
    padding-bottom: 8px;
    transition: .3s;
  }

  .projects .project>a>p {
    font-size: 14px;
    transition: .3s;
  }
}

.work_detail {
  display: flex;
  width: 100%;
  height: auto;
}
.work_detail>li {
  background: rgba(255, 255, 255, .4);
  height: auto
}
.work_detail>li.detail_icon {
  width: 175px;
  height: 100%;
  border-radius: 28px;
  transition: .3s;
}

.work_detail>li.detail_text {
  width: 100%;
  height: auto;
  padding: 30px;
  margin: 80px 0 0 30px;
  border-radius: 28px;
  transition: .3s;
}
.work_detail>li.detail_text ul>li {
  font-size: 21px;
  transition: .3s;
}
.work_detail>li.detail_text ul>li:first-of-type {
  padding-bottom: 10px;
}
.work_detail>li.detail_text ul>li:nth-of-type(2) {
  padding-bottom: 15px;
  font-size: 21px;
  font-weight: 600;
}
.work_detail>li.detail_text ul>li:nth-of-type(2)>span {
  font-size: 25px;
}
.work_detail>li.detail_text ul>li:last-of-type {
  font-size: 18px;
  line-height: 26px;
}

.link {
  display: flex;
  justify-content: end;
  padding-top: 25px;
}

.link > button {
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #051759;
  border: none;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, .8);
  cursor: pointer;
  transition: .3s;
}

.link > button:hover {
  box-shadow: 2px 2px 8px rgb(0 0 0 / 20%);
  transform: scale(1.03);
  transition: .3s;
}

.work_img {
  padding: 70px 0 100px;
}
.work_img .work_main {
  padding-bottom: 80px;
  transition: .3s;
}
.work_img .work_main>img {
  width: 100%;
  box-shadow: 2px 2px 8px rgb(0 0 0 / 20%);
  border-radius: 28px;
  overflow: hidden;
  transition: .3s;
}
.work_img .work_main.none-bg>img {
  box-shadow: none;
}
.work_img .work_sub>li {
  width: 100%;
}
.work_img .work_sub>li:not(:last-of-type) {
  padding-bottom: 50px;
  transition: .3s;
}
.work_img .work_sub>li>img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 2px 2px 8px rgb(0 0 0 / 20%);
  overflow: hidden;
  transition: .3s;
}

.work_i {
  display: flex;
  width: 100%;
  height: auto;
  padding-top: 80px;
  transition: .3s;
}
.work_i>li {
  background: rgba(255, 255, 255, .4);
  box-shadow: 2px 2px 8px rgb(0 0 0 / 20%);
  border-radius: 28px;
  transition: .3s;
}
.work_i .work_i_img {
  width: 290px;
  height: 73px;
  text-align: center;
  transition: .3s;
}
.work_i .work_i_img>img {
  height: 100%;
  padding: 5px;
}

.work_i .work_i_icon {
  width: 80px;
  min-width: 80px;
  height: 80px;
  margin: 30px 20px 0 0;
  background-color: #44d8bb;
  box-shadow: 2px 2px 8px rgb(0 0 0 / 20%);
  border-radius: 22px;
  transition: .3s;
}
.work_i .work_i_icon>img {
  padding: 12px;
}
.work_i .work_i_txt {
  width: 100%;
  padding: 30px;
  margin: 40px 0 0 30px;
  line-height: 23px;
  font-size: 17px;
  font-weight: 500;
  transition: .3s;
}

@media (max-width: 950px) {
.work_detail>li.detail_icon {
    width: 135px;
    transition: .3s;
  }

  .work_detail>li.detail_text {
    padding: 20px;
    margin: 15px 0 0 15px;
    transition: .3s;
  }
  .work_detail>li.detail_text ul>li {
    font-size: 16px;
    transition: .3s;
  }
  .work_detail>li.detail_text ul>li:first-of-type {
    padding-bottom: 5px;
  }
  .work_detail>li.detail_text ul>li:nth-of-type(2)>span {
    font-size: 19px;
  }
  .work_detail>li.detail_text ul>li:nth-of-type(2) {
    padding-bottom: 10px;
    font-size: 17px;
    transition: .3s;
  }
  .work_detail>li.detail_text ul>li:last-of-type {
    font-size: 15px;
    line-height: 23px;
  }

  .link > button {
    padding: 12px 15px;
    font-size: 14px;
    transition: .3s;
  }

  .work_img {
    padding: 50px 0 35px;
    transition: .3s;
  }

  .work_img .work_main {
    padding-bottom: 60px;
    transition: .3s;
  }

  .work_img .work_main>img {
    border-radius: 15px;
    transition: .3s;
  }

  .work_img .work_sub>li>img {
    border-radius: 15px;
    transition: .3s;
  }

  .work_i {
    height: auto;
    padding-top: 60px;
    transition: .3s;
  }

  .work_i>li {
    border-radius: 15px;
    transition: .3s;
  }

  .work_i .work_i_img {
    width: 230px;
    height: 50px;
    transition: .3s;
  }
  
  .work_i .work_i_icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    margin: 20px 15px 0 0;
    border-radius: 15px;
    transition: .3s;
  }
  .work_i .work_i_txt {
    padding: 20px;
    margin: 25px 0 0 20px;
    line-height: 21px;
    font-size: 14px;
    transition: .3s;
  }
}

@media (max-width: 700px) {
  .work_detail>li.detail_icon {
    width: 100px;
    border-radius: 20px;
    transition: .3s;
  }

  .work_detail>li.detail_text {
    margin: 0px 0 0 10px;
    border-radius: 20px;
    transition: .3s;
  }

  .work_detail>li.detail_text ul>li {
    font-size: 14px;
    transition: .3s;
  }
  .work_detail>li.detail_text ul>li:nth-of-type(2)>span {
    font-size: 15px;
    transition: .3s;
  }
  .work_detail>li.detail_text ul>li:nth-of-type(2) {
    font-size: 14px;
    transition: .3s;
  }
  .work_detail>li.detail_text ul>li:last-of-type {
    font-size: 14px;
    line-height: 20px;
  }
  
  .link > button {
    padding: 10px 13px;
    font-size: 13.5px;
    transition: .3s;
  }

  .work_img .work_main {
    padding-bottom: 35px;
    transition: .3s;
  }
  .work_img .work_main.none-bg {
    padding-bottom: 0;
    transition: .3s;
  }

  .work_img .work_sub>li:not(:last-of-type) {
    padding-bottom: 25px;
    transition: .3s;
  }

  .work_i {
    padding-top: 40px;
    transition: .3s;
  }

}