@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background-color: #0168b7;
}
body.modal-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

.global_head {
  margin: 0;
}

h2 {
  font-family: "Montserrat";
  text-align: center;
  font-size: 4.8rem;
  line-height: 0.8;
  font-weight: 800;
  margin: 0 0 60px;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 2.5rem;
    margin: 0 0 40px;
  }
}

.wrap {
  font-family: "M PLUS 1p";
  overflow: hidden;
}

.block {
  max-width: 1200px;
  width: calc(100% - 50px);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .hero {
    min-height: auto;
    height: 630px;
  }
}
.hero h1 {
  margin: -80px 0 0;
  width: 55vw;
  max-width: 1119px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .hero h1 {
    margin: -30px 0 0;
    width: 90vw;
  }
}
.hero h1 img {
  width: 100%;
  height: auto;
}
.hero__img {
  position: absolute;
  width: 100%;
  left: 0;
}
.hero__img.img-top {
  top: 0;
}
.hero__img.img-bottom {
  bottom: 0;
}
.hero__img img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__img.pconly {
  height: 100%;
}
.hero__img.pconly img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.intro {
  text-align: center;
  color: #fff;
  font-weight: 500;
  display: grid;
  gap: 20px 0;
  padding: 100px 0 0;
}
@media only screen and (max-width: 767px) {
  .intro {
    gap: 15px 0;
    padding: 70px 0 0;
  }
}
.intro p {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  .intro p {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.8;
  }
}
.intro p span {
  background-color: #e6301b;
  font-weight: 600;
  margin: 0 5px;
  padding: 0 5px;
}

.topics {
  position: relative;
  z-index: 0;
  padding: 170px 0;
}
@media only screen and (max-width: 767px) {
  .topics {
    padding: 100px 0;
  }
}
.topics h2 {
  color: #fff;
}
.topics .topics-nav {
  list-style: none;
  margin: 0 auto 80px;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 7px;
  max-width: 1200px;
}
@media only screen and (max-width: 767px) {
  .topics .topics-nav {
    margin: 0 auto 40px;
    gap: 10px 7px;
  }
}
.topics .topics-nav__item {
  background-color: #e50012;
  color: #fff;
  width: 150px;
  height: 50px;
  border-radius: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .topics .topics-nav__item {
    width: calc((100% - 14px) / 3);
    font-size: 0.9rem;
    height: 45px;
  }
}
@media only screen and (min-width: 768px) {
  .topics .topics-nav__item:hover::before {
    content: "";
    background: url(../img/tab-hover.png) no-repeat top left/contain;
    width: 35px;
    height: 35px;
    position: absolute;
    top: -15px;
    left: -6px;
    z-index: -1;
    animation: slideUpFromBottom 0.5s ease-out forwards;
  }
}
.topics .topics-nav .narrow-active {
  background-color: #f1f1f1;
  color: #0168b7;
}
.topics .topics-nav .narrow-active::before {
  content: "";
  background: url(../img/tab-active.png) no-repeat top left/contain;
  width: 35px;
  height: 35px;
  position: absolute;
  top: -15px;
  left: -6px;
  z-index: -1;
  animation: slideUpFromBottom 0.5s ease-out forwards;
}
@media only screen and (max-width: 767px) {
  .topics .topics-nav .narrow-active::before {
    width: 28px;
    height: 28px;
    top: -10px;
    left: -4px;
  }
}
.topics__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .topics__list {
    gap: 15px;
  }
}
.topics__item {
  background-color: #fff;
  width: calc((100% - 60px) / 4);
  overflow: hidden;
  border-radius: 30px;
  padding: 15px 15px 20px;
  transition: 0.3s;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .topics__item {
    width: calc((100% - 15px) / 2);
    border-radius: 20px;
    padding: 10px 10px 13px;
  }
}
.topics__item:hover {
  transform: scale(1.1);
}
@media only screen and (max-width: 767px) {
  .topics__item:hover {
    transform: scale(1);
  }
}
.topics__item a {
  color: #000;
  display: block;
}
.topics.is-mode-all .topics__item.is-all-1 {
  background-color: #e50012;
}
.topics.is-mode-all .topics__item.is-all-1 a {
  color: #fff;
}
.topics.is-mode-all .topics__item.is-all-2 {
  background-color: #f2f2f2;
}
.topics.is-mode-all .topics__item.is-all-2 a {
  color: #0168b7;
}
.topics:not(.is-mode-all) .topics__item.is-grp-1 {
  background-color: #e50012;
}
.topics:not(.is-mode-all) .topics__item.is-grp-1 a {
  color: #fff;
}
.topics:not(.is-mode-all) .topics__item.is-grp-2 {
  background-color: #f2f2f2;
}
.topics:not(.is-mode-all) .topics__item.is-grp-2 a {
  color: #0168b7;
}
.topics__head {
  display: flex;
  justify-content: space-between;
  line-height: 1;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .topics__head {
    flex-direction: column;
    justify-content: normal;
    align-items: center;
    gap: 7px 0;
    margin-bottom: 10px;
  }
}
.topics__cat {
  background-color: #0168b7;
  color: #fff;
  border-radius: 99px;
  font-weight: 600;
  padding: 5px 15px;
  font-size: 0.85rem;
}
@media only screen and (max-width: 767px) {
  .topics__cat {
    font-size: 0.8rem;
  }
}
.topics__date {
  font-family: "Montserrat";
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .topics__date {
    text-align: right;
    font-size: 0.9rem;
  }
}
.topics__image {
  background-color: #f1f1f1;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  width: 90%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .topics__image {
    width: 85%;
    margin: 0 auto 10px;
  }
}
.topics__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topics__text {
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 0.05rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .topics__text {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}
.topics__soon {
  color: #fff;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .topics__soon {
    font-size: 1rem;
  }
}
.topics .narrow-hide {
  display: none !important;
}

.shop {
  position: relative;
  padding: 170px 0;
  background: linear-gradient(transparent, #f2f2f2 50%);
  color: #0168b7;
}
@media only screen and (max-width: 767px) {
  .shop {
    padding: 100px 0 100px;
  }
}
.shop::before {
  content: "";
  background: #f2f2f2;
  border-radius: 50% 50% 0 0;
  width: 130vw;
  height: 1500px;
  top: 0;
  left: 50%;
  translate: -50% 0;
  position: absolute;
  z-index: -2;
}
@media only screen and (max-width: 767px) {
  .shop::before {
    width: 250vw;
  }
}
.shop h2 {
  color: #e50012;
}
.shop__content {
  display: grid;
  gap: 40px 0;
}
.shop__map {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.shop__map iframe {
  height: 550px;
  border-radius: 25px;
}
@media only screen and (max-width: 767px) {
  .shop__map iframe {
    height: 400px;
  }
}
.shop__name {
  text-align: center;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .shop__name {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.shop__info {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 350px);
  gap: 0 40px;
}
@media only screen and (max-width: 767px) {
  .shop__info {
    text-align: center;
    grid-template-columns: auto;
    gap: 15px 0;
    font-size: 0.95rem;
  }
}
.shop__info-item {
  display: grid;
  gap: 15px 0;
}
.shop__link {
  display: block;
  color: #fff;
  background-color: #e50012;
  width: 380px;
  height: 80px;
  border-radius: 99px;
  margin: 50px auto 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .shop__link {
    max-width: 280px;
    height: 65px;
    font-size: 1rem;
    margin: 30px auto 0;
  }
}
.shop__link:hover {
  filter: brightness(1.2);
}

.back-top-top {
  background-color: #e50012;
  position: fixed;
  bottom: 30px;
  right: 40px;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-family: "Montserrat";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .back-top-top {
    bottom: 20px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
}
@media only screen and (min-width: 768px) {
  .back-top-top:hover {
    scale: 1.1;
  }
}
.back-top-top::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f106";
}
@media only screen and (max-width: 767px) {
  .back-top-top::before {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .back-top-top::before {
    font-size: 1.8rem;
  }
}
.back-top-top::after {
  content: "";
  background: url(../img/tab-hover.png) no-repeat top left/contain;
  width: 35px;
  height: 35px;
  position: absolute;
  top: -15px;
  left: -6px;
  z-index: -1;
  animation: slideUpFromBottom 0.5s ease-out forwards;
}
@media only screen and (max-width: 767px) {
  .back-top-top::after {
    width: 28px;
    height: 28px;
    top: -10px;
    left: -4px;
  }
}
.back-top-top p {
  margin: -2px 0 0;
  font-size: 0.65rem;
}
@media only screen and (max-width: 767px) {
  .back-top-top p {
    margin: -4px 0 0;
  }
}

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

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

@keyframes slideUpFromBottom {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */