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

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

a {
  text-decoration: none;
}

.global_head {
  margin: 0;
}

.wrap {
  background: #f7f5e9;
  font-family: "M PLUS 1p";
  position: relative;
  z-index: 0;
}
.wrap::after {
  content: "";
  height: 100%;
  width: 100%;
  background: url(../img/bg-texture.jpg) repeat top left/250px 250px;
  mix-blend-mode: overlay;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.content {
  overflow: hidden;
}

h2 {
  font-family: "Montserrat";
  text-align: center;
  font-size: 5.5rem;
  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;
  }
}

.block {
  margin: 0 auto;
  max-width: 1500px;
  width: calc(100% - 40px);
}
@media only screen and (max-width: 767px) {
  .block {
    width: calc(100% - 40px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes snowfall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(900px) rotate(360deg);
    opacity: 0;
  }
}
.hero {
  text-align: center;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .hero {
    height: 600px;
  }
}
.hero::after {
  content: "";
  width: 100%;
  height: 100px;
  background: url(../img/hero-line.png) repeat-x top left/contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .hero::after {
    height: 50px;
  }
}
.hero h1 {
  margin: -30px 0 0;
  text-align: center;
  position: relative;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease-out 1s forwards;
}
.hero h1 img {
  width: 650px;
}
@media only screen and (max-width: 767px) {
  .hero h1 img {
    width: 80%;
    margin: -30px 0 0;
  }
}
.hero__img {
  position: absolute;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
}
.hero__img.hero-img-top-left {
  top: -200px;
  left: 50%;
  width: 850px;
  transform: translateX(calc(-50% - 450px));
}
@media only screen and (max-width: 767px) {
  .hero__img.hero-img-top-left {
    top: -80px;
    width: 450px;
    transform: translateX(calc(-50% - 150px));
  }
}
.hero__img.hero-img-top-right {
  top: -200px;
  left: 50%;
  width: 850px;
  transform: translateX(calc(-50% + 350px));
}
@media only screen and (max-width: 767px) {
  .hero__img.hero-img-top-right {
    top: -80px;
    width: 450px;
    transform: translateX(calc(-50% + 100px));
  }
}
.hero__img.hero-img-bottom-left {
  bottom: -50px;
  left: 50%;
  width: 850px;
  transform: translateX(calc(-50% - 500px));
}
@media only screen and (max-width: 767px) {
  .hero__img.hero-img-bottom-left {
    bottom: -10px;
    width: 450px;
    transform: translateX(calc(-50% - 200px));
  }
}
.hero__img.hero-img-bottom-right {
  bottom: -50px;
  left: 50%;
  width: 850px;
  transform: translateX(calc(-50% + 400px));
}
@media only screen and (max-width: 767px) {
  .hero__img.hero-img-bottom-right {
    bottom: -40px;
    width: 450px;
    transform: translateX(calc(-50% + 100px));
  }
}
.hero__snow {
  position: absolute;
  top: -50px;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 5;
}
.hero__snow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.intro {
  display: grid;
  gap: 30px 0;
  text-align: center;
  padding: 100px 0 130px;
  position: relative;
  background: linear-gradient(#ffcefe, transparent);
  background: #ffcefe;
}
@media only screen and (max-width: 767px) {
  .intro {
    padding: 50px 0 80px;
  }
}
.intro__lead {
  max-width: 400px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .intro__lead {
    width: 280px;
  }
}
.intro__text {
  margin: 0;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 2.3;
  letter-spacing: 0.05rem;
}
@media only screen and (max-width: 767px) {
  .intro__text {
    font-size: 1rem;
    line-height: 2;
  }
}
@keyframes fadeInFromTopLeft {
  from {
    opacity: 0;
    transform: translateX(calc(-50% - 400px)) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(calc(-50% - 400px)) translateY(0);
  }
}
@media only screen and (max-width: 767px) {
  @keyframes fadeInFromTopLeft {
    from {
      opacity: 0;
      transform: translateX(calc(-50% - 160px)) translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(calc(-50% - 160px)) translateY(0);
    }
  }
}
@keyframes fadeInFromTopRight {
  from {
    opacity: 0;
    transform: translateX(calc(-50% + 370px)) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(calc(-50% + 370px)) translateY(0);
  }
}
@media only screen and (max-width: 767px) {
  @keyframes fadeInFromTopRight {
    from {
      opacity: 0;
      transform: translateX(calc(-50% + 150px)) translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(calc(-50% + 150px)) translateY(0);
    }
  }
}
.intro .topics-img {
  position: absolute;
  bottom: -180px;
  z-index: 10;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .intro .topics-img {
    bottom: -100px;
  }
}
.intro .topics-img.topics-img-left {
  left: 50%;
  width: 300px;
}
@media only screen and (max-width: 767px) {
  .intro .topics-img.topics-img-left {
    width: 190px;
  }
}
.intro .topics-img.topics-img-left.show {
  animation: fadeInFromTopLeft 1s ease-out forwards;
}
.intro .topics-img.topics-img-right {
  left: 50%;
  width: 290px;
}
@media only screen and (max-width: 767px) {
  .intro .topics-img.topics-img-right {
    width: 170px;
  }
}
.intro .topics-img.topics-img-right.show {
  animation: fadeInFromTopRight 1s ease-out 0.2s forwards;
}

.topics {
  position: relative;
  z-index: 0;
  background: linear-gradient(#ffcefe, #fcfbf5 50%);
  padding: 170px 0 270px;
}
@media only screen and (max-width: 767px) {
  .topics {
    padding: 100px 0 140px;
  }
}
.topics::before {
  content: "";
  background: linear-gradient(#fcfbf5, transparent);
  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) {
  .topics::before {
    width: 230vw;
  }
}
.topics::after {
  content: "";
  width: 100%;
  height: 100px;
  background: url(../img/shop-line.png) repeat-x top left/contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .topics::after {
    height: 50px;
  }
}
.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: #fff;
  border: 2px solid #000;
  width: 150px;
  height: 50px;
  border-radius: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}
@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 {
    background-color: #f1f1f1;
  }
}
.topics .topics-nav .narrow-active {
  background-color: #000;
  color: #fff;
}
.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% - 80px) / 5);
  overflow: hidden;
  border-radius: 20px;
  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);
    padding: 13px 10px 15px;
  }
}
.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: #ff88ad;
}
.topics.is-mode-all .topics__item.is-all-2 {
  background-color: #ff651a;
}
.topics.is-mode-all .topics__item.is-all-3 {
  background-color: #449ded;
}
.topics.is-mode-all .topics__item.is-all-4 {
  background-color: #00bf6b;
}
.topics:not(.is-mode-all) .topics__item.is-grp-1 {
  background-color: #ff88ad;
}
.topics:not(.is-mode-all) .topics__item.is-grp-2 {
  background-color: #ff651a;
}
.topics:not(.is-mode-all) .topics__item.is-grp-3 {
  background-color: #449ded;
}
.topics:not(.is-mode-all) .topics__item.is-grp-4 {
  background-color: #00bf6b;
}
.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: #000;
  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;
  border: 2px solid #000;
  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: 95%;
    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.9rem;
    line-height: 1.3;
  }
}
.topics__soon {
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .topics__soon {
    font-size: 1rem;
  }
}
.topics .narrow-hide {
  display: none !important;
}

.shop {
  background-color: #b9caef;
  padding: 130px 0 150px;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .shop {
    padding: 50px 0 80px;
  }
}
.shop__content {
  display: grid;
  gap: 30px;
}
.shop__map {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.shop__map iframe {
  height: 550px;
  border-radius: 25px;
  border: 2px solid #000;
}
@media only screen and (max-width: 767px) {
  .shop__map iframe {
    height: 400px;
  }
}
.shop__name {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .shop__name {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.shop__name span {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  background-color: #000;
  color: #fff;
  padding: 3px 13px;
}
@media only screen and (max-width: 767px) {
  .shop__name span {
    font-size: 0.9rem;
  }
}
.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;
  border: 2px solid #000;
  color: #000;
  background-color: #fff;
  box-shadow: 5px 5px 0 #000;
  width: 480px;
  height: 80px;
  border-radius: 99px;
  margin: 50px auto 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .shop__link {
    max-width: 280px;
    height: 70px;
    font-size: 1.1rem;
    margin: 30px auto 0;
  }
}
.shop__link:hover {
  translate: 5px 5px;
  box-shadow: 0 0 0 #000;
}

@media only screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */