@charset "UTF-8";
/* ========================================================================== */
/* ===================================== Reset ================================= */
/* ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:400&display=swap&subset=korean");
*[hidden] {
  display: none;
}


menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* input button design */
input:-ms-input-placeholder {
  color: #CDD2E2;
}

input::-webkit-input-placeholder {
  color: #CDD2E2;
}

input::-moz-placeholder {
  color: #CDD2E2;
}

textarea:-ms-input-placeholder {
  color: #CDD2E2;
  font-size: 26px;
  font-weight: 600;
}

textarea::-webkit-input-placeholder {
  color: #CDD2E2;
  font-size: 26px;
  font-weight: 600;
}

textarea::-moz-placeholder {
  color: #CDD2E2;
  font-size: 26px;
  font-weight: 600;
}

/* input_style */
input[type=text] {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid #000;
  line-height: 40px;
  font-size: 16px;
}

input[type=password] {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid #000;
  line-height: 40px;
  font-size: 16px;
}

input[type=tel] {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid #000;
  line-height: 40px;
  font-size: 16px;
}

input[type=number] {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid #000;
  line-height: 40px;
  font-size: 16px;
}

input[type=email] {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid #000;
  line-height: 40px;
  font-size: 16px;
}

textarea {
  width: 100%;
  -webkit-appearance: none;
  box-sizing: border-box;
  padding: 30px;
  background: transparent;
  border: 2px solid #FDB525;
  font-size: 26px;
  font-weight: 600;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
  background: #fff;
}

input[type=checkbox] + label {
  color: #fff;
}

/* ========================================================================== */
/* ================================ User Default ================================= */
/* ========================================================================== */

br.pc {
  display: block;
}
br.m {
  display: none;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

a {
  text-decoration: none;
  color: #000;
}

.space {
  width: 10px;
}

#skipnavigation a {
  position: absolute;
  left: -3000%;
  font-size: 0.933em;
  z-index: 1;
}

#skipnavigation a:focus {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  color: #fff;
  text-align: center;
  background-color: #262B65;
  z-index: 9999;
}

.blind {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
  line-height: 0;
  text-indent: -9999px;
}

/* 대체텍스트가 아닌 접근성을 위한 숨김텍스트를 제공할때 */
@media screen and (max-width: 767px) {
  .space {
    width: 1.4vw;
  }

  br.pc {
    display: none;
  }
  br.m {
    display: block;
  }
}
/* 404 */
.error {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 250px);
  background: #D0202F;
  padding: 0 40px;
  box-sizing: border-box;
}

.error .width_box {
  padding: 0;
}

.error .tit-error {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  word-break: keep-all;
  letter-spacing: -0.04em;
}

.error .txt-error {
  margin-bottom: 80px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 31px;
  word-break: keep-all;
}

.error .btn-back {
  display: block;
  width: 300px;
  height: 60px;
  margin: 0 auto;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 60px;
  border: 2px solid #fff;
}

@media all and (max-width: 767px) {
  .error {
    padding: 0 30px;
  }

  .error .tit-error {
    font-size: 30px;
  }

  .error .txt-error {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
  }

  .error .btn-back {
    width: 200px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
  }
}
.login-form {
  padding: 150px 0;
  max-width: 500px;
  min-height: 300px;
  margin: 0 auto;
}

.user-login-form {
  padding: 0 20px;
}

.form-item {
  padding: 20px 0 0;
}
.form-item .js-form-required {
  display: block;
  padding-bottom: 10px;
  color: #cd1d31;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 10px;
}
.form-item .description {
  padding-top: 5px;
  color: #333;
  font-size: 14px;
}

.js-form-submit.form-submit {
  display: block;
  margin-top: 20px;
  width: 100%;
  height: 50px;
  color: #fff;
  background: #D0202F;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #ddd;
}

@font-face {
  font-family: "Noto Sans KR", sans-serif;
}
@font-face {
  font-family: "BudBoldKR";
  src: local(※), url("/themes/budweiser/font/BudBoldKR.woff2") format("woff2"), url("/themes/budweiser/font/BudBoldKR.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "fontello";
  src: url("/themes/budweiser/font/arrow.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@-webkit-keyframes neonFlick {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  31% {
    opacity: 1;
  }
  54% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  56% {
    opacity: 1;
  }
  57% {
    opacity: 0;
  }
  58% {
    opacity: 0;
  }
  59% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes neonFlick {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  31% {
    opacity: 1;
  }
  54% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  56% {
    opacity: 1;
  }
  57% {
    opacity: 0;
  }
  58% {
    opacity: 0;
  }
  59% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bgFlick {
  0% {
    background-image: url("/themes/budweiser/images/main_bg_off.jpg");
  }
  30% {
    background-image: url("/themes/budweiser/images/main_bg_off.jpg");
  }
  31% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
  54% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
  55% {
    background-image: url("/themes/budweiser/images/main_bg_off.jpg");
  }
  56% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
  57% {
    background-image: url("/themes/budweiser/images/main_bg_off.jpg");
  }
  58% {
    background-image: url("/themes/budweiser/images/main_bg_off.jpg");
  }
  59% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
  60% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
  100% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
}
@keyframes bgFlick {
  0% {
    background-image: url("/themes/budweiser/images/main_bg_off.jpg");
  }
  30% {
    background-image: url("/themes/budweiser/images/main_bg_off.jpg");
  }
  31% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
  54% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
  55% {
    background-image: url("/themes/budweiser/images/main_bg_off.jpg");
  }
  56% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
  57% {
    background-image: url("/themes/budweiser/images/main_bg_off.jpg");
  }
  58% {
    background-image: url("/themes/budweiser/images/main_bg_off.jpg");
  }
  59% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
  60% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
  100% {
    background-image: url("/themes/budweiser/images/main_bg_on.jpg");
  }
}
@media screen and (max-width: 767px) {
  @-webkit-keyframes bgFlick {
    0% {
      background-image: url("/themes/budweiser/images/main_bg_off_m.jpg");
    }
    30% {
      background-image: url("/themes/budweiser/images/main_bg_off_m.jpg");
    }
    31% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
    54% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
    55% {
      background-image: url("/themes/budweiser/images/main_bg_off_m.jpg");
    }
    56% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
    57% {
      background-image: url("/themes/budweiser/images/main_bg_off_m.jpg");
    }
    58% {
      background-image: url("/themes/budweiser/images/main_bg_off_m.jpg");
    }
    59% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
    60% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
    100% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
  }
  @keyframes bgFlick {
    0% {
      background-image: url("/themes/budweiser/images/main_bg_off_m.jpg");
    }
    30% {
      background-image: url("/themes/budweiser/images/main_bg_off_m.jpg");
    }
    31% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
    54% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
    55% {
      background-image: url("/themes/budweiser/images/main_bg_off_m.jpg");
    }
    56% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
    57% {
      background-image: url("/themes/budweiser/images/main_bg_off_m.jpg");
    }
    58% {
      background-image: url("/themes/budweiser/images/main_bg_off_m.jpg");
    }
    59% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
    60% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
    100% {
      background-image: url("/themes/budweiser/images/main_bg_on_m.jpg");
    }
  }
}
body .isIE {
  margin-top: 140px;
}

@media (max-width: 1600px) {
  body .isIE {
    margin-top: 60px;
  }
}
body .icon-box {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #f9f9f9e0;
  cursor: pointer;
  transition: background-color 0.1s linear, transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
}
body .icon-box img {
  display: block;
  width: 100%;
}
body .icon-box:hover {
  background-color: #e8e8e8cf;
  transform: translateY(-10px);
}
body .wrap {
  position: relative;
  overflow: hidden;
}
body .wrap .container .content {
  padding-top: 100px;
}
body .wrap .container .content .inner-cont-wrap {
  overflow: hidden;
}
body .wrap .container .content .inner-cont-wrap .gate {
  background-color: #000;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate {
  min-height: 100vh;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 300px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj {
  height: 100%;
  /*background:{ image:url('../../assets/img/agegate/agegate_bg.jpg'); repeat: no-repeat; size:cover; position:center };*/
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj .inner-age-gate {
  height: 100%;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj .inner-age-gate .content-wrap {
  height: 100%;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj .inner-age-gate .content-wrap .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -105%);
  text-align: center;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj .inner-age-gate .content-wrap .logo figure {
  margin-bottom: 63px;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj .inner-age-gate .content-wrap .logo figure .logo-box {
  width: 330px;
  margin: 0 auto 21px;
  font-size: 0;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj .inner-age-gate .content-wrap .logo figure figcaption {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 15px;
  color: #fff;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj .inner-age-gate .content-wrap .logo .btn-box {
  font-size: 0;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj .inner-age-gate .content-wrap .logo .btn-box button {
  border-radius: 5px;
  display: inline-block;
  width: 137px;
  height: 44px;
  cursor: pointer;
  background-color: #fff;
  font-family: "BudBoldKR", sans-serif;
  font-size: 26px;
  color: #CB1024;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj .inner-age-gate .content-wrap .logo .btn-box button:first-child {
  margin-right: 10px;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj .inner-age-gate .content-wrap .notice {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translate(-50%, 0);
  text-align: center;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 14px;
  line-height: 2.1176470588;
  color: #fff;
}
body .wrap .container .content .inner-cont-wrap .gate .age-gate .age-gate-obj:after {
  visibility: hidden;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  width: inherit;
  height: inherit;
}
body.onShow {
  visibility: visible;
}

@media (max-width: 1600px) {
  body .wrap .container .content {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  br.pc {
    display: none;
  }
}
body .project {
  background: #fff;
  position: relative;
}
body .project .content .tit-box {
  position: relative;
  min-width: 1200px;
  text-align: center;
  margin-bottom: 42px;
  padding-top: 84px;
  z-index: 10;
}
body .project .content .tit-box .tit {
  display: inline-block;
  font-size: 60px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
  line-height: 70px;
  color: #D0202F;
}
body .project .content .tit-box .tit img {
  width: 100%;
}
body .project .content .tit-box .des {
  display: block;
  font-size: 18px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: normal;
  color: #000;
  margin-top: 17px;
}
body .project .content .inner-cont-wrap ol {
  width: 100%;
  margin: 0 auto;
}
body .project .content .inner-cont-wrap ol li {
  position: relative;
  width: 100%;
  height: 600px;
  text-align: center;
  cursor: pointer;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
}
body .project .content .inner-cont-wrap ol li a {
  display: block;
  width: inherit;
  height: inherit;
}
body .project .content .inner-cont-wrap ol li img {
  width: 100%;
}
body .project .content .inner-cont-wrap ol li div {
  position: absolute;
  top: 50%;
  left: 150px;
  transform: translateY(-50%);
}
body .project .content .inner-cont-wrap ol li div:after {
  content: url("/themes/budweiser/images/arrow.png");
  position: absolute;
  right: -35px;
  bottom: 6px;
  display: block;
}
body .project .content .inner-cont-wrap ol li div .tit {
  display: block;
  font-size: 72px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  text-align: left;
}
body .project .content .inner-cont-wrap ol li div .des {
  display: block;
  font-size: 18px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: normal;
  color: #fff;
}
body .project .content .inner-cont-wrap ol li.onShow {
  opacity: 1;
  transition: opacity 0.3s linear;
}
body .project-detailview {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  min-height: 100vh;
  overflow:hidden;
}
body .project-detailview > h3 {
  margin-top: 224px;
}
body .project-detailview > h3 span {
  font-size: 34px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
}
body .project-detailview > .des {
  display: block;
  font-size: 15px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: normal;
  line-height: 30px;
  margin-top: 10px;
  margin-bottom: 38px;
}
body .project-detailview > figure {
  position: relative;
  width: 3000px;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  height: 1067px;
}
body .project-detailview > figure img {
  width: 100%;
}
body .project-detailview > .txt-box p {
  display: block;
  font-size: 20px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: normal;
  margin: 60px auto 24px;
  line-height: 1.5;
}
body .project-detailview > .txt-box p strong {
  font-size: 20px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
  line-height: 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3636363636;
}
body .project-detailview > .txt-box .hash {
  display: block;
  font-size: 36px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
  margin-bottom: 53px;
  color: #CB1024;
}
body .project-detailview .application {
  position: relative;
  width: 960px;
  margin: -326px auto 70px;
  z-index: 1;
}
body .project-detailview .application.evt_end {
  color: #fff;
}
body .project-detailview .application.evt_end:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  z-index: 3;
  border-radius: 10px;
}
body .project-detailview .application.evt_end > span {
  position: absolute;
  top: 50%;
  right: initial;
  z-index: 5;
  color: #fff;
  transform: translate(-50%, -50%);
}
body .project-detailview .application > div {
  width: 960px;
  min-width: 960px;
  border: 1px solid #CB1024;
  border-radius: 10px;
  padding: 34px 0;
  background: #fff;
}
body .project-detailview .application > div > img {
  margin: 0 auto 9px;
  width: 25px;
}
body .project-detailview .application > div.step1 form div div {
  width: 220px;
}
body .project-detailview .application > div.step1 form div div:nth-child(n+2) {
  width: 140px;
}
body .project-detailview .application > div.step2 .button {
  margin-top: 20px;
}
body .project-detailview .application > div.step3 > img {
  width: 297px;
}
body .project-detailview .application > div.step3 h4 {
  font-size: 36px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
}
body .project-detailview .application > div.step3 h4 span {
  font-size: 36px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
  color: #CB1024;
}
body .project-detailview .application > div.step3 span {
  font-size: 15px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: normal;
  line-height: 30px;
  color: #CB1024;
}
body .project-detailview .application > div h4 {
  font-size: 20px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
  line-height: 40px;
  margin-bottom: 44px;
  line-height: 1.25;
}
body .project-detailview .application > div form {
  width: 590px;
  margin: 0 auto;
}
body .project-detailview .application > div form > div {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}
body .project-detailview .application > div form > div:nth-child(2n) {
  margin-right: 0;
}
body .project-detailview .application > div form > div div {
  float: left;
}
body .project-detailview .application > div form > div div:after {
  content: "";
  display: block;
  clear: both;
}
body .project-detailview .application > div form > div div input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #eee;
  background: #eee;
  border-radius: 10px;
  height: 70px;
  line-height: 70px;
  text-align: left;
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: bold;
  text-indent: 28px;
}
body .project-detailview .application > div form > div.coupon div {
  width: 140px;
}
body .project-detailview .application > div form > div.coupon div:nth-child(n+6) {
  width: 222px;
}
body .project-detailview .application > div form > div.name div {
  width: 590px;
}
body .project-detailview .application > div form > div.phone div {
  width: 140px;
}
body .project-detailview .application > div form > div.phone div:nth-child(n+4) {
  width: 180px;
}
body .project-detailview .application > div form > div span {
  font-size: 20px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: bold;
  color: #666;
  margin: 0 18px;
  height: 70px;
  float: left;
  line-height: 70px;
}
body .project-detailview .application > div form > div h5 {
  position: absolute;
  left: -100px;
  top: 22px;
}
body .project-detailview .application > div form ul li {
  text-align: left;
}
body .project-detailview .application > div form ul li span {
  position: relative;
  font-family: "noto-sans-cjk-kr", sans-serif;
  font-size: 15px;
  padding-left: 26px;
  color: #000;
}
body .project-detailview .application > div form ul li span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  border: 2px solid #eee;
  box-sizing: border-box;
}
body .project-detailview .application > div form ul li span a {
  color: #c80f2e;
  font-weight: 600;
}
body .project-detailview .application > div form ul li span i {
  color: #c80f2e;
  font-weight: 600;
}
body .project-detailview .application > div form ul li input[type=checkbox] {
  display: none;
}
body .project-detailview .application > div form ul li input[type=checkbox]:checked ~ span:before {
  background: #c80f2e;
  border: 0;
}
body .project-detailview .application > div form > .button {
  display: inline-block;
  text-align: center;
  width: 590px;
  height: 70px;
  background: #CB1024;
  font-size: 36px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
  line-height: 70px;
  text-align: center;
  border: 0;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}
body .project-detailview .application > div form > .button:hover {
  background: #c80f2e;
}
body .project-detailview .txt-box {
  position: relative;
}
body .project-detailview .playlist {
  width: 960px;
  margin: 0 auto 40px;
}
body .project-detailview .playlist figure .txt-box {
  position: relative;
}
body .project-detailview .playlist figure .txt-box iframe {
  width: 100%;
  height: 540px;
}
body .project-detailview .playlist figure .txt-box .play-list {
  height: 100%;
  overflow: hidden;
}
body .project-detailview .playlist figure .txt-box .play-list ul {
  background: #f5f5f5;
  padding: 10px 0;
}
body .project-detailview .playlist figure .txt-box .play-list ul li {
  position: relative;
  height: 90px;
  margin: 0 10px;
}
body .project-detailview .playlist figure .txt-box .play-list ul li:first-child {
  margin-top: 0;
}
body .project-detailview .playlist figure .txt-box .play-list ul li:nth-child(n+2) {
  margin-top: 30px;
}
body .project-detailview .playlist figure .txt-box .play-list ul li img {
  position: absolute;
  width: 120px;
  margin: 0;
  left:0;
}
body .project-detailview .playlist figure .txt-box .play-list ul li div {
  position: absolute;
  left: 160px;
  width: 70%;
  height: 90px;
}
body .project-detailview .playlist figure .txt-box .play-list ul li div .tit {
  position: absolute;
  top: 0;
  font-size: 20px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
  line-height: 40px;
  margin-top: 0;
  line-height: 1;
}
body .project-detailview .playlist figure .txt-box .play-list ul li div .des {
  position: absolute;
  bottom: 0;
  font-size: 15px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: normal;
  line-height: 30px;
}
body .project-detailview.old .txt-box {
  width: 960px;
  margin: 0 auto;
}
body .project-detailview.old .txt-box iframe {
  width: 100%;
  height: 540px;
}
body .project-detailview.old .txt-box p {
  margin: 24px auto 24px;
}
body .project-detailview.old .txt-box img {
  width: 700px;
  margin: 0 auto 4px;
  height: auto;
}
body .project-detailview.old .txt-box .yt-cover {
  width: 940px;
  margin: 0 auto;
}
body .project-detailview.old .txt-box .yt-cover.vertical {
  width: 700px;
  height: 875px;
}
body .project-detailview.old .txt-box .yt-cover.vertical iframe {
  width: 700px;
  height: 875px;
}
body .project-detailview.old > h3 {
  margin-top: 160px;
  margin-top: 80px;
}
body .project-detailview.old > h3 span {
  font-size: 48px;
  line-height: 1.2;
}
body .project-detailview.old .des {
  font-size: 17px;
}
body .project-detailview.old video {
  width: 940px;
  margin: 0 auto;
}
body .project-detailview.old video.vertical {
  width: 700px;
}
body .project-detailview .box_wrp {
  margin: 60px 0;
  padding: 50px 0;
  border: 1px solid #A1A2A5;
  display: flex;
  flex-wrap: wrap;
}
body .project-detailview .box_wrp dl {
  width: 100%;
}
body .project-detailview .box_wrp dl dt {
  color: #333333;
  font-size: 25px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  padding: 15px 50px;
}
body .project-detailview .box_wrp dl dd {
  color: #989898;
  font-size: 20px;
  line-height: 36px;
}
body .project-detailview .box_wrp dl dd ul {
  padding: 15px 50px;
}
body .project-detailview .box_wrp dl dd ul li {
  font-size: 20px;
  font-family: "Noto Sans KR", sans-serif;
  font-weight: normal;
  text-align: left;
  color: #333;
}
body .project-detailview .box_wrp dl.type_01 {
  width: 50%;
}
body .project-detailview .box_wrp dl.type_01 dt {
  text-align: left;
}
body .project-detailview .btn_red {
  display: inline-block;
  text-align: center;
  width: 300px;
  height: 70px;
  background: #CB1024;
  font-size: 25px;
  font-family: "BudBoldKR", sans-serif;
  font-weight: normal;
  line-height: 70px;
  text-align: center;
  border: 0;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}
body .project-detailview .btn_red:hover {
  background: #c80f2e;
}
body .share {
  position: relative;
  width: 960px;
  height: 88px;
  margin: 0 auto 162px;
  font-size: 0;
  cursor: pointer;
}
body .share .inner-share {
  position: relative;
  width: 100%;
  height: inherit;
  overflow: hidden;
  border-radius: 10px;
}
body .share .share-tooltip {
  position: absolute;
  left: 630px;
  top: -80px;
  display: block;
  width: 125px;
  height: 69px;
  background-image: url("/themes/budweiser/images/tooltip_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  visibility: hidden;
  color: #000;
  opacity: 0;
  transition: opacity 0.1s linear;
  transform-origin: center bottom;
  -webkit-animation: yo-yo 0.3s infinite alternate;
          animation: yo-yo 0.3s infinite alternate;
}
body .share .share-tooltip.onClicked {
  opacity: 1;
  visibility: visible;
}
body .share .share-tooltip em {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding-top: 13px;
}
body .share .share-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 100%;
  height: 88px;
  text-align: center;
  cursor: pointer;
  vertical-align: top;
  background-color: #000;
}
body .share .share-btn span {
  display: block;
  width: inherit;
  height: inherit;
  background: #000;
  line-height: 88px;
  color: #fff;
  transform: translateY(0) scale(1);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.1s linear;
}
body .share .share-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: inherit;
  height: inherit;
  background-color: rgba(0, 0, 0, 0);
  transform: translateY(0);
  transition: background 0.3s linear, transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
body .share .share-btn.onHide span {
  transform: translateY(-50%) scale(0.8);
}
body .share .share-btn.onHide:after {
  background-color: black;
  transform: translateY(-50%);
}
body .share .share-btn:hover span {
  background: #c80f2e;
}
body .share .share-btn-list {
  height: inherit;
  font-size: 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
body .share .share-btn-list a {
  display: inline-block;
  width: 207px;
  height: 88px;
  background: #000;
  text-align: center;
  transition: background 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.2s 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.5s linear;
  vertical-align: top;
}
body .share .share-btn-list a img {
  display: inline-block;
  margin-top: 22px;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s 0.08s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.3s 0.08s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center top;
}
body .share .share-btn-list a:nth-child(1) img {
  width: 45px !important;
  height: auto !important;
}
body .share .share-btn-list a:nth-child(2) img {
  width: 45px !important;
  height: auto !important;
  margin-top: 24px;
}
body .share .share-btn-list a:nth-child(3) img {
  width: 45px !important;
  height: auto !important;
  margin-top: 25px;
}
body .share .share-btn-list a:nth-child(4) img {
  width: 38px !important;
  height: auto !important;
}
body .share .share-btn-list a:nth-child(5) img {
  width: 35px !important;
  height: auto !important;
}
body .share .share-btn-list a:hover {
  background: #c80f2e;
}
body .share .share-btn-list a:last-child {
  width: 132px;
}
body .share .share-btn-list a:last-child img {
  margin-top: 23px;
}
body .share .share-btn-list.onShow {
  transform: translateY(0);
}
body .share .share-btn-list.onShow a img {
  transform: scale(1);
  opacity: 1;
}
body .share .logo-box {
  /*display:none;*/
}

@media screen and (max-width: 767px) {
  body .project {
    position: relative;
  }
  body .project .content .tit-box {
    position: relative;
    min-width: auto;
    text-align: center;
    margin-bottom: 6.258148631vw;
    padding-top: 0;
    z-index: 10;
  }
  body .project .content .tit-box .tit {
    display: inline-block;
    font-size: 7.8226857888vw;
    font-family: "BudBoldKR", sans-serif;
    font-weight: normal;
    line-height: 1;
    margin-top: 7.8226857888vw;
  }
  body .project .content .tit-box .tit img {
    width: 100%;
  }
  body .project .content .tit-box .des {
    display: block;
    font-size: 2.8683181226vw;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
    line-height: normal;
    color: #000;
    margin-top: 1.9556714472vw;
  }
  body .project .content .inner-cont-wrap ol {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: auto;
  }
  body .project .content .inner-cont-wrap ol li {
    position: relative;
    width: 100%;
    height: 58.6701434159vw;
    text-align: center;
    cursor: pointer;
  }
  body .project .content .inner-cont-wrap ol li img {
    width: 100%;
  }
  body .project .content .inner-cont-wrap ol li div {
    position: absolute;
    top: 50%;
    left: 9.3872229465vw;
    transform: translateY(-50%);
  }
  body .project .content .inner-cont-wrap ol li div:after {
    content: url("/themes/budweiser/images/arrow.png");
    position: absolute;
    right: -4.2734vw;
    bottom: 1.38227vw;
    display: block;
    transform: scale(0.5);
  }
  body .project .content .inner-cont-wrap ol li div .tit {
    display: block;
    font-size: 6.258148631vw;
    font-family: "BudBoldKR", sans-serif;
    font-weight: normal;
    line-height: 1.4;
    color: #fff;
    text-align: left;
  }
  body .project .content .inner-cont-wrap ol li div .des {
    display: block;
    font-size: 2.8683181226vw;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
    line-height: normal;
    color: #fff;
  }
  body .project-detailview {
    width: 89.5697522816vw;
    margin: 0 auto;
    height: auto;
  }
  body .project-detailview > figure {
    position: relative;
    width: 100vw;
    height: auto;
    left: -5.2151238592vw;
    top: 13.037809648vw;
    transform: translateX(0);
  }
  body .project-detailview > figure img {
    width: 100%;
  }
  body .project-detailview > .txt-box p {
    display: block;
    font-size: 14px;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
    line-height: normal;
    margin: 6.518904824vw auto 3.3898305085vw;
    line-height: 1.5;
  }
  body .project-detailview > .txt-box p strong {
    font-size: 16px;
    font-family: "BudBoldKR", sans-serif;
    font-weight: normal;
  }
  body .project-detailview > .txt-box .hash {
    display: block;
    font-size: 6.258148631vw;
    font-family: "BudBoldKR", sans-serif;
    font-weight: normal;
    margin-bottom: 6.1277705346vw;
    color: #CB1024;
  }
  body .project-detailview .application {
    width: 89.5697522816vw;
    margin: -3.1290743155vw auto 0;
  }
  body .project-detailview .application > div {
    width: 89.5697522816vw;
    min-width: auto;
    border: 0.1303780965vw solid #CB1024;
    border-radius: 1.3037809648vw;
    padding: 5.2151238592vw 0;
    background: #fff;
  }
  body .project-detailview .application > div > img {
    margin: 0 auto 1.6949152542vw;
    width: 4.5632333768vw;
  }
  body .project-detailview .application > div.step1 form div div {
    width: 26.075619296vw;
  }
  body .project-detailview .application > div.step1 form div div:nth-child(n+2) {
    width: 19.556714472vw;
  }
  body .project-detailview .application > div.step2 .button {
    margin-top: 1.5645371578vw;
  }
  body .project-detailview .application > div.step2 h5 {
    display: none;
  }
  body .project-detailview .application > div.step3 > img {
    width: 37.5488917862vw;
  }
  body .project-detailview .application > div.step3 h4 {
    font-size: 4.6936114733vw;
    font-family: "BudBoldKR", sans-serif;
    font-weight: normal;
  }
  body .project-detailview .application > div.step3 h4 span {
    font-size: 4.6936114733vw;
    font-family: "BudBoldKR", sans-serif;
    font-weight: normal;
    color: #CB1024;
  }
  body .project-detailview .application > div.step3 span {
    font-size: 2.8683181226vw;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
    line-height: normal;
    color: #CB1024;
  }
  body .project-detailview .application > div h4 {
    font-size: 3.6505867014vw;
    font-family: "BudBoldKR", sans-serif;
    font-weight: normal;
    margin-bottom: 4.4328552803vw;
    line-height: 1.25;
  }
  body .project-detailview .application > div form {
    width: 76.9230769231vw;
    margin: 0 auto;
  }
  body .project-detailview .application > div form > div {
    display: inline-block;
    position: relative;
    width: 100%;
    margin-bottom: 1.5645371578vw;
  }
  body .project-detailview .application > div form > div:nth-child(2n) {
    margin-right: 0;
  }
  body .project-detailview .application > div form > div div {
    display: inline-block;
  }
  body .project-detailview .application > div form > div div input {
    width: 100%;
    border: 0;
    border-bottom: 0.1303780965vw solid #eee;
    background: #eee;
    border-radius: 1.3037809648vw;
    height: 9.1264667536vw;
    line-height: 9.1264667536vw;
    padding: 0;
    margin: 0;
    font-size: 2.8683181226vw;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
    line-height: normal;
    text-indent: 3.6505867014vw;
  }
  body .project-detailview .application > div form > div.coupon div {
    width: 18.2529335072vw;
  }
  body .project-detailview .application > div form > div.coupon div:nth-child(n+6) {
    width: 28.9439374185vw;
  }
  body .project-detailview .application > div form > div.name div {
    width: 76.9230769231vw;
  }
  body .project-detailview .application > div form > div.phone div {
    width: 18.2529335072vw;
  }
  body .project-detailview .application > div form > div.phone div:nth-child(n+4) {
    width: 23.4680573664vw;
  }
  body .project-detailview .application > div form > div span {
    font-size: 2.8683181226vw;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
    line-height: normal;
    color: #666;
    margin: 0 2.3468057366vw;
    height: 9.1264667536vw;
    line-height: 9.1264667536vw;
  }
  body .project-detailview .application > div form ul li {
    text-align: left;
  }
  body .project-detailview .application > div form ul li span {
    position: relative;
    font-size: 2.8683181226vw;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
    line-height: normal;
    padding-left: 5.7366362451vw;
    color: #000;
  }
  body .project-detailview .application > div form ul li span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.260756193vw;
    width: 3.6505867014vw;
    height: 3.6505867014vw;
    border: 0.260756193vw solid #eee;
    box-sizing: border-box;
  }
  body .project-detailview .application > div form ul li span a {
    color: #c80f2e;
    font-weight: 600;
  }
  body .project-detailview .application > div form ul li span i {
    color: #c80f2e;
    font-weight: 600;
  }
  body .project-detailview .application > div form ul li input[type=checkbox] {
    display: none;
  }
  body .project-detailview .application > div form ul li input[type=checkbox]:checked ~ span:before {
    background: #c80f2e;
    border: 0;
  }
  body .project-detailview .application > div form > .button {
    display: inline-block;
    text-align: center;
    width: 76.9230769231vw;
    height: 11.4732724902vw;
    background: #CB1024;
    font-size: 4.1720990874vw;
    font-family: "BudBoldKR", sans-serif;
    font-weight: normal;
    line-height: 11.4732724902vw;
    text-align: center;
    border: 0;
    color: #fff;
    border-radius: 1.3037809648vw;
    cursor: pointer;
  }
  body .project-detailview .application > div form > .button:hover {
    background: #c80f2e;
  }
  body .project-detailview .playlist {
    width: 89.5697522816vw;
    margin: 0 auto 5.2151238592vw;
  }
  body .project-detailview .playlist figure .txt-box iframe {
    width: 100%;
    height: 50.4563233377vw;
  }
  body .project-detailview .playlist figure .txt-box .play-list {
    height: 100%;
    overflow: hidden;
  }
  body .project-detailview .playlist figure .txt-box .play-list ul {
    background: #f5f5f5;
    padding: 3.3898305085vw 0;
  }
  body .project-detailview .playlist figure .txt-box .play-list ul li {
    position: relative;
    height: 12.5162972621vw;
    margin: 0 2.7379400261vw;
  }
  body .project-detailview .playlist figure .txt-box .play-list ul li:first-child {
    margin-top: 0;
  }
  body .project-detailview .playlist figure .txt-box .play-list ul li:nth-child(n+2) {
    margin-top: 2.0860495437vw;
  }
  body .project-detailview .playlist figure .txt-box .play-list ul li img {
    position: absolute;
    width: 16.6883963494vw;
    margin: 0;
  }
  body .project-detailview .playlist figure .txt-box .play-list ul li div {
    position: absolute;
    left: 22.9465449804vw;
    width: 70%;
    height: 12.5162972621vw;
  }
  body .project-detailview .playlist figure .txt-box .play-list ul li div .tit {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3.3898305085vw;
    font-family: "BudBoldKR", sans-serif;
    font-weight: normal;
    margin-top: 0;
    line-height: 1;
    width: 100%;
    text-align: left;
    font-size: 3vw;
  }
  body .project-detailview .playlist figure .txt-box .play-list ul li div .des {
    position: absolute;
    left: 0;
    top: 8.4745762712vw;
    font-size: 2.8683181226vw;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
    line-height: normal;
  }
  body .project-detailview .share {
    width: 100%;
    height: 10.4vw;
    margin: 0 auto 5.2151238592vw;
    font-size: 0;
    cursor: pointer;
  }
  body .project-detailview .share .inner-share {
    position: relative;
    width: 100%;
    height: 10.4vw;
    overflow: hidden;
  }
  body .project-detailview .share .share-tooltip {
    position: absolute;
    left: 57vw;
    top: -12.4vw;
    display: block;
    width: 19.8vw;
    height: 11.1vw;
    background-image: url("/themes/budweiser/images/tooltip_bg.svg");
    background-repeat: no-repeat;
    color: #000;
    opacity: 0;
    transition: opacity 0.1s linear;
    transform-origin: center bottom;
    -webkit-animation: yo-yo 0.3s infinite alternate;
            animation: yo-yo 0.3s infinite alternate;
  }
  body .project-detailview .share .share-tooltip.onClicked {
    opacity: 1;
  }
  body .project-detailview .share .share-tooltip em {
    display: block;
    text-align: center;
    padding-top: 1vw;
  }
  body .project-detailview .share .share-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 100%;
    height: 10.4vw;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
  }
  body .project-detailview .share .share-btn span {
    display: block;
    width: inherit;
    height: inherit;
    background: #000;
    line-height: 10.4vw;
    color: #fff;
    transform: translateY(0) scale(1);
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.1s linear;
  }
  body .project-detailview .share .share-btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: inherit;
    height: inherit;
    background-color: rgba(0, 0, 0, 0);
    transform: translateY(0);
    transition: background 0.3s linear, transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  body .project-detailview .share .share-btn.onHide span {
    transform: translateY(-50%) scale(0.8);
  }
  body .project-detailview .share .share-btn.onHide:after {
    background-color: black;
    transform: translateY(-50%);
  }
  body .project-detailview .share .share-btn:hover span {
    background: #c80f2e;
  }
  body .project-detailview .share .share-btn-list {
    height: inherit;
    font-size: 0;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  body .project-detailview .share .share-btn-list a {
    display: inline-block;
    width: 21.322%;
    height: 10.4vw;
    background: #000;
    text-align: center;
    transition: background 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.2s 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.5s linear;
    vertical-align: top;
  }
  body .project-detailview .share .share-btn-list a img {
    display: inline-block;
    margin-top: 2.2vw;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.3s 0.08s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.3s 0.08s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center top;
  }
  body .project-detailview .share .share-btn-list a:nth-child(1) img {
    width: 6vw !important;
  }
  body .project-detailview .share .share-btn-list a:nth-child(2) img {
    width: 6vw !important;
  }
  body .project-detailview .share .share-btn-list a:nth-child(3) img {
    width: 6vw !important;
    margin-top: 2.9vw;
  }
  body .project-detailview .share .share-btn-list a:nth-child(4) img {
    width: 5vw !important;
  }
  body .project-detailview .share .share-btn-list a:nth-child(5) img {
    width: 3.2vw !important;
  }
  body .project-detailview .share .share-btn-list a:hover {
    background: #c80f2e;
  }
  body .project-detailview .share .share-btn-list a:last-child {
    width: 14.712%;
  }
  body .project-detailview .share .share-btn-list a:last-child img {
    margin-top: 3.2vw;
  }
  body .project-detailview .share .share-btn-list.onShow {
    transform: translateY(0);
  }
  body .project-detailview .share .share-btn-list.onShow a img {
    transform: scale(1);
    opacity: 1;
  }
  body .project-detailview.old .txt-box {
    width: 100%;
    margin: 0 auto;
  }
  body .project-detailview.old .txt-box iframe {
    width: 100%;
    height: 50.3259452412vw;
  }
  body .project-detailview.old .txt-box p {
    margin: 3.6505867014vw auto 3.6505867014vw;
    line-height: 1.68;
    font-size: 14px;
  }
  body .project-detailview.old .txt-box img {
    width: 89.5697522816vw;
    margin: 0 auto 0.5215123859vw;
  }
  body .project-detailview.old .txt-box .yt-cover {
    width: 89.5697522816vw;
    margin: 0 auto;
  }
  body .project-detailview.old .txt-box .yt-cover.vertical {
    width: 89.5697522816vw;
    height: 114.0808344198vw;
  }
  body .project-detailview.old .txt-box .yt-cover.vertical iframe {
    width: 89.5697522816vw;
    height: 114.0808344198vw;
  }
  body .project-detailview.old > h3 {
    margin-top: 30px;
  }
  body .project-detailview.old > h3 span {
    font-size: 26px;
  }
  body .project-detailview.old .des {
    font-size: 16px;
    line-height: 15px;
  }
  body .project-detailview.old video {
    width: 89.5697522816vw;
    margin: 0 auto;
  }
  body .project-detailview.old video.vertical {
    width: 89.5697522816vw;
  }
  body .project-detailview .box_wrp {
    margin: 30px 0;
    padding: 20px;
  }
  body .project-detailview .box_wrp dl dt {
    padding: 0;
    font-size: 16px;
    font-family: "BudBoldKR", sans-serif;
    font-weight: normal;
    line-height: 1.68;
    text-align: left;
  }
  body .project-detailview .box_wrp dl dd {
    font-size: 3.259452412vw;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
    line-height: normal;
    line-height: 1.68;
    text-align: left;
  }
  body .project-detailview .box_wrp dl dd ul {
    padding-left: 0;
  }
  body .project-detailview .box_wrp dl dd ul li {
    text-align: left;
    font-size: 14px;
    font-family: "Noto Sans KR", sans-serif;
    font-weight: normal;
    line-height: normal;
    line-height: 1.68;
  }
  body .project-detailview .box_wrp dl + dl {
    overflow: hidden;
  }
  body .project-detailview .box_wrp dl + dl dt,
body .project-detailview .box_wrp dl + dl dd {
    text-align: left;
  }
  body .project-detailview .box_wrp dl.type_01 {
    width: 100%;
  }
  body .project-detailview .btn_red {
    width: 200px;
    height: 60px;
    font-size: 3.259452412vw;
    font-family: "BudBoldKR", sans-serif;
    font-weight: normal;
    line-height: 35px;
    border-radius: 5px;
    font-size: 16px;
  }
}

button,input,optgroup,select,textarea {
	font-size: 14px;
}
