@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Yuji+Syuku&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.sns-twitter::before {
  content: "\e61b";
}

.sns-instagram::before {
  content: "\f16d";
}

@media only screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@font-face {
  font-family: "comicfonts";
  src: url(../fonts/Kaisotai-Next-UP-B.ttf);
}
body {
  position: relative;
}
body::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  background: url("../img/bg-texture.png") repeat;
  background-size: 250px 250px;
  mix-blend-mode: overlay;
  opacity: 0.3;
  pointer-events: none;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff000;
}

section {
  position: relative;
  background: linear-gradient(0deg, rgb(2, 126, 202) 0%, rgb(3, 185, 241) 59%);
}
section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  background: url("../img/bg-texture.png") repeat;
  background-size: 250px 250px;
  mix-blend-mode: overlay;
  opacity: 0.1;
  pointer-events: none;
}
section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("../img/wave.png");
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: 500px 50px;
  z-index: 100;
  pointer-events: none;
  animation: wave-slide 30s linear infinite;
}

@keyframes wave-slide {
  to {
    background-position-x: -500px;
  }
}
.wrap {
  position: relative;
  z-index: 2;
}

.top {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #81d6fd;
  text-align: center;
}
.top::before {
  content: "";
  position: absolute;
  inset: -8%;
  background-image: url("../img/content-bg.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 110% auto;
  animation: caustic-flow 10s ease-in-out infinite alternate;
  transform-origin: center;
  pointer-events: none;
  z-index: -1;
}
.top__box {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .top__box img {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .top__box img {
    max-width: 100vw;
    width: 95%;
    margin: 0 auto;
  }
}

@keyframes caustic-flow {
  0% {
    background-position: 48% 50%;
    transform: scale(1.02) rotate(-0.3deg) skewX(-0.5deg);
  }
  25% {
    background-position: 51% 48%;
    transform: scale(1.05, 1.02) rotate(0.2deg) skewX(0.4deg);
  }
  50% {
    background-position: 53% 52%;
    transform: scale(1.03, 1.06) rotate(-0.2deg) skewY(0.4deg);
  }
  75% {
    background-position: 49% 54%;
    transform: scale(1.06, 1.03) rotate(0.3deg) skewX(-0.3deg);
  }
  100% {
    background-position: 46% 49%;
    transform: scale(1.03) rotate(-0.1deg) skewY(-0.4deg);
  }
}
.mid {
  position: relative;
  z-index: 3;
  padding-top: 50px;
}
@media only screen and (min-width: 768px) {
  .mid {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .mid {
    max-width: 100vw;
    width: 90%;
    margin: 0 auto;
  }
}
.mid__box {
  border: solid 5px #fff;
  border-radius: 5px;
  width: fit-content;
  margin: 0 auto;
  padding: 24px 0 12px;
  background-color: #fff000;
  color: #03b9f1;
  filter: drop-shadow(5px 5px 0 #000);
}
.mid__intro {
  width: fit-content;
  margin: 0 auto;
}
.mid__intro h2 {
  font-size: 40px;
  text-align: center;
  margin: 0;
}
.mid__intro p {
  text-align: center;
  margin: 12px 0;
  font-size: 24px;
  font-weight: bolder;
}
@media only screen and (min-width: 768px) {
  .mid__content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .mid__content {
    max-width: 100vw;
    width: 90%;
  }
}
.mid__content p {
  text-align: center;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .mid__content p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .mid__content p {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
.mid__content ul {
  width: fit-content;
  margin: 0 auto;
}
.mid__content li {
  margin-bottom: 10px;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .mid__content li {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .mid__content li {
    font-size: 15px;
    margin-bottom: 5px;
  }
}

.map__ttl {
  font-family: "Montserrat";
  text-align: center;
  margin: 50px auto;
}
.map__ttl h3 {
  display: flex;
  flex-direction: column;
  color: #fff;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .map__ttl h3 {
    font-size: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .map__ttl h3 {
    font-size: 35px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 768px) {
  .map__ttl h3 span {
    font-size: 24px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .map__ttl h3 span {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .map__map {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
}
.map__map {
  text-align: center;
  width: 100%;
}
.map__map img {
  box-sizing: border-box;
  border: solid 5px #fff;
  border-radius: 10px;
  filter: drop-shadow(5px 5px 0 #000);
  width: 100%;
}
.map__map {
  position: relative;
}
.map__map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  background: url("../img/bg-texture.png") repeat;
  background-size: 250px 250px;
  mix-blend-mode: multiply;
  opacity: 0.1;
  pointer-events: none;
}

.info {
  color: #fff000;
  position: relative;
  z-index: 5;
}
.info__wrap {
  position: relative;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .info__wrap {
    max-width: 95vw;
    width: 100%;
    padding-top: 0px;
  }
}
@media only screen and (min-width: 768px) {
  .info__wrap {
    max-width: 1000px;
    width: 100%;
    padding-top: 48px;
  }
}
.info__ttl {
  font-family: "Montserrat";
  text-align: center;
  margin: 50px auto;
}
.info__ttl h3 {
  display: flex;
  flex-direction: column;
  color: #fff;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .info__ttl h3 {
    font-size: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .info__ttl h3 {
    font-size: 35px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 768px) {
  .info__ttl h3 span {
    font-size: 24px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .info__ttl h3 span {
    font-size: 18px;
    line-height: 24px;
  }
}

.topics {
  position: relative;
  z-index: 20;
}
@media only screen and (max-width: 767px) {
  .topics {
    padding: 0 0 28px;
  }
}
@media only screen and (min-width: 768px) {
  .topics {
    padding: 0 0 28px;
  }
}
@media only screen and (min-width: 768px) {
  .topics #list {
    display: flex;
    flex-wrap: wrap;
  }
}
.topics__container {
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .topics__container {
    width: 1000px;
  }
}
@media only screen and (max-width: 767px) {
  .topics__container {
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
  }
}
.topics__item {
  display: flex;
  filter: drop-shadow(5px 5px 0 #000);
  border: solid #000 5px;
  border-radius: 10px;
  background: #fff000;
  vertical-align: top;
  position: relative;
  scroll-snap-align: center;
  white-space: normal;
}
@media only screen and (max-width: 767px) {
  .topics__item {
    margin: 0 5px 10px;
  }
}
@media only screen and (min-width: 768px) {
  .topics__item {
    width: 450px;
    margin: 0 20px 40px;
  }
}
.topics__item {
  transition: 0.2s;
}
.topics__item:hover {
  opacity: 0.94;
  filter: drop-shadow(2px 2px 0 #000);
  transform: translatey(2px);
}
.topics__pic {
  border: solid 1px #000;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 95%;
  margin: 5px;
  padding: 0;
  height: fit-content;
}
@media only screen and (max-width: 767px) {
  .topics__pic {
    width: 200px;
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .topics__pic {
    width: 200px;
    height: auto;
  }
}
.topics__pic img {
  z-index: 10;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  vertical-align: middle;
  width: 100%;
  height: auto;
  margin: auto;
}
.topics__ttl {
  position: relative;
  font-size: 0.9rem;
  padding-bottom: 15px;
  margin-bottom: 2px;
}
@media only screen and (max-width: 767px) {
  .topics__ttl {
    margin-left: 15px;
  }
  .topics__ttl p {
    text-align: left;
    margin: 10px 0 0;
  }
  .topics__ttl {
    width: 250px;
  }
}
@media only screen and (min-width: 768px) {
  .topics__ttl {
    line-height: 1.3;
    margin-left: 15px;
  }
  .topics__ttl p {
    text-align: left;
    margin: 10px 0 0;
  }
  .topics__ttl {
    width: 250px;
  }
}
.topics__ttl a p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .topics__ttl a p {
    height: 75px;
    padding: 8px 10px 0;
  }
}
@media only screen and (min-width: 768px) {
  .topics__ttl a p {
    height: 121px;
    padding: 0;
    font-size: 20px;
  }
}
.topics__ttl a p {
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: left;
  font-weight: bolder;
}
.topics__ttl a {
  color: #00c3ff;
  text-decoration: none;
}
.topics__ttl a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.shop {
  position: relative;
  z-index: 50;
  border: solid 2px #fff000;
  background-color: #ec3233;
  color: #0071bc;
  box-sizing: border-box;
  border: solid 5px #fff;
  border-radius: 10px;
  filter: drop-shadow(5px 5px 0 #000);
}
@media only screen and (min-width: 768px) {
  .shop {
    width: 750px;
    margin: 48px auto;
  }
}
@media only screen and (max-width: 767px) {
  .shop {
    margin: 10px;
  }
}
.shop__inner {
  margin: 24px auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .shop__inner {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 768px) {
  .shop__inner {
    max-width: 1200px;
    width: calc(100% - 30px);
  }
}
.shop__map {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .shop__map iframe {
    max-width: 700px;
    width: 100%;
    height: 450px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .shop__map iframe {
    max-width: 100vw;
    width: 90%;
    height: 450px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .shop__detail {
    padding: 30px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .shop__detail {
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
.shop__detail-item {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .shop__detail-item {
    width: fit-content;
  }
}
.shop__detail-item {
  padding: 10px;
  margin: 0 auto 20px;
  line-height: 23px;
}
.shop__detail-item p {
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .shop__detail-item p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 768px) {
  .shop__detail-item p {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
  }
}
.shop__detail-link {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  background: #ffef00;
  text-align: center;
  box-sizing: border-box;
  padding: 10px 20px 15px;
  border: solid 5px #fff;
  border-radius: 10px;
  filter: drop-shadow(5px 5px 0 #000);
  border-radius: 5px;
  transition: 0.2s;
}
.shop__detail-link a {
  color: #000;
  font-weight: bolder;
  text-decoration: none;
  font-size: 36px;
  font-weight: 600;
}
.shop__detail-link:hover {
  opacity: 0.94;
  filter: drop-shadow(2px 2px 0 #000);
  transform: translatey(2px);
}

.sns {
  position: relative;
  z-index: 1;
  padding: 84px 20px 92px;
  color: #111;
  scroll-margin-top: 96px;
}
@media only screen and (max-width: 767px) {
  .sns {
    padding: 64px 14px 68px;
  }
}
.sns__inner {
  max-width: 960px;
  margin: 0 auto;
}
.sns__ttl {
  margin: 0 auto 24px;
  text-align: center;
}
.sns__ttl h3 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0 24px 16px;
  color: #ffffff;
  font-size: 64px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 767px) {
  .sns__ttl h3 {
    font-size: 40px;
    padding-bottom: 12px;
  }
}
.sns__ttl h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  transform: translateX(-50%);
}
.sns__ttl h3 span {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.sns__lead {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sns__lead {
    margin-bottom: 24px;
    font-size: 14px;
  }
}
.sns__grid {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
.sns__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 4px solid #111;
  border-radius: 8px;
  box-shadow: 6px 6px 0 #111;
  color: #111;
  text-decoration: none;
  transition: 0.2s ease;
}
@media only screen and (max-width: 767px) {
  .sns__card {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 18px;
    box-shadow: 5px 5px 0 #111;
  }
}
.sns__card:hover {
  transform: translateY(4px);
  box-shadow: 3px 3px 0 #111;
  opacity: 0.94;
}
.sns__card--x {
  --sns-accent: #0071bc;
}
.sns__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: var(--sns-accent);
  border: 3px solid #111;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  box-shadow: 3px 3px 0 #111;
}
@media only screen and (max-width: 767px) {
  .sns__icon {
    width: 48px;
    height: 48px;
    font-size: 23px;
  }
}
.sns__body {
  display: block;
  min-width: 0;
}
.sns__name, .sns__account {
  display: block;
}
.sns__name {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  .sns__name {
    font-size: 20px;
  }
}
.sns__account {
  color: var(--sns-accent);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  word-break: break-word;
}
@media only screen and (max-width: 767px) {
  .sns__account {
    font-size: 13px;
  }
}
.sns__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #fff000;
  border: 2px solid #111;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 3px 3px 0 #111;
}
@media only screen and (max-width: 767px) {
  .sns__button {
    display: none;
  }
}
.sns__note {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 16px 20px;
  background: #fff;
  border: 3px solid #111;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #111;
  color: #222;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sns__note {
    text-align: left;
  }
}

@media only screen and (min-width: 768px) {
  .global_foot {
    height: 284px;
  }
}

.global_head {
  margin: 0 !important;
}

header, footer {
  position: relative;
  z-index: 9999999999;
}/*# sourceMappingURL=style.css.map */