@charset "UTF-8";
/* box sizing
-------------------------------------*/
*, ::before, ::after {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

body {
  margin: 0;
}

/* general params
-------------------------------------*/
h1, h2, h3, h4, h5, h6,
div, p, pre, ul, ol, dl, dt, dd,
address, form, blockquote {
  margin: 0;
  padding: 0; /* margin&padding reset */
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

figure {
  margin: 0;
}

/* word break
-------------------------------------*/
i {
  font-style: normal;
}

/*  2: form setting
-------------------------------------*/
option {
  padding-right: 10px;
}

input, select {
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px solid #000;
  border-radius: 0px;
  outline: none;
}

button {
  border: 0;
  padding: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}

table {
  border-collapse: collapse;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}
table * {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}
table th, table td {
  font-weight: normal;
}

main,
article,
aside,
details,
figcaption,
figure,
picture,
footer,
header,
hgroup,
menu,
nav,
video,
iframe,
canvas,
section {
  display: block;
}

picture, figure {
  line-height: 0;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 1;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #000;
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

:root {
  --bg: #eee;
  --dyna: #292da6;
  --takasu: #fd0267;
}

/*
  realsize: 1600px 
  contents: 1280px = 1200px(contents width) + 40px(margin) * 2
*/
html {
  font-size: 62.5%;
}

body {
  font-feature-settings: "palt";
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", YuGothic, "Yu Gothic", メイリオ, Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  line-height: 1.75em;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  body {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 769px) {
  body {
    line-height: 1.75em;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  body {
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.none {
  display: none;
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes flash1 {
  0% {
    text-shadow: 4px 4px 0px var(--takasu);
  }
  50% {
    text-shadow: -4px -4px 0px var(--dyna);
  }
  100% {
    text-shadow: 4px 4px 0px var(--takasu);
  }
}
@keyframes flash2 {
  0% {
    text-shadow: 4px 4px 0px var(--dyna);
  }
  50% {
    text-shadow: -4px -4px 0px var(--takasu);
  }
  100% {
    text-shadow: 4px 4px 0px var(--dyna);
  }
}
@keyframes flash1_pc {
  0% {
    text-shadow: 13px 13px 0px var(--takasu);
  }
  50% {
    text-shadow: -13px -13px 0px var(--dyna);
  }
  100% {
    text-shadow: 13px 13px 0px var(--takasu);
  }
}
@keyframes flash2_pc {
  0% {
    text-shadow: 13px 13px 0px var(--dyna);
  }
  50% {
    text-shadow: -13px -13px 0px var(--takasu);
  }
  100% {
    text-shadow: 13px 13px 0px var(--dyna);
  }
}
.header {
  padding: 1.3333333333vw 0px;
  display: flex;
  justify-content: center;
  background: var(--bg);
}
@media screen and (min-width: 769px) {
  .header {
    padding: 10px 0px;
  }
}
.header a {
  width: 26.6666666667vw;
  display: block;
  line-height: 0;
}
@media screen and (min-width: 769px) {
  .header a {
    width: 170px;
    transition: opacity 0.4s ease;
  }
  .header a:hover {
    opacity: 0.6;
  }
}

.inner {
  width: 89.3333333333vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .inner {
    width: calc(100% - 80px);
    max-width: 1200px;
  }
}
@media screen and (min-width: 1600px) {
  .inner {
    width: 1200px;
  }
}

.hero {
  z-index: 1;
}

.main {
  position: relative;
  background: var(--bg);
  z-index: 2;
}

.section {
  padding: 13.3333333333vw 0px;
}
@media screen and (min-width: 769px) {
  .section {
    padding: 80px 0px;
  }
}
.section:last-child {
  padding-bottom: 0px;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6666666667vw 0px;
}
@media screen and (min-width: 769px) {
  .heading {
    gap: 10px 0px;
  }
}
.heading__en {
  padding-bottom: 2.6666666667vw;
  line-height: 1.1666666667em;
  letter-spacing: 0.05em;
  display: inline-block;
  font-weight: bold;
  background-image: linear-gradient(90deg, #333, #333);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 40% 0.8vw;
  -webkit-text-stroke: 2px #333;
}
@media screen and (max-width: 768px) {
  .heading__en {
    font-size: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .heading__en {
    font-size: 6rem;
  }
}
@media screen and (min-width: 769px) {
  .heading__en {
    padding-bottom: 10px;
    line-height: 1.3em;
    letter-spacing: 0.05em;
    background-size: 40% 3px;
    -webkit-text-stroke: 2px #333;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .heading__en {
    font-size: 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .heading__en {
    font-size: 5rem;
  }
}
.heading__ja {
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .heading__ja {
    font-size: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .heading__ja {
    font-size: 3rem;
  }
}
@media screen and (min-width: 769px) {
  .heading__ja {
    line-height: 1.4666666667em;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .heading__ja {
    font-size: 2vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .heading__ja {
    font-size: 1.5rem;
  }
}

.infoList {
  padding-top: 8vw;
}
@media screen and (min-width: 769px) {
  .infoList {
    width: 83.3333333333%;
    max-width: 900px;
    margin: 0px auto;
    padding-top: 30px;
  }
}
.infoList__lists {
  display: flex;
  flex-direction: column;
  gap: 4vw 0px;
}
@media screen and (min-width: 769px) {
  .infoList__lists {
    gap: 20px 0px;
  }
}
.infoList__header {
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .infoList__header:hover p {
    background-position: left bottom;
    background-size: 100% 1px;
  }
}
.infoList__header._open p {
  background-position: left bottom;
  background-size: 100% 1px;
}
.infoList__header._open::after {
  transform: rotate(45deg);
}
.infoList__header::after {
  content: "";
  width: 3.2vw;
  height: 3.2vw;
  margin-left: 1.3333333333vw;
  background: url(../img/icon_arrow.svg) center center/contain no-repeat;
  display: inline-block;
  transition: transform 0.4s ease;
}
@media screen and (min-width: 769px) {
  .infoList__header::after {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    vertical-align: sub;
    background-size: 6px auto;
  }
}
.infoList__header[href="javascript:void(0);"]::after {
  background: url(../img/icon_plus.svg) center center/contain no-repeat;
  transform-origin: center center;
}
@media screen and (min-width: 769px) {
  .infoList__header[href="javascript:void(0);"]::after {
    background-size: 10px auto;
  }
}
.infoList__header span {
  padding: 0px 1.3333333333vw;
  min-width: 25.3333333333vw;
  display: inline-block;
  background: #666;
  color: #fff;
  line-height: 1.4;
  line-height: 1.4166666667em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .infoList__header span {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  .infoList__header span {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 769px) {
  .infoList__header span {
    min-width: 110px;
    padding: 0px 10px;
    line-height: 1.7142857143em;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .infoList__header span {
    font-size: 1.8666666667vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .infoList__header span {
    font-size: 1.4rem;
  }
}
.infoList__header p {
  margin-left: 2.6666666667vw;
  display: inline;
  background-image: linear-gradient(90deg, #333, #333);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 0% 1px;
  transition: background-size 0.4s ease;
  line-height: 1.1333333333em;
}
@media screen and (max-width: 768px) {
  .infoList__header p {
    font-size: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .infoList__header p {
    font-size: 3rem;
  }
}
@media screen and (min-width: 769px) {
  .infoList__header p {
    margin-left: 20px;
    line-height: 1.3333333333em;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .infoList__header p {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .infoList__header p {
    font-size: 1.8rem;
  }
}
.infoList__body {
  padding: 1.3333333333vw 0px;
  display: none;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 769px) {
  .infoList__body {
    padding: 10px 0px;
  }
}

.product {
  position: relative;
  overflow-x: clip;
}
.product__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
.product__bg--inner {
  height: 100vh;
  position: sticky;
  top: 0px;
}
.product__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__inner {
  padding: 13.3333333333vw 2.6666666667vw;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 769px) {
  .product__inner {
    padding: 80px 10px;
  }
}
.product__list {
  padding-top: 16vw;
  display: flex;
  flex-direction: column;
  gap: 16vw 0px;
}
@media screen and (min-width: 769px) {
  .product__list {
    padding-top: 60px;
    gap: 120px 0px;
  }
}
.product__list--block {
  position: relative;
}
.product__heading {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.product__heading p {
  width: 100%;
  padding: 2.6666666667vw 4vw;
  text-align: center;
  background: linear-gradient(-45deg, var(--takasu) 0%, var(--takasu) 50%, var(--dyna) 50%, var(--dyna) 100%);
  color: #fff;
  line-height: 1em;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .product__heading p {
    font-size: 8vw;
  }
}
@media screen and (min-width: 769px) {
  .product__heading p {
    font-size: 6rem;
  }
}
@media screen and (min-width: 769px) {
  .product__heading p {
    width: 400px;
    padding: 14px 15px;
    line-height: 1em;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .product__heading p {
    font-size: 4.6666666667vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .product__heading p {
    font-size: 3.5rem;
  }
}
.product__heading._takasu p {
  background: var(--takasu);
}
.product__heading._dyna p {
  background: var(--dyna);
}
.product__tickets {
  padding-top: 5.3333333333vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5.3333333333vw 1.3333333333vw;
  position: relative;
  text-align: center;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .product__tickets {
    padding-top: 40px;
    gap: 40px 40px;
    justify-content: center;
  }
}
.product__tickets li {
  width: calc(50% - 0.6666666667vw);
  width: 90%;
}
@media screen and (min-width: 769px) {
  .product__tickets li {
    width: calc(40% - 5px);
  }
}
.product__tickets--fo {
  margin-top: 1.3333333333vw;
  padding: 1.3333333333vw 1.3333333333vw;
  line-height: 1em;
  background: #d68c10;
  color: #fff;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .product__tickets--fo {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .product__tickets--fo {
    font-size: 2rem;
  }
}
@media screen and (min-width: 769px) {
  .product__tickets--fo {
    margin-top: 10px;
    padding: 5px 5px;
    line-height: 1em;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .product__tickets--fo {
    font-size: 1.8666666667vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .product__tickets--fo {
    font-size: 1.4rem;
  }
}
.product__tickets--image {
  display: block;
  line-height: 0;
}
@media screen and (min-width: 769px) {
  .product__tickets--image {
    overflow: hidden;
  }
  .product__tickets--image:hover img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 769px) {
  .product__tickets--image img {
    transition: transform 0.4s ease;
  }
}

.names {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  mix-blend-mode: difference;
  z-index: 1;
  pointer-events: none;
}
.names._takasu .names__name {
  margin-left: -0.8em;
}
@media screen and (min-width: 769px) {
  .names._takasu .names__name {
    margin-left: -0.5em;
  }
}
.names._dynaland {
  text-align: right;
}
.names._dynaland .names__name {
  margin-right: -0.8em;
}
@media screen and (min-width: 769px) {
  .names._dynaland .names__name {
    margin-right: -0.5em;
  }
}
.names__name {
  position: sticky;
  top: 5.3333333333vw;
  writing-mode: vertical-rl;
  line-height: 1em;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #fff;
  -webkit-text-stroke: 5px #fff;
}
@media screen and (max-width: 768px) {
  .names__name {
    font-size: 16vw;
  }
}
@media screen and (min-width: 769px) {
  .names__name {
    font-size: 12rem;
  }
}
@media screen and (min-width: 769px) {
  .names__name {
    top: 40px;
    line-height: 1em;
    letter-spacing: 0.13em;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .names__name {
    font-size: 16vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .names__name {
    font-size: 12rem;
  }
}

.step__list {
  padding-top: 16vw;
  display: flex;
  flex-direction: column;
  gap: 8vw 0px;
}
@media screen and (min-width: 769px) {
  .step__list {
    padding-top: 60px;
    gap: 40px 40px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.step__list li {
  padding: 4vw 2.6666666667vw;
  border: 0.2666666667vw dashed #000;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .step__list li {
    width: calc(50% - 20px);
    padding: 20px 10px;
    border-width: 1px;
  }
}
.step__heading {
  padding-bottom: 2.6666666667vw;
  line-height: 0;
}
@media screen and (min-width: 769px) {
  .step__heading {
    padding-bottom: 30px;
  }
}
.step__heading img {
  max-width: 26.6666666667vw;
}
@media screen and (min-width: 769px) {
  .step__heading img {
    max-width: 130px;
  }
}

.step__01--img {
  width: 72vw;
  margin: 8vw auto 0px;
}
@media screen and (min-width: 769px) {
  .step__01--img {
    width: 100%;
    margin-top: 20px;
    max-width: 400px;
  }
}

.step__02 {
  position: relative;
}
.step__02--read {
  max-width: 53.3333333333vw;
  position: absolute;
  top: 0px;
  left: 0px;
}
@media screen and (min-width: 769px) {
  .step__02--read {
    max-width: 66.6666666667%;
  }
}
.step__02--img {
  width: 72vw;
  margin: 0px auto;
}
@media screen and (min-width: 769px) {
  .step__02--img {
    width: 100%;
    max-width: 424px;
  }
}

.step__03 {
  display: flex;
  justify-content: space-between;
}
.step__03--read {
  flex: 1;
}
.step__03--img {
  width: 40vw;
  margin-left: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .step__03--img {
    width: 100%;
    max-width: 260px;
    margin-left: 20px;
  }
}

.step__04 {
  display: flex;
  justify-content: space-between;
  gap: 0px 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .step__04 {
    gap: 0px 20px;
  }
}
@media screen and (min-width: 769px) {
  .step__04--block {
    width: calc(50% - 10px);
  }
}
.step__04--title {
  padding: 1.3333333333vw;
  background: #333;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 769px) {
  .step__04--title {
    padding: 10px;
  }
}
.step__04--read {
  margin-top: 1.3333333333vw;
}
@media screen and (min-width: 769px) {
  .step__04--read {
    margin-top: 10px;
  }
}
.step__04--img {
  max-width: 33.3333333333vw;
  margin: 1.3333333333vw auto 0px;
}
@media screen and (min-width: 769px) {
  .step__04--img {
    max-width: 200px;
    margin-top: 10px;
  }
}

.step__links {
  margin-top: 8vw;
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw 0px;
}
@media screen and (min-width: 769px) {
  .step__links {
    margin-top: 30px;
    gap: 0px 20px;
    flex-direction: row;
  }
}
.step__links a {
  padding: 2.6666666667vw 1.3333333333vw;
  display: block;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .step__links a {
    width: calc(50% - 10px);
    padding: 10px;
    transition: color 0.4s ease, background-color 0.4s ease;
  }
}
.step__links a._takasu {
  background: var(--takasu);
}
@media screen and (min-width: 769px) {
  .step__links a._takasu {
    border: 1px solid var(--takasu);
  }
  .step__links a._takasu:hover {
    background: #fff;
    color: var(--takasu);
  }
}
.step__links a._dyna {
  background: var(--dyna);
}
@media screen and (min-width: 769px) {
  .step__links a._dyna {
    border: 1px solid var(--dyna);
  }
  .step__links a._dyna:hover {
    background: #fff;
    color: var(--dyna);
  }
}

.gosnow {
  padding: 18.6666666667vw 0px;
  text-align: center;
  position: relative;
  background: var(--bg);
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .gosnow {
    padding: 140px 0px;
  }
}
@media screen and (min-width: 769px) {
  .gosnow .inner {
    width: 100%;
    max-width: 100%;
  }
}
.gosnow p {
  display: flex;
  justify-content: center;
  gap: 0px 2.1333333333vw;
  line-height: 1em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .gosnow p {
    font-size: 20vw;
  }
}
@media screen and (min-width: 769px) {
  .gosnow p {
    font-size: 15rem;
  }
}
@media screen and (min-width: 769px) {
  .gosnow p {
    font-size: 18.6666666667vw;
    line-height: 1em;
    gap: 0px 30px;
  }
}
@media screen and (min-width: 1600px) {
  .gosnow p {
    line-height: 1em;
  }
}
@media screen and (min-width: 1600px) and (max-width: 768px) {
  .gosnow p {
    font-size: 42.6666666667vw;
  }
}
@media screen and (min-width: 1600px) and (min-width: 769px) {
  .gosnow p {
    font-size: 32rem;
  }
}
.gosnow p span:first-child {
  background: linear-gradient(141deg, var(--takasu) 0%, var(--dyna) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-backface-visibility: hidden;
  animation: bggradient 3s ease infinite;
}
.gosnow p span:last-child {
  background: linear-gradient(141deg, var(--dyna) 0%, var(--takasu) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-backface-visibility: hidden;
  animation: bggradient 2.5s ease infinite;
}

.footer {
  padding-top: 10.6666666667vw;
  position: relative;
  background: #fff;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .footer {
    padding-top: 80px;
  }
}
.footer::before {
  content: "";
  width: 100%;
  height: 1.3333333333vw;
  position: absolute;
  top: -1.3333333333vw;
  left: 0px;
  background: url(../img/snow.png) left top/80vw auto repeat-x;
}
@media screen and (min-width: 769px) {
  .footer::before {
    height: 10px;
    top: -10px;
    background-size: 900px auto;
  }
}
.footer__menus {
  display: flex;
  flex-direction: column;
  gap: 16vw 0px;
}
@media screen and (min-width: 769px) {
  .footer__menus {
    flex-direction: row;
    justify-content: center;
    gap: 0px 60px;
  }
}
.footer__menus a {
  display: block;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw 0px;
}
@media screen and (min-width: 769px) {
  .footer__links {
    width: calc(50% - 30px);
    justify-content: space-between;
    gap: 0px 0px;
  }
}
.footer__links a {
  padding-right: 2vw;
  background-image: linear-gradient(90deg, #333, #333);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .footer__links a {
    padding: 0px 15px 5px 0px;
    transition: background-size 0.4s ease;
  }
  .footer__links a:hover {
    background-position: right bottom;
    background-size: 0% 1px;
  }
}
.footer__links a::after {
  content: "";
  width: 1.3333333333vw;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background: url(../img/icon_arrow.svg) center center/contain no-repeat;
}
@media screen and (min-width: 769px) {
  .footer__links a::after {
    width: 6px;
  }
}
.footer__bnrs {
  display: flex;
  flex-direction: column;
  gap: 6.6666666667vw 0px;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .footer__bnrs {
    width: calc(40% - 30px);
    gap: 20px 0px;
  }
}
.footer__bnrs a {
  max-width: 53.3333333333vw;
  line-height: 1em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer__bnrs a {
    font-size: 4vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__bnrs a {
    font-size: 3rem;
  }
}
@media screen and (min-width: 769px) {
  .footer__bnrs a {
    max-width: 300px;
    transition: opacity 0.4s ease;
    line-height: 1em;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .footer__bnrs a {
    font-size: 2.9333333333vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .footer__bnrs a {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 769px) {
  .footer__bnrs a:hover {
    opacity: 0.3;
  }
}
.footer__bnrs a:nth-child(1) {
  max-width: 80vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) {
  .footer__bnrs a:nth-child(1) {
    max-width: 400px;
    margin-bottom: 10px;
  }
}
.footer__bnrs a:nth-child(3), .footer__bnrs a:nth-child(4) {
  max-width: 40vw;
}
@media screen and (min-width: 769px) {
  .footer__bnrs a:nth-child(3), .footer__bnrs a:nth-child(4) {
    max-width: 240px;
  }
}
.footer__bnrs a[href="javascript:void(0);"] {
  cursor: normal;
}
@media screen and (min-width: 769px) {
  .footer__bnrs a[href="javascript:void(0);"]:hover {
    opacity: 1;
  }
}
.footer__copy {
  padding: 8vw 0px 1.3333333333vw 0px;
  line-height: 1.4166666667em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__copy {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 769px) {
  .footer__copy {
    padding: 60px 0px 10px 0px;
    line-height: 2em;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .footer__copy {
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .footer__copy {
    font-size: 1.2rem;
  }
}

#snow {
  width: 150vw;
  height: 150vh;
  position: fixed;
  top: 0px;
  left: 0px;
  pointer-events: none;
  z-index: 10;
}

.boughtTicket {
  width: 24vw;
  height: 24vw;
  border-radius: 50%;
  background: linear-gradient(141deg, var(--dyna) 0%, var(--takasu) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3571428571em;
  font-weight: bold;
  text-align: center;
  color: #fff;
  position: fixed;
  bottom: 1.3333333333vw;
  right: 1.3333333333vw;
  z-index: 10;
  background-size: 200% 200%; /*サイズを大きくひきのばす*/
  animation: bggradient 2s ease infinite;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .boughtTicket {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .boughtTicket {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 769px) {
  .boughtTicket {
    width: 120px;
    height: 120px;
    bottom: 10px;
    right: 10px;
    line-height: 1.4444444444em;
    transition: outline-offset 0.4s linear;
    outline: 2px solid #fff;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .boughtTicket {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .boughtTicket {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 769px) {
  .boughtTicket:hover {
    outline: 2px solid #fff;
    outline-offset: -8px;
  }
}/*# sourceMappingURL=style.css.map */