@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@100..700&display=swap");
@font-face {
  font-family: "NataIcon";
  src: url("../img/font/NataIcon.woff") format("woff");
}
/*______________________________________
common
______________________________________-*/
html {
  height: -webkit-fill-available;
  font-size: 100px;
  scroll-behavior: smooth;
  height: 100%;
  background: #017dea;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100%;
  color: #000;
  font-family: sans-serif, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #017dea;
}

@media (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
a:link, a:visited {
  color: #2d75d2;
  text-decoration: none;
}

a:hover, a:active {
  color: #488be3;
}

.container {
  font-family: sans-serif, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  font-size: 0.15rem;
  margin: 0 auto;
}

span {
  display: inline-block;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/*______________________________________
navigation
______________________________________-*/
#nav_vote {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  font-family: "M PLUS 1 Code", system-ui, sans-serif;
}
#nav_vote > ul {
  margin: 0 auto;
  height: 100vh;
  padding: 70px 0 20px;
  width: 50px;
}
#nav_vote > ul .current {
  pointer-events: none;
  padding-right: 20px;
  margin-left: -15px;
}
#nav_vote > ul li {
  border-radius: 10px 0 0 10px;
  font-weight: 800;
  background: #ffaa00;
  border: 3px solid #000;
  border-right: none;
  height: calc((100vh - 120px) / 3);
  writing-mode: vertical-rl;
  font-size: 0.19rem;
  margin-right: 0px;
}
#nav_vote > ul li:nth-child(1) {
  background: #ffd4fb;
}
#nav_vote > ul li:nth-child(2) {
  background: #aae0ff;
}
#nav_vote > ul li:nth-child(3) {
  background: #9dfff2;
}
#nav_vote > ul li:hover {
  filter: brightness(1.1);
}
#nav_vote > ul li + li {
  margin-top: 15px;
}
#nav_vote > ul li a {
  display: block;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
@media screen and (max-width: 767px) {
  #nav_vote {
    width: 100%;
    top: 0;
  }
  #nav_vote > ul {
    height: auto;
    width: calc(100vw - 45px);
    padding: 0 5px;
    display: flex;
    align-items: start;
    gap: 5px;
    justify-content: center;
    margin: -2px 60px 0 0;
  }
  #nav_vote > ul .current {
    pointer-events: none;
    padding-top: 55px;
    padding-right: 0;
    margin-left: 0;
  }
  #nav_vote > ul .current > a {
    padding: 0px 0 5px 0;
  }
  #nav_vote > ul li {
    position: relative;
    border-radius: 0 0 10px 10px;
    font-weight: 800;
    background: #ffaa00;
    border: 2px solid #000;
    border-top: none;
    width: 33.3333333333%;
    height: 45px;
    font-size: 0.15rem;
  }
  #nav_vote > ul li a {
    position: absolute;
    color: #000;
    writing-mode: horizontal-tb;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) and (max-width: 380px) {
  #nav_vote > ul li a {
    font-size: 0.12rem;
  }
}
@media screen and (max-width: 767px) {
  #nav_vote > ul li + li {
    margin-top: 0px;
  }
}

#nav-toggle {
  position: fixed;
  top: 0px;
  right: 0px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  padding: 12px 10px 10px;
  background: #000;
  border-radius: 0 0 0 10px;
  z-index: 1000;
}
#nav-toggle > div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#nav-toggle span {
  width: 100%;
  height: 4px;
  top: 0px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.2s ease-in, top 0.2s ease-out;
}
#nav-toggle span:nth-child(1) {
  top: 0px;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
@media screen and (max-width: 767px) {
  #nav-toggle {
    height: 43px;
    width: 45px;
    padding: 10px;
  }
  #nav-toggle span {
    height: 3px;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 8px;
  }
  #nav-toggle span:nth-child(3) {
    top: 16px;
  }
}

.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 10px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

#global-nav {
  background: #017dea;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "M PLUS 1 Code", system-ui, sans-serif;
  font-weight: 800;
  transform-origin: center;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}
#global-nav > nav {
  opacity: 0;
}
#global-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0;
  transition: all 0.1s;
  font-size: 90%;
}
#global-nav a:hover {
  opacity: 0.75;
}
#global-nav ul {
  list-style: none;
  padding: 0;
  font-size: 0.2rem;
}
@media screen and (max-width: 767px) {
  #global-nav ul {
    font-size: 0.18rem;
  }
}
@media screen and (max-width: 374px) {
  #global-nav ul {
    font-size: 0.15rem;
  }
}
#global-nav ul li {
  opacity: 1;
  line-height: 1.4;
}

/* open */
.open {
  overflow: hidden;
}
.open #global-nav {
  transform: translateY(0);
  outline: 3px solid #4d91ed;
  outline-offset: -15px;
  padding: 40px 0;
  visibility: visible;
}
.open #global-nav nav {
  background: fixed;
  position: relative;
  width: calc(100% - 80px);
  margin: 0 auto;
  overflow: auto;
  opacity: 1;
}
.open #global-nav nav .nav_logo {
  max-width: 180px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .open #global-nav nav .nav_logo {
    max-width: 100px;
    margin: 0 auto 30px;
  }
}
.open #global-nav nav .nav_vote_enter {
  position: absolute;
  right: 0;
  top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
  background: transparent;
  margin: 0px auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .open #global-nav nav .nav_vote_enter {
    position: relative;
    margin: 20px auto;
    top: 0;
  }
}
@media screen and (max-width: 420px) {
  .open #global-nav nav .nav_vote_enter {
    grid-template-columns: 1fr;
    position: relative;
    margin: 20px auto;
    gap: 10px;
  }
}
.open #global-nav nav .nav_vote_enter li {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  transition: transform 2s ease, opacity 1s ease;
  display: block;
  padding-right: 15px;
  border: 2px solid #000;
}
.open #global-nav nav .nav_vote_enter li:nth-child(1) {
  border: 2px solid #ffd4fb;
}
.open #global-nav nav .nav_vote_enter li:nth-child(2) {
  border: 2px solid #aae0ff;
}
.open #global-nav nav .nav_vote_enter li:nth-child(3) {
  border: 2px solid #9dfff2;
}
.open #global-nav nav .nav_vote_enter li > a {
  color: #fff;
  padding: 30px 15px;
}
.open #global-nav nav .nav_vote_enter li > a:after {
  display: inline-block;
  position: absolute;
  right: 10px;
  content: "▶︎";
  font-weight: normal;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80%;
}
@media screen and (max-width: 767px) {
  .open #global-nav nav .nav_vote_enter li > a {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 420px) {
  .open #global-nav nav .nav_vote_enter li > a {
    padding: 10px;
  }
}
.open #global-nav nav ul.nav_common_enter {
  display: grid;
  align-items: center;
  background: transparent;
  text-align: left;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  flex-direction: column;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 767px) {
  .open #global-nav nav ul.nav_common_enter {
    grid-template-columns: 1fr;
  }
}
.open #global-nav nav ul.nav_common_enter li {
  opacity: 1;
  transform: translateX(0);
  padding: 10px 25px 10px 0;
}
.open #global-nav nav ul.nav_common_enter li > a {
  position: relative;
}
.open #global-nav nav ul.nav_common_enter li > a:after {
  display: inline-block;
  position: absolute;
  right: -25px;
  content: "▶︎";
  font-weight: normal;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80%;
}
.open #global-nav nav ul.nav_common_enter li + li {
  border-bottom: 2px solid #4d91ed;
}
.open #global-nav nav ul.nav_common_enter li:first-child {
  border-bottom: 2px solid #4d91ed;
}
@media screen and (max-width: 767px) {
  .open #global-nav nav ul.nav_common_enter li:last-child {
    border-bottom: none;
  }
}

.arrow_bg {
  position: relative;
  z-index: 0;
  background: url(../img/arrrow_bg.png) bottom center/auto 180% no-repeat;
}
@media screen and (max-width: 767px) {
  .arrow_bg {
    background: none;
  }
}

/*______________________________________
section common
______________________________________-*/
p {
  font-size: 0.15rem;
}
@media screen and (max-width: 380px) {
  p {
    font-size: 0.13rem;
  }
}

a:hover {
  opacity: 0.9;
}
a:hover img {
  opacity: 0.9;
}

p + p {
  margin-top: 20px;
}

span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .txt > p {
    font-size: 0.14rem !important;
  }
}
.txt_link {
  margin: 10px 0 10px 15px !important;
  line-height: 1.3;
}
.txt_link + .txt_link {
  margin-top: -5px !important;
}
.txt_link a {
  position: relative;
}
.txt_link a:before {
  font-family: "NataIcon" !important;
  color: #78d3f2 !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e002";
  position: absolute;
  top: -0.2em;
  left: -1.2em;
}
.txt_link a:before[target=_blank]:before {
  content: "\e001" !important;
}

.btn {
  position: relative;
  width: calc(100% - 20px);
  font-weight: 800;
  margin: auto;
  font-size: 0.2rem;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 0.13rem;
  }
}
.btn p {
  position: relative;
  display: block;
  margin: 0px auto;
  padding: 15px;
  text-align: center;
  line-height: 1.4;
  color: #000;
  background: #ffaa00;
  border-radius: 10px;
  border: 3px solid #000;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 2px 2px 0px #000;
}
.btn p span {
  display: inline-block;
}
.btn p:after {
  content: "▶︎";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  margin: auto;
}
.btn a {
  display: block;
  text-decoration: none;
}

/*______________________________________
#FOOTER
______________________________________-*/
#FOOTER {
  position: relative;
  width: 100%;
  line-height: 4;
  text-align: center;
  padding: 0px 0 30px;
  color: #fff;
  line-height: 1.8;
  font-size: 0.15rem;
}
#FOOTER .logo_area {
  max-width: 650px;
  margin: 0 auto 40px;
  padding: 20px 20px;
  border: 4px solid #4d91ed;
  background: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 767px) {
  #FOOTER .logo_area {
    margin: 0 20px 40px;
    padding: 20px 20px;
  }
}
#FOOTER .logo_area h4 {
  font-size: 0.13rem;
  margin: 0 auto 10px;
  font-weight: 500;
}
#FOOTER .logo_area .notes {
  color: #fff;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: left;
}
#FOOTER .logo_area .notes__txt {
  line-height: 1.6;
  font-size: 0.11rem;
  max-width: 300px;
}
#FOOTER .logo_area .notes__logo {
  width: 80px;
}
@media screen and (max-width: 767px) {
  #FOOTER .logo_area .notes {
    max-width: auto;
    padding: 0px;
  }
  #FOOTER .logo_area .notes__txt {
    line-height: 1.6;
    font-size: 0.1rem;
    text-align: left;
  }
}
#FOOTER .logo_area .notes p + p {
  margin-top: 0;
}
#FOOTER .logo_area .logo_btn {
  max-width: 380px !important;
}
#FOOTER .logo_area .logo_btn p:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../img/logo_btn_arrow.png) no-repeat;
  background-size: contain;
  margin-right: 3px;
  top: 50%;
  bottom: 0;
  transform: translate(0, -50%);
  margin-top: 3px;
}
#FOOTER .footer {
  margin: 0 auto;
}
#FOOTER .footer dt {
  font-size: 0.14rem;
  margin: 0 auto 10px;
  font-weight: 500;
}
#FOOTER .footer .pr {
  margin: 0 auto 30px;
  max-width: 800px;
}
#FOOTER .footer .pr dd {
  display: grid;
  grid-template-columns: repeat(auto-fit, 320px);
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
}
#FOOTER .footer .pr dd a {
  position: relative;
  border-bottom: none;
}
#FOOTER .footer .pr dd a + a {
  margin-top: 0;
}
#FOOTER .footer .sponsor {
  margin: 0 auto 30px;
  max-width: 800px;
  max-width: 700px;
}
#FOOTER .footer .sponsor dd {
  display: grid;
  grid-template-columns: repeat(auto-fit, 150px);
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  #FOOTER .footer .sponsor dd {
    grid-template-columns: repeat(auto-fit, 120px);
  }
}
#FOOTER .footer .sponsor dd a {
  position: relative;
  max-width: 150px;
  border-bottom: none;
  background: #fff;
  min-height: 65px;
}
#FOOTER .footer .sponsor dd a + a {
  margin-top: 0;
}
#FOOTER .footer .sponsor dd a img {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  top: 50%;
  left: 50%;
  height: 42px;
  transform: translate(-50%, -50%);
  max-width: 110px;
}
@media screen and (max-width: 767px) {
  #FOOTER .footer .sponsor dd a img {
    max-width: 90px;
  }
}
#FOOTER .footer .sponsor dd a:nth-child(1) img {
  height: 42px;
}
#FOOTER .footer .sponsor dd a:nth-child(2) img {
  height: 23px;
}
#FOOTER .footer .sponsor dd a:nth-child(3) img {
  height: 40px;
  margin-left: 3px;
}
#FOOTER .footer .sponsor dd a:nth-child(4) img {
  height: 35px;
}
@media screen and (max-width: 767px) {
  #FOOTER .footer .sponsor dd a:nth-child(4) img {
    height: 30px;
  }
}
#FOOTER .footer .sponsor dd a:nth-child(7) img {
  height: 38px;
}
@media screen and (max-width: 767px) {
  #FOOTER .footer .sponsor dd a:nth-child(7) img {
    height: 32px;
  }
}
#FOOTER .footer .sponsor dd a:nth-child(8) img {
  height: 40px;
  margin-left: -3px;
}
#FOOTER .footer .management {
  max-width: 300px;
  margin: 0 auto 10px;
}
#FOOTER .footer .management img {
  max-width: 220px;
  margin: 0 auto 20px;
  text-align: center;
}
#FOOTER .footer .management img:hover {
  opacity: 0.8;
}
#FOOTER .footer .management p {
  font-size: 90%;
}
#FOOTER .footer .policy {
  font-size: 90%;
  margin: 20px auto 0;
  color: #fff;
}
#FOOTER .footer .policy a {
  position: relative;
  color: #fff;
  margin: 0 10px;
}
#FOOTER .footer .policy a:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  bottom: 0;
  left: -12px;
  background: #fff;
}
#FOOTER .footer .copyright {
  font-size: 80%;
  margin: 30px auto 30px;
}
#FOOTER .footer a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#FOOTER .totop2 {
  width: 100%;
  height: 40px;
  background: #4d91ed;
  padding: 10px;
  border-radius: 0;
  margin: 0px auto 40px;
  font-size: 110%;
}
#FOOTER .totop2 a {
  text-decoration: none;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 90%;
}
#FOOTER .totop2 img {
  width: auto;
  height: 20px;
  margin-right: 5px;
}

/*______________________________________
フローティングボタン
______________________________________*/
.float {
  padding: 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 5;
}
.float .btn {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0;
  width: calc(100% - 76px);
  margin: 0 auto;
  border-radius: 0;
  max-width: 500px;
}
.float .btn p {
  position: relative;
  display: block;
  margin: 0px auto 20px;
  padding: 15px;
  text-align: center;
  color: #000;
  background: #ffaa00;
  font-weight: 600;
  font-size: 0.2rem;
  letter-spacing: 1px;
}
.float .btn a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.float .totop {
  position: absolute;
  bottom: 3px;
  right: 15px;
  width: 56px;
  height: 56px;
  background: #000;
  padding: 10px;
  border-radius: 0;
  margin: 0px auto 17px;
}
.float .totop a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .float .btn {
    left: 15px;
    right: 0;
    margin: 0;
    width: calc(100% - 100px);
  }
  .float .btn p {
    line-height: 1.4;
    width: calc(100% - 0px);
    max-width: 100%;
    font-size: 0.16rem;
    font-weight: 800;
    border: 3px solid #000;
  }
  .float .btn a {
    display: block;
    text-decoration: none;
    cursor: pointer;
  }
  .float .totop {
    right: 15px;
  }
}
/*______________________________________
装飾
______________________________________-*/
.fukidashi {
  position: relative;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
}

.fukidashi:before,
.fukidashi:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #017dea;
  width: 2px;
  height: 2em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}

.fukidashi:before {
  transform: rotate(-35deg);
}

.fukidashi:after {
  transform: rotate(35deg);
}

/*______________________________________
moving
______________________________________-*/
/*下からフェードイン*/
.bgin::before {
  transform: scale(1, 1);
  transition: all 0.8s;
}

.fadein {
  opacity: 0;
  transform: translate(0px, 100px);
}

.fadein2 {
  opacity: 0;
  transform: translate(0px, 0px);
}

.fadein.scrollin, .fadein2.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.3s 0s ease-out;
}/*# sourceMappingURL=common.css.map */