@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Template:   cocoon-master
Version:    1.1.3
*/

/* ==========================================================================
   本家（asu-k.co.jp）テイスト完全再現用スタイルシート
   ========================================================================== */

/* 1. ヒーロー（最上部看板）エリア */
.p-home-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 60px 4% 80px 4%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
}

.p-home-hero-content {
    flex: 1.2;
    text-align: left;
}

.p-home-hero-catch {
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #002B66 !important; /* 本家の上品なネイビー */
    line-height: 1.3 !important;
    margin: 0 0 10px 0 !important;
}

.p-home-hero-point-text {
    font-size: 46px;
    font-weight: 800;
    color: #0077EE; /* テック感のある鮮やかなブルー */
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.p-home-hero-subcatch {
    font-size: 18px !important;
    color: #556677 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.p-home-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* AIマニュアルの概念図（スマホからExcelへのデータストリーム） */
.p-home-hero-visual-mock {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(135deg, #f4f9ff 0%, #e6f2ff 100%);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #d0e4ff;
    box-shadow: 0 20px 40px rgba(0, 43, 102, 0.05);
    text-align: center;
}


/* 2. イントロ（3つのFeature）エリア */
.p-home-intro {
    background: #f7fafd;
    padding: 50px 20px;
    border-top: 1px solid #e6eef5;
    border-bottom: 1px solid #e6eef5;
}

.p-home-intro-units {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.p-home-intro-unit {
    flex: 1;
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 43, 102, 0.03);
    border: 1px solid #eaeff4;
    transition: transform 0.3s;
}
.p-home-intro-unit:hover {
    transform: translateY(-5px);
}

.p-home-intro-unit-label {
    display: inline-block;
    background: #002B66;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-home-intro-unit-catch {
    font-size: 16px !important;
    color: #223344 !important;
    line-height: 1.5 !important;
    font-weight: bold !important;
}
.p-home-intro-unit-catch strong {
    color: #0077EE;
}


/* 3. ソリューション（悩み解決）エリア */
.p-home-solution {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.c-label {
    display: inline-block;
    color: #0077EE;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid #0077EE;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.p-home-solution-heading {
    font-size: 32px !important;
    color: #002B66 !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
    margin-bottom: 25px !important;
}
.p-home-solution-heading .red {
    color: #E63B3B;
}

.p-home-solution-lead {
    font-size: 16px !important;
    color: #445566 !important;
    line-height: 1.8 !important;
    max-width: 760px;
    margin: 0 auto 40px auto !important;
    background: #fcfdfe;
    padding: 25px 30px;
    border-left: 4px solid #002B66;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    text-align: left;
}

.p-home-solution-catch {
    font-size: 24px !important;
    color: #002B66 !important;
    font-weight: bold !important;
    margin-top: 30px !important;
}


/* ==========================================================================
   レスポンシブデザイン（スマホ対応）
   ========================================================================== */
@media screen and (max-width: 960px) {
    .p-home-hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }
    .p-home-hero-content {
        text-align: center;
    }
    .p-home-hero-catch {
        font-size: 28px !important;
    }
    .p-home-hero-point-text {
        font-size: 34px;
    }
    .p-home-intro-units {
        flex-direction: column;
        gap: 16px;
    }
    .p-home-solution-heading {
        font-size: 24px !important;
    }
}