@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: #f5f3f1;
}

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, .wrap::after {
  content: "";
  width: 12px;
  height: 100%;
  background: repeating-linear-gradient(to top, #6fa93f 0px, #6fa93f 100px, #836e9d 100px, #836e9d 200px, #e6b100 200px, #e6b100 300px, #8aabcb 300px, #8aabcb 400px, #d05758 400px, #d05758 500px);
  position: absolute;
  top: 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .wrap::before, .wrap::after {
    background: repeating-linear-gradient(to top, #6fa93f 0px, #6fa93f 50px, #836e9d 50px, #836e9d 100px, #e6b100 100px, #e6b100 150px, #8aabcb 150px, #8aabcb 200px, #d05758 200px, #d05758 250px);
    width: 7px;
  }
}
.wrap::before {
  left: 0;
  animation: bgScrollTop 15s linear infinite;
}
.wrap::after {
  position: absolute;
  top: 0;
  right: 0;
  animation: bgScrollBottom 15s linear infinite;
}

@keyframes bgScrollTop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -500px;
  }
}
@keyframes bgScrollBottom {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 500px;
  }
}
.hero {
  background: #fff url(../img/hero-bg.png) no-repeat center/cover;
  padding: 150px 0;
}
@media only screen and (max-width: 767px) {
  .hero {
    padding: 100px 0;
  }
}
.hero__content {
  width: calc(100% - 60px);
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 30px 0;
}
@media only screen and (max-width: 767px) {
  .hero__content {
    width: calc(100% - 100px);
  }
}
.hero__ttl {
  text-align: center;
}
.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 110px;
  font-family: "Montserrat";
  position: relative;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 2.5rem;
    margin: 0 0 80px;
  }
}
h2::after {
  content: "";
  width: 120px;
  height: 3px;
  background: repeating-linear-gradient(to right, #6fa93f 0%, #6fa93f 20%, #836e9d 20%, #836e9d 40%, #e6b100 40%, #e6b100 60%, #8aabcb 60%, #8aabcb 80%, #d05758 80%, #d05758 100%);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  h2::after {
    width: 100px;
  }
}

.topics {
  background-color: #000;
  color: #fff;
  padding: 100px 0 120px;
}
@media only screen and (max-width: 767px) {
  .topics {
    padding: 70px 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: 20px;
  }
}
.topics__item {
  width: calc((100% - 90px) / 4);
  border: 1px solid #ccc;
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  .topics__item {
    width: calc((100% - 20px) / 2);
    padding: 12px;
  }
}
.topics__item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.topics__item:hover .topics__pic img {
  transform: scale(1.1);
}
.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;
  color: #ccc;
  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: 100px 0;
}
@media only screen and (max-width: 767px) {
  .shop {
    padding: 70px 0;
  }
}
.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: 280px;
  height: 58px;
  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: #999;
}/*# sourceMappingURL=style.css.map */