@charset "UTF-8";

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

#page-summerhappybag_2025 img {
  display: block;
}


/*
商品詳細はこちら
================================================ */
.detail {
  position: relative;
}
.detail .button_detail {
  position: absolute;
  bottom: 350px;
  right: 40px;
  max-width: 572px;
}
@media (max-width: 768px) {
  .detail .button_detail {
    bottom: 37.333vw;
    right: 3.2vw;
    width: 60%;
  }
}


/*
ラインナップをCheck！
================================================ */
.l-lineup {
  position: relative;
}
.lineup {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.lineup a {
  display: block;
  max-width: 975px;
}
.lineup img {
  width: 100%;
}

@media screen and (max-width: 820px) {
  .lineup a {
    width: 90%;
  }
}


/*
注意事項
================================================ */
.attention {
  border: 1px solid #333;
  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;
  }
}


/*------------------------------------------------------
  CTA
------------------------------------------------------*/
.cta {
  position: relative;
}
.cta .btn-cart {
  position: absolute;
  cursor: pointer;
}
.cta .btn-cart img {
  width: 100%;
}
.cta .btn-cart.wide {
  left: 80px;
  bottom: 50px;
  max-width: 850px;
  width: 100%;
}
.cta .btn-cart.short {
  right: 50px;
  bottom: 40px;
  max-width: 420px;
  width: 100%;
}
.btn-cart.short {
  bottom: 80px;
}

@media screen and (max-width: 820px) {
  .cta .btn-cart.wide {
    left: 6.4vw;
    bottom: 3.733vw;
    width: 89.1%;
  }
  .cta .btn-cart.short {
    right: 5.333vw;
    bottom: 5.867vw;
    width: 40vw;
  }
}


/*------------------------------------------------------
  モーダル
------------------------------------------------------*/
.modal-1__wrap {
  display: inline-block;
}
.modal-1__wrap input {
  display: none;
}
.modal-1__open-label,
.modal-1__close-label {
  cursor: pointer;
}
.modal-1__open-label {
  color: #4f96f6;
  font-size: .95em;
}
.modal-1__open-label:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #c7511f;
}
.modal-1 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
.modal-1__open-input:checked + label + input + .modal-1 {
  display: block;
  animation: modal-1-animation .6s;
}
.modal-1__content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1000px;
  background-color: #fefefe;
  z-index: 2;
  border-radius: 5px;
}
.modal-1__close-label {
  background-color: #333;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.5;
  text-align: center;
  display: table-cell;
  position: fixed;
  top: -15px;
  right: -2%;
  z-index: 99999;
  font-size: 1.4em;
}
.modal-1__content {
  max-height: 60vh;
  overflow-y: auto;
}
.modal-1__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-1-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 520px) {
  .modal-1__open-label {
    max-width: 90%;
    padding: .94em 2.1em .94em 2.6em;
  }

  .modal-1__close-label {
    top: -17px;
    right: -4%;
  }
  .modal-1__content-wrap {
    width: 90vw;
  }
  .modal-1__content {
    max-width: 100%;
  }
}