/* ギャラリーページ専用CSS */

/* ページ全体の設定 */
.gallery-main {
    background-color: #f8f8f8;
    min-height: calc(100vh - 120px);
    padding-bottom: 0;
}

/* アクティブなナビゲーション */
.nav-links a.active {
    color: #a5a5a5;
    font-weight: bold;
}

/* ページヘッダー */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
    background-color: #fff;
    margin-bottom: 0;
}

.page-title {
    font-size: 48px;
    font-weight: normal;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
}

/* プロジェクトセクション */
.project-section {
    background-color: #fff;
    padding: 60px 0;
}

.project-title {
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.project-divider {
    width: 60px;
    height: 1px;
    background-color: #ccc;
    margin: 0 auto 50px;
}

/* ギャラリー画像レイアウト */
.gallery-images {
    max-width: 800px;
    margin: 0 auto;
}

.image-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.gallery-image-item {
    flex: 1;
    max-width: 380px;
}

.gallery-image-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image-item img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* お問い合わせセクション */
.contact-section {
    background-color: #f0f0f0;
    padding: 80px 0;
}

.contact-title {
    text-align: center;
    font-size: 28px;
    font-weight: normal;
    color: #333;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.contact-form-gallery {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-half {
    flex: 1;
}

.form-group-half label,
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    font-weight: normal;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    border-radius: 2px;
    background-color: #fff;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #666;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn-gallery {
    background-color: #333;
    color: #fff;
    padding: 15px 60px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    letter-spacing: 1px;
}

.submit-btn-gallery:hover {
    background-color: #555;
}

/* フッター */
.gallery-footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo h3 {
    font-size: 36px;
    font-weight: normal;
    letter-spacing: 2px;
}

.footer-info {
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
}

.footer-icon {
    display: flex;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #444;
    color: #fff;
    text-align: center;
    line-height: 35px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #666;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #fff;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .image-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-image-item {
        max-width: 100%;
    }
    
    .gallery-image-item img {
        height: 220px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav {
        gap: 15px;
        justify-content: center;
    }
    
    .footer-nav a {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .project-section {
        padding: 40px 0;
    }
    
    .gallery-images {
        padding: 0 10px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .submit-btn-gallery {
        padding: 12px 40px;
        font-size: 13px;
    }
}