@charset "UTF-8";
:root {
  --base:#333;
  --black:#000;
  --white:#fff;
  --grey:#666;
  --blue:#2c74ff;
  --green:#a1ff75;
  --border:#e0e0e0;
}

/* viewport size */
.swiper {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.contestSwiper {
  max-width: 120rem;
  margin: 0 auto;
}
.contestSwiper .swiper-slide {
  padding: 40px 60px;
  color: var(--white);
}
.contestSwiper .swiper-slide .inner .subtitle {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  line-height: normal;
}
.contestSwiper .swiper-slide .inner .title {
  display: block;
  margin-top: 1.6rem;
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 6.5rem;
}
.contestSwiper .swiper-slide .inner .text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.8rem;
}
.contestSwiper .swiper-slide .inner .btnGo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3rem;
  padding: 1.2rem 4rem;
  border-radius: 2.5rem;
  background: var(--green);
  color: var(--blue);
  font-size: 2rem;
  font-weight: 600;
  line-height: normal;
}
.contestSwiper .swiper-slide .inner .btnGo:after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.9rem;
  height: 1.55rem;
  margin-left: 0.8rem;
  background: url(../images/icon/icon_arrow_right.png) no-repeat 0 0;
  background-size: cover;
  content: "";
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 2.9rem;
}

.swiper-pagination-bullet {
  margin: 0.35rem;
  width: 0.8rem;
  height: 0.8rem;
  background: #fefefe;
  opacity: 0.6;
  -webkit-transition: width 0.2s ease-in;
  transition: width 0.2s ease-in;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  width: 3.9rem;
  border-radius: 0.4rem;
  -webkit-transition: width 0.3s ease-in;
  transition: width 0.3s ease-in;
}

.searchWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 100%;
  height: 5.6rem;
  padding: 0 3rem;
  border: 1px solid var(--border);
  border-radius: 3rem;
  background: var(--white);
}
.searchWrap .btnSearchIn {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: block;
  width: 2.581rem;
  height: 2.581rem;
  margin-left: 0.8rem;
  background: url(../images/icon/icon_search.png) no-repeat 0 0;
  background-size: cover;
}

.searchInput {
  width: 100%;
  height: 100%;
}
.searchInput input[type=text] {
  width: 100%;
  height: 100%;
  outline: none;
  color: var(--base);
  font-size: 1.8rem;
}
.searchInput input[type=text]::-webkit-input-placeholder {
  color: #bbb;
}
.searchInput input[type=text]::-moz-placeholder {
  color: #bbb;
}
.searchInput input[type=text]:-ms-input-placeholder {
  color: #bbb;
}
.searchInput input[type=text]::-ms-input-placeholder {
  color: #bbb;
}
.searchInput input[type=text]::placeholder {
  color: #bbb;
}

.downloadList ul li {
  margin-top: 1.6rem;
}
.downloadList ul li:first-child {
  margin-top: 0;
}
.downloadList .btnDownload,
.downloadList .btnLink {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 3rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--white);
  color: var(--grey);
  font-size: 1.5rem;
  line-height: normal;
}
.downloadList .btnDownload:before,
.downloadList .btnLink:before {
  display: inline-block;
  content: "";
}
.downloadList .btnDownload:before {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.8rem;
  background: url(../images/icon/icon_download.png) no-repeat 0 0;
  background-size: cover;
}
.downloadList .btnLink:before {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.8rem;
  background: url(../images/icon/icon_link.png) no-repeat 0 0;
  background-size: cover;
}
.downloadList .nonLink {
  color: var(--grey);
  font-size: 1.6rem;
  line-height: 2rem;
}

.btnFill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btnFill.small {
  height: 2.2rem;
  padding: 0 1rem;
  border-radius: 1.1rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: normal;
}
.btnFill.small.btnOnline {
  background: #eff5ff;
  color: var(--blue);
}
.btnFill.small.btnMap {
  background: #eee;
  color: var(--base);
}

.chipsWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
}
.chipsWrap .chips {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.4rem;
  padding: 0 1.2rem;
  border-radius: 1.2rem;
  background: #eee;
  color: var(--base);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: normal;
}
.chipsWrap .chips.border {
  height: 3.2rem;
  margin-left: 0.6rem;
  padding: 0 1.2rem;
  border: 1px solid var(--border);
  border-radius: 1.6rem;
  background: var(--white);
  font-weight: 400;
}
.chipsWrap .chips:first-child {
  margin-left: 0;
}
.chipsWrap .chips.location, .chipsWrap .chips.entry, .chipsWrap .chips.ing, .chipsWrap .chips.lank, .chipsWrap .chips.on {
  background: var(--blue);
  color: var(--white);
}
.chipsWrap .chips.use span:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0.8rem;
  content: "|";
}
.chipsWrap .chips.use span:first-child::before {
  display: none;
  content: none;
}

.contentsFilter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contentsFilter .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.contentsFilter .tabs li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4rem;
  border: 1px solid #e0e0e0;
  border-radius: 2rem;
  padding: 0 1.8rem;
  color: #bbb;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: normal;
}
.contentsFilter .tabs li a.active {
  border: 1px solid var(--blue);
  color: var(--blue);
}
.contentsFilter .filterWrap .btnFilter {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4rem;
  border-radius: 2rem;
  background: #eff5ff;
  padding: 0 1.7rem;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
}
.contentsFilter .filterWrap .btnFilter::before {
  display: block;
  width: 1.2rem;
  height: 1.1rem;
  margin-right: 0.8rem;
  background: url(../images/icon/icon_filter.png) no-repeat 0 0;
  background-size: cover;
  content: "";
}

.paginate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.paginate .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.paginate a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 0.6rem;
  color: var(--grey);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: normal;
}
.paginate a.active {
  border-radius: 1rem;
  background: var(--blue);
  color: var(--white);
}
.paginate a.prev {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 1.8rem;
  background: url(../images/icon/icon_arrow_paginate.png) no-repeat 0 0;
  background-size: cover;
}
.paginate a.next {
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 1.8rem;
  background: url(../images/icon/icon_arrow_paginate.png) no-repeat 0 0;
  background-size: cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.boxWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.boxWrap.grid2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  gap: 2.4rem;
}
.boxWrap.grid2 .contestBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 1.2rem);
          flex: 0 0 calc(50% - 1.2rem);
}
.boxWrap.grid2 > .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 3rem);
          flex: 0 0 calc(50% - 3rem);
  margin: 1.2rem 1.5rem;
}
.boxWrap.grid2 .outlineBoxWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 1.2rem);
          flex: 0 0 calc(50% - 1.2rem);
}
.boxWrap.grid3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  gap: 2rem 3rem;
}
.boxWrap.grid3 .listBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 3rem);
          flex: 0 0 calc(33.333% - 3rem);
}
.boxWrap.grid3 .profileWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 2rem);
          flex: 0 0 calc(33.333% - 2rem);
}
.boxWrap.grid3 .orderingWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 2rem);
          flex: 0 0 calc(33.333% - 2rem);
}
.boxWrap.grid4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  gap: 4rem 2.4rem;
}
.boxWrap.grid4.orderingBoxWrap {
  gap: 3.4rem 2.4rem;
}
.boxWrap.grid4 .contestResultBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 1.8rem);
          flex: 0 0 calc(25% - 1.8rem);
}
.boxWrap.grid4 .listBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 1.8rem);
          flex: 0 0 calc(25% - 1.8rem);
}
.boxWrap.grid5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  gap: 4rem 2.5rem;
}
.boxWrap.grid5 .listBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(20% - 2rem);
          flex: 0 0 calc(20% - 2rem);
}

.listBox {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--white);
}
.listBox:not(:has(.bottomInfo)) {
  padding-bottom: 2.7rem;
}
.listBox .badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 3.2rem;
  padding: 0 1.4rem;
  border-radius: 2rem 0 2rem 0;
  background: #eee;
  color: var(--base);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: normal;
}
.listBox .badge.rank, .listBox .badge.entry {
  background: var(--blue);
  color: var(--white);
}
.listBox .badge.entry span:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0.8rem;
  content: "|";
}
.listBox .badge.entry span:first-child::before {
  display: none;
  content: none;
}
.listBox .img {
  overflow: hidden;
  width: auto;
  height: 18.4rem;
  border-bottom: 1px solid var(--border);
  background: #ddd;
}
.listBox .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.listBox .chipsWrap {
  margin-top: 2rem;
  padding: 0 2rem;
}
.listBox .history {
  padding: 2rem 1.6rem 0 1.6rem;
}
.listBox .history span {
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 400;
}
.listBox .history span:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0.8rem;
  content: "|";
}
.listBox .history span:first-child::before {
  display: none;
  content: none;
}
.listBox .history + .name {
  margin-top: 0.6rem;
  padding: 0 1.6rem;
}
.listBox .history + .name p {
  font-weight: 700;
}
.listBox .name {
  margin-top: 1.2rem;
  padding: 0 2rem;
}
.listBox .name p {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  color: var(--base);
  font-size: 1.6rem;
  font-weight: 600;
}
.listBox .name p span {
  margin-left: 0.6rem;
  font-size: 1.3rem;
  font-weight: 500;
}
.listBox.orderingBox {
  padding-bottom: 0;
}
.listBox.orderingBox:not(:has(.lastOrdering)) {
  padding-bottom: 2.4rem;
}
.listBox.orderingBox .lastOrdering {
  padding: 1.2rem 2rem 2.8rem 2rem;
}
.listBox.orderingBox .lastOrdering span {
  color: var(--grey);
  font-size: 1.3rem;
  font-weight: 400;
}
.listBox.architectBox {
  padding-bottom: 0;
}
.listBox.architectBox .img {
  position: relative;
}
.listBox.architectBox .img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 68, 68, 0.6)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(68, 68, 68, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
}
.listBox.architectBox .architectName {
  padding: 1rem 2rem 2.4rem 2rem;
  color: var(--grey);
  font-size: 1.3rem;
}
.listBox.architectBox .lastContest {
  position: absolute;
  z-index: 1;
  padding: 2rem;
}
.listBox.architectBox .lastContest span {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
}
.listBox.jurorBox .badge {
  height: 2.915rem;
  padding: 0 1.857rem;
  font-size: 1.3rem;
}
.listBox.jurorBox .img {
  height: 22.4rem;
}
.listBox.jurorBox .lastJuror {
  margin-top: 1.6rem;
  padding: 1.6rem 1.6rem 2rem 1.6rem;
  border-top: 1px solid var(--border);
}
.listBox.jurorBox .lastJuror strong {
  display: block;
  color: var(--grey);
  font-size: 1.3rem;
  font-weight: 600;
}
.listBox.jurorBox .lastJuror span {
  margin-top: 0.6rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  color: var(--grey);
  font-size: 1.3rem;
}

.profileWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.profileWrap .profileImg {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  overflow: hidden;
  width: 7.2rem;
  height: 7.2rem;
  margin-right: 1.8rem;
  border-radius: 50%;
  background: #ddd;
}
.profileWrap .profileImg img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.profileWrap .profileText {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.profileWrap .profileText span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  color: var(--grey);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8rem;
}
.profileWrap .profileText strong {
  margin-top: 0.4rem;
  color: var(--base);
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4rem;
}

.orderingWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.orderingWrap .img {
  width: 9.6rem;
}
.orderingWrap .img img {
  width: 100%;
  height: auto;
}
.orderingWrap .text {
  padding: 2.6rem 2rem;
  border-left: 1px solid var(--border);
}
.orderingWrap .text .history span {
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8rem;
}
.orderingWrap .text .history span:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0.8rem;
  content: "|";
}
.orderingWrap .text .history span:first-child::before {
  display: none;
  content: none;
}
.orderingWrap .text .name {
  margin-top: 0.4rem;
}
.orderingWrap .text .name strong {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  color: var(--base);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.6rem;
}

.contestBox {
  border: 1px solid var(--border);
  border-radius: 2rem;
}
.contestBox .infoTop {
  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;
  padding: 3.2rem 2.4rem 0 2.4rem;
}
.contestBox .infoTop .chipsWrap .chips.dDay {
  background: var(--blue);
  color: var(--white);
}
.contestBox .infoTop .date span {
  color: var(--grey);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: normal;
}
.contestBox .name {
  margin-top: 2.4rem;
  padding: 0 2.4rem;
}
.contestBox .name p {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  color: var(--base);
  font-size: 2rem;
  font-weight: 600;
}
.contestBox .infoBottom {
  padding: 2.4rem 2.4rem 3.2rem 2.4rem;
}

.contestResultBox {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--white);
}
.contestResultBox .img {
  overflow: hidden;
  position: relative;
  width: auto;
  height: 18.5rem;
}
.contestResultBox .img:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 68, 68, 0.6)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(68, 68, 68, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
}
.contestResultBox .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contestResultBox .use {
  padding: 2rem 2rem 0 2rem;
}
.contestResultBox .use span {
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 400;
}
.contestResultBox .use span:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0.8rem;
  content: "|";
}
.contestResultBox .use span:first-child::before {
  display: none;
  content: none;
}
.contestResultBox .name {
  margin-top: 1rem;
  padding: 0 2rem;
}
.contestResultBox .name p {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  color: var(--base);
  font-size: 1.6rem;
  font-weight: 700;
}
.contestResultBox .chipsWrap {
  margin-top: 1.2rem;
  padding: 0 2rem 2.4rem 2rem;
}
.contestResultBox .chipsWrap .chips.location {
  background: var(--blue);
  color: var(--white);
}
.contestResultBox .winner {
  position: absolute;
  z-index: 1;
  padding: 2rem;
}
.contestResultBox .winner span {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: normal;
}

.outlineBoxWrap .title {
  color: var(--base);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 3.2rem;
}
.outlineBoxWrap .outlineBox {
  margin-top: 2rem;
  padding: 3rem 2rem 3rem 4rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
}
.outlineBoxWrap .outlineBox ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.6rem;
}
.outlineBoxWrap .outlineBox ul li:first-child {
  margin-top: 0;
}
.outlineBoxWrap .outlineBox ul li span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12rem;
          flex: 0 0 12rem;
  color: #999;
  font-size: 1.6rem;
  font-weight: 400;
}
.outlineBoxWrap .outlineBox ul li strong {
  color: var(--base);
  font-size: 1.6rem;
  font-weight: 500;
}
.outlineBoxWrap .outlineBox ul li .btnFill {
  margin-left: 0.4rem;
}
.outlineBoxWrap .outlineBox.summary ul li span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9rem;
          flex: 0 0 9rem;
}
.outlineBoxWrap .outlineBox p {
  color: var(--base);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.8rem;
}

.adBanner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 28rem;
  margin-left: 4rem;
}
.adBanner.rightBanner {
  position: absolute;
  z-index: 10;
  top: 0;
  left: calc(50% + 60rem);
}
.adBanner .btnOpenBanner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4.8rem;
  margin-left: auto;
  padding: 0 1.7rem;
  border-radius: 2.4rem;
  background: var(--blue);
  -webkit-box-shadow: 0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
}
.adBanner .btnOpenBanner.close {
  display: none;
}
.adBanner .btnOpenBanner button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #a1ff75;
  font-size: 1.7rem;
  font-weight: 700;
}
.adBanner .btnOpenBanner button:after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.3rem;
  height: 1.3rem;
  margin-left: 0.5rem;
  background: url(../images/icon/icon_plus_02.png) no-repeat 0 0;
  background-size: cover;
  content: "";
}
.adBanner .closeBanner {
  position: absolute;
  top: -2.637rem;
  right: 0;
  width: 2.3rem;
  height: 2.3rem;
  background: url(../images/icon/icon_banner_close.png) no-repeat 0 0;
  background-size: cover;
}
.adBanner .item {
  display: none;
  padding: 2.4rem 2.6rem;
  border-radius: 2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#568fff), to(#2c74ff));
  background: linear-gradient(180deg, #568fff 0%, #2c74ff 100%);
  -webkit-box-shadow: 0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
  color: var(--white);
}
.adBanner .item.show {
  display: block;
}
.adBanner .item .subtitle {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6;
}
.adBanner .item .title {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3.2rem;
}
.adBanner .item .text {
  margin-top: 0.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
}
.adBanner .item .btnGo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.4rem;
  margin-top: 1.6rem;
  padding: 0 1.5rem 0 1.825rem;
  border-radius: 2rem;
  background: var(--green);
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 700;
}
.adBanner .item .btnGo:after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.5rem;
  height: 1.55rem;
  margin-left: 0.5rem;
  background: url(../images/icon/icon_arrow_right.png) no-repeat 0 0;
  background-size: cover;
  content: "";
}

.snsLogin li {
  margin-top: 1.2rem;
}
.snsLogin li:first-child {
  margin-top: 0;
}
.snsLogin li a {
  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;
  position: relative;
  width: 100%;
  height: 4.4rem;
  padding: 0 2rem;
  border-radius: 2.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: normal;
}
.snsLogin li a.btnKakao {
  background: #fee500;
  color: #252418;
}
.snsLogin li a.btnKakao:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  left: 3rem;
  width: 1.6rem;
  height: 1.4rem;
  background: url(../images/icon/icon_kakao.png) no-repeat 0 0;
  background-size: cover;
  content: "";
}
.snsLogin li a.btnNaver {
  background: #03c75a;
  color: #fff;
}
.snsLogin li a.btnNaver:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  left: 3rem;
  width: 1.6rem;
  height: 1.4rem;
  background: url(../images/icon/icon_naver.png) no-repeat 0 0;
  background-size: cover;
  content: "";
}

.toggleSwitch {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.toggleSwitch [type=checkbox] {
  position: relative;
  width: 32px;
  height: 12px;
  border-radius: 6px;
  background: var(--grey);
}
.toggleSwitch [type=checkbox]::before {
  position: absolute;
  left: -5px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: var(--white);
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.16);
  -webkit-transition: left 0.2s linear;
  transition: left 0.2s linear;
  content: "";
}
.toggleSwitch [type=checkbox]:checked {
  background: var(--blue);
}
.toggleSwitch [type=checkbox]:checked::before {
  left: 30px;
}
.toggleSwitch [type=checkbox]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.customInput input[type=radio],
.customInput input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.loginForm.loginPop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.loginForm.loginPop:after {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  content: "";
}
.loginForm.loginPop.open {
  display: block;
}
.loginForm .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  padding: 4rem;
  border-radius: 2rem;
  background: var(--white);
}
.loginForm .inner .logo {
  width: 19.2rem;
  height: 2.1rem;
  margin: 4.5rem auto 0 auto;
  background: url(../images/common/logo_top.png) no-repeat 0 0;
  background-size: cover;
}
.loginForm .inner .inputForm {
  width: 36rem;
  margin-top: 7.5rem;
}
.loginForm .inner .inputForm .formRow {
  margin-top: 1.6rem;
}
.loginForm .inner .inputForm .formRow:first-child {
  margin-top: 0;
}
.loginForm .inner .inputForm .formRow label {
  display: block;
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: normal;
}
.loginForm .inner .inputForm .formRow .inputWrap {
  overflow: hidden;
  width: 100%;
  height: 4.4rem;
  margin-top: 1rem;
  padding: 0 2rem;
  border: 1px solid #717171;
  border-radius: 2.2rem;
  background: var(--white);
}
.loginForm .inner .inputForm .formRow .inputWrap input[type=text],
.loginForm .inner .inputForm .formRow .inputWrap input[type=password] {
  width: 100%;
  height: 100%;
  outline: none;
  color: var(--base);
  font-size: 1.4rem;
}
.loginForm .inner .inputForm .formRow .inputWrap input[type=text]::-webkit-input-placeholder, .loginForm .inner .inputForm .formRow .inputWrap input[type=password]::-webkit-input-placeholder {
  color: #828282;
}
.loginForm .inner .inputForm .formRow .inputWrap input[type=text]::-moz-placeholder, .loginForm .inner .inputForm .formRow .inputWrap input[type=password]::-moz-placeholder {
  color: #828282;
}
.loginForm .inner .inputForm .formRow .inputWrap input[type=text]:-ms-input-placeholder, .loginForm .inner .inputForm .formRow .inputWrap input[type=password]:-ms-input-placeholder {
  color: #828282;
}
.loginForm .inner .inputForm .formRow .inputWrap input[type=text]::-ms-input-placeholder, .loginForm .inner .inputForm .formRow .inputWrap input[type=password]::-ms-input-placeholder {
  color: #828282;
}
.loginForm .inner .inputForm .formRow .inputWrap input[type=text]::placeholder,
.loginForm .inner .inputForm .formRow .inputWrap input[type=password]::placeholder {
  color: #828282;
}
.loginForm .inner .inputForm .saveId {
  margin-top: 1.6rem;
  text-align: right;
}
.loginForm .inner .inputForm .saveId label {
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
.loginForm .inner .inputForm .saveId label input[type=checkbox] {
  opacity: 1;
  position: relative;
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
  border: 0;
  background: url(../images/icon/icon_checkbox.png) no-repeat 0 0;
  background-size: cover;
  cursor: pointer;
}
.loginForm .inner .inputForm .saveId label input[type=checkbox]:checked {
  background: url(../images/icon/icon_checkbox.png) no-repeat 0 0;
  background-size: cover;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.loginForm .inner .emailLogin {
  margin-top: 2.4rem;
}
.loginForm .inner .emailLogin a {
  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;
  width: 100%;
  height: 4.4rem;
  border-radius: 2.2rem;
  background: var(--blue);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
}
.loginForm .inner .loginUtil {
  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;
  margin-top: 2.2rem;
}
.loginForm .inner .loginUtil li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.loginForm .inner .loginUtil li:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1px;
  height: 1.6rem;
  margin: 0 1rem;
  background: #d8d8d8;
  content: "";
}
.loginForm .inner .loginUtil li:first-child:before {
  display: none;
  content: none;
}
.loginForm .inner .loginUtil li a {
  color: #1d1d1d;
  font-size: 1.4rem;
  font-weight: 400;
}
.loginForm .inner .snsLogin {
  margin-top: 4rem;
}

@media (min-width: 320px) and (max-width: 768px) {
  .rightBanner {
    display: none;
  }
  .contestSwiper {
    max-width: 120rem;
    margin: 0 auto;
  }
  .contestSwiper .swiper-slide {
    padding: 2rem 4rem;
  }
  .contestSwiper .swiper-slide .inner .subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
  }
  .contestSwiper .swiper-slide .inner .title {
    margin-top: 1.2rem;
    font-size: 3.4rem;
    line-height: 4.4rem;
  }
  .contestSwiper .swiper-slide .inner .text {
    margin-top: 0.6rem;
    font-size: 1.2rem;
    line-height: 2rem;
  }
  .contestSwiper .swiper-slide .inner .btnGo {
    margin-top: 1.7rem;
    padding: 0.9rem 1.7rem;
    border-radius: 3rem;
    font-size: 1.2rem;
    line-height: normal;
  }
  .contestSwiper .swiper-slide .inner .btnGo:after {
    width: 0.7rem;
    height: 0.8rem;
    margin-left: 0.4rem;
  }
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 1.2rem;
  }
  .swiper-pagination-bullet {
    margin: 0 0.175rem;
    width: 0.4rem;
    height: 0.4rem;
    background: #fefefe;
    opacity: 0.6;
    -webkit-transition: width 0.2s ease-in;
    transition: width 0.2s ease-in;
  }
  .swiper-pagination-bullet-active {
    opacity: 1;
    width: 1.95rem;
    border-radius: 0.4rem;
    -webkit-transition: width 0.3s ease-in;
    transition: width 0.3s ease-in;
  }
  .chipsWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.6rem;
  }
  .chipsWrap .chips {
    margin: 0;
    font-size: 1.2rem;
  }
  .chipsWrap .chips.border {
    height: 2.6rem;
    margin: 0;
    font-size: 1.1rem;
  }
  .searchWrap {
    height: 4.6rem;
    padding: 0 2.1rem;
    border-radius: 2.3rem;
  }
  .searchWrap .btnSearchIn {
    width: 2rem;
    height: 2rem;
  }
  .searchInput {
    width: 100%;
    height: 100%;
  }
  .searchInput input[type=text] {
    font-size: 1.3rem;
  }
  .chipsWrap .chips:first-child {
    margin-left: 0;
  }
  .contentsFilter .tabs li a {
    height: 3.4rem;
    border-radius: 1.7rem;
    padding: 0 1.5rem;
    font-size: 1.328rem;
    line-height: normal;
  }
  .contentsFilter .tabs.overflow {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contentsFilter .tabs.overflow li:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .contentsFilter .tabs.overflow li:first-child + li {
    margin-left: 0;
  }
  .contentsFilter .tabs.overflow + .filterWrap {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .contentsFilter .filterWrap .btnFilter {
    height: 3.4rem;
    border-radius: 1.7rem;
    padding: 0 1.5rem;
    font-size: 1.328rem;
    font-weight: 700;
    line-height: normal;
  }
  .contentsFilter .filterWrap .btnFilter::before {
    width: 1rem;
    height: 0.9rem;
    margin-right: 0.64rem;
  }
  .downloadList ul li {
    margin-top: 1.2rem;
  }
  .downloadList ul li:first-child {
    margin-top: 0;
  }
  .downloadList .btnDownload,
  .downloadList .btnLink {
    width: 100%;
  }
  .downloadList .btnDownload span,
  .downloadList .btnLink span {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
  }
  .downloadList .nonLink {
    color: var(--grey);
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .profileWrap {
    padding: 1.2rem 2rem;
  }
  .profileWrap .profileImg {
    width: 6rem;
    height: 6rem;
    margin-right: 2.1rem;
  }
  .profileWrap .profileText span {
    font-size: 1.3rem;
    line-height: normal;
  }
  .profileWrap .profileText strong {
    margin-top: 0.6rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: normal;
  }
  .orderingWrap .text {
    padding: 2.6rem 2rem;
    border-left: 1px solid var(--border);
  }
  .orderingWrap .text .history span {
    font-size: 1.3rem;
    line-height: normal;
  }
  .orderingWrap .text .history span:before {
    margin: 0 0.8rem;
  }
  .orderingWrap .text .name {
    margin-top: 0.4rem;
  }
  .orderingWrap .text .name strong {
    font-size: 1.5rem;
    line-height: normal;
  }
  .boxWrap.grid2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    gap: 1.2rem;
    margin: 0;
  }
  .boxWrap.grid2 .contestBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  .boxWrap.grid2 .contestBox:nth-child(n+5) {
    display: none;
  }
  .boxWrap.grid2 .item {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin: 3.2rem 0 0 0;
  }
  .boxWrap.grid2 .item:first-child {
    margin-top: 0;
  }
  .boxWrap.grid2 .outlineBoxWrap {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin: 6.4rem 0 0 0;
  }
  .boxWrap.grid2 .outlineBoxWrap:first-child {
    margin-top: 0;
  }
  .boxWrap.grid3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0;
  }
  .boxWrap.grid3 .contestResultBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .boxWrap.grid3 .contestResultBox.swiper-slide {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin: 0;
  }
  .boxWrap.grid3 .profileWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .boxWrap.grid3 .listBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .boxWrap.grid3 .orderingWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 1.6rem 0 0 0;
  }
  .boxWrap.grid3 .orderingWrap:first-child {
    margin-top: 0;
  }
  .boxWrap.grid4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0;
    gap: 2rem;
  }
  .boxWrap.grid4.orderingBoxWrap {
    gap: 2rem;
  }
  .boxWrap.grid4 .contestResultBox {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .boxWrap.grid4 .listBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .boxWrap.grid4 .adBanner {
    margin: 0.8rem;
  }
  .boxWrap.jurorBoxWrap {
    gap: 2rem 1.5rem;
  }
  .boxWrap.jurorBoxWrap .listBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.75rem);
            flex: 0 0 calc(50% - 0.75rem);
  }
  .boxWrap .adBanner {
    width: 100%;
    margin: 1.6rem 0 0 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#71A2FF), to(#2C74FF));
    background: linear-gradient(180deg, #71A2FF 0%, #2C74FF 100%);
  }
  .boxWrap .adBanner:not(.rightBanner) {
    display: block;
  }
  .boxWrap .adBanner .item {
    padding: 3.2rem 2.7rem 3rem 2.7rem;
  }
  .boxWrap .adBanner .item .subtitle {
    font-size: 1.2rem;
    line-height: normal;
  }
  .boxWrap .adBanner .item .title {
    margin-top: 0.6rem;
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .boxWrap .adBanner .item .text {
    margin-top: 0.6rem;
    font-size: 1rem;
    line-height: 2.2rem;
  }
  .boxWrap .adBanner .item .text span:before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 0.8rem;
    content: "|";
  }
  .boxWrap .adBanner .item .text span:first-child::before {
    display: none;
    content: none;
  }
  .boxWrap .adBanner .item .btnGo {
    margin-top: 0.6rem;
    padding: 1.2rem 1.6rem;
    border-radius: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
  }
  .boxWrap .adBanner .item .btnGo:after {
    width: 1.4rem;
    height: 1.5rem;
  }
  .listBox:not(:has(.bottomInfo)) {
    padding-bottom: 2.2rem;
  }
  .listBox .badge.rank, .listBox .badge.entry {
    height: 3.2rem;
    border-radius: 1.6rem 0 1.6rem 0;
    font-size: 1.4rem;
  }
  .listBox .history {
    padding: 1.2rem 1.2rem 0 1.2rem;
  }
  .listBox .history span {
    font-size: 1.1rem;
  }
  .listBox .history span:before {
    margin: 0 0.4rem;
  }
  .listBox .history + .name {
    margin-top: 0.4rem;
  }
  .listBox .name {
    margin-top: 1.2rem;
    padding: 0 2rem;
  }
  .listBox .name p {
    font-size: 1.5rem;
  }
  .listBox .name p span {
    margin-left: 0.4rem;
    font-size: 1.2rem;
  }
  .listBox .chipsWrap {
    margin-top: 2rem;
    padding: 0 2rem;
  }
  .listBox .chipsWrap .chips {
    padding: 0 1.2rem;
    font-size: 1.3rem;
  }
  .listBox .chipsWrap .chips:first-child {
    margin-left: 0;
  }
  .listBox.orderingBox {
    padding-bottom: 0;
  }
  .listBox.orderingBox .lastOrdering {
    padding: 1rem 2rem 2.2rem 2rem;
  }
  .listBox.orderingBox .lastOrdering span {
    font-size: 1.3rem;
    line-height: normal;
  }
  .listBox.architectBox {
    padding-bottom: 0;
  }
  .listBox.architectBox .architectName {
    padding: 1rem 2rem 2.2rem 2rem;
    font-size: 1.3rem;
    line-height: 1.6rem;
  }
  .listBox.architectBox .lastContest {
    padding: 1.6rem 2rem;
  }
  .listBox.architectBox .lastContest span {
    font-size: 1.4rem;
  }
  .listBox.jurorBox {
    border-radius: 1.151rem;
  }
  .listBox.jurorBox .badge {
    height: 2.1rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    border-radius: 1.151rem 1.151rem 0 0;
  }
  .listBox.jurorBox .badge span {
    font-size: 1.1rem;
  }
  .listBox.jurorBox .badge span:before {
    margin: 0 0.4rem;
  }
  .listBox.jurorBox .img {
    height: 16rem;
  }
  .listBox.jurorBox .name {
    margin-top: 0.6rem;
    padding: 0 1.2rem;
  }
  .listBox.jurorBox .name p {
    font-size: 1.3rem;
    line-height: normal;
  }
  .listBox.jurorBox .name p span {
    margin-left: 0.3rem;
    font-size: 1.1rem;
  }
  .listBox.jurorBox .lastJuror {
    margin-top: 1rem;
    padding: 1rem 1.2rem 1.4rem 1.2rem;
  }
  .listBox.jurorBox .lastJuror strong {
    font-size: 1.1rem;
    line-height: normal;
  }
  .listBox.jurorBox .lastJuror span {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    line-height: normal;
  }
  .contestBox {
    border-radius: 2rem;
  }
  .contestBox .infoTop {
    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;
    padding: 1.6rem 2rem 0 2rem;
  }
  .contestBox .infoTop .date span {
    font-size: 1.2rem;
  }
  .contestBox .name {
    margin-top: 1.6rem;
    padding: 0 2rem;
  }
  .contestBox .name p {
    font-size: 2rem;
  }
  .contestBox .infoBottom {
    margin-top: 1.6rem;
    padding: 0 2rem 1.4rem 2rem;
  }
  .contestResultBox {
    overflow: hidden;
    border: 1px solid #ededed;
    border-radius: 2rem;
    background: var(--white);
  }
  .contestResultBox .use {
    padding: 1.6rem 1.707rem 0 1.707rem;
  }
  .contestResultBox .use span {
    font-size: 1.3rem;
  }
  .contestResultBox .use span:before {
    margin: 0 0.4rem;
  }
  .contestResultBox .name {
    margin-top: 0.853rem;
    padding: 0 1.707rem;
  }
  .contestResultBox .name p {
    font-size: 1.5rem;
  }
  .contestResultBox .chipsWrap {
    margin-top: 1.057rem;
    padding: 0 1.9rem 1.7rem 1.9rem;
  }
  .contestResultBox .chipsWrap .chips {
    font-size: 1.3rem;
  }
  .contestResultBox .winner {
    padding: 1.707rem;
  }
  .contestResultBox .winner span {
    font-size: 1.4rem;
  }
  .outlineBoxWrap .title {
    font-size: 1.8rem;
    line-height: normal;
  }
  .outlineBoxWrap .outlineBox {
    margin-top: 1.4rem;
    padding: 1.9rem 2rem 1.8rem;
    border-radius: 1rem;
  }
  .outlineBoxWrap .outlineBox ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .outlineBoxWrap .outlineBox ul li span {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9rem;
            flex: 0 0 9rem;
    font-size: 1.3rem;
    line-height: 2rem;
  }
  .outlineBoxWrap .outlineBox ul li strong {
    color: var(--base);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 2rem;
  }
  .outlineBoxWrap .outlineBox p {
    font-size: 1.3rem;
    line-height: 2.4rem;
  }
  .loginForm .inner {
    width: calc(100% - 4rem);
    padding: 3rem;
  }
  .loginForm .inner .logo {
    margin: 3.759rem auto 0 auto;
  }
  .loginForm .inner .inputForm {
    width: 100%;
    margin-top: 5.65rem;
  }
  .loginForm .inner .inputForm .formRow {
    margin-top: 1.2rem;
  }
  .loginForm .inner .inputForm .formRow label {
    font-size: 1.063rem;
  }
  .loginForm .inner .inputForm .formRow .inputWrap {
    height: 3.342rem;
    margin-top: 0.8rem;
    padding: 0 1.5rem;
    border-radius: 1.6rem;
  }
  .loginForm .inner .inputForm .formRow .inputWrap input[type=text],
  .loginForm .inner .inputForm .formRow .inputWrap input[type=password] {
    font-size: 1.063rem;
  }
  .loginForm .inner .inputForm .saveId {
    margin-top: 1.268rem;
  }
  .loginForm .inner .inputForm .saveId label {
    font-size: 1.063rem;
  }
  .loginForm .inner .inputForm .saveId label input[type=checkbox] {
    width: 1.519rem;
    height: 1.519rem;
    margin-right: 0.608rem;
  }
  .loginForm .inner .emailLogin {
    margin-top: 1.823rem;
  }
  .loginForm .inner .emailLogin a {
    height: 3.342rem;
    border-radius: 1.6rem;
    font-size: 1.215rem;
    line-height: normal;
  }
  .loginForm .inner .loginUtil {
    margin-top: 1.6rem;
  }
  .loginForm .inner .loginUtil li:before {
    height: 1.2rem;
    margin: 0 0.76rem;
  }
  .loginForm .inner .loginUtil li a {
    font-size: 1.063rem;
  }
  .loginForm .inner .snsLogin {
    margin-top: 4rem;
  }
  .loginForm .inner .snsLogin li {
    margin-top: 1.2rem;
  }
  .loginForm .inner .snsLogin li:first-child {
    margin-top: 0;
  }
  .loginForm .inner .snsLogin li a {
    height: 3.342rem;
    padding: 0 1.6rem;
    border-radius: 1.6rem;
    font-size: 1.215rem;
  }
  .loginForm .inner .snsLogin li a.btnKakao:before {
    left: 2rem;
    width: 1.4rem;
    height: 1.2rem;
  }
  .loginForm .inner .snsLogin li a.btnNaver:before {
    left: 2rem;
    width: 1.4rem;
    height: 1.2rem;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .rightBanner {
    display: none;
  }
}
html,
body {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.wrapper {
  overflow-x: hidden;
  min-height: 100%;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  height: 8rem;
  padding: 0 10rem;
  -webkit-box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
}
.header .logo {
  width: 19.2rem;
  height: 2.1rem;
  background: url(../images/common/logo_top.png) no-repeat 0 0;
  background-size: cover;
}
.header .navigation {
  margin-left: auto;
}
.header .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .navigation ul li {
  margin-right: 6rem;
}
.header .navigation ul li a {
  color: var(--base);
  font-size: 1.6rem;
  font-weight: 500;
}
.header .navigation ul li a.active, .header .navigation ul li a.aboutUs {
  padding: 0.6rem 1.6rem;
  border-radius: 1.6rem;
  background: var(--blue);
  color: var(--white);
}
.header .navigationAll button {
  width: 2.6rem;
  height: 1.5rem;
  background: url(../images/common/btn_pc_all_nav.png) no-repeat 0 0;
  background-size: cover;
}
.header .navigationAllMo {
  display: none;
}
.header .navigationAllMo button {
  width: 2rem;
  height: 2rem;
  background: url(../images/common/btn_m_all_nav.png) no-repeat 0 0;
  background-size: cover;
}

.contents .contentsTop {
  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;
  height: 39.2rem;
  background: url(../images/sub/bg_top.png) no-repeat 100% 100%, -webkit-gradient(linear, left top, left bottom, from(#689BFF), to(#2C74FF));
  background: url(../images/sub/bg_top.png) no-repeat 100% 100%, linear-gradient(180deg, #689BFF 0%, #2C74FF 100%);
  background-size: 103.2rem 37.9rem, 100% 100%;
}
.contents .contentsTop .inner {
  width: 120rem;
}
.contents .contentsTop .text .title {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 600;
}
.contents .contentsTop .text ul {
  margin-top: 2rem;
}
.contents .contentsTop .text ul li {
  position: relative;
  padding: 0 0 0 1rem;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.8rem;
}
.contents .contentsTop .text ul li::before {
  position: absolute;
  left: 0;
  top: -0.1rem;
  font-size: 2rem;
  font-weight: 600;
  content: "·";
}
.contents .contentsTop .text ul li a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}
.contents .contentsTop .text ul li br {
  display: none;
}
.contents .contentsTop .searchWrap {
  width: 58rem;
  margin-top: 3.6rem;
}
.contents .contentsTop.nonContents {
  height: 18rem;
  background: url(../images/sub/bg_top_non_contents.png) no-repeat 100% 100%, -webkit-gradient(linear, left top, left bottom, from(#689bff), to(#2c74ff));
  background: url(../images/sub/bg_top_non_contents.png) no-repeat 100% 100%, linear-gradient(180deg, #689bff 0%, #2c74ff 100%);
  background-size: 103.2rem 17.6rem, 100% 100%;
  -webkit-box-shadow: 0 8px 20px rgba(0, 12, 75, 0.1);
          box-shadow: 0 8px 20px rgba(0, 12, 75, 0.1);
}
.contents section {
  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;
  position: relative;
}
.contents section > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  max-width: 120rem;
  padding: 8rem 0 8rem 0;
}
.contents section > .inner .boxWrap {
  margin-top: 4rem;
}
.contents section .contentsTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contents section .contentsTitle h3 {
  color: var(--base);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: normal;
}
.contents section .contentsTitle h3 span {
  margin-left: 0.4rem;
  color: var(--base);
  font-size: 1.6rem;
  font-weight: 400;
}
.contents section .contentsTitle .btnMore {
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: normal;
}
.contents section .contentsTitle .btnMore::after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.5rem;
  background: url(../images/icon/icon_plus.png) no-repeat 0 0;
  background-size: cover;
  content: "";
}
.contents section .paginate {
  margin-top: 8.9rem;
}
.contents section.intro {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.contents section.intro .inner {
  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;
  width: 100%;
  max-width: 100%;
  height: 87.4rem;
  padding: 0;
  border-radius: 0 0 6rem 6rem;
  background: var(--white);
}
.contents section.intro p {
  margin-top: -8rem;
  color: var(--base);
  font-size: 7rem;
  font-weight: 700;
  text-align: center;
  line-height: 8.4rem;
}
.contents section.intro p span {
  display: inline-block;
  padding: 0.3rem 4rem 1.3rem;
  border-radius: 6.5rem;
}
.contents section.intro p span.green {
  margin: 0 2.5rem;
  background: var(--green);
}
.contents section.intro p span.blue {
  margin-left: 2.5rem;
  padding: 0.3rem 6.6rem 1.3rem;
  background: var(--blue);
  color: var(--white);
}
.contents section.intro .scrollDown {
  position: absolute;
  bottom: 4rem;
  -webkit-animation: MoveUpDown 1.5s linear infinite;
          animation: MoveUpDown 1.5s linear infinite;
}
.contents section.intro .scrollDown .scrollDownIcon {
  display: block;
  width: 3.7rem;
  height: 2.35rem;
  background: url(../images/icon/icon_scroll_down.png) no-repeat 0 0;
  background-size: cover;
}
@-webkit-keyframes MoveUpDown {
  0%, 100% {
    bottom: 4rem;
  }
  50% {
    bottom: 6rem;
  }
}
@keyframes MoveUpDown {
  0%, 100% {
    bottom: 4rem;
  }
  50% {
    bottom: 6rem;
  }
}
.contents section.contest {
  min-height: 80rem;
  margin-top: -6.5rem;
  padding-top: 6.5rem;
  background: url(../images/sub/bg_contest.png) no-repeat 100% 100%, -webkit-gradient(linear, left top, left bottom, from(#689BFF), to(#2C74FF));
  background: url(../images/sub/bg_contest.png) no-repeat 100% 100%, linear-gradient(180deg, #689BFF 0%, #2C74FF 100%);
  background-size: 103.2rem 72.1rem, 100% 100%;
}
.contents section.newContest {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contents section.newContest .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  max-width: 120rem;
  padding: 16rem 0 16rem 0;
}
.contents section.contestResult {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contents section.contestResult .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  max-width: 120rem;
  padding: 16rem 0 21.8rem 0;
}
.contents section.contestResult .contestResultSwiper {
  overflow: visible;
}
.contents section.contestResult .contestResultSwiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem 2.4rem;
}
.contents section.contestResult .swiper-unit {
  display: none;
}
.contents section.bottomBanner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f4f7ff;
}
.contents section.bottomBanner .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  max-width: 120rem;
  padding: 16rem 0 16rem 0;
}
.contents section.bottomBanner .bannerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.contents section.bottomBanner .bannerBox.isMobile {
  display: none;
}
.contents section.bottomBanner .bannerBox .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 1.6rem;
}
.contents section.bottomBanner .bannerBox .col .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 1.6rem 0 0 0;
}
.contents section.bottomBanner .bannerBox .col:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52.3rem;
          flex: 0 0 52.3rem;
  margin-left: 0;
}
.contents section.bottomBanner .bannerBox .banner {
  border-radius: 2rem;
  background: var(--white);
}
.contents section.bottomBanner .bannerBox .banner a {
  display: block;
  padding: 6.2rem 5.5rem;
  height: 100%;
}
.contents section.bottomBanner .bannerBox .banner strong {
  color: var(--black);
  font-size: 2.4rem;
  line-height: 3.2rem;
}
.contents section.bottomBanner .bannerBox .banner p {
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}
.contents section.bottomBanner .bannerBox .banner.contest {
  height: 47.5rem;
  background: url(../images/main/bg_banner_contest.png) no-repeat 100% 100%, -webkit-gradient(linear, left top, left bottom, from(#000000), to(#002263));
  background: url(../images/main/bg_banner_contest.png) no-repeat 100% 100%, linear-gradient(180deg, #000000 0%, #002263 100%);
  background-size: 33.2rem 33rem, 100%;
}
.contents section.bottomBanner .bannerBox .banner.contest strong {
  color: var(--white);
  font-size: 3.2rem;
  line-height: 4.8rem;
}
.contents section.bottomBanner .bannerBox .banner.contest p {
  margin-top: 1.2rem;
  color: var(--white);
}
.contents section.bottomBanner .bannerBox .banner.contest p span {
  color: #a1ff75;
}
.contents section.bottomBanner .bannerBox .banner.juror {
  margin-top: 1.6rem;
}
.contents section.bottomBanner .bannerBox .banner.juror p {
  margin-top: 1.4rem;
}
.contents section.bottomBanner .bannerBox .banner.winner {
  height: 28.6rem;
  background: var(--blue) url(../images/main/bg_banner_winner.png) no-repeat 100% 100%;
  background-size: 35.3rem 28.6rem;
}
.contents section.bottomBanner .bannerBox .banner.winner strong {
  color: var(--white);
  font-size: 3.2rem;
  line-height: 4.8rem;
}
.contents section.bottomBanner .bannerBox .banner.winner p {
  margin-top: 1.2rem;
  color: var(--white);
}
.contents section.bottomBanner .bannerBox .banner.winner p span {
  color: #a1ff75;
}
.contents section.bottomBanner .bannerBox .banner.ordering {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36.2rem;
          flex: 0 0 36.2rem;
  background: #d6e2ff url(../images/main/bg_banner_ordering.png) no-repeat calc(100% - 2.9rem) calc(100% - 3.5rem);
  background-size: 19.2rem 18rem;
}
.contents section.bottomBanner .bannerBox .banner.ordering a {
  padding: 5rem 5.5rem;
}
.contents section.bottomBanner .bannerBox .banner.ordering strong {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
.contents section.bottomBanner .bannerBox .banner.architect {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin-left: 1.6rem;
}
.contents section.bottomBanner .bannerBox .banner.architect a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5rem 4rem 5rem 3.9rem;
}
.contents section.bottomBanner .bannerBox .banner.architect p {
  margin-top: auto;
}

.contents section > .inner .boxWrap .adBanner:not(.rightBanner) {
  display: none;
}
.contents section .topDetailInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  padding-bottom: 11.2rem;
  border-bottom: 1px solid var(--border);
}
.contents section .topDetailInfo .title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.contents section .topDetailInfo .title .chips {
  height: 3.8rem;
  padding: 0 1.6rem;
  border-radius: 1.8rem;
  font-size: 2rem;
  font-weight: 700;
}
.contents section .topDetailInfo .title h3 {
  margin-top: 2.4rem;
  color: var(--base);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: normal;
}
.contents section .topDetailInfo .downloadList {
  margin-top: 5.6rem;
}
.contents section .topDetailInfo .downloadList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contents section .topDetailInfo .downloadList ul li {
  margin: 0 0 0 3rem;
}
.contents section .topDetailInfo .downloadList ul li:first-child {
  margin-left: 0;
}
.contents section .topDetailInfo .downloadList ul li a {
  padding: 2.2rem 5.1rem;
  font-size: 2rem;
  font-weight: 400;
}
.contents section .topDetailInfo .thumImage {
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 23.6rem;
  height: 23.6rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
}
.contents section .topDetailInfo .thumImage.nonThumImage {
  background: #ddd;
}
.contents section .topDetailInfo .thumImage.nonThumImage img {
  -o-object-fit: cover;
     object-fit: cover;
}
.contents section .topDetailInfo .thumImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contents section .topDetailInfo + .boxWrap {
  margin-top: 10rem;
}
.contents .listTopFilter {
  padding: 0;
}
.contents .listTopFilter > .inner {
  padding: 19.2rem 0 19.2rem 0;
}
.contents .listTopFilter > .inner .boxWrap {
  margin-top: 4rem;
}
.contents .listTopFilter > .inner .paginate {
  margin-top: 16rem;
}
.contents .listTopFilter.contestResultListPage > .inner .grid2 .contestBox:nth-child(n+5) {
  display: block;
}
.contents .nonListTop > .inner {
  padding: 19.2rem 0 19.2rem 0;
}
.contents .nonListTop > .inner .boxWrap {
  margin-top: 0;
}
.contents .nonListTop > .inner .paginate {
  margin-top: 16rem;
}
.contents .listTopDetailInfo > .inner {
  padding: 16rem 0 19.2rem 0;
}
.contents .listTopDetailInfo > .inner .topDetailInfo + .contentsTitle {
  margin-top: 11.2rem;
}
.contents .listTopDetailInfo > .inner .topDetailInfo + .contentsTitle h3 {
  font-size: 2.6rem;
}
.contents .listTopDetailInfo > .inner .topDetailInfo + .boxWrap {
  margin-top: 11.2rem;
}
.contents .listTopDetailInfo > .inner .topDetailInfo + .boxWrap + .contentsTitle {
  margin: 11.2rem 0 0 0;
  padding-top: 10rem;
  border-top: 1px solid var(--border);
}
.contents .listTopDetailInfo > .inner .contentsTitle h3 {
  font-size: 2.6rem;
}
.contents .listTopDetailInfo > .inner .paginate {
  margin-top: 16rem;
}
.contents .contestResultPage > .inner {
  padding: 16rem 0 19.2rem 0;
}
.contents .contestResultPage > .inner .article:first-child {
  margin-top: 0;
}
.contents .contestResultPage .contestResultTitle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.contents .contestResultPage .contestResultTitle .chips {
  height: 3.8rem;
  padding: 0 1.6rem;
  border-radius: 1.8rem;
  font-size: 2rem;
}
.contents .contestResultPage .contestResultTitle .chips.ing {
  background: var(--blue);
  color: var(--white);
}
.contents .contestResultPage .contestResultTitle h3 {
  margin-top: 2.4rem;
  color: var(--base);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: normal;
}
.contents .contestResultPage .contestResultTitle .typeList {
  margin-top: 2.4rem;
}
.contents .contestResultPage .contestResultTitle .typeList span {
  color: var(--grey);
  font-size: 2rem;
  font-weight: 400;
}
.contents .contestResultPage .contestResultTitle .typeList span:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0.8rem;
  content: "|";
}
.contents .contestResultPage .contestResultTitle .typeList span:first-child::before {
  display: none;
  content: none;
}
.contents .contestResultPage .contestResultTitle .typeList span.type {
  color: var(--blue);
}
.contents .contestResultPage .boxWrap {
  margin-top: 11.2rem;
}
.contents .contestResultPage .article {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-top: 11.2rem;
}
.contents .contestResultPage .article .boxWrap {
  margin-top: 2rem;
}
.contents .contestResultPage .article .downloadList {
  margin-top: 2rem;
}
.contents .contestResultPage .article .contentsTitle h3 {
  font-size: 2.6rem;
}
.contents .contestResultPage .article .contentsTitle h3 span {
  margin-left: 0.4rem;
  font-size: 1.6rem;
  font-weight: 400;
}
.contents .contestResultPage .article.overview {
  padding-bottom: 11rem;
  border-bottom: 1px solid var(--border);
}
.contents .contestResultPage .article.overview .boxWrap {
  margin-top: 12rem;
}
.contents .contestResultPage .failureInfo {
  margin-top: 11.2rem;
}
.contents .contestResultPage .failureInfo p {
  color: var(--grey);
  font-size: 1.4rem;
  line-height: 2rem;
}
.contents .contestResultPage .failureInfo p br {
  display: none;
}
.contents .contestResultPage .failureInfo p a {
  color: inherit;
  text-decoration: underline;
  margin-left: 0;
}
.contents .contestResultGallery {
  padding: 12.3rem 0 31.9rem 0;
  background: #F4F7FF;
}
.contents .contestResultGallery .inner {
  padding-top: 0;
}
.contents .contestResultGallery .colBind {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.contents .contestResultGallery .colBind .col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.contents .contestResultGallery .colBind .col .contentsTitle h3 {
  font-size: 2.6rem;
}
.contents .contestResultGallery .colBind .col .downloadList {
  margin-top: 2rem;
}
.contents .contestResultGallery .galleryWrap {
  margin-top: 10rem;
}
.contents .contestResultGallery .galleryWrap .contentsTitle h3 {
  font-size: 2.6rem;
}
.contents .contestResultGallery .galleryWrap .contentsTitle h3 span {
  margin-left: 0.4rem;
  font-size: 1.6rem;
  font-weight: 400;
}
.contents .contestResultGallery .galleryWrap .galleryBox {
  margin-top: 2rem;
  padding: 4rem 4rem 4rem 4rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: var(--white);
}
.contents .contestResultGallery .galleryWrap .galleryBox .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--border);
}
.contents .contestResultGallery .galleryWrap .galleryBox .tabs li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14.2rem;
  height: 4.8rem;
  padding: 0 0 0 3rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--base);
  font-size: 1.8rem;
  font-weight: 600;
}
.contents .contestResultGallery .galleryWrap .galleryBox .tabs li a:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.9rem;
  background: url(../images/icon/icon_winner.png) no-repeat 0 0;
  background-size: cover;
  content: "";
}
.contents .contestResultGallery .galleryWrap .galleryBox .tabs li a.active {
  background: var(--blue);
  color: var(--white);
}
.contents .contestResultGallery .galleryWrap .galleryBox .tabs li a.active:before {
  background: url(../images/icon/icon_winner_on.png) no-repeat 0 0;
  background-size: cover;
}
.contents .contestResultGallery .galleryWrap .galleryBox .galleryContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerItem {
  overflow: hidden;
  width: 80rem;
  height: 48.4rem;
  border-radius: 2rem;
  background: #ddd;
}
.contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerItem img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList {
  margin-left: 1.6rem;
}
.contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList ul li {
  margin-top: 2.4rem;
}
.contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList ul li:first-child {
  margin-top: 0;
}
.contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList ul li .profileWrap {
  padding: 1.2rem 1.6rem;
}
.contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList ul li .profileWrap .profileImg {
  width: 6rem;
  height: 6rem;
}
.contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList ul li .profileWrap .profileText strong {
  margin-top: 0.2rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.contents .myPage > .inner {
  padding: 9.5rem 0 36.1rem 0;
}
.contents .myPage .myPageWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contents .myPage .myPageWrap .profileForm {
  width: 27.8rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.contents .myPage .myPageWrap .memeberInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 2.6rem;
}
.contents .myPage .myPageWrap .memeberInfo .infoBox {
  width: 100%;
  margin-top: 2.4rem;
  padding: 5.2rem 9.3rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.contents .myPage .myPageWrap .memeberInfo .infoBox:first-child {
  margin-top: 0;
}
.contents .myPage .myPageWrap .memeberInfo .infoBox .boxTitle strong {
  color: var(--base);
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.2rem;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--blue);
}
.footer .inner {
  width: 120rem;
  padding: 7.2rem 0 6.4rem 0;
}
.footer .fotterLogo h3 {
  width: 18.3rem;
  height: 2rem;
  background: url(../images/common/logo_bottom.png) no-repeat 0 0;
  background-size: cover;
}
.footer .fotterLogo p {
  margin-top: 1.298rem;
  color: var(--white);
  font-weight: 700;
  font-size: 2.4rem;
}
.footer .policyList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4.8rem;
}
.footer .policyList li:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0.8rem;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  content: "|";
}
.footer .policyList li:first-child::before {
  display: none;
  content: none;
}
.footer .policyList li a {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
}
.footer .companyInfo {
  margin-top: 3.2rem;
}
.footer .companyInfo ul li span {
  margin-left: 0.4rem;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.4rem;
}
.footer .companyInfo ul li span:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0.4rem 0 0;
  content: "·";
}
.footer .copyright {
  margin-top: 1.1rem;
  color: var(--white);
  font-size: 1.2rem;
}

@media (min-width: 320px) and (max-width: 768px) {
  .header {
    z-index: 2;
    height: 7rem;
    padding: 0 2rem;
  }
  .header .logo {
    width: 14.6rem;
    height: 1.6rem;
  }
  .header .navigation {
    display: none;
  }
  .header .navigationAll {
    display: none;
  }
  .header .navigationAllMo {
    display: block;
    margin-left: auto;
  }
  .contents:has(.listTopDetailInfo) .nonContents {
    display: none;
  }
  .contents .contentsTop {
    height: 34.2rem;
    padding: 0 3rem 0 3rem;
    background: url(../images/sub/bg_top.png) no-repeat 100% 100%, -webkit-gradient(linear, left top, left bottom, from(#689BFF), to(#2C74FF));
    background: url(../images/sub/bg_top.png) no-repeat 100% 100%, linear-gradient(180deg, #689BFF 0%, #2C74FF 100%);
    background-size: 37.5rem 17.8rem, 100% 100%;
  }
  .contents .contentsTop .inner {
    width: 100%;
  }
  .contents .contentsTop .inner .paginate {
    margin-top: 8.5rem;
  }
  .contents .contentsTop .text .title {
    font-size: 2.1rem;
  }
  .contents .contentsTop .text ul {
    margin-top: 1.2rem;
  }
  .contents .contentsTop .text ul li {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
  .contents .contentsTop .text ul li br {
    display: block;
  }
  .contents .contentsTop .searchWrap {
    width: 100%;
    margin-top: 3.2rem;
  }
  .contents .contentsTop.nonContents {
    height: 9.7rem;
    padding: 0;
    background-size: 37.5rem 9.7rem, 100% 100%;
  }
  .contents section .contentsTitle h3 {
    font-size: 1.8rem;
  }
  .contents section .contentsTitle .btnMore {
    font-size: 1.3rem;
  }
  .contents section .contentsTitle .btnMore::after {
    width: 0.8rem;
    height: 0.8rem;
  }
  .contents section.intro {
    position: relative;
    z-index: 1;
    background: transparent;
  }
  .contents section.intro .inner {
    height: 66.8rem;
    border-radius: 0 0 4rem 4rem;
  }
  .contents section.intro p {
    margin-top: -7rem;
    font-size: 3.6rem;
    text-align: center;
    line-height: 5.8rem;
  }
  .contents section.intro p span.green {
    margin: 0 0.4rem;
    padding: 0 1.4rem 0.6rem 1.4rem;
    border-radius: 3rem;
    line-height: normal;
  }
  .contents section.intro p span.blue {
    margin-left: 0;
    padding: 0.3rem 2rem 0.9rem;
    line-height: normal;
  }
  .contents section.intro .scrollDown {
    position: absolute;
    bottom: 5.1rem;
  }
  .contents section.intro .scrollDown .scrollDownIcon {
    width: 2.131rem;
    height: 1.337rem;
  }
  .contents section.contest {
    margin-top: -4rem;
    padding-top: 4rem;
    min-height: 40.9rem;
    background: url(../images/sub/bg_contest.png) no-repeat 100% 100%, -webkit-gradient(linear, left top, left bottom, from(#689BFF), to(#2C74FF));
    background: url(../images/sub/bg_contest.png) no-repeat 100% 100%, linear-gradient(180deg, #689BFF 0%, #2C74FF 100%);
    background-size: 29rem 20.3rem, 100% 100%;
    -webkit-box-shadow: 0px 8px 20px rgba(0, 12, 75, 0.1);
            box-shadow: 0px 8px 20px rgba(0, 12, 75, 0.1);
  }
  .contents section.newContest .inner {
    padding: 6.4rem 2rem 6.4rem 2rem;
  }
  .contents section.newContest .inner .boxWrap {
    margin-top: 1.6rem;
  }
  .contents section.contestResult .inner {
    overflow: hidden;
    position: relative;
    max-width: none;
    padding: 6.4rem 0;
  }
  .contents section.contestResult .inner .contentsTitle {
    padding: 0 2rem;
  }
  .contents section.contestResult .inner .boxWrap {
    gap: 0;
    margin-top: 1.6rem;
    padding: 0 2rem;
  }
  .contents section.contestResult .contestResultSwiper {
    overflow: hidden;
  }
  .contents section.contestResult .contestResultSwiper .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
  }
  .contents section.contestResult .swiper-unit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: none;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative;
    margin-top: 2.4rem;
  }
  .contents section.contestResult .swiper-unit .swiper-pagination-fraction,
  .contents section.contestResult .swiper-unit .swiper-button-next,
  .contents section.contestResult .swiper-unit .swiper-button-prev {
    opacity: 1;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
  }
  .contents section.contestResult .swiper-unit .swiper-pagination-fraction::before, .contents section.contestResult .swiper-unit .swiper-pagination-fraction::after,
  .contents section.contestResult .swiper-unit .swiper-button-next::before,
  .contents section.contestResult .swiper-unit .swiper-button-next::after,
  .contents section.contestResult .swiper-unit .swiper-button-prev::before,
  .contents section.contestResult .swiper-unit .swiper-button-prev::after {
    display: none;
  }
  .contents section.contestResult .swiper-unit .swiper-pagination-fraction {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 4rem;
    padding: 0 1.6rem;
    border-radius: 4rem;
    background: var(--white);
    color: #1d1d1d;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
  }
  .contents section.contestResult .swiper-unit .swiper-pagination-fraction .swiper-pagination-current {
    color: var(--blue);
  }
  .contents section.contestResult .swiper-unit .swiper-button-next,
  .contents section.contestResult .swiper-unit .swiper-button-prev {
    width: 4rem;
    height: 4rem;
    margin-left: 0.8rem;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    background: var(--white) url(../images/icon/icon_arrow_swiper.png) no-repeat 50% 50%;
    background-size: 2.4rem 2.4rem;
  }
  .contents section.contestResult .swiper-unit .swiper-button-next {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .contents section.bottomBanner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contents section.bottomBanner .bannerBox.isDesktop {
    display: none;
  }
  .contents section.bottomBanner .bannerBox.isMobile {
    display: block;
  }
  .contents section.bottomBanner .bannerBox .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 1.2rem 0 0 0;
  }
  .contents section.bottomBanner .bannerBox .banner {
    border-radius: 1rem;
  }
  .contents section.bottomBanner .bannerBox .banner a {
    padding: 3.1rem 2.4rem;
  }
  .contents section.bottomBanner .bannerBox .banner strong {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .contents section.bottomBanner .bannerBox .banner p {
    font-size: 1.3rem;
    line-height: 2rem;
  }
  .contents section.bottomBanner .bannerBox .banner.contest {
    height: 22rem;
    background: url(../images/main/bg_banner_contest.png) no-repeat calc(100% - 1.45rem) calc(100% - 0.6rem), -webkit-gradient(linear, left top, left bottom, from(#000000), to(#002263));
    background: url(../images/main/bg_banner_contest.png) no-repeat calc(100% - 1.45rem) calc(100% - 0.6rem), linear-gradient(180deg, #000000 0%, #002263 100%);
    background-size: 15.2rem 15.2rem, 100%;
  }
  .contents section.bottomBanner .bannerBox .banner.contest strong {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .contents section.bottomBanner .bannerBox .banner.contest p {
    margin-top: 0.8rem;
    font-size: 1.3rem;
    line-height: 2rem;
  }
  .contents section.bottomBanner .bannerBox .banner.winner {
    height: 15.3rem;
    margin-top: 1.2rem;
    background: var(--blue) url(../images/main/bg_banner_winner.png) no-repeat 100% 100%;
    background-size: 16.2rem 14.4rem;
  }
  .contents section.bottomBanner .bannerBox .banner.winner strong {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .contents section.bottomBanner .bannerBox .banner.winner p {
    margin-top: 0.8rem;
    font-size: 1.3rem;
    line-height: 2rem;
  }
  .contents section.bottomBanner .bannerBox .banner.ordering {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    height: 22rem;
    margin-top: 1.2rem;
    background: #d6e2ff url(../images/main/bg_banner_ordering.png) no-repeat calc(100% - 1.35rem) calc(100% - 1.2rem);
    background-size: 13.3rem 12.5rem;
  }
  .contents section.bottomBanner .bannerBox .banner.ordering a {
    padding: 3.1rem 2.4rem;
  }
  .contents section.bottomBanner .bannerBox .banner.ordering strong {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .contents section.bottomBanner .bannerBox .banner.architect {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin: 0;
  }
  .contents section.bottomBanner .bannerBox .banner.architect a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.4rem;
  }
  .contents section.bottomBanner .bannerBox .banner.architect strong {
    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-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .contents section.bottomBanner .bannerBox .banner.architect strong:after {
    display: block;
    width: 1.4rem;
    height: 1.15rem;
    margin-top: 1.4rem;
    background: url(../images/icon/icon_arrow_banner.png) no-repeat 0 0;
    background-size: cover;
    content: "";
  }
  .contents section.bottomBanner .bannerBox .banner.juror {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 1.1rem);
            flex: 0 0 calc(50% - 1.1rem);
    margin: 0 0 0 1.1rem;
  }
  .contents section.bottomBanner .bannerBox .banner.juror a {
    padding: 2.4rem;
  }
  .contents section.bottomBanner .bannerBox .banner.juror p {
    margin-top: 0.9rem;
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
  .contents section.bottomBanner .inner {
    padding: 6.4rem 2rem;
  }
  .contents section > .inner .boxWrap .adBanner:not(.rightBanner) {
    display: block;
  }
  .contents section .topDetailInfo {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% + 4rem);
            flex: 0 0 calc(100% + 4rem);
    margin: 0 -2rem;
    padding-bottom: 0;
    border-bottom: 0 none;
  }
  .contents section .topDetailInfo .title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 4rem;
    padding: 0 2rem;
  }
  .contents section .topDetailInfo .title .chips {
    height: 3rem;
    padding: 0 1.6rem;
    font-size: 1.5rem;
  }
  .contents section .topDetailInfo .title h3 {
    margin-top: 1.6rem;
    font-size: 2.5rem;
  }
  .contents section .topDetailInfo .downloadList {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin-top: 3.2rem;
    padding: 0 2rem;
  }
  .contents section .topDetailInfo .downloadList ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contents section .topDetailInfo .downloadList ul li {
    margin: 1.6rem 0 0 0;
  }
  .contents section .topDetailInfo .downloadList ul li:first-child {
    margin-top: 0;
  }
  .contents section .topDetailInfo .downloadList ul li a {
    padding: 1.3rem 3rem;
    font-size: 1.5rem;
  }
  .contents section .topDetailInfo .thumImage {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    position: relative;
    width: 100%;
    height: 23.4rem;
    border-radius: 0;
  }
  .contents .listTopFilter {
    padding: 0;
  }
  .contents .listTopFilter > .inner {
    padding: 9.6rem 2rem 6rem 2rem;
  }
  .contents .listTopFilter > .inner .boxWrap {
    margin-top: 1.6rem;
  }
  .contents .listTopFilter > .inner .paginate {
    margin-top: 8.5rem;
  }
  .contents .listTopFilter.contestResultListPage > .inner .grid2 .contestBox:nth-child(n+5) {
    display: block;
  }
  .contents .nonListTop > .inner {
    padding: 9.6rem 2rem 6rem 2rem;
  }
  .contents .nonListTop > .inner .paginate {
    margin-top: 8.5rem;
  }
  .contents .listTopDetailInfo > .inner {
    padding: 0 2rem 6rem 2rem;
  }
  .contents .listTopDetailInfo > .inner .contentsTitle h3 {
    font-size: 1.8rem;
  }
  .contents .listTopDetailInfo > .inner .contentsTitle + .boxWrap {
    margin-top: 1.4rem;
  }
  .contents .listTopDetailInfo > .inner .topDetailInfo + .contentsTitle {
    margin-top: 5.9rem;
  }
  .contents .listTopDetailInfo > .inner .topDetailInfo + .contentsTitle h3 {
    font-size: 1.8rem;
  }
  .contents .listTopDetailInfo > .inner .topDetailInfo + .boxWrap {
    margin-top: 6.4rem;
  }
  .contents .listTopDetailInfo > .inner .topDetailInfo + .boxWrap + .contentsTitle {
    margin: 6.4rem 0 1.4rem 0;
    padding-top: 0;
    border-top: 0 none;
  }
  .contents .listTopDetailInfo > .inner .topDetailInfo + .boxWrap + .contentsTitle + .boxWrap {
    margin-top: 0;
  }
  .contents .listTopDetailInfo > .inner .paginate {
    margin-top: 8.5rem;
  }
  .contents .contestResultPage > .inner {
    padding: 5.9rem 2rem 6.4rem 2rem;
  }
  .contents .contestResultPage .contestResultTitle .chips {
    height: 3rem;
    padding: 0 1.6rem;
    font-size: 1.5rem;
  }
  .contents .contestResultPage .contestResultTitle h3 {
    margin-top: 1.6rem;
    font-size: 2.5rem;
  }
  .contents .contestResultPage .contestResultTitle .typeList {
    margin-top: 1.6rem;
  }
  .contents .contestResultPage .contestResultTitle .typeList span {
    font-size: 1.5rem;
    font-weight: 400;
  }
  .contents .contestResultPage .contestResultTitle .typeList span:before {
    margin: 0 0.4rem;
  }
  .contents .contestResultPage .boxWrap {
    margin-top: 7.5rem;
  }
  .contents .contestResultPage .article {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 6.4rem;
  }
  .contents .contestResultPage .article .boxWrap {
    gap: 1.2rem;
    margin-top: 1.4rem;
  }
  .contents .contestResultPage .article .downloadList {
    margin-top: 1.4rem;
  }
  .contents .contestResultPage .article .contentsTitle h3 {
    font-size: 1.8rem;
  }
  .contents .contestResultPage .article .contentsTitle h3 span {
    font-size: 1.1rem;
  }
  .contents .contestResultPage .article.overview {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .contents .contestResultPage .article.overview .boxWrap {
    margin-top: 9.6rem;
    gap: 0;
  }
  .contents .contestResultPage .failureInfo {
    margin-top: 6.4rem;
    padding: 0 1rem;
  }
  .contents .contestResultPage .failureInfo p {
    font-size: 1.2rem;
  }
  .contents .contestResultPage .failureInfo p br {
    display: block;
  }
  .contents .contestResultPage .failureInfo p a {
    margin-left: 0.8rem;
  }
  .contents .contestResultGallery {
    padding: 0;
  }
  .contents .contestResultGallery .inner {
    max-width: 100%;
    padding: 6.4rem 2rem 9.8rem 2rem;
  }
  .contents .contestResultGallery .colBind {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contents .contestResultGallery .colBind .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 6.4rem;
  }
  .contents .contestResultGallery .colBind .col:first-child {
    margin-top: 0;
  }
  .contents .contestResultGallery .colBind .col .contentsTitle h3 {
    font-size: 1.8rem;
  }
  .contents .contestResultGallery .colBind .col .downloadList {
    margin-top: 1.4rem;
  }
  .contents .contestResultGallery .galleryWrap {
    margin-top: 6.4rem;
  }
  .contents .contestResultGallery .galleryWrap .contentsTitle h3 {
    font-size: 2rem;
  }
  .contents .contestResultGallery .galleryWrap .contentsTitle h3 span {
    font-size: 1.3rem;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox {
    margin-top: 1.4rem;
    padding: 2.6rem 2rem 2.6rem 2rem;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .tabs li a {
    width: 9.3rem;
    height: 3rem;
    padding: 0.7rem 0 0.7rem 1.8rem;
    border-radius: 1rem;
    font-size: 1.3rem;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .tabs li a:before {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.3rem;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .galleryContents {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow: hidden;
    width: 100%;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerItem {
    overflow: hidden;
    width: 100%;
    height: 17.9rem;
    border-radius: 1rem;
    background: #ddd;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerItem img {
    width: 100%;
    height: auto;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList {
    width: 100%;
    margin: 1.6rem 0 0 0;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList ul li {
    margin-top: 0.8rem;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList ul li:first-child {
    margin-top: 0;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList ul li .profileWrap {
    padding: 0.7rem 2rem;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList ul li .profileWrap .profileImg {
    width: 5rem;
    height: 5rem;
    margin-right: 2rem;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList ul li .profileWrap .profileText span {
    font-size: 1.1rem;
    line-height: normal;
  }
  .contents .contestResultGallery .galleryWrap .galleryBox .galleryContents .winnerList ul li .profileWrap .profileText strong {
    margin-top: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: normal;
  }
  .footer .inner {
    padding: 8.2rem 2rem 5.3rem 2rem;
  }
  .footer .fotterLogo {
    padding-bottom: 3.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer .fotterLogo h3 {
    width: 22.7rem;
    height: 2.483rem;
  }
  .footer .fotterLogo p {
    margin-top: 0.17rem;
    font-size: 1.8rem;
    line-height: 4.2rem;
  }
  .footer .policyList {
    margin-top: 4rem;
  }
  .footer .policyList li:before {
    margin: 0 0.5rem;
    color: #b6b6b6;
    font-size: 1.2rem;
  }
  .footer .policyList li a {
    font-size: 1.2rem;
  }
  .footer .companyInfo {
    margin-top: 0.8rem;
  }
  .footer .companyInfo ul li {
    display: inline;
  }
  .footer .companyInfo ul li span {
    display: inline;
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
  .footer .copyright {
    margin-top: 3.8rem;
    color: #a0c1ff;
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .header {
    z-index: 2;
    height: 7rem;
    padding: 0 2rem;
  }
  .header .logo {
    width: 14.6rem;
    height: 1.6rem;
  }
  .header .navigation ul li {
    margin-right: 3rem;
  }
  .contents section.intro p span.blue {
    display: block;
    margin-top: 2rem;
  }
}/*# sourceMappingURL=index.css.map */