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

/*------------------------------------------------------
  ラインナップをCHECK
------------------------------------------------------*/
.l-lineup {
  padding: 100px 0 158px;
  background: #362e2a;
}
.check_title {
  display: block;
  margin: 0 auto;
  max-width: 608px;
}
.lineup {
  max-width: 880px;
  margin: 94px auto 0;
}
.row {
  display: flex;
  gap: 20px;
}
.row:not(:last-of-type) {
  margin-bottom: 22px;
}
.card {
  display: block;
  flex: 1 1 0;          /* flex-grow:1 で横幅を均等に伸ばす */  
  overflow: hidden;
}
/* 上段は1枚だけなのでそのまま全幅 */
.row-top .card-top {
  flex: 1 1 100%;
}
.row.row-bottom {
  gap: 40px;
}
/* 画像をカードいっぱいに広げる */
.card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .l-lineup {
    padding: 9.867vw 0 15.733vw;
  }
  .check_title {
    max-width: 61.067vw;
  }
  .lineup {
    max-width: 88vw;
    margin: 34px auto 0;
  }
  .row {
    gap: 1.867vw;
  }
  .row:not(:last-of-type) {
    margin-bottom: 2.133vw;
  }
  .row.row-bottom {
    gap: 4vw;
  }
}

/*------------------------------------------------------
  注意事項
------------------------------------------------------*/
.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;
  }
}


/*------------------------------------------------------
  CTA
------------------------------------------------------*/
.cta {
  position: relative;
}
.cta .btn-cart {
  position: absolute;
  bottom: 115px;
  width: 100%;
}
.cta .btn-cart.wide {
  left: 120px;
  max-width: 761px;
}
.cta .btn-cart.short {
  right: 115px;
  max-width: 367px;
}
.cta-note {
  position: absolute;
  bottom: 70px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 820px) {
  .cta .btn-cart {
    bottom: 11.733vw;
  }
  .cta .btn-cart.wide {
    left: 12vw;
    width: 76.267vw;
  }
  .cta .btn-cart.short {
    right: 11.467vw;
    width: 36.8vw;
  }
  .cta-note {
    bottom: 5.333vw;
    font-size: 2.667vw;
  }
}