@charset "UTF-8";

@media (min-width: 769px) {
  main .inner {
    width: 1040px;
  }
}

#page-happybag2025_gentei img {
  display: block;
}

.btn-cart {
  cursor: pointer;
}

@media (max-width: 768px) {
  .inner {
    padding: 0;
  }
}

/* 注意事項 */
.attention {
  border: 1px solid #333333;
  margin-top: 40px;
  padding: 40px;
}
.attention__heading {
  margin: 0 0 1em;
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
}
.attention__text {
  line-height: 1.7;
}
.attention__text a {
  color: #B9647B;
}
.attention__text p {
  margin-top: 1em;
}
.attention__text ul {
  margin: 1em 0 0 1em;
}
.attention__text li::before {
  content: "・";
  display: inline-block;
  text-indent: -1em;
}


@media screen and (max-width: 820px) {
  /* 注意事項 */
  .attention {
    padding: 30px 20px;
    margin: 40px 20px;
  }
  .attention__heading {
    margin: 0 0 0.5em;
    font-size: 2.4rem;
  }
}


/* モーダル上書き */
.cartModal .cartModalLinks .note {
  text-align: center;
  text-decoration: underline;
}
.cartModal .cartModalLinks .note::after {
  content: " ＞";
}
.cartModal .cartModalItemList .additionalText {
  text-align: center;
  font-weight: bold;
  width: 100%;
  margin: 0 0 12px 0;
  font-size: 12px;
  line-height: 1.3;
}

.cartModal .cartModalItemList {
  gap: 10px 2%;
}
.cartModal .cartModalItemList .limited {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  background-color: #d4d4d4;
  border-radius: 5px;
  margin: 20px 0 0 0;
  padding: 20px 10px 10px;
}
@media screen and (max-width: 768px) {
  .cartModal .cartModalItemList {
    gap: 10px 2%;
  }
  .cartModalItemList li {
    width: 23.5%;
  }
  .cartModal .cartModalItemList .limited {
    gap: 10px 2%;
  }
}

.cartModal .note.additional {
  display: flex;
  justify-content: center;
  text-align: left;
}



input[type=checkbox] {
  display: none !important;
}

.checkbox {
  position: relative;
  display: inline-block;
  padding: 0 0 0 32px;
  cursor: pointer;
  width: auto;
  line-height: 1;
  box-sizing: border-box;
}

.checkbox::before {
  content: "";
  position: absolute;
  left: 5px;
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #ae2d35;
}

.checkbox::after {
  border-right: 2px solid #ae2d35;
  border-bottom: 2px solid #ae2d35;
  content: "";
  display: block;
  height: 12px;
  left: 12px;
  margin-top: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 6px;
}

input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}

.l-note {
  margin: 1em 0;
  padding: 1.5em 1em 1.25em;
  border-radius: 10px;
  background: #dddddd;
}

.cartModal .note.noteAgree {
  margin: 0;
  color: #ae2d35;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: left;
}

.noteAgree li + li {
  margin-top: 0.5em;
}

.agree {
  padding: 10px;
  text-align: center;
  color: #ae2d35;
  line-height: 1.5;
}
.agree .note {
  display: block;
  margin-top: 0.5em;
}
.agree .required {
  display: inline-block;
  margin: 0 6px 0 0;
  padding: 4px 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  background: #ae2d35;
  border-radius: 3px;
}
.agree .checkbox em {
  font-weight: bold;
}

@media screen and (max-width: 820px) {
  .checkbox {
    font-size: 13px;
  }
  .agree .note {
    margin-top: 1em;
  }
}

/*------------------------------------------------------
  光るボタン
------------------------------------------------------*/
.shiny-btn {
  position: relative;
  overflow: hidden;
}
.shiny-btn::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -20%;
  width: 8.4%;
  height: 100%;
  transform: scale(2) rotate(20deg) translate3d(0, 0, 0);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  /* アニメーション */
  -webkit-animation-name: shiny;
  animation-name: shiny;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* アニメーション */
@-webkit-keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

/*------------------------------------------------------
  フワフワボタン
------------------------------------------------------*/
.updown {
  -webkit-animation-name: updown;
  animation-name: updown;
  /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0);
  }
}


/*------------------------------------------------------
  CTA
------------------------------------------------------*/
.cta {
  position: relative;
}
.cta .btn-cart {
  position: absolute;
  top: 0;
}
.cta .btn-cart.wide {
  left: 7.4%;
  max-width: 891px;
  width: 100%;
}
.cta .btn-cart.short {
  right: 2.7%;
  max-width: 453px;
  width: 100%;
}

@media screen and (max-width: 820px) {
  .cta .btn-cart.wide {
    width: 89.1%;
  }
  .cta .btn-cart.short {
    width: 45.3%;
  }
}