@charset "utf-8";

/* =========================================
   増辰海苔店 父の日LP専用CSS (titinohi.css)
   Scope: #mz-md-lp-root
   ========================================= */

/* --------------------------------------------------
   1. ベース設定（全体を囲う箱と背景ストライプ）
   -------------------------------------------------- */
#mz-md-lp-root {
    width: 100%;
    max-width: 960px;
    margin: 40px auto;
    padding: 60px 40px; 
    box-sizing: border-box;
    color: #333;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    border-top: 8px solid #1a365d;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border-radius: 4px;

    /* ▼▼▼ ここから修正・追加 ▼▼▼ */

    /* ベースの薄水色 */
    background-color: #f0f7ff; 

    /* 父の日っぽい斜めストライプを薄く追加 */
    background-image: repeating-linear-gradient(
        -45deg,                /* ストライプの角度（-45度で右下がりに） */
        transparent,           /* 開始色は透明（ベースの色が見える） */
        transparent 10px,      /* 透明のまま10px進む（線の間隔） */
        rgba(255,255,255,0.4) 10px, /* ここから白の半透明（0.4＝不透明度40%）を開始 */
        rgba(255,255,255,0.4) 11px  /* 1pxだけ進んで白を終了（これで1pxの線になる） */
    );

    /* ▲▲▲ ここまで修正・追加 ▲▲▲ */
}

#mz-md-lp-root * {
    box-sizing: border-box;
}

#mz-md-lp-root img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: none;
}

/* --------------------------------------------------
   2. 見出し・タイポグラフィ
   -------------------------------------------------- */
#mz-md-lp-root h2 {
    font-family: "Yu Mincho", "YuMincho", serif;
    font-size: 28px;
    color: #1a365d;
    text-align: center;
    margin: 0 0 30px 0;
    font-weight: normal;
    letter-spacing: 0.15em;
}

#mz-md-lp-root .mz-md-title {
    font-family: "Yu Mincho", "YuMincho", serif;
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 80px auto 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #cce0ff;
    display: block;
    width: 100%;
    max-width: 600px;
}

#mz-md-lp-root .mz-md-title::after {
    content: "Father's Day Gift";
    display: block;
    font-size: 12px;
    color: #1a365d;
    font-family: sans-serif;
    margin-top: 5px;
    letter-spacing: 0.2em;
}

/* --------------------------------------------------
   3. ヒーローエリア & ナビゲーション
   -------------------------------------------------- */
#mz-md-lp-root .mz-md-hero {
    text-align: center;
    padding: 0 0 40px;
}

#mz-md-lp-root .mz-md-intro-text {
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 2.2;
}

#mz-md-lp-root .mz-md-intro-text p {
    margin: 0;
}

.mz-intro-nowrap {
    display: inline-block;
}

#mz-md-lp-root .mz-md-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

#mz-md-lp-root .mz-md-nav-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #1a365d;
    text-decoration: none;
    font-size: 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#mz-md-lp-root .mz-md-nav-btn:hover {
    background-color: #1a365d;
    color: #fff;
    border-color: #1a365d;
}

/* --------------------------------------------------
   4. キャンペーンエリア（特典・ポイント）
   -------------------------------------------------- */
#mz-md-lp-root .mz-md-campaign {
    /* ▼白背景の独立した箱にして目立たせる */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 600px;
}

#mz-md-lp-root .mz-md-campaign .mz-cp-top-area {
    text-align: center;
    margin-bottom: 25px;
}

.mz-cp-main-copy {
    font-size: 20px;
    font-weight: bold;
    color: #1a365d;
    letter-spacing: 0.1em;
}

.mz-cp-limit-text {
    font-size: 15px;
    font-weight: bold;
}

.mz-cp-tag {
    display: inline-block;
    background-color: #1a365d;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    margin-left: 10px;
    vertical-align: middle;
    border-radius: 2px;
}

.mz-cp-point-area {
    margin-top: 15px;
}

.mz-cp-label-box {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    margin-right: 10px;
    line-height: 1.2;
}

.mz-cp-label-top {
    display: block;
    font-size: 12px;
    color: #666;
}

.mz-cp-label-bottom {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #1a365d;
}

.mz-cp-number-big {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 60px;
    font-weight: bold;
    color: #1a365d;
    vertical-align: middle;
    line-height: 1;
}

.mz-cp-unit-big {
    font-size: 20px;
    font-weight: bold;
    color: #1a365d;
    vertical-align: bottom;
    margin-left: 5px;
}

.mz-cp-divider {
    text-align: center;
    position: relative;
    margin: 30px 0 20px;
}

.mz-cp-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #eee;
    z-index: 1;
}

.mz-cp-divider-text {
    position: relative;
    z-index: 2;
    background-color: #1a365d;
    color: #fff;
    padding: 5px 20px;
    font-size: 14px;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.mz-cp-benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mz-cp-benefit-item {
    font-size: 13px;
    background-color: #EEF9FF;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.mz-cp-benefit-item.highlight {
    background-color: #fff;
    border: 1px solid #1a365d;
    color: #1a365d;
    font-weight: bold;
}


/* --------------------------------------------------
   5. 商品カード (白背景で立体的に)
   -------------------------------------------------- */
#mz-md-lp-root .mz-md-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

#mz-md-lp-root .mz-md-card {
    width: 32%;
    background: #fff; /* 白背景 */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* 影をつけて浮かせる */
    padding-bottom: 20px;
}

#mz-md-lp-root .mz-md-card-img {
    display: block;
    position: relative;
    overflow: hidden;
}

#mz-md-lp-root .mz-md-card-img img {
    width: 100%;
    transition: transform 0.3s;
}

#mz-md-lp-root .mz-md-card-img:hover img {
    transform: scale(1.03);
}

/* ★ 追加：商品画像上のポイントリボン (父の日カラー：ネイビー×ゴールド) */
#mz-md-lp-root .mz-point-ribbon {
    position: absolute;
    top: 0;
    right: 15px;
    width: 65px;
    background: linear-gradient(135deg, #2a5288 0%, #1a365d 100%);
    color: #fff;
    text-align: center;
    padding: 12px 5px 18px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 12px), 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 12px), 0 100%);
}

#mz-md-lp-root .mz-point-ribbon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

#mz-md-lp-root .mz-point-ribbon .rb-text {
    font-size: 10px;
    display: block;
    line-height: 1.2;
    margin-bottom: 2px;
    letter-spacing: 0;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

#mz-md-lp-root .mz-point-ribbon .rb-num {
    font-size: 28px;
    color: #FFDF00;
    font-weight: bold;
    font-family: Arial, sans-serif;
    line-height: 1;
    text-shadow:
        -1px -1px 0 #b38000,
        1px -1px 0 #b38000,
        -1px  1px 0 #b38000,
        1px  1px 0 #b38000,
        2px 2px 3px rgba(0,0,0,0.6);
}

#mz-md-lp-root .mz-point-ribbon .rb-unit {
    font-size: 13px;
    color: #FFDF00;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

#mz-md-lp-root .mz-md-card h3 {
    font-size: 18px;
    margin: 20px 15px 10px;
    line-height: 1.4;
}

#mz-md-lp-root .mz-md-card-desc {
    font-size: 13px;
    color: #555;
    margin: 0 15px 15px;
    line-height: 1.6;
}

#mz-md-lp-root .mz-md-price {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 15px 20px;
    font-family: Arial, sans-serif;
}

#mz-md-lp-root .mz-md-btn {
    display: block;
    text-align: center;
    padding: 12px 0;
    margin: 0 15px;
    border: 1px solid #1a365d;
    color: #1a365d;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

#mz-md-lp-root .mz-md-btn:hover {
    background-color: #1a365d;
    color: #fff;
}


/* --------------------------------------------------
   6. お届け・ラッピング (白背景で立体的に)
   -------------------------------------------------- */
.mz-md-info-box,
.mz-md-wrap-container {
    background: #fff; /* 白背景 */
    padding: 40px; /* 余白をしっかり取ることで文字の幅をキープ */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.mz-del-section {
    margin-bottom: 30px;
}
.mz-del-section:last-child {
    margin-bottom: 0;
}

.mz-del-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    border-left: 4px solid #1a365d;
    padding-left: 10px;
    margin-bottom: 15px;
}

.mz-del-main-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.mz-del-note {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.mz-highlight {
    color: #1a365d;
    font-weight: bold;
}

/* ラッピングエリアのフレックス */
.mz-md-wrap-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.mz-md-wrap-img-col { width: 45%; }
.mz-md-wrap-text-col { width: 55%; }

#mz-md-lp-root .mz-md-wrap-title {
    font-size: 20px;
    font-weight: bold;
    color: #1a365d;
    margin-bottom: 15px;
    border-bottom: 1px solid #1a365d;
    padding-bottom: 10px;
}

.mz-md-wrap-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ▼ 仏事っぽく見えていた箇所の修正（ゴールドに変更） */
.mz-md-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mz-md-feature-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 12px;
    font-size: 15px;
}

.mz-md-feature-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #d4af37; /* ゴールドに変更 */
}

.mz-md-sub-note {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}


/* --------------------------------------------------
   7. メッセージカード一覧
   -------------------------------------------------- */
.mz-card-details {
    margin-top: 20px;
}

.mz-card-summary {
    display: block;
    background-color: #fff;
    border: 1px solid #cce0ff;
    color: #1a365d;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    list-style: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.mz-card-summary::-webkit-details-marker {
    display: none;
}
.mz-card-summary:hover {
    background-color: #f9fcff;
}
.mz-card-summary::after {
    content: "▼";
    display: inline-block;
    margin-left: 10px;
    font-size: 12px;
    transition: transform 0.3s;
}
.mz-card-details[open] .mz-card-summary::after {
    transform: rotate(180deg);
}

.mz-card-catalog-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 10px;
}

.mz-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mz-card-item {
    width: calc(25% - 15px);
    background: #EEF9FF;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.mz-card-thumb {
    position: relative;
    margin-bottom: 10px;
}

.mz-card-label {
    position: absolute;
    top: -5px;
    left: -5px;
    background-color: #1a365d;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 2px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.mz-card-text {
    font-size: 12px;
    line-height: 1.6;
    color: #444;
}

.mz-card-close-area {
    text-align: center;
    margin-top: 30px;
}

.mz-card-close-btn {
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px 30px;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
}
.mz-card-close-btn:hover {
    background: #eee;
}


/* --------------------------------------------------
   8. FAQエリア (白背景で立体的に)
   -------------------------------------------------- */
.mz-faq-container {
    background: #fff;
    padding: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.mz-faq-details {
    border-bottom: 1px solid #eee;
}
.mz-faq-details:last-child {
    border-bottom: none;
}

.mz-faq-summary {
    display: block;
    padding: 20px 20px 20px 50px;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
}
.mz-faq-summary::-webkit-details-marker {
    display: none;
}

#mz-md-lp-root .mz-faq-q-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 26px;
    height: 26px;
    background-color: #1a365d;
    color: #fff;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.mz-faq-answer {
    padding: 0 20px 30px 50px;
    font-size: 15px;
    line-height: 1.8;
}

.mz-faq-list {
    margin-top: 10px;
    padding-left: 0;
}
.mz-faq-list li {
    margin-bottom: 8px;
    padding-left: 1em;
    text-indent: -1em;
}

.mz-blue {
    color: #1a365d;
    font-weight: bold;
}

.mz-bag-guide-box {
    margin-top: 15px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.mz-bag-guide-title {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

.mz-bag-item { margin-bottom: 10px; }
.mz-bag-item:last-child { margin-bottom: 0; }
.mz-bag-item a {
    color: #0066cc;
    text-decoration: underline;
    font-size: 14px;
}
.mz-bag-item a:hover { text-decoration: none; }


/* --------------------------------------------------
   9. フッター & ページトップボタン
   -------------------------------------------------- */
.mz-md-footer {
    text-align: center;
    padding: 30px 0;
    font-size: 12px;
    color: #666;
    line-height: 2;
}

#mz-scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #1a365d;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    z-index: 100;
}

#mz-scroll-top-btn.is-show {
    opacity: 0.8;
    visibility: visible;
}

#mz-scroll-top-btn:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.mz-scroll-top-text {
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    letter-spacing: 0.05em;
}

/* =========================================
   レスポンシブ (スマホ向け調整)
   ========================================= */
@media screen and (max-width: 768px) {
    #mz-md-lp-root {
        padding: 30px 15px;
        margin: 20px auto;
    }

    #mz-md-lp-root h2 { font-size: 22px; }

    #mz-md-lp-root .mz-md-title {
        font-size: 20px;
        margin: 50px auto 30px;
    }

    #mz-md-lp-root .mz-md-intro-text { font-size: 15px; }

    #mz-md-lp-root .mz-md-nav { gap: 10px; }

    #mz-md-lp-root .mz-md-nav-btn {
        width: calc(50% - 5px);
        padding: 10px;
        font-size: 13px;
    }

    /* キャンペーンエリア */
    .mz-cp-main-copy { font-size: 18px; }
    .mz-cp-number-big { font-size: 48px; }

    .mz-cp-benefit-list {
        flex-direction: column;
        align-items: center;
    }
    .mz-cp-benefit-item {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* 商品カード */
    #mz-md-lp-root .mz-md-grid {
        flex-direction: column;
        gap: 30px;
    }
    #mz-md-lp-root .mz-md-card { width: 100%; }

    /* 情報ボックス */
    .mz-md-info-box, .mz-md-wrap-container {
        padding: 20px;
    }

    .mz-md-wrap-flex {
        flex-direction: column;
        gap: 20px;
    }
    .mz-md-wrap-img-col, .mz-md-wrap-text-col { width: 100%; }

    /* メッセージカード */
    .mz-card-item { width: calc(50% - 10px); }
    .mz-card-catalog-content { padding: 15px; }

    #mz-scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}