@charset "euc-jp";

/* ================================
   共通設定
   ================================ */
.lcn-promo-wrapper {
    font-family: "Yu Mincho", "MS PMincho", "Hiragino Mincho ProN", serif;
    color: #333333;
    line-height: 1.8;
    text-align: center;
    background-color: #ffffff;
    margin: 0;
    padding: 0 0 50px 0;
    box-sizing: border-box;
}

.lcn-promo-wrapper * {
    box-sizing: border-box;
}

.lcn-promo-wrapper a {
    text-decoration: none !important;
}

.lcn-promo-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 表示切替用クラス (デフォルトはPC表示) */
.mobile-only {
    display: none !important;
}

.pc-only {
    display: flex !important;
}

/* ================================
   トップ要素
   ================================ */
.lcn-promo-top-banner {
    width: 100%;
    margin-bottom: 50px;
    background-color: transparent;
    display: block;
}

.lcn-promo-top-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.lcn-promo-logo-area {
    margin: 20px auto;
    width: 80px;
    height: 80px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lcn-promo-logo-area img {
    max-width: 100%;
    height: auto;
}

.lcn-promo-message {
    font-size: 15px;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    color: #666666;
}

/* セクション見出しと横線 */
.lcn-promo-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

.lcn-promo-heading-text {
    text-align: center;
    display: inline-block;
}

.lcn-promo-heading::before,
.lcn-promo-heading::after {
    content: "";
    height: 1px;
    background-color: #666;
    flex-grow: 1;
    max-width: 150px;
}

.lcn-promo-heading::before { margin-right: 20px; }
.lcn-promo-heading::after { margin-left: 20px; }

.lcn-promo-heading-highlight {
    color: #ff8eaa;
    font-size: 24px;
    margin: 0 5px;
}

/* ================================
   カテゴリ枠 (PC版: 3列フレックス)
   ================================ */
.lcn-promo-categories {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.lcn-promo-category-box {
    background-color: #f9f7f7;
    padding: 30px 20px;
    border-radius: 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.lcn-promo-category-title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.lcn-promo-category-image {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: transparent;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lcn-promo-category-image img {
    max-width: 100%;
    height: auto;
}

/* スマホ用: すべての商品の丸い画像エリア */
.lcn-promo-category-image-circle {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    border-radius: 50%;
    background-color: transparent;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lcn-promo-category-image-circle img {
    width: 100%;
    height: auto;
}

.lcn-promo-category-box-all {
    background-color: #a88c94;
    color: #ffffff;
}

.lcn-promo-category-box-all .lcn-promo-category-title {
    color: #ffffff;
}

/* 商品を見るリンク */
.lcn-promo-link-action {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a88c94;
    border-radius: 20px;
    padding: 8px 0;
    width: 80%;
    max-width: 180px;
    color: #000000;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s ease;
    background-color: #ffffff;
    position: relative;
}

.lcn-promo-link-action::after {
    content: "\203A"; 
    position: absolute;
    right: 15px;
}

.lcn-promo-link-action:hover {
    background-color: #a88c94; 
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* スマホ専用すべての商品ボタン */
.lcn-promo-link-action-all {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 8px 0;
    width: 100%;
    max-width: 180px;
    color: #000000;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s ease;
    background-color: #ffffff;
    position: relative;
    border: 1px solid #ffffff;
}

.lcn-promo-link-action-all::after {
    content: "\203A"; 
    position: absolute;
    right: 15px;
}

.lcn-promo-link-action-all:hover {
    background-color: transparent; 
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ================================
   すべての一覧バナー (PC版のみ表示)
   ================================ */
.lcn-promo-all-items {
    background-color: #a88c94;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: #ffffff !important;
    margin-bottom: 70px;
    transition: all 0.3s ease;
}

.lcn-promo-all-items:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.lcn-promo-all-items-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lcn-promo-all-items-icon img {
    width: 100%;
    height: auto;
}

.lcn-promo-all-items-text {
    font-size: 18px;
    letter-spacing: 0.1em;
}

/* ================================
   おすすめコンテンツ
   ================================ */
.lcn-promo-contents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.lcn-promo-content-item {
    color: #333333;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
}

.lcn-promo-content-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}



.lcn-promo-content-item.full-width {
    grid-column: span 2;
}


.lcn-promo-content-image {
    background-color: transparent;
    aspect-ratio: 1000 / 328;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lcn-promo-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lcn-promo-content-text {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    font-size: 12px;
    border-top: 1px solid #eeeeee;
    align-items: center;
}

.lcn-promo-content-arrow {
    color: #666666;
}

/* ================================
   レスポンシブ対応 (モバイル向け)
   ================================ */
@media (max-width: 768px) {
    /* 表示切替 */
    .mobile-only {
        display: inline !important; 
    }
    div.mobile-only {
        display: flex !important; 
    }
    .pc-only {
        display: none !important;
    }

    /* トップバナーを画面端まで広げる */
    .lcn-promo-top-banner {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        margin-bottom: 30px;
    }

    /* メッセージのフォントサイズと余白調整 */
    .lcn-promo-message {
        font-size: 13px; 
        margin-bottom: 40px;
    }

    /* 見出しのフォントサイズ縮小とレイアウト調整 */
    .lcn-promo-heading {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .lcn-promo-heading-highlight {
        font-size: 20px;
    }
    .lcn-promo-heading::before,
    .lcn-promo-heading::after {
        max-width: 50px; 
    }

    /* スマホ版: 4つの箱を2×2のグリッドに */
    .lcn-promo-categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 50px;
    }
    
    .lcn-promo-category-box {
        padding: 20px 10px;
    }
    
    .lcn-promo-category-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    /* ボタン文字サイズ調整 */
    .lcn-promo-link-action,
    .lcn-promo-link-action-all {
        font-size: 12px;
        width: 100%;
        padding: 10px 0;
    }
    .lcn-promo-link-action::after,
    .lcn-promo-link-action-all::after {
        right: 10px;
    }

    /* おすすめコンテンツ */
    .lcn-promo-contents-grid {
        grid-template-columns: 1fr;
    }
    .lcn-promo-content-item.full-width {
        grid-column: span 1;
    }
    .lcn-promo-content-image,
    .lcn-promo-content-item.full-width .lcn-promo-content-image {
        aspect-ratio: 1000 / 328;
    }
}