/* ========================================
   農業機械メーカー 個別ページ
======================================== */

/* Hero Section */
.single-maker-hero-section {
    background-color: #53834F;
    padding: 40px 20px 60px;
}

.single-maker-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Breadcrumb */
.single-maker-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #ffffff;
    text-align: left;
}

.single-maker-breadcrumb .breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
}

.single-maker-breadcrumb .breadcrumb-link:hover {
    text-decoration: underline;
}

.single-maker-breadcrumb .breadcrumb-separator {
    margin: 0 8px;
    color: #ffffff;
}

.single-maker-breadcrumb .breadcrumb-current {
    color: #ffffff;
}

/* Title */
.single-maker-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 20px 0;
    font-family: 'Zen Maru Gothic', 'Zen Maru Gothic', sans-serif;
    line-height: 1.5;
}

/* Dots */
.single-maker-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.single-maker-dot {
    width: 12px;
    height: 12px;
    background-color: #E6AE25;
    border-radius: 50%;
}

/* Content Section */
.single-maker-content-section {
    background-color: #FBF9F4;
    padding: 60px 20px 80px;
}

/* Detail Card */
.maker-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Image */
.maker-detail-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.maker-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.maker-detail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a7c8c 0%, #2d5a6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.maker-detail-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.placeholder-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    z-index: 1;
    position: relative;
}

/* Info Sections */
.maker-info-sections {
    padding: 30px;
}

.maker-info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.maker-info-row:last-child {
    margin-bottom: 0;
}

.info-label-box {
    flex: 0 0 auto;
    background-color: #53834F;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
}

.info-value-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
    background-color: #ffffff;
    padding-top: 10px;
}

.website-link {
    color: #2563EB;
    text-decoration: none;
    word-break: break-all;
}

.website-link:hover {
    text-decoration: underline;
}

/* Back Button */
.maker-back-button-container {
    margin-top: 40px;
    text-align: center;
}

.maker-back-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: #53834F;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.maker-back-button:hover {
    background-color: #3d6139;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-maker-title {
        font-size: 24px;
    }
    
    .maker-detail-image {
        height: 220px;
    }
    
    .maker-info-sections {
        padding: 20px;
    }
    
    .maker-info-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-label-box {
        width: 100%;
        text-align: center;
    }
    
    .info-value-text {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .single-maker-title {
        font-size: 20px;
    }
    
    .maker-detail-image {
        height: 180px;
    }
    
    .maker-info-sections {
        padding: 15px;
    }
    
    .info-label-box,
    .info-value-text {
        font-size: 13px;
    }
    
    .maker-back-button {
        width: 100%;
        max-width: 300px;
    }
}

