@charset "UTF-8";
:root {
  --maincolor: #a07d34;
  --subcolor: #61cdff;
  --textcolor: #000;
  --container: 1200px;
}

/* ======== ↓ common ↓ ======== */
#sousenkyo2026 {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
  line-height: 1.7;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 20px;
  color: #fff;
  overflow: hidden;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #sousenkyo2026 {
    font-size: 1.32vw;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 {
    font-size: max(2.2vw,12px);
  }
}

#sousenkyo2026 * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#sousenkyo2026 *:before, #sousenkyo2026 *:after {
  content: none;
  visibility: visible;
  height: initial;
}

#sousenkyo2026 a {
  opacity: 1;
  color: inherit;
  background-color: transparent;
  text-decoration: none !important;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#sousenkyo2026 a.hover {
  color: var(--maincolor);
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#sousenkyo2026 ul, #sousenkyo2026 ol {
  list-style: none;
}

#sousenkyo2026 img {
  max-width: 100%;
  height: auto;
  display: block;
}

#sousenkyo2026 .cover {
  width: 100%;
  max-width: none;
  height: auto;
}

#sousenkyo2026 .sectionWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#sousenkyo2026 .widthWrapper {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1220px) {
  #sousenkyo2026 .widthWrapper {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .widthWrapper {
    padding-left: 4%;
    padding-right: 4%;
  }
}

#sousenkyo2026 .insideWrapper {
  position: relative;
  width: 80%;
  max-width: inherit;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#sousenkyo2026 :root {
  --c-flex-gap: 2%;
}

#sousenkyo2026 .c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#sousenkyo2026 .c-flex.gap > * {
  margin-left: var(--c-flex-gap);
}

#sousenkyo2026 .c-flex.gapLarge > * {
  margin-left: calc(var(--c-flex-gap) * 2);
}

#sousenkyo2026 .c-flex:not(.c-flex-reverse) > *:first-child {
  margin-left: 0;
}

#sousenkyo2026 .c-flex--2 > * {
  width: calc(100% / 2);
}

#sousenkyo2026 .c-flex--2.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(2 - 1))) / 2);
}

#sousenkyo2026 .c-flex--2.gap > *:nth-child(2n+1) {
  margin-left: 0;
}

#sousenkyo2026 .c-flex--3 > * {
  width: calc(100% / 3);
}

#sousenkyo2026 .c-flex--3.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(3 - 1))) / 3);
}

#sousenkyo2026 .c-flex--3.gap > *:nth-child(3n+1) {
  margin-left: 0;
}

#sousenkyo2026 .c-flex--4 > * {
  width: calc(100% / 4);
}

#sousenkyo2026 .c-flex--4.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(4 - 1))) / 4);
}

#sousenkyo2026 .c-flex--4.gap > *:nth-child(4n+1) {
  margin-left: 0;
}

#sousenkyo2026 .c-flex--5 > * {
  width: calc(100% / 5);
}

#sousenkyo2026 .c-flex--5.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(5 - 1))) / 5);
}

#sousenkyo2026 .c-flex--5.gap > *:nth-child(5n+1) {
  margin-left: 0;
}

#sousenkyo2026 .c-flex--6 > * {
  width: calc(100% / 6);
}

#sousenkyo2026 .c-flex--6.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(6 - 1))) / 6);
}

#sousenkyo2026 .c-flex--6.gap > *:nth-child(6n+1) {
  margin-left: 0;
}

#sousenkyo2026 .c-flex.--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#sousenkyo2026 .c-flex.--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#sousenkyo2026 .c-flex.--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#sousenkyo2026 .c-flex.--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#sousenkyo2026 .c-flex.--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#sousenkyo2026 .c-flex.--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#sousenkyo2026 .c-flex.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#sousenkyo2026 .c-flex.--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#sousenkyo2026 .alignCenter {
  text-align: center;
}

#sousenkyo2026 .alignRight {
  text-align: right;
}

#sousenkyo2026 .alignLeft {
  text-align: left;
}

#sousenkyo2026 img.alignCenter {
  margin-left: auto;
  margin-right: auto;
}

#sousenkyo2026 img.alignLeft {
  margin-left: 0;
  margin-right: auto;
}

#sousenkyo2026 img.alignRight {
  margin-left: auto;
  margin-right: 0;
}

#sousenkyo2026 .lh-10 {
  line-height: 1;
}

#sousenkyo2026 .lh-15 {
  line-height: 1.5;
}

#sousenkyo2026 .lh-20 {
  line-height: 2;
}

#sousenkyo2026 .font-10 {
  font-size: 10px !important;
}

#sousenkyo2026 .font-12 {
  font-size: 12px !important;
}

#sousenkyo2026 .font-14 {
  font-size: 14px !important;
}

#sousenkyo2026 .font-16 {
  font-size: 16px !important;
}

#sousenkyo2026 .font-18 {
  font-size: 18px !important;
}

#sousenkyo2026 .font-20 {
  font-size: 20px !important;
}

#sousenkyo2026 .font-22 {
  font-size: 22px !important;
}

#sousenkyo2026 .font-24 {
  font-size: 24px !important;
}

#sousenkyo2026 .font-26 {
  font-size: 26px !important;
}

#sousenkyo2026 .font-28 {
  font-size: 28px !important;
}

#sousenkyo2026 .font-30 {
  font-size: 30px !important;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #sousenkyo2026 .font-10 {
    font-size: 0.83333vw !important;
  }
  #sousenkyo2026 .font-12 {
    font-size: 1vw !important;
  }
  #sousenkyo2026 .font-14 {
    font-size: 1.16667vw !important;
  }
  #sousenkyo2026 .font-16 {
    font-size: 1.33333vw !important;
  }
  #sousenkyo2026 .font-18 {
    font-size: 1.5vw !important;
  }
  #sousenkyo2026 .font-20 {
    font-size: 1.66667vw !important;
  }
  #sousenkyo2026 .font-22 {
    font-size: 1.83333vw !important;
  }
  #sousenkyo2026 .font-24 {
    font-size: 2vw !important;
  }
  #sousenkyo2026 .font-26 {
    font-size: 2.16667vw !important;
  }
  #sousenkyo2026 .font-28 {
    font-size: 2.33333vw !important;
  }
  #sousenkyo2026 .font-30 {
    font-size: 2.5vw !important;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .font-10 {
    font-size: 2.09375vw !important;
  }
  #sousenkyo2026 .font-12 {
    font-size: 2.412vw !important;
  }
  #sousenkyo2026 .font-14 {
    font-size: 2.69675vw !important;
  }
  #sousenkyo2026 .font-16 {
    font-size: 2.948vw !important;
  }
  #sousenkyo2026 .font-18 {
    font-size: 3.16575vw !important;
  }
  #sousenkyo2026 .font-20 {
    font-size: 3.35vw !important;
  }
  #sousenkyo2026 .font-22 {
    font-size: 3.50075vw !important;
  }
  #sousenkyo2026 .font-24 {
    font-size: 3.618vw !important;
  }
  #sousenkyo2026 .font-26 {
    font-size: 3.70175vw !important;
  }
  #sousenkyo2026 .font-28 {
    font-size: 3.752vw !important;
  }
  #sousenkyo2026 .font-30 {
    font-size: 3.76875vw !important;
  }
}

#sousenkyo2026 .mt-5 {
  margin-top: 0.5em !important;
}

#sousenkyo2026 .mt-10 {
  margin-top: 1em !important;
}

#sousenkyo2026 .mt-15 {
  margin-top: 1.5em !important;
}

#sousenkyo2026 .mt-20 {
  margin-top: 2em !important;
}

#sousenkyo2026 .mt-25 {
  margin-top: 2.5em !important;
}

#sousenkyo2026 .mt-30 {
  margin-top: 3em !important;
}

#sousenkyo2026 .mt-35 {
  margin-top: 3.5em !important;
}

#sousenkyo2026 .mt-40 {
  margin-top: 4em !important;
}

#sousenkyo2026 .mt-45 {
  margin-top: 4.5em !important;
}

#sousenkyo2026 .mt-50 {
  margin-top: 5em !important;
}

#sousenkyo2026 .u-bold {
  font-weight: bold;
}

#sousenkyo2026 .u-bg {
  background: #fffc01;
  padding: 0 0.2em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

#sousenkyo2026 .u-note {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}

#sousenkyo2026 .u-marker {
  padding: 0 0.2em;
  margin: 0 0.2em;
  background: var(--maincolor);
  color: #fff;
}

#sousenkyo2026 .u-maincolor {
  color: var(--maincolor);
}

#sousenkyo2026 .u-subcolor {
  color: var(--subcolor);
}

#sousenkyo2026 .u-hidden {
  display: none;
  visibility: hidden;
}

#sousenkyo2026 .c-blockLink a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#sousenkyo2026 [data-ruby] {
  position: relative;
  display: inline-block;
  line-height: 1;
}

#sousenkyo2026 [data-ruby]:before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  left: 50%;
  font-size: max(0.3em,8px);
  line-height: 1;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

@media screen and (min-width: 801px) {
  #sousenkyo2026 .sp {
    display: none !important;
  }
  #sousenkyo2026 a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .pc {
    display: none !important;
  }
}

/* ======== ↑ End common ↑ ======== */
/* ======== ↓ main ↓ ======== */
#cduWrap {
  width: 100%;
  background: #fff;
}

#cduFooter {
  max-width: 1016px;
}

:root {
  --kvImgWidth: 225.6vw;
}

@media screen and (max-width: 800px) {
  :root {
    --kvImgWidth: 423.0136vw;
  }
}

#sousenkyo2026 .parallaxWrapper {
  position: relative;
}

#sousenkyo2026 .parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: -1;
}

#sousenkyo2026 .parallax .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

#sousenkyo2026 .parallax.--body {
  background: #000;
}

#sousenkyo2026 .parallax.--body .marquee {
  position: fixed;
  top: 50%;
  left: -50%;
  right: -50%;
  margin: auto;
  width: 133.34%;
  aspect-ratio: 1 / 0.075;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  opacity: 0.28;
  -webkit-animation: bgMarquee 30s linear 0s infinite normal forwards running;
          animation: bgMarquee 30s linear 0s infinite normal forwards running;
}

@-webkit-keyframes bgMarquee {
  0% {
    background-position: top left 0vw;
  }
  100% {
    background-position: top left -248.69696vw;
  }
}

@keyframes bgMarquee {
  0% {
    background-position: top left 0vw;
  }
  100% {
    background-position: top left -248.69696vw;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .parallax {
    background-size: auto 100vh;
  }
}

#sousenkyo2026 h2.heading {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.1;
  color: var(--maincolor);
  width: 96%;
  margin: 0 auto;
  padding: 0 0 0.25em 1.65em;
  position: relative;
}

#sousenkyo2026 h2.heading:before {
  content: '';
  position: absolute;
  top: -0.1em;
  left: 0;
  width: 1.2em;
  aspect-ratio: 1 / 0.862;
}

#sousenkyo2026 h2.heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--maincolor);
}

#sousenkyo2026 h2.heading.js-scroll {
  -webkit-transition: 0.6s ease 0.5s;
  transition: 0.6s ease 0.5s;
  letter-spacing: -0.1em;
  opacity: 0;
}

#sousenkyo2026 h2.heading.js-scroll:before {
  -webkit-transition: 0.6s cubic-bezier(0.33, 0, 0.1, 1) 0.3s;
  transition: 0.6s cubic-bezier(0.33, 0, 0.1, 1) 0.3s;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

#sousenkyo2026 h2.heading.js-scroll:after {
  width: 0;
  -webkit-transition: 0.6s cubic-bezier(0.33, 0, 0.33, 1) 0.7s;
  transition: 0.6s cubic-bezier(0.33, 0, 0.33, 1) 0.7s;
}

#sousenkyo2026 h2.heading.is-scroll {
  letter-spacing: 0;
  opacity: 1;
}

#sousenkyo2026 h2.heading.is-scroll:before {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#sousenkyo2026 h2.heading.is-scroll:after {
  width: 100%;
}

@media screen and (max-width: 1220px) {
  #sousenkyo2026 h2.heading {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 h2.heading {
    font-size: 5vw;
  }
}

#sousenkyo2026 h3.heading {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 0.2em 0.05em;
  color: #fff;
  background: var(--maincolor);
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
}

#sousenkyo2026 h3.heading > .wrap {
  display: block;
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
}

@media screen and (max-width: 1220px) {
  #sousenkyo2026 h3.heading {
    font-size: 3.34vw;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 h3.heading {
    font-size: 5vw;
  }
}

#sousenkyo2026 .c-btn a {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.05em;
  display: block;
  width: 100%;
  max-width: 400px;
  background: #b80325;
  color: #fff;
  padding: 0.25em 1em;
  margin: 0 auto;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#sousenkyo2026 .c-btn a:hover {
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
          box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #sousenkyo2026 .c-btn a {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .c-btn a {
    font-size: min(6vw,30px);
  }
}

#sousenkyo2026 .c-result .img {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

#sousenkyo2026 .c-result .img:after {
  content: '';
  position: absolute;
  visibility: visible;
  top: 3%;
  left: 3%;
  z-index: 8;
}

#sousenkyo2026 .c-result .img.rg:after {
  width: 26.43%;
  height: 14.2%;
}

#sousenkyo2026 .c-result .img.hg:after {
  width: 21.43%;
  height: 13.22%;
}

#sousenkyo2026 .c-result .img.mg:after {
  width: 24.65%;
  height: 14.83%;
}

#sousenkyo2026 .c-result .img.re:after {
  width: 23.13%;
  height: 16.08%;
}

#sousenkyo2026 .c-result .img img {
  border: 1px solid var(--maincolor);
}

#sousenkyo2026 .c-result_selection {
  margin-top: 40px;
  padding: 3.33%;
  border: 1px solid #a251ec;
  border-radius: 20px;
}

#sousenkyo2026 .c-result_selection .img {
  margin-top: 1em;
}

#sousenkyo2026 .c-result_selection .img img {
  border: 1px solid var(--maincolor);
}

#sousenkyo2026 .c-result_selection .head {
  font-size: 30px;
  color: #6ac0ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  margin-top: 0.5em;
}

#sousenkyo2026 .c-result_selection .rank .num {
  font-size: 180%;
  line-height: 1;
  vertical-align: sub;
}

#sousenkyo2026 .c-result_selection .name {
  font-size: 30px;
  text-align: center;
  line-height: 1.3;
}

#sousenkyo2026 .c-result_selection .c-btn {
  margin-top: 1em;
}

#sousenkyo2026 .c-result_selection .c-btn a {
  background: #9803d2;
}

#sousenkyo2026 .c-result_selection.js-scroll {
  -webkit-transition: 1.5s ease 0.3s;
  transition: 1.5s ease 0.3s;
  -webkit-filter: brightness(250%);
          filter: brightness(250%);
  opacity: 0;
}

#sousenkyo2026 .c-result_selection.is-scroll {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#sousenkyo2026 .c-result_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 3.33%;
}

#sousenkyo2026 .c-result_list.around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#sousenkyo2026 .c-result_list.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#sousenkyo2026 .c-result_list li {
  margin-top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#sousenkyo2026 .c-result_list li img {
  margin: 0 auto;
}

#sousenkyo2026 .c-result_list li .name {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#sousenkyo2026 .c-result_list .top1 {
  width: 100%;
}

#sousenkyo2026 .c-result_list .top1 .img {
  margin-top: 1em;
}

#sousenkyo2026 .c-result_list .top1 .img img {
  border-width: 4px;
}

#sousenkyo2026 .c-result_list .top5 {
  width: calc(calc(100% - 3.33%) / 2);
}

#sousenkyo2026 .c-result_list .top5 .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#sousenkyo2026 .c-result_list .top5 .head > img {
  width: 31.32%;
}

#sousenkyo2026 .c-result_list .top5 .name {
  width: 68.68%;
  padding-left: 1em;
  position: relative;
  font-size: 20px;
  line-height: 1.3;
}

#sousenkyo2026 .c-result_list .top5 .name .votes {
  color: #c1c1c1;
  display: block;
}

#sousenkyo2026 .c-result_list .top5 .name .votes .num {
  font-size: 150%;
}

#sousenkyo2026 .c-result_list .top5 .img {
  margin-top: 1.5em;
}

#sousenkyo2026 .c-result_list .top5:nth-child(2) .name .votes {
  color: #c27325;
}

#sousenkyo2026 .c-result_list .top5:nth-child(n+3) .name .votes {
  color: #a26aff;
}

#sousenkyo2026 .c-result_list .top10 {
  width: calc(calc(100% - 3.33% * 2) / 3);
}

#sousenkyo2026 .c-result_list .top10 .head {
  font-size: 20px;
  color: #6ac0ff;
}

#sousenkyo2026 .c-result_list .top10 .rank {
  letter-spacing: 0.2em;
}

#sousenkyo2026 .c-result_list .top10 .rank .num {
  font-size: 170%;
}

#sousenkyo2026 .c-result_list .top10 .votes {
  padding-left: 0.5em;
  display: inline-block;
  position: relative;
}

#sousenkyo2026 .c-result_list .top10 .votes:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 1em;
  background: currentColor;
}

#sousenkyo2026 .c-result_list .top10 .name {
  margin-top: 1em;
  line-height: 1.3;
}

#sousenkyo2026 .c-result_list .top10 .c-btn {
  margin-top: 1em;
}

#sousenkyo2026 .c-result_list .top10 .c-btn a {
  font-size: 24px;
}

#sousenkyo2026 .c-result_list .top30 {
  width: calc(calc(100% - 3.33% * 4) / 5);
}

#sousenkyo2026 .c-result_list .top30 .head {
  margin-top: 1em;
  font-size: 16px;
  line-height: 1.3;
  color: #6ac0ff;
}

#sousenkyo2026 .c-result_list .top30 .name {
  font-size: 16px;
  line-height: 1.3;
}

#sousenkyo2026 .c-result_list .top30 .rank {
  letter-spacing: 0.2em;
}

#sousenkyo2026 .c-result_list .top30 .votes {
  padding-left: 0.5em;
  display: inline-block;
  position: relative;
}

#sousenkyo2026 .c-result_list .top30 .votes:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 1em;
  background: currentColor;
}

#sousenkyo2026 .c-result_list .top30 .c-btn {
  margin-top: 0.5em;
}

#sousenkyo2026 .c-result_list .top30 .c-btn a {
  font-size: 20px;
  letter-spacing: 0;
}

#sousenkyo2026 .c-result_list .top100 {
  width: calc(calc(100% - 3.33%) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-height: 4.5em;
  margin: 0;
  padding: 1.7em 0 0.5em;
  border-bottom: 1px solid #876520;
}

#sousenkyo2026 .c-result_list .top100 .head {
  font-size: 16px;
  line-height: 1.3;
  color: #6ac0ff;
  width: 10.5em;
}

#sousenkyo2026 .c-result_list .top100 .name {
  font-size: 16px;
  line-height: 1.3;
  width: calc(100% - 10.5em);
}

#sousenkyo2026 .c-result_list .top100 .rank {
  letter-spacing: 0.2em;
}

#sousenkyo2026 .c-result_list .top100 .votes {
  padding-left: 0.75em;
  margin-left: 0.25em;
  display: inline-block;
  position: relative;
}

#sousenkyo2026 .c-result_list .top100 .votes:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 1em;
  background: currentColor;
}

#sousenkyo2026 .c-result_list .break {
  width: 100%;
}

#sousenkyo2026 .c-result_list .c-btn {
  margin-top: 2em;
}

#sousenkyo2026 .c-result_list.js-scroll {
  -webkit-perspective: 2000px;
          perspective: 2000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

#sousenkyo2026 .c-result_list.js-scroll .top1 {
  -webkit-transition: 1.5s;
  transition: 1.5s;
  opacity: 0;
  -webkit-filter: brightness(0%);
          filter: brightness(0%);
  -webkit-transform: translateZ(1000px);
          transform: translateZ(1000px);
}

#sousenkyo2026 .c-result_list.js-scroll .top5, #sousenkyo2026 .c-result_list.js-scroll .top10, #sousenkyo2026 .c-result_list.js-scroll .top30, #sousenkyo2026 .c-result_list.js-scroll .top100 {
  opacity: 0;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transform: translate3d(0, -20px, 50px);
          transform: translate3d(0, -20px, 50px);
}

#sousenkyo2026 .c-result_list.is-scroll .top1 {
  -webkit-animation: top1 1.5s ease 1s 1 normal forwards running;
          animation: top1 1.5s ease 1s 1 normal forwards running;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@-webkit-keyframes top1 {
  0% {
    -webkit-filter: contrast(0) brightness(0.05);
            filter: contrast(0) brightness(0.05);
  }
  33.33% {
    -webkit-filter: contrast(0) brightness(3) drop-shadow(0 0 20px #ffeea8);
            filter: contrast(0) brightness(3) drop-shadow(0 0 20px #ffeea8);
  }
  100% {
    -webkit-filter: none;
            filter: none;
  }
}

@keyframes top1 {
  0% {
    -webkit-filter: contrast(0) brightness(0.05);
            filter: contrast(0) brightness(0.05);
  }
  33.33% {
    -webkit-filter: contrast(0) brightness(3) drop-shadow(0 0 20px #ffeea8);
            filter: contrast(0) brightness(3) drop-shadow(0 0 20px #ffeea8);
  }
  100% {
    -webkit-filter: none;
            filter: none;
  }
}

#sousenkyo2026 .c-result_list.is-scroll .top5, #sousenkyo2026 .c-result_list.is-scroll .top10, #sousenkyo2026 .c-result_list.is-scroll .top30, #sousenkyo2026 .c-result_list.is-scroll .top100 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#sousenkyo2026 .c-result .c-btn a {
  letter-spacing: 0.1em;
  border-radius: 8px;
  max-width: 560px;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #sousenkyo2026 .c-result_list .top5 .name {
    font-size: 1.6vw;
  }
  #sousenkyo2026 .c-result_list .top10 .c-btn a {
    font-size: 2vw;
  }
  #sousenkyo2026 .c-result_list .top30 .head, #sousenkyo2026 .c-result_list .top30 .name {
    font-size: 1.4vw;
  }
  #sousenkyo2026 .c-result_list .top30 .c-btn a {
    font-size: 1.6vw;
  }
  #sousenkyo2026 .c-result_list .top100 .head, #sousenkyo2026 .c-result_list .top100 .name {
    font-size: 1.4vw;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .c-result_selection {
    border-radius: 10px;
  }
  #sousenkyo2026 .c-result_selection .head {
    font-size: 6vw;
  }
  #sousenkyo2026 .c-result_selection .name {
    font-size: 5vw;
  }
  #sousenkyo2026 .c-result_list .top5 .head .name {
    font-size: 4vw;
  }
  #sousenkyo2026 .c-result_list .top5 .img {
    margin-top: 0.5em;
  }
  #sousenkyo2026 .c-result_list .top5 .img + .name {
    font-size: 3.5vw;
    margin-top: 1em;
    padding: 0;
    width: 100%;
  }
  #sousenkyo2026 .c-result_list .top5 .c-btn a {
    font-size: 4vw;
  }
  #sousenkyo2026 .c-result_list .top10 {
    width: calc(calc(100% - 3.33%) / 2);
  }
  #sousenkyo2026 .c-result_list .top10 .rank {
    font-size: 4.5vw;
  }
  #sousenkyo2026 .c-result_list .top10 .votes {
    font-size: 4.5vw;
  }
  #sousenkyo2026 .c-result_list .top10 .name {
    font-size: 3.5vw;
  }
  #sousenkyo2026 .c-result_list .top10 .c-btn a {
    font-size: 4vw;
  }
  #sousenkyo2026 .c-result_list .top30 {
    width: calc(calc(100% - 3.33%) / 2);
  }
  #sousenkyo2026 .c-result_list .top30 .head {
    margin-top: 0.5em;
  }
  #sousenkyo2026 .c-result_list .top30 .rank {
    font-size: 4vw;
  }
  #sousenkyo2026 .c-result_list .top30 .votes {
    font-size: 4vw;
  }
  #sousenkyo2026 .c-result_list .top30 .name {
    font-size: 3.5vw;
  }
  #sousenkyo2026 .c-result_list .top30 .c-btn a {
    font-size: 4vw;
  }
  #sousenkyo2026 .c-result_list .top100 {
    width: 100%;
  }
  #sousenkyo2026 .c-result_list .top100 .head {
    font-size: 3.5vw;
  }
  #sousenkyo2026 .c-result_list .top100 .name {
    font-size: 3.5vw;
  }
}

#sousenkyo2026 .c-copyright {
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1220px) {
  #sousenkyo2026 .c-copyright {
    font-size: 1.17vw;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .c-copyright {
    font-size: min(2.8vw,14px);
  }
}

#sousenkyo2026 .p-kv {
  background: #000;
  width: 100%;
  aspect-ratio: 1 / 0.4234;
  overflow: hidden;
  position: relative;
}

#sousenkyo2026 .p-kv > * {
  position: absolute;
}

#sousenkyo2026 .p-kv .bg {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  -webkit-animation: kvBg 40s linear -35s infinite normal forwards running;
          animation: kvBg 40s linear -35s infinite normal forwards running;
}

@-webkit-keyframes kvBg {
  0% {
    background-position: top left var(--kvImgWidth);
  }
  100% {
    background-position: top left 0vw;
  }
}

@keyframes kvBg {
  0% {
    background-position: top left var(--kvImgWidth);
  }
  100% {
    background-position: top left 0vw;
  }
}

#sousenkyo2026 .p-kv .marquee {
  position: absolute;
  top: 54%;
  left: -50%;
  right: -50%;
  margin: auto;
  width: 133.34%;
  aspect-ratio: 1 / 0.075;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-animation: kvMarquee 30s linear 0s infinite normal forwards running;
          animation: kvMarquee 30s linear 0s infinite normal forwards running;
}

@-webkit-keyframes kvMarquee {
  0% {
    background-position: top left 0vw;
  }
  100% {
    background-position: top left -248.69696vw;
  }
}

@keyframes kvMarquee {
  0% {
    background-position: top left 0vw;
  }
  100% {
    background-position: top left -248.69696vw;
  }
}

#sousenkyo2026 .p-kv .title {
  left: 0%;
  right: 0%;
  bottom: 4%;
  margin: auto;
  width: 45.267%;
}

#sousenkyo2026 .p-kv.js-scroll .bg {
  -webkit-transition: 2s cubic-bezier(0.33, 0, 0.1, 1) 1s;
  transition: 2s cubic-bezier(0.33, 0, 0.1, 1) 1s;
  opacity: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#sousenkyo2026 .p-kv.js-scroll .marquee {
  -webkit-transition: 1s ease 2s;
  transition: 1s ease 2s;
  opacity: 0;
}

#sousenkyo2026 .p-kv.js-scroll .title {
  -webkit-transition: 2s ease 0.3s;
  transition: 2s ease 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-filter: blur(1vw) brightness(0.1);
          filter: blur(1vw) brightness(0.1);
}

#sousenkyo2026 .p-kv.is-scroll .bg {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#sousenkyo2026 .p-kv.is-scroll .marquee {
  opacity: 1;
}

#sousenkyo2026 .p-kv.is-scroll .title {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-animation: kvTitle 2s ease 0.6s 1 normal forwards running;
          animation: kvTitle 2s ease 0.6s 1 normal forwards running;
}

@-webkit-keyframes kvTitle {
  0% {
    -webkit-filter: blur(1vw) brightness(0.1);
            filter: blur(1vw) brightness(0.1);
  }
  50% {
    -webkit-filter: blur(0) brightness(2) drop-shadow(0 0 2vw #fff);
            filter: blur(0) brightness(2) drop-shadow(0 0 2vw #fff);
  }
  100% {
    -webkit-filter: blur(0) brightness(1);
            filter: blur(0) brightness(1);
  }
}

@keyframes kvTitle {
  0% {
    -webkit-filter: blur(1vw) brightness(0.1);
            filter: blur(1vw) brightness(0.1);
  }
  50% {
    -webkit-filter: blur(0) brightness(2) drop-shadow(0 0 2vw #fff);
            filter: blur(0) brightness(2) drop-shadow(0 0 2vw #fff);
  }
  100% {
    -webkit-filter: blur(0) brightness(1);
            filter: blur(0) brightness(1);
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .p-kv {
    aspect-ratio: 1 / 0.79375;
  }
  #sousenkyo2026 .p-kv .title {
    width: 80%;
  }
}

#sousenkyo2026 .p-sec01 {
  padding: 95px 0 54px;
}

#sousenkyo2026 .p-sec01 .block1 {
  margin-top: 45px;
}

#sousenkyo2026 .p-sec01 .block1 h3 {
  font-size: 60px;
  text-align: center;
  line-height: 1.3;
}

#sousenkyo2026 .p-sec01 .block2 {
  margin-top: 85px;
}

#sousenkyo2026 .p-sec01 .block2 .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

#sousenkyo2026 .p-sec01 .block2 .img figure img {
  margin: 0 auto;
}

#sousenkyo2026 .p-sec01 .block2 .img figcaption {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: var(--maincolor);
}

@media screen and (max-width: 1220px) {
  #sousenkyo2026 .p-sec01 {
    padding: 8% 0 4.5%;
  }
  #sousenkyo2026 .p-sec01 .block1 {
    margin-top: 3.75vw;
  }
  #sousenkyo2026 .p-sec01 .block1 h3 {
    font-size: 5vw;
  }
  #sousenkyo2026 .p-sec01 .block2 {
    margin-top: 7.084vw;
  }
  #sousenkyo2026 .p-sec01 .block2 .img {
    gap: 2.5vw;
  }
  #sousenkyo2026 .p-sec01 .block2 .img figcaption {
    font-size: 2.084vw;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .p-sec01 {
    padding: 16% 0 9%;
  }
  #sousenkyo2026 .p-sec01 .block2 .img figcaption {
    font-size: 3.125vw;
  }
}

#sousenkyo2026 .p-sec02 {
  padding: 54px 0 48px;
}

#sousenkyo2026 .p-sec02 .block1 {
  margin-top: 70px;
}

#sousenkyo2026 .p-sec02 .block1 h4 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1220px) {
  #sousenkyo2026 .p-sec02 {
    padding: 4.5% 0 4%;
  }
  #sousenkyo2026 .p-sec02 .block1 {
    margin-top: 5.84vw;
  }
  #sousenkyo2026 .p-sec02 .block1 h4 {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .p-sec02 {
    padding: 9% 0 8%;
  }
  #sousenkyo2026 .p-sec02 .block1 h4 {
    font-size: 3.75vw;
  }
}

#sousenkyo2026 .p-sec03 {
  padding: 48px 0 60px;
}

#sousenkyo2026 .p-sec03 .block1 {
  margin-top: 70px;
}

#sousenkyo2026 .p-sec03 .block1 .period {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

#sousenkyo2026 .p-sec03 .block1 .btn {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  width: 100%;
  max-width: 17.5em;
  min-height: 2.5em;
  margin: 0 auto;
  padding: 0.25em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  background: #000;
  border: 2px solid var(--maincolor);
  border-radius: 3em;
}

#sousenkyo2026 .p-sec03 .block1 .btn i {
  display: inline-block;
  width: 1.2em;
  aspect-ratio: 1 / 0.9167;
  vertical-align: middle;
}

#sousenkyo2026 .p-sec03 .block1 .btn:hover {
  color: #000;
  background: var(--maincolor);
  -webkit-filter: drop-shadow(0 0 0.1em #fff) drop-shadow(0 0 0.3em #a07d34);
          filter: drop-shadow(0 0 0.1em #fff) drop-shadow(0 0 0.3em #a07d34);
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

#sousenkyo2026 .p-sec03 .block1 .btn:hover i {
  -webkit-filter: contrast(0) brightness(0);
          filter: contrast(0) brightness(0);
}

@media screen and (max-width: 1220px) {
  #sousenkyo2026 .p-sec03 {
    padding: 4% 0 5%;
  }
  #sousenkyo2026 .p-sec03 .block1 {
    margin-top: 5.84vw;
  }
  #sousenkyo2026 .p-sec03 .block1 .period {
    font-size: 3.34vw;
  }
  #sousenkyo2026 .p-sec03 .block1 .btn {
    font-size: 3.34vw;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .p-sec03 {
    padding: 8% 0 10%;
  }
  #sousenkyo2026 .p-sec03 .block1 .period {
    font-size: 5vw;
  }
  #sousenkyo2026 .p-sec03 .block1 .btn {
    font-size: 5vw;
  }
}

#sousenkyo2026 .p-sec04 {
  padding: 60px 0 75px;
}

#sousenkyo2026 .p-sec04 .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 55px;
}

#sousenkyo2026 .p-sec04 .block1 figure img {
  margin: 0 auto;
}

#sousenkyo2026 .p-sec04 .block1 figure a:hover img {
  opacity: 0.7;
}

#sousenkyo2026 .p-sec04 .block1 figure a:hover figcaption {
  text-decoration: none;
}

#sousenkyo2026 .p-sec04 .block1 figcaption {
  font-size: 16px;
  text-decoration: underline;
  text-align: center;
  margin-top: 1em;
}

#sousenkyo2026 .p-sec04 .c-copyright {
  margin-top: 100px;
}

@media screen and (max-width: 1220px) {
  #sousenkyo2026 .p-sec04 {
    padding: 5% 0 6.25%;
  }
  #sousenkyo2026 .p-sec04 .block1 {
    gap: 3.34vw;
    margin-top: 4.584vw;
  }
  #sousenkyo2026 .p-sec04 .block1 figcaption {
    font-size: 1.34vw;
  }
  #sousenkyo2026 .p-sec04 .c-copyright {
    margin-top: 8.34vw;
  }
}

@media screen and (max-width: 800px) {
  #sousenkyo2026 .p-sec04 .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #sousenkyo2026 .p-sec04 .block1 figcaption {
    font-size: 3vw;
  }
}

/* Animation */
.js-scroll.fadeInUp {
  opacity: 0;
  -webkit-transition: 0.7s cubic-bezier(0.5, 0, 0.2, 1) 0.3s;
  transition: 0.7s cubic-bezier(0.5, 0, 0.2, 1) 0.3s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.js-scroll.fadeInFlip {
  opacity: 0;
  -webkit-transition: 1s linear 0.3s;
  transition: 1s linear 0.3s;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-filter: contrast(0) brightness(2);
          filter: contrast(0) brightness(2);
}

.js-scroll.is-scroll.fadeInUp {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.js-scroll.is-scroll.fadeInFlip {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

/* ======== ↑ End main ↑ ======== */
