@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+HarunoUmi:wght@400;500;700&display=swap");
.poyon {
  animation-name: poyon;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.2, 2, 0.6, 0.6);
  animation-fill-mode: both;
}

.boyon {
  animation-name: boyon;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.2, 2, 0.6, 0.6);
  animation-fill-mode: both;
}

@keyframes boyon {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes poyon {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.98);
    opacity: 1;
  }
}
@keyframes rotation1 {
  0% {
    transform: translateX(90%) rotate(0);
  }
  100% {
    transform: translateX(90%) rotate(-360deg);
  }
}
@keyframes rotation2 {
  0% {
    transform: translateY(-50%) translateX(90%) rotate(0);
  }
  100% {
    transform: translateY(-50%) translateX(90%) rotate(-360deg);
  }
}
@keyframes rotation3 {
  0% {
    transform: translateX(90%) rotate(0);
  }
  100% {
    transform: translateX(90%) rotate(-360deg);
  }
}
.simpleY {
  opacity: 0;
  transform: translateY(min(1.3227513228vw, 20px));
  will-change: transform, opacity;
  transition: 0.8s cubic-bezier(0.18, 0.89, 0.32, 1.27);
  transition-delay: 0.2s;
}
.simpleY.active {
  opacity: 1;
  transform: translateY(0);
}

.simpleX {
  opacity: 0;
  transform: translateX(max(-1.3227513228vw, -20px));
  transition: 0.4s ease-in-out;
  will-change: transform, opacity;
}
.simpleX.active {
  opacity: 1;
  transform: translateX(0);
}

.slideX {
  clip-path: inset(0% 100% 0% 0% round min(1.3227513228vw, 20px));
  transform: translateX(max(-2.6455026455vw, -40px));
  transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  will-change: transform, opacity;
  opacity: 0;
}
.slideX.active {
  clip-path: inset(0 0 0 0% round min(1.3227513228vw, 20px));
  transform: translateX(0);
  opacity: 1;
}

.slideX_nbr {
  clip-path: inset(0% 100% 0% 0%);
  transform: translateX(max(-2.6455026455vw, -40px));
  transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  will-change: transform, opacity;
  opacity: 0;
}
.slideX_nbr.active {
  clip-path: inset(0 0 0 0%);
  transform: translateX(0);
  opacity: 1;
}

.slideX_nbr_load {
  clip-path: inset(0% 100% 0% 0%);
  transform: translateX(max(-2.6455026455vw, -40px));
  transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  will-change: transform, opacity;
  opacity: 0;
}
.slideX_nbr_load.active {
  clip-path: inset(0 0 0 0%);
  transform: translateX(0);
  opacity: 1;
}

:root {
  --small_pc:vw(13);
  --base_pc:vw(15);
  --h2_pc:vw(15);
  --h3_pc:vw(15);
  --h4_pc:vw(15);
  --h5_pc:vw(15);
  --small_sp:13px;
  --base_sp:15px;
  --h2_sp:15px;
  --h3_sp:15px;
  --h4_sp:15px;
  --h5_sp:15px;
}

@font-face {
  font-family: "dinb";
  src: url("../fonts/DINNLTP-B.otf") format("otf"), url("../fonts/DINNLTP-B.woff") format("woff"), url("../fonts/DINNLTP-B.woff2") format("woff2");
}
@font-face {
  font-family: "dinm";
  src: url("../fonts/DINNLTP-M.otf") format("otf"), url("../fonts/DINNLTP-M.woff") format("woff"), url("../fonts/DINNLTP-M.woff2") format("woff2");
}
.loader {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  position: fixed;
  background-color: rgb(255, 255, 255);
  left: 0vw;
  top: 0;
  z-index: 40002;
  text-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: all 600ms ease-in-out;
  will-change: opacity, transform;
  transition-delay: 1s;
}
.loader .title {
  font-weight: 600;
  font-size: 1.9841269841vw;
  color: rgb(230, 0, 11);
  text-align: center;
  transition: 0.8s;
  will-change: filter, opacity, transform;
}
.loader .title span {
  color: rgb(6, 74, 1);
}
.loader .title svg {
  height: 30px;
  width: auto;
}
@media screen and (max-width: 820px) {
  .loader .title svg {
    width: 70vw;
    height: auto;
  }
}
.loader.active {
  opacity: 0;
  pointer-events: none;
}
.loader.active .title {
  filter: blur(5px);
  opacity: 0;
  transform: scale(1.2);
  transform-origin: center center;
}

@media print {
  html,
  body {
    top: 0 !important;
    left: 0 !important;
    width: 200mm !important;
    overflow-x: hidden;
    size: A4;
    margin: 0;
    padding: 0;
    width: 100% !important;
  }
}

.alert {
  width: 100vw;
  height: 100svh;
  background-color: rgb(135, 0, 29);
  font-size: 14px;
  color: #F0D475;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  pointer-events: none;
}
.alert.active {
  display: flex;
  pointer-events: all;
}

.mainvisual {
  width: 100vw;
  height: auto;
  min-height: 100svh;
  background: radial-gradient(circle at center, #c3e3ee, #579cb2);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  align-content: space-evenly;
  flex-direction: column;
  gap: 10vh;
}
.mainvisual:after {
  content: "";
  background-image: url(../images/svg/mvbg.webp);
  background-size: 150vw 50vw;
  background-position: left -22vw bottom -32svh;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .mainvisual:after {
    background-size: 150vw 50vw;
    background-position: left -25vw bottom -7svh;
  }
}
.mainvisual h1 {
  font-family: "futura-100", sans-serif;
  font-style: normal;
  font-weight: 600;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  gap: 1.9841269841vw;
  row-gap: 4.6296296296vw;
  position: relative;
  z-index: 5;
}
.mainvisual h1 .logo {
  font-size: 5.291005291vw;
  color: white;
  text-shadow: 0 0 35px #579cb2;
  position: relative;
}
.mainvisual h1 .logo:before {
  content: attr(data-attr);
  font-size: 20%;
  color: white;
  text-shadow: 0 0 35px #579cb2;
  text-shadow: 0 0 20px #579cb2;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, 0%);
  z-index: -1;
}
.mainvisual h1 .place {
  font-size: 6.6137566138vw;
  color: white;
  text-shadow: 0 0 35px #579cb2;
  text-shadow: 0 0 20px #579cb2;
}
.mainvisual h1 .ribbon {
  font-size: 0;
  background-image: url(../images/svg/xmasdays.svg);
  aspect-ratio: 465/120;
  background-size: auto 7.9365079365vw;
  background-position: center;
  height: 7.9365079365vw;
  display: block;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .mainvisual h1 {
    gap: 10px;
  }
  .mainvisual h1 .logo {
    font-size: 13vw;
  }
  .mainvisual h1 .place {
    font-size: 13vw;
  }
  .mainvisual h1 .ribbon {
    height: 60px;
  }
}
.mainvisual .board {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 2.6455026455vw;
  position: relative;
  z-index: 5;
  padding: 1.9841269841vw;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1.5873015873vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  text-shadow: 1px 1px 0 white;
  opacity: 0;
  transform: translateY(20%);
  transition: all 1000ms cubic-bezier(0.495, 0.235, 0.415, 0.96); /* custom */
  transition-timing-function: cubic-bezier(0.495, 0.235, 0.415, 0.96); /* custom */
  will-change: opacity, transform;
}
.mainvisual .board.active {
  opacity: 1;
  transform: translateY(0);
}
.mainvisual .board:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5873015873vw;
  padding: 3px;
  background: linear-gradient(135deg, #FFF8DC, #FFE4B5, #6f4d18, #dab470, #553b1b, #8e8031);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .mainvisual .board:before {
    border-radius: 24px;
  }
}
.mainvisual .board h2 {
  font-size: 3.9682539683vw;
  color: #2f6b4d;
  font-family: "futura-100", sans-serif;
  font-style: normal;
  font-weight: 600;
}
.mainvisual .board p {
  font-size: 1.0582010582vw;
  color: #7b3e00;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
  width: 100%;
  display: block;
}
@media screen and (max-width: 480px) {
  .mainvisual .board {
    border-radius: 24px;
    max-width: 90vw;
    padding: 30px 20px;
    gap: 20px;
    margin-top: 5svh;
  }
  .mainvisual .board h2 {
    font-size: 7vw;
  }
  .mainvisual .board p {
    font-size: 4vw;
  }
  .mainvisual .board p br {
    display: none;
  }
}
.mainvisual .snow {
  position: absolute;
  z-index: 1;
  will-change: transform;
  --translate-x: 0px;
  --translate-y: 0px;
  transition: transform 0.3s ease-out;
  transform: translate(var(--translate-x), var(--translate-y)) rotate(0deg);
}
.mainvisual .snow.num1 {
  width: 19.8412698413vw;
  aspect-ratio: 1/1;
  left: 10vw;
  top: 10vw;
  filter: blur(1.5px);
  animation-duration: 180s;
  animation-direction: normal;
}
@media screen and (max-width: 480px) {
  .mainvisual .snow.num1 {
    top: 10svh;
    left: 4vw;
  }
}
.mainvisual .snow.num2 {
  width: 26.455026455vw;
  aspect-ratio: 1/1;
  right: -13.2275132275vw;
  top: -7.9365079365vw;
  filter: blur(5px);
  animation-duration: 240s;
  animation-direction: reverse;
}
@media screen and (max-width: 480px) {
  .mainvisual .snow.num2 {
    top: 10svh;
    filter: blur(2px);
  }
}
.mainvisual .snow.num3 {
  width: 38.3597883598vw;
  aspect-ratio: 1/1;
  right: 20vw;
  top: -1.3227513228vw;
  filter: blur(4.5px);
  animation-duration: 180s;
  animation-direction: normal;
}
@media screen and (max-width: 480px) {
  .mainvisual .snow.num3 {
    top: 10svh;
    filter: blur(2px);
  }
}
.mainvisual .snow.num4 {
  width: 3.9682539683vw;
  aspect-ratio: 1/1;
  left: 30vw;
  top: 1.3227513228vw;
  filter: blur(2px);
  animation-duration: 120s;
  animation-direction: reverse;
}
@media screen and (max-width: 480px) {
  .mainvisual .snow.num4 {
    top: 4svh;
    filter: blur(2px);
    width: 60px;
  }
}
.mainvisual .snow.num5 {
  width: 26.455026455vw;
  aspect-ratio: 1/1;
  left: 10vw;
  bottom: 10svh;
  filter: blur(1px);
  animation-duration: 240s;
  animation-direction: normal;
}
.mainvisual .snow.num6 {
  width: 18.5185185185vw;
  aspect-ratio: 1/1;
  right: 5vw;
  bottom: 10svh;
  filter: blur(2px);
  animation-duration: 180s;
  animation-direction: reverse;
}
@keyframes snowRotate {
  from {
    transform: translate(var(--translate-x), var(--translate-y)) rotate(0deg);
  }
  to {
    transform: translate(var(--translate-x), var(--translate-y)) rotate(360deg);
  }
}

.ovwerwrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
  max-width: 100vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ovwerwrap::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.ovwerwrap::-webkit-scrollbar-track {
  display: none;
}
.ovwerwrap::-webkit-scrollbar-thumb {
  display: none;
}

.content {
  width: 100%;
  height: auto;
  position: sticky;
  top: 0;
  background-color: transparent;
  padding-top: 8svh;
}
@media screen and (max-width: 820px) {
  .content {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .content {
    position: relative;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding-top: 30px;
    padding-bottom: 60px;
    min-height: 0;
  }
}
.content .conth {
  width: 100%;
  height: 8.664021164vw;
  padding: 0;
  margin: 0;
  font-size: 0;
  background-size: 13.2936507937vw 8.664021164vw;
  background-position: center top;
}
@media screen and (max-width: 820px) {
  .content .conth {
    height: 100px;
    background-size: auto 100px;
  }
}
.content .spacer {
  width: 100%;
  height: 100svh;
  background: transparent;
}

.areamap {
  font-family: "Noto Sans JP", sans-serif;
  min-height: 100svh;
  position: relative;
  padding-bottom: 15svh;
  height: auto;
  background-color: #fff;
  background-image: url(../images/magareabg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
}
.areamap .conth {
  width: 100%;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  margin-bottom: 10svh;
}
@media screen and (max-width: 480px) {
  .areamap .conth {
    margin-bottom: 0;
  }
}
.areamap .conth:after {
  content: "";
  width: 45vw;
  height: auto;
  display: block;
  background-image: url(../images/event_areamap.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 58/13;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 480px) {
  .areamap .conth:after {
    background-size: contain;
    width: 100vw;
  }
}
.areamap .infotxtbox {
  width: 40%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .areamap .infotxtbox {
    width: 100%;
  }
}
.areamap .mapbox {
  width: 55%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.areamap .mapbox img {
  width: 80%;
}
@media screen and (max-width: 480px) {
  .areamap .mapbox {
    width: 100%;
  }
  .areamap .mapbox img {
    width: 100%;
  }
}
.areamap dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 15px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1098039216);
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.areamap dl:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5873015873vw;
  padding: 3px;
  background: linear-gradient(135deg, #FFF8DC, #FFE4B5, #6f4d18, #dab470, #553b1b, #8e8031);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  border-radius: 15px;
}
@media screen and (max-width: 480px) {
  .areamap dl {
    width: 90%;
    border-radius: 24px;
  }
  .areamap dl:before {
    border-radius: 24px;
  }
}
.areamap dl dt {
  font-size: 1.5873015873vw;
  font-weight: bold;
  color: #2f6b4d;
  text-shadow: 1px 1px 0px white;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: center;
  flex-direction: column;
  gap: 0.3306878307vw;
  position: relative;
  padding-left: 15px;
}
@media screen and (max-width: 1040px) {
  .areamap dl dt {
    font-size: 20px;
    gap: 5px;
  }
}
.areamap dl dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #FFD700, #FFA500, #FFD700);
  border-radius: 10px;
}
.areamap dl dt span {
  font-size: 50%;
  color: #8b0000;
  text-shadow: none;
}
.areamap dl dd {
  font-size: 0.9259259259vw;
  color: #7b3e00;
  line-height: 1.6em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  text-align: left;
  width: 100%;
  display: block;
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  text-shadow: 1px 1px 0px white;
  font-weight: bold;
  margin-bottom: 10px;
}
.areamap dl dd span {
  padding-left: 0.9259259259vw;
}
@media screen and (max-width: 1040px) {
  .areamap dl dd {
    font-size: 12px;
  }
}

.informations {
  font-family: "Noto Sans JP", sans-serif;
  min-height: 100svh;
  position: relative;
  height: auto;
  max-width: 100vw;
  padding-top: 6.6137566138vw;
}
.informations .snow {
  position: absolute;
  z-index: 4;
  will-change: transform;
  --translate-x: 0px;
  --translate-y: 0px;
  transition: transform 0.3s ease-out;
  transform: translate(var(--translate-x), var(--translate-y)) rotate(0deg);
}
.informations .snow.num1 {
  width: 19.8412698413vw;
  aspect-ratio: 1/1;
  left: 10vw;
  top: 30%;
  filter: blur(2.8px);
  animation-duration: 360s;
  animation-direction: normal;
}
.informations .snow.num2 {
  width: 9.9206349206vw;
  aspect-ratio: 1/1;
  right: 3.3068783069vw;
  top: calc(40% + 50px);
  filter: blur(2px);
  animation-duration: 360s;
  animation-direction: reverse;
}
.informations .snow.num3 {
  width: 26.455026455vw;
  aspect-ratio: 1/1;
  right: 20vw;
  top: 1.9841269841vw;
  filter: blur(2.5px);
  animation-duration: 360s;
  animation-direction: normal;
}
.informations .snow.num4 {
  width: 3.9682539683vw;
  aspect-ratio: 1/1;
  left: 30vw;
  top: 20%;
  filter: blur(2px);
  animation-duration: 120s;
  animation-direction: reverse;
}
@media screen and (max-width: 480px) {
  .informations .snow.num4 {
    top: 4svh;
    filter: blur(2px);
    width: 60px;
  }
}
.informations .snow.num5 {
  width: 26.455026455vw;
  aspect-ratio: 1/1;
  left: 10vw;
  top: 60%;
  filter: blur(4px);
  animation-duration: 240s;
  animation-direction: normal;
}
.informations .snow.num6 {
  width: 18.5185185185vw;
  aspect-ratio: 1/1;
  right: 5vw;
  top: 70%;
  filter: blur(2px);
  animation-duration: 180s;
  animation-direction: reverse;
}
@media screen and (max-width: 480px) {
  .informations .snow.num1 {
    top: 30svh;
  }
  .informations .snow.num3 {
    top: 8svh;
  }
}
.informations .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to top, #0c0202, #c1272d, #5a0202, #8f0d0d);
  backdrop-filter: blur(10px);
}
.informations:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(../images/spark.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: lighten;
}
.informations .conth {
  width: 100%;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.informations .conth:after {
  content: "";
  width: 45vw;
  height: auto;
  display: block;
  background-image: url(../images/event_informations.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 58/13;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 480px) {
  .informations .conth:after {
    background-size: contain;
    width: 100vw;
  }
}
.informations .date {
  font-family: "futura-100", sans-serif;
  font-style: normal;
  font-size: 4.2989417989vw;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 3.9682539683vw;
  width: 100%;
  text-align: left;
  padding-left: 0vw;
  margin-top: 60px;
  margin-bottom: 2.6455026455vw;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  gap: 30px;
}
@media screen and (max-width: 480px) {
  .informations .date {
    font-size: 40px;
    margin-top: 20px;
  }
}
.informations .infoslide, .informations .infoslide2 {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  padding-left: 9.2592592593vw;
  position: relative;
  margin-top: 3.9682539683vw;
  z-index: 5;
}
@media screen and (max-width: 820px) {
  .informations .infoslide, .informations .infoslide2 {
    padding-left: 5vw;
    height: auto;
    top: 24svh;
    margin-top: -60px;
  }
}
@media screen and (max-width: 820px) {
  .informations .infoslide, .informations .infoslide2 {
    padding-left: 5vw;
    height: auto;
    position: relative;
    top: 0;
    margin-top: 20px;
  }
}
.informations .infoslide .swiper-wrapper, .informations .infoslide2 .swiper-wrapper {
  height: auto;
}
.informations .infoslide .slidecard, .informations .infoslide2 .slidecard {
  width: auto;
  height: auto;
  padding: 0 1.3227513228vw;
  background-color: transparent;
  color: #fff;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: column;
  gap: 1.3227513228vw;
}
.informations .infoslide .slidecard .imgbox, .informations .infoslide2 .slidecard .imgbox {
  border-radius: 0.9920634921vw;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
  position: relative;
  flex-shrink: 0;
  background-color: rgb(144, 6, 6);
}
.informations .infoslide .slidecard .imgbox img, .informations .infoslide2 .slidecard .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.informations .infoslide .slidecard .dateime, .informations .infoslide2 .slidecard .dateime {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: column;
  gap: 0.6613756614vw;
  width: 100%;
  border-top: 1px dashed rgba(255, 255, 255, 0.3294117647);
  padding-top: 10px;
}
.informations .infoslide .slidecard .dateime dl, .informations .infoslide2 .slidecard .dateime dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.6613756614vw;
}
.informations .infoslide .slidecard span, .informations .infoslide .slidecard dt, .informations .infoslide .slidecard dd, .informations .infoslide2 .slidecard span, .informations .infoslide2 .slidecard dt, .informations .infoslide2 .slidecard dd {
  font-size: 1.0582010582vw;
  line-height: 1.4em;
  color: white;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 480px) {
  .informations .infoslide .slidecard span, .informations .infoslide .slidecard dt, .informations .infoslide .slidecard dd, .informations .infoslide2 .slidecard span, .informations .infoslide2 .slidecard dt, .informations .infoslide2 .slidecard dd {
    font-size: 12px;
  }
}
.informations .infoslide .slidecard p, .informations .infoslide2 .slidecard p {
  font-size: 1.0582010582vw;
  line-height: 1.4em;
  color: white;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 480px) {
  .informations .infoslide .slidecard, .informations .infoslide2 .slidecard {
    width: 90vw;
    align-content: center;
    border-radius: 15px;
    padding: 20px;
    gap: 20px;
  }
  .informations .infoslide .slidecard .imgbox, .informations .infoslide2 .slidecard .imgbox {
    border-radius: 15px;
  }
  .informations .infoslide .slidecard img, .informations .infoslide2 .slidecard img {
    width: 78vw;
    aspect-ratio: 31/24;
    object-fit: cover;
    height: auto;
  }
}
.informations .infoslide .textitem, .informations .infoslide2 .textitem {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: column;
  gap: 0.9920634921vw;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .informations .infoslide .textitem, .informations .infoslide2 .textitem {
    gap: 15px;
  }
}
.informations .infoslide .textitem > dt, .informations .infoslide2 .textitem > dt {
  font-size: 1.3227513228vw;
  line-height: 1.4em;
  border-bottom: 2px solid white;
  padding-bottom: 0.6613756614vw;
  margin-bottom: 0.6613756614vw;
  width: 100%;
}
.informations .infoslide .textitem > dt span, .informations .infoslide2 .textitem > dt span {
  font-size: 70%;
}
@media screen and (max-width: 820px) {
  .informations .infoslide .textitem > dt, .informations .infoslide2 .textitem > dt {
    font-size: 20px;
    padding-bottom: 10px;
  }
}
.informations .infoslide .textitem dd, .informations .infoslide2 .textitem dd {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  flex-direction: column;
  gap: 0.9920634921vw;
  line-height: 1.8em;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .informations .infoslide .textitem dd, .informations .infoslide2 .textitem dd {
    gap: 10px;
  }
}
.informations .infoslide .textitem dd dl, .informations .infoslide2 .textitem dd dl {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0.6613756614vw;
}
@media screen and (max-width: 820px) {
  .informations .infoslide .textitem dd dl, .informations .infoslide2 .textitem dd dl {
    gap: 10px;
  }
}
.informations .infoslide .textitem dd dt, .informations .infoslide .textitem dd dd, .informations .infoslide2 .textitem dd dt, .informations .infoslide2 .textitem dd dd {
  font-size: 0.7936507937vw;
  line-height: 1.8em;
}
@media screen and (max-width: 820px) {
  .informations .infoslide .textitem dd dt, .informations .infoslide .textitem dd dd, .informations .infoslide2 .textitem dd dt, .informations .infoslide2 .textitem dd dd {
    font-size: 12px;
  }
}
.informations .infoslide .textitem dd dt, .informations .infoslide2 .textitem dd dt {
  flex: 0 0 auto;
}
.informations .infoslide .textitem dd dd, .informations .infoslide2 .textitem dd dd {
  flex: 1;
}
.informations .infoslide .textitem dd p, .informations .infoslide2 .textitem dd p {
  font-size: 0.7936507937vw;
  line-height: 1.8em;
  width: 100%;
  display: block;
}
.informations .infoslide .textitem dd p span, .informations .infoslide2 .textitem dd p span {
  font-size: 80%;
  padding-left: 0.7936507937vw;
}
.informations .infoslide .textitem dd p.maintxt, .informations .infoslide2 .textitem dd p.maintxt {
  width: 100%;
  font-size: 0.9259259259vw;
  font-weight: bold;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3294117647);
  padding-bottom: 0.6613756614vw;
}
@media screen and (max-width: 480px) {
  .informations .infoslide .textitem dd p.maintxt, .informations .infoslide2 .textitem dd p.maintxt {
    font-size: 3vw;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 820px) {
  .informations .infoslide .textitem dd p, .informations .infoslide2 .textitem dd p {
    font-size: 2.5vw;
  }
}
.informations .infoslide .textitem dd a, .informations .infoslide2 .textitem dd a {
  color: rgb(212, 155, 42);
  font-weight: bold;
  font-size: 0.7936507937vw;
  line-height: 1.6em;
  display: inline-block;
  border-radius: 10px;
  text-align: left;
  position: relative;
  text-decoration: underline;
  transition: 0.2s;
}
.informations .infoslide .textitem dd a:before, .informations .infoslide2 .textitem dd a:before {
  content: "▶";
}
.informations .infoslide .textitem dd a:hover, .informations .infoslide2 .textitem dd a:hover {
  filter: brightness(1.2);
}
@media screen and (max-width: 820px) {
  .informations .infoslide .textitem dd a, .informations .infoslide2 .textitem dd a {
    font-size: 12px;
  }
}
.informations .infoslide .swiperui, .informations .infoslide2 .swiperui {
  width: auto;
  height: 60px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  margin-top: 0px;
  gap: 15px;
  position: relative;
  margin-top: 10px;
}
.informations .infoslide .swiperui > *, .informations .infoslide2 .swiperui > * {
  margin: 0;
  padding: 0;
  opacity: 1;
}
.informations .infoslide .swiper-scrollbar, .informations .infoslide2 .swiper-scrollbar {
  width: 70.7671957672vw;
  height: 10px;
  border-radius: 0.6613756614vw;
  position: relative;
  background-color: #D9D9D9 !important;
}
.informations .infoslide .swiper-scrollbar-drag, .informations .infoslide2 .swiper-scrollbar-drag {
  background-color: #1F2D54;
  border-radius: 0.3306878307vw;
}
.informations .infoslide .swiper-button-prev, .informations .infoslide .swiper-button-next, .informations .infoslide2 .swiper-button-prev, .informations .infoslide2 .swiper-button-next {
  width: 2.6455026455vw !important;
  height: 2.6455026455vw !important;
  min-width: 50px;
  min-height: 50px;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
  border-radius: 1.9841269841vw;
  display: flex !important;
  justify-content: center;
  align-items: center;
  align-content: center;
  cursor: pointer;
  position: relative;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  transition: 0.4s;
}
@media screen and (max-width: 480px) {
  .informations .infoslide .swiper-button-prev, .informations .infoslide .swiper-button-next, .informations .infoslide2 .swiper-button-prev, .informations .infoslide2 .swiper-button-next {
    width: 10vw !important;
    height: 10vw !important;
    min-width: 0;
    min-height: 0;
    border-radius: 30px;
  }
}
.informations .infoslide .swiper-button-next, .informations .infoslide2 .swiper-button-next {
  background-color: #ffffff;
  position: relative;
}
.informations .infoslide .swiper-button-next::before, .informations .infoslide2 .swiper-button-next::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.9841269841vw;
  padding: 2px;
  background: linear-gradient(135deg, #FFF8DC, #FFE4B5, #6f4d18, #dab470, #553b1b, #8e8031);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .informations .infoslide .swiper-button-next::before, .informations .infoslide2 .swiper-button-next::before {
    border-radius: 30px;
  }
}
.informations .infoslide .swiper-button-next:after, .informations .infoslide2 .swiper-button-next:after {
  content: "";
  width: 1.3227513228vw;
  height: 1.3227513228vw;
  background-image: url(../images/svg/sarrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(5%);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .informations .infoslide .swiper-button-next:after, .informations .infoslide2 .swiper-button-next:after {
    width: 30px;
    height: 30px;
    background-size: 10px;
  }
}
.informations .infoslide .swiper-button-prev, .informations .infoslide2 .swiper-button-prev {
  background-color: #ffffff;
  position: relative;
}
.informations .infoslide .swiper-button-prev::before, .informations .infoslide2 .swiper-button-prev::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.9841269841vw;
  padding: 2px;
  background: linear-gradient(135deg, #FFF8DC, #FFE4B5, #6f4d18, #dab470, #553b1b, #8e8031);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .informations .infoslide .swiper-button-prev::before, .informations .infoslide2 .swiper-button-prev::before {
    border-radius: 30px;
  }
}
.informations .infoslide .swiper-button-prev:after, .informations .infoslide2 .swiper-button-prev:after {
  content: "";
  width: 1.3227513228vw;
  height: 1.3227513228vw;
  background-image: url(../images/svg/sarrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg) translateX(5%);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .informations .infoslide .swiper-button-prev:after, .informations .infoslide2 .swiper-button-prev:after {
    width: 30px;
    height: 30px;
    background-size: 10px;
  }
}
.informations .infoslide .swiper-button-disabled, .informations .infoslide2 .swiper-button-disabled {
  background-color: rgba(217, 217, 217, 0.2509803922) !important;
  cursor: default !important;
}
.informations .infoslide .swiper-button-disabled:after, .informations .infoslide2 .swiper-button-disabled:after {
  filter: grayscale(1) brightness(50);
  opacity: 0.2;
}
@media screen and (max-width: 480px) {
  .informations .infoslide .swiperui, .informations .infoslide2 .swiperui {
    height: 50px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    margin-top: 0px;
    gap: 15px;
  }
  .informations .infoslide .swiperui > *, .informations .infoslide2 .swiperui > * {
    margin: 0;
    padding: 0;
    opacity: 1;
  }
}
.informations .relatedtitle {
  color: white;
  font-size: 2.6455026455vw;
  font-weight: bold;
  position: relative;
  z-index: 5;
  display: block;
  text-align: center;
  margin-top: 3.9682539683vw;
}
@media screen and (max-width: 820px) {
  .informations .relatedtitle {
    font-size: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
.informations .board {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 2.6455026455vw;
  position: relative;
  z-index: 5;
  padding: 3.3068783069vw;
  border-radius: 1.5873015873vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(17px);
  opacity: 0;
  transform: translateY(20%);
  transition: all 1000ms cubic-bezier(0.495, 0.235, 0.415, 0.96); /* custom */
  transition-timing-function: cubic-bezier(0.495, 0.235, 0.415, 0.96); /* custom */
  will-change: opacity, transform;
}
@media screen and (max-width: 480px) {
  .informations .board {
    border-radius: 24px;
  }
}
.informations .board.active {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 820px) {
  .informations .board {
    padding: 30px 15px 25px;
    border-radius: 15px;
    gap: 20px;
  }
}
.informations .board:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5873015873vw;
  padding: 2px;
  background: linear-gradient(135deg, #FFF8DC, #FFE4B5, #6f4d18, #dab470, #553b1b, #8e8031);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .informations .board:before {
    border-radius: 24px;
  }
}
.informations .board h2 {
  font-size: 1.9841269841vw;
  font-family: "futura-100", sans-serif;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  color: white;
  line-height: 1.6;
}
@media screen and (max-width: 820px) {
  .informations .board h2 {
    font-size: 6vw;
  }
}
.informations .board dl {
  font-size: 1.0582010582vw;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1.6;
  text-align: left;
  width: 100%;
  display: block;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
@media screen and (max-width: 820px) {
  .informations .board dl {
    font-size: 3.6vw;
  }
}
.informations .board dl dt {
  width: auto;
}
.informations .board dl dd {
  flex: 1;
}
.informations .relatedwrap {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 2.6455026455vw;
  overflow: hidden;
  padding-bottom: 30svh;
}
.informations .relatedwrap .snow {
  position: absolute;
  z-index: 1;
  will-change: transform;
  --translate-x: 0px;
  --translate-y: 0px;
  transition: transform 0.3s ease-out;
  transform: translate(var(--translate-x), var(--translate-y)) rotate(0deg);
}
.informations .relatedwrap .snow.num1 {
  width: 19.8412698413vw;
  aspect-ratio: 1/1;
  left: 10vw;
  top: 10vw;
  filter: blur(2.8px);
  animation-duration: 360s;
  animation-direction: normal;
}
.informations .relatedwrap .snow.num2 {
  width: 9.9206349206vw;
  aspect-ratio: 1/1;
  right: 3.3068783069vw;
  top: 3.3068783069vw;
  filter: blur(2px);
  animation-duration: 360s;
  animation-direction: reverse;
}
.informations .relatedwrap .snow.num3 {
  width: 26.455026455vw;
  aspect-ratio: 1/1;
  right: 20vw;
  top: 1.9841269841vw;
  filter: blur(2.5px);
  animation-duration: 360s;
  animation-direction: normal;
}
@media screen and (max-width: 480px) {
  .informations .relatedwrap .snow.num1 {
    top: 30svh;
  }
  .informations .relatedwrap .snow.num3 {
    top: 8svh;
  }
}
.informations .relatedwrap:after {
  content: "";
  background-image: url(../images/svg/mvbg.webp);
  background-size: 150vw 50vw;
  background-position: left -22vw bottom -32svh;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .informations .relatedwrap:after {
    background-size: 150vw 50vw;
    background-position: left -22vw bottom -10svh;
  }
}
@media screen and (max-width: 480px) {
  .informations .relatedwrap {
    padding-bottom: 10svh;
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .informations {
    height: auto;
    min-height: 100svh;
    margin-top: 0px;
    padding-bottom: 0px;
  }
}

.attention {
  height: auto;
  min-height: 100svh;
  background-color: rgb(135, 0, 29);
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  flex-direction: column;
  padding-top: 3.9682539683vw;
  position: relative;
  top: 0;
}
@media screen and (max-width: 480px) {
  .attention {
    min-height: 0;
    height: auto;
    margin-top: -20px;
    position: relative;
  }
}
.attention h2 {
  font-size: 2.1164021164vw;
  font-weight: bold;
  color: white;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 820px) {
  .attention h2 {
    font-size: 16px;
    padding-top: 20px;
  }
}
.attention .inner {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 3.3068783069vw;
  overflow: hidden;
  pointer-events: none;
  position: relative;
  z-index: 5;
  height: 100svh;
}
.attention .inner.scrollable {
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: all;
}
@media screen and (max-width: 820px) {
  .attention .inner {
    padding-bottom: 60px;
    gap: 20px;
  }
}
@media screen and (max-width: 820px) {
  .attention .inner {
    height: auto;
    padding-bottom: 0px;
    gap: 20px;
  }
}
.attention .txtareawrap {
  width: 82.0105820106vw;
  height: 33.0687830688vw;
  flex-shrink: 0;
  padding: 1.9841269841vw 1.3227513228vw 1.9841269841vw 3.3068783069vw;
  border-radius: 0.3306878307vw;
  box-sizing: border-box;
  background: #BA1735;
  position: relative;
}
.attention .txtareawrap.short {
  height: 32.0767195767vw;
}
.attention .txtareawrap:after {
  content: "";
  height: 3.9682539683vw;
  width: 95%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, #BA1735 50%, transparent 100%);
  z-index: 5;
  border-radius: 0.3306878307vw;
}
@media screen and (max-width: 820px) {
  .attention .txtareawrap:after {
    height: 60px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 820px) {
  .attention .txtareawrap {
    width: 90vw;
    height: 127vw;
    border-radius: 5px;
  }
  .attention .txtareawrap.short {
    height: 127vw;
  }
}
.attention .inwrapper {
  width: 100%;
  height: 100%;
  padding-left: 1.3227513228vw;
  padding-top: 1.3227513228vw;
  scrollbar-gutter: stable; /* 常にバー分の余白を確保 */
  /* SimpleBar のバーを常に表示 */
  /* hover状態でしか表示されないルールを無効化 */
  /* スクロールバー本体を常時可視に */
}
.attention .inwrapper [data-simplebar] {
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE, Edge (旧) */
}
.attention .inwrapper .simplebar-scrollbar::before {
  background: #F24061;
  border-radius: 4px;
  width: 10px;
  left: 0;
  opacity: 1 !important;
}
@media screen and (max-width: 820px) {
  .attention .inwrapper .simplebar-scrollbar::before {
    width: 5px;
  }
}
.attention .inwrapper .simplebar-track.simplebar-vertical {
  width: 10px;
  background: #9A0C26;
  border-radius: 10px;
  right: 0vw;
  height: 29.1005291005vw;
}
@media screen and (max-width: 820px) {
  .attention .inwrapper .simplebar-track.simplebar-vertical {
    width: 5px;
    height: 100%;
  }
}
.attention .inwrapper .simplebar-track {
  opacity: 1 !important;
  visibility: visible !important;
}
.attention .inwrapper .simplebar-track.simplebar-horizontal {
  display: none !important;
}
.attention .inwrapper .simplebar-track.simplebar-vertical,
.attention .inwrapper .simplebar-track.simplebar-horizontal {
  transition: none !important;
}
.attention .inwrapper .simplebar-scrollbar {
  opacity: 1 !important;
  display: block !important;
}
.attention .txarea {
  width: 100%;
  height: 100%;
  font-size: 0.9920634921vw;
  font-weight: normal;
  color: white;
  line-height: 200%;
  font-family: "Inter", sans-serif;
  padding-right: 2.6455026455vw;
  padding-top: 1.3227513228vw;
  padding-bottom: 2.6455026455vw;
}
@media screen and (max-width: 820px) {
  .attention .txarea {
    font-size: 11px;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 480px) {
  .attention .txarea {
    font-size: 11px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
  }
}
.attention .txarea.nolist li {
  list-style: none;
}
.attention .txarea li {
  list-style-type: disc;
}
.attention .txarea li.read {
  list-style: none;
  margin-bottom: 2.6455026455vw;
}
.attention .txarea li.end {
  list-style: none;
  margin-top: 2.6455026455vw;
}
.attention .txarea .os {
  display: block;
  margin: 1.9841269841vw 0;
}
.attention small {
  font-weight: bold;
  font-size: 1.0582010582vw;
  color: white;
  margin-top: 10.9126984127vw;
  margin-bottom: 3.3068783069vw;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .attention small {
    font-size: 14px;
    color: #F0D475;
  }
}
.attention .footinfo {
  width: 100%;
  height: 13.5582010582vw;
  display: block;
  background-image: url(../images/svg/footbuilding.svg);
  background-size: 49.8677248677vw 13.5582010582vw;
  background-repeat: no-repeat;
  background-position: left;
  padding-top: 13.5582010582vw;
  box-sizing: border-box;
  position: relative;
}
.attention .footinfo:after {
  content: "";
  width: 100%;
  height: 2.1825396825vw;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: white;
}

.fixmenu {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  height: 60px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
}
.fixmenu li {
  width: auto;
  height: 60px;
  box-sizing: border-box;
  border-left: 1px solid #212A4E;
  flex-grow: 1;
}
.fixmenu li a {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: white;
  background: #0A112D;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 5px;
  font-size: 11px;
  transition: 0.2s;
}
.fixmenu li a:hover {
  background: #B19552;
}
.fixmenu li a img {
  width: auto;
  height: 25px;
}
@media screen and (max-width: 820px) {
  .fixmenu {
    display: flex;
  }
}

.btn {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3227513228vw;
  display: inline-block;
  width: 21.8253968254vw;
  height: 3.9682539683vw;
  border-radius: 1.9841269841vw;
  line-height: 3.9682539683vw;
  background: linear-gradient(135deg, #8e8031, #FFF8DC, #FFE4B5, #dab470, #8e8031);
  position: relative;
  color: #72361e;
  text-align: center;
  text-decoration: none;
  transition: all 1000ms cubic-bezier(0.74, 0.015, 0.15, 1);
  transition-timing-function: cubic-bezier(0.74, 0.015, 0.15, 1);
  transform: translateY(20px);
  opacity: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  z-index: 5;
  will-change: box-shadow;
}
.btn.active {
  opacity: 1;
  transform: translateY(0px);
}
@media print {
  .btn {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media screen and (max-width: 820px) {
  .btn {
    font-size: 18px;
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 30px;
    flex-shrink: 0;
  }
}
.btn:hover {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0px 12px rgb(245, 240, 227);
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.6);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}
.slidwrap {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.slidwrap .infoslide, .slidwrap .infoslide2 {
  position: sticky !important;
  top: 0px;
}
@media (min-aspect-ratio: 1180/713) {
  .slidwrap .infoslide, .slidwrap .infoslide2 {
    position: static !important;
  }
}
@media (min-aspect-ratio: 1180/713) {
  .slidwrap .spacer {
    height: 0;
  }
  .slidwrap .infoslide, .slidwrap .infoslide2 {
    position: static !important;
  }
}

.spacer {
  height: 10svh;
  width: 100%;
  display: block;
}

.bright {
  border-radius: 5px;
  animation: brights 1s 0s ease infinite;
  -moz-animation: brights 1s 0s ease infinite;
  /* Firefox */
  -webkit-animation: brights 1s 0s ease infinite;
  /* Safari and Chrome */
  -o-animation: brights 1s 0s ease infinite;
  /* Opera */
  display: block;
}

@keyframes brights {
  0%, 100% {
    box-shadow: -0.1vw 0vw 0.1vw #FED128, -0.15vw 0vw 0.2vw #FED128, -0.2vw 0vw 0.2vw #FED128, -0.1vw 0vw 3vw #F0130B, -0.2vw 0vw 3vw #F0130B, -0.4vw 0vw 3vw #F0130B, -0.1vw 0vw 5vw #F0130B, -0.2vw 0vw 5vw #F0130B, -0.4vw 0vw 0.8vw #F0130B, 0.2vw 0vw 10vw #F0130B;
    color: #FED128;
  }
  50% {
    box-shadow: -0.1vw 0vw 0.1vw #705C12, -0.15vw 0vw 0.2vw #705C12, -0.2vw 0vw 0.2vw #705C12, -0.1vw 0vw 0.1vw #5C0704, -0.2vw 0vw 0.1vw #5C0704, -0.4vw 0vw 0.1vw #5C0704, -0.1vw 0vw 0.2vw #5C0704, -0.2vw 0vw 0.2vw #5C0704, -0.4vw 0vw 0.2vw #5C0704, 0.2vw 0vw 0.5vw #5C0704;
    color: #705C12;
  }
}
.bgTicker {
  position: absolute;
  position: relative;
  left: 0;
  transform-origin: center;
  width: 150vw;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: flex-start;
  align-content: flex-start;
  pointer-events: none;
  overflow: visible;
  --ticker-duration:60s;
}
.bgTicker:has(.is-reverse) {
  justify-content: flex-start;
}
.bgTicker .track {
  display: flex;
  width: 200%;
  will-change: transform;
  animation: ticker-x var(--ticker-duration) linear infinite;
  animation-fill-mode: none;
}
.bgTicker .track.is-reverse {
  animation-direction: reverse;
  justify-content: flex-end;
}
.bgTicker ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bgTicker li {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

@keyframes ticker-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}
* {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

a {
  -webkit-tap-highlight-color: rgba(29, 17, 17, 0);
  text-decoration: none;
}

body,
html {
  position: relative;
  caret-color: transparent;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-family: "Noto Sans JP", sans-serif;
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  display: none;
}
body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  display: none;
}

body {
  max-width: 100vw;
  padding: 0;
  position: relative;
  height: 100vh;
  font-family: "lineseedRg";
}
body.under {
  height: auto;
  overflow-x: hidden;
  background-color: white;
}
body.menuopen {
  overflow: hidden;
}

body.toppage {
  max-width: 100vw;
  height: auto;
  overflow-x: hidden;
  -webkit-overflow-w: hidden;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

.pcnon {
  display: none;
}
@media screen and (max-width: 1360px) {
  .pcnon {
    display: inline;
  }
}

.spnon {
  display: inline;
}
@media screen and (max-width: 1360px) {
  .spnon {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */