@charset "utf-8";.top_page_font_color{color: #FFFFFF;}/* レザージャケット特集LP CSS */

/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 全体の基本設定 */
.featureContents {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

/* メイン画像コンテナ */
.feature-kv-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff !important;
}

.kv-image, .sp-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ表示制御 */
.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

@media (max-width: 768px) {
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
}

/* セクション内部の共通設定 */
.section-inner-806, .section-inner-1030 {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-inner-806 {
    max-width: 806px;
}

.inner--sp {
    padding: 0 15px;
}

@media (max-width: 768px) {
    .inner--sp {
        padding: 0 20px;
    }
}

/* メッセージセクション */
.feature-message-section {
    padding: 60px 20px;
    text-align: center;
}

.feature-message-section:last-of-type {
    padding: 40px 20px 60px;
}

/* テキスト中央揃え */
.text-horizontal-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* 見出しスタイル */
h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

h1 small {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-top: 10px;
    letter-spacing: 0.1em;
}

h2 {
    font-size: 2.1rem;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    margin: 80px auto 40px;
    padding: 0 20px;
    letter-spacing: 0.02em;
    line-height: 1.4;
    max-width: 800px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #333, #666);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* 段落スタイル */
p {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 商品ブロック */
.styling-flex-container {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin: 40px auto;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 1000px;
    min-height: 400px;
}

.styling-flex-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.styling-image {
    width: 50%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
}

.styling-flex-right {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* 商品情報 */
.item-brand {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #888 !important;
    letter-spacing: 0.1em;
    margin-bottom: 15px !important;
}

.item-name {
    font-size: 1.7rem !important;
    font-weight: 600 !important;
    color: #2c2c2c !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
}

.item-price {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #2c2c2c !important;
    margin-bottom: 30px !important;
}

.item-price small {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
}

/* ボタンスタイル */
.view-more-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #2c2c2c, #555);
    color: #fff !important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.3);
    min-width: 200px;
    text-align: center;
}

.view-more-btn:hover {
    background: linear-gradient(45deg, #555, #777);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.4);
    color: #fff !important;
}

/* 最終セクションのボタン */
.feature-item-section {
    text-align: center;
    padding: 60px 20px;
}

.feature-item-section .view-more-btn {
    padding: 20px 50px;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.feature-item-section .view-more-btn:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin: 60px auto 30px;
    }
    
    p {
        font-size: 1.3rem;
        line-height: 1.8;
    }
    
    .styling-flex-container {
        flex-direction: column;
        margin: 30px 15px;
        max-width: calc(100% - 30px);
    }
    
    .styling-image {
        width: 100%;
        height: 350px;
        object-fit: cover;
        object-position: center 20%;
    }
    
    .styling-flex-right {
        width: 100%;
        padding: 30px 20px;
    }
    
    .item-brand {
        font-size: 1.1rem !important;
    }
    
    .item-name {
        font-size: 1.5rem !important;
    }
    
    .item-price {
        font-size: 1.8rem !important;
    }
    
    .view-more-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
        min-width: 180px;
    }
    
    .feature-message-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .styling-flex-container {
        margin: 20px 10px;
        max-width: calc(100% - 20px);
    }
    
    .styling-image {
        height: 320px;
        object-fit: cover;
        object-position: center 15%;
    }
    
    .styling-flex-right {
        padding: 25px 15px;
    }
    
    .item-name {
        font-size: 1.3rem !important;
    }
    
    .item-price {
        font-size: 1.6rem !important;
    }
    
    .view-more-btn {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 160px;
    }
}

/* アニメーション効果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}