@charset "utf-8";

/* =========================================================================
   基本リセット / ベーススタイル
========================================================================= */
* {
    box-sizing: border-box;
}
body, h1, h2, h3, h4, p, figure, ul, ol, li {
    margin: 0;
    padding: 0;
}
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    line-height: 1.6;
    letter-spacing: 0.05em; /* 過去サイトに合わせて全体的に少しアケる */
    color: #333; 
    background-color: #fff; 
    overflow-x: hidden;
}
img {
    max-width: 100%; 
    height: auto;
    vertical-align: bottom;
    /* transform等による画像のぼやけを防止 */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}
a:hover {
    opacity: 0.8;
}

/* =========================================================================
   共通レイアウト
========================================================================= */
.p-wrapper {
    width: 100%;
    overflow: hidden;
    font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
    margin-top: -100px;
}
.p-wrapper * {
    font-family: inherit;
}
.p-contents_inner {
    width: 100%;
    max-width: 1080px; 
    margin: 0 auto;
    background-color: #fff; 
}

/* レスポンシブ用（後ほどスマホ調整） */
.-sp { display: none; }
.-pc { display: block; }
@media screen and (max-width: 768px) {
    .-sp { display: block; }
    .-pc { display: none; }
}
@media (max-width: 768px) {
  .p-wrapper {
    margin-top: -50px;
  }
}

/* =========================================================================
   メインビジュアル (FV)
========================================================================= */
.l-fv {
    width: 100%;
    text-align: center;
}
.l-fv_img img {
    width: 100%;
}
/* リードテキスト */
.l-intro {
    text-align: center;
    padding: 54px 4% 78px;
    background-color: #fff;
}
.l-intro_main {
    max-width: 760px;
    margin: 0 auto 50px;
    font-size: 28px;
    font-weight: 600;
    color: #542a45;
    line-height: 1.55;
}
.l-intro_sub {
    max-width: 860px;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 600;
    color: #542a45;
    line-height: 1.65;
}

/* =========================================================================
   アンカーリンク (ページ内遷移ボタンエリア)
========================================================================= */
.l-anchors {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin: 0 auto 120px;
    position: relative;
    z-index: 10;
    max-width: 1080px;
    width: 100%;
    padding: 0;
}
.anchor-btn {
    position: relative;
    display: block;
    width: 510px;
    max-width: none;
    flex: 0 0 510px;
}
.anchor-btn_bg {
    width: 100%;
    display: block;
}
.anchor-btn_icn {
    position: absolute;
    z-index: 2;
}
/* Xアイコンは左上 */
.anchor-btn:first-child .anchor-btn_icn {
    /* PCカンプ読取値: button_x_icn は button_x 基準で top -15px / left 30px / width 47px */
    top: -20px;
    left: 30px;
    width: 56px;
}
/* Instagramアイコンは右上 */
.anchor-btn:last-child .anchor-btn_icn {
    /* PCカンプ読取値: button_insta_icn は button_insta 基準で top 18px / right -23px / width 63px */
    top: 12px;
    right: -30px;
    width: 76px;
}

/* =========================================================================
   X Campaign
========================================================================= */
.p-cpX {
    padding: 0 0 58px;
    background-color: #fff;
    overflow: visible;
}
.p-cpX_inner {
    max-width: 1080px; /* MVと同じ幅に拡張 */
    margin: 0 auto;
    background-image: url('../images/cp_x_bg.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 80px 40px 40px;
    position: relative;
    /* 1080px幅だと画面端（スマホ等）にくっつくので、一応マージン確保用の代替処置（デザイン優先だが万一のため） */
    width: 100%;
}

/* 装飾パーツ：はみ出す手 */
.p-cpX_decoHand {
    position: absolute;
    top: -52px;
    left: -20px;
    width: 338px;
    z-index: 15; /* 白枠より手前に来るよう重ね順を最前面に */
    pointer-events: none; /* スマホの下にあるテキストが選択できない事態を防ぐ */
}
.p-cpX_decoX {
    position: absolute;
    top: 230px;
    right: 128px;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

/* タイトルエリア（白文字ベース） */
.p-cpX_head {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}
.p-cpX_head_topLogo {
    margin-bottom: 18px;
}
.p-cpX_head_topLogo img {
    height: 35px;
}
.p-cpX_head_text1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: 14px;
}
.p-cpX_head_title {
    display: inline-block;
    max-width: 100%;
}
.p-cpX_head_title .-title {
    width: 610px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

/* メインの白ボックス */
.p-cpX_mainBox {
    background-color: #fff;
    border-radius: 20px;
    padding: 90px 80px 60px;
    position: relative;
    z-index: 1;
}

/* 2カラム構成 */
.p-cpX_2col {
    display: flex;
    align-items: flex-start;
    gap: 44px;
    margin-bottom: 40px;
}
.p-cpX_2col_left {
    flex: 0 0 48%;
}
.p-cpX_2col_right {
    flex: 1;
}

/* セクション内見出し＆テキスト */
.p-cpSection_title {
    font-size: 26px;
    color: #925482;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.4;
}
.p-cpSection_text {
    font-size: 20px;
    line-height: 1.8;
    color: #542A44;
    font-weight: 600;
}
.p-cpX_2col_right .p-cpSection_text {
    font-weight: normal;
}
.p-cpX_2col_right .p-cpSection_text + .p-cpSection_text {
    margin-top: 0.4em;
}
.p-cpX_2col_right .p-cpSection_text strong {
    font-weight: 600;
}

/* 応募方法ボックス (グレー) */
.p-cpX_methodBox {
    background-color: rgba(160, 132, 149, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 50px;
}
.p-cpX_methodBox_title {
    color: #925482;
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 600;
}
.p-cpX_methodBox_list {
    list-style: none;
    color: #542A44;
}
.p-cpX_methodBox_list li {
    display: flex;
    gap: 18px;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 3px;
    font-weight: 600;
}
.p-cpX_methodBox_list li .-num {
    font-size: 20px;
    font-weight: 600;
    color: #925482;
}
.p-cpX_methodBox_list li .-text {
    flex: 1; /* 改行時も番号の下に回り込まない */
}

/* ボタン周りテキストとCTA */
.p-cpX_noteText {
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    color: #6f4b68;
    font-weight: 600;
    margin-bottom: 60px;
}
.p-cpX_cta {
    margin-top: 0;
    display: flex;
    justify-content: center;
}
.p-cpX_cta--btn_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    min-height: 56px;
    margin: 0 auto;
    padding: 0 26px 0 30px;
    background-color: #A2658E;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.3s;
}
.p-cpX_cta--btn_item:hover {
    opacity: 0.8;
}
.p-cpX_cta--btn_item--text {
    position: relative;
    font-weight: 600;
    font-size: 22px;
    line-height: 3.35;
    letter-spacing: 0.05em;
    color: #fff;
    padding-left: 50px;
}
.p-cpX_cta--btn_item--text_icon {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 28px;
}
.p-cpX_cta--btn_item--arrow {
    min-width: 20px;
    max-width: 20px;
}


/* =========================================================================
   Instagram Campaign
========================================================================= */
.p-cpInsta {
    padding: 0 0 58px;
    background-color: #fff;
    overflow: visible;
}
.p-cpInsta_inner {
    max-width: 1080px; /* MV幅まで拡張 */
    margin: 0 auto;
    background-image: url('../images/cp_insta_bg.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 80px 40px;
    position: relative;
    width: 100%;
}

/* 装飾パーツ：はみ出す手 */
.p-cpInsta_decoHand {
    position: absolute;
    top: 64px;
    right: -82px;
    width: 314px;
    z-index: 15; /* 白箱(z-index:1)より手前 */
    pointer-events: none;
}

/* タイトルエリア */
.p-cpInsta_head {
    text-align: center;
    color: #444;
    margin-bottom: 50px;
    padding-right: 0; /* 右の手をよけるpaddingはz-index重ねで不要に */
}
.p-cpInsta_head_topLogo {
    margin-bottom: 16px;
}
.p-cpInsta_head_topLogo img {
    height: 35px;
    width: auto;
    max-width: 100%;
}
.p-cpInsta_head_text1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: 14px;
    color: #542a45;
}
.p-cpInsta_head_title {
    display: block;
    text-align: center;
}
.p-cpInsta_head_titleInner {
    position: relative;
    display: inline-block;
    max-width: 100%;
}
.p-cpInsta_head_title .-title {
    display: block;
    width: 580px;
    max-width: 100%;
    margin: 0 auto;
}
.p-cpInsta_head_title .-icon {
    position: absolute;
    top: 40%;
    left: -100px;
    transform: translateY(-50%);
    width: 80px;
}

/* メインの白ボックス */
.p-cpInsta_mainBox {
    background-color: #fff;
    border-radius: 20px;
    padding: 90px 80px 75px;
    position: relative;
    z-index: 1;
    margin-bottom: 75px;
}

/* 2カラムレイアウト（Xと同じ） */
.p-cpInsta_2col {
    display: flex;
    align-items: flex-start;
    gap: 44px;
    margin-bottom: 40px;
}
.p-cpInsta_2col_left { flex: 0 0 48%; }
.p-cpInsta_2col_left img {
    position: relative;
    top: -16px;
}
.p-cpInsta_2col_right {
    flex: 1;
}

.p-cpInsta_2col_right .p-cpSection_title { color: #d89f3a; border: none; }
.p-cpInsta_2col_right .p-cpSection_text {
    color: #542A44;
    font-weight: normal;
}
.p-cpInsta_2col_right .p-cpSection_text + .p-cpSection_text {
    margin-top: 0.4em;
}
.p-cpInsta_2col_right .p-cpSection_text strong {
    font-weight: 600;
}
.p-cpInsta_2col_right .p-cpSection_text.-detail {
    font-size: 16px;
    color: #542A44;
    margin-top: 0.8em;
}
.p-cpInsta_2col_right .p-cpSection_text.-detail + .p-cpSection_text.-detail {
    margin-top: 0;
}

/* 応募方法ボックス (イエロー) */
.p-cpInsta_methodBox {
    background-color: rgba(226, 197, 89, 0.2);
    border-radius: 10px;
    padding: 30px;
}
.p-cpInsta_methodBox_title {
    color: #d89f3a;
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 600;
}
.p-cpInsta_methodBox_list {
    list-style: none;
    color: #542A44;
}
.p-cpInsta_methodBox_list li {
    display: flex;
    gap: 18px;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 3px;
    font-weight: 600;
}
.p-cpInsta_methodBox_list li .-num {
    font-size: 20px;
    font-weight: 600;
    color: #d89f3a;
}
.p-cpInsta_methodBox_list li .-text {
    flex: 1; /* 改行時も番号の下に回り込まない */
}

/* どっち派？セクション */
.p-cpInsta_recipeWrap {
    text-align: center;
    position: relative;
    color: #444;
    max-width: 828px;
    margin: 0 auto;
}
.p-cpInsta_recipeTitle {
    position: relative;
    z-index: 2;
    margin-bottom: -28px;
}
.p-cpInsta_recipeTitle img {
    width: 100%;
    max-width: 656px;
    margin: 0 auto;
    display: block;
}
.p-cpInsta_recipeImage {
    position: relative;
    margin: 0 auto 60px;
    z-index: 1;
    max-width: 828px;
}
.p-cpInsta_recipeImage img {
    width: 100%;
    border-radius: 10px;
}
.p-cpInsta_decoPrune_L {
    position: absolute;
    bottom: 200px;
    left: -50px;
    width: 122px;
    z-index: 60;
    pointer-events: none;
}
.p-cpInsta_decoPrune_R {
    position: absolute;
    bottom: 700px;
    right: -38px;
    width: 77px;
    z-index: 60;
    pointer-events: none;
}
.p-cpInsta_noteText {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 60px;
    color: #542a45;
}
.p-cpInsta_cta {
    margin-top: 0;
    display: flex;
    justify-content: center;
}
.p-cpInsta_cta--btn_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    min-height: 56px;
    margin: 0 auto;
    padding: 0 26px 0 30px;
    background-color: #ffec9d;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.3s;
}
.p-cpInsta_cta--btn_item:hover {
    opacity: 0.8;
}
.p-cpInsta_cta--btn_item--text {
    position: relative;
    font-weight: 600;
    font-size: 22px;
    line-height: 3.35;
    letter-spacing: 0.05em;
    color: #542a44; /* 茶色文字に変更 */
    padding-left: 50px;
}
.p-cpInsta_cta--btn_item--text_icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    width: 30px;
}
.p-cpInsta_cta--btn_item--arrow {
    min-width: 20px;
    max-width: 20px;
}


/* =========================================================================
   応募規約 セクション
========================================================================= */
.l-method {
    margin-top: 56px;
    padding-bottom: 80px; /* 下部余白 */
}
.l-method_inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}
.l-method_head {
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.06em;
    text-align: center;
    color: #CE9F54;
    margin-bottom: 0;
}
.l-method_anno {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    color: #542A45;
    margin-top: 23px;
    margin-bottom: 0;
}
.l-method_inner h3 {
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin-top: 39px;
    padding: 11px;
    background: #542A45;
}
.l-method_inner h3 span {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.06em;
}
.l-method_scroll {
    overflow-y: scroll;
    height: 376px;
    margin-top: 19px;
    border: solid 1px #bfbfbf;
}
.l-method_scroll_inner {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.7;
    padding: 26px 52px 26px 26px;
    color: #000;
}

@media screen and (max-width: 768px) {
    .l-intro {
        padding: 36px 5% 40px;
    }
    .l-intro_main {
        font-size: 24px;
        margin-bottom: 16px;
        line-height: 1.65;
    }
    .l-intro_sub {
        font-size: 18px;
        line-height: 1.75;
    }

    .l-anchors {
        flex-direction: column;
        gap: 18px;
        margin: 0 auto 48px;
        padding: 0 5%;
        max-width: 470px;
    }
    .anchor-btn {
        width: 100%;
        max-width: none;
        flex: auto;
    }
    .anchor-btn_icn {
        max-width: 58px;
    }
    .anchor-btn:first-child .anchor-btn_icn {
        top: -14px;
        left: -2px;
        width: 44px;
    }
    .anchor-btn:last-child .anchor-btn_icn {
        top: -14px;
        right: -8px;
    }

    .p-cpX,
    .p-cpInsta {
        padding-bottom: 75px;
    }
    .p-cpX_inner,
    .p-cpInsta_inner {
        border-radius: 18px;
        padding: 34px 5.5% 40px;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    .p-cpX_inner {
        background-image: url('../images/cp_x_bg_sp.webp');
    }
    .p-cpInsta_inner {
        background-image: url('../images/cp_insta_bg_sp.webp');
    }

    .p-cpX_decoHand {
        top: -44px;
        left: -10px;
        width: 30%;
    }
    .p-cpX_decoX {
        top: 100px;
        right: 15px;
        width: 10%;
    }
    .p-cpX_head,
    .p-cpInsta_head {
        margin-bottom: 24px;
    }
    .p-cpX_head_topLogo img {
        height: 28px;
    }
    .p-cpX_head_text1,
    .p-cpInsta_head_text1 {
        font-size: 3vw;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    .p-cpX_head_title .-title {
        max-width: 298px;
    }

    .p-cpInsta_decoHand {
        top: -50px;
        right: -20px;
        width: 25%;
    }
    .p-cpInsta_head_topLogo {
        margin-bottom: 16px;
    }
    .p-cpInsta_head_topLogo img {
        height: 28px;
        width: auto;
    }
    .p-cpInsta_head_title .-title {
        max-width: 304px;
    }
    .p-cpInsta_head_title .-icon {
        top: -25px;
        left: -35px;
        width: 46px;
    }

    .p-cpX_mainBox,
    .p-cpInsta_mainBox {
        border-radius: 18px;
        padding: 28px 18px 26px;
    }
    .p-cpInsta_mainBox {
        margin-bottom: 44px;
    }
    .p-cpX_2col,
    .p-cpInsta_2col {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        margin-bottom: 24px;
    }
    .p-cpX_2col_left,
    .p-cpInsta_2col_left {
        flex: 0 0 auto;
        width: 100%;
        margin: 0 auto;
    }

    .p-cpSection_title {
        font-size: 16px;
        text-align: left;
        margin-bottom: 12px;
    }
    .p-cpSection_text {
        font-size: 15px;
        line-height: 1.7;
    }

    .p-cpX_methodBox,
    .p-cpInsta_methodBox {
        padding: 18px 16px 16px;
        margin-bottom: 24px;
    }
    .p-cpX_methodBox_title,
    .p-cpInsta_methodBox_title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .p-cpX_methodBox_list li,
    .p-cpInsta_methodBox_list li {
        gap: 0.65em;
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 4px;
    }
    .p-cpX_methodBox_list li .-num,
    .p-cpInsta_methodBox_list li .-num {
        font-size: 14px;
    }

    .p-cpX_noteText,
    .p-cpInsta_noteText {
        font-size: 14px;
        line-height: 1.7;
        margin: 18px 0 24px;
        text-align: left;
    }
    .p-cpInsta_noteText br {
        display: none;
    }
    .p-cpX_cta,
    .p-cpInsta_cta {
        margin-top: 0;
    }
    .p-cpX_cta--btn_item,
    .p-cpInsta_cta--btn_item {
        max-width: none;
        min-height: 52px;
        padding: 0 16px 0 32px;
    }
    .p-cpX_cta--btn_item--text,
    .p-cpInsta_cta--btn_item--text {
        font-size: 15px;
        line-height: 3.2;
        padding-left: 30px;
    }
    .p-cpX_cta--btn_item--text_icon,
    .p-cpInsta_cta--btn_item--text_icon {
        width: 22px;
    }
    .p-cpX_cta--btn_item--arrow,
    .p-cpInsta_cta--btn_item--arrow {
        min-width: 14px;
        max-width: 14px;
    }

    .p-cpInsta_recipeTitle {
        margin-bottom: -24px;
    }
    .p-cpInsta_recipeTitle img {
        max-width: 400px;
    }
    .p-cpInsta_recipeImage {
        margin-bottom: 20px;
    }
    .p-cpInsta_decoPrune_L {
        bottom: 26px;
        left: -12px;
        width: 74px;
    }
    .p-cpInsta_decoPrune_R {
        bottom: 390px;
        right: 5px;
        width: 44px;
    }

    .l-method {
        margin-top: 0;
        padding-bottom: 56px;
    }
    .l-method_inner {
        padding: 0;
    }
    .l-method_head {
        font-size: 24px;
    }
    .l-method_anno {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 16px;
    }
    .l-method_inner h3 {
        margin-top: 16px;
        padding: 4px;
    }
    .l-method_inner h3 span {
        font-size: 14px;
    }
    .l-method_scroll {
        height: 376px;
        margin-top: 19px;
    }
    .l-method_scroll_inner {
        font-size: 12px;
        line-height: 1.7142857143;
        padding: 18px 32px 18px 18px;
    }
    .p-contents_inner {
        width: auto;
        margin-left: 10px;
        margin-right: 10px;
    }
    .p-cpX_cta--btn_item {
        width: 280px;
    }
    .p-cpInsta_cta--btn_item {
        width: 280px;
    }
    .p-cpX_cta--btn_item--text_icon {
        left: 6px;
    }
    .p-cpInsta_cta--btn_item--text_icon {
        left: 6px;
    }
}

@media screen and (max-width: 1100px) and (min-width: 769px) {
    .p-contents_inner,
    .l-anchors,
    .p-cpX_inner,
    .p-cpInsta_inner {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
    }
    .anchor-btn {
        flex: 1;
        width: auto;
    }
    .p-cpX_decoHand {
        width: 30%;
    }
    .p-cpX_decoX {
        right: 6%;
        top: 20%;
    }
    .p-cpInsta_decoHand {
        width: 25%;
        top: 10%;
    }
    .p-cpX_mainBox {
        padding: 60px 40px 30px;
    }
    .p-cpInsta_mainBox {
        padding: 60px 40px 50px;
    }
}
