/*-- 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-white-dark: #F0F4F8;
  --color-FNM-white-dark-rgb: 240, 244, 248;
  --color-FNM-gray: #4B4949;
  --color-FNM-gray-rgb: 75, 73, 73;
  --color-FNM-gray-light: #D3D3D3;
  --color-FNM-gray-light-rgb: 211, 211, 211;
  --color-FNM-gray-dark: #1E1E1E;
  --color-FNM-gray-dark-rgb: 30, 30, 30;
  --color-FNM-navy: #1A1D3B;
  --color-FNM-navy-rgb: 26, 29, 59;
  --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: #00B5DE;
  --color-FNM-blue-rgb: 0, 181, 222;
  --color-FNM-blue-dark: #08B6EB;
  --color-FNM-blue-dark-rgb: 8, 182, 235;
  --color-FNM-blue-light: #DCF9FF;
  --color-FNM-blue-light-rgb: 220, 249, 255;
  --color-FNM-yellow: #FFEE00;
  --color-FNM-yellow-rgb: 255, 238, 0;
  --color-LYnavy100: #000048;
  --color-LYnavy100-rgb: 0, 0, 72;
  --color-yahoo: #ff0033;
  --color-line: #06c755;
  --color-search-blue: #1877F2;
  --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-white);
}
@media screen and (min-width: 500px) {
  html {
    background: var(--color-FNM-white-dark);
  }
}

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;
  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;
  }
}
@media screen and (orientation: landscape) and (pointer: coarse) and (max-width: 932px) {
  body > .wrapper {
    padding-right: 0 !important;
  }
}
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 > .nav {
  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;
  background: var(--color-FNM-blue-dark);
}
header .corporate-logo {
  display: flex;
  align-items: start;
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  padding: 4.2666666667vw 5.3333333333vw 5.3333333333vw;
}
@media screen and (min-width: 375px) {
  header .corporate-logo {
    gap: 20px;
    padding: 16px 20px 20px;
  }
}
@media screen and (min-width: 500px) {
  header .corporate-logo {
    padding: 20px 26px 24px;
  }
}
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%;
  }
}

#main {
  background: var(--color-white);
}

.key-visual__primary {
  background: var(--color-FNM-blue-dark);
  width: 100%;
  position: relative;
  z-index: 2;
}
.key-visual__primary::before {
  content: "";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../img/keyVisual.png");
  position: absolute;
  left: 2.6666666667vw;
  bottom: -24.5333333333vw;
  width: 96vw;
  height: 25.3333333333vw;
}
@media screen and (min-width: 500px) {
  .key-visual__primary::before {
    left: 12px;
    bottom: -120px;
    width: 480px;
    height: 126px;
  }
}
.key-visual__primary h1 img {
  width: 100%;
  height: 19.2vw;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 500px) {
  .key-visual__primary h1 img {
    height: 96px;
    margin: 0 auto 20px;
  }
}
.key-visual__primary p {
  text-align: center;
  color: var(--color-white);
  font-size: 3.7333333333vw;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  font-weight: 600;
}
@media screen and (min-width: 375px) {
  .key-visual__primary p {
    font-size: 1.4rem;
  }
}
.key-visual svg {
  margin-top: -0.2666666667vw;
}
@media screen and (min-width: 375px) {
  .key-visual svg {
    margin-top: -1px;
  }
}
.key-visual svg path {
  fill: #08B6EB;
}
.key-visual__statement {
  width: 100%;
  margin: 0 auto;
  padding: 10.6666666667vw 0 5.3333333333vw;
  color: var(--color-FNM-gray);
  text-align: center;
  font-size: 3.7333333333vw;
  line-height: 1.8em;
  letter-spacing: 0.03em;
  font-weight: 600;
}
@media screen and (min-width: 375px) {
  .key-visual__statement {
    padding: 40px 0 20px;
    font-size: 1.4rem;
  }
}
.key-visual__statement p {
  margin-bottom: 1em;
}
.key-visual__statement p:last-of-type {
  margin-bottom: 0;
}

.contents-block {
  position: relative;
  padding: 5.3333333333vw 4.2666666667vw;
  margin: 26.6666666667vw 0;
}
@media screen and (min-width: 375px) {
  .contents-block {
    padding: 20px 16px;
    margin: 100px 0;
  }
}
.contents-block__lead {
  text-align: center;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 375px) {
  .contents-block__lead {
    font-size: 1.4rem;
  }
}

#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("../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("../img/separate_navy_top.svg");
}
#whatIsFNM::after {
  background-image: url("../img/separate_navy_bottom.svg");
}

#aboutYJNews::before {
  background-image: url("../img/separate_blue_top.svg");
}
#aboutYJNews::after {
  background-image: url("../img/separate_blue_bottom.svg");
}

#infoPoint::before {
  background-image: url("../img/separate_white_top.svg");
}
#infoPoint::after {
  background-image: url("../img/separate_white_bottom.svg");
  transform: scale(-1, 1);
}

#footer::before {
  background-image: url("../img/separate_black_bottom.svg");
}
#footer::after {
  content: none;
}

#whatIsFNM {
  background: var(--color-FNM-navy);
  color: var(--color-white);
}
#whatIsFNM h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6666666667vw;
  margin-bottom: 4.2666666667vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM h2 {
    gap: 10px;
    margin-bottom: 16px;
  }
}
#whatIsFNM h2 img {
  display: block;
  width: auto;
}
#whatIsFNM h2::before {
  content: "";
  display: block;
  width: 8.5333333333vw;
  height: 7.4666666667vw;
  background-image: url(../img/icon_warning.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 375px) {
  #whatIsFNM h2::before {
    width: 32px;
    height: 28px;
  }
}
#whatIsFNM .contents-block__lead {
  margin-bottom: 11.7333333333vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .contents-block__lead {
    margin-bottom: 44px;
  }
}
#whatIsFNM .character-box {
  width: calc(100% + 8.5333333333vw);
  margin: 0 -4.2666666667vw;
  position: relative;
  overflow: hidden;
  transition: margin-bottom 0.4s ease;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character-box {
    width: calc(100% + 32px);
    margin: 0 -16px;
  }
}
#whatIsFNM .other-monsters {
  margin-bottom: -5.3333333333vw;
  font-size: 4.5333333333vw;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .other-monsters {
    margin-bottom: -20px;
    font-size: 1.7rem;
  }
}
#whatIsFNM .other-monsters a {
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
}
#whatIsFNM .other-monsters a::after {
  content: "";
  display: block;
  width: 2.4vw;
  height: 4vw;
  margin-left: 1.6vw;
  background-image: url(../img/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .other-monsters a::after {
    width: 9px;
    height: 15px;
    margin-left: 6px;
  }
}
#whatIsFNM .character {
  z-index: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: 100%;
  margin: 0 0 5.3333333333vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character {
    margin: 0 0 20px;
  }
}
#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;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .summary {
    padding-bottom: 15px;
    font-size: 1.4rem;
  }
}
#whatIsFNM .character__description .card {
  border: 0.5333333333vw solid var(--color-FNM-gray-dark);
  border-radius: 4.2666666667vw;
  overflow: hidden;
  background: var(--color-FNM-gray-dark);
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .card {
    border-radius: 16px;
    border-width: 2px;
  }
}
#whatIsFNM .character__description .card__title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4.2666666667vw 0 3.7333333333vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .card__title {
    padding: 16px 0 14px;
  }
}
#whatIsFNM .character__description .card__title::before {
  content: "";
  width: 4.8vw;
  height: 4.2666666667vw;
  background-image: url(../img/icon_warning.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-right: 2.1333333333vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .card__title::before {
    width: 18px;
    height: 16px;
    margin-right: 8px;
  }
}
#whatIsFNM .character__description .card__content img {
  width: 100%;
  height: auto;
  padding: 0 7.4666666667vw 3.7333333333vw;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .card__content img {
    padding: 0 28px 14px;
  }
}
#whatIsFNM .character__description .card__content p {
  position: relative;
  padding: 0 7.4666666667vw 5.3333333333vw;
  font-size: 3.7333333333vw;
  line-height: 1.7em;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .card__content p {
    padding: 0 28px 20px;
    font-size: 1.4rem;
  }
}
#whatIsFNM .character__description .card__content p .adjustment {
  letter-spacing: 0em;
}
#whatIsFNM .character__description .card__content p .notes {
  display: block;
  color: var(--color-FNM-gray-light);
  font-size: 2.6666666667vw;
  line-height: 1.6em;
  letter-spacing: -0.01em;
  margin: 1.8666666667vw 0 0 0;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .card__content p .notes {
    display: block;
    font-size: 10px;
    margin: 7px 0 0 0;
  }
}
#whatIsFNM .character__description .card__content p::after {
  content: "";
  position: absolute;
  top: -23.4666666667vw;
  right: 1.3333333333vw;
  display: block;
  width: 24vw;
  height: 24vw;
  background-image: url(../img/badge_fake.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 375px) {
  #whatIsFNM .character__description .card__content p::after {
    top: -88px;
    right: 5px;
    width: 90px;
    height: 90px;
  }
}
#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 #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 #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 #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 .summary {
  letter-spacing: 0;
}
#whatIsFNM #mask .character__description .card__content p {
  letter-spacing: 0;
}
#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 #crayfish .character__image h3 .en,
#whatIsFNM #mask .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 {
    height: 17px;
  }
}
#whatIsFNM #dinosaur .summary,
#whatIsFNM #mask .summary {
  color: var(--color-FNM-black);
}

#aboutYJNews {
  background: var(--color-FNM-blue-light);
  color: var(--color-FNM-black);
}
#aboutYJNews h2 {
  text-align: center;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews h2 {
    margin-bottom: 40px;
  }
}
#aboutYJNews h2 img {
  height: 9.6vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews h2 img {
    height: 36px;
  }
}
#aboutYJNews .contents-block__lead {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .contents-block__lead {
    margin-bottom: 40px;
  }
}
#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 a {
  display: block;
  width: 87.4666666667vw;
  height: 18.6666666667vw;
  border: 0.2666666667vw solid #00B5DE;
  border-radius: 4vw;
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .banner-list ul li a {
    width: 328px;
    height: 70px;
    border-radius: 15px;
    border-width: 1px;
  }
}
#aboutYJNews .banner-list ul li a img {
  width: 100%;
  height: 100%;
}
#aboutYJNews .banner-list ul li:first-of-type a {
  height: 26.6666666667vw;
}
@media screen and (min-width: 375px) {
  #aboutYJNews .banner-list ul li:first-of-type a {
    width: 328px;
    height: 100px;
    border-radius: 15px;
    border-width: 1px;
  }
}

#infoPoint {
  color: var(--color-FNM-black);
}
#infoPoint h2 {
  text-align: center;
  font-size: 4.5333333333vw;
  font-weight: 600;
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 375px) {
  #infoPoint h2 {
    font-size: 17px;
    margin-bottom: 12px;
  }
}
#infoPoint .contents-block__lead {
  margin-bottom: 8.5333333333vw;
}
@media screen and (min-width: 375px) {
  #infoPoint .contents-block__lead {
    margin-bottom: 32px;
  }
}
#infoPoint .pic-list ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8.5333333333vw 4.2666666667vw;
  width: 100%;
  max-width: 87.4666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  #infoPoint .pic-list ul {
    gap: 32px 16px;
    max-width: 343px;
  }
}
#infoPoint .pic-list ul li {
  width: 100%;
  border: 0.5333333333vw solid #1A95D3;
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  #infoPoint .pic-list ul li {
    border-width: 2px;
  }
}
#infoPoint .pic-list ul li img {
  width: 100%;
  height: 100%;
}

.nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    overflow: hidden;
    transition: width 0.4s ease;
    right: calc(50% - 250px);
    overflow: visible;
  }
}
@media screen and (orientation: landscape) and (pointer: coarse) and (max-width: 932px) {
  .nav {
    display: none !important;
  }
}
.nav__menu {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  background: rgba(var(--color-white-rgb), 0.7);
  overflow: scroll;
  width: 268px;
  margin-left: -134px;
  padding: 0 36px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.nav__menu::-webkit-scrollbar {
  display: none;
}
.nav__menu .anchor-link {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(var(--color-black-rgb), 0.1);
  padding: 20px 0;
}
.nav__menu .anchor-link:first-of-type {
  border-top: 1px solid rgba(var(--color-black-rgb), 0.1);
}
.nav__menu .anchor-link a {
  color: var(--color-FNM-gray-dark);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5em;
}
.nav__menu .sns {
  position: relative;
  z-index: 0;
}
.nav__menu .sns ul {
  position: inherit;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  z-index: 1;
}
.nav__menu .sns ul li {
  width: 24px;
  height: 24px;
}
.nav__menu .sns ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (hover: hover) {
  .nav__menu .sns ul li a:hover {
    opacity: 1 !important;
  }
}
.nav__menu .sns ul li a img {
  display: block;
  width: 100%;
  height: 100%;
}
.nav__menu .sns > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 209px;
  height: 76px;
  z-index: 0;
}

.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 (orientation: landscape) and (pointer: coarse) and (max-width: 932px) {
  .fix-item {
    right: 0 !important;
  }
}
@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;
}

.plan-logo {
  text-align: center;
  margin: 0 0 20px;
}
.plan-logo img {
  height: 17.6vw;
}
@media screen and (min-width: 375px) {
  .plan-logo img {
    height: 66px;
  }
}

.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;
}

.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);
    }
  }
}/*# sourceMappingURL=style.css.map */