.container-fluid {
  padding: 0;
}

.container {
  position: relative;
}
@media (min-width: 1921px) {
  .container {
    max-width: 1250px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
}

h1 {
  font-size: 2.25rem;
  line-height: 2.6rem;
  font-weight: 600;
}

h2 {
  font-size: 1.75rem;
  line-height: 2.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.375rem;
  line-height: 2.5rem;
  font-weight: 500;
}

h4 {
  font-size: 1.125rem;
  line-height: 1.6rem;
  font-weight: 500;
}

h5 {
  font-size: 1.0625rem;
  line-height: 1.8rem;
  font-weight: 400;
}

p {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.8rem;
  white-space: pre-wrap;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100vh;
}
@media (max-width: 576px) {
  html, body {
    overflow-x: hidden;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Noto Sans TC", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
}

ol, ul {
  padding-left: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 1rem;
  height: 4rem;
  position: fixed;
}
header .logo {
  width: 4rem;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0.5rem;
}
header nav .icon-wrap:not(:last-child) {
  margin-right: 1rem;
}
header nav a {
  color: #e2dacd;
  font-size: 1rem;
  font-weight: 600;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
header nav a img {
  width: 2rem;
  padding-bottom: 0.35rem;
  margin-right: 0.35rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
header nav a:hover {
  color: white;
  opacity: 0.7;
}
header nav a:hover img {
  opacity: 0.7;
  -webkit-transform: rotate(16deg);
          transform: rotate(16deg);
}
@media (max-width: 768px) {
  header {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 5rem;
    padding: 0 1rem;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
  }
  header .logo {
    display: none;
  }
  header .icon-wrap {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
  header nav {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  header nav a {
    font-size: 0.8125rem;
  }
  header nav a img {
    margin-right: 0;
    padding: 0;
  }
}

footer {
  padding: 2rem 0;
  background-color: #cca878;
}
@media (max-width: 576px) {
  footer {
    padding-bottom: 8.5rem;
  }
}
footer .social-wrap {
  display: block;
  -ms-flex-line-pack: center;
      align-content: center;
}
footer .socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row;
  gap: 0.5rem;
  margin: 0 auto;
}
@media (max-width: 576px) {
  footer .socials {
    margin-bottom: 0.5rem;
    width: 100%;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}
footer .socials .social {
  display: inline-block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
footer .socials .social img {
  width: 4rem;
}
footer .socials .social:hover {
  -webkit-transform: rotate(16deg);
          transform: rotate(16deg);
  opacity: 0.8;
}
footer .apps, footer .download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .apps {
  gap: 0.5rem;
}
footer .app-left {
  margin-left: 1rem;
  width: 14rem;
  border: 6px solid white;
  border-radius: 0.5rem;
}
@media (max-width: 576px) {
  footer .app-left {
    display: none;
  }
}
footer .app-right p {
  color: white;
  padding: 0.25rem;
  font-size: 1.0625rem;
  letter-spacing: 1px;
}
@media (max-width: 576px) {
  footer .app-right p {
    margin-bottom: 0.5rem;
  }
}
footer .app-right .download {
  width: 60%;
  gap: 0.5rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
footer .app-right .download:hover {
  opacity: 0.8;
}
@media (max-width: 576px) {
  footer .app-right {
    text-align: center;
  }
  footer .app-right .download {
    margin: 0 auto;
    width: 80%;
  }
}
footer p {
  color: white;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
}

#intro, #application {
  padding: 2rem 1rem;
}
@media (max-width: 576px) {
  #intro, #application {
    padding: 2rem 12px;
  }
}

#process, #category, #jury, #critiria, #prize, #schedule, #rule, #notice, #organizer {
  padding: 2rem 1rem;
}
@media (max-width: 576px) {
  #process, #category, #jury, #critiria, #prize, #schedule, #rule, #notice, #organizer {
    padding: 2rem 0;
  }
}

:root {
  --header-h: 52px;
}

@media (max-width: 768px) {
  :root {
    --header-h: 48px;
  }
}
#wrap-1, #application, #category, #critiria, #wrap-2, #rule {
  scroll-margin-top: calc(var(--header-h) + 12px);
}
@media (max-width: 768px) {
  #wrap-1, #application, #category, #critiria, #wrap-2, #rule {
    scroll-margin-top: 0;
  }
}

#rule, #notice, #organizer {
  padding: 2.5rem 0;
}

.title {
  position: relative;
  display: inline-block;
}
.title img {
  position: absolute;
  top: 15%;
  left: 45%;
  width: 120px;
  z-index: 0;
}
.title h1, .title p {
  z-index: 1;
}
.title h1 {
  position: relative;
}
.title p {
  position: absolute;
  top: 75%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Damion", cursive;
}
@media (max-width: 576px) {
  .title p {
    top: 85%;
  }
}

#intro .title p, #application .title p, #process .title p, #jury .title p, #critiria .title p, #rule .title p, #notice .title p, #organizer .title p {
  color: white;
}

#story .title p, #category .title p, #prize .title p, #schedule .title p {
  color: #cca878;
}

.slick-track {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 576px) {
  .slick-track {
    gap: 0.8rem;
  }
}

.slick-arrow {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3rem;
  font-size: 0;
  background-color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.slick-arrow:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media (max-width: 576px) {
  .slick-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.slick-prev, .slick-next {
  position: absolute;
  bottom: 1rem;
  border: none;
  outline: none;
  z-index: 10;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2.5rem;
}
@media (max-width: 576px) {
  .slick-prev, .slick-next {
    background-size: 80%;
  }
}

.slick-prev {
  background-image: url(../img/left.svg);
  top: -13%;
  right: 6%;
}
@media (max-width: 992px) {
  .slick-prev {
    right: 10%;
  }
}
@media (max-width: 576px) {
  .slick-prev {
    right: 15%;
    top: -10%;
  }
}

.slick-next {
  background-image: url(../img/right.svg);
  top: -13%;
  right: 0;
}
@media (max-width: 576px) {
  .slick-next {
    top: -10%;
  }
}

.divider {
  display: none;
}
@media (max-width: 576px) {
  .divider {
    display: block;
    border: 1px solid #cca878;
  }
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background-image: url(../img/bg-00.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: opacity 240ms ease, visibility 240ms ease;
  transition: opacity 240ms ease, visibility 240ms ease;
}
@media (max-width: 576px) {
  .page-loader {
    background-attachment: scroll;
  }
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 16px 18px;
}

.page-loader__anim {
  width: 240px;
  height: 240px;
}

.page-loader__text {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #fff;
  opacity: 0.85;
}

#kv {
  padding-top: 1.5rem;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  background-color: #000;
}
#kv .kv-wrap {
  position: relative;
}
#kv .kv-wrap img {
  position: absolute;
  width: 100%;
}
#kv .kv-wrap .kv-base {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}
#kv .kv-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
#kv .bg-2 {
  right: -12%;
}
@media (max-width: 768px) {
  #kv {
    padding-top: 0;
  }
}

#wrap-1, #jury {
  background-image: url(../img/bg-b.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#wrap-1 .title h1, #jury .title h1 {
  color: #cca878;
}
@media (max-width: 576px) {
  #wrap-1, #jury {
    background-attachment: scroll;
    background-image: url(../img/bg-b-m.png);
  }
}

#intro h3 {
  color: #e2dacd;
  line-height: 2.3rem;
}
#intro .highlight {
  color: #fdec06;
}

#application {
  padding-left: 2rem;
}
#application h5 {
  padding: 0 0.25rem;
  display: inline-block;
  background-color: #cca878;
  color: black;
}
#application .list {
  margin-bottom: 1rem;
}
#application .list p {
  color: #e2dacd;
}
@media (max-width: 768px) {
  #application {
    padding-left: 1rem;
  }
}

#process {
  background-image: url(../img/bg-y.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#process .step {
  padding: 1rem;
  border: 2px solid #e2dacd;
  background-color: white;
  -webkit-filter: drop-shadow(0 0 0.5rem rgba(73, 73, 73, 0.1));
          filter: drop-shadow(0 0 0.5rem rgba(73, 73, 73, 0.1));
  min-height: 530px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#process .step-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
#process .step-wrap .step-title {
  color: #aa783c;
}
#process .num {
  width: 2rem;
  height: 2rem;
  background-color: #aa783c;
  display: block;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  border-radius: 3rem;
  color: white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#story {
  padding: 2rem 1rem;
  min-height: 350px;
}
#story .title img {
  left: 75%;
}
@media (max-width: 576px) {
  #story {
    padding: 1.5rem 0;
    background-size: 250%;
    background-position: 50% 100%;
  }
}

.lead-wrap {
  background-image: url(../img/bg-paper.png);
  background-attachment: fixed;
  background-size: cover;
  padding: 3rem 1rem;
}
.lead-wrap .tape, .lead-wrap .img-mag, .lead-wrap .img-file {
  position: absolute;
}
.lead-wrap .tape {
  top: -25%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background-image: url(../img/tape-2.png);
  background-attachment: scroll;
  background-size: 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  padding-top: 0.75rem;
  color: white;
  font-weight: 500;
}
.lead-wrap .tape h2 {
  color: white;
}
.lead-wrap .lead {
  position: relative;
}
.lead-wrap .img-file, .lead-wrap .img-mag {
  width: 20%;
}
.lead-wrap .img-file {
  left: -5%;
  bottom: -10%;
}
.lead-wrap .img-mag {
  right: -3%;
  bottom: -8%;
}
@media (max-width: 768px) {
  .lead-wrap .img-file, .lead-wrap .img-mag {
    bottom: -20%;
  }
}
@media (max-width: 576px) {
  .lead-wrap {
    background-image: url(../img/bg-paper-m.png);
    background-attachment: scroll;
    padding: 2.5rem 0.5rem 1rem;
  }
  .lead-wrap .tape {
    top: -18%;
  }
  .lead-wrap .img-file, .lead-wrap .img-mag {
    display: none;
  }
}

#element {
  padding: 0 1rem 2rem;
}
#element .hint {
  color: #af221e;
}
#element h2 {
  color: #aa783c;
}
@media (max-width: 576px) {
  #element {
    background-image: none;
  }
}

.context {
  font-size: 1.5rem;
  line-height: 3rem;
  font-weight: 500;
  color: #5b401e;
}
@media (max-width: 576px) {
  .context {
    font-size: 1.25rem;
    line-height: 2.5rem;
  }
}

#setup {
  padding: 3rem 0 2.5rem;
  background-color: #e2dacd;
}
#setup .setup-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1.5rem;
}
#setup .set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 1.5rem;
  background-color: white;
}
#setup .set .set-img {
  position: relative;
}
#setup .set .tape {
  position: absolute;
  width: 35%;
  top: -5%;
  left: -5%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 576px) {
  #setup .set .tape {
    width: 40%;
    right: -8%;
    bottom: 0;
    top: auto;
    left: auto;
    -webkit-transform: rotate(150deg);
            transform: rotate(150deg);
  }
}
#setup .set .set-img {
  background-color: rgba(226, 218, 205, 0.2);
}
#setup .set h3 {
  margin-top: 1rem;
  color: #aa783c;
}
#setup .setup-tabs {
  padding: 0;
  width: 100%;
}
#setup .setup-tab {
  width: 33.3333333333%;
  padding: 0.5rem 1rem;
  border: none;
  font-weight: 600;
  background-color: #cca878;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#setup .setup-tab.is-active {
  color: #aa783c;
  background: white;
}
@media (max-width: 576px) {
  #setup {
    padding: 2rem 1rem;
  }
  #setup .setup-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#category .title img {
  left: 65%;
}
#category .folders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1.3rem;
}
@media (max-width: 576px) {
  #category .folders {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#category .folder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#category .folder .folder-group, #category .folder .folder-wrap {
  background-image: url(../img/folder.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #category .folder .folder-group, #category .folder .folder-wrap {
    background-attachment: scroll;
  }
}
@media (max-width: 576px) {
  #category .folder .folder-group, #category .folder .folder-wrap {
    background-attachment: scroll;
  }
}
#category .folder .folder-group {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0.5rem 1rem 0;
  width: 120px;
  font-weight: 600;
  color: white;
  clip-path: polygon(0 0, calc(100% - 1.5rem) 0, 100% 100%, 0 100%);
}
#category .folder .folder-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 1.5rem;
}
#category .folder .folder-wrap img {
  position: absolute;
  width: 40%;
  top: 10%;
  right: 5%;
  z-index: 0;
}
#category .folder .highlight {
  position: relative;
  background-color: white;
  padding: 1rem;
  z-index: 1;
  font-weight: 600;
}
#category .folder .highlight p {
  color: #af221e;
}
#category .folder .highlight .bold {
  color: black;
}
#category .folder .ex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#category .folder .example {
  margin-right: 0.35rem;
  font-size: 0.75rem;
  background-color: black;
  padding: 0.25rem 0.35rem;
  border-radius: 0.25rem;
  color: #e2dacd;
}
#category .folder h5 {
  margin-bottom: 0;
  font-weight: 600;
}
#category .folders-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
#category .folders-tab {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  border: 0;
  padding: 5px 12px 3px 0;
  font-weight: 600;
  cursor: pointer;
  color: #cca878;
  background-color: #aa783c;
  clip-path: polygon(0 0, calc(100% - 1.5rem) 0, 100% 100%, 0 100%);
}
#category .folders-tab.is-active {
  color: white;
  background-image: url(../img/folder.png);
  background-attachment: scroll;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#category .folder-panel-wrap {
  margin-top: 0.5rem;
}

#jury .jury-wrap {
  margin: 0 auto;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
#jury .jury-wrap .jury-img {
  text-align: center;
}
#jury .jury-wrap img {
  width: 70%;
}
@media (max-width: 576px) {
  #jury .jury-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#jury h3, #jury p {
  text-align: center;
}
#jury h3 {
  margin-top: 1rem;
  margin-bottom: 0;
  color: #e2dacd;
}
#jury p {
  color: #cca878;
}

#critiria {
  background-image: url(../img/bg-dots.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#critiria .cri-wrap {
  margin: 0 auto;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
#critiria .cri-wrap h3, #critiria .cri-wrap p {
  text-align: center;
}
@media (max-width: 576px) {
  #critiria .cri-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-attachment: scroll;
  }
}
#critiria .cri {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 180px;
}
#critiria .cri .cri-img {
  margin: 0 auto;
  position: relative;
  width: 8rem;
  height: 8rem;
  background-color: white;
  border-radius: 100px;
}
#critiria .cri .cri-img img, #critiria .cri .cri-img .percent {
  position: absolute;
}
#critiria .cri .cri-img img {
  width: 70%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#critiria .cri .cri-img .percent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3rem;
  height: 3rem;
  color: #fdec06;
  border-radius: 3rem;
  background-color: #5b401e;
  right: -15%;
  bottom: 0;
}
@media (max-width: 576px) {
  #critiria .cri {
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
  #critiria .cri h3, #critiria .cri p {
    text-align: start;
  }
  #critiria .cri .cri-info {
    max-width: 240px;
  }
  #critiria .cri .cri-info h3 {
    margin-top: 0;
  }
  #critiria .cri .cri-img {
    width: 6.5rem;
    height: 6.5rem;
  }
  #critiria .cri .cri-img .percent {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.8125rem;
    bottom: -12%;
    right: -5%;
  }
}
#critiria h3 {
  margin: 1rem 0 0;
  color: white;
}
#critiria p {
  color: #e2dacd;
}

@media (max-width: 576px) {
  #prize, #schedule {
    text-align: center;
  }
}

#prize hr {
  border: 1px dashed #cca878;
}
#prize .prize-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#prize .prize-item .prize-top, #prize .prize-item .prize-down {
  width: 100%;
}
#prize .prize-item .prize-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
}
#prize .prize-item .prize-top img {
  width: 35%;
}
#prize .prize-item .prize-down {
  height: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
  padding-bottom: 0.5rem;
  background-color: white;
}
#prize .prize-item .prize-down h4 {
  margin-bottom: 0;
  font-weight: 600;
  color: #5b401e;
}
#prize .prize-item .prize-down .strong {
  color: #aa783c;
  font-size: 1.25rem;
}
#prize .prize-item .prize-down p {
  font-size: 0.8125rem;
  color: #cca878;
}
@media (max-width: 576px) {
  #prize .prize-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #prize .prize-wrap {
    width: 100%;
  }
  #prize .prize-wrap .prize-item .prize-top img {
    width: 70%;
  }
}

#schedule {
  padding-left: 2rem;
}
#schedule .time-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
#schedule .time-item .time-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 7.5rem;
  height: 7.5rem;
  background-color: #e2dacd;
  border-radius: 7rem;
}
#schedule .time-item .time-img img {
  width: 75%;
}
#schedule .time-item h3 {
  margin-bottom: 0;
  color: #5b401e;
}
#schedule .time-item p {
  color: #aa783c;
}
@media (max-width: 576px) {
  #schedule .time-item .time-img {
    width: 6.5rem;
    height: 6.5rem;
  }
  #schedule .time-item .time-info {
    text-align: start;
  }
}
@media (max-width: 576px) {
  #schedule {
    padding: 2rem 1rem;
  }
}

#rule, #notice, #organizer {
  background-image: url(../img/bg-b.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#rule h1, #notice h1, #organizer h1 {
  color: #cca878;
}
@media (max-width: 576px) {
  #rule, #notice, #organizer {
    background-image: url(../img/bg-b-m.png);
    background-attachment: scroll;
  }
}

.rule1, .rule2 {
  margin: 0 auto;
  padding: 1.5rem;
  max-width: 700px;
  height: 400px;
  color: #cca878;
  overflow-y: scroll;
}
.rule1 a, .rule2 a {
  color: #e2dacd;
}
.rule1 a:hover, .rule2 a:hover {
  color: white;
}
.rule1::-webkit-scrollbar, .rule2::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(91, 64, 30, 0.3);
}
.rule1::-webkit-scrollbar-thumb, .rule2::-webkit-scrollbar-thumb {
  background-color: rgba(91, 64, 30, 0.5);
}
@media (max-width: 576px) {
  .rule1, .rule2 {
    height: 320px;
  }
}

li {
  font-size: 0.875rem;
  line-height: 1.6rem;
  text-indent: -1em;
}

.indent1 {
  margin: 0.5rem 0 0 1rem;
}

.indent2 {
  margin: 0.5rem 0 0 2rem;
}

#organizer .org-wrap {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  max-width: 700px;
  border-radius: 0.5rem;
  background-color: white;
}
#organizer .org-wrap .org-item {
  text-align: center;
}
#organizer .org-wrap a img {
  width: 80%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
#organizer .org-wrap a img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 576px) {
  #organizer .org-wrap a img {
    width: 100%;
  }
}

#btnset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  position: fixed;
  right: 0;
  bottom: 2rem;
  z-index: 350;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
}
#btnset .side-btn {
  background-color: #af221e;
  border-radius: 3rem 0 0 3rem;
  padding: 0.25rem 0.5rem 0.25rem 1rem;
  cursor: pointer;
  border: none;
}
#btnset a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-line-pack: center;
      align-content: center;
  color: white;
  font-weight: 500;
}
#btnset a:hover {
  opacity: 0.8;
}
#btnset img {
  margin-right: 0.25rem;
  width: 1.5rem;
}
#btnset.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 576px) {
  #btnset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    bottom: 5rem;
    gap: 0;
  }
  #btnset .side-btn {
    position: relative;
    width: 100%;
    border-radius: 0;
  }
  #btnset .side-btn:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background-color: rgba(247, 52, 47, 0.3);
  }
}