@charset "utf-8";

/***********************************************************************
学校説明会
***********************************************************************/
.lower_wrap {
    width: 100%;
    max-width: 1040px;
    margin: auto;
    padding-inline: 20px;
}

.firstView {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding-block: 1em;
    margin-bottom: 30px;
    box-shadow: 0px 5px 5px -5px #e1e1e1;
}

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 span {
    font-size: clamp(2.8rem, var(--sp-18px), 4rem);
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 1.7;
}

.hero-sub {
    color: #4A5868;
    margin-bottom: 15px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}

.hero-meta {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.pill {
    width: 180px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-block: 6px;
    background: #E9FBF7;
    color: #0D6E67;
    font-weight: 700;
    font-size: 18px;
    border:solid 1px #0D6E67;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 40px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .2s;
}

.btn.primary {
    background: #fff;
    color: #000;
    border:solid 1px #666;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
}

.lower_wrap h2 {
    font-size: clamp(2rem, var(--sp-18px), 2.5rem);
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    margin: 70px auto 20px;
}

.content {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto 80px;
    padding-inline: 60px;
    border-radius: 10px;

}

.content h2 {
    margin-top: 0;
}

.content p {
    font-weight: 700;
    text-align: center;
    font-size: 2rem;
}

.bgArea{
    width: 100%;
    margin: 0 auto 20px;
    background: #fffbee;
    box-shadow: 0px 0px 1px 1px rgb(255 181 98 / 25%);
    padding: 20px 30px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid li {
    background: #fff;
    padding: 14px 16px;
    font-weight: 700;
    color: #2D3B49;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    box-shadow: 0px 0px 1px 1px rgb(255 181 98 / 25%);
}

.num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: solid 1px #444;
    color: #444;
    font-weight: 900;
    flex: 0 0 28px;
    font-family:"Century Gothic";
}

.bgArea th,.bgArea td{
    vertical-align: baseline;
    padding-bottom: 1.5em;
}

.flowBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 5px;
}

.flowBox .list {
    position: relative;
    width: 30%;
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
    border: solid 2px #939393;
    font-size: 14px;
    color: #333;
}

.flowBox::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #939393;
    z-index: -1;
}

.flowBox .list span {
    margin-inline: .5em;
}

#fixedCTAWrap {
    display: none;
}

.guideWrap {
    margin-top: 0;
}


@media (max-width: 1024px){
    .hero-inner{
        grid-template-columns:1fr;
    }

    .mock .mock-right{
        display:none;
    }

    .steps{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 640px){
    h1{
        font-size:28px;
        margin-bottom: 0;
    }

    h2{
        font-size:22px;
        margin: 20px auto;
    }

    .hero-meta {
        gap: 5px;
        margin-bottom: 15px;
    }

    .pill {
        width: 105px;
        font-size: 12px;
    }

    .content{
        margin:5px;
        padding: 5px;
    }

    .content p {
        text-align: left;
    }

    .bgArea{
        padding: 20px;
    }

    .bgArea th{
        width: 100px;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .hero-media{
        height:260px;
    }

    .cta-band .wrap{
        flex-direction:column;
        align-items:flex-start;
    }

    .flowBox .list{
        flex-direction: column;
        width: 31%;
        font-size: 12px;
    }
    .iframe {
        margin-top: -70px;
    }
}