/*砂丘メロン専用スタイル*/
#wrapper {
    max-width: none!important;
}
#container {
    max-width: 750px;/*コンテンツ最大幅*/
    padding-top: 0px!important;
}
#header {
    display: none;
}
#footer {
    max-width: 100%;
}
@media screen and (min-width: 750px) {
    #body-lp #container {
        padding: 30px 0;
    }
    #body-lp .item-order {
        margin: 0 auto;
    }
    .no_inner {
        max-width: max-content;
    }
}

/*ボタン*/
.btn-buy {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;
    position: relative;
    overflow: hidden;
    padding: 5px;
    text-decoration: none!important;
    font-size: 24px;
    font-family: "游ゴシック", YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
    font-weight: bold;
	font-style: normal;
	word-wrap: break-word;
    border-radius: 20px;
    line-height: 100%;
}
.btn-buy span {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;
    padding: 20px 10px;
    width: 100%;
    border-radius: 18px;
    background: linear-gradient(to right,  rgba(127,0,0,1) 0%,rgba(134,40,0,1) 20%,rgba(189,47,23,1) 40%,rgba(233,0,31,1) 60%,rgba(183,21,0,1) 80%,rgba(211,45,0,1) 100%);
    transition: all 0.5s 0s ease;
}
.btn-buy span::after {
    content: "";
    width: 1em;
    height: 1em;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10,0C4.5,0,0,4.5,0,10s4.5,10,10,10,10-4.5,10-10S15.5,0,10,0M7.7,16.7V3.3l6.7,6.7-6.7,6.7Z'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    background-color: currentColor;
    transform-origin: center center;
}
.btn-buy::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,  rgba(192,102,0,1) 0%,rgba(255,203,0,1) 16%,rgba(188,138,0,1) 33%,rgba(255,255,158,1) 51%,rgba(188,138,0,1) 70%,rgba(238,228,100,1) 87%,rgba(192,102,0,1) 100%);
}
.btn-buy:hover {
    color: #FFF!important;
}
.btn-buy span:hover {
    background: #22af73;
}

/*エディター部分*/
.wysiwyg-data {
    padding: 0px;
}

/*カート部分*/
.item-order {
    padding: 20px!important;
    display: flex;
    gap: 20px;
    width: 100%!important;
}
.item-detail-cart {
    padding: 0;
    width: auto;
    flex:1;
}
.lp-img {
    margin-bottom: 0px;
}
.js-counter-wrap {
    padding: 10px;
    border-radius: 10px;
    background-color: #FFF;
    border: 3px solid #22af73;
    margin-bottom: 20px;
}
.js-counter-wrap p {
    text-align: center;
    color: #22af73;
    font-weight: bold;
}
.item-detail-radio {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}
.item-detail-num-count {
    justify-content: center;
    margin: 0;
}
.item-detail-radio > div {
    display: inline-flex;
    padding: 10px 20px;
    margin: 0;
    background-color: rgb(249, 238, 221);
    border-radius: 50px;
    cursor: pointer;
}
.item-detail-radio input + label::before {
    background: #FFF;
}
.item-detail-num-plus a,
.item-detail-num-minus a {
    border-radius: 50%;
}
@media screen and (min-width: 750px) {
    .lp-img {
        width: calc((100% - 20px) / 2);
    }
}
@media screen and (max-width: 749px) {
    .item-order {
        flex-direction: column;
    }
    .lp-img {
        width: 100%;
    }
}