@import "base.css";
@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
  .fit {
    width: 100%;
    height: auto;
  }
}
.sizeXS {
  font-size: min(12px, 2.4vw);
}

.sizeS {
  font-size: min(14px, 2.8vw);
}

.sizeN {
  font-size: min(16px, 3.2vw);
}

.sizeM {
  font-size: min(18px, 3.4vw);
}

.sizeL {
  font-size: min(20px, 3.8vw);
}

.sizeLL {
  font-size: min(22px, 4.3vw);
}

.sizeH {
  font-size: min(24px, 4.5vw);
}

.sizeXL {
  font-size: min(26px, 5.4vw);
}

.sizeB {
  font-size: min(28px, 5.6vw);
}

@media screen and (max-width: 750px) {
  .spXS {
    font-size: min(12px, 2.4vw);
  }
  .spS {
    font-size: min(14px, 2.8vw);
  }
  .spN {
    font-size: min(16px, 3.2vw);
  }
  .spM {
    font-size: min(18px, 3.4vw);
  }
  .spL {
    font-size: min(20px, 3.8vw);
  }
  .spLL {
    font-size: min(22px, 4.3vw);
  }
  .spH {
    font-size: min(24px, 4.5vw);
  }
  .spXL {
    font-size: min(26px, 5.4vw);
  }
  .spB {
    font-size: min(28px, 5.6vw);
  }
}
/*-------------------------------------------------
	++ BASE
-------------------------------------------------*/
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 751px) {
  html {
    scroll-padding-top: 95px;
  }
}

body {
  font-size: min(16px, 3.2vw);
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  background-color: #FFF;
}

#container {
  margin: 0 auto;
  text-align: center;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 751px) {
  #container {
    min-width: 1400px;
  }
}

.inner {
  display: block;
  clear: both;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .inner {
    padding: 0 5vw;
  }
}

#contents {
  position: relative;
  width: 100%;
}

img {
  max-width: 100%;
}

/*-------------------------------------------------
	++ MENU
-------------------------------------------------*/
.menuWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  z-index: 99;
  transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (min-width: 751px) {
  .menuWrap {
    padding: 35px 60px;
  }
  .menuWrap.sticky {
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.9);
  }
}

#menu {
  z-index: 9999;
}
@media screen and (max-width: 750px) {
  #menu #menuBtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
    width: 16vw;
    height: 12vw;
  }
  #menu #menuBtn span {
    display: inline-block;
    position: absolute;
    right: 3vw;
    top: 6vw;
    width: 10vw;
    height: 2px;
    background-color: rgb(0, 0, 0);
    transition: all 0.2s ease-in;
  }
  #menu #menuBtn span:nth-of-type(1) {
    margin-top: -2.4vw;
  }
  #menu #menuBtn span:nth-of-type(2) {
    width: 9vw;
    background-color: rgb(0, 0, 0);
  }
  #menu #menuBtn span:nth-of-type(3) {
    width: 9vw;
    background-color: rgb(0, 0, 0);
  }
  #menu #menuBtn span:nth-of-type(4) {
    width: 8vw;
    margin-top: 2.4vw;
  }
  #menu .menuContents {
    display: none;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100vh;
  }
  #menu.current #menuBtn span:nth-of-type(1) {
    display: none;
  }
  #menu.current #menuBtn span:nth-of-type(2) {
    transform: rotate(30deg);
    margin-top: 0;
    background-color: rgb(0, 0, 0);
  }
  #menu.current #menuBtn span:nth-of-type(3) {
    transform: rotate(-30deg);
    margin-top: 0;
    background-color: rgb(0, 0, 0);
  }
  #menu.current #menuBtn span:nth-of-type(4) {
    display: none;
  }
  #menu.current .menuContents {
    display: block;
    opacity: 1;
  }
}
#menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  gap: 40px;
}
@media screen and (max-width: 750px) {
  #menu ul {
    flex-direction: column;
    padding: 20vw 10vw;
    background-color: #FFF;
    gap: 5vw;
    align-items: flex-start;
  }
}
#menu ul li {
  font-size: min(22px, 2vw);
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  #menu ul li {
    font-size: 5.8vw;
    width: 100%;
    text-align: left;
  }
}
#menu ul li a {
  display: block;
  color: #000;
  position: relative;
}
#menu ul li a span {
  position: relative;
  display: inline-block;
  padding: 10px 0;
}
#menu ul li a span::after {
  content: "";
  width: 0;
  transition: width 0.2s;
}
#menu ul li a.is-current span::after, #menu ul li a:hover span::after {
  width: 100%;
  height: 3px;
  background: linear-gradient(0deg, rgb(8, 185, 196) 14.42%, rgb(4, 160, 214) 51.86%, rgb(1, 140, 228) 87.46%);
  position: absolute;
  bottom: 0;
  left: 0;
}
#menu.move {
  margin-top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
}

.appBox {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.appBox::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgb(158, 215, 252) 17.34%, rgb(183, 244, 245) 75%), linear-gradient(90deg, rgb(158, 215, 252) 17.34%, rgb(183, 244, 245) 75%);
  background-blend-mode: multiply;
  border-radius: 10px;
  mix-blend-mode: multiply;
}
.appBox::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 8px;
  background: rgb(255, 255, 255);
}
.appBox .appBoxInner {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 40px;
}
@media screen and (max-width: 750px) {
  .appBox .appBoxInner {
    padding: 9vw 7vw;
  }
}
.appBox .appList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .appBox .appList {
    gap: 6vw;
  }
}
.appBox .appList li {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .appBox .appList li {
    width: calc(50% - 3vw);
  }
}
.appBox .appList li a {
  display: inline-block;
}
@media screen and (min-width: 751px) {
  .appBox .appList li a {
    margin-top: 15px;
  }
}

.linkBtn {
  display: inline-block;
  background: linear-gradient(90deg, rgb(58, 167, 238) 0%, rgb(103, 114, 197) 99.96%);
  color: #FFF;
  font-size: min(26px, 5.4vw);
  font-weight: 700;
  padding: 20px 60px;
  border-radius: 10px;
}
@media screen and (max-width: 750px) {
  .linkBtn {
    padding: 5vw 10vw;
    line-height: 1.4;
  }
}
.linkBtn:hover {
  color: #FFF;
}

.textArrow {
  position: relative;
  padding-left: 1em;
  padding-right: 0.2em;
}
.textArrow::before {
  content: "";
  background: url(/static/img/arrow2.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 0.45em;
  aspect-ratio: 4/7;
  position: absolute;
  left: 0.3em;
  top: 0.45em;
}
.textArrow::after {
  content: "";
  width: calc(100% - 1.2em);
  position: absolute;
  bottom: 0;
  right: 0.2em;
  height: 2px;
  border-radius: 9999px;
  background-color: #1b51b7;
  transition: opacity 0.3s;
}
.textArrow:hover::after {
  opacity: 0;
}

.whiteline {
  border-bottom: 2px solid #FFF;
}

/*-------------------------------------------------
	++ MAIN
-------------------------------------------------*/
#main {
  position: relative;
  background: url(/static/img/main_bg.jpg) no-repeat center top;
  background-size: 1950px auto;
}
#main .inner {
  height: 100%;
}
@media screen and (min-width: 751px) {
  #main .inner {
    min-height: 950px;
  }
}
@media screen and (max-width: 750px) {
  #main .inner {
    min-height: 200vw;
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  #main {
    overflow: hidden;
    padding: 12vw 7vw 0 7vw;
    background-image: url(/static/img/main_bg_sp.jpg);
    background-size: 100% auto;
  }
}
#main .mainLogo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 751px) {
  #main .mainLogo {
    position: absolute;
    top: 100px;
    left: 0;
    width: 34%;
  }
}
@media screen and (max-width: 750px) {
  #main .mainLogo {
    width: 60%;
  }
}
#main .mainCatch img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 751px) {
  #main .mainCatch {
    position: absolute;
    top: 170px;
    left: 40%;
    width: 37%;
  }
}
@media screen and (max-width: 750px) {
  #main .mainCatch {
    margin-top: 10vw;
    width: 86%;
  }
}
#main .mainMonitor img {
  width: 100%;
  height: auto;
}
#main .mainMonitor {
  position: absolute;
  z-index: 1;
}
#main .mainMonitor img {
  transition-delay: 0.3s;
}
@media screen and (min-width: 751px) {
  #main .mainMonitor {
    top: 100px;
    left: 67.5%;
    width: 37%;
  }
}
@media screen and (max-width: 750px) {
  #main .mainMonitor {
    left: 42%;
    top: 85vw;
    width: 75vw;
  }
}
@media screen and (min-width: 751px) {
  #main .appBoxBlock {
    position: absolute;
    top: 610px;
    left: 64%;
  }
}
@media screen and (max-width: 750px) {
  #main .appBoxBlock {
    margin-top: 98vw;
  }
}
@media screen and (min-width: 751px) {
  #main .appBox {
    width: 530px;
  }
}
@media screen and (max-width: 750px) {
  #main .appBox {
    width: calc(100% + 7vw);
    transform: translateX(-3.5vw);
  }
  #main .appBox .appInner {
    padding: 7vw;
  }
}
#main .appBox::after {
  background: rgba(255, 255, 255, 0.5);
}

/*-------------------------------------------------
	++ COMMON
-------------------------------------------------*/
.section {
  position: relative;
  padding: min(80px, 18vw) 0 min(150px, 39vw) 0;
}
.section#about {
  padding-top: min(40px, 9vw);
}
@media screen and (max-width: 750px) {
  .section#about {
    padding-bottom: 54vw;
  }
}
.section#ready {
  padding: 0;
}
.section.readyStep {
  background: linear-gradient(45deg, rgb(247, 235, 243) 0%, rgb(218, 245, 251) 100%);
}
@media screen and (max-width: 750px) {
  .section.readyStep {
    padding-top: 25vw;
  }
}
@media screen and (max-width: 750px) {
  .section.buyStep {
    padding: 50vw 0 28vw 0;
  }
}
.section.otherFunc {
  padding-bottom: 80px;
  background: linear-gradient(51.52deg, rgba(183, 244, 245, 0.65) 25%, rgba(158, 215, 252, 0.65) 82.66%);
}
@media screen and (max-width: 750px) {
  .section.otherFunc {
    padding: 12vw 0 21vw 0;
  }
}
@media screen and (max-width: 750px) {
  .section#faq {
    padding-bottom: 19vw;
  }
}
@media screen and (min-width: 751px) {
  .section#faq .secHead {
    margin-bottom: 80px;
  }
}
.section#boatrace-list {
  background: linear-gradient(215.99deg, rgb(247, 235, 243) 0%, rgb(218, 245, 251) 100%);
  padding-bottom: 90px;
}
@media screen and (max-width: 750px) {
  .section#boatrace-list {
    padding-bottom: 36vw;
  }
}
.section#boatrace-list .secHead {
  margin-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .section#boatrace-list .secHead {
    margin-bottom: 5vw;
  }
}
.section#app {
  padding-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .section#app {
    padding: 40vw 0 10vw 0;
  }
}
.section .secHead {
  position: relative;
  margin-bottom: min(40px, 7vw);
}
.section .secHead .titleEn {
  margin-bottom: min(5px, 2vw);
}
@media screen and (max-width: 750px) {
  .section .secHead .titleEn img {
    height: 3.4vw;
    width: auto;
  }
}
.section .secHead .titleJa {
  font-size: min(48px, 9vw);
  font-weight: 700;
  position: relative;
  line-height: 1;
  padding-bottom: min(25px, 5vw);
  margin: 0 auto min(25px, 5vw) auto;
}
@media screen and (min-width: 751px) {
  .section .secHead .titleJa {
    letter-spacing: 0.05em;
  }
}
.section .secHead .titleJa::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -5px;
  width: 100%;
  max-width: 480px;
  height: 22px;
  background: url(/static/img/hx_border1.svg) no-repeat center bottom;
  background-size: contain;
  left: calc(50% + 35px);
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .section .secHead .titleJa::after {
    left: 50%;
    background: url(/static/img/hx_border_sp.svg) no-repeat left bottom;
    width: 85vw;
    background-size: 120% auto;
  }
}
@media screen and (min-width: 751px) {
  .section .secHead .titleJa.plusL::after {
    max-width: 590px;
    background-image: url(/static/img/hx_border2.svg);
  }
}
.section .secHead .catch {
  font-size: min(24px, 4.5vw);
}
.section .secSubHead {
  margin-bottom: min(70px, 9vw);
}
@media screen and (max-width: 750px) {
  .section .secSubHead .subHx img {
    width: auto;
    height: 8.5vw;
  }
}

.deco {
  position: absolute;
  pointer-events: none;
}
.deco.decoG1 {
  bottom: -140px;
  left: 50%;
  z-index: 0;
  margin-left: 480px;
  mix-blend-mode: multiply;
  opacity: 0.8;
}
.deco.decoG2 {
  top: -220px;
  left: -60px;
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: 0.8 !important;
}
@media screen and (max-width: 750px) {
  .deco.decoG2 {
    top: -57vw;
    left: 0;
    width: 46vw;
  }
}
.deco.decoG3 {
  top: -110px;
  left: 50%;
  z-index: 0;
  margin-left: 510px;
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .deco.decoG3 {
    margin: 0;
    left: auto;
    right: 0;
    overflow: hidden;
    top: -20vw;
  }
  .deco.decoG3 img {
    width: 42vw;
    transform: translateX(15vw);
  }
}
.deco.decoF {
  left: 0;
  top: -90px;
}
@media screen and (max-width: 750px) {
  .deco.decoF {
    top: -41vw;
    width: 60vw;
  }
}
.deco.decoM {
  right: 0;
  top: -260px;
}
@media screen and (max-width: 750px) {
  .deco.decoM {
    top: -34vw;
    width: 75vw;
  }
}
.deco.decoP {
  left: 0;
  top: -260px;
}
@media screen and (max-width: 750px) {
  .deco.decoP {
    top: -34vw;
    width: 70vw;
  }
}

/*-------------------------------------------------
	++ HOME CONTENTS
-------------------------------------------------*/
.pointBox > ul {
  display: flex;
  flex-wrap: wrap;
  gap: min(25px, 5vw);
}
.pointBox > ul > li {
  width: calc((100% - 50px) / 3);
  background: linear-gradient(120deg, rgba(158, 215, 252, 0.7) 17.34%, rgba(183, 244, 245, 0.7) 86.5%);
  border-radius: 12px;
  padding: 60px 30px 0 30px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 750px) {
  .pointBox > ul > li {
    width: 100%;
    padding: 12vw 8vw 0 8vw;
  }
  .pointBox > ul > li:nth-of-type(1) .img, .pointBox > ul > li:nth-of-type(2) .img {
    padding: 0 13vw;
  }
  .pointBox > ul > li:nth-of-type(3) {
    padding-bottom: 6vw;
  }
}
.pointBox > ul > li .pointBadge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 12px;
}
@media screen and (max-width: 750px) {
  .pointBox > ul > li .pointBadge {
    width: 25vw;
    padding: 1vw 3vw;
  }
}
.pointBox > ul > li .pointBadge img {
  position: relative;
  z-index: 1;
}
.pointBox > ul > li .pointBadge::after {
  content: "";
  display: block;
  width: 156px;
  aspect-ratio: 156/42;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' viewBox='0 0 156 42'  preserveAspectRatio='none'%3E%3Cg%3E%3Cpath fill='%23FFFFFF' d='M0,0v42c0-6.6,5.4-12.1,12-12.1h93.5c6.6,0,15.6-4.1,20-9l10.5-11.9c4.4-5,13.4-9,20-9H0Z' /%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .pointBox > ul > li .pointBadge::after {
    width: 34vw;
  }
}
.pointBox > ul > li .pointTitle img {
  width: auto;
  height: revert-layer;
}
@media screen and (max-width: 750px) {
  .pointBox > ul > li .pointTitle img {
    height: 8.9vw;
  }
}
.pointBox > ul > li .text {
  font-size: min(17px, 3.6vw);
  margin-top: min(20px, 5vw);
}
.pointBox > ul > li .emText {
  font-size: min(21px, 4.6vw);
  font-weight: 700;
  display: block;
  margin-top: min(20px, 3vw);
}
.pointBox > ul > li .emText span {
  display: inline;
  background-image: linear-gradient(90deg, #9180e9 11%, #5ed4e8 91%);
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: 0 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.pointBox > ul > li .img {
  text-align: center;
  margin-top: min(40px, 7vw);
}

.call {
  position: relative;
  font-size: min(32px, 5.2vw);
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto min(20px, 5vw) auto;
  padding: 0 min(75px, 8vw);
  letter-spacing: 0.1em;
}
.call::before, .call::after {
  content: "";
  width: 42px;
  aspect-ratio: 21/4;
  background: linear-gradient(90deg, rgb(158, 215, 252) 17.34%, rgb(183, 244, 245) 75%);
  border-radius: 9999px;
  display: inline-block;
  position: absolute;
  top: 50%;
}
@media screen and (max-width: 750px) {
  .call::before, .call::after {
    width: 8vw;
  }
}
.call::before {
  left: 0;
  transform: translateY(-50%) rotate(70deg);
}
.call::after {
  right: 0;
  transform: translateY(-50%) rotate(-70deg) scale(-1, 1);
}

.stepList {
  max-width: 920px;
  margin: min(70px, 13vw) auto 0 auto;
}
.stepList > ul {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media screen and (max-width: 750px) {
  .stepList > ul {
    gap: 15vw;
  }
}
.stepList > ul > li {
  position: relative;
  text-align: left;
  position: relative;
}
.stepList > ul > li:not(:last-child)::after {
  content: "";
  background: url(/static/img/arrow.svg) no-repeat center top;
  width: 78px;
  aspect-ratio: 78/26;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .stepList > ul > li:not(:last-child)::after {
    width: 15vw;
    bottom: -9vw;
  }
}
.stepList > ul > li .stepBox {
  background-color: #FFF;
  border-radius: 12px;
  padding: 20px 50px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .stepList > ul > li .stepBox {
    padding: 6vw;
  }
}
.stepList > ul > li .stepBox .stepNo {
  position: absolute;
  top: -20px;
  left: 30px;
}
@media screen and (max-width: 750px) {
  .stepList > ul > li .stepBox .stepNo {
    top: -4vw;
    left: 6vw;
    width: 25vw;
  }
}
.stepList > ul > li .stepBox .stepTitle {
  font-size: min(32px, 6vw);
  color: #1b51b7;
  font-weight: 700;
  line-height: 1.4;
}
.stepList > ul > li .stepBox .ssid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.stepList > ul > li .stepBox .ssid li {
  background: linear-gradient(90deg, rgb(158, 215, 252) 17.34%, rgb(183, 244, 245) 75%);
  font-size: min(24px, 4.5vw);
  font-weight: 700;
  padding: 10px 15px;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 750px) {
  .stepList > ul > li .stepBox .ssid {
    gap: 2vw;
    margin-top: 3vw;
  }
  .stepList > ul > li .stepBox .ssid li {
    padding: 1vw 3vw;
    min-width: 90%;
  }
}
.stepList > ul > li .stepBox .text {
  font-size: min(20px, 3.8vw);
  margin-top: min(20px, 2vw);
}
.stepList > ul > li .stepBox .text.small {
  font-size: min(16px, 3.2vw);
  margin-top: min(10px, 3vw);
}
.stepList > ul > li .stepBox .stepFlex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .stepList > ul > li .stepBox .stepFlex {
    align-items: center;
  }
}
.stepList > ul > li .stepBox .stepFlex .stepFlexLeft {
  flex: 1;
}
.stepList > ul > li .stepBox .stepFlex .stepFlexRight {
  width: 240px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .stepList > ul > li .stepBox .stepFlex .stepFlexRight {
    width: 20vw;
  }
}
.stepList > ul > li .att {
  margin-top: min(10px, 3vw);
  padding-left: 20px;
  font-size: min(18px, 3.4vw);
}
@media screen and (max-width: 750px) {
  .stepList > ul > li .att {
    padding-left: 2vw;
  }
}

.voteTab .tabTglList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .voteTab .tabTglList {
    gap: 5vw;
  }
}
.voteTab .tabTglList li {
  flex: 1;
}
.voteTab .tabTglList li .tabTgl {
  display: block;
  font-size: min(30px, 4.2vw);
  font-weight: 700;
  padding: 15px;
  position: relative;
  color: #000;
}
.voteTab .tabTglList li .tabTgl::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(58, 167, 238) 0%, rgb(103, 114, 197) 99.96%);
  border-radius: 10px;
}
.voteTab .tabTglList li .tabTgl::after {
  content: "";
  display: block;
  position: absolute;
  inset: 3px;
  background: #FFF;
  border-radius: 8px;
}
.voteTab .tabTglList li .tabTgl.current {
  color: #FFF;
}
.voteTab .tabTglList li .tabTgl.current::after {
  display: none;
}
.voteTab .tabTglList li .tabTgl.current span::before {
  background: #FFF;
  width: 20px;
  aspect-ratio: 10/9;
  clip-path: polygon(0% 0%, 100% 0, 50% 100%);
}
@media screen and (max-width: 750px) {
  .voteTab .tabTglList li .tabTgl.current span::before {
    width: 3.2vw;
  }
}
.voteTab .tabTglList li .tabTgl span {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 751px) {
  .voteTab .tabTglList li .tabTgl span.pc {
    display: inline-block;
  }
}
@media screen and (max-width: 750px) {
  .voteTab .tabTglList li .tabTgl span {
    padding: 0 5vw;
    line-height: 1.4;
  }
  .voteTab .tabTglList li .tabTgl span.sp {
    display: inline-block;
  }
}
.voteTab .tabTglList li .tabTgl span::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  aspect-ratio: 9/10;
  background: linear-gradient(135deg, #42a5f5, #3f51b5);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
@media screen and (max-width: 750px) {
  .voteTab .tabTglList li .tabTgl span::before {
    left: 0;
    width: 3vw;
  }
}
.voteTab .voteInner {
  padding-top: 85px;
}
@media screen and (max-width: 750px) {
  .voteTab .voteInner {
    width: 100%;
    overflow-x: scroll;
    padding: 8vw 0;
  }
}
@media screen and (max-width: 750px) {
  .voteTab .voteStepList {
    width: 270vw;
  }
}
.voteTab .voteStepList > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 750px) {
  .voteTab .voteStepList > ul {
    gap: 10vw;
  }
}
.voteTab .voteStepList > ul > li {
  flex: 1;
  text-align: center;
  padding-top: 35px;
  background-size: 115px auto;
  background-repeat: no-repeat;
  background-position: left top;
  position: relative;
}
@media screen and (max-width: 750px) {
  .voteTab .voteStepList > ul > li {
    padding-top: 7vw;
    background-size: 25vw auto;
  }
  .voteTab .voteStepList > ul > li .img {
    padding: 0 10vw;
  }
}
.voteTab .voteStepList > ul > li:not(:last-child)::after {
  content: "";
  background: url(/static/img/arrow3.svg) no-repeat center top;
  width: 67px;
  aspect-ratio: 67/30;
  position: absolute;
  top: 50%;
  left: calc(100% - 10px);
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .voteTab .voteStepList > ul > li:not(:last-child)::after {
    width: 14vw;
    left: calc(100% - 5vw);
  }
}
.voteTab .voteStepList > ul > li .text {
  text-align: left;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .voteTab .voteStepList > ul > li .text {
    font-size: 4vw;
  }
}
.voteTab .voteStepList > ul > li:nth-of-type(1) {
  background-image: url(/static/img/vote_no1.svg);
}
.voteTab .voteStepList > ul > li:nth-of-type(2) {
  background-image: url(/static/img/vote_no2.svg);
}
.voteTab .voteStepList > ul > li:nth-of-type(3) {
  background-image: url(/static/img/vote_no3.svg);
}
.voteTab .voteStepList > ul > li:nth-of-type(4) {
  background-image: url(/static/img/vote_no4.svg);
}

.funcList ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 750px) {
  .funcList ul {
    gap: 5vw;
  }
}
.funcList ul li {
  background: linear-gradient(120deg, rgb(72, 135, 227) 0%, rgb(46, 166, 192) 99.96%);
  padding: min(40px, 8vw);
  border-radius: 10px;
  color: #FFF;
}
@media screen and (min-width: 751px) {
  .funcList ul li {
    flex: 1;
  }
}
@media screen and (max-width: 750px) {
  .funcList ul li {
    width: 100%;
  }
  .funcList ul li > img {
    width: 32vw;
    height: auto;
  }
}
.funcList ul li h4 {
  font-size: min(30px, 6vw);
}
.funcList ul li .text {
  font-size: min(18px, 3.4vw);
}

.faqList {
  margin: 0 auto;
  max-width: 980px;
}
.faqList .faqHx {
  cursor: pointer;
  position: relative;
  padding: min(20px, 5vw);
  text-align: left;
  color: #FFF;
  font-size: min(30px, 5vw);
  background: linear-gradient(90deg, rgb(158, 215, 252) 17.34%, rgb(183, 244, 245) 75%);
  margin-bottom: min(30px, 4vw);
}
@media screen and (max-width: 750px) {
  .faqList .faqHx {
    padding: 5vw 15vw 5vw 5vw;
  }
}
.faqList .faqHx .handle {
  position: absolute;
  width: min(48px, 9vw);
  aspect-ratio: 1;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  right: min(25px, 4vw);
  transform: translateY(-50%);
}
.faqList .faqHx .handle::before, .faqList .faqHx .handle::after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 3px;
  background-color: #88c3ff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .faqList .faqHx .handle::before, .faqList .faqHx .handle::after {
    width: 4vw;
    height: 2px;
  }
}
.faqList .faqHx .handle::before {
  transform: translate(-50%, -50%);
}
.faqList .faqHx .handle::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.faqList .faqHx.current .handle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faqList .faqContents {
  display: none;
}
.faqList .faqContents.current {
  display: block;
}
.faqList .faqContents > dl {
  text-align: left;
  margin-bottom: min(10px, 3vw);
}
.faqList .faqContents > dl:nth-last-of-type(1) {
  margin-bottom: min(40px, 7vw);
}
.faqList .faqContents > dl > dt,
.faqList .faqContents > dl > dd {
  padding: 25px 50px 25px 100px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .faqList .faqContents > dl > dt,
  .faqList .faqContents > dl > dd {
    padding: 3vw 3vw 3vw 20vw;
  }
}
.faqList .faqContents > dl > dt::before,
.faqList .faqContents > dl > dd::before {
  content: "";
  width: min(28px, 5vw);
  aspect-ratio: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  position: absolute;
  top: 25px;
  left: 35px;
}
@media screen and (max-width: 750px) {
  .faqList .faqContents > dl > dt::before,
  .faqList .faqContents > dl > dd::before {
    left: 10vw;
    top: 3.4vw;
  }
}
.faqList .faqContents > dl > dt {
  background-color: #f0f0f0;
  font-size: min(24px, 4.5vw);
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .faqList .faqContents > dl > dt {
    font-size: 4vw;
    line-height: 1.4;
  }
}
.faqList .faqContents > dl > dt::before {
  background-image: url(/static/img/title_qa_q.svg);
}
.faqList .faqContents > dl > dd {
  font-size: min(18px, 3.4vw);
}
.faqList .faqContents > dl > dd::before {
  background-image: url(/static/img/title_qa_a.svg);
}
.faqList .faqContents.network-error > dl > dt::before{ top: 1.25em;}
@media screen and (max-width: 750px) {
.faqList .faqContents.network-error > dl > dt::before{ top: .85em;}
}
.faqList .faqContents.network-error > dl > dt.error-01::before {
  background-image: url(/static/img/title_qa_1.svg);}
.faqList .faqContents.network-error > dl > dt.error-02::before {
  background-image: url(/static/img/title_qa_2.svg);}
.faqList .faqContents.network-error > dl > dt.error-03::before {
  background-image: url(/static/img/title_qa_3.svg);}
.faqList .faqContents.network-error > dl > dt.error-04::before {
  background-image: url(/static/img/title_qa_4.svg);}
.faqList .faqContents.network-error > dl > dt.error-05::before {
  background-image: url(/static/img/title_qa_5.svg);}
.faqList .faqContents.network-error > dl > dt.error-06::before {
  background-image: url(/static/img/title_qa_6.svg);}
.faqList .faqContents.network-error > dl > dt.error-07::before {
  background-image: url(/static/img/title_qa_7.svg);}
.faqList .faqContents.network-error > dl > dt.error-08::before {
  background-image: url(/static/img/title_qa_8.svg);}
.faqList .faqContents.network-error > dl > dt.error-09::before {
  background-image: url(/static/img/title_qa_9.svg);}
.faqList .faqContents.network-error > dl > dd::before {
  background-image: none;}

.bnrList ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
 max-width: 1000px;
 margin: 0 auto 20px;
 position: relative;
 z-index: 1;}

@media screen and (max-width: 750px) {
  .bnrList ul {
    gap: 3vw;
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 750px) {
  .bnrList ul li {
    width: calc(50% - 1.5vw);
  }
}

/*-------------------------------------------------
	++ FOOTER
-------------------------------------------------*/
#footer {
  position: relative;
  background: linear-gradient(216deg, rgba(183, 244, 245, 0.65) 25%, rgba(158, 215, 252, 0.65) 82.66%);
  padding: 50px 0;
}
@media screen and (max-width: 750px) {
  #footer {
    padding: 13vw 0;
  }
}
#footer .footerBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  #footer .footerBlock {
    flex-direction: column;
  }
  #footer .footerBlock .footerLeft .logo {
    width: 30vw;
    margin: 0 auto;
  }
}
#footer .footerRight {
  flex: 1;
}
#footer .footerRight ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 32px;
}
#footer .footerRight ul li {
  font-size: min(22px, 4.3vw);
  font-weight: 700;
}
#footer .footerRight ul li a {
  color: #000;
}
#footer .footerCredit {
  text-align: right;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  #footer .footerCredit {
    text-align: center;
    margin-top: 12vw;
  }
}
#footer .footerCredit .copyright {
  font-size: min(14px, 2.8vw);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 750px) {
  #footer .footerCredit .copyright {
    font-size: 4vw;
  }
}

.floatingBadge {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 98;
}
@media screen and (max-width: 750px) {
  .floatingBadge {
    top: 18vw;
    width: 15vw;
  }
}

/*-------------------------------------------------
	++ PLUGIN
-------------------------------------------------*/
.tabTgl {
  cursor: pointer;
}

.inv {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.inv.up {
  transform: translateY(60px);
}
.inv.left {
  transform: translateX(-40px);
}
.inv.right {
  transform: translateX(40px);
}
.inv.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}