body {
  background-color: #ECF2FD;
  min-width: 320px;
}
header {
  height: initial;
}
.header {
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFF;
}
.header img {
  padding: initial;
}
.header .header_cv_container {
  display: flex;
}
.header .header_cv {
  height: 32px;
  width: 140px;
  font-size: 14px;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  background-color: #4573F9;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
  .header .header_cv:hover {
    opacity: 0.6;
    transition: all .2s;
  }
main {
  width: initial;
  margin-bottom: 80px;
}
.movie {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 0 16px;
}
  .movie video {
    width: 100%;
  }
.cv_area {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 64px;
}
  @media screen and (max-width: 800px) {
    .cv_area {
      display: block;
    }
  }
.cv_btn{
  width: 250px;
  height: 44px;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}
  @media screen and (max-width: 840px) {
    .cv_btn{
      margin: 0 auto;
    }
  }
  .cv_btn:hover {
    opacity: 0.6;
    transition: all .2s;
  }
.cv_btn.download{
  background-color: #FF009A;
  color: #FFF;
}
  @media screen and (max-width: 800px) {
    .cv_btn.download{
      margin-bottom: 32px;
    }
  }
.cv_btn.inquiry{
  height: 40px;
  background-color: #FFF;
  border: 2px solid #FF009A;
  color: #FF009A;
}
.cv_btn_content img{
  position: absolute;
  width: 60px;
  left: -30px;
  top: 1px;
}
@media screen and (max-width: 800px) {
  .cv_btn_content span{
    display: block;
  }
}
.shoulder{
  color: #001F4F;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4px;
}
footer {
  height: initial !important;
}