@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;
  }
}

.content {
  position: relative;
  z-index: 0;
}
.content::after {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/content-bg.png) no-repeat top left/cover;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

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__nav {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 125px 1fr 1fr 1fr;
  grid-template-rows: 55px 55px;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  .topics__nav {
    max-width: 380px;
    margin: 0 auto 45px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 45px 45px 45px;
    gap: 10px;
  }
}
.topics__nav-item {
  background-color: #fff000;
  color: #1a94b9;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .topics__nav-item {
    font-size: 0.8rem;
    line-height: 1.2;
  }
}
.topics__nav-item:first-of-type {
  grid-row: span 2;
}
@media only screen and (max-width: 767px) {
  .topics__nav-item:first-of-type {
    grid-row: auto;
    grid-column: 1/-1;
    width: 120px;
    margin: 0 auto;
  }
}
.topics__nav-item:hover {
  background-color: #fff;
}
.topics__nav-item.active {
  background-color: #fff;
}
.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__category {
  background-color: #03b9f1;
}
.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__category {
  background-color: #444;
  display: inline-block;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 10px;
  padding: 3px 8px;
  border-radius: 99px;
}
.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;
  }
}
.topics__link {
  display: none;
  text-align: center;
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  .topics__link {
    margin-top: 40px;
  }
}
.topics__link-btn {
  display: inline-flex;
  align-items: center;
  background-color: #000;
  color: #fff;
  border-radius: 99px;
  min-width: 250px;
  height: 60px;
  margin: 0 auto;
  padding: 0 65px 0 23px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topics__link-btn {
    min-width: 180px;
    height: 50px;
    padding: 0 45px 0 20px;
    font-size: 0.9rem;
  }
}
.topics__link-btn:hover {
  background-color: #fff;
  color: #03b9f1;
}
.topics__link-btn:hover .topics__arrow {
  background-color: #03b9f1;
}
.topics__link-btn:hover .topics__arrow::after {
  border-top: solid 2.5px #fff;
  border-right: solid 2.5px #fff;
}
.topics__arrow {
  background-color: #fff;
  border-radius: 50%;
  width: 27px;
  height: 27px;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}
@media only screen and (max-width: 767px) {
  .topics__arrow {
    width: 20px;
    height: 20px;
    right: 13px;
  }
}
.topics__arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 2.5px #000;
  border-right: solid 2.5px #000;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .topics__arrow::after {
    width: 5px;
    height: 5px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    right: 7.5px;
  }
}

.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 */