/* ----------ホーム---------- */

/* ----------LOADING---------- */
#loading {
    background-color: lightgrey;
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
}

#loading-screen {
    background-color: rgba(65, 141, 254, .8);
    position: fixed;
    inset: 0;
    z-index: 9998;
    translate: 0 100vh;
}

#loading p {
    font-size: 2rem;
}

#main-banner {
    margin-top: 10vh;
}

#main-banner img {
    width: 100vw;
    height: 90vh;
}

#banner-pc {
    display: none;
}

.text-pc1 {
    display: none;
}

.text-center {
    width: 90%;
    margin: 2rem auto;
}

.text-center h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.text-center p {
    margin: 2rem auto 2rem;
}

#careerconsultant-figure-sp {
    text-align: center;
    margin-bottom: 3rem;
}

#careerconsultant-figure-pc {
    display: none;
}

.recommend {
    width: 90%;
    height: 28rem;
    background-color: rgba(65, 141, 254, .8);
    border-radius: 3rem;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
	justify-content: center;
    align-items: center;
    margin: 2rem auto;
}

.content {
    background-color: #fff;
    width: 90%;
    height: 28rem;
    border-radius: 3rem;
    padding: 7rem 1rem;
    margin: 2rem auto;
    
}

.content h2 {
    color: #2b2b2b;
    width: 90%;
    margin: 0 auto;
}

.content p {
    padding-top: 2rem;
    width: 90%;
    margin: 1.5rem auto;
    text-align: justify;  /*文章両端揃え*/
}

.background {
    background-color: rgba(65, 141, 254, .4);
    padding: 1rem;
}

.illust-pc {
    display: none;
}

.illust-sp {
    display: flex;
    justify-content: flex-end;
}

/*----------デスクトップ----------*/
@media (min-width:800px) {

    /* ----------ホーム---------- */

    .header-bar-pc {
        display: block;
        width: 100vw;
    }
    
    .header-bar {
        display: none;
    }

    #banner-pc {
        display: block;
        margin-top: 30vh;
        width: 100vw;
        height: auto;
    }

    #main-banner {
        display: none;
    }

    .text-sp1 {
        display: none;
    }

    .text-pc1 {
        display: block;
    }

    .text-bule h1 {
        padding: 1rem 0; 
    }

    .text-center {
        margin: 2.5rem auto;
    }

    h1, h2, p {
        margin: 0; /* 初期化 */
        padding: 0; /* 初期化 */
    }

    #careerconsultant-figure-sp {
        display: none;
    }

    #careerconsultant-figure-pc {
        display: block;
    }

    .illust-pc {
        display: flex;
        justify-content: flex-end;
    }

    .illust-sp {
        display: none;
    }

    .illust-pc img {
        display: block;
    }

    .grid {
        display: grid;
        gap: 2rem 1.5rem;
        grid-template-columns: repeat(3, 1fr);
    }

    .content u h2 {
        font-size: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content p {
        font-size: 1.2rem;
    }

    .background {
        width: 100vw;
    }
}