@charset "UTF-8";
/*
    Hestia's Definitive Blueprint for the "Asobi" Gateway (Restored)
    -------------------------------------------------------------------
    File: asobi_top.css
    Role: To create an exciting and beautiful gateway to the realm of fun.
*/

/* (project.cssからの依存を断ち切るための再定義) */
.project-main {}
.hero-project {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    color: white;
    text-align: left;
}
.project-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 0;
    border-left: 4px solid var(--color-secondary);
    padding-left: 1.5rem;
}
.project-catchcopy {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 1rem;
    padding-left: calc(1.5rem + 4px);
}

/* --- [I] The Gateway's Face: Hero Section --- */
.hero-asobi {
    min-height: 300px;
    /* ★ パスをルート相対パスに修正 */
    background-image: linear-gradient(to top, rgba(255, 87, 34, 0.8), rgba(255, 138, 101, 0.4)), url('/images/common/asobi-hero.jpg');
    background-size: cover; /* 念のため追加 */
    background-position: center; /* 念のため追加 */
}

/* --- [II] The Guides' Welcome: Introduction Dialogue --- */
.asobi-intro {
    padding: 5rem 0;
    background-color: #f8f9fa;
}
.intro-dialogue {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.dialogue-turn {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.dialogue-turn img {
    height: 60px;
    flex-shrink: 0;
}
.dialogue-turn p {
    margin: 0;
    padding: 1rem;
    border-radius: 10px;
    line-height: 1.6;
}
.chisai-turn p {
    background-color: #fffde7;
}
.connect-turn p {
    background-color: #fff3e0;
}

/* --- [III] The Gates to Adventure: Asobi Gallery --- */
.asobi-gallery {
    padding: 5rem 0;
}
.asobi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.asobi-card {
    display: block;
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text);
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    border-bottom: 5px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.asobi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--color-secondary);
}
.asobi-card h3 {
    font-family: var(--font-family-title);
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    color: var(--color-primary);
}
.asobi-card p {
    margin: 0;
    line-height: 1.7;
    color: #555;
}