* {
  margin: 0;
  padding: 0;
}

#app.update-view {
  background: #F7F4EF 0% 0% no-repeat padding-box;
}

#app.update-view .loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: #FF3D00;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: loader-rotation 1s linear infinite;
}

@keyframes loader-rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


#app.update-view .page-container {
  padding-bottom: 120px;
}

@media screen and (max-width: 780px) {
  #app.update-view .page-container {
    padding-bottom: 36px;
  }
}

#app.update-view .page-container .page-content.update-view {
  background-image: url(../assets/images/updates-visual.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
}

#app.update-view .page-container .page-content.update-view h1 {
  padding: 264px 0 40px;
  margin: 0;
  font: normal normal bold 96px/96px Kepler Std;
  color: #FFFFFF;
}

@media screen and (max-width: 780px) {
  #app.update-view .page-container .page-content.update-view h1 {
    font: normal normal bold 44px/44px Kepler Std;
    padding: 128px 0 24px;
  }
}

#app.update-view .contents-header {
  margin-top: 72px;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-header {
    padding-bottom: 24px;
  }
}

#app.update-view .update-view-status {
  margin-top: 72px;
  padding: 40px 0;
  border-bottom: 1px solid #CCCCCC;
  font: normal normal 400 18px/27px Montserrat;
  color: #0F0F0F;
}

@media screen and (max-width: 780px) {
  #app.update-view .update-view-status {
    padding: 24px 0;
    font: normal normal 400 14px/20px Montserrat;
  }
}

#app.update-view .update-view-status.error {
  color: #C53B1C;
}

#app.update-view .contents-info {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-info {
    gap: 12px;
    margin-bottom: 20px;
  }
}

#app.update-view .contents-info .cate {
  font: normal normal bold 18px/18px Montserrat;
  color: #FB790C;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-info .cate {
    font: normal normal bold 14px/14px Montserrat;
    color: #FB790C;
  }
}

#app.update-view .contents-info .date {
  font: normal normal 400 16px/16px Montserrat;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-info .date {
    font: normal normal 400 14px/14px Montserrat;
  }
}

#app.update-view .contents-title {
  font: normal normal bold 60px/72px Kepler Std;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-title {
    font: normal normal bold 36px/46px Kepler Std;
  }
}

#app.update-view .contents-body {
  padding-bottom: 60px;
  border-bottom: 1px solid #CCCCCC;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-body {
    padding-bottom: 20px;
  }
}

#app.update-view .contents-body .contents-paragraph {
  margin-top: 60px;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-body .contents-paragraph {
    margin-top: 40px;
  }
}

#app.update-view .contents-body .contents-paragraph p {
  font: normal normal 400 18px/27px Montserrat;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-body .contents-paragraph p {
    font: normal normal 400 14px/20px Montserrat;
  }
}

#app.update-view .contents-body .contents-image {
  margin-top: 60px;
  width: 100%;
  aspect-ratio: 1200/400;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-body .contents-image {
    margin-top: 40px;
    aspect-ratio: 325/240;
  }
}

#app.update-view .contents-body .contents-video {
  margin-top: 60px;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  height: 0;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-body .contents-video {
    margin-top: 40px;
  }
}

#app.update-view .contents-body .contents-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#app.update-view .contents-body .api-content {
  margin-top: 60px;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-body .api-content {
    margin-top: 40px;
  }
}

#app.update-view .contents-body .api-content>*:first-child {
  margin-top: 0;
}

#app.update-view .contents-body .api-content p {
  font: normal normal 400 18px/27px Montserrat;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-body .api-content p {
    margin-top: 16px;
    font: normal normal 400 14px/20px Montserrat;
  }
}

#app.update-view .contents-body .api-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 32px;
}

#app.update-view .contents-body .api-content iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin-top: 32px;
  border: 0;
}

#app.update-view .contents-body .api-content a {
  color: #FB790C;
  word-break: break-all;
}

#app.update-view .contents-attachments {
  margin-top: 60px;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-attachments {
    margin-top: 40px;
  }
}

#app.update-view .contents-attachments .title {
  margin-bottom: 20px;
  font: normal normal bold 18px/18px Montserrat;
  color: #FB790C;
}

@media screen and (max-width: 780px) {
  #app.update-view .contents-attachments .title {
    margin-bottom: 16px;
    font: normal normal bold 14px/14px Montserrat;
  }
}

#app.update-view .contents-attachments .attachment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#app.update-view .contents-attachments .attachment-list a {
  color: #0F0F0F;
  text-decoration: underline;
  word-break: break-all;
  font: normal normal bold 14px/14px Montserrat;
}

#app.update-view .contents-footer {
  margin-top: 40px;
  text-align: center;
}

#app.update-view .contents-footer .back-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(15, 15, 15, 0.5);
  border-radius: 25px;
  padding: 12px 36px;
  background: transparent;
  font: normal normal bold 16px/23px Montserrat;
  letter-spacing: -0.32px;
  color: #0F0F0F;
  z-index: 0;
}

@media screen and (max-width: 820px) {
  #app.update-view .contents-footer .back-btn {
    width: 100%;
  }
}

#app.update-view .contents-footer .back-btn:hover img.bk {
  display: none;
}

#app.update-view .contents-footer .back-btn:hover img.wh {
  display: block;
}

#app.update-view .contents-footer .back-btn img {
  width: 16px;
}

#app.update-view .contents-footer .back-btn img.bk {
  display: block;
}

#app.update-view .contents-footer .back-btn img.wh {
  display: none;
}