@charset "UTF-8";

:root {
    --shaken: #EC0606;
    --main-pink: #FF60B7;
    --black: #333;
}

body {
    background-color: #F7F7F7;
    font-family: 'Rakuten Sans JP', -apple-system, Roboto, Helvetica, sans-serif;
}

/* <!-- ==================== over write ==================== --> */
.custom_wrap {
    width: 100%;
    max-width: 1032px;
    margin: 0 auto;
    font-feature-settings: "palt";
}

.custom-container {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}




.custom-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 24px;
}

a.rm-c-button--primary:hover {
    color: #fff;
}

@media screen and (max-width: 761px) {
    .custom-content-wrapper {
        margin: 0 auto;
        margin-bottom: 24px;
    }

    .rm-c-next__arrow:before,
    .rm-c-next__arrow:after {
        height: 30px;
    }

    .rm-c-next {
        height: 100px;
    }

    .rm-c-next__arrows {
        top: -10px;
    }
}

/* <!-- ==================== font-size ==================== --> */
.custom-about-title {
    font-weight: 900;
    font-size: 24px;
    line-height: 1.35;
    text-align: center;
    color: #333;
}

@media screen and (max-width: 761px) {
    .custom-about-title {
        margin-bottom: 10px;
    }
}

.custom-header {
    display: flex;
    width: 100%;
    padding: 16px 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #FF41AA;
    border-radius: 12px 12px 0 0;
}

/* <!-- ==================== color ==================== --> */

.custom-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
    border-radius: 12px 0 0 12px;
}

.custom-header-subtitle {
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.8px;
}

.custom-header-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.custom-header-title {
    color: white;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    line-height: 140%;
    font-feature-settings: "palt";
}

/* ==================== text align ==================== */
.u-c-ff008c {
    text-align: center;
    margin-bottom: 16px;
}

@media screen and (min-width: 649px) {
    .sp_br {
        display: none;
    }
}

/* ==================== Carousel Section Styles ==================== */

.rm-c-participate.rm-c-participate--hasNext.custom_feature {
    padding-bottom: 0;
}

/* 修正箇所: 普通のカードコンテンツにするためのスタイル変更 */
.rm-c-participate.custom_feature {
    background: #fff !important; /* 背景を白に設定 */
    position: relative;
    z-index: 1;
    /* transform: translateY(-50px);  <-- 削除: 上にずらす記述を削除 */
    margin-top: 0; /* 必要に応じて余白を調整してください (例: 30pxなど) */
    padding-top: 20px; /* 内部の余白を少し確保 */
    border-radius: 16px;
}

/* 修正箇所: 重なり表現用の擬似要素を無効化 */
.custom_feature::before {
    content: none; /* 擬似要素を削除 */
    /* 以下の記述は不要になるため無効化されます
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    */
}

.carousel-features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    max-width: 650px;
    margin: 0 auto;
}

.carousel-features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    position: relative;
}

.carousel-features-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    overflow: hidden;
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide-active {
    display: block;
}

.carousel-slide-image {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-nav-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background-color: #FFD1EB;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s;
}

.carousel-dot-active {
    background-color: #E60681;
}

.carousel-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.carousel-nav-prev {
    left: -10px;
}

.carousel-nav-next {
    right: -10px;
}

.carousel-nav-button svg {
    display: block;
}

/* ------------------------------------------- */
/* カルーセル解除と横並びレイアウト (900px以上) */
/* ------------------------------------------- */
@media screen and (min-width: 900px) {
    .carousel-features-section {
        padding: 40px 0;
        max-width: 960px;
    }

    .carousel-features-container {
        flex-direction: row;
        /* 横並びにする */
        justify-content: center;
        /* 中央寄せ */
        gap: 20px;
        /* 画像間の余白 */
        max-width: 100%;
        /* 必要に応じて最大幅を設定 */
    }

    .carousel-features-wrapper {
        display: flex;
        flex-direction: row;
        width: auto;
        max-width: none;
        overflow: visible;
        gap: 20px;
        width: 100%;
        max-width: 960px;
    }

    .carousel-slide {
        display: block !important;
        /* JavaScriptによるdisplay: none; を上書き */
        flex: 0 0 calc(33.333% - 13.333px);
        /* 3枚横並び (gap 20px考慮) */
        /* calc(100% / 3 - (gap * 2 / 3)) */
        max-width: calc(33.333% - 13.333px);
        /* 最大幅も設定 */
        /* carousel-slide-active によるスタイルを無効化 */
        /* transform: none !important; */
        /* opacity: 1 !important; */
        /* transition: none !important; */
    }

    .carousel-slide-active {
        /* カルーセル解除時はアクティブクラスのスタイルを無効化 */
        display: block !important;
    }

    .carousel-nav-dots,
    .carousel-nav-button {
        display: none !important;
        /* ナビゲーションを非表示 */
    }
}


/* ==================== page nav ==================== */

.custom-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 12px 12px;
    border: 1px solid #FF40A9;
    background-color: white;
    overflow: hidden;
    width: 100%;
}

.custom-service-card-wrap {
    width: 95%;
    margin: 16px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.custum_caution {
    width: 95%;
    margin: 16px auto 0;
    background-color: #EFF8FF;
    border: solid 1px #003F98;
    padding: 8px;
    font-size: 14px;
    text-align: center;
}

@media screen and (max-width: 649px) {
    .custum_caution {
        font-size: 12px;
    }
}

.custom-service-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.custom-disclaimer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(-10px);
}

.custom-disclaimer-text,
.rule-caution {
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    margin-top: 10px;
}

.rule-caution {
    text-align: left;
    margin-top: 0px;
}

.custom-expandable-content {
    width: 100%;
}

.custom-disclaimer-text .custom-default-color {
    color: #808080;
}

.custom-disclaimer-text .custom-link-color {
    color: #0074AD;
}

.custom-about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.custom-about-highlight {
    display: flex;
    height: 4px;
    padding: 0;
    justify-content: bottom;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    align-items: flex-end;
    background: var(--main-pink)
}

.custom-about-highlight-text {
    color: #333;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;

}

.custom-about-highlight-text .custom-bold {
    font-weight: 700;
}

.custom-about-description {
    color: #333;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.bs-section {
    width: 100%;
    max-width: 400px;
    margin:0 auto;
}

/* .custom-find-stores-btn {
    display: flex;
    width: 100%;
    max-width: 728px;
    padding-top: 12px;
    padding-bottom: 12px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 50px;
    border: 1px solid #FF008C;
    background-color: white;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.10);
    cursor: pointer;
    transition: transform 0.1s;
    margin: 0px auto 16px;
}

.custom-find-stores-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.10);
} */

.custom-find-stores-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    color: #FF008C;
    text-align: center;
    font-weight: normal;
    line-height: 100%;
}

.custom-campaign-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    background-color: white;
}

.custom-toggle-button {
    display: flex;
    width: 100%;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px 6px 0 0;
    border: 2px solid #E9E9E9;
    background-color: white;
    cursor: pointer;
}

.custom-toggle-title {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

@media (max-width: 375px) {
    .custom-find-stores-text {
        font-size: 18px;
    }
}

/* ==================== campaign detail toggle ==================== */

.custom-toggle-icon-wrapper {
    display: flex;
    padding: 4px;
    justify-content: center;
    /* 水平方向の中央揃え */
    align-items: center;
    /* 垂直方向の中央揃え */
    /* gap: 10px; はwrapper内に他の要素がないなら不要か、影響しないのでそのまま */
    border-radius: 40px;
    background-color: #FF008C;
}

.custom-toggle-icon {
    width: 16px;
    /* SVGの表示サイズを明示 */
    height: 16px;
    /* SVGの表示サイズを明示 */
    transition: transform 0.3s;
}

.custom-expandable-content {
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.custom-hidden {
    height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.custom-expanded-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.custom-hidden {
    display: none;
}

.custom-campaign-title-section {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    background-color: #E9E9E9;
}

.custom-campaign-title {
    align-self: stretch;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.custom-section-header {
    display: flex;
    padding: 16px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    background-color: #F7F8FB;
}

.custom-section-header-title {
    flex: 1;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
}

.custom-section-content {
    display: flex;
    padding: 16px;
    flex-direction: column;
    /* align-items: flex-start; */
    gap: 8px;
    align-self: stretch;
    background-color: white;
}

.custom-content-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.custom-content-item-title {
    width: 100%;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    line-height: 160%;
}

.custom-content-item-text {
    width: 100%;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    word-break: break-all;
    overflow-wrap: break-word;
}

.custom-content-item-text a,
.rule-caution a,
.custom-note-text a {
    word-break: break-all;
    overflow-wrap: break-word;
}

.custom-note-item {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
}

.custom-note-marker {
    width: 13px;
    color: #333;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
}

.custom-note-text {
    flex: 1;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
}

.custom-note-text.custom-default {
    color: #333;
}

.custom-note-text .custom-link {
    color: #0072BF;
    text-decoration: underline;
}

.custom-indented-list {
    display: flex;
    padding-left: 20px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.custom-list-marker {
    width: 14px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.custom-list-text {
    flex: 1;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.custom-large-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.custom-large-text .custom-default {
    color: #333;
}

.custom-large-text .custom-link,
u {
    color: #0072BF;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .custom-header-content {
        width: 100%;
    }

    .custom-header-title {
        font-size: 24px;
    }

    .custom-header-title-wrapper {
        margin: 0 auto;
    }

    .custom-service-card {
        overflow: hidden;
    }
}

/* app section */

.custom-app-install-image {
    width: 100%;
    max-width: 312px;
    height: auto;
}

/* App Install Section */
.custom-app-install-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom-app-install-image {
    width: 100%;
    max-width: 312px;
    height: auto;
}

/* App Badges */
.custom-app-badges {
    display: flex;
    align-items: center;
    gap: 29px;
    justify-content: center;
    width: 100%;
}

.custom-app-icon {
    width: 81px;
    height: 81px;
}

.custom-app-store-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 559px) {
    .custom-app-store-badges {
        flex-direction: initial;
    }
}


.custom-app-store-badge {
    width: 126px;
    height: auto;
}

/* App Features Section */
.custom-app-features {
    display: flex;
    padding: 0 1px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.custom-app-features-title {
    color: #333;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: 'Rakuten Sans JP-2', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    margin: 0;
}

.custom-app-feature-item {
    display: flex;
    width: 100%;
    max-width: 520px;
    flex-direction: column;
    gap: 11px;
}

.custom-app-feature-header {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

@media (min-width: 499px) {
    .custom-app-feature-header {
        width: 60%;
        margin: 0 auto;
    }
}

.custom-app-feature-number {
    text-align: center;
    font-family: 'Rakuten Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 130%;
    background: linear-gradient(180deg, #EC0606 0%, #EC0606 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
}

.custom-app-feature-title-bar {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex: 1;
    background: linear-gradient(180deg, #EC0606 0%, #EC0606 100%);
    height: 2px;
    transform: translateY(10px);
}

.custom-app-feature-title-text {
    color: #333;
    font-feature-settings: 'palt' on;
    font-family: 'Rakuten Sans JP-2', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 140%;
    margin: 0 auto;
}

.custom-app-feature-description {
    width: 100%;
    max-width: 287px;
    color: #333;
    font-feature-settings: 'palt' on;
    font-family: 'Rakuten Sans JP-2', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}


.rm-c-participate.cpn_all_wrap {
    padding-top: 64px;
    transform: translateY(-50px);
}



@media (min-width: 499px) {
    .custom-app-feature-header {
        text-wrap: nowrap;
    }

    .custom-app-feature-description {
        text-align: center;
    }

    .custom-app-feature-description {
        margin: 0 auto;
    }

    .custom-app-feature-title-text {
        padding-left: 0px;
    }
}

@media (min-width: 759px) {
    .rm-c-participate.cpn_all_wrap {
        padding-bottom: 64px;
        border-radius: 0 0 34px;
    }

    .custom-app-feature-description {
        max-width: none;
        margin: 0 auto;
        text-align: center;
    }

    .custom-app-feature-item {
        margin-top: 8px;
    }

    .custom-app-feature-header {
        gap: 16px;
    }
}



/* Responsive */
@media (max-width: 760px) {
    .custom-app-install-image {
        max-width: 100%;
    }

    .custom-app-badges {
        gap: 20px;
    }

    .custom-app-feature-item {
        max-width: 100%;
    }

    .custom-app-feature-item:nth-of-type(2) {
        margin-top: 16px;
    }

    .custom-app-feature-description {
        margin-left: auto;
        max-width: 87%;
    }

    .rm-c-participate.cpn_all_wrap {
        padding-top: 0;
    }

}


/* ==================== キャンペーン参加セクション ==================== */
.campaign-participation-section {
    display: flex;
    width: 100%;
    padding: 40px 16px 0;
    flex-direction: column;
    align-items: center;
    background: #F7F7F7;
}

.campaign-participation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 375px;
}

/* テキストエリア */
.campaign-participation-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.campaign-participation-subtitle {
    color: #333;
    text-align: center;
    font-family: 'Rakuten Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
}

.campaign-participation-title {
    color: #333;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-family: 'Rakuten Sans JP-2', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
}

/* キャンペーン参加方法 */
.campaign-participation-method {
    display: flex;
    width: 100%;
    padding: 20px 0 0;
    flex-direction: column;
    align-items: center;
}

.campaign-participation-note {
    color: #E60681;
    text-align: center;
    font-family: 'Rakuten Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 130%;
    margin: 0 0 10px;
}

/* カードグリッド */
.campaign-cards-grid {
    display: flex;
    width: 100%;
    max-width: 960px;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 20px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 10px;
}

/* カードスタイル */
.campaign-card {
    display: flex;
    /*width: calc(50% - 10px);*/
    min-width: 161px;
    height: 56px;
    padding: 16px 13px;
    justify-content: center;
    align-items: center;
    border-radius: 64px;
    border: 1px solid #4D4D4D;
    background: #FFF;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.10);
    text-decoration: none;
    transition: background-color 0.2s;
}

.campaign-card:hover {
    background-color: #f0f0f0;
}

.campaign-card:active {
    background-color: #e0e0e0;
}

.campaign-card-content {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;

}

.campaign-card-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.campaign-card-label {
    color: #4D4D4D;
    text-align: center;
    font-family: 'Rakuten Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* レスポンシブ対応 */
@media (max-width: 760px) {
    .campaign-participation-section {
        padding: 32px 16px 0;
    }

    .campaign-participation-subtitle {
        font-size: 16px;
    }

    .campaign-participation-title {
        font-size: 24px;
    }

    .campaign-card {
        width: calc(50% - 8px);
        min-width: 140px;
        height: 52px;
        padding: 14px 10px;
    }

    .campaign-card-label {
        font-size: 18px;
    }
}

@media (min-width: 761px) {
    .campaign-participation-section {
        padding: 60px 0 0;
    }

    .campaign-participation-container {
        max-width: 800px;
    }

    .campaign-cards-grid {
        display: flex;
        gap: 30px;
        justify-content: start;
        align-items: flex-start;
    }

    .campaign-card {
        /*width: calc((100% - (4 * 30px)) / 5);*/
        width: auto;
        max-width: none;
        flex-shrink: 0;
        flex-grow: 0;
    }
}

@media (min-width: 799px) {
    .campaign-card-content {
        width: 100%;
        max-width: 728px;
        gap: 8px;
    }

    .campaign-cards-grid {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: flex-start;
    }

    .campaign-card {
        width: calc((100% - (4 * 10px)) / 5);
        min-width: 0px;
        max-width: none;
        flex-shrink: 0;
        flex-grow: 0;
        flex-wrap: nowrap;
    }
}

/* ==================== responsive font size ==================== */

@media screen and (min-width: 759px) {
    .rm-c-participate__title {
        font-size: 40px;
    }

    .custom-header-title {
        font-size: 28px;
    }

    .custom-about-title {
        font-size: 32px;
        margin-bottom: 16px;

    }

    .custom-about-highlight-text {
        font-size: 24px;
    }

    .custom-about-description,
    .custom-header-subtitle,
    .u-c-ff008c {
        font-size: 20px;
    }

    .custom-disclaimer-text {
        font-size: 16px;
    }
}

.entry-attention {
    margin-bottom: 12px;
}

.rc-footer .rc-footer-top__return-top.rc-fixed-content {
    display: none;
}


/* ==================== 追従ヘッダー用 ==================== */

        /* --- 監視用の透明な要素 --- */
        #sticky-sentinel {
            width: 1px;
            height: 1px;
            visibility: hidden;
            margin-bottom: -1px;
        }

        /* --- 追従ヘッダー --- */
        .sticky-nav {
            position: sticky;
            top: 0;
            width: 100%;
            background-color: #ffffff;
            z-index: 1000;
            box-shadow: none; /* 初期は影なし */
            transition: box-shadow 0.3s ease;
        }

        /* 追従中に付与されるクラス */
        .sticky-nav.is-stuck {
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .nav-inner {
            max-width: 1000px;
            margin: 0 auto;
            height: 70px;
            transition: height 0.3s;
        }

        .nav-inner ul {
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 100%;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .nav-inner li {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* 区切り線 */
        .nav-inner li:not(:last-child)::after {
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background-color: #ccc;
        }

        /* リンクのスタイル */
        .nav-inner a {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row; /* 横並び */
            gap: 10px; /* 画像と文字の間隔 */
            
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: #333;
            font-weight: bold;
            font-size: 1rem;
            white-space: nowrap;
            transition: all 0.3s;
        }

        /* ★★★ 画像アイコンのスタイル設定 ★★★ */
        .nav-inner a img {
            width: 24px;  /* PCでのアイコン幅 */
            height: auto; /* 高さは自動（比率維持） */
            display: block;
        }

        .nav-inner a:hover {
            background-color: #f0f8ff;
            color: #007bff;
        }

        /* --- スマホ対応 --- */
        @media screen and (max-width: 768px) {
            .nav-inner { height: 55px; }
            
            .nav-inner a {
                gap: 6px;      /* 間隔を狭く */
                font-size: 14px; /* 文字を小さく */
            }

            /* ★スマホでの画像サイズ調整 */
            .nav-inner a img {
                width: 18px; /* スマホではアイコンも小さく */
            }

            .nav-inner li:not(:last-child)::after { height: 50%; }
        }

        @media screen and (max-width: 370px) {
            .nav-inner a { font-size: 10px; gap: 4px; }
            .nav-inner a img { width: 16px; } /* さらに小さく */
        }

        .content {
            padding: 40px 20px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .dummy-block {
            height: 400px;
            background-color: #eee;
            margin: 20px 0;
            border-radius: 8px;
        }


@media screen and (min-width: 761px) {
    .rm-c-accordion__button {
        padding: 16px 0;
        font-size: 16px;
        line-height: 1.4;
    }
}


.nextcontent_separator{
    width: 100%;
    height: 70px;
    background-color: #FFA6D7;
}



.rm-c-kv__period {
    margin-top: 0px;
}


.rm-c-detail__item--note::before {
    content: none;
}

.rm-c-detail__item--note {
    margin-left: 0px;
    padding-left: 0px;
}

.point-highlight {
    font-size: 24px;
}

.custom-find-stores-btn {
    font-size: 18px;
    width: 100%;
    max-width: 365px;
    height: 53px;
    padding-top: 12px;
    padding-bottom: 12px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 50px;
    border: 1px solid #FF008C;
    background-color: white;
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.10);
    cursor: pointer;
    transition: transform 0.1s;
    display: block;      
    margin: 0 auto; 
}

@media screen and (min-width: 761px) {
.custom-find-stores-btn {
    font-size: 18px;
    max-width: 500px;
    height: 56px;
}

}

.cpnbubble-section{
    width: 100%;
    max-width:400px;
    margin:0 auto;
}



.entry_retouch_2604 .CampaignEntryButton_campaignButton__n6hK5 .CampaignEntryButton_rexButton__VH0Gh.CampaignEntryButton_pink__l1dkv {
    background-color: #ff008c;
    border-color: #ff008c;
}

    .entry_retouch_2604 .CampaignEntryButton_campaignButton__n6hK5 .CampaignEntryButton_rexButton__VH0Gh {
                font-size: 18px;
                font-weight: 600;
                width: 100%;
                max-width: 500px;
    }


@media (max-width: 760px) {
.cpnbubble-section{
    width: 90%;
}
}

.CampaignEntryButton_campaignButton__n6hK5 {
    margin: 0px !important;
}




@media only screen and (min-width: 375px) and (max-width: 768px) {
    .entry_retouch_2604 .CampaignEntryButton_campaignButton__n6hK5 .CampaignEntryButton_rexButton__VH0Gh {
                min-width: 0rem;
                font-size: 18px;
                font-weight: 600;
                width: 100%;
    }
}

