@charset "Utf-8";

/* リセットCSS・全体設定 */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 1s;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

nav,
main,
footer {
  margin: 0 auto;
  width: min(100%, 1000px);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  font-family: "Zen Maru Gothic", serif;
  background-color: #f8eedb;
}

img {
  max-width: 100%;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

.yomogi-regular {
  font-family: "Yomogi", cursive;
  font-weight: 400;
  font-style: normal;
}


/* ここからgoods */
h3 {
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.7em;
}

.button {
  display: block;
  width: fit-content;
  margin: 30px auto;
}
.button {
  background-color: #feea25;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 0 #a09745;
  transition:0.3s;

}
.button:hover{
  transform: translateY(3px);
  transition:0.3s;
  box-shadow: none;
}
.page-animation::before {
  content: "";
  animation-name: pageAnime;
  background: #3a5b72;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  animation-duration: 1s;
  animation-delay: 0;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
  }
.hiyokoosusume {
  display: flex;
  justify-content: center;
}

.hiyokoosusume img {
  width: 30px;
}

.goods-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.goods-intro {
  background: url(../images/intro.png) no-repeat;
  background-size: contain;
  width: 200px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.goods-list-small {
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
  gap: 20px;
}

.goods-list-small li {
  background: #fff;
  border-radius: 10px;
  width: 40%;
  text-align: center;
  padding: 20px;
}
.goods-list-small img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.shop-button-panda {
  display: block;
  width: fit-content;
  transition:0.5s;
  margin: 0 auto;
}

.shop-button-panda:hover{
  transform: translateY(4px);
  transition:0.3s;
}