@charset "UTF-8";

img {
  /*user-select: none;*/
}

#main section {
  overflow: hidden;
  position: relative;
  padding: 50px 0;
}
#main section.deco-bottom {
  background-image: url(../img/deco_section.png);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: 150px auto;
  padding-bottom: 100px;
}
#main section.deco-bottom-white {
  background-image: url(../img/deco_section_white.png);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-size: 150px auto;
  padding-bottom: 100px;
}
#main section.deco-top {
  background-image: url(../img/deco_section_2.png);
  background-position: top center;
  background-repeat: repeat-x;
  background-size: 150px auto;
  padding-top: 100px;
}
#main section.deco-bottom.deco-top {
  background-image:
    url(../img/deco_section.png), url(../img/deco_section_2.png);
  background-position:
    bottom center,
    top center;
}
#main section.deco-bottom-white.deco-top {
  background-image:
    url(../img/deco_section_white.png), url(../img/deco_section_2.png);
  background-position:
    bottom center,
    top center;
}

.sec-block-top.deco-top {
  padding-top: 100px;
}
.sec-block-bottom.deco-bottom {
  padding-bottom: 100px;
}

#main section h2 {
  color: var(--color-main);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  line-height: 1;
}
#main section.sec-news h2 {
  color: #fff;
}

ul.dot {
}
ul.dot > li {
  position: relative;
  padding-left: 20px;
}
ul.dot > li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #000;
  top: 11px;
  left: 5px;
  position: absolute;
}

ul.order {
}
ul.order > li {
  position: relative;
  padding-left: 1.5em;
}
ul.order > li::before {
  content: "(1)";
  top: 0;
  left: 0;
  position: absolute;
}
ul.order > li:nth-child(2):before {
  content: "(2)";
}
ul.order > li:nth-child(3):before {
  content: "(3)";
}
ul.order > li:nth-child(4):before {
  content: "(4)";
}
ul.order > li:nth-child(5):before {
  content: "(5)";
}
ul.order > li:nth-child(6):before {
  content: "(6)";
}

.margin-bottom-0 {
  margin-bottom: 0;
}
.margin-bottom-15 {
  margin-bottom: 15px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-bottom-50 {
  margin-bottom: 50px;
}
.margin-left-30 {
  margin-left: 30px;
}
.margin-left-50 {
  margin-left: 50px;
}

.shape-tag {
  position: relative;
}
.shape-tag::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  border-style: solid;
  border-width: 20px 10px 20px 0px;
  border-color: transparent #ffffff transparent transparent;
}

.btn {
  background-color: #e70012;
  border-radius: 50px;
  text-align: center;
  display: block;
  width: 150px;
  padding: 5px 0 7px;
}
.btn span {
  color: #fff;
  position: relative;
  padding: 0 15px 0 7px;
  transition: color ease-out 0.2s;
  user-select: none;
}
.btn span::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 10px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 0%;
  top: calc(50% - 5px);
  transition: border-color ease-out 0.2s;
}
.desktop .btn:hover span {
  color: var(--color-nav-color);
  transition: color ease-out 0.2s;
}
.desktop .btn:hover span::after {
  border-color: transparent transparent var(--color-nav-color) transparent;
  transition: border-color ease-out 0.2s;
}

.tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto 50px;
}
.tabs .tab {
  background-color: var(--color-yellow);
  color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 7px 20px 9px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  margin: 0 7px;
  transition: all ease-out 0.2s;
}
.tabs .tab.actived,
.tabs .tab:hover {
  background-color: var(--color-main);
  transition: all ease-out 0.2s;
}

.sec-kv {
  background-color: var(--color-main);
  padding: 0 !important;
  width: 100%;
  height: 100vh; /*min-height: 650px;*/
}
.sec-kv .container {
  width: 100%;
  height: calc(100vh - 70px);
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.sec-kv h1 {
  opacity: 0;
  position: absolute;
  top: 0;
  user-select: none;
}
.sec-kv p.small {
  color: var(--color-nav-text);
  font-size: 12px;
  position: absolute;
  left: 5%;
  bottom: 30px;
}
.sec-kv .people {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sec-kv .people .bg {
  width: 100%;
  position: relative;
}
.sec-kv .people .bg > img {
  width: 100%;
}
.sec-kv .people .bg > img.people1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.sec-kv .slogan {
  width: 50%;
  max-width: 700px;
  position: absolute;
  top: 130px;
  right: 30px;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 93%);
}
.sec-kv .slogan img {
  width: 100%;
  border: #000 solid 0px;
}

.sec-idea {
  background-color: var(--color-main);
  border: #000 solid 0px;
}
.sec-idea .container {
  width: 100%;
  max-width: 850px;
  background-color: #fff;
  border-radius: 100px;
  padding: 60px 0 80px;
  position: relative;
  z-index: 3;
}
.sec-idea .container > * {
  position: relative;
  z-index: 3;
}
.sec-idea .container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 100px;
  z-index: 2;
  top: 0;
  left: 0;
}

.sec-idea .text {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}
.sec-idea .text p {
  margin-bottom: 15px;
}
.sec-idea .text p.small {
  font-size: 12px;
}
.sec-idea .icon-1 {
  width: 580px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -440px;
}
.sec-idea .icon-2 {
  width: 550px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: -430px;
}

.sec-theme {
  background: var(--color-accent);
}
.sec-theme .container {
  width: 100%;
  max-width: var(--max-width-container2);
  z-index: 2;
}
.sec-theme .intro {
  width: 100%;
  margin: 0 auto 50px;
  display: flex;
  overflow: hidden;
}
.sec-theme .intro figcaption {
  padding: 0;
}

.sec-theme .intro figcaption p {
  margin-bottom: 15px;
}
.sec-theme .intro figcaption p.small {
  font-size: 12px;
  margin-bottom: 0;
}
.sec-theme .theme-items {
  width: 100%;
  margin: 0 auto 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.sec-theme .theme-items img {
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}
.sec-theme .list {
  display: flex;
  justify-content: space-between;
}
.sec-theme .list .item {
  width: 23.5%;
  margin-bottom: 30px;
  background: #f2ebe5;
  padding: 20px 0;
  border-radius: 20px;
}
.sec-theme .list .item .header {
  position: relative;
}

.sec-theme .list .item .header h3 {
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  font-family: "Century Gothic";
}
.sec-theme .list .item .header h3 span {
  font-size: 0.6em;
  display: block;
  letter-spacing: 0;
  padding: 5px 20px;
  margin-left: -20px;
  border-radius: 0 20px 20px 0;
  color: #fff;
}

.sec-theme .list .item .content {
  padding: 10px 20px;
}
.sec-theme .list .item .content h6 {
  margin-bottom: 5px;
}
.sec-theme .list .item .content p {
  margin-bottom: 20px;
  min-height: 150px;
}
.sec-theme .list .item .content ul.dot > li::before {
  background-color: #fff;
  top: 6px;
}
.sec-theme .list .item-1 .header h3 {
  color: var(--color-blue);
}
.sec-theme .list .item-1 .content h6 {
  color: var(--color-blue);
}
.sec-theme .list .item-1 .content ul.dot > li::before {
  background-color: var(--color-blue);
}
.sec-theme .list .item-1 .header h3 span {
  background-color: var(--color-blue);
}
.sec-theme .list .item-2 .header h3 {
  color: var(--color-red);
}
.sec-theme .list .item-2 .content h6 {
  color: var(--color-red);
}
.sec-theme .list .item-2 .content ul.dot > li::before {
  background-color: var(--color-red);
}
.sec-theme .list .item-2 .header h3 span {
  background-color: var(--color-red);
}
.sec-theme .list .item-3 .header h3 {
  color: var(--color-yellow);
}
.sec-theme .list .item-3 .content h6 {
  color: var(--color-yellow);
}
.sec-theme .list .item-3 .content ul.dot > li::before {
  background-color: var(--color-yellow);
}
.sec-theme .list .item-3 .header h3 span {
  background-color: var(--color-yellow);
}
.sec-theme .list .item-4 .header h3 {
  color: var(--color-green);
}
.sec-theme .list .item-4 .content h6 {
  color: var(--color-green);
}
.sec-theme .list .item-4 .content ul.dot > li::before {
  background-color: var(--color-green);
}
.sec-theme .list .item-4 .header h3 span {
  background-color: var(--color-green);
}

.sec-features {
  background: var(--color-sub);
}
.sec-features .container {
  width: 90%;
  max-width: 1100px;
}
.sec-features .list {
  display: flex;
  justify-content: space-between;
}
.sec-features .list .item {
  width: 31%;
  background-color: #f2ebe5;
  border-radius: 30px;
  margin-top: 80px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.sec-features .list .item-1 {
}
.sec-features .list .item-2 {
  animation-delay: 0.1s;
}
.sec-features .list .item-3 {
  animation-delay: 0.2s;
}
.sec-features .list .item figure {
  width: 85%;
  margin: -80px auto 30px;
}
.sec-features .list .item figure img {
  aspect-ratio: 290/250;
  object-fit: contain;
}
.sec-features .list .item figcaption {
  padding: 0 6% 20px;
}
.sec-features .list .item figcaption h4 {
  color: #b05341;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
}
.sec-features .list .item figcaption h6 {
  color: var(--color-main);
  margin-bottom: 5px;
  font-size: 22px;
}
.sec-features .list .item figcaption p {
  margin-bottom: 10px;
}

img.gear {
  position: absolute;
  z-index: 0;
  width: 212px;
  aspect-ratio: 1;
  animation: self_rotate 26s linear both infinite;
}

.sec-features img.gear-1 {
  top: 50px;
  right: -120px;
  animation-direction: reverse;
}
.sec-features img.gear-2 {
  bottom: 50px;
  left: -120px;
}

.sec-schedule {
  background-image: url("../img/bg_schedule.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.sec-schedule .container {
  width: 90%;
  max-width: var(--max-width-container2);
  z-index: 2;
}
.sec-schedule .icon-1 {
  width: 190px;
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: -110px;
}
.sec-schedule .icon-2 {
  width: 207px;
  position: absolute;
  z-index: 1;
  top: -126px;
  left: 0;
}
.sec-schedule h3.title {
  width: 100%;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 20px;
  position: relative;
  font-size: 20px;
  line-height: 32px;
}
.sec-schedule h3.title::before {
  content: "";
  background-color: var(--color-main);
  width: 100%;
  height: 4px;
  left: 0;
  top: 49%;
  position: absolute;
}
.sec-schedule h3.title span {
  background-color: var(--color-main);
  display: inline-block;
  padding: 0 1.5em;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}

.sec-schedule .list {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 40px;
}
.sec-schedule .list .item {
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  padding: 15px 25px;
  border-radius: 30px;
  position: relative;
  width: 100%;
}
.sec-schedule .list .item::after {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  background: url("../img/icon_arrow_green.svg") no-repeat center center;
  background-size: contain;
  bottom: 5px;
  left: -55px;
}
.sec-schedule .list .item ul.dot li {
  margin-bottom: 0.8em;
}
.sec-schedule .list .item-1 {
  background-color: var(--color-green);
}

.sec-schedule .list .item-2 {
  background-color: var(--color-yellow);
  animation-delay: 0.1s;
}

.sec-schedule .list .item-3 {
  background-color: var(--color-red);
  animation-delay: 0.2s;
}
.sec-schedule .list .item-3::after {
  background-image: url("../img/icon_arrow_yellow.svg");
}
.sec-schedule .list .item-4 {
  background-color: var(--color-blue);
  animation-delay: 0.3s;
}
.sec-schedule .list .item-4::after {
  background-image: url("../img/icon_arrow_red.svg");
}
.sec-schedule .list .item-1::after {
  display: none;
}
.sec-schedule .list .item h4 {
  text-align: center;
  border-bottom: #fff solid 1px;
  padding-bottom: 5px;
  margin-bottom: 0.5em;
  line-height: 2;
}
.sec-schedule .list .item ul.dot li::before {
  background-color: #fff;
}

.sec-schedule .date {
  width: 100%;
  display: flex;
  gap: 60px;
  margin: 0 auto 0px;
}
.sec-schedule .date .item {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.sec-schedule .date .item figure {
  margin-bottom: 7px;
}
.sec-schedule .date .item figure img {
  width: 100%;
  margin: 0 auto;
}
.sec-schedule .date .item figcaption {
  color: #000;
  text-align: center;
}
.sec-schedule .date .item figcaption h5.title {
  margin: 0 auto 5px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}
.sec-schedule .date .item figcaption h5.title::before {
  content: "";
  background-color: var(--color-main);
  width: 100%;
  height: 4px;
  left: 0;
  top: 49%;
  position: absolute;
}
.sec-schedule .date .item figcaption h5.title span {
  background-color: var(--color-main);
  display: inline-block;
  padding: 0 1.5em;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  border-radius: 1em;
  font-size: 15px;
}
.sec-schedule .date .item figcaption p {
}
.sec-schedule .date .item-1 {
}
.sec-schedule .date .item-2 {
  animation-delay: 0.1s;
}
.sec-schedule .date .item-3 {
  animation-delay: 0.2s;
}
.sec-schedule .date .item-3::after {
  display: none;
}

.sec-about {
  background: var(--color-sub);
}

.sec-about .container {
  width: 95%;
  max-width: var(--max-width-container);
}
.sec-about h3.title {
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 50px;
  line-height: 1.8em;
}

.sec-about h3.title span {
  background-color: var(--color-main);
  display: inline-block;
  padding: 0 1em;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  border-radius: 1em;
}
.sec-about .plan {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}
.sec-about .plan .item {
  width: 49%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 25px;
  margin-bottom: 30px;
  border-radius: 25px;
}

.sec-about .plan .item-2 {
  animation-delay: 0.1s;
}
.sec-about .plan .item .header {
  padding: 10px 10%;
  min-height: 60px;
  position: relative;
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  border-radius: 25px 25px 0 0;
  gap: 0 10px;
  flex-wrap: wrap;
}
.sec-about .plan .item .header h3 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
}
.sec-about .plan .item .header h6 {
  color: var(--color-nav-text);
}

.sec-about .plan .item .text {
  height: calc(100% - 100px);
  margin: 0 auto;
  padding: 30px 10%;
  display: flex;
  flex-direction: column; /*justify-content: center;*/
}
.sec-about .plan .item .text p {
  margin-bottom: 15px;
  padding: 0 0 0 1.2em;
}
.sec-about .plan .item .text p:last-child {
  margin-bottom: 0;
}
.sec-about .plan .item .text ul.dot {
  margin-left: 15px;
}

.sec-about .plan .item .text h6 {
  color: var(--color-main);
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
}

.sec-about .plan .item .text h6 span {
  color: #fff;
  padding: 0 1em;
  background: var(--color-main);
  line-height: 2em;
  border-radius: 1em;
  margin-right: 0.5em;
}

.sec-about .plan .icon-1,
.sec-about .plan .icon-2 {
  position: absolute;
  z-index: 2;
}
.sec-about .plan .icon-2 {
  width: 170px;
  bottom: 0;
  left: -132px;
}
.sec-about .plan .icon-1 {
  width: 151px;
  top: -64px;
  right: -39px;
}

.sec-about .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}
.sec-about .list .item {
  width: 49%;
  background-color: #fff;
  display: flex;
  margin-bottom: 20px;
  border-radius: 25px;
  overflow: hidden;
}
.sec-about .list .item figure {
  width: 44%;
}
.sec-about .list .item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-about .list .item figcaption {
  width: 60%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sec-about .list .item figcaption h3 {
  margin-bottom: 10px;
  border-bottom: 2px solid #000;
  line-height: 1.6em;
}
.sec-about .list .item figcaption h3 span {
  font-size: 0.6em;
  padding-left: 0.5em;
}
.sec-about .list .item figcaption h5 span.shape-tag {
  font-size: 1em;
  padding: 0 1em 0 0.5em;
  background: var(--color-main);
  color: #fff;
}
.sec-about .list .item figcaption h5 span.shape-tag::before {
  border-width: 16px 8px 16px 0px;
  border-color: transparent #ffffff transparent transparent;
}

.sec-about .list .item figcaption h6 {
  font-size: 18px;
}
.sec-about .list .icon-1 {
  position: absolute;
  z-index: 2;
  width: 300px;
  top: -125px;
  right: -185px;
}

.sec-about .item {
  position: relative;
  z-index: 2;
}

.sec-about img.gear {
  position: absolute;
  z-index: 0;
  width: 212px;
  aspect-ratio: 1;
  animation: self_rotate 20s linear both infinite;
}

.sec-about img.gear-1 {
  top: 200px;
  right: -120px;
  animation-direction: reverse;
}
.sec-about img.gear-2 {
  top: 310px;
  left: -120px;
}
.sec-about img.gear-3 {
  width: 315px;
  top: 117px;
  left: -160px;
  animation-direction: reverse;
}
.sec-about img.gear-4 {
  width: 315px;
  top: 414px;
  right: -160px;
}

.sec-rule {
  background: var(--color-accent);
}
.sec-rule .container {
}
.sec-rule .article-container {
  width: 100%;
  max-width: var(--max-width-container);
  background-color: #fff;
  border-radius: 25px;
  margin: 0 auto 30px;
}
.sec-rule article {
  margin: 0 auto;
  padding: 40px 25px;
  position: relative;
}
.sec-rule article h4.title {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.sec-rule article h4.title span {
  background-color: var(--color-main);
  display: inline-block;
  padding: 0 25px;
  position: relative;
  z-index: 2;
  margin-left: -25px;
}
.sec-rule article h4.title span.shape-tag::before {
  border-width: 18px 10px 18px 0px;
  border-color: transparent #ffffff transparent transparent;
}
.sec-rule article h5 {
  color: var(--color-main);
  margin-bottom: 10px;
}
.sec-rule article h5.bar {
  background-color: var(--color-accent);
  border-radius: 1em;
  color: var(--color-main);
  padding: 5px 0 6px 25px;
  margin-bottom: 10px;
}
.sec-rule article h5.number-order {
  display: flex;
  gap: 5px;
}
.sec-rule article h5.number-order > span {
  font-size: 12px;
  color: #fff;
  background: var(--color-main);
  width: 14px;
  height: 14px;
  text-align: center;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.sec-rule .dot li::before {
  background: var(--color-main);
}

.sec-rule article h6 {
}
.sec-rule article a.link {
  color: var(--color-blue);
  text-decoration: underline;
}
.sec-rule article h7 {
  font-weight: 700;
}
.sec-rule article ol {
  margin-left: 25px;
}
.sec-rule article li {
  word-break: break-all;
}
.sec-rule article .inner {
  padding: 0 25px;
}

.sec-rule .btn-container {
  display: flex;
  gap: 20px 50px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.sec-rule .btn-container .btn {
  flex: 0 0 auto;
  margin: 0 !important;
}
.sec-rule .article-1 .btn-download {
  width: 250px;
  height: 50px;
  line-height: 48px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 0;
  margin: 0 auto 30px;
  background: var(--color-main);
}
.sec-rule .article-1 .btn-download:hover {
  color: var(--color-nav-text);
}
.sec-rule .article-1 .btn-download:hover span::after {
  border-color: transparent transparent transparent var(--color-nav-text);
}

.sec-rule .article-1 .btn-apply {
  width: 250px;
  height: 50px;
  line-height: 48px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 0;
  margin: 0 auto 30px;
  background: var(--color-red);
}
.sec-rule .article-1 .btn-apply:hover {
  color: var(--color-nav-text);
}
.sec-rule .article-1 .btn-apply:hover span::after {
  border-color: transparent transparent transparent var(--color-nav-text);
}

.sec-rule .article-1 .list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
.sec-rule .article-1 .list .item {
  display: flex;
  border-radius: 10px;
  background-color: var(--color-accent);
  padding: 5px;
  flex: 1 1 280px;
}
.sec-rule .article-1 .list .item figure {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 8px;
}
.sec-rule .article-1 .list .item figure img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.sec-rule .article-1 .list .item figcaption {
  width: calc(100% - 120px);
  padding-left: 20px;
  display: flex;
  align-items: center;
}
.sec-rule .article-1 .link {
  color: #000;
  text-decoration: underline;
}

.sec-rule .article-2 .judge {
  display: flex;
  flex-direction: row-reverse;
  padding: 0 0 30px 0;
  margin-bottom: 30px;
}
.sec-rule .article-2 .judge:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.sec-rule .article-2 .judge figure {
  width: 43%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec-rule .article-2 .judge figure img {
  width: 90%;
  max-width: 350px;
  margin: 0 auto;
}
.sec-rule .article-2 .judge figcaption {
  width: 57%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec-rule .article-2 .judge figcaption h4 {
  margin-bottom: 5px;
}

.sec-rule .article-2 .judge figcaption h7 {
  line-height: 2;
  padding: 0 1em;
  color: #fff;
  margin-bottom: 1em;
  border-radius: 1em;
}
.sec-rule .article-2 .judge figcaption ol {
  list-style-type: none; /* 把預設的 1. 2. 3. 隱藏掉 */
  padding-left: 0;
  counter-reset: step-counter;
}
.sec-rule .article-2 .judge figcaption ol.ol-orange > li {
  color: #e8380d;
}
.sec-rule .article-2 .judge figcaption ol.ol-orange > li::before {
  background: #e8380d;
  width: 17px;
  height: 17px;
  left: -23px;
  top: 3px;
}
.sec-rule .article-2 .judge figcaption ol li {
  line-height: 1.3;
  margin-bottom: 10px;
  position: relative;
  counter-increment: step-counter;
}
.sec-rule .article-2 .judge figcaption ol li::before {
  content: counter(step-counter); /* 把計數器的數字塞進去 */

  /* 定位在左上角 */
  position: absolute;
  left: -19px;
  top: 6px; /* 可以根據你的標題字體大小微調高度，讓它跟標題對齊 */

  /* 圓形樣式設計 */
  width: 14px;
  height: 14px;
  background-color: var(--color-main); /* 參考圖片的綠色，可自行微調 */
  color: #ffffff;
  border-radius: 50%; /* 變成正圓形 */

  /* 讓裡面的數字完美置中 */
  display: flex;
  justify-content: center;
  align-items: center;

  /* 數字的字體設定 */
  font-size: 12px;
  font-weight: 700;
}
.sec-rule .article-2 .judge figcaption ol.ol-red > li {
  color: #c30d23;
}
.sec-rule .article-2 .judge figcaption ol.ol-red > li p {
  color: #000;
}

.sec-rule .article-2 .judge figcaption ul.ul-red > li {
  color: #c30d23;
}
.sec-rule .article-2 .judge figcaption ul.ul-red > li::before {
  background: #c30d23;
}

.sec-rule .article-2 .judge figcaption ol li:last-child {
  margin-bottom: 0;
}
.sec-rule .article-2 .judge figcaption ol li p {
  font-size: 16px;
}

.sec-rule .article-2 .judge.judge-1 figcaption h6 {
  color: #0068b7;
}
.sec-rule .article-2 .judge.judge-1 ol li::before {
  background: #0068b7;
}
.sec-rule .article-2 .judge.judge-2 figcaption h6 {
  color: #ea5514;
}
.sec-rule .article-2 .judge.judge-2 ol li::before {
  background: #ea5514;
}
.sec-rule .article-2 .judge.judge-2 ol li.li-red h6 {
  color: #c30d23;
}
.sec-rule .article-2 .judge.judge-2 ol li.li-red::before {
  background: #c30d23;
}
.sec-rule .article-2 .judge.judge-3 figcaption h6 {
  color: #00a040;
}
.sec-rule .article-2 .judge.judge-3 ol li::before {
  background: #00a040;
}
.sec-rule .article-2 .judge.judge-4 figcaption h6 {
  color: #c30d23;
}
.sec-rule .article-2 .judge.judge-4 ol li::before {
  background: #c30d23;
}
.sec-rule .article-2 h4.title b {
  font-size: 0.7em;
}

.sec-rule .article-3 .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.sec-rule .article-3 .list .item {
  width: 30.33%;
  margin: 0 1.5% 30px;
  z-index: 2;
  position: relative;
}
.sec-rule .article-3 .list .item figure {
  width: 90%;
  overflow: hidden;
  margin: 0 auto 10px;
}
.sec-rule .article-3 .list .item figure img {
}
.sec-rule .article-3 .list .item figcaption {
  text-align: center;
}
.sec-rule .article-3 .list .item figcaption h4 {
  letter-spacing: 2px;
  border-bottom: #000 solid 1px;
  padding-bottom: 10px;
  margin-bottom: 7px;
  color: #000;
}
.sec-rule .article-3 .list .item figcaption h4 span {
  font-size: 0.6em;
  margin-left: 0.4em;
}
.sec-rule .article-3 .list .item figcaption p {
  font-size: 16px;
}

.sec-rule .article-4 h7 {
}

.sec-rule .article-4 h7.number-order {
  display: flex;
  align-items: top;
  gap: 5px;
}
.sec-rule .article-4 h7.number-order > span {
  margin-top: 6px;
  font-size: 12px;
  color: #fff;
  background: var(--color-main);
  width: 14px;
  height: 14px;
  text-align: center;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: -19px;
}
.sec-rule .article-4 p {
  font-size: 17px;
}
.sec-rule .article-4 p.small {
  color: #727171;
}
.sec-rule .article-4 .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 30px;
}
.sec-rule .article-4 .list .item {
  width: 100%;
  border: var(--color-accent) solid 5px;
  border-radius: 25px;
  overflow: hidden;
  background: var(--color-accent);
}
.sec-rule .article-4 .list .item .thumbnail {
  text-align: center;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 15px 5px;
}
.sec-rule .article-4 .list .item h2 {
  color: var(--color-main);
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0 !important;
  letter-spacing: 0;
}
.sec-rule .article-4 .list .item h2 span {
  font-size: 15px;
  display: block;
  margin-bottom: 5px;
  line-height: 1;
}
.sec-rule .article-4 .list .item h6 {
  color: var(--color-main);
  text-align: center;
  font-size: 18px;
  margin-top: 5px;
}
.sec-rule .article-4 .list .item p {
  padding: 20px 10px;
  min-height: 140px;
}
.sec-rule .article-4 .pic {
  width: 60%;
  max-width: 230px;
  margin: 0 auto;
}

.sec-rule .article-5 a {
  color: #000000;
  text-decoration: underline;
}

.sec-rule .icon-1,
.sec-rule .icon-2,
.sec-rule .icon-3,
.sec-rule .icon-4,
.sec-rule .icon-5,
.sec-rule .icon-6 {
  position: absolute;
  z-index: 0;
}
.sec-rule .article-5 ol {
  list-style-type: none;
  padding-left: 0;
  counter-reset: step-counter;
}
.sec-rule .article-5 ol li {
  line-height: 1.3;
  margin-bottom: 10px;
  position: relative;
  counter-increment: step-counter;
}
.sec-rule .article-5 ol li::before {
  content: counter(step-counter);

  position: absolute;
  left: -19px;
  top: 3px;

  width: 14px;
  height: 14px;
  background-color: var(--color-main);
  color: #ffffff;
  border-radius: 50%;
  white-space: nowrap;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 10px;
  font-weight: 700;
}

.sec-rule .icon-1 {
  width: 230px;
  top: 43%;
  left: -230px;
}
.sec-rule .icon-2 {
  width: 300px;
  bottom: -60px;
  right: -180px;
}
.sec-rule .icon-3 {
  width: 284px;
  top: 50%;
  right: -180px;
}
.sec-rule .icon-4 {
  width: 348px;
  bottom: 0;
  left: -150px;
}
.sec-rule .icon-5 {
  width: 336px;
  bottom: 0px;
  right: -160px;
}

.sec-rule img.gear {
  position: absolute;
  z-index: 0;
  width: 212px;
  aspect-ratio: 1;
}
.sec-rule img.gear-1 {
  width: 660px;
  top: -200px;
  right: -475px;
  -webkit-clip-path: inset(0 0 0 28%);
  clip-path: inset(0 0 0 28%);
}
.sec-rule img.gear-2 {
  width: 530px;
  top: 90px;
  left: -329px;
  -webkit-clip-path: inset(0 38% 0 0);
  clip-path: inset(0 38% 0 0);
}

.sec-rule img.gear-3 {
  width: 150px;
  top: 390px;
  left: 195px;
}

.sec-rule img.gear-4 {
  width: 120px;
  top: 75px;
  right: 100px;
}

.sec-news {
  background-color: var(--color-main);
}
.sec-news .container {
  width: 90%;
  max-width: var(--max-width-container);
}
.sec-news .list {
  display: flex;
  flex-wrap: wrap;
}
.sec-news .list .item {
  width: 30.33%;
  margin: 0 1.5% 30px;
  border-radius: 25px;
  overflow: hidden;
  background-color: #fff;
  transition: background-color ease-out 0.2s;
}
.desktop .sec-news .list .item:hover {
  background-color: #fff7e0;
  transition: background-color ease-out 0.2s;
}
.sec-news .list .item a {
  display: block;
}
.sec-news .list .item figure {
  overflow: hidden;
}
.sec-news .list .item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform ease-out 0.2s;
}
.desktop .sec-news .list .item:hover figure img {
  transform: scale(1.05);
  transition: transform ease-out 0.2s;
}
.sec-news .list .item figcaption {
  padding: 10px 5%;
}
.sec-news .list .item figcaption .date {
  color: #ea5514;
  font-size: 15px;
  font-weight: 700;
}
.sec-news .list .item figcaption h5 {
  color: var(--color-main);
  line-height: 1.3;
  min-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sec-news .list .item .btn-more {
  width: 100%;
  border-radius: 0;
  background-color: var(--color-sub);
}
.sec-news .list .item a:hover .btn-more {
  color: var(--color-nav-text);
}
.sec-news .list .item a:hover .btn-more span::after {
  border-color: transparent transparent transparent var(--color-nav-text);
}

.sec-news .icon-1 {
  position: absolute;
  bottom: -100px;
  right: -80px;
  z-index: 2;
  width: 400px;
}

.sec-faq {
  background: var(--color-accent) url(../img/bg_faq.png) top center;
}
.sec-faq::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    var(--color-accent) 0%,
    rgba(252, 217, 167, 0) 100%
  );
}
.sec-faq::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    var(--color-accent) 0%,
    rgba(252, 217, 167, 0) 100%
  );
}
.sec-faq .girl {
  position: absolute;
  bottom: 0;
  left: -3%;
  width: 400px;
  z-index: 1;
}
.sec-faq .container {
  width: 90%;
  max-width: var(--max-width-container);
  z-index: 2;
}
.sec-faq .list .item {
  margin-bottom: 15px;
  background-color: #f5f0e9;
  border-radius: 10px;
  overflow: hidden;
}
.sec-faq .list .item .quiz {
  display: flex;
  color: #000;
  cursor: pointer;
  padding: 5px 0;
  transition: background-color ease-out 0.3s;
}
.sec-faq .list .item .quiz .icon {
  width: 80px;
  height: 50px;
  line-height: 50px;
  color: var(--color-main);
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}
.sec-faq .list .item .quiz .text {
  width: calc(100% - 130px);
  padding-top: 10px;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.sec-faq .list .item .quiz .toggle {
  width: 50px;
  height: 50px;
  background: url("../img/icon_dropdown.svg") 50% 50% no-repeat;
  background-size: 25px auto;
  transition: transform ease-out 0.3s;
}
.desktop .sec-faq .list .item .quiz:hover,
.sec-faq .list .item .quiz.opened {
  background-color: #fff;
  transition: background-color ease-out 0.3s;
}
.sec-faq .list .item .quiz.opened .toggle {
  transform: rotate(180deg);
  transition: transform ease-out 0.3s;
}
.sec-faq .list .item .answer {
  display: none;
  color: #7b5381;
  padding: 15px 50px 15px 80px;
  word-break: break-all;
}
.sec-faq .list .item .answer a {
  color: #b602d1;
  text-decoration: underline;
}
.sec-faq .list .item .answer ol {
  margin-left: 25px;
}

.sec-history {
  background-color: var(--color-sub);
}
.sec-history .container {
}
.sec-history .note {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
}
.sec-history .note .item {
  color: #776f69;
  line-height: 1.2;
  margin: 0 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.sec-history .note .item strong {
  color: #fff;
  font-size: 2em;
  font-family: Arial;
  padding-right: 5px;
}
.sec-history .note .item small {
  display: block;
  font-size: 70%;
}
.sec-history .note .item > span {
  color: #fff;
}
.sec-history .note .item > span::before {
  content: "+";
  position: relative;
  top: -0.7em;
  font-weight: 700;
}
.sec-history .note .icon-1 {
  position: absolute;
  top: -100px;
  left: 50%;
  width: 750px;
  margin-left: -375px;
}

.sec-history article {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 25px;
  padding: 40px;
}
.sec-history article h3 {
}
.sec-history article h5 {
  font-weight: 700;
  color: var(--color-main);
}
.sec-history article h5.title {
  display: block;
  border: 1px solid var(--color-accent);
  line-height: 1.8;
  margin-bottom: 10px;
  border-radius: 1em;
  overflow: hidden;
  padding: 0 0.5em;
}

.sec-history article h5.title:has(span) {
  padding-left: 0;
}

.sec-history article h5.title b {
  font-size: 0.7em;
}

.sec-history article h5.title span {
  background-color: var(--color-accent);
  display: inline-block;
  padding: 0 0.5em;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  border-radius: 30px;
  margin-right: 0.5em;
}

.sec-history article .subject-box {
  margin: 0 auto 50px;
  padding: 0;
}
.sec-history article .subject-box h3 {
  color: #fff;
  line-height: 1.5;
  position: relative;
}
.sec-history article .subject-box h3 span {
  background: var(--color-main);
  display: inline-block;
  padding: 0 20px;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  margin-left: -40px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
}
.sec-history article .subject-box h3 span.shape-tag::before {
  border-width: 25px 13px 25px 0px;
}

.sec-history article .subject-box h3 span.medal {
  padding-left: 75px;
}
.sec-history article .subject-box h3 span.medal::after {
  content: "";
  width: 45px;
  height: 60px;
  background: url(../img/icon_medal.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 20px;
  top: -15px;
}

.sec-history article .subject-box h4 {
  color: var(--color-main);
  font-size: 15px;
  font-weight: 700;
}
.sec-history article .subject-box h4 span {
  background-color: var(--color-accent);
}
.sec-history article .subject-box h6 {
  color: var(--color-main);
  border-bottom: var(--color-main) solid 2px;
  display: inline-block;
  margin-bottom: 5px;
}

.sec-history article .subject-box figure {
  max-width: 600px;
  padding: 30px 0;
  margin: 0 auto;
}
.sec-history article .subject-box figcaption {
  margin: 0 auto 30px;
}
.sec-history article .subject-box figcaption p {
  margin-bottom: 10px;
  min-height: 2.5em;
}
.sec-history article .winner-box {
  margin: 0 auto 30px;
  padding: 0 0 20px;
}
.sec-history article .winner-box .team {
  width: 100%;
  margin: 0 auto 20px;
}
.sec-history article .winner-box .team .header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.sec-history article .winner-box .team h5 {
  color: var(--color-main);
  margin-bottom: 5px;
}
.sec-history article .winner-box h4 {
  color: var(--color-main);
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 900;
}
.sec-history article .winner-box h4.title span {
  background-color: var(--color-accent);
  padding: 0 1em;
  border-radius: 1em;
}
.sec-history article .winner-box h6 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 700;
  color: #727171;
}
.sec-history article .winner-box .team .tag {
  font-size: 15px;
  display: flex;
  height: 33px;
  justify-content: center;
  align-items: center;
  background-color: #727171;
  color: #fff;
  margin-bottom: 5px;
  padding: 0 10px;
  border-radius: 1em;
}
.sec-history article .winner-box .team h6 {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 700;
}
.sec-history article .winner-box .team p {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
}

.sec-history article.article-9 figcaption p {
  color: #595757;
}
.sec-history article.article-9 figcaption p strong {
  color: #000;
  margin-right: 0.5em;
  float: left;
}

.sec-page-header {
  background-color: var(--color-main);
  margin-top: 70px;
}
.sec-page-header .container {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-end;
}
.sec-page-header .kv {
  width: 63.4146%;
  max-width: 520px;
}
.sec-page-header .slogan {
  width: 36.5853%;
  max-width: 300px;
  padding-left: 20px;
}

.sec-news-detail {
  background: var(--color-accent) url(../img/bg_faq.png) top center;
  padding-top: 0 !important;
  position: relative;
}
.sec-news-detail::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    var(--color-accent) 0%,
    rgba(252, 217, 167, 0) 100%
  );
}
.sec-news-detail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    0deg,
    var(--color-accent) 0%,
    rgba(252, 217, 167, 0) 100%
  );
}
.sec-news-detail .container {
  width: 95%;
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.sec-news-detail .bread-crumbs {
  padding: 15px 0 15px 2.5%;
  font-size: 16px;
}
.sec-news-detail .bread-crumbs a {
  color: #000;
}
.sec-news-detail article {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 2.5%;
  text-align: left;
}
.sec-news-detail article p.data {
  font-size: 16px;
}
.sec-news-detail article h3 {
  border-bottom: #000 solid 1px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.sec-news-detail article .content {
  padding: 0 2% 30px;
  min-height: 300px;
}
.sec-news-detail article .content p {
  margin-bottom: 15px;
}
.sec-news-detail article .content a {
  color: var(--color-blue);
  text-decoration: underline;
}
.sec-news-detail article .content a.outing {
  background: url("../img/ic_launch_black_36dp.png") right center no-repeat;
  background-size: 20px auto;
  padding-right: 25px;
}
.sec-news-detail article .content ol {
  margin-left: 20px;
}
.sec-news-detail article .content .align-center {
  text-align: center;
}
.sec-news-detail article .content .margin-bottom-0 {
  margin-bottom: 0;
}
.sec-news-detail article .content .margin-bottom-15 {
  margin-bottom: 15px;
}
.sec-news-detail article .content .margin-bottom-30 {
  margin-bottom: 30px;
}

.sec-news-detail .btn-home {
  margin: 0 auto;
  background-color: var(--color-main);
}
.sec-news-detail .btn-home:hover span {
  color: var(--color-nav-text);
}
.sec-news-detail .btn-home:hover span::after {
  border-color: transparent transparent transparent var(--color-nav-text) !important ;
}

/*	RESPONSIVE:  */
@media only screen and (max-width: 1600px) {
  .sec-faq .girl {
    left: -5%;
    width: 350px;
  }
}

/*	RESPONSIVE:  */
@media only screen and (max-width: 1440px) {
  .sec-faq .girl {
    position: relative;
    bottom: -50px;
    left: auto;
    width: 220px;
    margin: -30px auto 0;
  }
}

/*	RESPONSIVE:  */
@media only screen and (max-width: 1280px) {
  .sec-about {
    padding-bottom: 60px;
  }

  .sec-about .plan .icon-1,
  .sec-about .plan .icon-2 {
    display: none;
  }
  .sec-about .plan .item .text,
  .sec-about .plan .item .header {
    padding-right: 5%;
    padding-left: 5%;
  }

  .sec-about .list .icon-1 {
    display: none;
  }

  .sec-idea .container {
    width: 90%;
    border-radius: 70px;
  }
  .sec-idea .container::after {
    border-radius: 70px;
  }

  .sec-page-header {
    margin-top: 50px;
  }
}

/*	RESPONSIVE:  */
@media only screen and (max-width: 1279px) {
  .sec-kv {
    height: auto;
    padding: 150px 25px 0px !important;
  }
  .sec-kv .container {
    height: auto;
  }
  .sec-kv p.small {
    position: static;
    margin: 10px auto 30px;
  }
  .sec-kv .people {
    width: calc(100% + 50px);
    position: static;
    margin-left: -25px;
  }

  .sec-kv .slogan {
    position: static;
    width: 100%;
    max-width: 450px;
    margin: 0 auto 80px;
  }
}

/*	RESPONSIVE:  */
@media only screen and (max-width: 1080px) {
  .tabs {
    width: 90%;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto 30px;
  }
  .tabs .tab {
    width: 31.3333%;
    padding: 7px 0 8px;
    margin: 0 1% 20px;
    text-align: center;
  }

  .sec-news .icon-1 {
    width: 330px;
  }

  .sec-theme .container {
    width: 95%;
  }
  .sec-theme .list {
    flex-wrap: wrap;
  }
  .sec-theme .list .item {
    width: 48%;
    margin-bottom: 50px;
  }
  .sec-theme .list .item .header h3 {
    font-size: 170%;
    letter-spacing: 0;
  }
  .sec-theme .list .item .content p {
    min-height: 100px;
  }

  .sec-features .container {
    width: 95%;
  }
  .sec-features .list {
    display: flex;
  }
  .sec-features .list .item {
    width: 32%;
  }

  .sec-schedule .list {
    flex-direction: column;
    margin-bottom: 30px;
    gap: 0;
    align-items: center;
  }
  .sec-schedule .list .item {
    width: 48%;
    margin-bottom: 30px;
  }
  .sec-schedule .icon-1,
  .sec-schedule .icon-2 {
    display: none;
  }
  .sec-schedule .list .item::after {
    top: -55px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .sec-rule .article-container {
    width: 95%;
    border-radius: 20px;
  }
  .sec-rule .article-1 .list {
    grid-template-columns: 1fr 1fr;
  }
  .sec-rule .icon-1,
  .sec-rule .icon-2,
  .sec-rule .icon-3,
  .sec-rule .icon-4,
  .sec-rule .icon-5,
  .sec-rule .icon-6 {
    display: none;
  }
}

/*	RESPONSIVE:  */
@media only screen and (max-width: 820px) {
  .sec-news .list .item {
    width: 47%;
    margin: 0 1.5% 30px;
  }

  .sec-faq {
    background-size: 50% auto;
  }
  .sec-faq .list .item .answer {
    padding: 15px 10px 15px 15px;
  }

  .sec-page-header {
    padding: 50px 25px 0px !important;
  }
  .sec-page-header .container {
    display: block;
    max-width: 500px;
  }
  .sec-page-header .kv {
    width: 100%;
    margin: 0 auto;
  }
  .sec-page-header .slogan {
    width: 100%;
    margin: 0 auto 50px;
    padding-left: 0;
  }

  .sec-rule .article-3 .list .item figcaption h4 span {
    display: block;
  }
  .sec-rule img.gear {
    display: none;
  }
}

/*	RESPONSIVE:  */
@media only screen and (max-width: 767px) {
  #main section.deco-bottom {
    background-size: 75px auto;
    padding-bottom: 75px;
  }
  #main section.deco-top {
    background-size: 75px auto;
    padding-top: 75px;
  }

  .sec-news .icon-1 {
    display: none;
  }

  .tabs .tab {
    width: 48%;
    margin: 0 1% 20px;
    font-size: 18px;
  }

  .sec-theme .container {
    width: 90%;
  }
  .sec-theme .intro {
    padding: 0;
    display: block;
  }
  .sec-theme .intro figcaption {
    width: 100%;
  }
  .sec-theme .theme-items {
    justify-content: space-around;
    padding: 0;
  }
  .sec-theme .theme-items img {
    width: 50%;
    height: 90px;
  }
  .sec-theme .list .item .content p {
    min-height: unset;
  }

  .sec-theme .list {
    display: block;
  }
  .sec-theme .list .item {
    width: 100%;
  }
  .sec-theme .list .item .header {
    height: 90px;
    position: relative;
  }
  .sec-theme .list .item .header .icon {
  }

  .sec-about .list .item figcaption h3 {
    font-size: 24px;
  }
  .sec-about .list .item figcaption h6 {
    font-size: 16px;
  }

  .sec-features .container {
    width: 90%;
  }
  .sec-features .list {
    display: block;
  }
  .sec-features .list .item {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 60px;
    position: relative;
  }
  .sec-features .list .item:first-child {
    margin-top: 60px;
  }
  .sec-features .list .item:last-child {
    margin-bottom: 30px;
  }
  .sec-features .list .item figure {
    width: 80%;
    max-width: 300px;
    margin: auto;
    top: -30px;
    position: relative;
  }

  .sec-schedule .list {
  }
  .sec-schedule .list .item {
    width: 100%;
  }

  .sec-schedule .date {
    display: block;
  }
  .sec-schedule .date .item {
    width: 80%;
    max-width: 300px;
    margin: 50px auto 50px;
  }

  .sec-schedule .date .item-1 {
    width: 80%;
  }
  .sec-schedule .date .item-2 {
    width: 80%;
  }
  .sec-schedule .date .item-3 {
    width: 80%;
  }
  .sec-schedule .date .item-3::after {
    display: none;
  }
  .sec-schedule .date .item-3 h5 span {
    padding: 0 10px;
  }
  .sec-schedule .date .item-3 h5::before {
    display: block;
  }

  .sec-about .container {
    width: 90%;
  }
  .sec-about .plan {
    display: block;
  }
  .sec-about .plan .item {
    width: 100%;
  }
  .sec-about .list {
    display: block;
  }
  .sec-about .list .item {
    width: 100%;
    margin-bottom: 20px;
  }

  .sec-rule article h5.bar {
    text-align: center;
    padding: 10px 0;
    line-height: 1.3;
  }
  .sec-rule article h5.bar span {
    display: block;
  }
  .sec-rule article .inner {
    padding: 0 0 0 0px;
  }

  .sec-rule .article-2 .judge {
    display: block;
    padding: 0 0 30px 0;
    margin-bottom: 20px;
  }
  .sec-rule .article-2 .judge figure {
    width: 100%;
    display: block;
  }
  .sec-rule .article-2 .judge figcaption {
    width: 100%;
    margin-bottom: 20px;
  }
  .sec-rule .article-3 .list {
    justify-content: space-between;
  }
  .sec-rule .article-3 .list .item {
    width: 48%;
    margin: 0 0 30px;
  }
  .sec-rule .article-3 .list .item figcaption p {
    font-size: 16px;
  }
  .sec-rule .article-4 .list {
    display: block;
  }
  .sec-rule .article-4 .list .item {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .sec-news .list .item {
    width: 100%;
    margin: 0 auto 30px;
  }
  .sec-news .list .item figcaption h5 {
    display: block;
  }

  .sec-history .note {
    display: block;
  }
  .sec-history .note .item {
    margin-bottom: 30px;
  }
  .sec-history .note .icon-1 {
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    max-width: unset;
    margin-left: unset;
  }
  .sec-history article {
    padding: 25px;
  }
  .sec-history article .subject-box h3 {
    font-size: 120%;
  }
  .sec-history article .subject-box h3 span.shape-tag {
    min-height: 50px;
    margin-left: -25px;
  }
  .sec-history article .subject-box h3 span.medal {
    padding-left: 40px;
  }

  .sec-history article .subject-box h3 span.medal::after {
    width: 25px;
    height: 40px;
    left: 8px;
    top: -8px;
  }

  .sec-history article .subject-box h5.title {
    border: none;
  }

  .sec-history article .winner-box .team .header {
    display: block;
  }
  .sec-history article .winner-box .team .header .tag {
    display: inline-block;
    line-height: 1.8em;
    height: 1.8em;
    font-size: 12px;
    float: right;
  }

  .sec-news-detail .bread-crumbs {
    padding: 15px 0 15px 7px;
  }
  .sec-news-detail article {
    border-radius: 15px;
    padding: 15px 5%;
  }

  .sec-news-detail article .content {
    padding: 0 0 30px;
  }
  .sec-news-detail article .content .align-center {
    text-align: left;
  }
  .sec-news-detail article .content .align-center br {
    display: none;
  }
}

/*	RESPONSIVE:  */
@media only screen and (max-width: 375px) {
  .sec-about .list .item figcaption ul.dot {
    font-size: 15px;
  }

  .sec-about .list .item figcaption {
    padding: 8px;
  }

  .sec-theme .theme-items img {
    width: 50%;
    height: 60px;
  }

  .sec-about .list .item figcaption h3 {
    font-size: 20px;
  }
  .sec-about .list .item figcaption h6 {
    font-size: 14px;
  }
}

@keyframes wave_move {
  0% {
    background-position: 0 0px;
  }
  100% {
    background-position: 198px 0;
  }
}
@keyframes triangle_move {
  0% {
    background-position: 0 750px;
  }
  100% {
    background-position: 500px 0;
  }
}
@keyframes self_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
