@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;700&display=swap");
:root {
  --dark-gray: #2C3944;
  --gold-light: #A5915C;
  --gold-dark: #927B41;
  --ash-blue: #D2DCE4;
  --light-brown: #DED0AB;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 992px) {
  .container {
    max-width: 860px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 414px;
  }
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

html {
  font-family: "Noto Sans TC", sans-serif;
  -webkit-font-smoothing: antialiased;
}
html * {
  line-height: 1.5;
}
html p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

span {
  font-family: inherit;
}

.section--title .title {
  font-size: 40px;
  font-family: "Noto Serif TC", serif;
  margin-bottom: 0.5em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .section--title .title {
    font-size: 30px;
  }
}
.section--title .caption {
  font-size: 21px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .section--title .caption {
    font-size: 15px;
    padding: 0 30px;
  }
}
.section--title .caption .br {
  display: block;
}
@media (max-width: 767px) {
  .section--title .caption .br {
    display: inline;
  }
}

.button--start {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  color: white;
  font-size: 24px;
  background: #A5915C;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: block;
  width: 264px;
  padding: 9px 0 12px 0;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .button--start {
    font-size: 19px;
    padding: 15px 0 18px 0;
    width: 212px;
  }
}
.button--start:hover {
  background-color: var(--dark-gray);
  color: white;
}

.button--quiz {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  width: 100%;
  padding: 12px 0 16px 0;
  font-size: 21px;
  color: #909090;
  background-color: var(--light-brown);
  border-radius: 15px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .button--quiz {
    font-size: 16px;
    padding: 15px 0 19px 0;
  }
}
.button--quiz + .button--quiz {
  margin-top: 12px;
}
.button--quiz:hover {
  background-color: var(--dark-gray);
  color: white;
}

.button--cta {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  width: 100%;
  padding: 12px 0 16px 0;
  font-size: 21px;
  color: #fff;
  background-color: var(--dark-gray);
  border-radius: 22px;
  cursor: pointer;
  text-decoration: none;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .button--cta {
    padding: 16px 0 20px 0;
    font-size: 16px;
  }
}
.button--cta .icon--fb {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
@media (max-width: 767px) {
  .button--cta .icon--fb {
    width: 16px;
    height: 16px;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}
.button--cta .icon--fb svg {
  width: 100%;
  height: 100%;
}
.button--cta + .button--cta {
  margin-left: 64px;
}
@media (max-width: 767px) {
  .button--cta + .button--cta {
    margin-left: 14px;
  }
}
.button--cta:hover {
  background-color: var(--light-brown);
  color: var(--dark-gray);
}
.button--cta:hover .icon--fb svg path {
  fill: var(--dark-gray);
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 50px;
}
@media (max-width: 767px) {
  .button-wrap {
    padding: 0;
  }
}

.icon--fb {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 30px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 23px;
}
@media (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 13px;
  }
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #fff;
  opacity: 0.33;
}
@media (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
}

.swiper-pagination-bullet-active {
  background: var(--light-brown);
  opacity: 1;
}

.read-more {
  display: block;
  text-indent: -9999px;
  color: transparent;
  line-height: 0;
  font-size: 0;
  width: 150px;
  height: 50px;
  background-image: url(../images/read_more.png);
  background-size: contain;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.read-more:hover {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media (max-width: 767px) {
  .read-more {
    width: 136px;
    height: 44px;
    background-image: url(../images/m/read_more.png);
  }
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #a5915c;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

.section--kv {
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media (max-width: 767px) {
  .section--kv {
    -webkit-filter: none;
            filter: none;
  }
}
.section--kv .swiper-slide .title--kv, .section--kv .swiper-slide .subtitle--kv {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  width: 100%;
}
.section--kv .swiper-slide .cover--kv {
  max-width: none;
  width: 100%;
}
.section--kv .swiper-wrapper {
  height: auto;
}

.swiper-slide-active .title--kv {
  -webkit-animation-name: titleFade;
          animation-name: titleFade;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.swiper-slide-active .subtitle--kv {
  -webkit-animation-name: titleFade;
          animation-name: titleFade;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes titleFade {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes titleFade {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes subtitleFade {
  0% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes subtitleFade {
  0% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section--exam {
  padding: 76px 0 90px 0;
  position: relative;
}
@media (max-width: 992px) {
  .section--exam {
    padding: 76px 24px 90px;
  }
}
@media (max-width: 767px) {
  .section--exam {
    padding: 60px 32px 80px;
  }
}
.section--exam:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg_exam.png);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #A5915C;
}
.section--exam .container {
  max-width: 804px;
}
.section--exam .section--title {
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section--exam .section--title {
    margin-bottom: 0;
  }
}
.section--exam .section--title .caption {
  color: var(--dark-gray);
}
.section--exam .panel--start {
  background-image: url(../images/bg_exam_start.jpg);
  background-size: cover;
  background-position: center top;
  padding: 98px 0 50px 0;
  border-radius: 50px;
  margin: 0 auto;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .section--exam .panel--start {
    margin-top: 30px;
    padding: 68px 25px;
    background-image: url(../images/m/bg_exam_start.jpg);
  }
}
.section--exam .panel--start p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .section--exam .panel--start p {
    font-size: 16px;
  }
}
.section--exam .step--quiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-align: end;
      align-items: flex-end;
  font-family: "Noto Serif TC", serif;
  -webkit-box-align: end;
  gap: 1.25em;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .section--exam .step--quiz {
    gap: 1em;
  }
}
.section--exam .step--quiz span {
  display: block;
  font-size: 29px;
  color: #C9B47E;
  font-weight: 700;
}
@media (max-width: 767px) {
  .section--exam .step--quiz span {
    font-size: 19px;
  }
}
.section--exam .step--quiz span.active {
  color: #fff;
  font-size: 48px;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
@media (max-width: 767px) {
  .section--exam .step--quiz span.active {
    font-size: 30px;
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
}
.section--exam .card--quiz {
  background-color: #fff;
  padding: 40px 110px;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .section--exam .card--quiz {
    padding: 32px;
  }
}
.section--exam .card--quiz .caption {
  color: var(--dark-gray);
  font-size: 23px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .section--exam .card--quiz .caption {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
.section--exam .card--review {
  background-color: #fff;
  padding: 50px 129px 64px;
  border-radius: 50px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .section--exam .card--review {
    padding: 27px 24px 36px;
    margin-bottom: 25px;
  }
}
.section--exam .card--review .caption {
  font-family: "Noto Serif TC", serif;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 38px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .section--exam .card--review .caption {
    font-size: 28px;
  }
}
.section--exam .card--review .caption .dash {
  display: inline;
}
@media (max-width: 767px) {
  .section--exam .card--review .caption .dash {
    display: none;
  }
}
.section--exam .card--review .caption small {
  font-family: inherit;
  font-weight: 600;
  font-size: 28px;
}
@media (max-width: 767px) {
  .section--exam .card--review .caption small {
    font-size: 21px;
    display: block;
  }
}
.section--exam .card--review figure {
  margin-bottom: 32px;
}
.section--exam .card--review p {
  font-size: 19px;
  color: var(--dark-gray);
}
.section--exam .card--review p .br {
  display: block;
}
@media (max-width: 767px) {
  .section--exam .card--review p .br {
    display: inline;
  }
}
@media (max-width: 767px) {
  .section--exam .card--review p {
    font-size: 14px;
    padding: 0 8px;
  }
}

.section--article {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 992px) {
  .section--article {
    padding: 120px 24px;
  }
}
@media (max-width: 767px) {
  .section--article {
    padding: 60px 40px 80px;
  }
}
.section--article .container {
  max-width: 760px;
}
.section--article .section--title {
  color: var(--gold-dark);
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .section--article .section--title {
    margin-bottom: 40px;
  }
}

.article--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .article--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.article--wrap + .article--wrap {
  margin-top: 130px;
}
@media (max-width: 767px) {
  .article--wrap + .article--wrap {
    margin-top: 80px;
  }
}
.article--wrap:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .article--wrap:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.article--wrap:nth-child(odd) h3 {
  text-align: left;
}
.article--wrap:nth-child(odd) .read-more {
  margin: 0 auto 0 0;
}
.article--wrap:nth-child(odd) .text {
  margin: 0 0 0 50px;
}
@media (max-width: 767px) {
  .article--wrap:nth-child(odd) .text {
    margin: 60px 0 0 0;
  }
}
.article--wrap h3 {
  font-size: 22px;
  font-family: "Noto Serif TC", serif;
  color: var(--gold-dark);
  text-align: right;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .article--wrap h3 {
    text-align: left;
    font-size: 21px;
  }
}
.article--wrap .read-more {
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .article--wrap .read-more {
    margin: 0 auto 0 0;
  }
}
.article--wrap .text {
  margin: 0 65px 0 0;
}
@media (max-width: 767px) {
  .article--wrap .text {
    margin: 60px 0 0 0;
  }
}
.article--wrap figure {
  position: relative;
  width: 422px;
}
@media (max-width: 767px) {
  .article--wrap figure {
    width: 100%;
  }
}
.article--wrap figure:before {
  content: "";
  width: 234px;
  height: 96px;
  background-color: var(--dark-gray);
  position: absolute;
  left: -23px;
  bottom: -26px;
  z-index: -1;
}
@media (max-width: 767px) {
  .article--wrap figure:before {
    width: 55%;
    height: 34%;
    left: -16px;
    bottom: -18px;
  }
}

.section--wall {
  position: relative;
  background-color: #F2F5F8;
  padding: 78px 0 130px;
}
@media (max-width: 992px) {
  .section--wall {
    padding: 60px 24px 100px;
  }
}
.section--wall .container {
  max-width: 910px;
}
@media (max-width: 992px) {
  .section--wall .container {
    max-width: 600px;
  }
}
.section--wall .section--title {
  color: var(--gold-dark);
  margin-bottom: 106px;
}
@media (max-width: 767px) {
  .section--wall .section--title {
    margin-bottom: 0;
  }
}
.section--wall .card--wrap {
  position: relative;
  width: 557px;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  z-index: 5;
}
@media (max-width: 767px) {
  .section--wall .card--wrap {
    width: calc(100% - 20px);
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.section--wall .card--wrap:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.section--wall .card--wrap .card--text {
  padding: 67px 80px;
  background-color: var(--light-brown);
  border-radius: 140px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .section--wall .card--wrap .card--text {
    border-radius: 70px;
    padding: 50px 28px 50px;
  }
}
.section--wall .card--wrap .card--text h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section--wall .card--wrap .card--text h3 {
    font-size: 19px;
    position: absolute;
    bottom: 100%;
  }
}
.section--wall .card--wrap .card--text h3 strong {
  font-family: inherit;
  font-size: 40px;
}
@media (max-width: 767px) {
  .section--wall .card--wrap .card--text h3 strong {
    font-size: 31px;
  }
}
.section--wall .card--wrap .card--text p {
  color: #636363;
  font-size: 18px;
  text-align: left;
}
@media (max-width: 767px) {
  .section--wall .card--wrap .card--text p {
    font-size: 16px;
    line-height: 28px;
  }
}
.section--wall .card--wrap .card--character {
  position: absolute;
  top: 21px;
  right: -122px;
  z-index: 3;
}
@media (max-width: 767px) {
  .section--wall .card--wrap .card--character {
    position: relative;
    width: 130px;
    right: 0;
    top: 42px;
    left: calc(100% - 144px);
  }
}
.section--wall .card--wrap .card--deco {
  width: 213px;
  height: 213px;
  background-image: url(../images/wall_card_deco_01.svg);
  background-size: contain;
  position: absolute;
  bottom: -24px;
  right: -110px;
  z-index: 0;
}
@media (max-width: 767px) {
  .section--wall .card--wrap .card--deco {
    width: 155px;
    height: 155px;
    bottom: auto;
    top: 116px;
    right: -42px;
  }
}
.section--wall .card--wrap:nth-child(odd) {
  margin: 100px 0 100px auto;
}
@media (max-width: 767px) {
  .section--wall .card--wrap:nth-child(odd) {
    margin: -20px 0 0 20px;
  }
}
.section--wall .card--wrap:nth-child(odd) .card--text {
  background-color: #D2DCE4;
}
@media (max-width: 767px) {
  .section--wall .card--wrap:nth-child(odd) .card--text h3 {
    left: 50%;
  }
}
.section--wall .card--wrap:nth-child(odd) .card--character {
  position: absolute;
  top: -32px;
  left: -106px;
  right: auto;
}
@media (max-width: 767px) {
  .section--wall .card--wrap:nth-child(odd) .card--character {
    position: relative;
    width: 157px;
    top: 35px;
    left: 0;
  }
}
.section--wall .card--wrap:nth-child(odd) .card--deco {
  background-image: url(../images/wall_card_deco_02.svg);
  bottom: -12px;
  left: -103px;
  right: auto;
}
@media (max-width: 767px) {
  .section--wall .card--wrap:nth-child(odd) .card--deco {
    left: -21px;
    top: 174px;
    bottom: auto;
  }
}

footer {
  background-color: var(--dark-gray);
}
footer .container {
  padding: 0 60px;
  height: 116px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 159px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
footer .container img {
  margin: 0;
}
footer .container p {
  color: #fff;
  font-size: 16px;
}
@media (max-width: 767px) {
  footer .container p {
    font-size: 12px;
  }
}

#top {
  width: 46px;
  height: 108px;
  background-image: url(../images/top.png);
  position: fixed;
  background-size: contain;
  bottom: 126px;
  right: 65px;
  cursor: pointer;
  z-index: 10;
  display: none;
}
@media (max-width: 767px) {
  #top {
    width: 38px;
    height: 67px;
    background-image: url(../images/m/top.png);
    right: 12px;
    bottom: 24px;
  }
}

#deco--01 {
  width: 93px;
  height: 144px;
  background-image: url(../images/quiz_deco_lb.svg);
  position: absolute;
  z-index: -1;
  top: 80%;
  left: 0;
}
@media (max-width: 767px) {
  #deco--01 {
    width: 66px;
    height: 119px;
    background-image: url(../images/m/quiz_deco_lb.svg);
  }
}

#deco--02 {
  width: 186px;
  height: 240px;
  background-image: url(../images/quiz_deco_lt.png);
  position: absolute;
  background-size: contain;
  z-index: -1;
  top: 10%;
  left: 0;
}
@media (max-width: 767px) {
  #deco--02 {
    width: 50px;
    height: 68px;
    background-image: url(../images/m/quiz_deco_lt.png);
    top: 12%;
  }
}

#deco--03 {
  width: 165px;
  height: 330px;
  background-image: url(../images/quiz_deco_rb.png);
  position: absolute;
  background-size: contain;
  z-index: -1;
  top: 13%;
  right: 0;
}
@media (max-width: 767px) {
  #deco--03 {
    width: 50px;
    height: 124px;
    background-image: url(../images/m/quiz_deco_rt.png);
    top: 14%;
  }
}

#deco--04 {
  width: 196px;
  height: 242px;
  background-image: url(../images/article_deco_lt.png);
  position: absolute;
  background-size: contain;
  z-index: -1;
  top: 13%;
  left: 0;
}
@media (max-width: 767px) {
  #deco--04 {
    width: 75px;
    height: 94px;
  }
}

#deco--05 {
  width: 78px;
  height: 158px;
  background-image: url(../images/article_deco_lb.svg);
  position: absolute;
  background-size: contain;
  z-index: -1;
  top: 75%;
  left: 0;
}
@media (max-width: 767px) {
  #deco--05 {
    width: 78px;
    height: 158px;
    background-image: url(../images/m/article_deco_lb.svg);
  }
}

#deco--06 {
  width: 40px;
  height: 40px;
  background-image: url(../images/article_deco_rc.svg);
  position: absolute;
  background-size: contain;
  z-index: -1;
  top: 20%;
  right: 120px;
}
#deco--07 {
  width: 97px;
  height: 212px;
  background-image: url(../images/article_deco_rt.svg);
  position: absolute;
  background-size: contain;
  z-index: -1;
  top: 25%;
  right: 0;
}
@media (max-width: 767px) {
  #deco--07 {
    width: 65px;
    height: 130px;
    background-image: url(../images/m/article_deco_rt.svg);
  }
}

#deco--08 {
  width: 120px;
  height: 200px;
  background-image: url(../images/article_deco_rb.png);
  position: absolute;
  background-size: contain;
  z-index: -1;
  top: 70%;
  right: 0;
}
@media (max-width: 767px) {
  #deco--08 {
    width: 27px;
    height: 54px;
    background-image: url(../images/m/article_deco_rb.png);
  }
}

#deco--09 {
  width: 100%;
  height: 100%;
  background-image: url(../images/wall_deco_circle.png);
  position: absolute;
  background-size: 100% auto;
  background-repeat: repeat;
  z-index: 0;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  #deco--09 {
    display: none;
  }
}

#deco--10 {
  width: 100%;
  height: 100%;
  background-image: url(../images/wall_deco_dots.png);
  position: absolute;
  background-size: 100% auto;
  background-repeat: repeat;
  z-index: 0;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  #deco--10 {
    background-image: url(../images/m/wall_deco_dots.png);
  }
}

#deco--11 {
  width: 100%;
  height: 90%;
  background-image: url(../images/wall_deco_line.png);
  position: absolute;
  background-size: 100% auto;
  background-repeat: repeat;
  z-index: 0;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  #deco--11 {
    background-image: url(../images/m/wall_deco_line.png);
  }
}
/*# sourceMappingURL=style.css.map */