<style>
.p-lp-wrapper {
    width: 100%;
    margin: 0 auto;
    color: #333;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

/* タイトルバナー自動拡縮 */
.p-lp-hero {
    width: 100%;
    margin: 0;
    padding: 0;
}
.p-lp-hero__full-img {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    height: auto;
}

.p-lp-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.p-lp-title {
    text-align: center;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}
.p-lp-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c4a35b;
}

/* 特典セクション */
.p-lp-benefit { background-color: #fcfaf5; max-width: 100% !important; }
.p-lp-lead { text-align: center; margin-bottom: 40px; font-weight: bold; }
.p-lp-benefit__list { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 40px; }
.p-lp-benefit__item { flex: 1; min-width: 280px; max-width: 310px; background: #fff; border: 2px solid #c4a35b; border-radius: 8px; padding: 20px; text-align: center; box-sizing: border-box; }
.p-lp-benefit__label { display: inline-block; background: #c4a35b; color: #fff; padding: 4px 12px; border-radius: 4px; margin-bottom: 10px; font-weight: bold; font-size: 14px; }
.p-lp-benefit__models { font-size: 14px; font-weight: bold; }
.p-lp-image-banner { max-width: 850px; margin: 0 auto; text-align: center; }
.p-lp-image-banner img { width: 100%; height: auto; }

/* クーポンセクション（被り・余白の完全修正版） */
.p-lp-coupon { padding-top: 80px; }
.p-lp-title--coupon { color: #d32f2f; }
.p-lp-title--coupon::after { background-color: #d32f2f; }
.p-lp-coupon__deadline { text-align: center; font-size: 18px; color: #d32f2f; font-weight: bold; margin-bottom: 40px; }

.p-lp-coupon__list { display: flex; flex-direction: column; gap: 25px; }

.p-lp-coupon__card {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    box-sizing: border-box;
}

/* 画像サイズを【横幅160px】に厳格固定し、はみ出しを防ぐ */
.p-lp-coupon__thumb, 
.p-lp-coupon__thumb-group {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    gap: 8px !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* 1枚の時の画像サイズ制限 */
.p-lp-coupon__thumb img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain;
}

/* 2枚横並び（①リトルキュア・アミュ）の時の各画像サイズ */
.p-lp-coupon__thumb-group img {
    width: calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
    height: auto !important;
    object-fit: contain;
}

/* テキストエリア：右側いっぱいに広げ、余白を無くす */
.p-lp-coupon__content {
    flex-grow: 1 !important;
    padding-left: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-lp-coupon__name { font-size: 18px; margin: 0 0 5px 0; color: #333; font-weight: bold; }
.p-lp-coupon__old-price { font-size: 13px; color: #888; text-decoration: line-through; margin-bottom: 10px; }

/* クーポンボックス：右側余白を埋めるために横いっぱいに広げる */
.p-lp-coupon__new-price {
    background: #fffcfc;
    border: 2px dashed #d32f2f;
    padding: 12px 20px;
    border-radius: 8px;
    display: block; /* 全幅表示に変更 */
    width: 100%;
    max-width: 500px; /* PCで広がりすぎないストッパー */
    box-sizing: border-box;
    text-align: center;
}
.p-lp-coupon__label {
    display: block;
    font-size: 13px;
    color: #d32f2f;
    font-weight: bold;
    margin-bottom: 2px;
}
.p-lp-coupon__amount {
    font-size: clamp(28px, 4.5vw, 44px); /* 価格を極大化 */
    color: #d32f2f;
    font-weight: 900;
    font-family: "Verdana", sans-serif;
    line-height: 1.1;
}
.p-lp-coupon__amount span { font-size: 0.4em; margin: 0 2px; vertical-align: middle; }

/* お申し込みの流れ & スケジュール */
.p-lp-flow { background-color: #f9f9f9; max-width: 100% !important; }
.p-lp-flow__container { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; }
.p-lp-flow__step { background: #fff; padding: 15px 20px; border-radius: 5px; display: flex; align-items: center; gap: 20px; border: 1px solid #eee; box-sizing: border-box; }
.p-lp-flow__num { background: #333; color: #fff; padding: 4px 8px; font-size: 11px; font-weight: bold; border-radius: 3px; }

.p-lp-schedule__box { max-width: 800px; margin: 0 auto; border: 2px solid #eee; box-sizing: border-box; }
.p-lp-schedule__row { display: flex; border-bottom: 2px solid #eee; }
.p-lp-schedule__header { background: #f4f4f4; padding: 20px; width: 250px; font-weight: bold; display: flex; align-items: center; box-sizing: border-box; }
.p-lp-schedule__body { padding: 20px; flex: 1; box-sizing: border-box; }
.p-lp-schedule__body strong { font-size: 20px; color: #c4a35b; }
.p-lp-schedule__note { font-size: 13px; margin-top: 8px; color: #666; }
.p-lp-schedule__note span { color: #d32f2f; font-weight: bold; }

/* スマホ対応（レスポンシブ） */
@media screen and (max-width: 768px) {
    .p-lp-section { padding: 40px 15px; }
    .p-lp-coupon__card { flex-direction: column; text-align: center; padding: 20px; }
    .p-lp-coupon__thumb, .p-lp-coupon__thumb-group { width: 140px !important; min-width: 140px !important; max-width: 140px !important; margin-bottom: 15px; }
    .p-lp-coupon__content { padding-left: 0; width: 100%; }
    .p-lp-coupon__new-price { margin: 0 auto; }
    .p-lp-coupon__amount { font-size: 32px; }
    .p-lp-schedule__row { flex-direction: column; }
    .p-lp-schedule__header { width: 100%; padding: 10px 15px; }
}
</style>