@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css2?family=Judson:wght@400;700&family=Noto+Sans+JP:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Cinzel:wght@400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --font-family-nt-romen: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    --font-family-noto-sans: 'Noto Sans JP', "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-family-cinzel: "Cinzel", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    --font-size-h1-pc: 60px;
    --font-size-h1-sm: 24px;
    --font-size-h2-pc: 40px;
    --font-size-h2-sm: 18px;
    --font-size-h3-pc: 40px;
    --font-size-h3-sm: 18px;
    --font-size-p-l: 45px;
    --font-size-p-m: 24px;
    --font-size-p-s: 18px;
    --font-size-p-l-sm: 22px;
    --font-size-p-m-sm: 14px;
    --line-height-l: 2em;
    --contents-max-width: 1000px;
    --color-01: #464442;
    --color-02: #ffffff;
    --color-03: #000000;
    --background-color-01: #ded7cf;
    --background-color-02: #7f8577;
    --background-color-03: #f5f0ea;
    --background-color-04: #ab5443;
    --background-color-05: #93473a;
    --background-color-06: #e3c28d;
    --background-color-07: #b6976b;
    --background-color-08: #eae0d7;
    --background-color-09: #d1bba6;
    --background-color-10: #f1edea;
    --background-color-11: #ffffff;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family-noto-sans);
    color: var(--color-01);
}
.spon {
    display: none;
}
.in_block {
    display: inline-block;
}
h2 {
    padding: .5em;
    font-weight: 400;
    text-align: center;
    font-family: var(--font-family-nt-romen);
    font-size: var(--font-size-h2-pc);
    color: var(--color-02);
    background: var(--background-color-02);
}
h3 {
    font-family: var(--font-family-nt-romen);
    font-size: var(--font-size-h3-pc);
    font-weight: bold;
}
p {
    font-size: var(--font-size-p-m);
}
img {
    max-width: 100%;
}
a:visited {
    color: var(--color-03);
}
@media screen and (max-width:768px) {
    .pcon {
        display: none;
    }
    .spon {
        display: block;
    }
    h2 {
        padding: .8em 0 .5em;;
        font-size: var(--font-size-h2-sm);
    }
    h3 {
        font-size: var(--font-size-h3-sm);
    }
    p {
        font-size: var(--font-size-p-m-sm);
    }
}

/* futureshopの枠 */
.fs-l-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}
.fs-l-pageMain {
    max-width: none !important;
    margin: 0 !important;
}

/* ふわっと表示 */
.fade_in {
    transition: transform 1s,opacity 1s cubic-bezier(.45,.01,.33,1);
    opacity: 0;
    transform: translateY(15px);
}
.fade_in.u-scrollIn {
    opacity: 1;
    transform: translateY(0);
}

/* モーダル */
.modal_set {
    display: none;
}
.modal_set.active {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 100;
}
.modal_set .modal_back {
    width: 100%;
    height: 100vh;
    background: #333333c9;
    position: fixed;
    cursor: pointer;
    z-index: 101;
}
.modal_set .modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: auto;
    z-index: 102;
}
.modal::after {
    /* content: "※無くなり次第終了となります。";
    position: absolute;
    bottom: -1.5em;
    left: 1em;
    font-size: 0.8em;
    color: #adadad; */
}
.modal_set .modal .modal_btn {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    right: 3px;
    cursor: pointer;
}
.modal_set .modal .modal_btn::before,
.modal_set .modal .modal_btn::after {
    content: '';
    display: block;
    width: 1em;
    height: 3px;
    border-radius: 1.5px;
    background-color: #4a4947;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all .3s;
}
.modal_set .modal .modal_btn::before {
    -o-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal_set .modal .modal_btn::after {
    -o-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal_set .modal .modal_btn:hover::before,
.modal_set .modal .modal_btn:hover::after {
    opacity: .7;
}
.modal_set .modal .modal_btn:active::before,
.modal_set .modal .modal_btn:active::after {
    opacity: .9;
}
.modal_set .modal img {
    max-width: none;
}


/* イベント終了 */
.event_end {
    color: white;
    line-height: 2em;
    width: 25em;
}
.event_end a {
    color: #ffe79d !important;
    text-decoration: underline !important;
    font-size: 20px;
}
@media screen and (max-width: 768px) {
    .modal_set .modal {
        width: 90%;
    }
    .event_end {
        font-size: 14px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}


/* クーポン追従バナー */
.coupon_banner {
    display: none;
    position: fixed;
    top: 30%;
    right: 0px;
    z-index: 80;
}
.coupon_banner img {
    display: block;
    transition: all .3s;
}
.coupon_banner:hover img {
    filter: drop-shadow(0 0 5px #999);
    opacity: .8;
}
.coupon_banner:active img {
    filter: drop-shadow(0 0 1px #999);
    opacity: .9;
}
@media screen and (max-width: 768px) {
    .coupon_banner {
        width: 90px;
        right: 0px;
    }
    .coupon_banner img {
        width: 100%;
    }
}


/* ヒーローイメージ */
.hero {
    width: 100%;
    height: 0;
    padding-top: 50%;
    overflow: hidden;
    position: relative;
    background-color: var(--background-color-01);
}
.hero img {
    position: absolute;
}
.hero img.pcon,
.hero img.spon {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero img.catch_img.fade_in {
    width: 39%;
    min-width: 425px;
    top: 43.5%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 15px));
    z-index: 2;
}
.hero img.catch_img.fade_in.u-scrollIn {
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
    .hero {
        padding-top: 118%;
    }
    .hero img.catch_img.fade_in {
        width: 87%;
        max-width: 600px;
        min-width: unset;
        top: 82.5%;
    }
}


/* 2023 クリスマス スペシャル */
.special {
    width: 100%;
    padding: 120px 0 160px;
    background-color: var(--background-color-01);
}
.special h1 {
    text-align: center;
}
.special h1 img {
    width: 700px;
    max-width: 75%;
}
.special .special_desc {
    margin-top: 40px;
    font-size: var(--font-size-p-m);
    line-height: var(--line-height-l);
    text-align: center;
}
.special .imgs_3 {
    max-width: 1250px;
    margin: 8em auto;
    display: flex;
    justify-content: space-between;
}
.special .imgs_3 img,
.special .imgs_3 .video {
    width: 32%;
}
.special .imgs_3 .video {
    height: 0;
    padding-top: calc(32% * 1000 / 800);
    overflow: hidden;
    position: relative;
}
.special .imgs_3 .video video,
.special .imgs_3 .video iframe {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%)
}
.special .imgs_3 .fade_in:nth-child(2) {
    transform: translateY(calc(14% + 15px));
    transition-delay: .6s;
}
.special .imgs_3 .fade_in.u-scrollIn:nth-child(2) {
    transform: translateY(calc(14% + 0px));
}
.special .imgs_3 .fade_in:nth-child(3) {
    transition-delay: .3s;
}
@media screen and (max-width:768px) {
    .special {
        padding: 55px 0 0px;
    }
    .special h1 {
        font-size: var(--font-size-h1-sm);
    }
    .special h1 img {
        width: 90%;
        margin: 0 auto;    
    }
    .special .special_desc {
        line-height: 1.6em;
        font-size: 16px;
        font-weight: 500;
    }
    .special .imgs_3 {
        max-width: 600px;
        margin: 3.5em auto 0;
    }
    .special .imgs_3 img, 
    .special .imgs_3 .video {
        width: 100%;
        padding-top: calc(100% * 1000 / 800);
        /* padding-top: calc(100% * 1920 / 1080); */
    }
    .special .imgs_3 .video video {
        /* top: 0;
        transform: unset; */
    }
    .special .imgs_3 .fade_in:nth-child(2) {
        transform: translateY(15px);
        transition-delay: 0;
    }
    .special .imgs_3 .fade_in.u-scrollIn:nth-child(2) {
        transform: translateY(0px);
    }
}



/* 今だけのクリスマス限定特典 */
.limited_christmas {
    background: var(--background-color-03);
    color: var(--color-03);
    text-align: center;
}
.limited_christmas .limited_info {
    margin: 0 auto;
    padding: 0 0 3em;
    font-size: var(--font-size-p-m);
}
.limited_christmas .limited_info .benefits {
    max-width: var(--contents-max-width);
    padding: 0 .5em;
    text-align: left;
    font-weight: 500;
}
.limited_christmas .limited_info .benefits1 {
    margin: 5.5em auto 0em;
}
.limited_christmas .limited_info .benefits2 {
    margin: 2.5em auto 2em;
}
.limited_christmas .limited_info .benefits li {
    line-height: 2.3em;
    margin-bottom: 1.6em;
}
.limited_christmas .limited_info .benefits li p {
    padding-left: calc(24px * 3);
}
.limited_christmas .limited_info .benefits li p:first-child {
    position: relative;
}
.limited_christmas .limited_info .benefits li p:not(:first-child) {
    font-weight: 500;
    font-size: 20px;
}
.limited_christmas .limited_info .benefits li p:first-child::before {
    content: "";
    display: block;
    width: 2.6em;
    height: 2.6em;
    position: absolute;
    left: 0;
    top: 0;
}
.limited_christmas .limited_info .benefits1 li:nth-child(1) p:first-child::before,
.limited_christmas .limited_info .benefits1 li:nth-child(2) p:first-child::before {
    background: url(https://www.ikeda-jewelry.com/s/event/assets/christmas/2024/img/star1.png);
    background-size: cover;
}
.limited_christmas .limited_info .benefits1 li:nth-child(3) p:first-child::before,
.limited_christmas .limited_info .benefits1 li:nth-child(4) p:first-child::before {
    background: url(https://www.ikeda-jewelry.com/s/event/assets/christmas/2024/img/star2.png);
    background-size: cover;
}
.limited_christmas .limited_info .benefits2 li:nth-child(1) p:first-child::before {
    background: url(https://www.ikeda-jewelry.com/s/event/assets/christmas/2024/img/star3.png);
    background-size: cover;
}
.limited_christmas .limited_info .benefits2 li:nth-child(2) p:first-child::before {
    background: url(https://www.ikeda-jewelry.com/s/event/assets/christmas/2024/img/star3.png);
    background-size: cover;
}
.limited_christmas .limited_info .benefits2 li:nth-child(3) p:first-child::before {
    background: url(https://www.ikeda-jewelry.com/s/event/assets/christmas/2024/img/star4.png);
    background-size: cover;
}
.limited_christmas .limited_info .benefits2 li:nth-child(4) p:first-child::before,
.limited_christmas .limited_info .benefits2 li:nth-child(5) p:first-child::before {
    background: url(https://www.ikeda-jewelry.com/s/event/assets/christmas/2024/img/star5.png);
    background-size: cover;
}
.limited_christmas .present_img {
    width: 100%;
    max-width: var(--contents-max-width);
    margin: 0 auto;
    display: flex;
    gap: 3%;
    position: relative;
}
.limited_christmas .present_img::after {
    content: "※無くなり次第終了となります。";
    position: absolute;
    left: 1em;
    bottom: -1.5em;
    font-size: .6em;
}
.limited_christmas .present_img img {
    width: 48.5%;
}
.limited_christmas .limited_info .start_day {
    margin: 26px auto 10px;
    font-size: calc(var(--font-size-p-l) - 10px);
}
.limited_christmas .limited_info .box_desc {
    margin: 32px auto 70px;
    line-height: 51px;
}
.detail_btn {
    display: block;
    width: 10em;
    margin: 1em 0 0 auto;
    padding: 0.3em 0.8em;
    background-color: var(--color-02);
    color: var(--color-01);
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    position: relative;
    transition: all .3s;
}
.limited_christmas .limited_info .detail_btn {
    font-size: calc(var(--font-size-p-m) + 3px);
    margin: 0 1em 0 auto;
}
.detail_btn::after {
    content: "▲";
    position: absolute;
    top: 50%;
    right: .5em;
    transform: translateY(-50%) rotate(90deg);
}
.detail_btn:hover {
    box-shadow: 0 0 2px 1px #b7cdcb, 0 0 3px 2px #004d4761;
}
.detail_btn:active {
    box-shadow: 0 0 1px 0px #b7cdcb, 0 0 1px 1px #004d4761;
}
@media screen and (max-width: 768px) {
    .limited_christmas .present_img {
        /* overflow: hidden; */
    }
    .limited_christmas .limited_info {
        padding: 0 0 1em;
    }
    .limited_christmas .limited_info .benefits {
        max-width: 600px;
        padding: 0;
    }
    .limited_christmas .limited_info .benefits1 {
        margin: 2.2em auto 0em;
    }
    .limited_christmas .limited_info .benefits li {
        margin-bottom: 1em;
        line-height: 1em;
        letter-spacing: -0.5px;
        font-weight: bold;
    }
    .limited_christmas .limited_info .benefits li p {
        padding-left: calc(14px* 2.5);
    }
    .limited_christmas .limited_info .benefits li p:first-child::before {
        width: 2em;
        height: 2em;
        top: 0;
        left: .5em;
    }
    .limited_christmas .present_img {
        padding: 0 .5em;
        gap: 2%;
    }
    .limited_christmas .present_img img {
        width: 49%;
    }
    .limited_christmas .limited_info .benefits2 {
        margin: 1.3em auto 0em;
    }
}


/* オンライン限定クリスマスジュエリー */
.limited_online {
    padding-bottom: 3em;
    background: var(--background-color-04);
    color: var(--color-02);
}
.limited_online .limited_o_items {
    max-width: var(--contents-max-width);
    margin: 6em auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
}
.limited_online .limited_o_items li {
    width: 48.5%;
    /* margin-bottom: 4em; */
    padding: 0 0 55px;
    position: relative;
    background: linear-gradient(0deg, #c88f85 0%, #ac5545 4%);
    margin-bottom: 50px;
}
.limited_online .limited_o_items li > p,
.limited_online .limited_o_items li .staff_rev > p {
    margin-left: .5em;
    margin-right: .5em;
}
.limited_online .limited_o_items li .item_catch {
    text-align: center;
    font-size: 20px;
    font-family: var(--font-family-nt-romen);
}
.limited_online .limited_o_items li .item_img {
    margin: 1em 0;
}
.limited_online .limited_o_items li .item_desc,
.limited_online .limited_o_items li .item_price {
    font-size: 16px;
}
.limited_online .limited_o_items li .item_desc {
    margin-left: 1.5em;
}
.limited_online .limited_o_items li .item_price {
    text-align: right;
    margin-right: 1.5em;
}

.staff_rev {
    margin: 2.5em 0 0em;
}
.staff_rev .staff {
    width: 80%;
    margin: 0 auto 2em;
    display: flex;
    align-items: center;
    gap: 3em;
}
.staff_rev .staff img {
    width: 30%;
}
.staff_rev .staff p {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
}
.staff_rev .staff p span {
    display: block;
    margin-top: 0.2em;
    position: relative;
    right: -0.5em;
}
.staff_rev .review {
    font-size: 14px;
    line-height: 1.6em;
}

.limited_online .hover_img {
    display: block;
    width: 100%;
    position: relative;
}
.limited_online .hover_img img {
    width: 100%;
}

.detail_area {
    width: 100%;
    padding: 1.5em 1em 1em;
    background: var(--background-color-05);
    text-align: center;
}
.detail_area p {
    font-size: 16px;
}
.detail_area a {
    display: block;
    width: 86%;
    margin: .5em auto;
    padding: 0.5em;
    border-radius: 2em;
    background: var(--background-color-06);
    color: var(--color-03);
    font-size: 22px;
    font-family: var(--font-family-nt-romen);
    font-weight: bold;
    transition: all .3s ease-in-out;
    position: relative;
}
.detail_area a::after {
    content: "";
    display: block;
    width: 2.4em;
    height: 1px;
    background-color: var(--color-03);
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
}
.detail_area a:hover {
    box-shadow: 0 0 8px 3px #e3c28dba, 0 0 3px 1px #956a25ed;;
    opacity: .85;
}
.detail_area a:active {
    box-shadow: 0 0 3px 1px #e3c28dba, 0 0 1px 0px #956a25ed;;
    opacity: .95;
}

.limited_online .limited_o_items li .detail_area {
    margin-top: 2em;
    /* position: absolute; */
    bottom: 0px;
}

@media screen and (min-width: 769px) {
    .limited_online .hover_img img {
        transition: opacity .5s cubic-bezier(.45,.01,.33,1);;
    }
    .limited_online .hover_img:hover img:nth-child(1) {
        opacity: 0;
    }
    .limited_online .hover_img img:nth-child(2) {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
    }
    .limited_online .hover_img:hover img:nth-child(2) {
        opacity: 1;
    }
}
@media screen and (max-width:768px) {
    .limited_online {
        padding-bottom: 3.5em;
    }
    .limited_online h2 {
        position: relative;
    }
    .limited_online h2::after {
        content: "クリスマスキャンペーン対象";
        display: block;
        width: 250px;
        padding: .2em 1em .3em;
        border-radius: 1.5em;
        background: var(--background-color-11);
        color: var(--background-color-04);
        font-family: var(--font-family-noto-sans);
        font-size: 15px;
        position: absolute;
        left: 50%;
        bottom: -4em;
        transform: translateX(-50%);
    }
    .limited_online .limited_o_items {
        max-width: 600px;
        margin-top: 7em;
    }
    .limited_online .limited_o_items li {
        width: 100%;
    }
    .limited_online .limited_o_items li:last-child {
        margin-bottom: 0;
    }
    .limited_online .limited_o_items li .item_catch {
        font-size: 16px;
    }
    .limited_online .limited_o_items li .item_desc {
        margin-left: .5em;
        text-align: center;
        font-size: 14px;
        font-weight: 300;
    }
    .limited_online .limited_o_items li .item_price {
        font-size: 14px;
        margin-right: 2.5em;
    }
    .limited_online .hover_img {
        padding: 0 .6em;
    }

    .staff_rev .staff {
        gap: 2.8em;
    }
    .staff_rev .staff img {
        width: 35%;
    }
    .staff_rev .staff p {
        font-size: 16px;
    }
    .staff_rev .review {
        padding: 0 1em;
        font-size: 12px;
    }

    .detail_area {
        padding: 0.8em 1em;
    }
    .detail_area p {
        font-size: 13px;
    }
    .detail_area a {
        width: 90%;
        margin: .3em auto;
        padding: 0.7em 0 0.6em;
        font-size: 19px;
    }
}


/* Special Package */
.special_package {
    padding-bottom: 3em;
    background: var(--background-color-04);
    text-align: center;
    font-size: var(--font-size-p-m);
    box-shadow: 0 -1px 0 var(--background-color-04);
}
.special_package .package {
    max-width: 1000px;
    margin: 0 auto;
}
.special_package h2 {
    background: var(--background-color-07);
    color: var(--color-02);
    font-family: var(--font-family-cinzel);
}
.special_package .start_day {
    margin: 33px auto 10px;
    font-size: calc(var(--font-size-p-l) - 10px);
}
.special_package .package_desc {
    margin: 32px auto 65px;
    line-height: 1.4em;
    font-weight: 300;
    font-size: 14px;
    color: var(--color-02);
}
@media screen and (max-width: 768px) {
    .special_package {
        padding-bottom: 3.2em;
    }
    .special_package .package {
        max-width: 600px;
        padding: 0 .5em 1em;
    }
    .special_package .package_desc {
        margin: 2px 1em -26px;
        font-size: 13px;
        text-align: left;
    }
}


/* back_img（中間にはさむ背景） */
.back_img img {
    width: 100%;
}


/* Menu */
.menu {
    padding: 80px 10px 70px;
    background: url(https://www.ikeda-jewelry.com/s/event/assets/christmas/2024/img/menu_back2.jpg);
    background-size: cover;
    background-position: top right;
    text-align: center;
}
.menu h2 {
    background: unset;
    color: var(--color-03);
    font-family: var(--font-family-cinzel);
    font-size: 70px;
    position: relative;
}
.menu h2::after {
    content: "全アイテムキャンペーン対象";
    padding: .2em 1.8em .3em;
    background: var(--background-color-04);
    border-radius: 1.5em;
    color: var(--color-02);
    font-family: var(--font-family-noto-sans);
    font-size: 20px;
    font-weight: 400;
    position:absolute;
    bottom: -1em;
    left: 50%;
    transform: translateX(-50%);
}
.menu .ul_wrap {
    margin: 70px auto;
}
.menu .menu_lists {
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    border-top: 2px solid var(--color-01);
    border-bottom: 2px solid var(--color-01);
}
.menu .menu_lists li {
    width: 33.33%;
}
.menu .menu_lists li > a {
    display: block;
    padding: 20px 0;
    transition: .3s all;
}
.menu .menu_lists li > a:hover {
    opacity: .8;
    box-shadow: 0 0 3px 1px #7f8593, 0 0 5px 3px #b5bccb;
}
.menu .menu_lists li > a:active {
    opacity: 1;
    box-shadow: 0 0 1px 0px #7f8593, 0 0 1px 1px #b5bccb;
}
.menu .menu_lists li div {
    display: block;
    width: 100%;
    height: 64px;
    position: relative;
}
.menu .menu_lists li div::after {
    content: "▼";
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
}
.menu .menu_lists li:nth-child(2) div,
.menu .menu_lists li:nth-child(3) div {
    border-left: 2px solid var(--color-01);
}
.menu .menu_lists li p.times {
    font-family: var(--font-family-nt-romen);
}
.menu .menu_lists li p {
    font-family: var(--font-family-nt-romen);
    font-weight: 500;
    font-size: calc(var(--font-size-p-m) + 3px);
}
.menu .menu_lists li span:not(.le_sp) {
    font-size: 14px;
}
@media screen and (max-width: 850px) {
    .menu .menu_lists li p {
        font-size: calc(var(--font-size-p-m) - 2px);
    }
}
@media screen and (max-width: 768px) {
    .menu {
        padding: 25px .4em 14px;
        transition: .5s ease-out;
        background-size: cover;
    }
    .menu .ul_wrap {
        max-width: 600px;
        margin: 38px auto;
    }
    .menu h2 {
        padding: 0.5em 0;
        font-size: 26px;
    }
    .menu h2::after {
        width: 200px;
        font-size: 12px;
        bottom: -1.8em;
    }
    .menu .menu_lists {
        margin: 18px auto;
        border-top: 1px solid var(--color-01);
        border-bottom: 1px solid var(--color-01);
    }
    .menu .menu_lists li > a {
        padding: 6px 0;
    }
    .menu .menu_lists li div {
        height: 27px;
        position: relative;
    }
    .menu .menu_lists li:nth-child(2) div, 
    .menu .menu_lists li:nth-child(3) div {
        border-left: 1px solid var(--color-01);
    }
    .menu .menu_lists li div::after {
        bottom: -1px;
        font-size: 7px;
    }
    .menu .menu_lists li p {
        font-size: 12px;
    }
    .menu .menu_lists:first-child li p {
        letter-spacing: -1px;
    }
    .menu .menu_lists:last-child li p {
        letter-spacing: .8px;
    }
    .menu .menu_lists li span.le_sp {
        letter-spacing: -2px;
        font-size: 12px;
    }
    .menu .menu_lists li span:not(.le_sp) {
        font-size: 6px;
        position: absolute;
        left: 50%;
        bottom: 7px;
        transform: translateX(-50%);
    }
}


/* 人気ネックレスランキング、人気ピアスランキング、12月誕生石のおすすめアイテム */
.ranking {
    background: var(--background-color-08);
    color: var(--color-03);
    text-align: center;
}
.ranking > img {
    width: 100%;
}
.ranking .package_desc_wrap {
    padding: 138px 10px 0;
}
.ranking h2 {
    color: var(--color-02);
}
.ranking h3 {
    font-size: 36px;
    font-weight: 500;
    margin: 38px auto 50px;
}
.ranking p {
    font-weight: 300;
    line-height: 1.5em;
}
.ranking .ranking {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 .5em 140px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.5%;
}
.ranking .ranking li {
    width: 31%;
    margin-top: 70px;
    padding-bottom: 85.3px;
    box-sizing: border-box;
    position: relative;
}
.ranking .ranking li > img {
    height: 80px;
}
.ranking .ranking li > a {
    display: block;
    margin-top: 24px;
}
.ranking .ranking li a > img {
    width: 100%;
    transition: all .3s;
}
.ranking .ranking li a > img:hover {
    box-shadow: 0 0 10px 2px #c5bab1, 0 0 6px 2px #4b23005e;
}
.ranking .ranking li a > img:active {
    box-shadow: 0 0 3px 1px #c5bab1, 0 0 2px 1px #4b23005e;
}
.ranking .ranking li .rank_title {
    font-family: var(--font-family-nt-romen);
}

.ranking .ranking li p {
    margin-top: 24px;
    font-size: 17px;
    font-weight: 500;
}
.ranking .ranking li .rank_desc {
    margin-top: 22px;
    line-height: 1.7em;
    font-size: 14px;
    text-align: left;
    transition: .3s all;
}
.ranking .ranking li .rank_desc:hover {
    opacity: .8;
}
.ranking .ranking li .rank_desc:active {
    opacity: 1;
}
.ranking .ranking li .rank_price {
    margin-top: 12px;
    margin-bottom: 2em;
    text-align: right;
    font-size: 15px;
}
.ranking .detail_area {
    padding-top: .8em;
    background: var(--background-color-09);
    box-shadow: 1px 0 0 var(--background-color-09);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}
.ranking .ranking li .detail_area p {
    margin-top: 0;
    font-size: 13px;
    font-weight: bold;
}
.ranking .detail_area a {
    margin-bottom: 0;
    padding: 0.6em 0 0.4em;
    background: var(--background-color-02);
    color: var(--color-02);
    font-size: 14px;
    text-align: center;
}
.ranking .detail_area a:hover {
    box-shadow: 0 0 8px 3px #afb19ec2, 0 0 3px 1px #b2b790eb;
}
.ranking .detail_area a:active {
    box-shadow: 0 0 1px 0px #afb19ec2, 0 0 1px 1px #b2b790eb;
}
@media screen and (max-width: 768px) {
    .ranking .ranking {
        margin-top: 0;
        padding: 0 0 50px;
    }
    .ranking .ranking li{
        margin-top: 50px;
    }
    .ranking .ranking li .rank_title {
        letter-spacing: -0.8px;
        font-size: 16px;
    }
    .ranking .ranking li > img {
        margin: 0 auto;
    }
    .ranking .ranking li > a {
        margin: 24px 16px 0;
    }
    .ranking .ranking li .rank_desc {
        margin-top: 28px;
        font-size: 13px;
    }
    .ranking .ranking li .rank_price {
        margin-top: 18px;
        margin-bottom: 3.6em;    
        font-size: 13px;
    }
    .ranking .slick-slide > p {
        margin-left: 16px;
        margin-right: 16px;
    }
    
    .ranking .detail_area {
        padding: 0.5em 0em 1em;
    }
    .ranking .ranking li .detail_area p {
        font-size: 12px;
        font-weight: 500;
    }
    .ranking .detail_area a {
        width: 68%;
        padding: 0.8em 0 0.7em;
        font-size: 18px;
        font-weight: 300;
    }
    .ranking .detail_area a::after {
        height: 1px;
    }
}



/* ラッピングサービス */
.wrapping_service {
    padding-bottom: 9em;
    background: var(--background-color-10);
    color: var(--color-03);
    text-align: center;
}
.wrapping_service .gift_box {
    margin-top: 9em;
}
.wrapping_service .message_card {
    margin-top: 6em;
}
.wrapping_service h3 {
    margin-bottom: 1.5em;
}
.wrapping_service img {
    margin-bottom: 2.2em;
}
.wrapping_service p {
    width: 465px;
    max-width: 100%;
    margin: 0em auto 1em;
    line-height: 1.5em;
    text-align: left;
    font-size: 15px;
}
.wrapping_service .gift_box p a {
    font-weight: bold;
    transition: all .3s;
}
.wrapping_service .gift_box p a:hover {
    opacity: .75;
}
.wrapping_service .gift_box p a:active {
    opacity: .95;
}
@media screen and (max-width: 768px) {
    .wrapping_service {
        padding-bottom: 2.5em;
    }
    .wrapping_service .gift_box {
        max-width: 600px;
        margin-top: 3.5em;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapping_service img {
        margin-bottom: 1.2em;
    }
    .wrapping_service p {
        width: 96%;
        font-size: 12px;
        letter-spacing: -0.5px;
    }
    .wrapping_service .message_card {
        max-width: 600px;
        margin-top: 3.5em;
        margin-left: auto;
        margin-right: auto;
    }
}



/* お届け日につきまして */
.delivery {
    background: var(--background-color-04);
}
.delivery .delivery_wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 90px 0px 100px;
}
.delivery .delivery_desc_wrap {
    margin: 24px;
    padding: 32px 10px 24px;
    border: 2px solid var(--background-color-04);
    box-shadow: 0 0 0 24px var(--background-color-11);
    background: var(--background-color-11);
    text-align: center;
}
.delivery .delivery_desc_wrap h2 {
    padding: 0;
    background: var(--background-color-11);
    color: var(--background-color-04);
    font-weight: bold;

}
.delivery .delivery_desc_wrap p {
    margin-top: 30px;
    margin-bottom: 12px;
    line-height: 37px;
    font-size: 22px;
    font-weight: 300;
    color: black;
}
.delivery .delivery_cards {
    display: flex;
    justify-content: space-between;
    margin: 0 .5em;
    padding: 32px 0 0;
}
.delivery .delivery_cards li {
    display: flex;
    align-items: center;
    padding: 13px 10px 13px 15px;
    background: var(--background-color-11);
    box-sizing: border-box;
    gap: 2%;
}
.delivery .delivery_cards li:first-child {
    width: 29%;
}
.delivery .delivery_cards li:nth-child(2){
    width: 38%;
}
.delivery .delivery_cards li:nth-child(3) {
    width: 29%;
    padding: 0;
}
.delivery .delivery_cards li:nth-child(3) > a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 13px 10px 13px 15px;
    transition: all .3s;
}
.delivery .delivery_cards li:nth-child(3) > a:hover {
    box-shadow: 0 0 8px 3px #b3b3b2c2, 0 0 3px 1px #afafafeb;
    opacity: .8;
}
.delivery .delivery_cards li:nth-child(3) > a:active {
    box-shadow: 0 0 3px 1px #b3b3b2c2, 0 0 1px 0px #afafafeb;
    opacity: .95;
}
.delivery .delivery_cards li img {
    max-height: 42px;
    padding-left: 10px;
}
.delivery .delivery_cards li div {
    line-height: 1.3em;
    padding-left: 10px;
}
.delivery .delivery_cards li p {
    margin-top: 10px;
    font-size: 19px;
    font-weight: bold;
}
.delivery .delivery_cards li span {
    font-size: 15px;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .delivery h2 {
        font-size: 26px;
    }
    .delivery .delivery_wrap {
        max-width: 600px;
        padding: 55px 0px 30px;
    }
    .delivery .delivery_desc_wrap {
        width: calc(94% - 28px);
        margin: 0 auto;
        padding: 10px 5px;
        border: 1px solid var(--background-color-04);
        box-shadow: 0 0 0 14px var(--background-color-11);
    }
    .delivery .delivery_desc_wrap p {
        margin-top: 15px;
        line-height: 2em;
        letter-spacing: -1px;
        font-size: 15px;
    }
    .delivery .delivery_cards {
        padding: 60px 0 0;
        flex-direction: column;
    }
    .delivery .delivery_cards li {
        width: 96% !important;
        margin: 0 auto 1.8em;
        padding: 6px 8px 8px 18px;
    }
    .delivery .delivery_cards li:nth-child(3) {
        position: relative;
    }
    .delivery .delivery_cards li:nth-child(3)::after {
        content: "";
        display: block;
        width: 1em;
        height: 1.16em;
        background: url(https://www.ikeda-jewelry.com/s/event/assets/christmas/2024/img/sp_arrow.png);
        background-size: contain;
        position: absolute;
        top: 50%;
        right: 1.2em;
        transform: translateY(-50%);
    }
    .delivery .delivery_cards li:nth-child(3) > a {
        padding: 6px 10px 8px 15px;
    }
    .delivery .delivery_cards li img {
        max-height: 40px;
    }
    .delivery .delivery_cards li:nth-child(2) img {
        max-height: 32px;
    }
    .delivery .delivery_cards li p {
        margin-top: 0;
        font-size: 17px;
    }
    .delivery .delivery_cards li span {
        font-weight: 500;
        letter-spacing: -1px;
    }
}


/* footer */
.footer {
    background: var(--background-color-01);
}
.footer > img {
    width: 100%;
}
.footer .footer_logo {
    text-align: center;
    padding: 235px 10px 120px;
}
.footer .footer_logo img {
    height: 48px;
    transition: all .3s;
}
.footer .footer_logo img:hover {
    opacity: .8;
}
.footer .footer_logo img:active {
    opacity: 1;
}
.footer .copyright {
    padding: 50px 65px;
    background: var(--background-color-02);
    color: var(--color-03);
    text-align: right;
}
.footer .copyright span {
    color: var(--color-02);
    font-size: 20px;
    font-weight: 300;
}
@media screen and (max-width: 768px) {
    .footer .footer_logo {
        padding: 85px 0px 60px;
    }
    .footer .footer_logo > a {
        display: inline-block;
    }
    .footer .footer_logo img {
        height: 55px;
    }
    .footer .copyright {
        padding: 15px 0;
        text-align: center;
    }
    .footer .copyright span {
        font-size: 12px;
    }
}

