@charset "UTF-8";

/*-------------------------------

	リセットCSS

-------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

p,
li {}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    transition: 0.3s;
    text-decoration: none;
}


/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

/*-------------------------------

	共通CSS

-------------------------------*/

/*---------- Html・Body ----------*/

body {
    font-size: 16px;
    color: #333333;
    line-height: 1.3;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/*---------- 切替 ----------*/

.pc {
    display: inline-block;
}

.sp {
    display: none;
}

/*------PCでは無効（改行しない）------*/
.sma {
    display: none;
}

/*---------- セクション ----------*/

section {
    padding: 100px 0;
    text-align: center;
}

/*---------- インナー ----------*/

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/*---------- Flex ----------*/

.flex-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*---------- マージン ----------*/

.mb-l {
    margin-bottom: 30px;
}

/*---------- 見出し ----------*/

h2 {
    max-width: 992px;
    width: 100%;
    margin: 0 auto 60px;
    text-align: center;
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-size: 40px;
    color: #c49c5f;
    letter-spacing: 2px;
}

h2 img {
    width: 100%;
    height: auto;
}

/*---------- Animation ----------*/

/* フェードイン */

.fadein {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.2s;
}

.fadein-left {
    transform: translate(-50px, 0);
}

.fadein-right {
    transform: translate(50px, 0);
}

.fadein-up {
    transform: translate(0, -50px);
}

.fadein-bottom {
    transform: translate(0, 50px);
}

.scrollin {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
}

/*---------- キャンペーン開始前クリック無効 ----------*/

.btn-stop {
    pointer-events: none;
    background-color: #7a7a7a !important;
}

/* カウントダウンcss */
.count-down {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.count-down-item span {
    display: block;
    font-size: 30px;
}

@media (max-width: 660px) {
    .count-down-item span {
        font-size: 20px;
    }
}

.count-down-item span:nth-of-type(2) {
    font-size: 12px;
}

@media (max-width: 660px) {
    .count-down-item span:nth-of-type(2) {
        font-size: 10px;
    }
}

#CDT {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
}

#CDT01 {
    width: 100%;
    text-align: center;
    font-size: 49px;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
}

.ttl {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.timer {
    background: #51d1e2;
    padding: 5px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 90px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

@media (max-width: 660px) {
    .timer {
        display: block;
        height: 70px;
    }
}

.timer-text {
    font-size: 20px;
    color: #fff;
}


/*-------------------------------

	Header

-------------------------------*/

header {
    width: 100%;
    height: auto;
    padding: 12.5px 0;
    background: #ffffff;
    margin-top: 90px;
}

header h1 {
    display: inline-block;
    height: auto;
}

header h1 img {
    width: 275px;
    height: auto;
    padding: 0;
    vertical-align: middle;
}

header p {
    font-family: 'Noto Sans JP', sans-serif;
    display: inline-block;
    font-size: 12px;
    color: #7a7a7a;
}

/*----------------------------------------------------

	Main Visual

-------------------------------------------------------*/

/*------------------

	右追従ボタン

-----------------------*/

.pc_anker_wrap {
    position: fixed;
    width: 170px;
    height: 510px;
    right: 0;
    z-index: 100;
}

.pc_anker_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 120px;
    font-size: 0;
}

.pc_anker_box a {
    display: inline-block;
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.pc_anker_box a:last-child {
    margin-bottom: 0;
}

.pc_anker_box a img {
    width: 140%;
    height: auto;
}

.pc_anker_box a:hover {
    opacity: 0.8;
}

.sp_btn {
    display: none !important;
}

.pc_btn {
    display: block !important;
}

/*------------------

	右追従ボタン終わり

-----------------------*/

#mv {
    width: 100%;
    height: 40vmax;
    /* min-height: 660px; */
    background-image: url(images/mv-back-top.png), url(images/mv-bg.png);
    /*background-color: #70d6e0;*/
    background-position: top, center;
    background-size: 130% auto, 100% auto;
    background-repeat: no-repeat, repeat-x;
}

#mv .mv-img {
    width: 75%;
    min-width: 566px;
    margin: 0 auto;
    box-sizing: border-box;
    /* margin-top: 70px; */
}

#mv .mv-img img {
    width: 100%;
    height: auto;
}

/* その場でフェードイン */

.fadein-mv {
    animation-name: fadeInAnime;
    animation-duration: 2.2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*-------------------------------

	セール案内

-------------------------------*/

.info {
    width: 100%;
    background-image: url(images/info-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.info .info-box {
    align-items: flex-start;
}

.info .info-box .thumb {
    width: 32%;
    height: auto;
}

.info .info-box .thumb img {
    width: 100%;
    height: auto;
}

.info .info-box .info-text {
    width: 64%;
    padding-top: 15px;
}

.info .info-box .info-text p {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-size: 16px;
    text-align: left;
    line-height: 1.7;
    color: #eb4971;
}

.info ul {}

.info ul li {
    width: 31%;
    height: auto;
}

.info ul li img {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
}

.info ul li img:hover {
    top: 10px;
    transition: 0.3s;
}

/*-------------------------------

	セール案内

-------------------------------*/

#coupon {
    width: 100%;
    background-image: url(images/coupon-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#coupon .wrapper {
    max-width: 870px;
}

#coupon ul li {
    width: 31%;
    height: auto;
}

#coupon .chuo img {
    width: 90%;
    height: auto;
}


/*-------------------------------

	プレゼント案内

-------------------------------*/

#present {
    width: 100%;
    background-image: url(images/set-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#present .wrapper {
    max-width: 870px;
}

#present .chuo img {
    width: 90%;
    height: auto;
}

#present .chuo a:hover {
    opacity: 0.8;
}

#present ul {
    padding: 25px 25px 20px;
    border: 1px solid #51d1e2;
    margin-top: 2rem;
}

#present ul li {
    justify-content: inherit;
    text-align: left;
    font-size: 18px;
}

#present ul li:nth-child(2) {
    margin: 10px 0;
}

#present ul li:nth-child(3) {
    margin: 10px 0;
}

#present ul li:nth-child(4) {
    margin: 10px 0;
}

#present ul li i {
    margin-right: 5px;
    color: #51d1e2;
}

#present ul li p {
    color: #404145;
}

/*-------------------------------

	ラッピング

-------------------------------*/

#wrapping {
    width: 100%;
    background-image: url(images/coupon-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#wrapping .wrapper {
    max-width: 870px;
}

#wrapping .chuo img {
    width: 70%;
    height: auto;
}

#wrapping ul {
    padding: 25px 25px 20px;
    border: 1px solid #51d1e2;
    background-color: #fff;
    margin-top: 2rem;
}

#wrapping ul li {
    justify-content: inherit;
    text-align: left;
    font-size: 18px;
}

#wrapping ul li:nth-child(2) {
    margin: 10px 0;
}

#wrapping ul li:nth-child(3) {
    margin: 10px 0;
}

#wrapping ul li:nth-child(4) {
    margin: 10px 0;
}

#wrapping ul li i {
    margin-right: 5px;
    color: #51d1e2;
}

#wrapping ul li p {
    color: #404145;
}


/*-------------------------------

	スペシャルセット

-------------------------------*/

#set {
    width: 100%;
    background-image: url(images/set-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

#set .wrapper {
    max-width: 870px;
}

#set h2 {
    color: #ff7397;
}

#set h2 span {
    color: #ff9eb7;
}

#set h2 span::before,
#set h2 span::after {
    background: #f5a3b7;
}

#set .set-box {
    display: flex;
    text-align: left;
    align-items: flex-start;
}

#set .set-box .set-info {
    width: 52%;
}

#set .set-box .set-info p {
    line-height: 1.5;
}

#set .set-info h3 {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-size: 27px;
    color: #ff7397;
    letter-spacing: 1px;
}

#set .set-info h3 span {
    display: block;
    margin-bottom: 5px;
    font-size: 19px;
    color: #c49c5f;
}

#set .set-info .set-price {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 32px;
    color: #545454;
    letter-spacing: 1px;
    border-bottom: 1px solid #ff7397;
}

#set .set-info .set-price span:first-child {
    margin-right: 10px;
    font-size: 26px;
}

#set .set-info .set-price span:last-child {
    margin-left: 10px;
    font-size: 15px;
}

#set .set-info .set-text {
    font-size: 15px;
    color: #404145;
    letter-spacing: 1px;
}

#set .set-info .set-detail {
    margin: 10px auto;
    padding: 17px 17px 13px 17px;
    border: 1px solid #ff7397;
    background-color: #ffffff;
}

#set .set-info .set-detail h4 {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
    color: #ff7397;
}

#set .set-info .set-detail a {
    justify-content: inherit;
    font-size: 12px;
    color: #404145;
}

#set .set-info .set-detail a:hover {
    color: #ff7397;
}

#set .set-info .set-detail a i {
    margin-right: 10px;
    color: #ff7397;
}

#set .set-info .set-detail a span {
    margin: 0 10px 15px 0;
    font-size: 16px;
}

#set .set-info .attention {
    margin-bottom: 10px;
    font-size: 12px;
    color: #7a7a7a;
}

#set .set-info a.buy-btn {
    display: block;
    width: 55%;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    background-color: #ff7397;
}

#set .set-info a.buy-btn:hover {
    background-color: #f99db5;
}


#set .set-info a.buy-btn span {
    margin-right: 10px;
}

#set .set-box .thumb {
    width: 41%;
    height: auto;
}

#set .set-box .thumb img {
    width: 100%;
    height: auto;
}

#set ul {
    padding: 25px 25px 20px;
    border: 1px solid #ff7397;
    background-color: #fff8f8;
}

#set ul li {
    justify-content: inherit;
    text-align: left;
    font-size: 13px;
}

#set ul li:nth-child(2) {
    margin: 10px 0;
}

#set ul li i {
    margin-right: 5px;
    color: #ff7397;
}

#set ul li p {
    color: #404145;
}

/*-------------------------------

	訳ありセット

-------------------------------*/

#wakeari {
    width: 100%;
    background-image: url(images/23390283.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

#wakeari .small {
    font-size: 12px;
}

#wakeari .wrapper {
    max-width: 870px;
}

#wakeari h2 {
    color: #ff7397;
}

#wakeari h2 span {
    color: #ff9eb7;
}

#wakeari h2 span::before,
#wakeari h2 span::after {
    background: #f5a3b7;
}

#wakeari .wakeari-box {
    display: flex;
    text-align: left;
    align-items: flex-start;
}

#wakeari .wakeari-box .wakeari-info {
    width: 52%;
}

#wakeari .wakeari-box .wakeari-info p {
    line-height: 1.5;
}

#wakeari .wakeari-info h3 {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-size: 25px;
    color: #ff7397;
    letter-spacing: 1px;
}

#wakeari .wakeari-info h3 span {
    display: block;
    margin-bottom: 5px;
    font-size: 19px;
    color: #c49c5f;
}

#wakeari .wakeari-info .wakeari-price {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 32px;
    color: #545454;
    letter-spacing: 1px;
    border-bottom: 1px solid #ff7397;
}

#wakeari .wakeari-info .wakeari-price span:first-child {
    margin-right: 10px;
    font-size: 26px;
}

#wakeari .wakeari-info .wakeari-price span:last-child {
    margin-left: 10px;
    font-size: 15px;
}

#wakeari .wakeari-info .wakeari-text {
    font-size: 15px;
    color: #404145;
    letter-spacing: 1px;
}

#wakeari .wakeari-info .wakeari-detail {
    margin: 10px auto;
    padding: 17px 17px 13px 17px;
    border: 1px solid #ff7397;
    background-color: #ffffff;
}

#wakeari .wakeari-info .wakeari-detail h4 {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
    color: #ff7397;
}

#wakeari .wakeari-info .wakeari-detail a {
    justify-content: inherit;
    font-size: 12px;
    color: #404145;
}

#wakeari .wakeari-info .wakeari-detail a:hover {
    color: #ff7397;
}

#wakeari .wakeari-info .wakeari-detail a i {
    margin-right: 10px;
    color: #ff7397;
}

#wakeari .wakeari-info .wakeari-detail a span {
    margin: 0 10px 15px 0;
    font-size: 16px;
}

#wakeari .wakeari-info .attention {
    margin-bottom: 10px;
    font-size: 12px;
    color: #7a7a7a;
}

#wakeari .wakeari-info a.buy-btn {
    display: block;
    width: 55%;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    background-color: #ff7397;
    margin-top: 10px;
}

#wakeari .wakeari-info a.buy-btn:hover {
    background-color: #f99db5;
}


#wakeari .wakeari-info a.buy-btn span {
    margin-right: 10px;
}

#wakeari .wakeari-box .thumb {
    width: 48%;
    height: auto;
}

#wakeari .wakeari-box .thumb a:hover {
    opacity: 0.8;
}

#wakeari .wakeari-box .thumb img {
    width: 100%;
    height: auto;
}

#wakeari ul {
    padding: 25px 25px 20px;
    border: 1px solid #ff7397;
    background-color: #fff8f8;
}

#wakeari ul li {
    justify-content: inherit;
    text-align: left;
    font-size: 18px;
}

#wakeari ul li:nth-child(2) {
    margin: 10px 0;
}

#wakeari ul li i {
    margin-right: 5px;
    color: #ff7397;
}

#wakeari ul li p {
    color: #404145;
}

/*-------------------------------

	スペシャルプライス

-------------------------------*/

#item {
    width: 100%;
    background-image: url(images/item-back.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#item .item-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 90px;
    background-image: url(images/item-box-back-top.jpg), url(images/item-box-back-bottom.jpg), url(images/item-box-back-repeat.jpg);
    background-repeat: no-repeat, no-repeat, repeat-y;
    background-position: top, bottom, center;
    background-size: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.item-box h3 {
    display: flex;
    align-items: center;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 30px;
    font-weight: normal;
    color: #c19c5e;
    letter-spacing: 2.5px;
}

.item-box h3::before,
.item-box h3::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: #c19c5e;
}

.item-box h3::before {
    margin-right: 30px;
}

.item-box h3::after {
    margin-left: 30px;
}

.item-box ul {}

.item-box ul li {}

.item-box ul li .thumb {
    width: 180px;
    margin: 0 auto;
}

.item-box ul li .thumb img {
    width: 100%;
    height: auto;
}

.item-box ul li h4 {
    margin-bottom: 5px;
    font-size: 15px;
    color: #404145;
}

.item-box ul li h4 span {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
}

.item-box ul li .item-price {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    margin-bottom: 5px;
    font-size: 20px;
    color: #ff7397;
    letter-spacing: 1px;
}

.item-box ul li .item-price span {
    margin-left: 10px;
    font-size: 12px;
    color: #545454;
}

.item-box ul li .item-normal-price {
    font-size: 12px;
}

.item-box ul li a.buy-btn {
    display: block;
    width: 150px;
    margin: 15px auto 0;
    padding: 11px 0;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
    background-color: #ff7397;
}

.item-box ul li a.buy-btn:hover {
    background-color: #f99db5;
}

.item-box ul li a.buy-btn span {
    margin-right: 5px;
}

/*-------------------------------

	Footer

-------------------------------*/

footer {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #51d1e2;
}

footer h2 {
    display: flex;
    align-items: center;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    margin-bottom: 0;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    letter-spacing: 2.5px;
}

footer h2::before,
footer h2::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: #ffffff;
}

footer h2::before {
    margin-right: 30px;
}

footer h2::after {
    margin-left: 30px;
}

footer .sns {
    width: auto;
    margin: 20px auto;
}

footer .sns a {
    display: inline-block;
    width: 80px;
    height: 80px;
}

footer .sns a:first-child {
    margin-right: 10px;
}

footer .sns a:hover {
    opacity: 0.8;
}

footer .sns a img {
    width: 100%;
}

footer a.eb-web-btn {
    display: block;
    max-width: 285px;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
    font-size: 15px;
    color: #ffffff;
    border: 1px solid #ffffff;
}

footer a.eb-web-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/*-------------------------------

	タブレット

-------------------------------*/

@media only screen and (max-width: 1024px) {

    /*---------- Html・Body ----------*/

    .wrapper {
        width: 90%;
    }

    /*---------- SPのみ改行 ----------*/

    .sma {
        display: block;
    }

    /*---------- Main Visual ----------*/

    #mv {
        background-size: 170% auto, 100% auto;
    }

    /*---------- セール案内 ----------*/

    .info .info-box p {
        margin-top: 0;
    }

    /*---------- スペシャルプライス ----------*/


    #item .item-box {
        padding: 90px 50px;
    }
}

/*-------------------------------

	スマホ

-------------------------------*/


@media only screen and (max-width:660px) {

    /*---------- SP Html・Body ----------*/

    body {
        font-size: 16px;
    }

    /*---------- SP 切替 ----------*/

    .pc {
        display: none;
    }

    .sp {
        display: inline-block;
    }

    /*---------- SP セクション ----------*/

    section {
        padding: 50px 0;
    }

    /*---------- SP インナー ----------*/

    .wrapper {
        width: 95%;
    }

    /*---------- SP Flex ----------*/

    .flex-center {
        display: inherit;
    }

    /*---------- SP マージン ----------*/

    .mb-l {
        margin-bottom: 0px;
    }

    /*---------- SP 見出し ----------*/

    h2 {
        margin-bottom: 30px;
        font-size: 34px;
        letter-spacing: 1px;
    }

    h2 img {
        width: 100%;
        height: auto;
    }

    /*---------- SP Header ----------*/

    header {
        text-align: center;
    }

    /*---------- SP Main Visual ----------*/

    #mv {
        display: flex;
        /*height: 120vmin;*/
        height: 120vmin;
        min-height: auto;
        background-size: 100% auto, 120% auto;
        background-image: url(images/mv-sp-back-top.png), url(images/mv-sp-bg.png);
    }

    #mv .mv-img {
        width: 90%;
        min-width: auto;
        margin: 0 auto;
        box-sizing: border-box;
        /* margin-top: 50px; */
    }

    /*---------- SP セール案内 ----------*/

    .info .info-box .thumb {
        width: 70%;
        margin: 0 auto;
    }

    .info .info-box .info-text {
        width: 100%;
        padding-top: 0;
    }


    .info .info-box .info-text p {
        width: 100%;
        margin-top: 15px;
        font-size: 14px;
        text-align: center;
    }

    .info ul li {
        display: inline-block;
        width: 49%;
        margin: 0 auto;
    }

    .info ul li:nth-child(1) {
        /* display: block; */
        margin: 0 auto;
    }

    /*---------- SP クーポン ----------*/

    #coupon h2 {
        font-size: 32px;
    }

    #coupon ul li {
        width: 100%;
        margin: 0 auto;
    }

    #coupon ul li:nth-child(2) {
        margin: 10px auto;
    }

    /*---------- SP スペシャルセット ----------*/

    #set {
        background-size: 170%;
        background-repeat: repeat;
        background-position: top left;
    }

    #set .wrapper {
        width: 90%;
    }

    #set .set-box {
        flex-direction: column;
        margin-bottom: 50px;
    }

    #set .set-box .order1 {
        order: 1;
    }

    #set .set-box .order2 {
        order: 2;
    }

    #set .set-box .set-info {
        width: 100%;
    }

    #set .set-info h3 {
        margin-top: 30px;
        font-size: 22px;
        text-align: center;
    }

    #set .set-info h3 span {
        font-size: 16px;
    }

    #set .set-box .set-info p {
        line-height: 1.5;
        text-align: center;
    }

    #set .set-info .set-text {
        font-size: 14px;
        letter-spacing: 0;
    }

    #set .set-info .set-detail {
        margin-bottom: 17px;
    }

    #set .set-info .set-detail h4 {
        font-size: 14px;
    }

    #set .set-info .set-detail a {
        display: flex;
    }

    #set .set-info .set-detail p {
        text-align: left;
    }

    #set .set-info .set-detail a:nth-child(2) {
        margin-bottom: 5px;
    }

    #set .set-info .set-detail a span {
        display: block;
        margin-bottom: 0;
        font-size: 15px;
    }

    #set .set-info .attention {
        margin-bottom: 30px;
    }

    #set .set-info a.buy-btn {
        width: 80%;
        margin: 0 auto;
    }

    #set .set-box .thumb {
        width: 80%;
        margin: 0 auto;
    }

    #set ul {
        padding: 17px 17px 13px 17px;
    }

    #set ul li {
        display: flex;
        font-size: 12px;
    }

    /* ---------訳あり -------------- */
    #wakeari .wrapper {
        width: 90%;
    }

    #wakeari .wakeari-box {
        flex-direction: column;
        /* margin-bottom: 50px; */
    }

    #wakeari .wakeari-box .order1 {
        order: 1;
    }

    #wakeari .wakeari-box .order2 {
        order: 2;
    }

    #wakeari .wakeari-box .wakeari-info {
        width: 100%;
    }

    #wakeari .wakeari-info h3 {
        margin-top: 30px;
        font-size: 22px;
        text-align: center;
    }

    #wakeari .wakeari-info h3 span {
        font-size: 16px;
    }

    #wakeari .wakeari-box .wakeari-info p {
        line-height: 1.5;
        text-align: center;
    }

    #wakeari .wakeari-info .wakeari-text {
        font-size: 14px;
        letter-spacing: 0;
    }

    #wakeari .wakeari-info .wakeari-detail {
        margin-bottom: 17px;
    }

    #wakeari .wakeari-info .wakeari-detail h4 {
        font-size: 14px;
    }

    #wakeari .wakeari-info .wakeari-detail a {
        display: flex;
    }

    #wakeari .wakeari-info .wakeari-detail a:nth-child(2) {
        margin-bottom: 5px;
    }

    #wakeari .wakeari-info .wakeari-detail a span {
        display: block;
        margin-bottom: 0;
        font-size: 15px;
    }

    #wakeari .wakeari-info .attention {
        margin-bottom: 30px;
    }

    #wakeari .wakeari-info a.buy-btn {
        width: 80%;
        margin: 0 auto;
        margin-top: 10px;
    }

    #wakeari .wakeari-box .thumb {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    #wakeari ul {
        padding: 17px 17px 13px 17px;
    }

    #wakeari ul li {
        display: flex;
        font-size: 12px;
    }

    /*---------- 限定品 ----------*/

    #present ul li {
        display: flex;
        font-size: 12px;
    }

    /*---------- wrapping ----------*/

    #wrapping ul li {
        display: flex;
        font-size: 12px;
    }



    /*---------- SP スペシャルプライス ----------*/

    #item .item-box {
        padding: 50px 20px;
    }

    .item-box h3 {
        margin-bottom: 30px;
        font-size: 25px;
    }

    .item-box h3::before {
        margin-right: 15px;
    }

    .item-box h3::after {
        margin-left: 15px;
    }

    .item-box ul.mb-l {
        /* margin-bottom: 60px; */
    }

    .item-box ul li {
        width: 100%;
        margin-bottom: 30px;
        text-align: left;
        font-size: 0;
    }

    .item-box ul li:last-child {
        margin-bottom: 0;
    }

    .item-box ul li .thumb {
        display: inline-block;
        width: 29%;
    }

    .item-box ul li .item-text {
        display: inline-block;
        width: 71%;
        text-align: center;
    }

    .item-box ul li h4 {
        font-size: 15px;
    }

    .item-box ul li h4 span {
        font-size: 12px;
    }

    .item-box ul li .item-price {
        font-size: 21px;
    }

    .item-box ul li .item-price span {
        font-size: 12px;
    }

    .item-box ul li .item-normal-price {
        font-size: 13px;
    }

    .item-box ul li a.buy-btn {
        width: 65%;
        padding: 13px 0;
        font-size: 14px;
    }

    .item-box ul li a.buy-btn span {
        margin-right: 10px;
    }

    .item-box ul li.sp a {
        display: block;
        width: 100%;
        background-color: none;
    }

    .item-box ul li.sp a img {
        width: 100%;
        height: auto;
        background-color: none;
    }

    /* .btn-stop-sp {
        pointer-events: none;
    } */


    /*---------- SP Footer ----------*/

    footer {
        margin-bottom: 100px;
    }

    footer h2 {
        font-size: 25px;
    }

    footer h2::before {
        margin-right: 15px;
    }

    footer h2::after {
        margin-left: 15px;
    }

    /*---------- フッター追従ボタン ----------*/

    .sp_btn {
        display: block !important;
    }

    .pc_btn {
        display: none !important;
    }

    .sp_anker_wrap {
        position: fixed;
        width: 100%;
        height: 70px;
        bottom: 0;
        background-color: #51d1e2;
        z-index: 100;
    }

    .sp_anker_box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 95%;
        margin: 12px auto 0;
        text-align: center;
        font-size: 0;
    }

    .sp_anker_box a {
        display: inline-block;
        width: calc(95% / 3);
        height: 40px;
        margin: 0 0.2%;
        line-height: 40px;
        font-size: 13px;
        font-weight: bold;
        color: #51d1e2;
        background-color: #ffffff;
        border: 1px solid #51d1e2;
        border-radius: 100px;
        transition: 0.3s;
    }

    .sp_anker_box a:hover {
        opacity: 0.8;
    }

    .sp_anker_box a:nth-of-type(1),
    .sp_anker_box a:nth-of-type(2) {
        margin-bottom: 5.5px;
    }


}