@charset "UTF-8";
/* page-accelerator.css — アクセラレータープログラム（page-accelerator.php / section#page-accelerator 配下） */

section#page-accelerator {

    hgroup.common-cover{
        background-image: url(../img/accelerator_cover.jpg);
    }

    /* 概要 */
    div#overview {
        max-width: calc(var(--bw) + 48px);
        padding: 80px 24px;
        margin: 0 auto;

        hgroup {
            margin-bottom: 0;
        }

        div{
            margin-top: 40px;
            display: flex;
            gap: 24px;

            @media (max-width: 768px) {
                flex-direction: column-reverse;
                gap: 16px;

                img { max-width: none; }
            }

            p{
                font-size: 1.125rem;
                line-height: 2;

                @media (max-width: 768px){
                    font-size: 1rem;
                    line-height: 1.75;
                }
            }

            img {
                display: block;
                margin: 0;
                overflow: hidden;
                max-width: 180px;
                width: 100%;
                border-top-right-radius: 40px;
                border-bottom-left-radius: 40px;

                @media (max-width: 768px){
                    margin: 0 auto;
                }
                
                @media (max-width: 480px){
                    max-width: 140px;
                }
            }
        }


        @media (max-width: 768px) {
            padding: 56px 16px;
        }
    }

    div#support {
        padding: 0 24px 80px;

        @media (max-width: 768px) {
            padding: 0 16px 56px;
        }

        div.inner {
            max-width: var(--bw);
            margin: 0 auto ;

            ul.support-list {
                margin-top: 40px;

                li.list-item {
                    background: var(--c-lavender);
                    border-radius: var(--radius);
                    padding: 16px 16px 16px 32px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    min-height: 200px;
                    margin-top: 16px;

                    @media (max-width: 960px){
                        padding: 16px;
                    }

                    @media (max-width: 768px) {
                        flex-direction: column;
                        align-items: stretch;
                        min-height: 0;
                        gap: 16px;
                    }

                    &:first-child{
                        margin-top: 0;
                    }

                    h3 {
                        font-size: 1.25rem;
                        color: var(--c-navy);
                        display: flex;
                        align-items: center;
                        gap: 20px;
                        flex-shrink: 0;

                        @media (max-width: 960px){
                            width: 280px;
                        }

                        &::before{
                            content: '';
                            display: block;
                            width: 104px;
                            height: 104px;
                            background: center / 56px no-repeat var(--c-navy);
                            border-radius: 50%;

                            @media (max-width: 960px) {
                                width: 64px;
                                height: 64px;
                                background-size: 44px;
                            }
                        }

                        &.mentoring{
                            &::before{
                                background-image: url(../img/icon_mentor.svg);
                            }
                        }
                        &.banso{
                            &::before{
                                background-image: url(../img/icon_banso.svg);
                            }
                        }
                        &.relationship{
                            &::before{
                                background-image: url(../img/icon_relation.svg);
                            }
                        }
                        &.ipo{
                            &::before{
                                background-image: url(../img/icon_ipo.svg);
                            }
                        }
         
                    }

                    ul {
                        width: 100%;
                        max-width: 560px;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        gap: 8px;
                        background-color: var(--c-white);
                        padding: 20px 20px 20px 64px;
                        clip-path: polygon(0 0 , 100% 0 , 100% 100% , 0 100% , 40px 50%);
                        border-top-right-radius: 20px;
                        border-bottom-right-radius: 20px;
                        height: 160px;

                        @media (max-width: 768px) {
                            clip-path: none;
                            max-width: none;
                            height: auto;
                            padding: 20px;
                            border-radius: var(--radius);
                        }

                        li {
                            display: flex;
                            position: relative;
                            padding: 0 0 0 18px;
                            font-weight: 500;
                            background: none;
                            border-radius: 0;
                            box-shadow: none;
                            line-height: 1.25;

                            &::before {
                                content: "・";
                                position: absolute;
                                left: 0;
                                color: var(--c-navy);
                            }
                        }
                    }
                }
            }
        }
    }

    /* 対象者 */
    div#target {
        max-width: calc(var(--bw) + 48px);
        margin-inline: auto;
        padding: 0 24px 80px;

        @media (max-width: 768px) {
            padding: 0 16px 56px ;
        }

        p.explain{
            margin-top: 40px;
        }

        ul {
            margin-top: 20px;

            li {
                position: relative;
                padding-left: 28px;
                margin-bottom: 16px;
                font-weight: 700;

                strong{
                    color: var(--c-red);
                    text-decoration: underline;
                }

                &::before {
                    content: "◉";
                    position: absolute;
                    left: 0;
                }
            }
        }
    }

    /* 事業スケジュール（全幅背景） */
    div#schedule {
        background:
            linear-gradient(to right, rgba(97, 194, 207, 0.2), rgba(60, 150, 199, 0.3)),  /* ティール色味（div.event と共通） */
            linear-gradient(rgba(255, 255, 255, .6), rgba(255, 255, 255, .6)),  /* 白ベール＝波を薄く（数値を上げるほど薄く） */
            url(../img/event_bg.svg) center bottom -8px / cover no-repeat,
            var(--c-white);
        padding: 80px 24px;

        @media (max-width: 768px) {
            padding: 56px 16px;
        }

        div.inner {
            max-width: var(--bw);
            margin-inline: auto;

            div{
                margin-top: 40px;
                background-color: var(--c-white);
                border-radius: var(--radius);
                box-shadow: var(--shadow);
                padding: 24px 16px 20px;

                @media (max-width: 768px) {
                    overflow-x: auto;
                }

                img {
                    @media (max-width: 768px) {
                        height: 180px;
                        width: auto;
                        max-width: none;
                    }
                }
            }
        }
    }

    /* エントリー（全幅背景） */
    div#entry {
        text-align: center;
        padding: 120px 24px;
        background: url(../img/symbol_purple.svg) calc(50% + 320px) 80px / 360px 360px no-repeat;

        @media (max-width: 768px) { background-image: none; }

        @media (max-width: 768px) {
            padding: 56px 16px;
        }

        div.inner {
            max-width: var(--bw);
            margin-inline: auto;

            p.explain {
                margin-top: 24px;
                font-size: 1.25rem;
                letter-spacing: 0.01em;

                @media (max-width: 768px) {
                    font-size: 1rem;
                }
            }

            a.button-square {
                margin: 24px auto 0;
            }
        }
    }
}
