@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background-color: #03b9f1;
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

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

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

.global_head {
  margin: 0 !important;
}

.wrap {
  font-family: "Noto Sans JP";
  position: relative;
  z-index: 0;
}
.wrap::before {
  left: 0;
  animation: bgScrollTop 15s linear infinite;
}
.wrap::after {
  position: absolute;
  top: 0;
  right: 0;
  animation: bgScrollBottom 15s linear infinite;
}

.hero {
  background: #fff url(../img/hero-bg.png) no-repeat center/cover;
  padding: 120px 0 230px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .hero {
    padding: 80px 0 100px;
  }
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url(../img/wave.png);
  background-repeat: repeat-x;
  background-position: top left;
  background-size: auto 100px;
}
@media only screen and (max-width: 767px) {
  .hero::after {
    height: 30px;
    background-position: top left -50px;
    background-size: auto 30px;
  }
}
.hero__content {
  width: calc(100% - 60px);
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  gap: 30px 0;
}
@media only screen and (max-width: 767px) {
  .hero__content {
    width: 100%;
  }
}
.hero__ttl {
  text-align: center;
}
.hero__ttl img {
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}
.hero__date {
  background-color: #000;
  padding: 7px 0;
}
.hero__date img {
  margin: 0 auto;
  display: block;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .hero__date img {
    height: 20px;
  }
}

h2 {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.1rem;
  margin: 0 0 60px;
  font-family: "Montserrat";
  position: relative;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 2.5rem;
    margin: 0 0 35px;
  }
}
h2 span {
  display: block;
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  h2 span {
    font-size: 0.9rem;
  }
}

.topics {
  padding: 100px 0 120px;
}
@media only screen and (max-width: 767px) {
  .topics {
    padding: 50px 0 90px;
  }
}
.topics__list {
  max-width: 1200px;
  width: calc(100% - 50px);
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 30px;
}
@media only screen and (max-width: 767px) {
  .topics__list {
    gap: 15px;
  }
}
.topics__item {
  width: calc((100% - 90px) / 4);
  background-color: #000;
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  .topics__item {
    width: calc((100% - 20px) / 2);
    padding: 12px;
  }
}
.topics__item:hover {
  background-color: #fff;
}
.topics__item:hover .topics__pic img {
  transform: scale(1.1);
}
.topics__item:hover .topics__ttl {
  color: #03b9f1;
}
.topics__item:hover .topics__date {
  color: #03b9f1;
}
.topics__item a {
  color: #fff;
}
.topics__pic {
  background-color: #000;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .topics__pic {
    height: 120px;
  }
}
.topics__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}
.topics__pic img.noimage {
  -o-object-fit: cover;
     object-fit: cover;
}
.topics__ttl {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 73px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .topics__ttl {
    margin: 0 0 5px;
    font-size: 0.8rem;
    line-height: 1.3;
    height: 52px;
  }
}
.topics__date {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  display: block;
  text-align: right;
  color: #999;
}
@media only screen and (max-width: 767px) {
  .topics__date {
    font-size: 0.65rem;
  }
}
.topics__soon {
  font-family: "Montserrat";
  font-size: 1.6rem;
  margin: 50px 0;
}
@media only screen and (max-width: 767px) {
  .topics__soon {
    font-size: 1.1rem;
    margin: 20px 0;
  }
}

.shop {
  max-width: 1200px;
  width: calc(100% - 50px);
  margin: 0 auto;
  padding: 80px 0 150px;
}
@media only screen and (max-width: 767px) {
  .shop {
    padding: 10px 0 75px;
  }
}
.shop__content {
  display: grid;
  align-items: center;
  gap: 50px 0;
}
@media only screen and (max-width: 767px) {
  .shop__content {
    gap: 40px 0;
  }
}
.shop__content iframe {
  width: 100%;
  height: 550px;
}
@media only screen and (max-width: 767px) {
  .shop__content iframe {
    height: 350px;
  }
}
.shop__info-name {
  text-align: center;
  font-weight: 700;
  font-size: 1.7rem;
  margin: 0 0 25px;
}
@media only screen and (max-width: 767px) {
  .shop__info-name {
    font-size: 1.4rem;
  }
}
.shop__info-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .shop__info-container {
    justify-content: flex-start;
  }
}
.shop__info-container p {
  margin: 0 20px 20px;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 767px) {
  .shop__info-container p {
    margin: 0 20px 15px;
    font-size: 0.85rem;
  }
}
.shop__info-container span {
  display: block;
  font-weight: 600;
  margin: 0 0 5px;
}
.shop__link {
  background: #000;
  color: #fff;
  border-radius: 99px;
  width: 100%;
  max-width: 350px;
  height: 65px;
  margin: 23px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .shop__link {
    max-width: 250px;
    height: 50px;
    margin: 15px auto 0;
    font-size: 0.9rem;
  }
}
.shop__link:hover {
  background-color: #fff;
  color: #03b9f1;
}/*# sourceMappingURL=style.css.map */