/* --- Base Styles --- */
.lp-wrapper-main {
    background-color: #ffffff;
    color: #333;
    font-family: "Times New Roman", "Shippori Mincho", "Yu Mincho", "MS Mincho", "Noto Serif JP", serif;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.lp-wrapper-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}

/* --- Hero Section --- */
.lp-wrapper-hero {
    width: 100%;
    line-height: 0;
    /* 下部の隙間削除 */
    background-color: #fff;
}

.lp-wrapper-hero-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 1140px;
    /* PC最大幅 */
}

/* --- Profile Section --- */
.lp-wrapper-profile {
    padding: 100px 0 0;
    background-color: #fff;
}

.lp-wrapper-profile-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.lp-wrapper-profile-image {
    flex: 0 0 350px;
    position: relative;
}

.lp-wrapper-profile-image::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid #c5a059;
    z-index: 0;
}

.lp-wrapper-profile-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
    z-index: 1;
    display: block;
}

.lp-wrapper-profile-content {
    flex: 1;
}

.lp-wrapper-profile-label {
    font-size: 0.8rem;
    color: #c5a059;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.lp-wrapper-profile-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.lp-wrapper-en-name {
    font-size: 1.1rem;
    margin-left: 10px;
    font-family: 'Noto Serif JP', sans-serif; 
    color: #888;
}

.lp-wrapper-profile-title {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.lp-wrapper-profile-text p {
    margin-bottom: 1.5em;
    font-size: 1rem;
}

/* --- Message Section --- */
.lp-wrapper-message {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f7;
}

.lp-wrapper-message-quote_eng {
    font-size: 1.4rem;
    font-style: italic;
    color: #333;
    position: relative;
    display: inline-block;
}

.decorated_line {
    max-width: 100%;
    width: 400px;
    margin: 2rem auto;
    padding:  2rem 0 0;
}

/* --- Product Section --- */
.lp-wrapper-products {
    padding: 100px 0;
    background-color: #fff;
}

.lp-wrapper-section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.lp-wrapper-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
}

.lp-wrapper-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lp-wrapper-product-img-box {
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f0f0f0;
}

.lp-wrapper-product-img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    /* 商品画像を正方形で統一 */
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lp-wrapper-product-card:hover .lp-wrapper-product-img-box img {
    transform: scale(1.05);
}

.lp-wrapper-product-name {
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
    min-height: 2.8em;
    /* 2行分確保して高さを揃える */
}

.lp-wrapper-product-price {
    font-size: 1.1rem;
    color: #c5a059;
    margin-bottom: 15px;
    text-align: right;
}

.lp-wrapper-tax {
    font-size: 0.8rem;
}

/* 購入ボタン */
.lp-wrapper-btn-purchase {
    display: block;
    text-align: center;
    padding: 12px 0;
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.lp-wrapper-btn-purchase:hover {
    background-color: #333;
    color: #fff;
}

/* もっと見るボタン */
.lp-wrapper-more-action {
    margin-top: 80px;
    text-align: center;
}

.lp-wrapper-btn-more {
    display: inline-block;
    padding: 18px 60px;
    background-color: #c5a059;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.2em;
    transition: opacity 0.3s ease;
}

.lp-wrapper-btn-more:hover {
    opacity: 0.8;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .lp-wrapper-profile-text {
        margin: 0 auto
    }


    .lp-wrapper-profile-flex {
        flex-direction: column;
        text-align: center;
    }

    .lp-wrapper-profile-image {
        flex: 0 0 auto;
        width: 250px;
        margin: 0 auto 40px;
    }

    .lp-wrapper-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .lp-wrapper-product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-wrapper-message-quote_eng {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .lp-wrapper-btn-more {
        width: 100%;
        box-sizing: border-box;
    }

    .lp-wrapper-profile-text p {
        text-align: left;
    }

    .decorated_line {
        padding: 0 2rem;
    }
}