/* -------------------- */
/* -     animation          - */
/* -------------------- */
.poyopoyo {
  opacity: 0;
  transform: translateY(50px);
  /* 初期状態：下からずらす */
  transition: opacity 0.3s ease;
}

.poyopoyo.animate {
  animation: poyopoyoBounce 0.6s ease;
  opacity: 1;
  transform: translateY(0);
}

.poyopoyo:hover {
  animation: poyopoyoBounce 0.6s ease;
}

/* type-b だけ遅延させる */
.poyopoyo.animate.type-b {
  animation-delay: 0.5s;
  /* 0.3秒遅れて開始 */
}

@keyframes poyopoyoBounce {
  0% {
    transform: scale(1) translateY(0);
  }

  30% {
    transform: scale(1.2) translateY(-10px);
  }

  60% {
    transform: scale(0.95) translateY(0);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

/* -------------------- */
/* -     共通         - */
/* -------------------- */


.ml_kuromi {
  overflow: hidden;
  text-align: center;
  background: #FBF9EB url(../img/bg.webp) no-repeat center top;
}

@media screen and (max-width: 767px) {
  .ml_kuromi {
    background: #FBF9EB url(../img/bg_sp.webp) no-repeat center top;
  }
}

/* -------------------- */
/* -     kv           - */
/* -------------------- */

section.kuromi__kv {
  background: url(../img/kv_bg.webp) no-repeat center top 120px;
  background-size: 1720px auto;
  width: 100%;
  text-align: center;
  padding-inline: 10px;
  padding-top: 50px;
  padding-bottom: 70px;
}

@media screen and (max-width: 767px) {
  section.kuromi__kv {
    background: url(../img/kv_bg_sp.webp) no-repeat center top;
    background-size: 100% auto;
    padding-top: 0;
    padding-inline: 0;
    padding-bottom: 0;
  }
}

.kuromi__kv-wrap {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}

/* -------------------- */
/* -  limited item    - */
/* -------------------- */

section.kuromi__limited-item {
  width: 100%;
  padding-bottom: 70px;
  padding-inline: 10px;
}

.limited-item__ttl {
  max-width: 786px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: min(10vw, 60px);
}

@media screen and (max-width: 767px) {
  .limited-item__ttl {
    max-width: 480px;
    width: 80vw;
  }
}

.kuromi__limited-item-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  gap: 60px;
}

.limited-img {
  max-width: 300px;
  width: 72%;
}

.loose00-kuromi {
  position: relative;
  width: calc(100% - 22px);
  text-align: right;
}

.loose00-kuromi_icon {
  position: absolute;
  max-width: 150px;
  width: 32%;
  aspect-ratio: 1/1;
  left: 0;
  top: 20%;
}

.loose20-kuromi_icon {
  position: absolute;
  max-width: 150px;
  width: 32%;
  aspect-ratio: 1/1;
  right: 0;
  top: 20%;
}

.loose20-kuromi {
  position: relative;
  width: calc(100% - 22px);
  text-align: left;
}

@media screen and (max-width: 767px) {
  .kuromi__limited-item-wrapper {
    flex-direction: column;
  }

  .loose00-kuromi,
  .loose20-kuromi {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }

  .limited-img {
    width: 75%;
    padding-left: auto;
  }

  .loose00-kuromi_icon,
  .loose20-kuromi_icon {
    width: 32%;
    max-width: 150px;
    z-index: 2;
    top: 12%;
    left: 0;
  }

  .loose20-kuromi {
    text-align: right;
  }

  .limited-img {
    width: 75%;
  }
}


/* -------------------- */
/* -  limited design  - */
/* -------------------- */

section.kuromi__limited-design {
  width: 100%;
  padding-top: 30px;
  padding-bottom: min(10vw, 60px);
  padding-inline: 10px;
}

.kuromi__limited-design--wrap {
  max-width: 1080px;
  margin-inline: auto;
}

.design-container {
  display: flex;
  /* max-width: 1080px; */
  width: 100%;
  justify-content: space-between;
}

.design-item01 {
  background-image: url(../img/limited-design01_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: calc(50% - 2%);
  height: fit-content;
  top: 0;
  left: 0;
}

.design-item02 {
  background-image: url(../img/limited-design02_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: calc(50% - 2%);
  height: fit-content;
  top: 0;
  left: 0;
}

.design-item__wrap {
  display: grid;
  grid-template-columns: 22fr 19fr;
  align-items: center;
  gap: 2%;
  padding-inline: 40px;
  margin-top: 35px;
  margin-bottom: 25px;
}

.amazon__btn {
  margin-bottom: 10px;
}

.big {
  margin-bottom: 10px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.big:hover {
  transform: scale(1.1, 1.1);
}

.kuromi-prod__btn {
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {

  .design-container {
    max-width: 520px;
    margin-inline: auto;
    flex-direction: column;
    gap: 2%;
  }

  .design-item01,
  .design-item02 {
    width: 100%;
  }

  .design-item01 {
    margin-bottom: 5%;
  }

}

/* -------------------- */
/* -   choice   - */
/* -------------------- */

section.kuromi__choice {
  width: 100%;
  position: relative;
}

h3.choice__ttl {
  max-width: 80vw;
  width: 788px;
  margin-inline: auto;
  margin-bottom: min(10vw, 60px);
}

.choice__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .choice__container {
    grid-template-columns: 1fr;
  }
}

.choice__block01 {
  text-align: right;
  background: url(../img/choice01_bg.webp) repeat right top;
  padding-block: min(60px, 10vw);
  padding-inline: min(75px, 10vw);
}

@media screen and (max-width: 767px) {
  .choice__block01 {
    text-align: center;
  }
}

.choice__block02 {
  text-align: left;
  background: url(../img/choice02_bg.webp) repeat left top;
  padding-block: min(60px, 10vw);
  padding-inline: min(75px, 10vw);
}

@media screen and (max-width: 767px) {
  .choice__block02 {
    text-align: center;
  }
}

/* -------------------- */
/* -  point           - */
/* -------------------- */

section.kuromi__point {
  width: 100%;
  padding-inline: 10px;
  padding-top: min(10vw, 60px);
  padding-bottom: min(20vw, 200px);
  position: relative;
}
dding-bottom: min(20vw, 200px);
}
section.kuromi__point::after {
  content: "";
  background: url(../img/point_bg.webp) repeat-x center bottom;
  background-size: min(900px, 80vw) auto;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100%;
}

h3.point__ttl {
  width: 35vw;
  max-width: 320px;
  margin-inline: auto;
  margin-bottom: min(10vw, 60px);
}

.point01 img{
  margin-bottom: min(5vw, 60px);
}

.point02 img{
  margin-bottom: min(10vw, 100px);
}
.point__sugi {
  margin-bottom: min(10vw, 120px);
}

.copyright {
  width: 70%;
  max-width: 410px;
  margin-inline: auto;
}


@media screen and (max-width: 767px) {

  section.kuromi__point::after {
    bottom: 0;
    height: 30vw;
  }
}

/* =========================================== */
/*    type
/* =========================================== */
.type {
  background-color: white;
  padding-top: min(12vw, 120px);
  padding-bottom: min(10vw, 80px);
  padding-inline: min(5vw, 30px);
}
.type__inner {
  max-width: 950px;
  margin-inline: auto;
}

.type__title {
  text-align: center;
  margin-bottom: min(8vw, 50px);
}

.type__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(3vw, 10px);
}

@media screen and (max-width:768px) {
  .type__list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(6vw, 15px);
  }
}

.type__list img {
  width: 100%;
}
