@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: top;
  border: 0;
}

a img {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
}

html {
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

button {
  border: none;
  background: none;
}

* {
  font-family: "M PLUS Rounded 1c", sans-serif;
  box-sizing: border-box;
}

body {
  width: 100%;
  overflow-x: hidden;
}

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

a:hover img {
  animation: hoverAnime 0.5s cubic-bezier(0.5, 3, 0.5, 1);
}

button {
  cursor: pointer;
}

@keyframes scroll-to-top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100vh);
  }
}
@keyframes scroll-to-bottom {
  0% {
    transform: translateY(-100vh);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes hoverAnime {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes hoverImg {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes chase_01 {
  0% {
    left: 110vw;
  }
  100% {
    left: -110vw;
  }
}
@keyframes chase_02 {
  0% {
    left: 110vw;
  }
  100% {
    left: -50vw;
  }
}
@keyframes rotate_a_lot {
  0% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-26deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-12deg);
  }
}
@keyframes fade_in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fade_out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
.l-background {
  position: fixed;
  background: url("../images/bg/bg_01.png") repeat #f6f3f0;
  background-position: center;
  background-size: 150%;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
@media (min-width: 550px) {
  .l-background {
    background-size: inherit;
  }
  .l-background__inner {
    max-width: 550px;
    margin: auto;
    position: relative;
    height: 100%;
  }
  .l-background__inner::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 300%;
    max-width: 300px;
    right: calc(100% + 150px);
    background: url("../images/bg/bg_film_right.png") repeat-y;
    animation: scroll-to-top 30s infinite linear;
  }
  .l-background__inner::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 300%;
    max-width: 300px;
    left: calc(100% + 150px);
    background: url("../images/bg/bg_film_left.png") repeat-y;
    animation: scroll-to-bottom 30s infinite linear;
  }
}

.l-header__nav {
  overflow-x: hidden;
}
.l-header__inner {
  position: sticky;
  z-index: -1;
}
@media (min-width: 550px) {
  .l-header__inner {
    max-width: 550px;
    margin: auto;
  }
}

.l-main__inner {
  padding: 12.7272727273vw 0 0;
}
@media (min-width: 550px) {
  .l-main__inner {
    max-width: 550px;
    margin: auto;
    padding: 70px 0 0;
  }
}

.l-section {
  margin: 23.6363636364vw auto 0;
}
.l-section:first-child {
  margin: auto;
}
.l-section:last-child {
  margin: 0 auto;
  padding: 0 0 23.6363636364vw;
}
.l-section--full {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}
.l-section__inner {
  max-width: 1700px;
  margin: auto;
}
@media (min-width: 550px) {
  .l-section {
    margin: 130px auto 0;
  }
  .l-section:last-child {
    margin: 0 auto;
    padding: 0 0 130px;
  }
}

.l-footer {
  background-color: #c7c8c2;
}
.l-footer__inner {
  padding: 0 4.3636363636vw;
}
.l-footer__col {
  border-bottom: dotted 2px #415a69;
  padding: 5.0909090909vw 0 3.6363636364vw;
}
.l-footer__col:last-child {
  border: none;
}
.l-footer__col--narrow {
  padding: 1.4545454545vw 3.6363636364vw;
}
@media (min-width: 550px) {
  .l-footer__inner {
    max-width: 550px;
    margin: auto;
    padding: 0 24px;
  }
  .l-footer__col {
    padding: 28px 0 20px;
  }
  .l-footer__col--narrow {
    padding: 8px 20px;
  }
}

.c-header {
  background: url("../images/bg/bg_mv.png") 50% 20px/contain no-repeat #f6f3f0;
}
.c-header__inner {
  padding: 5.4545454545vw 3.6363636364vw 3.6363636364vw;
}
.c-header__logoArea {
  display: flex;
  justify-content: flex-start;
}
.c-header__logo--01 {
  max-width: 12.7272727273vw;
}
.c-header__logo--02 {
  max-width: 13.8181818182vw;
  margin-left: 1.8181818182vw;
}
.c-header__titleLogo, .c-header__title, .c-header__character {
  text-align: center;
}
.c-header__titleLogo {
  max-width: 83.6363636364vw;
  margin: 3.2727272727vw auto 0;
}
.c-header__title {
  max-width: 85.4545454545vw;
  margin: 2.1818181818vw auto 0;
}
.c-header__character {
  position: relative;
  max-width: 72.7272727273vw;
  margin: auto;
  z-index: 10;
}
.c-header__character img {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.c-header__read {
  position: relative;
  background: #e51937;
  padding: 8.7272727273vw 3.6363636364vw;
  margin: 36.3636363636vw 0 0;
}
.c-header__popupImg {
  position: absolute;
  top: calc(100% - 7.274vw);
  right: 0;
  max-width: 12.7272727273vw;
}
@media (min-width: 550px) {
  .c-header__inner {
    padding: 30px 20px 20px;
  }
  .c-header__logoArea {
    justify-content: space-between;
  }
  .c-header__logo--01 {
    max-width: 70px;
  }
  .c-header__logo--02 {
    max-width: 76px;
    margin: 0;
  }
  .c-header__titleLogo {
    max-width: 460px;
    margin: 18px auto 0;
  }
  .c-header__title {
    max-width: 470px;
    margin: 12px auto 0;
  }
  .c-header__character {
    max-width: 400px;
  }
  .c-header__read {
    padding: 48px 20px;
    margin: 200px 0 0;
  }
  .c-header__popupImg {
    top: calc(100% - 40px);
    max-width: 70px;
  }
}

.c-nav {
  position: relative;
  width: 100%;
}
.c-nav__hamburger {
  position: fixed;
  top: 2.1818181818vw;
  left: 83.6363636364vw;
  z-index: 1000;
}
.c-nav__hamburger.is-toggle .c-nav__button--open {
  display: none;
}
.c-nav__hamburger.is-toggle .c-nav__button--close {
  display: block;
}
.c-nav__button {
  display: block;
  max-width: 12.7272727273vw;
}
.c-nav__button--close {
  display: none;
}
.c-nav__contents {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(241, 237, 234, 0.8);
  z-index: 900;
  animation: fade_out 0.2s linear;
}
.c-nav__contents.is-open {
  display: block;
  animation: fade_in 0.2s linear;
}
.c-nav__inner {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.c-nav__list {
  max-width: 49.0909090909vw;
  margin: 8vw auto 0;
}
.c-nav__list:first-child {
  margin: 0 auto;
}
.c-nav__link {
  display: block;
}
@media (min-width: 550px) {
  .c-nav__hamburger {
    top: 40px;
    right: 40px;
    left: auto;
  }
  .c-nav__button {
    max-width: 70px;
  }
  .c-nav__button img:hover {
    animation: hoverAnime 0.5s cubic-bezier(0.5, 3, 0.5, 1);
  }
  .c-nav__list {
    max-width: 410px;
    margin: 70px auto 0;
  }
}

.c-contents {
  background: url("../images/bg/bg_02.png") center/cover no-repeat;
  padding: 4.3636363636vw 5.0909090909vw;
}
.c-contents--bgBlue, .c-contents--bgOrange, .c-contents--bgGreen {
  padding: 9.0909090909vw 5.0909090909vw;
}
.c-contents--bgBlue {
  background: url("../images/bg/bg_vote.png") center/cover no-repeat;
}
.c-contents--bgOrange {
  background: url("../images/bg/bg_present.png") center/cover no-repeat;
}
.c-contents--bgGreen {
  background: #2cc497;
}
.c-contents--bgLightBlue {
  background: url("../images/bg/bg_now_on_sale.png") center/cover no-repeat;
}
.c-contents__title {
  margin: auto;
}
.c-contents__title--small {
  max-width: 69.0909090909vw;
}
.c-contents__read {
  margin: 5.4545454545vw auto 0;
}
.c-contents__button {
  margin: 7.2727272727vw auto 0;
}
.c-contents__button a {
  display: block;
}
.c-contents__banner {
  margin: 4.3636363636vw auto 0;
}
.c-contents__col {
  position: relative;
  background-color: #fff;
  border: solid 2px #0b0304;
  border-radius: 20px;
  margin: 9.0909090909vw auto 0;
}
.c-contents__col::after {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-contents__col:nth-child(1)::after {
  background-color: #ff7966;
}
.c-contents__col:nth-child(2)::after {
  background-color: #f29c35;
}
.c-contents__col:nth-child(3)::after {
  background-color: #14b787;
}
.c-contents__titleSub {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.c-contents__text {
  position: sticky;
  padding: 9.0909090909vw 5.4545454545vw 5.4545454545vw;
  z-index: 10;
}
.c-contents__notes {
  margin: 6.9090909091vw auto 0;
}
.c-contents__notes * {
  transform: rotateZ(0.03deg);
  font-size: 2.9090909091vw;
  color: #fff;
}
.c-contents__scrollBox {
  position: relative;
  border: solid 2px #0b0304;
  border-radius: 20px;
  background-color: #fff;
  height: 69.0909090909vw;
  padding: 5.4545454545vw 3.6363636364vw 5.4545454545vw 5.4545454545vw;
  margin: 5.4545454545vw auto 0;
}
.c-contents__scrollBox * {
  transform: rotateZ(0.03deg);
  color: #415a69;
}
.c-contents__scrollBox li {
  text-indent: -1rem;
  padding-left: 1rem;
}
.c-contents__scrollBox a {
  transition: 0.2s;
}
.c-contents__scrollBox dl {
  overflow-x: hidden;
  overflow-y: scroll;
  height: -webkit-fill-available;
  padding: 0 1.8181818182vw 0 0;
}
.c-contents__scrollBox dl::-webkit-scrollbar {
  width: 10px;
}
.c-contents__scrollBox dl::-webkit-scrollbar-track {
  margin: 10px;
}
.c-contents__scrollBox dl::-webkit-scrollbar-thumb {
  background-color: #90989e;
  border-radius: 10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.c-contents__scrollBox dt {
  font-weight: 700;
  margin-top: 5.4545454545vw;
}
.c-contents__scrollBox dt:first-child {
  margin-top: 0;
}
.c-contents__closeText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  z-index: 100;
}
.c-contents__step1-a {
  position: relative;
}
.c-contents__step1-b, .c-contents__step1-c {
  position: absolute;
  left: 0;
}
.c-contents__step1-b {
  background: url("../images/text/text_step_01_b@2x.png") center/contain no-repeat;
  top: 14.5454545455vw;
  width: 53.4545454545vw;
  height: 10.9090909091vw;
}
.c-contents__step1-c {
  background: url("../images/text/text_step_01_c@2x.png") center/contain no-repeat;
  top: 29.0909090909vw;
  width: 78.1818181818vw;
  height: 4.3636363636vw;
}
@media (min-width: 550px) {
  .c-contents {
    padding: 24px 28px;
  }
  .c-contents--bgBlue, .c-contents--bgOrange, .c-contents--bgGreen {
    padding: 50px 28px;
  }
  .c-contents__title--small {
    max-width: 380px;
  }
  .c-contents__read {
    margin: 30px auto 0;
  }
  .c-contents__button {
    margin: 40px auto 0;
  }
  .c-contents__banner {
    margin: 24px auto 0;
  }
  .c-contents__banner a:hover img {
    animation: hoverImg 0.5s cubic-bezier(0.5, 3, 0.5, 1);
  }
  .c-contents__col {
    margin: 50px auto 0;
  }
  .c-contents__text {
    padding: 50px 30px 30px;
  }
  .c-contents__notes {
    margin: 38px auto 0;
  }
  .c-contents__notes * {
    transform: rotateZ(0.03deg);
    font-size: 16px;
  }
  .c-contents__scrollBox {
    height: 380px;
    padding: 30px 20px 30px 30px;
    margin: 30px auto 0;
  }
  .c-contents__scrollBox a:hover {
    color: #e51937;
  }
  .c-contents__scrollBox dl {
    padding: 0 10px 0 0;
  }
  .c-contents__scrollBox dt {
    margin-top: 30px;
  }
  .c-contents__step1-b, .c-contents__step1-c {
    transition: 0.3s;
  }
  .c-contents__step1-b {
    top: 80px;
    width: 294px;
    height: 60px;
  }
  .c-contents__step1-b:hover {
    background: url("../images/text/text_step_01_b_hover@2x.png") center/contain no-repeat;
  }
  .c-contents__step1-c {
    top: 160px;
    width: 430px;
    height: 24px;
  }
  .c-contents__step1-c:hover {
    background: url("../images/text/text_step_01_c_hover@2x.png") center/contain no-repeat;
  }
}

.c-vote {
  background: url("../images/bg/bg_cheese.png") repeat #ffe45f;
  padding: 9.0909090909vw 4.7272727273vw;
}
.c-vote__title {
  position: relative;
  max-width: 69.0909090909vw;
  margin: auto;
}
.c-vote__popUp {
  position: absolute;
  z-index: 0;
}
.c-vote__popUp--left {
  bottom: 0;
  right: calc(100% - 17vw);
  width: 30.3636363636vw;
}
.c-vote__popUp--right {
  bottom: 5.2727272727vw;
  left: calc(100% - 10vw);
  width: 17.4545454545vw;
}
.c-vote__popUp--left-02 {
  bottom: -3.2727272727vw;
  right: calc(100% - 4vw);
  width: 5.8181818182vw;
}
.c-vote__popUp--right-02 {
  bottom: -4.3636363636vw;
  left: calc(100% - 10vw);
  width: 13.0909090909vw;
}
.c-vote__inner {
  position: sticky;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  max-width: 1460px;
  margin: 5.4545454545vw -2.1818181818vw 0;
  z-index: 100;
}
.c-vote__col {
  width: 100%;
  max-width: 50%;
  padding: 2.1818181818vw;
  margin-top: 6vw;
}
.c-vote__col--1st {
  max-width: 100%;
  margin: 18.1818181818vw auto;
}
.c-vote__card {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  background: #f1edea;
  height: 100%;
}
.c-vote__card--1st {
  position: relative;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  background: url(../images/bg/bg_03.png) repeat #f96651;
  height: 100%;
}
.c-vote__number {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  background: #f1edea;
  padding: 0.7272727273vw 2.9090909091vw;
  text-align: center;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 3.0909090909vw;
  color: #415a69;
}
.c-vote__number--1st {
  top: -14.5454545455vw;
  left: 50%;
  transform: translateX(-50%);
  background: #f1674d;
  padding: 0 8.1818181818vw;
  font-size: 5.4545454545vw;
  color: #fff;
  border-radius: 50px;
  line-height: 1.2;
}
.c-vote__number--rank {
  position: absolute;
  top: -6.1818181818vw;
  left: 50%;
  transform: translateX(-50%);
  background: #f1674d;
  width: 29.0909090909vw;
  height: 7.6363636364vw;
  padding: 0 3.6363636364vw;
  text-align: center;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 4.1818181818vw;
  color: #fff;
  border-radius: 50px;
  line-height: 7.6363636364vw;
}
.c-vote .textlarge {
  font-size: 8.1818181818vw;
  padding: 0 3px 0 3px;
}
.c-vote .textlarge2 {
  font-size: 5.4545454545vw;
  padding: 0 3px 0 3px;
}
.c-vote__cardInner {
  width: 100%;
}
.c-vote__image {
  margin: 0 auto;
  z-index: 1;
}
.c-vote__text {
  padding: 0 2.9090909091vw;
}
.c-vote__text * {
  transform: rotateZ(0.03deg);
  font-family: sans-serif;
  font-size: 3.0909090909vw;
  font-weight: 900;
  line-height: 1.8;
  color: #415a69;
}
.c-vote__text--1st {
  padding: 0 5.4545454545vw 5.4545454545vw;
}
.c-vote__text--1st * {
  color: #fff;
}
.c-vote__button {
  margin: 2.5454545455vw auto 0;
  padding: 0 2.9090909091vw 2.9090909091vw;
}
.c-vote__button a {
  display: block;
  width: 100%;
  max-width: 36.3636363636vw;
}
.c-vote__reed, .c-vote__endMessage {
  margin: 5.4545454545vw auto 5.4545454545vw;
}
.c-vote__info {
  margin: 5.4545454545vw auto 10.9090909091vw;
}
@media (min-width: 550px) {
  .c-vote {
    padding: 50px 20px;
  }
  .c-vote__title {
    max-width: 380px;
  }
  .c-vote__popUp--left {
    bottom: -66px;
    right: calc(100% - 32px);
    max-width: 237px;
  }
  .c-vote__popUp--right {
    bottom: -34px;
    left: calc(100% + 22px);
    max-width: 134px;
  }
  .c-vote__popUp--left-02 {
    bottom: -1.5vw;
    right: calc(100% - 3.3333333333vw);
    width: 4.5vw;
  }
  .c-vote__popUp--right-02 {
    bottom: -2.5vw;
    left: calc(100% - 7.5vw);
    width: 10.75vw;
  }
  .c-vote__inner {
    margin: 15px auto 0;
  }
  .c-vote__col {
    padding: 15px;
    margin-top: 33px;
  }
  .c-vote__col--1st {
    width: 100%;
    max-width: 700px;
    margin: 100px auto;
  }
  .c-vote__number {
    padding: 4px 16px;
    font-size: 17px;
  }
  .c-vote__number--1st {
    top: -80px;
    padding: 0px 66px;
    font-size: 30px;
  }
  .c-vote__number--rank {
    top: -34px;
    width: 160px;
    height: 42px;
    padding: 0px 20px;
    font-size: 25px;
    line-height: 42px;
  }
  .c-vote .textlarge {
    font-size: 45px;
  }
  .c-vote .textlarge2 {
    font-size: 35px;
  }
  .c-vote__text {
    padding: 0 2.5vw 2.5vw;
  }
  .c-vote__text * {
    font-size: 17px;
  }
  .c-vote__text--1st {
    padding: 0 2.5vw 2.5vw;
  }
  .c-vote__button {
    margin: 14px auto 0;
    padding: 0 2.5vw 2.5vw;
  }
  .c-vote__button a {
    max-width: 240px;
  }
  .c-vote__reed, .c-vote__endMessage {
    margin: 30px auto 30px;
    max-width: 700px;
  }
  .c-vote__info {
    margin: 30px auto 60px;
    max-width: 700px;
  }
}
@media (min-width: 1200px) {
  .c-vote__popUp--left-02 {
    bottom: -18px;
    right: calc(100% - 40px);
    width: 54px;
  }
  .c-vote__popUp--right-02 {
    bottom: -30px;
    left: calc(100% - 90px);
    width: 129px;
  }
  .c-vote__col {
    max-width: 25%;
  }
  .c-vote__col--1st {
    width: 100%;
    max-width: 700px;
    margin: 100px auto;
  }
  .c-vote__text {
    padding: 0 30px 30px;
  }
  .c-vote__text--1st {
    padding: 0 30px 30px;
  }
  .c-vote__button {
    padding: 0 30px 30px;
  }
}

.c-character {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 52.7272727273vw;
  left: 50%;
  transform: translateX(-50%);
}
.c-character__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: chase_01 5s linear infinite;
}
.c-character__img {
  position: absolute;
  bottom: 9.0909090909vw;
  width: 100%;
}
.c-character__img--01 {
  left: 1.8181818182vw;
  max-width: 15.6363636364vw;
}
.c-character__img--01 img {
  animation: rotate_a_lot 0.2s cubic-bezier(1, 0, 1, 1) infinite alternate;
}
.c-character__img--02 {
  left: 16.3636363636vw;
  max-width: 14.9090909091vw;
}
.c-character__img--02 img {
  animation: rotate_a_lot 0.22s cubic-bezier(1, 0, 1, 1) infinite alternate;
  animation-delay: 0.3s;
}
.c-character__img--03 {
  left: 34.5454545455vw;
  max-width: 29.4545454545vw;
}
.c-character__img--03 img {
  animation: rotate 0.35s cubic-bezier(1, 0, 1, 1) infinite alternate;
}
.c-character__img--04 {
  left: 65.4545454545vw;
  max-width: 35.6363636364vw;
}
.c-character__img--04 img {
  animation: rotate 0.35s cubic-bezier(1, 0, 1, 1) infinite alternate;
  animation-delay: 0.2s;
}
@media (min-width: 550px) {
  .c-character {
    height: 290px;
  }
  .c-character__inner {
    animation: chase_02 7s linear infinite;
  }
  .c-character__img {
    bottom: 50px;
  }
  .c-character__img--01 {
    left: 10px;
    max-width: 86px;
  }
  .c-character__img--02 {
    left: 90px;
    max-width: 82px;
  }
  .c-character__img--03 {
    left: 190px;
    max-width: 162px;
  }
  .c-character__img--04 {
    left: 360px;
    max-width: 196px;
  }
}

.c-logo {
  display: block;
  max-width: 29.0909090909vw;
  margin: auto;
}
@media (min-width: 550px) {
  .c-logo {
    max-width: 160px;
  }
}

.c-link__inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 5.4545454545vw auto 0;
}
.c-link__inner:first-child {
  margin: auto;
}
.c-link__icon {
  display: block;
  margin: auto 0 auto 5.0909090909vw;
}
.c-link__icon:first-child {
  margin: auto 0;
}
.c-link__icon--sns {
  max-width: 10.9090909091vw;
  margin: auto 0 auto 8.7272727273vw;
}
.c-link__icon--sns:first-child {
  margin: auto 0;
}
.c-link__icon--kuji {
  max-width: 30.3636363636vw;
}
.c-link__icon--bandai {
  max-width: 13.0909090909vw;
}
.c-link__icon--bandaiN {
  max-width: 33.8181818182vw;
}
.c-link__caution {
  margin: 6.1818181818vw auto 0;
}
.c-link__caution p {
  transform: rotateZ(0.03deg);
  font-size: 2.5454545455vw;
  font-weight: 700;
  text-align: center;
  color: #415a69;
}
@media (min-width: 550px) {
  .c-link__inner {
    margin: 30px auto 0;
  }
  .c-link__inner:first-child {
    margin: auto;
  }
  .c-link__icon {
    transition: 0.3s;
    margin: auto 0 auto 28px;
  }
  .c-link__icon:first-child {
    margin: auto 0;
  }
  .c-link__icon--sns {
    max-width: 60px;
    margin: auto 0 auto 48px;
  }
  .c-link__icon--sns:first-child {
    margin: auto 0;
  }
  .c-link__icon--kuji {
    max-width: 167px;
  }
  .c-link__icon--bandai {
    max-width: 72px;
  }
  .c-link__icon--bandaiN {
    max-width: 186px;
  }
  .c-link__caution {
    margin: 34px auto 0;
  }
  .c-link__caution p {
    font-size: 14px;
  }
}

.c-copy__img {
  display: block;
  max-width: 117.4545454545vw;
  margin: auto;
}
.c-copy__text {
  transform: rotateZ(0.03deg);
  font-size: 2.5454545455vw;
  font-weight: 700;
  text-align: center;
  color: #415a69;
}
@media (min-width: 550px) {
  .c-copy__img {
    max-width: 646px;
  }
  .c-copy__text {
    font-size: 14px;
  }
}

.u-text-M {
  font-size: 5.8181818182vw;
}
@media (min-width: 550px) {
  .u-text-M {
    font-size: 32px;
  }
}

.u-text-L {
  font-size: 6.9090909091vw;
}
@media (min-width: 550px) {
  .u-text-L {
    font-size: 38px;
  }
}

.u-text-center {
  text-align: center;
}

.u-popUp {
  opacity: 0;
  transform: translateZ(1px) scale(0);
  transition: opacity 0.25s, transform 0.5s cubic-bezier(0.5, 2, 0.5, 1);
}
.u-popUp.is-show {
  opacity: 1;
  transform: translateZ(1px) scale(1);
}

.u-endBtn {
  pointer-events: none;
}
.u-endBtn:hover img {
  animation: none;
}