@charset "UTF-8";

/* ==========================================================================
   Project: Connect Station HOME
   File: css/colorscheme.css
   Description: EGICカラースキームページ専用デザイン
   ========================================================================== */

/* --- ヒーローセクション --- */
.hero-colorscheme {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(50, 50, 50, 0.3)), url('/images/common/colorscheme-hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.hero-project-content {
    color: white;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.project-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    margin: 0 0 1rem 0;
    border-left: 6px solid #fff;
    padding-left: 1.5rem;
}

.project-catchcopy {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-left: 1.8rem;
    font-family: var(--font-serif);
}

/* --- 本文エリア --- */
.colorscheme-body {
    padding: 5rem 0;
    background-color: #fff;
}

.colorscheme-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.colorscheme-section {
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin: 0 0 2rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
    text-align: left; /* 左揃えで見やすく */
}

/* --- カラーパレット --- */
.color-palette {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.color-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    border: 1px solid #eee;
}

.color-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.color-chip {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 5px solid; /* 枠線色を強調 */
}

.color-info {
    padding: 1rem;
    text-align: center;
}

.color-info h4 {
    margin: 0 0 0.3rem 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.color-info p {
    margin: 0;
    font-family: monospace;
    font-size: 0.85rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

/* --- フッター注釈 --- */
.colorscheme-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: right;
    font-size: 0.85rem;
    color: #888;
}