@charset "utf-8";


.section__process {
    padding: 30px var(--contentPadding);
}

.topic__process {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    position: relative;
    color: var(--primary-black);
}

.topic__process::after {
    content: "";
    display: block;
    width: 160px;
    height: 2px;
    background: var(--primary-green);
    margin: 8px auto 0;
}

.process__list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.process__list::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    bottom: -28px;
    width: 2px;
    background: var(--primary-green);
}

.process__list::after {
    content: "";
    position: absolute;
    left: 6px;
    bottom: -28px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
    transform: rotate(45deg);
}

.process__item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 28px;
}

.process__item::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 6px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-green);
}

.process__head {
    color: var(--primary-green);
    font-size: 1.6rem;
    margin: 0 0 10px;
    font-weight: 600;
}

.process__txt {
    display: block;
    background: var(--primary-lightBlue);
    max-width: 528px;
    padding: 14px 14px;
    border-radius: 6px;
    line-height: 1.7;
    margin: 0;
    font-size: 1.4rem;
    color: var(--primary-black);
}

.process__thanks {
    padding-left: 20px;
    color: var(--primary-green);
    font-size: 2rem;
    margin: 20px 0;
}

.process__notes {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--primary-orange);
    font-size: 1.3rem;
    line-height: 1.6;
}

/* process pc 始 */
@media screen and (min-width:769px) {
.section__process {
    max-width: 900px;
    margin: 0 auto;
}

.topic__process {
    font-size: 3rem;
    margin-bottom: 60px;
}
.topic__process::after {
    content: "";
    display: block;
    width: 200px;
    height: 2px;
    background: var(--primary-green);
    margin: 8px auto 0;
}
}/* process pc 終 */