/* sakuhin.css 専用のスタイル */

/* 1. ページ全体の基本設定 */
.sakuhin-page {
    background: #FFFFFF !important;
    padding-top: 0;
}

.sakuhin-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 2. note_profile.png */
.hero-image-wrapper {
    width: 100%;
    background-color: #2D3A1B;
    line-height: 0;
}

.hero-full-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
}

/* 3. コンテンツ */
.sakuhin-board-body {
    background: white;
    width: 100%;
    padding: 60px 80px 100px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    margin-top: -1px;
}

.sakuhin-section {
    max-width: 800px; 
    margin: 0 auto;
}

/* 4. タイトル部分 */
.title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.sakuhin-section .title-marker {
    width: 110%;
    height: 15px;
    position: absolute;
    bottom: 2px;
    left: -5%;
    z-index: 1;
    opacity: 0.7;
}

.sakuhin-main-title {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    margin: 0;
    color: #333;
}

.sakuhin-intro {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333;
}

/* 5. 画像エリア（sakuhin_empty_lg.png） */
.main-visual, .sub-visual {
    width: 100%;
    margin-bottom: 50px;
}

.main-visual img, .sub-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* 6. 詳細テキスト */
.detail-info {
    margin-top: 60px;
}

.info-group {
    margin-bottom: 50px;
}

/* ★■の見出し設定：マーカー */
.info-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    position: relative; 
    display: inline-block; 
}


.info-title::before {
    content: ""; 
    position: absolute;
    bottom: -3px; 
    left: -5%;   
    width: 110%;
    height: 18px; 
    background-image: url("img/marker_sirokuro.png"); 
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1; 
    opacity: 0.8; 
}

.info-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    word-break: break-all;
}

/* 7. BACKボタン */
.back-link {
    text-align: right;
    margin-top: 80px;
}

.back-link img {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease;
}

.back-link a:hover img {
    opacity: 0.7;
}

/* 8. レスポンシブ対応 */
@media (max-width: 768px) {
    .sakuhin-board-body {
        padding: 40px 30px;
    }
    .sakuhin-main-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .sakuhin-board-body {
        padding: 40px 20px;
    }
    .info-title {
        font-size: 16px;
    }
    .info-title::before {
        height: 15px; 
    }
    .back-link img {
        height: 35px;
    }
}