@charset "UTF-8";

.p-head{
    padding: var(--page-top-padding-top) 0;
    border-bottom: 2px solid #efefef;
}
.p-head__title{
    font-size: var(--fs-section-title);
    font-weight: 600;
}
.p-head__text{
    margin-top: var(--text-margin-top);
    font-size: var(--fs-base);
    line-height: var(--lh-base);
}
.p-head__text a{
    color: var(--brand-color);
    text-decoration: underline;
}

.p-list{
    padding: var(--page-top-padding-top) 0 0;
}
.p-list:last-child{
    padding-bottom: var(--section-margin-top);
}
.p-list__title{
    font-size: var(--fs-large-title);
    font-weight: 600;
}
.p-list__list{
    display: flex;
    margin-top: calc(35 * var(--px));
}
.p-list__item{
    border-radius: var(--radius-base);
    box-shadow: var(--shadow-base);
    width: 31.25%;
    margin-right: 3.125%;
    padding: calc(30 * var(--px));
    display: flex;
    flex-direction: column;
}
.p-list__item:last-child{
    margin-right: 0;
}
.p-list__text{
    font-size: var(--fs-title);
    line-height: var(--lh-tight);
    text-align: center;
    font-weight: 600;
    margin-bottom: calc(20 * var(--px));
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .p-list__list{
        display: block;
        margin-top: calc(25 * var(--px));
    }
    .p-list__item{
        width: 100%;
        margin-right: 0;
        padding: calc(25 * var(--px));
    }
    .p-list__item:nth-child(n+2){
        margin-top: calc(30 * var(--px));
    }
    .p-list__text{
        margin-bottom: calc(15 * var(--px));
    }
}