/*-- header --*/
:root {
  --color-black: #000000;
  --color-black-rgb: 0, 0, 0;
  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;
  --color-FNM-black: #0C0C0C;
  --color-FNM-black-rgb: 12, 12, 12;
  --color-FNM-gray-dark: #1E1E1E;
  --color-FNM-gray-dark-rgb: 30, 30, 30;
  --color-FNM-red: #F00606;
  --color-FNM-red-rgb: 240, 6, 6;
  --color-FNM-purple: #C802DE;
  --color-FNM-purple-rgb: 200, 2, 222;
  --color-FNM-blue: #4A5ADC;
  --color-FNM-blue-rgb: 74, 90, 220;
  --color-FNM-blue-light: #00B5DE;
  --color-FNM-blue-light-rgb: 0, 181, 222;
  --color-FNM-green: #32C600;
  --color-FNM-green-rgb: 50, 198, 0;
  --color-FNM-lime: #ABDD00;
  --color-FNM-lime-rgb: 171, 221, 0;
  --color-FNM-yellow: #FFEE00;
  --color-FNM-yellow-rgb: 255, 238, 0;
  --color-FNM-orange: #FF9C00;
  --color-FNM-orange-rgb: 255, 156, 0;
  --color-LYnavy100: #000048;
  --color-LYnavy100-rgb: 0, 0, 72;
  --color-LYnavy90: #1A1A51;
  --color-LYnavy80: #333365;
  --color-LYnavy70: #4D4D78;
  --color-LYnavy60: #66668B;
  --color-LYnavy50: #80809E;
  --color-yahoo: #ff0033;
  --color-line: #06c755;
  --color-search-blue: #1877F2;
  --color-text-black: #333333;
  --color-bg: #FBFBFB;
  --ease-bounce: linear(
    0.9,
    0.9 2.1%,
    1.1144 8.49%,
    1.2 10.7%,
    1.2 11.81%,
    1.2 12.94%,
    1.2,
    1.2 14.48%,
    1.2 16.2%,
    1.0317 21.81%,
    0.941 24.01%,
    0.9 25.91%,
    0.9 27.84%,
    0.9 29.21%,
    0.9 30.71%,
    1.0122 38.33%,
    1.0357,
    1.046 42.71%,
    1.0416 45.7%,
    0.9961 53.26%,
    0.9839 57.54%,
    0.9853 60.71%,
    1.0012 68.14%,
    1.0056 72.24%,
    0.9981 86.66%,
    1
  );
}

html {
  position: relative;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  font-size: 10px;
  scroll-behavior: smooth;
  background: var(--color-FNM-black);
}
html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-white-rgb), 0.07);
  z-index: 1;
}
html::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/bg_blur_light_large.png);
  background-repeat: repeat;
  background-size: 1228px 915px;
  background-position: center -70px;
  z-index: 0;
}

body {
  position: relative;
  z-index: 2;
}
body.no-scroll {
  overflow: hidden;
  height: 100dvh;
}
body > .wrapper {
  position: relative;
  color: var(--color-black);
  max-width: 133.3333333333vw;
  min-height: 100vh;
  margin: 0 auto;
  background-color: var(--color-FNM-black);
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/bg_texture.png);
  background-repeat: repeat-y;
  background-size: 100% 100vw;
  background-position: center;
  overflow-x: hidden;
}
@media screen and (min-width: 375px) {
  body > .wrapper {
    max-width: 500px;
    background-size: 100% 375px;
  }
}
@media screen and (min-width: 768px) {
  body > .wrapper {
    padding-right: 268px;
    box-sizing: content-box;
  }
}
@media screen and (min-width: 768px) {
  body > .wrapper.before-event {
    padding-right: 0;
  }
}
body > .wrapper > * {
  position: inherit;
  z-index: 0;
}
body > .wrapper > header {
  position: inherit;
  z-index: 2;
}
body > .wrapper > main {
  z-index: 1;
}
@media screen and (min-width: 768px) {
  body > .wrapper > main {
    box-sizing: border-box;
  }
}
body > .wrapper > .hamburger {
  position: fixed;
  z-index: 2;
}

header,
main {
  width: 100%;
  margin: 0 auto;
}

a {
  color: var(--color-black);
  text-decoration: none;
}

a,
button {
  opacity: 1;
  transition: opacity 0.4s ease;
}
@media screen and (hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.7;
  }
}

button:focus-visible {
  outline: auto #005fcc;
}

.kerning {
  letter-spacing: -0.5em;
}

.show__on-pc-layout {
  display: block;
}
@media screen and (max-width: 767px) {
  .show__on-pc-layout {
    display: none !important;
  }
}
.show__on-sp-layout {
  display: block;
}
@media screen and (min-width: 768px) {
  .show__on-sp-layout {
    display: none !important;
  }
}
.show__on-mouse-device {
  display: block;
}
@media screen and (hover: none) and (pointer: coarse) {
  .show__on-mouse-device {
    display: none !important;
  }
}
.show__on-touch-device {
  display: block;
}
@media screen and (hover: hover) and (pointer: fine) {
  .show__on-touch-device {
    display: none !important;
  }
}

.emg {
  text-align: center;
}
.emg .is-showEmg {
  margin-top: 20px;
}
@media screen and (max-width: 989px) {
  .emg.is-emg {
    display: none;
  }
}
@media screen and (min-width: 990px) {
  .emg.is-mem {
    display: none;
  }
}

noscript {
  z-index: 2 !important;
}

.jsOff {
  margin: 4.2666666667vw auto 12.8vw;
  padding: 8px;
  width: 96%;
  max-width: 375px;
  text-align: center;
  background-color: #fff;
  border: 0.2666666667vw solid #e60013;
  font-size: 3.2vw;
}
@media screen and (min-width: 375px) {
  .jsOff {
    margin: 16px auto 48px;
    border-width: 1px;
    font-size: 12px;
  }
}
.jsOff .pt1 {
  padding-bottom: 4px;
}
.jsOff .pt2 {
  padding-bottom: 8px;
}
.jsOff .pt3 a {
  color: #1a75ff;
  text-decoration: underline;
}

header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 560px;
}
header .corporate-logo {
  display: flex;
  align-items: start;
  gap: 5.3333333333vw;
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  padding: 4.8vw 5.3333333333vw;
}
@media screen and (min-width: 375px) {
  header .corporate-logo {
    gap: 20px;
    padding: 18px 20px;
  }
}
@media screen and (min-width: 500px) {
  header .corporate-logo {
    padding: 20px 26px;
  }
}
header .corporate-logo picture {
  display: block;
  position: relative;
}
header .corporate-logo picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
header .corporate-logo .ylogo picture {
  width: 8.8vw;
  padding-top: 54.5454545455%;
}
@media screen and (min-width: 375px) {
  header .corporate-logo .ylogo picture {
    width: 33px;
  }
}
@media screen and (min-width: 500px) {
  header .corporate-logo .ylogo picture {
    width: 96px;
    padding-top: 25%;
  }
}

.key-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4.2666666667vw 6.6666666667vw;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0) 66.64%, rgba(0, 0, 0, 0.25) 92.95%);
}
@media screen and (min-width: 375px) {
  .key-visual {
    padding: 0 16px 25px;
  }
}
.key-visual::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/bg_blur_light_small.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  z-index: -1;
}
.key-visual.before-event {
  padding-bottom: 0;
}
.key-visual.before-event .key-visual__statement {
  padding-bottom: 0;
}
.key-visual h1 {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: calc(100% + 8.5333333333vw);
  margin-bottom: -5.3333333333vw;
}
@media screen and (min-width: 375px) {
  .key-visual h1 {
    width: calc(100% + 32px);
    margin-bottom: -20px;
  }
}
.key-visual h1 img {
  width: 100%;
  height: 29.8666666667vw;
  margin: 0 4.2666666667vw 2.6666666667vw;
}
@media screen and (min-width: 500px) {
  .key-visual h1 img {
    height: 149px;
    margin: 0 auto 13px;
  }
}
.key-visual h1 img:nth-of-type(2) {
  width: 100%;
  height: 4.8vw;
  margin-bottom: -13.3333333333vw;
}
@media screen and (min-width: 500px) {
  .key-visual h1 img:nth-of-type(2) {
    height: 24px;
    margin-bottom: -66px;
  }
}
.key-visual h1::after {
  content: "";
  display: block;
  width: 110%;
  margin-right: 10.6666666667vw;
  padding-top: 113.2530120482%;
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/keyVisual.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  animation: bounce 2s var(--ease-bounce);
}
@media screen and (min-width: 500px) {
  .key-visual h1::after {
    margin-right: 53px;
  }
}
@supports (background-image: url("image.webp")) {
  .key-visual h1::after {
    background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/keyVisual.webp");
  }
}
@keyframes bounce {
  0% {
    width: 60%;
  }
  100% {
    width: 110%;
  }
}
.key-visual .event-announce {
  position: absolute;
  top: 36vw;
  right: 3.7333333333vw;
  display: block;
  width: 24vw;
  height: 23.4666666667vw;
  animation: floating 1.5s ease-in-out 2 forwards;
}
@media screen and (min-width: 500px) {
  .key-visual .event-announce {
    top: 180px;
    right: 19px;
    width: 120px;
    height: 117px;
  }
}
.key-visual .event-announce img {
  width: 100%;
  height: 100%;
}
@keyframes floating {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 2%;
  }
  100% {
    margin-top: 0;
  }
}
.key-visual__statement {
  width: 100%;
  margin: 0 auto;
  padding: 8vw 0 0;
  color: var(--color-white);
  text-align: center;
  font-size: 3.7333333333vw;
  line-height: 2em;
}
@media screen and (min-width: 375px) {
  .key-visual__statement {
    padding: 30px 0 0;
    font-size: 1.4rem;
  }
}
.key-visual__statement p {
  margin-bottom: 1em;
}
.key-visual__statement p:last-of-type {
  margin-bottom: 0;
}
.key-visual__statement small {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8.8vw auto 2.6666666667vw;
  padding: 0 0.8vw 0 2.6666666667vw;
  border-radius: 0.5333333333vw;
  background: rgba(var(--color-white-rgb), 0.6);
  color: var(--color-FNM-black);
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 375px) {
  .key-visual__statement small {
    margin: 33px auto 10px;
    padding: 0 3px 0 10px;
    border-radius: 2px;
    font-size: 1.1rem;
  }
}
.key-visual .button {
  width: 100%;
  max-width: 60vw;
  padding: 4.2666666667vw 8.5333333333vw;
  margin: 9.3333333333vw auto 0;
  border: 0.5333333333vw solid var(--color-white);
  background: var(--color-FNM-purple);
  font-size: 4vw;
}
@media screen and (min-width: 375px) {
  .key-visual .button {
    padding: 16px 32px;
    margin: 35px auto 0;
    max-width: 225px;
    border-width: 2px;
    font-size: 15px;
  }
}
.key-visual .button::after {
  width: 3.2vw;
  height: 3.2vw;
  transform: translate(0, -30%) rotate(-135deg);
}
@media screen and (min-width: 375px) {
  .key-visual .button::after {
    width: 12px;
    height: 12px;
  }
}

.contents-block {
  position: relative;
  padding: 10.6666666667vw 4.2666666667vw;
  margin: 26.6666666667vw 0;
  color: var(--color-white);
}
@media screen and (min-width: 375px) {
  .contents-block {
    padding: 40px 16px;
    margin: 100px 0;
  }
}
.contents-block h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2vw;
  margin-bottom: 3.2vw;
  font-size: 4.5333333333vw;
  font-weight: 600;
}
@media screen and (min-width: 375px) {
  .contents-block h2 {
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.7rem;
  }
}
.contents-block h2 img {
  display: block;
  width: auto;
}
.contents-block__lead {
  text-align: center;
  font-size: 3.4666666667vw;
  margin-bottom: 8.5333333333vw;
}
@media screen and (min-width: 375px) {
  .contents-block__lead {
    font-size: 1.3rem;
    margin-bottom: 32px;
  }
}

#whatIsFNM {
  background: rgba(var(--color-FNM-purple-rgb), 0.15);
}
#whatIsFNM h2 img {
  height: 13.8666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM h2 img {
    height: 52px;
  }
}

#fakeNewsTest {
  background: rgba(var(--color-FNM-blue-light-rgb), 0.2);
}
#fakeNewsTest h2 img {
  height: 6.6666666667vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest h2 img {
    height: 25px;
  }
}
#fakeNewsTest .contents-block__lead br.show__on-sp-layout {
  display: block;
}
@media screen and (min-width: 410px) {
  #fakeNewsTest .contents-block__lead br.show__on-sp-layout {
    display: none;
  }
}

#aboutYJNews {
  background: rgba(var(--color-white-rgb), 1);
  color: var(--color-FNM-black);
}
#aboutYJNews h2 img {
  height: 14.9333333333vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews h2 img {
    height: 56px;
  }
}

#exhibitionInformation {
  background: none;
  padding-top: 24vw;
  padding-bottom: 5.3333333333vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation {
    padding-top: 90px;
    padding-bottom: 20px;
  }
}
#exhibitionInformation.before-event {
  padding-top: 0;
}
#exhibitionInformation.before-event h2 {
  display: none;
}
#exhibitionInformation h2 {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation h2 {
    margin-bottom: 40px;
  }
}
#exhibitionInformation h2::before {
  content: "";
  position: absolute;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_bat_img.png");
  width: 40vw;
  height: 40vw;
  top: -55.4666666667vw;
  left: -2vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation h2::before {
    width: 150px;
    height: 150px;
    top: -208px;
  }
}
@media screen and (min-width: 500px) {
  #exhibitionInformation h2::before {
    left: -10px;
  }
}
#exhibitionInformation h2 img {
  height: 29.8666666667vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation h2 img {
    height: 112px;
  }
}
#exhibitionInformation h2 img.exhibition-period {
  width: 19.2vw;
  height: 19.2vw;
  margin-bottom: -14.6666666667vw;
  transform: translate(29.3333333333vw, 1.3333333333vw);
}
@media screen and (min-width: 375px) {
  #exhibitionInformation h2 img.exhibition-period {
    width: 72px;
    height: 72px;
    margin-bottom: -55px;
    transform: translate(110px, 5px);
  }
}

.contents-block > *,
#footer > * {
  position: inherit;
  z-index: 1;
}
.contents-block::before, .contents-block::after,
#footer::before,
#footer::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 26.6666666667vw;
  background-size: 149.3333333333vw 26.6666666667vw;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (min-width: 375px) {
  .contents-block::before, .contents-block::after,
  #footer::before,
  #footer::after {
    height: 100px;
    background-size: 560px 100px;
  }
}
.contents-block::before,
#footer::before {
  top: -26.6666666667vw;
}
@media screen and (min-width: 375px) {
  .contents-block::before,
  #footer::before {
    top: -100px;
  }
}
.contents-block::after,
#footer::after {
  bottom: -26.6666666667vw;
}
@media screen and (min-width: 375px) {
  .contents-block::after,
  #footer::after {
    bottom: -100px;
  }
}

#whatIsFNM::before {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/separate_purple_top.svg");
}
#whatIsFNM::after {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/separate_purple_bottom.svg");
}

#fakeNewsTest::before {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/separate_blue_top.svg");
}
#fakeNewsTest::after {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/separate_blue_bottom.svg");
  transform: scale(-1, 1);
}

#aboutYJNews::before {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/separate_white_top.svg");
  transform: scale(-1, 1);
}
#aboutYJNews::after {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/separate_white_bottom.svg");
  transform: scale(-1, 1);
}

#exhibitionInformation::before {
  content: none;
}
#exhibitionInformation::after {
  content: none;
}

#footer::before {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/separate_black_top.svg");
}
#footer::after {
  content: none;
}

.key-visual::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 26.6666666667vw;
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/separate_black_transparent_bottom.svg");
  background-size: 149.3333333333vw 26.6666666667vw;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 375px) {
  .key-visual::after {
    height: 100px;
    background-size: 560px 100px;
  }
}
.key-visual::after {
  bottom: -26.6666666667vw;
}
@media screen and (min-width: 375px) {
  .key-visual::after {
    bottom: -100px;
  }
}
.key-visual.before-event::after {
  transform: scale(-1, 1);
}

#whatIsFNM .swiper {
  display: flex;
  width: calc(100% + 8.5333333333vw);
  margin: 0 -4.2666666667vw;
  padding: 6.4vw 0 2.6666666667vw;
  position: relative;
  overflow: hidden;
  transition: margin-bottom 0.4s ease;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .swiper {
    width: calc(100% + 32px);
    padding: 24px 0 10px;
    margin: 0 -16px;
  }
}
#whatIsFNM .swiper-wrapper {
  display: flex;
}
#whatIsFNM .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%;
}
#whatIsFNM .swiper-button-wrapper {
  position: absolute;
  top: 50.6666666667vw;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .swiper-button-wrapper {
    top: 190px;
  }
}
#whatIsFNM .swiper-button-prev, #whatIsFNM .swiper-button-next {
  position: relative;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  border-radius: 26.6666666667vw;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .swiper-button-prev, #whatIsFNM .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 100px;
  }
}
#whatIsFNM .swiper-button-prev:focus-visible, #whatIsFNM .swiper-button-next:focus-visible {
  outline: auto;
}
#whatIsFNM .swiper-button-prev::after, #whatIsFNM .swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 3.7333333333vw;
  height: 3.7333333333vw;
  border: 1.0666666667vw solid var(--color-FNM-lime);
  border-left: none;
  border-bottom: none;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .swiper-button-prev::after, #whatIsFNM .swiper-button-next::after {
    width: 14px;
    height: 14px;
    border-width: 4px;
  }
}
#whatIsFNM .swiper-button-prev::after {
  transform: translate(-30%, -50%) rotate(225deg);
}
#whatIsFNM .swiper-button-next::after {
  transform: translate(-70%, -50%) rotate(45deg);
}
#whatIsFNM .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.1333333333vw;
  max-width: 120vw;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .swiper-pagination {
    gap: 8px;
    max-width: 450px;
    margin: 0 auto;
  }
}
#whatIsFNM .swiper-pagination-bullet {
  width: 19.2vw;
  height: 19.2vw;
  margin: 0 !important;
  border-radius: 5.3333333333vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--color-FNM-black);
  opacity: 0.5;
  transition: opacity 0.4s ease, border 0.4s ease;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .swiper-pagination-bullet {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }
}
#whatIsFNM .swiper-pagination-bullet-active {
  opacity: 1;
  border: 0.8vw solid var(--color-white);
}
@media screen and (min-width: 375px) {
  #whatIsFNM .swiper-pagination-bullet-active {
    border-width: 3px;
  }
}
#whatIsFNM .swiper-pagination-bullet:nth-of-type(1) {
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_illusionist_icon.png);
  border-color: var(--color-FNM-purple);
}
#whatIsFNM .swiper-pagination-bullet:nth-of-type(2) {
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_mouse_icon.png);
  border-color: #05B066;
}
#whatIsFNM .swiper-pagination-bullet:nth-of-type(3) {
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_dinosaur_icon.png);
  border-color: #08B6EB;
}
#whatIsFNM .swiper-pagination-bullet:nth-of-type(4) {
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_crayfish_icon.png);
  border-color: #DA1717;
}
#whatIsFNM .swiper-pagination-bullet:nth-of-type(5) {
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_mask_icon.png);
  border-color: var(--color-FNM-yellow);
}
#whatIsFNM .swiper-pagination-bullet:nth-of-type(6) {
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_golem_icon.png);
  border-color: #397FEF;
}
#whatIsFNM .swiper-pagination-bullet:nth-of-type(7) {
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_diggingmole_icon.png);
  border-color: var(--color-FNM-orange);
}
#whatIsFNM .swiper-pagination-bullet:nth-of-type(8) {
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_goya_icon.png);
  border-color: #36CD02;
}
#whatIsFNM .swiper-pagination-bullet:nth-of-type(9) {
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_frog_icon.png);
  border-color: #ED02BE;
}
#whatIsFNM .swiper-pagination-bullet:nth-of-type(10) {
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_bat_icon.png);
  border-color: #5B27C4;
}
#whatIsFNM .other-monsters {
  margin-bottom: 6.4vw;
  font-size: 4.5333333333vw;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .other-monsters {
    margin-bottom: 24px;
    font-size: 1.7rem;
  }
}
#whatIsFNM .banner {
  display: block;
  width: 87.4666666667vw;
  height: 26.6666666667vw;
  margin: 8.5333333333vw auto 0;
  border-radius: 2.1333333333vw;
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .banner {
    width: 328px;
    height: 100px;
    margin: 32px auto 0;
    border-radius: 8px;
  }
}
#whatIsFNM .banner img {
  width: 100%;
  height: 100%;
}
#whatIsFNM .character {
  z-index: 0;
}
#whatIsFNM .character__image {
  display: flex;
  z-index: 1;
}
#whatIsFNM .character__image > img {
  width: 66.6666666667vw;
  height: 66.6666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__image > img {
    width: 250px;
    height: 250px;
  }
}
#whatIsFNM .character__image h3 {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 80.8vw;
  gap: 0.8vw;
  font-size: 4.8vw;
  font-weight: 600;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__image h3 {
    width: 303px;
    gap: 3px;
    font-size: 1.8rem;
  }
}
#whatIsFNM .character__image h3 .jp {
  width: auto;
  height: 5.0666666667vw;
  box-sizing: content-box;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__image h3 .jp {
    height: 19px;
  }
}
#whatIsFNM .character__image h3 .en {
  width: auto;
  height: 3.2vw;
  padding: 1.3333333333vw 0;
  box-sizing: content-box;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__image h3 .en {
    height: 12px;
    padding: 5px 0;
  }
}
#whatIsFNM .character__description {
  width: 100%;
  margin-top: -12vw;
  z-index: 0;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description {
    margin-top: -45px;
  }
}
#whatIsFNM .character__description > * {
  position: relative;
  z-index: 1;
}
#whatIsFNM .character__description svg {
  display: block;
  width: 100%;
  height: auto;
  z-index: 0;
}
#whatIsFNM .character__description svg:first-of-type {
  margin-bottom: -0.2666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description svg:first-of-type {
    margin-bottom: -1px;
  }
}
#whatIsFNM .character__description svg:last-of-type {
  margin-top: -0.2666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description svg:last-of-type {
    margin-top: -1px;
  }
}
#whatIsFNM .character__description > .inner {
  width: 100%;
  padding: 0 4.2666666667vw;
  box-sizing: border-box;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description > .inner {
    padding: 0 16px;
  }
}
#whatIsFNM .character__description > .inner > * {
  max-width: 80.8vw;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description > .inner > * {
    max-width: 303px;
  }
}
#whatIsFNM .character__description .summary {
  padding-bottom: 4vw;
  font-size: 3.7333333333vw;
  height: 22.6666666667vw;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .summary {
    padding-bottom: 15px;
    font-size: 1.4rem;
    height: 85px;
  }
}
#whatIsFNM .character__description .accordion {
  border: 0.5333333333vw solid var(--color-white);
  border-radius: 4.2666666667vw;
  overflow: hidden;
  background: var(--color-white);
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .accordion {
    border-radius: 16px;
    border-width: 2px;
  }
}
#whatIsFNM .character__description .accordion__btn {
  justify-content: center;
  gap: 2.6666666667vw;
  padding: 4.2666666667vw;
  background: var(--color-white);
  border-radius: 3.7333333333vw;
  color: var(--color-FNM-black);
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .accordion__btn {
    gap: 10px;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.4rem;
  }
}
#whatIsFNM .character__description .accordion__btn::after {
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  border-color: var(--color-FNM-black);
  border-width: 0.5333333333vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .accordion__btn::after {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
}
#whatIsFNM .character__description .accordion__btn.open {
  border-radius: 3.7333333333vw 3.7333333333vw 0 0;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .accordion__btn.open {
    border-radius: 14px 14px 0 0;
  }
}
#whatIsFNM .character__description .accordion__content {
  background: var(--color-FNM-gray-dark);
  border-radius: 0 0 3.7333333333vw 3.7333333333vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .accordion__content {
    border-radius: 0 0 14px 14px;
  }
}
#whatIsFNM .character__description .accordion__content[aria-hidden=true] {
  pointer-events: none;
}
#whatIsFNM .character__description .accordion__content img {
  width: 100%;
  height: auto;
  padding: 5.3333333333vw 7.4666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .accordion__content img {
    padding: 20px 28px;
  }
}
#whatIsFNM .character__description .accordion__content p {
  position: relative;
  padding: 0 7.4666666667vw 3.7333333333vw;
  font-size: 3.4666666667vw;
  line-height: 1.7em;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .accordion__content p {
    padding: 0 28px 14px;
    font-size: 1.3rem;
  }
}
#whatIsFNM .character__description .accordion__content p::after {
  content: "";
  position: absolute;
  top: -24.8vw;
  right: 1.3333333333vw;
  display: block;
  width: 24vw;
  height: 24vw;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/badge_fake.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .accordion__content p::after {
    top: -93px;
    right: 5px;
    width: 90px;
    height: 90px;
  }
}
#whatIsFNM .character__description .accordion__content a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0.8vw;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.3333333333vw 6.1333333333vw 1.3333333333vw 1.3333333333vw;
  margin: 0 auto 5.3333333333vw;
  color: var(--color-white);
  font-size: 3.2vw;
  line-height: 1em;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .accordion__content a {
    gap: 3px;
    padding: 5px 23px 5px 5px;
    margin: 0 auto 20px;
    font-size: 1.2rem;
  }
}
#whatIsFNM .character__description .accordion__content a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3333333333vw;
  transform: translate(0, -50%);
  display: block;
  width: 3.4666666667vw;
  height: 3.4666666667vw;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/arrow_white.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .accordion__content a::after {
    right: 5px;
    width: 13px;
    height: 13px;
  }
}
#whatIsFNM .character__description .accordion__content a span {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .accordion__content a span {
    font-size: 1rem;
  }
}
#whatIsFNM #illusionist .character__image > img {
  margin-left: -8vw;
  margin-right: -58.6666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #illusionist .character__image > img {
    margin-left: -30px;
    margin-right: -220px;
  }
}
#whatIsFNM #illusionist .character__description > *:not(svg) {
  background: var(--color-FNM-purple);
}
#whatIsFNM #illusionist .character__description svg path {
  fill: var(--color-FNM-purple);
}
#whatIsFNM #illusionist .character__description .accordion__content > img {
  height: 64vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #illusionist .character__description .accordion__content > img {
    height: 240px;
  }
}
#whatIsFNM #mouse .character__image > img {
  margin-left: -5.3333333333vw;
  margin-right: -61.3333333333vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #mouse .character__image > img {
    margin-left: -20px;
    margin-right: -230px;
  }
}
#whatIsFNM #mouse .character__description > *:not(svg) {
  background: #05B066;
}
#whatIsFNM #mouse .character__description svg path {
  fill: #05B066;
}
#whatIsFNM #mouse .character__description .accordion__content > img {
  height: 64vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #mouse .character__description .accordion__content > img {
    height: 240px;
  }
}
#whatIsFNM #dinosaur .character__image > img {
  margin-left: -10.6666666667vw;
  margin-right: -56vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #dinosaur .character__image > img {
    margin-left: -40px;
    margin-right: -210px;
  }
}
#whatIsFNM #dinosaur .character__description > *:not(svg) {
  background: #08B6EB;
}
#whatIsFNM #dinosaur .character__description svg path {
  fill: #08B6EB;
}
#whatIsFNM #dinosaur .character__description .accordion__content > img {
  height: 68.2666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #dinosaur .character__description .accordion__content > img {
    height: 256px;
  }
}
#whatIsFNM #crayfish .character__image > img {
  margin-left: -2.6666666667vw;
  margin-right: -64vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #crayfish .character__image > img {
    margin-left: -10px;
    margin-right: -240px;
  }
}
#whatIsFNM #crayfish .character__description > *:not(svg) {
  background: #DA1717;
}
#whatIsFNM #crayfish .character__description svg path {
  fill: #DA1717;
}
#whatIsFNM #crayfish .character__description .accordion__content > img {
  height: 71.2vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #crayfish .character__description .accordion__content > img {
    height: 267px;
  }
}
#whatIsFNM #mask .character__image > img {
  margin-left: -2.6666666667vw;
  margin-right: -64vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #mask .character__image > img {
    margin-left: -10px;
    margin-right: -240px;
  }
}
#whatIsFNM #mask .character__description > *:not(svg) {
  background: var(--color-FNM-yellow);
}
#whatIsFNM #mask .character__description svg path {
  fill: var(--color-FNM-yellow);
}
#whatIsFNM #mask .character__description .accordion__content > img {
  height: 60vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #mask .character__description .accordion__content > img {
    height: 225px;
  }
}
#whatIsFNM #golem .character__image > img {
  margin-left: -6.6666666667vw;
  margin-right: -60vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #golem .character__image > img {
    margin-left: -25px;
    margin-right: -225px;
  }
}
#whatIsFNM #golem .character__description > *:not(svg) {
  background: #397FEF;
}
#whatIsFNM #golem .character__description svg path {
  fill: #397FEF;
}
#whatIsFNM #golem .character__description .accordion__content > img {
  height: 66.9333333333vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #golem .character__description .accordion__content > img {
    height: 251px;
  }
}
#whatIsFNM #diggingmole .character__image > img {
  margin-left: 0vw;
  margin-right: -66.6666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #diggingmole .character__image > img {
    margin-left: 0px;
    margin-right: -250px;
  }
}
#whatIsFNM #diggingmole .character__description > *:not(svg) {
  background: var(--color-FNM-orange);
}
#whatIsFNM #diggingmole .character__description svg path {
  fill: var(--color-FNM-orange);
}
#whatIsFNM #diggingmole .character__description .accordion__content > img {
  height: 66.6666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #diggingmole .character__description .accordion__content > img {
    height: 250px;
  }
}
#whatIsFNM #goya .character__image > img {
  margin-left: -8vw;
  margin-right: -58.6666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #goya .character__image > img {
    margin-left: -30px;
    margin-right: -220px;
  }
}
#whatIsFNM #goya .character__description > *:not(svg) {
  background: #36CD02;
}
#whatIsFNM #goya .character__description svg path {
  fill: #36CD02;
}
#whatIsFNM #goya .character__description .accordion__content > img {
  height: 56vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #goya .character__description .accordion__content > img {
    height: 210px;
  }
}
#whatIsFNM #frog .character__image > img {
  margin-left: -2.6666666667vw;
  margin-right: -64vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #frog .character__image > img {
    margin-left: -10px;
    margin-right: -240px;
  }
}
#whatIsFNM #frog .character__description > *:not(svg) {
  background: #ED02BE;
}
#whatIsFNM #frog .character__description svg path {
  fill: #ED02BE;
}
#whatIsFNM #frog .character__description .accordion__content > img {
  height: 66.6666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #frog .character__description .accordion__content > img {
    height: 250px;
  }
}
#whatIsFNM #bat .character__image > img {
  margin-left: -4vw;
  margin-right: -62.6666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #bat .character__image > img {
    margin-left: -15px;
    margin-right: -235px;
  }
}
#whatIsFNM #bat .character__description > *:not(svg) {
  background: #5B27C4;
}
#whatIsFNM #bat .character__description svg path {
  fill: #5B27C4;
}
#whatIsFNM #bat .character__description .accordion__content > img {
  height: 82.6666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #bat .character__description .accordion__content > img {
    height: 310px;
  }
}
#whatIsFNM #crayfish .character__image h3 .en,
#whatIsFNM #mask .character__image h3 .en,
#whatIsFNM #diggingmole .character__image h3 .en,
#whatIsFNM #goya .character__image h3 .en,
#whatIsFNM #frog .character__image h3 .en {
  height: 4.5333333333vw;
  padding-bottom: 0;
}
@media screen and (min-width: 375px) {
  #whatIsFNM #crayfish .character__image h3 .en,
  #whatIsFNM #mask .character__image h3 .en,
  #whatIsFNM #diggingmole .character__image h3 .en,
  #whatIsFNM #goya .character__image h3 .en,
  #whatIsFNM #frog .character__image h3 .en {
    height: 17px;
  }
}
#whatIsFNM #dinosaur .summary,
#whatIsFNM #mask .summary,
#whatIsFNM #diggingmole .summary,
#whatIsFNM #goya .summary {
  color: var(--color-FNM-black);
}

#fakeNewsTest .quiz {
  width: 100%;
  max-width: 91.7333333333vw;
  margin: 0 auto 8vw;
  border-radius: 6.4vw;
  border: 0.5333333333vw solid var(--color-FNM-blue);
  background: var(--color-FNM-gray-dark);
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz {
    max-width: 344px;
    margin: 0 auto 30px;
    border-radius: 24px;
    border-width: 2px;
  }
}
#fakeNewsTest .quiz__card {
  width: 100%;
  border-bottom: 0.5333333333vw solid var(--color-FNM-blue);
  padding: 6.4vw 4.2666666667vw 0;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__card {
    border-width: 2px;
    padding: 24px 16px 0;
  }
}
#fakeNewsTest .quiz__card:last-of-type {
  border: none;
}
#fakeNewsTest .quiz__card:nth-of-type(1) .quiz__question img {
  width: 8.5333333333vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__card:nth-of-type(1) .quiz__question img {
    width: 32px;
  }
}
#fakeNewsTest .quiz__card:nth-of-type(2) .quiz__question img {
  width: 9.8666666667vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__card:nth-of-type(2) .quiz__question img {
    width: 37px;
  }
}
#fakeNewsTest .quiz__card:nth-of-type(3) .quiz__question img {
  width: 9.6vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__card:nth-of-type(3) .quiz__question img {
    width: 36px;
  }
}
#fakeNewsTest .quiz__question {
  display: flex;
  align-items: start;
  gap: 2.1333333333vw;
  padding: 0 0 3.4666666667vw;
  font-size: 4.8vw;
  font-weight: 600;
  line-height: 1.2em;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__question {
    gap: 8px;
    padding: 0 0 13px;
    font-size: 1.8rem;
  }
}
#fakeNewsTest .quiz__question img {
  height: 6.6666666667vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__question img {
    height: 25px;
  }
}
#fakeNewsTest .quiz__image {
  display: block;
  width: 100%;
  height: 54.9333333333vw;
  border: 0.2666666667vw solid #6E6C6C;
  border-radius: 3.2vw;
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__image {
    height: 206px;
    border-width: 1px;
    border-radius: 12px;
  }
}
#fakeNewsTest .quiz__lead {
  display: block;
  width: 100%;
  padding: 5.3333333333vw 4vw 6.4vw;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__lead {
    padding: 20px 15px 24px;
    font-size: 1.4rem;
  }
}
#fakeNewsTest .quiz__choices {
  display: grid;
  gap: 3.2vw;
  padding: 0 4vw 8.5333333333vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__choices {
    gap: 12px;
    padding: 0 15px 32px;
  }
}
#fakeNewsTest .quiz__choices .choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 12.2666666667vw;
  padding: 0 3.2vw 0 5.3333333333vw;
  background: var(--color-white);
  border-radius: 266.4vw;
  color: var(--color-FNM-black);
  font-size: 4vw;
  font-weight: 600;
  cursor: pointer;
  transition: border 0.4s ease, background 0.4s ease, color 0.4s ease;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__choices .choice {
    height: 46px;
    padding: 0 12px 0 20px;
    border-radius: 999px;
    font-size: 1.5rem;
  }
}
#fakeNewsTest .quiz__choices .choice::before {
  content: "";
  display: none;
  width: 8.5333333333vw;
  height: 8.5333333333vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__choices .choice::before {
    width: 32px;
    height: 32px;
  }
}
#fakeNewsTest .quiz__choices .choice::after {
  content: "";
  display: block;
  width: 6.4vw;
  height: 6.4vw;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/arrow_yellow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__choices .choice::after {
    width: 24px;
    height: 24px;
  }
}
#fakeNewsTest .quiz__choices .choice[disabled] {
  background: transparent;
  border: 0.5333333333vw solid rgba(var(--color-white-rgb), 0.5);
  color: var(--color-white);
  cursor: not-allowed;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__choices .choice[disabled] {
    border-width: 2px;
  }
}
#fakeNewsTest .quiz__choices .choice[disabled]::after {
  display: none;
}
#fakeNewsTest .quiz__choices .choice.ok, #fakeNewsTest .quiz__choices .choice.ng {
  justify-content: start;
  gap: 2.1333333333vw;
  padding: 0 3.2vw;
  background: var(--color-white);
  border: none;
  color: var(--color-FNM-black);
  opacity: 1;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__choices .choice.ok, #fakeNewsTest .quiz__choices .choice.ng {
    gap: 8px;
    padding: 0 12px;
  }
}
#fakeNewsTest .quiz__choices .choice.ok::after, #fakeNewsTest .quiz__choices .choice.ng::after {
  display: none;
}
#fakeNewsTest .quiz__choices .choice.ok::before {
  display: block;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/quiz_ok.png);
}
#fakeNewsTest .quiz__choices .choice.ng::before {
  display: block;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/quiz_ng.png);
}
#fakeNewsTest .quiz__fb {
  margin: 0 -4.2666666667vw;
  padding: 4.2666666667vw 4.2666666667vw 8.5333333333vw;
  background: rgba(var(--color-white-rgb), 0.1);
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__fb {
    margin: 0 -16px;
    padding: 16px 16px 32px;
  }
}
#fakeNewsTest .quiz__fb .answer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10.1333333333vw;
  margin-bottom: 4.2666666667vw;
  border-radius: 2.1333333333vw;
  font-size: 4.8vw;
  font-weight: 600;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__fb .answer {
    height: 38px;
    margin-bottom: 16px;
    border-radius: 8px;
    font-size: 1.8rem;
  }
}
#fakeNewsTest .quiz__fb .answer.ok {
  background: var(--color-FNM-blue);
}
#fakeNewsTest .quiz__fb .answer.ng {
  background: #D93B3B;
}
#fakeNewsTest .quiz__fb .comment {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .quiz__fb .comment {
    font-size: 1.4rem;
  }
}
#fakeNewsTest #result {
  display: none;
  width: 100%;
  max-width: 91.7333333333vw;
  padding: 5.3333333333vw 4.2666666667vw;
  margin: 0 auto;
  border-radius: 6.4vw 6.4vw 0 0;
  background: var(--color-FNM-blue);
  text-align: center;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest #result {
    max-width: 344px;
    padding: 20px 16px;
    border-radius: 24px 24px 0 0;
  }
}
#fakeNewsTest #result .score {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: 0 0 2.6666666667vw 4vw;
  font-size: 5.3333333333vw;
  font-weight: 600;
  line-height: 4rem;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest #result .score {
    margin: 0 0 10px 15px;
    font-size: 2rem;
  }
}
#fakeNewsTest #result .score #correct {
  font-size: 10.6666666667vw;
  padding-right: 0.8vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest #result .score #correct {
    font-size: 4rem;
    padding-right: 3px;
  }
}
#fakeNewsTest #result .score .slash {
  font-size: 10.6666666667vw;
  font-weight: normal;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest #result .score .slash {
    font-size: 4rem;
  }
}
#fakeNewsTest #result .score #total {
  font-size: 8vw;
  padding-right: 0.8vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest #result .score #total {
    font-size: 3rem;
    padding-right: 3px;
  }
}
#fakeNewsTest #result #resultImage {
  width: 83.2vw;
  height: 38.9333333333vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest #result #resultImage {
    width: 312px;
    height: 146px;
    margin-bottom: 15px;
  }
}
#fakeNewsTest #result #resultShare {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.0666666667vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest #result #resultShare {
    gap: 19px;
  }
}
#fakeNewsTest #result #resultShare > p {
  font-size: 3.7333333333vw;
  font-weight: 600;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest #result #resultShare > p {
    font-size: 1.4rem;
  }
}
#fakeNewsTest #result #resultShare .inner {
  display: none;
  gap: 3.2vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest #result #resultShare .inner {
    gap: 12px;
  }
}
#fakeNewsTest #result #resultShare .inner li {
  width: 8.8vw;
  height: 8.8vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest #result #resultShare .inner li {
    width: 33px;
    height: 33px;
  }
}
#fakeNewsTest #result #resultShare .inner li a {
  display: block;
  width: 100%;
  height: 100%;
}
#fakeNewsTest #result #resultShare .inner li a img {
  width: 100%;
  height: 100%;
}
#fakeNewsTest #result .btn {
  margin-top: 3.2vw;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: #f8fafc;
  color: #0b1220;
  padding: 2.6666666667vw 4.2666666667vw;
  border-radius: 3.2vw;
  font-weight: 800;
  cursor: pointer;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest #result .btn {
    padding: 10px 16px;
    border-radius: 12px;
  }
}
#fakeNewsTest .more-quiz {
  width: 100%;
  max-width: 91.7333333333vw;
  padding: 4.2666666667vw;
  margin: 0 auto;
  border-radius: 6.4vw;
  background: #2234C1;
  text-align: center;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .more-quiz {
    max-width: 344px;
    padding: 16px;
    border-radius: 24px;
  }
}
#fakeNewsTest .more-quiz.with-result {
  border-radius: 0 0 6.4vw 6.4vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .more-quiz.with-result {
    border-radius: 0 0 24px 24px;
  }
}
#fakeNewsTest .more-quiz p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.8vw;
  font-size: 3.4666666667vw;
  font-weight: 600;
  margin-bottom: 3.7333333333vw;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .more-quiz p {
    gap: 18px;
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
}
#fakeNewsTest .more-quiz p::before, #fakeNewsTest .more-quiz p::after {
  content: "";
  display: block;
  width: 0.2666666667vw;
  height: 9.8666666667vw;
  background: var(--color-white);
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .more-quiz p::before, #fakeNewsTest .more-quiz p::after {
    width: 1px;
    height: 37px;
  }
}
#fakeNewsTest .more-quiz p::before {
  transform: translate(0, 0%) rotate(-25deg);
}
#fakeNewsTest .more-quiz p::after {
  transform: translate(0, 0%) rotate(25deg);
}
#fakeNewsTest .more-quiz a {
  display: block;
  width: 82.9333333333vw;
  height: 19.4666666667vw;
  border-radius: 2.6666666667vw;
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  #fakeNewsTest .more-quiz a {
    width: 311px;
    height: 73px;
    border-radius: 10px;
  }
}
#fakeNewsTest .more-quiz a img {
  width: 100%;
  height: 100%;
}

#aboutYJNews .feature-list {
  margin: 0 -4.2666666667vw 10.6666666667vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list {
    margin: 0 -16px 40px;
  }
}
#aboutYJNews .feature-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4.2666666667vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li {
    padding: 0 16px;
  }
}
#aboutYJNews .feature-list li:nth-of-type(1) {
  height: 58.4vw;
  padding-bottom: 0;
  margin: 0 0 3.4666666667vw;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/aboutYJNews_1_bg.svg);
  background-size: 103.2vw 58.4vw;
  background-position: calc(50% - 8vw) 0;
  background-repeat: no-repeat;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(1) {
    height: 219px;
    margin: 0 0 13px;
    background-size: 387px 219px;
    background-position: calc(50% - 30px) 0;
  }
}
#aboutYJNews .feature-list li:nth-of-type(1) h3 img {
  width: 4vw;
  height: 6.4vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(1) h3 img {
    width: 15px;
    height: 24px;
  }
}
#aboutYJNews .feature-list li:nth-of-type(1) .text-box {
  width: 52vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(1) .text-box {
    width: 195px;
  }
}
#aboutYJNews .feature-list li:nth-of-type(1) > img {
  width: 38.1333333333vw;
  height: 43.4666666667vw;
  margin-left: 0px;
  transform: translateY(0px);
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(1) > img {
    width: 143px;
    height: 163px;
  }
}
#aboutYJNews .feature-list li:nth-of-type(2) {
  flex-direction: row-reverse;
  height: 64.8vw;
  padding-bottom: 4vw;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/aboutYJNews_2_bg.svg);
  background-size: 106.6666666667vw 64.8vw;
  background-position: calc(50% + 6.6666666667vw) 0;
  background-repeat: no-repeat;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(2) {
    height: 243px;
    padding-bottom: 15px;
    background-size: 400px 243px;
    background-position: calc(50% + 25px) 0;
  }
}
#aboutYJNews .feature-list li:nth-of-type(2) h3 img {
  width: 4.5333333333vw;
  height: 6.4vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(2) h3 img {
    width: 17px;
    height: 24px;
  }
}
#aboutYJNews .feature-list li:nth-of-type(2) .text-box {
  width: 48.5333333333vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(2) .text-box {
    width: 182px;
  }
}
#aboutYJNews .feature-list li:nth-of-type(2) > img {
  width: 39.2vw;
  height: 54.6666666667vw;
  margin-right: 2.6666666667vw;
  transform: translateY(-4vw);
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(2) > img {
    width: 147px;
    height: 205px;
    margin-right: 10px;
    transform: translateY(-15px);
  }
}
#aboutYJNews .feature-list li:nth-of-type(3) {
  height: 69.6vw;
  margin-top: -1.3333333333vw;
  padding-top: 3.4666666667vw;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/aboutYJNews_3_bg.svg);
  background-size: 110.9333333333vw 69.6vw;
  background-position: calc(50% - 8vw) 0;
  background-repeat: no-repeat;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(3) {
    height: 261px;
    margin-top: -5px;
    padding-top: 13px;
    background-size: 416px 261px;
    background-position: calc(50% - 30px) 0;
  }
}
#aboutYJNews .feature-list li:nth-of-type(3) h3 img {
  width: 4.5333333333vw;
  height: 6.4vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(3) h3 img {
    width: 17px;
    height: 24px;
  }
}
#aboutYJNews .feature-list li:nth-of-type(3) .text-box {
  width: 57.6vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(3) .text-box {
    width: 216px;
  }
}
#aboutYJNews .feature-list li:nth-of-type(3) > img {
  width: 32.5333333333vw;
  height: 50.9333333333vw;
  margin-left: 0;
  transform: translateY(-2.6666666667vw);
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li:nth-of-type(3) > img {
    width: 122px;
    height: 191px;
    transform: translateY(-10px);
  }
}
#aboutYJNews .feature-list li .text-box {
  font-size: 3.4666666667vw;
  line-height: 1.5em;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li .text-box {
    font-size: 1.3rem;
  }
}
#aboutYJNews .feature-list li h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.6666666667vw;
  font-size: 4.8vw;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
#aboutYJNews .feature-list li h3 img {
  margin-bottom: 2.9333333333vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li h3 img {
    margin-bottom: 11px;
  }
}
#aboutYJNews .feature-list li h3 span {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .feature-list li h3 span {
    font-size: 1.6rem;
  }
}
#aboutYJNews .banner-for-YJnews {
  display: block;
  width: 87.4666666667vw;
  height: 20vw;
  margin: 0 auto;
  margin-bottom: 10.6666666667vw;
  border-radius: 4vw;
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .banner-for-YJnews {
    width: 328px;
    height: 75px;
    margin-bottom: 40px;
    border-radius: 15px;
  }
}
#aboutYJNews .banner-for-YJnews img {
  width: 100%;
  height: 100%;
}
#aboutYJNews .banner-list p {
  margin-bottom: 4.2666666667vw;
  color: #01A0C5;
  font-size: 4vw;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .banner-list p {
    margin-bottom: 16px;
    font-size: 1.5rem;
  }
}
#aboutYJNews .banner-list ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 4.2666666667vw;
  width: 100%;
  max-width: 87.4666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .banner-list ul {
    gap: 16px;
    max-width: 328px;
  }
}
#aboutYJNews .banner-list ul li {
  width: 100%;
}
#aboutYJNews .banner-list ul li:nth-of-type(2) a {
  border: 0.2666666667vw solid #00B5DE;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .banner-list ul li:nth-of-type(2) a {
    border-width: 1px;
  }
}
#aboutYJNews .banner-list ul li a {
  display: block;
  width: 87.4666666667vw;
  height: 26.6666666667vw;
  border-radius: 4vw;
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .banner-list ul li a {
    width: 328px;
    height: 100px;
    border-radius: 15px;
  }
}
#aboutYJNews .banner-list ul li a img {
  width: 100%;
  height: 100%;
}

#exhibitionInformation {
  position: relative;
}
#exhibitionInformation::after {
  content: "";
  position: absolute;
  top: 13.3333333333vw;
  left: 0;
  display: block;
  width: 100%;
  height: 70%;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/bg_blur_light_small.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  z-index: 0;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation::after {
    top: 50px;
  }
}
#exhibitionInformation > * {
  position: inherit;
  z-index: 1;
  max-width: 380px;
  margin: 0 auto;
}
#exhibitionInformation h3,
#exhibitionInformation h4 {
  font-weight: 600;
}
#exhibitionInformation .event-end-announce {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60vw;
  height: 11.2vw;
  margin: -4vw auto 16.8vw;
  padding: 1.3333333333vw;
  border: 0.2666666667vw solid var(--color-FNM-yellow);
  color: var(--color-FNM-yellow);
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .event-end-announce {
    width: 225px;
    height: 42px;
    margin: -15px auto 63px;
    padding: 5px;
    border-width: 1px;
    font-size: 13px;
  }
}
#exhibitionInformation .exhibition-summary h3 {
  font-size: 4.5333333333vw;
  text-align: center;
  margin-bottom: 3.2vw;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }
}
#exhibitionInformation .exhibition-summary__list {
  width: 100%;
}
#exhibitionInformation .exhibition-summary__list > li {
  display: flex;
  gap: 2.6666666667vw;
  padding: 4.2666666667vw 1.3333333333vw 4.2666666667vw 2.1333333333vw;
  border-top: 0.2666666667vw solid rgba(var(--color-white-rgb), 0.2);
  font-weight: 600;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li {
    gap: 10px;
    padding: 16px 5px 16px 8px;
    border-width: 1px;
  }
}
#exhibitionInformation .exhibition-summary__list > li > * {
  flex-shrink: 1;
}
#exhibitionInformation .exhibition-summary__list > li h4 {
  display: block;
  flex-shrink: 0 !important;
  width: 14.6666666667vw;
  color: var(--color-FNM-yellow);
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li h4 {
    width: 55px;
    font-size: 1.3rem;
  }
}
#exhibitionInformation .exhibition-summary__list > li p {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li p {
    font-size: 1.3rem;
  }
}
#exhibitionInformation .exhibition-summary__list > li article address,
#exhibitionInformation .exhibition-summary__list > li article ul {
  font-size: 3.4666666667vw;
  font-weight: normal;
  font-style: normal;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li article address,
  #exhibitionInformation .exhibition-summary__list > li article ul {
    font-size: 1.3rem;
  }
}
#exhibitionInformation .exhibition-summary__list > li article address {
  margin: 4.2666666667vw 0;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li article address {
    margin: 16px 0;
  }
}
#exhibitionInformation .exhibition-summary__list > li article ul {
  display: flex;
  flex-direction: column;
  gap: 4.2666666667vw;
  padding-left: 4.2666666667vw;
  margin-bottom: 5.8666666667vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li article ul {
    gap: 16px;
    padding-left: 16px;
    margin-bottom: 22px;
  }
}
#exhibitionInformation .exhibition-summary__list > li article ul li {
  list-style: disc;
}
#exhibitionInformation .exhibition-summary__list > li article a {
  display: flex;
  gap: 2.1333333333vw;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2.6666666667vw 4.2666666667vw;
  margin-bottom: 1.3333333333vw;
  background: var(--color-FNM-black);
  border: 0.2666666667vw solid var(--color-white);
  border-radius: 2.1333333333vw;
  color: var(--color-white);
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li article a {
    gap: 8px;
    padding: 10px 16px;
    margin-bottom: 5px;
    border-width: 1px;
    border-radius: 8px;
    font-size: 1.3rem;
  }
}
#exhibitionInformation .exhibition-summary__list > li article a::after {
  content: "";
  display: block;
  width: 4.8vw;
  height: 4.8vw;
  background-image: url(https://s.yimg.jp/images/evt/fakenewsmonsters/img/arrow_white.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li article a::after {
    width: 18px;
    height: 18px;
  }
}
#exhibitionInformation .exhibition-summary__list > li.event-date .kerning {
  letter-spacing: -0.2em;
}
#exhibitionInformation .exhibition-summary__list > li.event-time p {
  display: flex;
  flex-direction: column;
}
#exhibitionInformation .exhibition-summary__list > li.event-time p > span {
  display: flex;
  gap: 0.8vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li.event-time p > span {
    gap: 3px;
  }
}
#exhibitionInformation .exhibition-summary__list > li.event-time p > span > span:nth-of-type(1) {
  width: 12.2666666667vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li.event-time p > span > span:nth-of-type(1) {
    width: 46px;
  }
}
#exhibitionInformation .exhibition-summary__list > li.event-time p > span > span .kerning {
  letter-spacing: 0.13rem;
}
#exhibitionInformation .exhibition-summary__list > li.event-time p small {
  display: block;
  font-size: 3.2vw;
  margin-left: 11.2vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li.event-time p small {
    font-size: 1.2rem;
    margin-left: 42px;
  }
}
#exhibitionInformation .exhibition-summary__list > li.event-time p small.note {
  font-weight: normal;
  margin-left: 0;
  margin-top: 1.3333333333vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-summary__list > li.event-time p small.note {
    margin-top: 5px;
  }
}
#exhibitionInformation .exhibition-image {
  margin-bottom: 16vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-image {
    margin-bottom: 60px;
  }
}
#exhibitionInformation .exhibition-image h3 {
  font-size: 4.5333333333vw;
  text-align: center;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-image h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}
#exhibitionInformation .exhibition-image__lead {
  font-size: 3.4666666667vw;
  text-align: center;
  margin: 0 -1.3333333333vw 4.8vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-image__lead {
    font-size: 1.3rem;
    margin: 0 -5px 18px;
  }
}
#exhibitionInformation .exhibition-image .swiper {
  margin: 0 -17.6vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-image .swiper {
    margin: 0 -66px;
  }
}
#exhibitionInformation .exhibition-image .swiper-slide {
  width: 72vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-image .swiper-slide {
    width: 270px;
  }
}
#exhibitionInformation .exhibition-image .swiper-slide img {
  width: 72vw;
  height: 48vw;
  margin-bottom: 2.1333333333vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-image .swiper-slide img {
    width: 270px;
    height: 180px;
    margin-bottom: 8px;
  }
}
#exhibitionInformation .exhibition-image .swiper-slide p {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-image .swiper-slide p {
    font-size: 1.3rem;
  }
}
#exhibitionInformation .exhibition-image .swiper-button-wrapper {
  position: absolute;
  top: 27.2vw;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 80vw;
  width: 100%;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-image .swiper-button-wrapper {
    top: 102px;
    gap: 300px;
  }
}
#exhibitionInformation .exhibition-image .swiper-button-prev, #exhibitionInformation .exhibition-image .swiper-button-next {
  position: relative;
  width: 6.4vw;
  height: 6.4vw;
  border-radius: 26.6666666667vw;
  transition: opacity 0.4s ease;
  background: var(--color-FNM-yellow);
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-image .swiper-button-prev, #exhibitionInformation .exhibition-image .swiper-button-next {
    width: 24px;
    height: 24px;
    border-radius: 100px;
  }
}
#exhibitionInformation .exhibition-image .swiper-button-prev:focus-visible, #exhibitionInformation .exhibition-image .swiper-button-next:focus-visible {
  outline: auto;
}
#exhibitionInformation .exhibition-image .swiper-button-prev::after, #exhibitionInformation .exhibition-image .swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  border: 0.5333333333vw solid var(--color-FNM-black);
  border-left: none;
  border-bottom: none;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-image .swiper-button-prev::after, #exhibitionInformation .exhibition-image .swiper-button-next::after {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
}
#exhibitionInformation .exhibition-image .swiper-button-prev::after {
  transform: translate(-30%, -50%) rotate(225deg);
}
#exhibitionInformation .exhibition-image .swiper-button-next::after {
  transform: translate(-70%, -50%) rotate(45deg);
}
#exhibitionInformation .exhibition-image__note {
  margin: 0 auto;
  font-size: 3.2vw;
  text-align: center;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-image__note {
    font-size: 1.2rem;
  }
}
#exhibitionInformation .exhibition-note {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 4.2666666667vw;
  border-top: 0.2666666667vw solid rgba(var(--color-white-rgb), 0.2);
  font-size: 2.9333333333vw;
  line-height: 1.5em;
  text-align: center;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-note {
    padding-top: 16px;
    border-width: 1px;
    font-size: 1.1rem;
  }
}
#exhibitionInformation .exhibition-note h3 {
  font-weight: normal;
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .exhibition-note h3 {
    font-size: 1.1rem;
  }
}
#exhibitionInformation .anchor-to-whatIsFNM {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .anchor-to-whatIsFNM {
    margin: 0 auto;
  }
}
#exhibitionInformation .anchor-to-whatIsFNM > img {
  display: block;
  width: 79.4666666667vw;
  max-width: none;
  height: 34.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .anchor-to-whatIsFNM > img {
    width: 298px;
    height: 130px;
  }
}
#exhibitionInformation .anchor-to-whatIsFNM .button {
  width: 100%;
  max-width: 67.7333333333vw;
  padding: 3.7333333333vw 7.4666666667vw;
  margin: 6.6666666667vw auto 0;
  border: 0.5333333333vw solid var(--color-white);
  background: var(--color-FNM-purple);
  font-size: 4vw;
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .anchor-to-whatIsFNM .button {
    padding: 14px 28px;
    margin: 25px auto 0;
    max-width: 254px;
    border-width: 2px;
    font-size: 15px;
  }
}
#exhibitionInformation .anchor-to-whatIsFNM .button::after {
  width: 3.2vw;
  height: 3.2vw;
  transform: translate(0, 20%) rotate(45deg);
}
@media screen and (min-width: 375px) {
  #exhibitionInformation .anchor-to-whatIsFNM .button::after {
    width: 12px;
    height: 12px;
  }
}

.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  overflow: hidden;
  transition: width 0.4s ease;
}
@media screen and (min-width: 768px) {
  .hamburger {
    right: calc((100vw - 500px) / 2);
    overflow: visible;
  }
}
.hamburger.active {
  width: 80vw;
}
@media screen and (min-width: 375px) {
  .hamburger.active {
    width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .hamburger.active {
    width: 0;
  }
}
.hamburger__button {
  position: fixed;
  top: 2.6666666667vw;
  right: 2.6666666667vw;
  width: 13.0666666667vw;
  height: 13.0666666667vw;
  background: var(--color-FNM-black);
  border-radius: 26.6666666667vw;
}
@media screen and (min-width: 375px) {
  .hamburger__button {
    top: 10px;
    right: 10px;
    width: 49px;
    height: 49px;
    border-radius: 100px;
  }
}
@media screen and (min-width: 768px) {
  .hamburger__button {
    display: none;
  }
}
.hamburger__button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.4vw;
  height: 0.5333333333vw;
  background-color: var(--color-white);
  transition: all 0.4s ease;
}
@media screen and (min-width: 375px) {
  .hamburger__button span {
    width: 24px;
    height: 2px;
  }
}
.hamburger__button span:nth-of-type(1) {
  transform: translate(-50%, -2.4vw);
}
@media screen and (min-width: 375px) {
  .hamburger__button span:nth-of-type(1) {
    transform: translate(-50%, -9px);
  }
}
.hamburger__button span:nth-of-type(2) {
  transform: translate(-50%, -50%);
}
.hamburger__button span:nth-of-type(3) {
  transform: translate(-50%, 1.8666666667vw);
}
@media screen and (min-width: 375px) {
  .hamburger__button span:nth-of-type(3) {
    transform: translate(-50%, 7px);
  }
}
.hamburger__button.active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.hamburger__button.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger__button.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger__menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 80vw;
  height: 100vh;
  padding: 18.6666666667vw 4.2666666667vw;
  background: var(--color-FNM-black);
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (min-width: 375px) {
  .hamburger__menu {
    width: 300px;
    padding: 70px 16px;
  }
}
@media screen and (min-width: 768px) {
  .hamburger__menu {
    width: 268px;
    margin-left: -134px;
    padding: 87px 23px;
    box-sizing: border-box;
  }
}
.hamburger__menu::-webkit-scrollbar {
  display: none;
}
.hamburger__menu::after {
  content: "";
  display: block;
  width: 33.6vw;
  height: 33.6vw;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/char_crayfish_img.png");
}
@media screen and (min-width: 375px) {
  .hamburger__menu::after {
    width: 126px;
    height: 126px;
  }
}
@media screen and (min-width: 768px) {
  .hamburger__menu::after {
    transform: translate(-10px, 0px);
  }
}
.hamburger__menu > li:first-of-type {
  display: none;
}
@media screen and (min-width: 768px) {
  .hamburger__menu > li:first-of-type {
    display: block;
  }
  .hamburger__menu > li:first-of-type img {
    display: block;
    width: 179px;
    height: 78px;
    margin: 0 auto 24px;
  }
}
.hamburger__menu .anchor-link:nth-of-type(3) img, .hamburger__menu .anchor-link:nth-of-type(4) img {
  height: 3.7333333333vw;
}
@media screen and (min-width: 375px) {
  .hamburger__menu .anchor-link:nth-of-type(3) img, .hamburger__menu .anchor-link:nth-of-type(4) img {
    height: 14px;
  }
}
.hamburger__menu .anchor-link:nth-of-type(5) a {
  border: none;
}
.hamburger__menu .anchor-link:nth-of-type(5) .exhibition-period {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 16.5333333333vw;
  height: 16.5333333333vw;
  margin-bottom: 0;
}
@media screen and (min-width: 375px) {
  .hamburger__menu .anchor-link:nth-of-type(5) .exhibition-period {
    width: 62px;
    height: 62px;
  }
}
.hamburger__menu .anchor-link:nth-of-type(1) a::before {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/nav_decoration_1.png");
}
.hamburger__menu .anchor-link:nth-of-type(2) a::before {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/nav_decoration_2.png");
}
.hamburger__menu .anchor-link:nth-of-type(3) a::before {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/nav_decoration_3.png");
}
.hamburger__menu .anchor-link:nth-of-type(4) a::before {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/nav_decoration_4.png");
}
.hamburger__menu .anchor-link:nth-of-type(5) a::before {
  background-image: url("https://s.yimg.jp/images/evt/fakenewsmonsters/img/nav_decoration_5.png");
}
.hamburger__menu .anchor-link a {
  position: relative;
  display: block;
  padding: 5.8666666667vw 0 5.8666666667vw 15.4666666667vw;
  color: var(--color-white);
  font-size: 3.7333333333vw;
  font-weight: 600;
  line-height: 1.3em;
  border-bottom: 0.2666666667vw solid rgba(var(--color-white-rgb), 0.1);
}
@media screen and (min-width: 375px) {
  .hamburger__menu .anchor-link a {
    padding: 22px 0 22px 58px;
    font-size: 1.4rem;
    border-width: 1px;
  }
}
@media screen and (min-width: 768px) {
  .hamburger__menu .anchor-link a {
    padding-left: 0;
    font-size: 1.3rem;
  }
}
.hamburger__menu .anchor-link a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: block;
  width: 12.5333333333vw;
  height: 12.5333333333vw;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 375px) {
  .hamburger__menu .anchor-link a::before {
    width: 47px;
    height: 47px;
  }
}
@media screen and (min-width: 768px) {
  .hamburger__menu .anchor-link a::before {
    content: none;
  }
}
.hamburger__menu .anchor-link a img {
  height: 3.2vw;
  margin-bottom: 1.6vw;
}
@media screen and (min-width: 375px) {
  .hamburger__menu .anchor-link a img {
    height: 12px;
    margin-bottom: 6px;
  }
}
.hamburger__menu .sns {
  position: relative;
  z-index: 0;
}
.hamburger__menu .sns ul {
  position: inherit;
  display: flex;
  justify-content: end;
  gap: 2.6666666667vw;
  margin-top: 10.6666666667vw;
  padding: 6.6666666667vw 6.1333333333vw 0.8vw;
  z-index: 1;
}
@media screen and (min-width: 375px) {
  .hamburger__menu .sns ul {
    gap: 10px;
    margin-top: 40px;
    padding: 25px 23px 3px;
  }
}
.hamburger__menu .sns ul li {
  width: 6.4vw;
  height: 6.4vw;
}
@media screen and (min-width: 375px) {
  .hamburger__menu .sns ul li {
    width: 24px;
    height: 24px;
  }
}
.hamburger__menu .sns ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (hover: hover) {
  .hamburger__menu .sns ul li a:hover {
    opacity: 1 !important;
  }
}
.hamburger__menu .sns ul li a img {
  display: block;
  width: 100%;
  height: 100%;
}
.hamburger__menu .sns > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 55.7333333333vw;
  height: 20.2666666667vw;
  z-index: 0;
}
@media screen and (min-width: 375px) {
  .hamburger__menu .sns > img {
    width: 209px;
    height: 76px;
  }
}

.fix-item {
  width: 100%;
  margin-bottom: env(safe-area-inset-bottom);
  position: fixed;
  bottom: 0;
  right: 0;
  translate: 0 18.6666666667vw;
  border-radius: 4vw 0 0 4vw;
  overflow: visible;
  opacity: 0;
  z-index: 99;
  filter: drop-shadow(0 0 1.0666666667vw rgba(var(--color-black-rgb), 0.25));
  transform: translateZ(0);
  transition: opacity 0.4s ease, translate 0.4s ease;
}
@media screen and (min-width: 375px) {
  .fix-item {
    translate: 0 70px;
    border-radius: 15px 0 0 15px;
    filter: drop-shadow(0 0 4px rgba(var(--color-black-rgb), 0.25));
  }
}
@media screen and (min-width: 768px) {
  .fix-item {
    right: calc((100vw - 232px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .fix-item.before-event {
    right: 0;
  }
}
.fix-item .sns {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  text-align: center;
  transition: opacity 0.4s ease, translate 0.4s ease;
}
.fix-item .sns__inner {
  display: flex;
  align-items: center;
  gap: 4.5333333333vw;
  height: -moz-fit-content;
  height: fit-content;
  padding: 4.5333333333vw;
  background: var(--color-FNM-black);
  border: 0.2666666667vw solid #2E2D2D;
  border-left: none;
  border-radius: 0 26.6666666667vw 26.6666666667vw 0;
}
@media screen and (min-width: 375px) {
  .fix-item .sns__inner {
    gap: 17px;
    padding: 17px;
    border-width: 1px;
    border-radius: 0 100px 100px 0;
  }
}
.fix-item .sns__inner > li {
  transition: translate 0.4s ease;
}
.fix-item .sns__inner > li.tw a {
  border: 0.2666666667vw solid rgba(var(--color-white-rgb), 0.5);
}
@media screen and (min-width: 375px) {
  .fix-item .sns__inner > li.tw a {
    border-width: 1px;
  }
}
.fix-item .sns__inner > li a {
  display: block;
  width: 9.0666666667vw;
  height: 9.0666666667vw;
  padding: 0;
  border-radius: 26.6666666667vw;
}
@media screen and (min-width: 375px) {
  .fix-item .sns__inner > li a {
    width: 34px;
    height: 34px;
    border-radius: 100px;
  }
}
@media screen and (hover: hover) {
  .fix-item .sns__inner > li a:hover {
    opacity: 1 !important;
  }
}
.fix-item .sns__inner > li a img {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.fix-item .go-to-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 13.8666666667vw;
  height: 12.8vw;
  padding-top: 1.0666666667vw;
  position: absolute;
  top: 0px;
  right: 2.6666666667vw;
  box-sizing: content-box;
  background: var(--color-white);
  font-size: 3.4666666667vw;
  font-weight: 600;
  text-align: center;
  color: var(--color-LYnavy100);
  border-radius: 50%;
  transition: opacity 0.4s ease, translate 0.4s ease;
}
@media screen and (min-width: 375px) {
  .fix-item .go-to-top {
    width: 52px;
    height: 48px;
    padding-top: 4px;
    right: 10px;
    font-size: 1.3rem;
  }
}
.fix-item .go-to-top:focus-visible {
  outline: auto;
}
.fix-item .go-to-top::before {
  content: "";
  display: block;
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  border: 0.5333333333vw solid var(--color-LYnavy100);
  border-bottom: none;
  border-right: none;
  rotate: 45deg;
  transition: border 0.4s ease;
}
@media screen and (min-width: 375px) {
  .fix-item .go-to-top::before {
    width: 7px;
    height: 7px;
    border-width: 2px;
  }
}

.show__fix-item {
  opacity: 1 !important;
  translate: 0;
}

.show__go-to-top {
  opacity: 1 !important;
  translate: 0 -16.5333333333vw;
}
@media screen and (min-width: 375px) {
  .show__go-to-top {
    translate: 0 -62px;
  }
}

.show__sns {
  opacity: 1 !important;
  translate: 0 -19.4666666667vw;
}
@media screen and (min-width: 375px) {
  .show__sns {
    translate: 0 -73px;
  }
}

.fix-item button.go-to-top:focus-visible,
.fix-item button.sns__text:focus-visible,
[class^=sns__] > a:focus-visible {
  outline-offset: -3px;
  outline-style: auto;
}

.loginArea {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 375px) {
  .loginArea {
    gap: 3px;
    font-size: 1.3rem;
  }
}
.loginArea em {
  font-style: normal;
}
.loginArea a {
  text-decoration: underline;
}

#footer {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  background: var(--color-FNM-black);
}
#footer a {
  color: #fff;
  transition: opacity 0.4s ease;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 5.3333333333vw 4vw calc(100px + env(safe-area-inset-bottom));
  box-sizing: border-box;
}
@media screen and (min-width: 375px) {
  .footer__inner {
    margin: 0 auto;
    padding: 20px 15px calc(100px + env(safe-area-inset-bottom));
  }
}
@media screen and (min-width: 450px) {
  .footer__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer__property-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8666666667vw;
}
@media screen and (min-width: 375px) {
  .footer__property-link {
    margin-bottom: 7px;
  }
}
.footer__property-link li {
  display: inline-block;
}
.footer__property-link li a {
  display: block;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 375px) {
  .footer__property-link li a {
    font-size: 1.3rem;
  }
}
@media screen and (hover: hover) {
  .footer__property-link li a:hover {
    opacity: 1 !important;
  }
}
.footer__sub-link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.8666666667vw 5.3333333333vw;
  padding: 0 0 9.3333333333vw;
  margin-bottom: 6.4vw;
  font-size: 2.9333333333vw;
  justify-content: center;
  border-bottom: 0.2666666667vw solid rgba(225, 225, 225, 0.5);
}
@media screen and (min-width: 375px) {
  .footer__sub-link {
    gap: 7px 20px;
    padding: 0 0 35px;
    margin-bottom: 24px;
    font-size: 1.1rem;
    border-width: 1px;
  }
}
@media screen and (min-width: 400px) {
  .footer__sub-link {
    padding: 0 35px 35px;
  }
}
@media screen and (min-width: 430px) {
  .footer__sub-link {
    padding: 0 55px 35px;
  }
}
.footer__sub-link li {
  position: relative;
}
.footer__sub-link li:not(:first-child):before {
  content: "-";
  position: absolute;
  top: 0;
  left: -3.2vw;
}
@media screen and (min-width: 375px) {
  .footer__sub-link li:not(:first-child):before {
    left: -12px;
  }
}
.footer__sub-link li:nth-child(4):before {
  content: "";
}
@media screen and (max-width: 767px) {
  .footer__sub-link li:last-of-type {
    margin-bottom: 0;
  }
}
.footer__sub-link li a {
  display: block;
  height: 100%;
}
.footer__sub-link .show__on-pc-layout {
  display: inline;
}
.footer__copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7.4666666667vw;
  margin: 0 4vw;
}
@media screen and (min-width: 375px) {
  .footer__copyright {
    gap: 28px;
    margin: 0 15px;
  }
}
@media screen and (max-width: 360px) {
  .footer__copyright {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 360px) {
  .footer__copyright li {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.footer__copyright li:nth-of-type(2) {
  margin: 0;
}
.footer__copyright li p {
  opacity: 0.7;
}
.footer__copyright li p small {
  font-size: 3.2vw;
}
@media screen and (min-width: 375px) {
  .footer__copyright li p small {
    font-size: 1.2rem;
  }
}
.footer__copyright li a {
  display: block;
}
@media screen and (hover: hover) {
  .footer__copyright li a:hover {
    opacity: 1 !important;
  }
}
.footer__copyright li a img {
  display: block;
}
.footer__qr-text {
  font-size: 2.6666666667vw;
  opacity: 0.7;
  text-align: left;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  .footer__qr-text {
    font-size: 1rem;
  }
}
.footer__qr-text a {
  text-decoration: underline;
}

.accordion__btn, .accordion__content {
  backface-visibility: hidden;
  transform: translateZ(0);
}
.accordion__btn.button::after {
  translate: 0 -30%;
  rotate: 90deg;
  transform-origin: center center;
  transition: translate 0.4s ease, rotate 0.4s ease;
}
.accordion__btn.button.open::after {
  translate: 0 10%;
  rotate: -90deg;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.accordion__content.open {
  max-height: 2000px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 3.4666666667vw 8vw;
  margin: 0 auto;
  border-radius: 26.6666666667vw;
  color: var(--color-white);
  font-size: 4.8vw;
  font-weight: 600;
  text-align: center;
  background: var(--color-black);
  transform: translateZ(0);
  transition: opacity 0.4s ease;
  cursor: pointer;
}
@media screen and (min-width: 375px) {
  .button {
    padding: 13px 30px;
    border-radius: 100px;
    font-size: 1.8rem;
  }
}
.button span {
  position: relative;
  margin-left: -3.2vw;
  opacity: 1;
}
@media screen and (min-width: 375px) {
  .button span {
    margin-left: -12px;
  }
}
.button::after {
  content: "";
  display: block;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  border: 0.6666666667vw solid var(--color-white);
  border-right: none;
  border-bottom: none;
  transform: rotate(-225deg);
  transition: transform 0.4s ease;
}
@media screen and (min-width: 375px) {
  .button::after {
    width: 10px;
    height: 10px;
    border-width: 2.5px;
  }
}
.button.outline {
  background: transparent;
  filter: none;
  border: 0.2666666667vw solid var(--color-LYnavy100);
  color: var(--color-LYnavy100);
}
@media screen and (min-width: 375px) {
  .button.outline {
    border-width: 1px;
  }
}
.button.outline::after {
  border-color: var(--color-LYnavy100);
}
.button__wrapper {
  padding: 2.1333333333vw 4vw 8.5333333333vw;
  background: var(--color-white);
}
@media screen and (min-width: 375px) {
  .button__wrapper {
    padding: 8px 15px 32px;
  }
}

.text-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.0666666667vw;
  color: var(--color-black);
  font-size: 3.4666666667vw;
  font-weight: normal;
  border-bottom: 0.2666666667vw solid var(--color-black);
  opacity: 1;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 375px) {
  .text-link {
    gap: 4px;
    font-size: 1.3rem;
    border-width: 1px;
  }
}
.text-link::after {
  content: "";
  display: block;
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  border: 0.2666666667vw solid var(--color-black);
  border-right: none;
  border-bottom: none;
  rotate: -225deg;
}
@media screen and (min-width: 375px) {
  .text-link::after {
    width: 7px;
    height: 7px;
    border-width: 1px;
  }
}

.animation {
  opacity: 0;
}
.animation.is-visible {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fade-in-down;
  visibility: visible !important;
}

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(8vw);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 375px) {
  @keyframes fade-in-down {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
.support-note {
  font-size: 3.2vw;
  max-width: 468px;
  margin: 0 auto;
  padding: 0 5.3333333333vw 10.6666666667vw;
}
@media screen and (min-width: 375px) {
  .support-note {
    font-size: 1.2rem;
    padding: 0 20px 40px;
  }
}/*# sourceMappingURL=style.css.map */