.elementor-10655 .elementor-element.elementor-element-776743d{--display:flex;}/* 基本リセットとフォント設定 */
body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.product-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px; /* 全体の角を丸く */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

/* ヘッダー */
.page-header {
    text-align: center;
    padding: 20px 0;
    background-color: #f0f0e0; /* 木の温もりをイメージした薄いベージュ */
    border-bottom: 4px solid #d4c180; /* 太めのライン */
}

.page-header h1 {
    font-size: 1.8em;
    margin-bottom: 5px;
    color: #5d4037; /* 濃い茶色 */
    font-weight: normal;
}

.page-header h2 {
    font-size: 2.2em;
    color: #8d6e63;
    margin-top: 0;
}

/* 画像と仕様セクションのレイアウト（デスクトップ向け） */
.product-image-section {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.product-image {
    flex: 2;
    position: relative;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.copyright {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.85);
    padding: 5px 10px;
    font-size: 0.8em;
    color: #555;
    border-radius: 4px;
    white-space: nowrap;
}

.specifications {
    flex: 1;
    background-color: #fcfcfc;
    border: 1px solid #a1887f; /* 木材に合わせた色 */
    border-radius: 8px;
    padding: 15px;
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.specifications h3 {
    text-align: center;
    border-bottom: 2px solid #ccc;
    padding-bottom: 8px;
    margin-top: 0;
    color: #5d4037;
    font-size: 1.2em;
}

.specifications table {
    width: 100%;
    border-collapse: collapse;
}

.specifications th, .specifications td {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px dotted #e0e0e0;
    font-size: 0.9em;
}

.specifications th {
    background-color: #f5f5f5;
    width: 35%;
    font-weight: bold;
    color: #444;
}

/* 特長と用途セクション */
.features, .applications {
    margin-bottom: 30px;
    padding: 10px 0;
}

.features h3, .applications h3, .detail-image-section h3 {
    font-size: 1.6em;
    color: #387038; /* 自然をイメージした緑 */
    border-bottom: 3px solid #4caf50;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.features ul, .applications ul {
    list-style-type: none;
    padding-left: 0;
}

.features li, .applications li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
}

/* カスタムリストマーカー */
.features li::before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 1.1em;
}

.applications li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-size: 1em;
}

/* 新しい詳細画像セクションのスタイル */
.detail-image-section {
    margin: 40px 0;
    text-align: center;
}

.detail-image-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.detail-image-section p {
    font-size: 0.95em;
    color: #666;
    margin-top: 5px;
}

/* 連絡先セクション */
.contact-info {
    margin-top: 30px;
    padding: 20px;
    border: 1px dashed #a1887f;
    background-color: #fcf8f0; /* 少し温かみのある背景 */
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 1.4em;
    color: #5d4037;
    margin-top: 0;
    border-bottom: none;
}

.office-location {
    margin-bottom: 15px;
    padding-left: 5px;
}

.office-location label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1em;
}

address {
    font-style: normal;
    padding-left: 25px;
    line-height: 1.8;
}

/* フッター */
footer {
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: #fff;
    font-size: 0.85em;
}

/* スマホ対応（レスポンシブデザイン） */
@media (max-width: 768px) {
    .product-image-section {
        flex-direction: column; /* 縦並びにする */
        gap: 20px;
    }

    .product-image, .specifications {
        flex: auto; /* 幅を自動調整 */
    }

    .specifications table {
        font-size: 0.85em;
    }
    
    .page-header h2 {
        font-size: 1.8em;
    }
}