:root, :host {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-red: #e41829;
  --color-blue: #1E41BE;
  --color-blue-pale: #d1d8f0;
  --color-fuki: #0E33C2;
  --spotcolor-pink-main: #E7537F;
  --spotcolor-pink-base: #FF9EBB;
  --spotcolor-pink-thin: #FFCFDD;
  --spotcolor-black-main: #000000;
  --spotcolor-black-base: #808080;
  --spotcolor-black-thin: #c5c5c5;
  --spotcolor-yellow-main: #CD7800;
  --spotcolor-yellow-base: #F8CB35;
  --spotcolor-yellow-thin: #ffe591;
  --spotcolor-green-main: #0E8F87;
  --spotcolor-green-base: #51D9D1;
  --spotcolor-green-thin: #a7f0eb;
  --spotcolor-purple-main: #6728D1;
  --spotcolor-purple-base: #AA78FF;
  --spotcolor-purple-thin: #d6beff;
  --spotcolor-pink2-main: #E7537F;
  --spotcolor-pink2-base: #FF9EBB;
  --spotcolor-pink2-thin: #FFCFDD;
  --fontfamily-ja: "Zen Maru Gothic", sans-serif;
  --duration-popup-show: 0.3s;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  touch-action: none;
  font-family: var(--fontfamily-ja);
  font-weight: 500;
}

a {
  text-decoration: none;
}

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

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px 32px 12px 12px;
  z-index: 10;
  box-sizing: border-box;
  touch-action: none;
  -ms-touch-action: none;
  overscroll-behavior: contain;
  height: 120px;
  background-color: var(--color-red);
}
header h1 {
  padding-top: 2px;
  padding-left: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 7px;
  transform: translateY(3px);
}
header h1 span {
  font-size: 14px;
  line-height: 130%;
  color: var(--color-white);
  text-align: left;
}
header h1::after {
  content: "";
  width: 60px;
  height: 63px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/kitty_header.webp);
  position: absolute;
  left: 0;
  bottom: 3px;
}
header a {
  position: absolute;
  top: -3px;
  right: 0;
  display: block;
  padding: 3px 12px 6px;
  color: var(--color-white);
  font-size: 18px;
}
header a::after {
  content: "";
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

main {
  margin-top: 119px;
  position: relative;
  width: 100%;
  height: calc(100% - 119px);
  overflow: hidden;
  background: #000;
}
main .zoomBtn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 44px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3px;
}
main .zoomBtn .zoomBtnPlus, main .zoomBtn .zoomBtnMinus {
  box-sizing: border-box;
  border: 3px solid var(--color-blue);
  width: 44px;
  height: 44px;
  position: relative;
}
main .zoomBtn .zoomBtnPlus.off::before, main .zoomBtn .zoomBtnPlus.off::after, main .zoomBtn .zoomBtnMinus.off::before, main .zoomBtn .zoomBtnMinus.off::after {
  background-color: var(--color-blue-pale);
}
main .zoomBtn .zoomBtnPlus {
  border-radius: 8px 8px 0 0;
}
main .zoomBtn .zoomBtnPlus::before, main .zoomBtn .zoomBtnPlus::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 4px;
  background-color: var(--color-blue);
  top: 17px;
  left: 8px;
  transform-origin: center center;
}
main .zoomBtn .zoomBtnPlus::after {
  transform: rotate(90deg);
}
main .zoomBtn .zoomBtnMinus {
  border-radius: 0 0 8px 8px;
  height: 41px;
  border-top: none;
}
main .zoomBtn .zoomBtnMinus::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 4px;
  background-color: var(--color-blue);
  top: 17px;
  left: 8px;
}

#map {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  will-change: transform;
}
#map img {
  display: block;
  width: 4824px;
  height: 8576px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
#map .spot {
  position: absolute;
}
#map .spot a {
  position: absolute;
  left: 0;
  top: 0;
  touch-action: manipulation;
}
#map .spot a .spotPin {
  position: absolute;
  left: -39px;
  bottom: 0;
  width: 84px;
  height: auto;
  aspect-ratio: 1/1;
  transform-origin: center bottom;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/ribbon_pin_red.svg);
}
#map .spot a::after {
  content: "";
  width: 240px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -120px;
}
#map .spot a.color-black .spotPin {
  background-image: url(../img/ribbon_pin_black.svg);
}
#map .spot .fukidashi {
  position: absolute;
  background-color: var(--color-white);
  border: 3px solid var(--color-fuki);
  border-radius: 25px;
  height: 48px;
  width: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  transform-origin: center bottom;
}
#map .spot .fukidashi span {
  display: block;
  text-align: center;
  font-size: 16px;
  width: 100%;
  color: var(--color-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#map .spot .fukidashi::after {
  content: "";
  width: 20px;
  height: 16px;
  position: absolute;
  bottom: -15px;
  left: 110px;
  transform-origin: center center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/fuki_arrow.png);
}
#map .spot .fuki-1 .fukidashi0, #map .spot .fuki-2 .fukidashi0,
#map .spot .fukidashi1, #map .spot .fukidashi3 {
  transform-origin: center top;
}
#map .spot .fuki-1 .fukidashi0::after, #map .spot .fuki-2 .fukidashi0::after,
#map .spot .fukidashi1::after, #map .spot .fukidashi3::after {
  bottom: auto;
  top: -15px;
  transform: rotate(180deg);
}
#map .spot .fuki-0 .fukidashi0 {
  left: -121px;
  top: -153px;
}
#map .spot .fuki-0 .fukidashi1 {
  left: -160px;
  top: 165px;
}
#map .spot .fuki-0 .fukidashi2 {
  left: -57px;
  top: -205px;
}
#map .spot .fuki-0 .fukidashi3 {
  left: -69px;
  top: 217px;
}
#map .spot .fuki-0 .fukidashi4 {
  left: -165px;
  top: -258px;
}
#map .spot .fuki-1 .fukidashi0 {
  left: -51px;
  top: 131px;
}
#map .spot .fuki-1 .fukidashi1 {
  left: -138px;
  top: 183px;
}
#map .spot .fuki-1 .fukidashi2 {
  left: -268px;
  top: -36px;
}
#map .spot .fuki-1 .fukidashi3 {
  left: -80px;
  top: 236px;
}
#map .spot .fuki-1 .fukidashi4 {
  left: 49px;
  top: -54px;
}
#map .spot .fuki-2 .fukidashi0 {
  left: -188px;
  top: 131px;
}
#map .spot .fuki-2 .fukidashi1 {
  left: -111px;
  top: 183px;
}
#map .spot .fuki-2 .fukidashi2 {
  left: -39px;
  top: -143px;
}
#map .spot .fuki-2 .fukidashi3 {
  left: -152px;
  top: 236px;
}
#map .spot .fuki-2 .fukidashi4 {
  left: -178px;
  top: -195px;
}
#map .spot a.color-pink .fukidashi {
  border-color: var(--spotcolor-pink-main);
}
#map .spot a.color-pink .fukidashi::after {
  background-image: url(../img/fuki_arrow_pink.png);
}
#map .spot a.color-black .fukidashi {
  border-color: var(--spotcolor-black-main);
}
#map .spot a.color-black .fukidashi::after {
  background-image: url(../img/fuki_arrow_black.png);
}
#map .spot a.color-yellow .fukidashi {
  border-color: var(--spotcolor-yellow-main);
}
#map .spot a.color-yellow .fukidashi::after {
  background-image: url(../img/fuki_arrow_yellow.png);
}
#map .spot a.color-green .fukidashi {
  border-color: var(--spotcolor-green-main);
}
#map .spot a.color-green .fukidashi::after {
  background-image: url(../img/fuki_arrow_green.png);
}
#map .spot a.color-purple .fukidashi {
  border-color: var(--spotcolor-purple-main);
}
#map .spot a.color-purple .fukidashi::after {
  background-image: url(../img/fuki_arrow_purple.png);
}
#map .spot a.color-pink2 .fukidashi {
  border-color: var(--spotcolor-pink2-main);
}
#map .spot a.color-pink2 .fukidashi::after {
  background-image: url(../img/fuki_arrow_pink2.png);
}
#map .spot a.color-pink2 .fukidashi {
  border-color: var(--spotcolor-pink2-base);
}

#intro {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 63% 56%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
#intro h2 {
  margin-top: 84px;
}
#intro h2 img {
  height: 250px;
}
#intro .introNews {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #FF78A0;
  color: var(--color-white);
  gap: 12px;
  padding: 12px 3vw;
  text-align: center;
  box-sizing: border-box;
  font-size: 18px;
}
#intro .introNews span {
  display: inline-block;
}
#intro .introNews .introNewsL {
  white-space: nowrap;
  display: flex;
}
#intro .introNews .introNewsL span {
  display: block;
  font-size: 13px;
}
#intro .introNowloading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 120, 160, 0.85);
  box-sizing: border-box;
  padding-bottom: 140px;
  color: var(--color-white);
  font-weight: 700;
  transition-duration: 0.2s;
}
#intro .introNowloading .img {
  position: relative;
}
#intro .introNowloading .img img {
  animation: loadingAnime 1s steps(10, jump-start) 0s infinite;
  transform-origin: center center;
}
#intro .introNowloading .img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  animation: loadingText 1s linear 0s infinite;
}
#intro .introNowloading.fadeOut {
  opacity: 0;
}
@keyframes loadingAnime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loadingText {
  0% {
    content: "Loading";
  }
  25% {
    content: "Loading.";
  }
  50% {
    content: "Loading..";
  }
  75%, 100% {
    content: "Loading...";
  }
}
#intro .pinchiin {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  gap: 18px;
}
#intro .pinchiin img {
  width: 67px;
  height: 60px;
}
#intro .pinchiin p {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-blue);
}
#intro .introCopy {
  position: absolute;
  left: 0px;
  bottom: 0px;
  color: var(--spotcolor-pink-main);
  background-color: #ffe1ea;
  padding: 2px 9px 4px;
  border-radius: 0 4px 0 0;
}

#popup {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  transition-duration: var(--duration-popup-show);
  transition-property: opacity;
  opacity: 0;
}
#popup .popupBase {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}
#popup .popupBodyCase {
  position: absolute;
  transition-duration: var(--duration-popup-show);
  transform-origin: center center;
  left: 20px;
  top: 47px;
  width: calc(100% - 40px);
  height: calc(100% - 64px);
  border-radius: 20px;
  padding: 55px 13px 27px;
  box-sizing: border-box;
  transform: scale(0.85);
}
#popup .popupBodyCase .inner {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--color-white);
  text-align: center;
}
#popup .popupBodyCase .inner h2, #popup .popupBodyCase .inner h3, #popup .popupBodyCase .inner h4, #popup .popupBodyCase .inner ul, #popup .popupBodyCase .inner li, #popup .popupBodyCase .inner p {
  margin: 0;
  padding: 0;
}
#popup .popupBodyCase .inner ul, #popup .popupBodyCase .inner li {
  list-style-type: none;
}
#popup .popupBodyCase .inner h2 {
  font-size: 22px;
}
#popup .popupBodyCase .inner h2 span {
  display: block;
}
#popup .popupBodyCase .inner h3 {
  font-size: 22px;
}
#popup .popupBodyCase::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -39px;
  width: 146px;
  height: 87px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/ribbon_header_red.svg);
}
#popup .popupBodyCase .popupScene, #popup .popupBodyCase .popupConts {
  transition-duration: var(--duration-popup-show);
  display: none;
  opacity: 0;
}
#popup .popupBodyCase .popupScene.ready, #popup .popupBodyCase .popupConts.ready {
  display: block;
  opacity: 0;
}
#popup .popupBodyCase .popupScene.show, #popup .popupBodyCase .popupConts.show {
  display: block;
  opacity: 1;
}
#popup .popupBodyCase .commentCase {
  width: 100%;
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 10px 8px 0 25px;
  box-sizing: border-box;
}
#popup .popupBodyCase .commentCase .commentMain {
  margin-top: 20px;
  height: calc(100% - 70px);
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
}
#popup .popupBodyCase .commentCase .commentMain ul {
  width: calc(100% - 12px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#popup .popupBodyCase .commentCase .commentMain ul li time {
  color: #817F7E;
  font-size: 11px;
  font-weight: 500;
}
#popup .popupBodyCase .commentCase .commentMain ul li h4 {
  color: var(--color-black);
  font-size: 13px;
  font-weight: 500;
}
#popup .popupBodyCase .popupCard {
  height: 39%;
  width: 100%;
  display: flex;
  justify-content: center;
}
#popup .popupBodyCase .popupCard img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#popup .popupBodyCase .popupScene {
  width: 100%;
  height: 100%;
}
#popup .popupBodyCase .popupScene.popupAllComments {
  box-sizing: border-box;
  padding-top: 16px;
}
#popup .popupBodyCase .popupScene.popupAllComments .commentCase {
  height: calc(100% - 40px);
  padding-top: 0;
}
#popup .popupBodyCase .popupScene.popupAllComments .commentCase .commentHead {
  display: flex;
  justify-content: center;
  padding-right: 17px;
}
#popup .popupBodyCase .popupScene.popupAllComments .commentCase .commentHead h3 {
  font-size: 16px;
  width: 168px;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  border-radius: 0 0 10px 10px;
}
#popup .popupBodyCase .popupScene.popupAllComments .pBtnCommentBack {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
}
#popup .popupBodyCase .popupScene.popupPrize h2 {
  padding-top: 12px;
  font-size: 20px;
}
#popup .popupBodyCase .popupScene.popupPrize h2 strong {
  display: block;
  font-size: 36px;
}
#popup .popupBodyCase .popupScene.popupPrize h2.popupPrizeH2 {
  margin-top: 21px;
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeMain {
  margin: 20px auto 0;
  width: calc(100% - 20px);
  padding: 15px 11px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: var(--color-white);
  border-radius: 20px;
  position: relative;
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeMain h3 {
  font-size: 19px;
  line-height: 120%;
  font-weight: 700;
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeMain .popupPrizeImg {
  width: 100%;
  height: 136px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeMain .popupPrizeImg img {
  height: 100%;
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeMain .popupPrizeDownload {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  position: absolute;
  right: 12px;
  bottom: 12px;
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeMain .popupPrizeDownload p {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeMain .popupPrizeDownload .pBtnDownload {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icon_download.svg);
  border-radius: 24px;
  width: 42px;
  height: 42px;
}
#popup .popupBodyCase .popupScene.popupPrize .pBtnXShare {
  gap: 16px;
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 140%;
  border-radius: 50px;
  padding: 15px 12px;
}
#popup .popupBodyCase .popupScene.popupPrize .pBtnXShare::before {
  content: "";
  width: 33px;
  height: 34px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/icon_logo_x.png);
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeShare {
  margin: 31px auto 0;
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeShare h3 {
  font-size: 16px;
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeShare ul {
  margin-top: 9px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeShare ul li img {
  width: 72px;
}
#popup .popupBodyCase .popupScene.popupPrize .popupPrizeOther {
  font-size: 16px;
  margin-top: 24px;
}
#popup .popupBodyCase .popupScene.popupPrize .pBtnClose2 {
  margin: 16px auto 0;
}
#popup .popupBodyCase .popupConts {
  width: 100%;
}
#popup .popupBodyCase .popupConts.popupStart {
  height: 59%;
  box-sizing: border-box;
}
#popup .popupBodyCase .popupConts.popupStart h2 {
  padding-top: 1.9vh;
  padding-bottom: calc(1.9vh + 2px);
  line-height: 130%;
}
#popup .popupBodyCase .popupConts.popupStart .commentCase {
  height: 56.5%;
  margin-bottom: 26px;
}
#popup .popupBodyCase .popupConts.popupStart .commentCase .commentHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#popup .popupBodyCase .popupConts.popupStart .commentCase .commentHead h3 {
  font-size: 16px;
}
#popup .popupBodyCase .popupConts.popupStart .pBtnInput {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
}
#popup .popupBodyCase .popupConts.popupIntro h2 {
  padding-top: 23px;
}
#popup .popupBodyCase .popupConts.popupIntro .pBtnNext {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
}
#popup .popupBodyCase .popupConts.popupInput .formText {
  font-size: 24px;
  margin-top: 31px;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 20px;
  position: relative;
}
#popup .popupBodyCase .popupConts.popupInput .formText textarea {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  border: none;
  resize: none;
  field-sizing: content;
}
#popup .popupBodyCase .popupConts.popupInput .formText textarea:focus {
  outline: none;
}
#popup .popupBodyCase .popupConts.popupInput .formText .formTextCover {
  position: absolute;
  left: 0;
  top: 0;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #C3C3C3;
}
#popup .popupBodyCase .popupConts.popupInput .formText .formTextCover ul {
  font-size: 14px;
  text-align: left;
  margin: 6px 0;
}
#popup .popupBodyCase .popupConts.popupInput .formText .formTextCover.hide {
  display: none;
}
#popup .popupBodyCase .popupConts.popupInput .pBtnSend {
  margin: 24px auto 0;
}
#popup .popupBodyCase .popupConts.popupInput .pBtnSend:disabled {
  opacity: 0.3;
}
#popup .popupBodyCase .popupConts.popupInput .pBtnComment {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
}
#popup .popupBodyCase .popupConts.popupNoSend h2, #popup .popupBodyCase .popupConts.popupError h2 {
  padding-top: 32px;
}
#popup .popupBodyCase .popupConts.popupNoSend .pBtnComment, #popup .popupBodyCase .popupConts.popupError .pBtnComment {
  margin: 20px auto;
}
#popup .popupBodyCase .popupConts.popupNoSend .pBtnClose2, #popup .popupBodyCase .popupConts.popupNoSend .pBtnCloseError, #popup .popupBodyCase .popupConts.popupError .pBtnClose2, #popup .popupBodyCase .popupConts.popupError .pBtnCloseError {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
}
#popup .popupBodyCase .pBtnClose {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--color-white);
  top: -18px;
  right: -12px;
}
#popup .popupBodyCase .pBtnClose::before, #popup .popupBodyCase .pBtnClose::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 4px;
  top: 25px;
  left: 11px;
  border-radius: 2px;
  transform-origin: center center;
}
#popup .popupBodyCase .pBtnClose::before {
  transform: rotate(45deg);
}
#popup .popupBodyCase .pBtnClose::after {
  transform: rotate(-45deg);
}
#popup .popupBodyCase .pBtnMain {
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  border-radius: 40px;
  color: var(--color-white);
  width: calc(100vw - 90px);
  max-width: 310px;
  box-sizing: border-box;
}
#popup .popupBodyCase .pBtnSimple {
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  width: calc(100% - 60px);
  box-sizing: border-box;
  text-decoration: underline;
  position: relative;
}
#popup .popupBodyCase .pBtnSimple.pBtnComment, #popup .popupBodyCase .pBtnSimple.pBtnCommentBack {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
#popup .popupBodyCase .pBtnSimple.pBtnComment::after, #popup .popupBodyCase .pBtnSimple.pBtnCommentBack::before {
  content: "";
  width: 12px;
  height: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/arrow_left.svg);
  transform-origin: center center;
}
#popup .popupBodyCase .pBtnSimple.pBtnComment::after {
  transform: rotate(180deg);
}
#popup .popupBodyCase .pBtnSimple.pBtnClose2, #popup .popupBodyCase .pBtnSimple.pBtnCloseError {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
#popup .popupBodyCase .pBtnSimple.pBtnClose2 span, #popup .popupBodyCase .pBtnSimple.pBtnCloseError span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: block;
  position: relative;
}
#popup .popupBodyCase .pBtnSimple.pBtnClose2 span::before, #popup .popupBodyCase .pBtnSimple.pBtnClose2 span::after, #popup .popupBodyCase .pBtnSimple.pBtnCloseError span::before, #popup .popupBodyCase .pBtnSimple.pBtnCloseError span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  top: 12px;
  left: 5px;
  border-radius: 1px;
  transform-origin: center center;
}
#popup .popupBodyCase .pBtnSimple.pBtnClose2 span::before, #popup .popupBodyCase .pBtnSimple.pBtnCloseError span::before {
  transform: rotate(45deg);
}
#popup .popupBodyCase .pBtnSimple.pBtnClose2 span::after, #popup .popupBodyCase .pBtnSimple.pBtnCloseError span::after {
  transform: rotate(-45deg);
}
#popup .popupBodyCase .pBtnAll {
  width: 110px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}
#popup #popupBody {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  z-index: 2;
  transform: translateX(-50%);
}
#popup #popupBody.color-pink .popupBodyCase {
  background-color: var(--spotcolor-pink-base);
}
#popup #popupBody.color-pink .commentHead h3, #popup #popupBody.color-pink .popupPrizeMain {
  color: var(--spotcolor-pink-main);
}
#popup #popupBody.color-pink .popupAllComments h3 {
  background-color: var(--spotcolor-pink-thin);
}
#popup #popupBody.color-pink .pBtnClose::before, #popup #popupBody.color-pink .pBtnClose::after {
  background-color: var(--spotcolor-pink-main);
}
#popup #popupBody.color-pink .pBtnMain, #popup #popupBody.color-pink .pBtnDownload, #popup #popupBody.color-pink .pBtnClose2 span::before, #popup #popupBody.color-pink .pBtnClose2 span::after, #popup #popupBody.color-pink .pBtnCloseError span::before, #popup #popupBody.color-pink .pBtnCloseError span::after {
  background-color: var(--spotcolor-pink-main);
}
#popup #popupBody.color-pink .pBtnAll {
  color: var(--spotcolor-pink-main);
  background-color: var(--spotcolor-pink-thin);
}
#popup #popupBody.color-black .popupBodyCase {
  background-color: var(--spotcolor-black-base);
}
#popup #popupBody.color-black .commentHead h3, #popup #popupBody.color-black .popupPrizeMain {
  color: var(--spotcolor-black-main);
}
#popup #popupBody.color-black .popupAllComments h3 {
  background-color: var(--spotcolor-black-thin);
}
#popup #popupBody.color-black .pBtnClose::before, #popup #popupBody.color-black .pBtnClose::after {
  background-color: var(--spotcolor-black-main);
}
#popup #popupBody.color-black .pBtnMain, #popup #popupBody.color-black .pBtnDownload, #popup #popupBody.color-black .pBtnClose2 span::before, #popup #popupBody.color-black .pBtnClose2 span::after, #popup #popupBody.color-black .pBtnCloseError span::before, #popup #popupBody.color-black .pBtnCloseError span::after {
  background-color: var(--spotcolor-black-main);
}
#popup #popupBody.color-black .pBtnAll {
  color: var(--spotcolor-black-main);
  background-color: var(--spotcolor-black-thin);
}
#popup #popupBody.color-yellow .popupBodyCase {
  background-color: var(--spotcolor-yellow-base);
}
#popup #popupBody.color-yellow .commentHead h3, #popup #popupBody.color-yellow .popupPrizeMain {
  color: var(--spotcolor-yellow-main);
}
#popup #popupBody.color-yellow .popupAllComments h3 {
  background-color: var(--spotcolor-yellow-thin);
}
#popup #popupBody.color-yellow .pBtnClose::before, #popup #popupBody.color-yellow .pBtnClose::after {
  background-color: var(--spotcolor-yellow-main);
}
#popup #popupBody.color-yellow .pBtnMain, #popup #popupBody.color-yellow .pBtnDownload, #popup #popupBody.color-yellow .pBtnClose2 span::before, #popup #popupBody.color-yellow .pBtnClose2 span::after, #popup #popupBody.color-yellow .pBtnCloseError span::before, #popup #popupBody.color-yellow .pBtnCloseError span::after {
  background-color: var(--spotcolor-yellow-main);
}
#popup #popupBody.color-yellow .pBtnAll {
  color: var(--spotcolor-yellow-main);
  background-color: var(--spotcolor-yellow-thin);
}
#popup #popupBody.color-green .popupBodyCase {
  background-color: var(--spotcolor-green-base);
}
#popup #popupBody.color-green .commentHead h3, #popup #popupBody.color-green .popupPrizeMain {
  color: var(--spotcolor-green-main);
}
#popup #popupBody.color-green .popupAllComments h3 {
  background-color: var(--spotcolor-green-thin);
}
#popup #popupBody.color-green .pBtnClose::before, #popup #popupBody.color-green .pBtnClose::after {
  background-color: var(--spotcolor-green-main);
}
#popup #popupBody.color-green .pBtnMain, #popup #popupBody.color-green .pBtnDownload, #popup #popupBody.color-green .pBtnClose2 span::before, #popup #popupBody.color-green .pBtnClose2 span::after, #popup #popupBody.color-green .pBtnCloseError span::before, #popup #popupBody.color-green .pBtnCloseError span::after {
  background-color: var(--spotcolor-green-main);
}
#popup #popupBody.color-green .pBtnAll {
  color: var(--spotcolor-green-main);
  background-color: var(--spotcolor-green-thin);
}
#popup #popupBody.color-purple .popupBodyCase {
  background-color: var(--spotcolor-purple-base);
}
#popup #popupBody.color-purple .commentHead h3, #popup #popupBody.color-purple .popupPrizeMain {
  color: var(--spotcolor-purple-main);
}
#popup #popupBody.color-purple .popupAllComments h3 {
  background-color: var(--spotcolor-purple-thin);
}
#popup #popupBody.color-purple .pBtnClose::before, #popup #popupBody.color-purple .pBtnClose::after {
  background-color: var(--spotcolor-purple-main);
}
#popup #popupBody.color-purple .pBtnMain, #popup #popupBody.color-purple .pBtnDownload, #popup #popupBody.color-purple .pBtnClose2 span::before, #popup #popupBody.color-purple .pBtnClose2 span::after, #popup #popupBody.color-purple .pBtnCloseError span::before, #popup #popupBody.color-purple .pBtnCloseError span::after {
  background-color: var(--spotcolor-purple-main);
}
#popup #popupBody.color-purple .pBtnAll {
  color: var(--spotcolor-purple-main);
  background-color: var(--spotcolor-purple-thin);
}
#popup #popupBody.color-pink2 .popupBodyCase {
  background-color: var(--spotcolor-pink2-base);
}
#popup #popupBody.color-pink2 .commentHead h3, #popup #popupBody.color-pink2 .popupPrizeMain {
  color: var(--spotcolor-pink2-main);
}
#popup #popupBody.color-pink2 .popupAllComments h3 {
  background-color: var(--spotcolor-pink2-thin);
}
#popup #popupBody.color-pink2 .pBtnClose::before, #popup #popupBody.color-pink2 .pBtnClose::after {
  background-color: var(--spotcolor-pink2-main);
}
#popup #popupBody.color-pink2 .pBtnMain, #popup #popupBody.color-pink2 .pBtnDownload, #popup #popupBody.color-pink2 .pBtnClose2 span::before, #popup #popupBody.color-pink2 .pBtnClose2 span::after, #popup #popupBody.color-pink2 .pBtnCloseError span::before, #popup #popupBody.color-pink2 .pBtnCloseError span::after {
  background-color: var(--spotcolor-pink2-main);
}
#popup #popupBody.color-pink2 .pBtnAll {
  color: var(--spotcolor-pink2-main);
  background-color: var(--spotcolor-pink2-thin);
}
#popup #popupBody.color-black .popupBodyCase::after {
  background-image: url(../img/ribbon_header_black.svg);
}
#popup #popupBody.line-3 .popupBodyCase .popupConts.popupStart h2 {
  padding-top: 1.7vh;
  padding-bottom: calc(1.7vh + 2px);
  font-size: 20px;
}
#popup #popupBody.line-3 .popupBodyCase .popupConts.popupStart .commentCase {
  height: 53%;
}
#popup #popupBody.line-3 .popupBodyCase .popupCard {
  height: 37%;
}
#popup.ready {
  display: block;
  opacity: 0;
}
#popup.show {
  display: block;
  opacity: 1;
}
#popup.show .popupBodyCase {
  transform: scale(1);
}

body.jp #intro .introNews {
  gap: 0px;
}
body.jp #intro .introNews .introNewsL span {
  transform: translate(-4px, 4px);
}

body.en #intro .introNews {
  gap: 12px;
}
body.en #intro .introNews .introNewsL span {
  transform: translate(2px, 4px);
}

@media screen and (min-width: 768px) {
  #intro {
    background-image: url(../img/intro_base_pc.png);
  }
}
@media screen and (max-width: 767px) {
  main .zoomBtn {
    display: none;
  }
  #intro {
    background-image: url(../img/intro_base_sp.png);
  }
}/*# sourceMappingURL=map.css.map */