@charset "UTF-8";

/* ==========================================================================
   Project: Connect Station HOME
   File: css/characters_biz.css
   Description: キャラクター事業ページ専用デザイン
   ========================================================================== */

/* --- ヒーローセクション --- */
.hero-charbiz {
    /* カラフルで楽しい雰囲気 */
    background-image: linear-gradient(to top, rgba(255, 152, 0, 0.8), rgba(255, 64, 129, 0.4)), url('/images/common/characters-hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    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;
    font-weight: bold;
    background-color: rgba(255,255,255,0.9);
    color: #e91e63; /* ポップなピンク */
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-left: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- イントロダクション --- */
.charbiz-intro {
    padding: 4rem 0;
    background-color: #fff8e1; /* ちさまるの背景色 */
}
.intro-container {
    max-width: 800px;
    margin: 0 auto;
}

/* --- 事業領域 (3本柱) --- */
.biz-domains {
    padding: 5rem 0;
    background-color: #fff;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.domain-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 2px solid #eee;
    transition: transform 0.3s;
}
.domain-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.domain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: #fff3e0;
    width: 80px; height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.domain-card h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* --- ちさまるのいえ --- */
.house-section {
    padding: 6rem 0;
    background-color: #e1f5fe; /* 空色 */
    background-image: radial-gradient(#b3e5fc 20%, transparent 20%);
    background-size: 30px 30px;
    position: relative;
    overflow: hidden;
}

.house-showcase {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    max-width: 900px;
    margin: 2rem auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 768px) { .house-showcase { flex-direction: column; text-align: center; } }

.house-img img {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: rotate(-3deg);
}

.house-content h3 {
    font-size: 1.8rem;
    color: #0277bd;
    margin-bottom: 1rem;
    font-family: var(--font-title);
}

.house-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* --- LINEスタンプ --- */
.stamp-section {
    padding: 5rem 0;
    background-color: #fff;
}

.stamp-preview {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.stamp-item {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stamp-item img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/* --- CTA --- */
.project-cta {
    padding: 5rem 0;
    background-color: #343a40;
    color: #fff;
    text-align: center;
}