.all-container {
    padding: 10px 20px ;
}
.guide {
    padding: 93px 20px 60px;
    border-bottom: 1px solid #ADADAD;
}
.title {
    font-size: 2rem;
    font-weight: 300;
    padding-bottom: 10px;
    width: 250px;
    margin: 0 auto;
    text-align: center;
    border-bottom: 1px solid #8A8070;
}
.sub-title {
    font-size: 1.6rem;
    font-weight: 300;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
}
.guide nav {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 4rem;
}
.guide a {
    color: #333;
    padding-left: 10px;
    display: block;
}
p {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 3.1rem;
    margin-top: 30px;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 80px;
    border-bottom: 1px solid #B07979;
    padding-bottom: 10px;
}
.section-title::before {
    content: "●";
    color: #B07979;
    margin-right: 10px;
}
.guide-link {
    display: block;
    padding: 13px 28px;
    font-size: 1.4rem;
    text-decoration: none;
    color: #fff;
    background-color: #B07979;
    width: fit-content;
    margin: 25px auto;
    border: none;
    border-radius: 30px;
    box-shadow: 2px 3px 1px #cbcaca;
}
@media (min-width: 960px) {
    .guide {
        padding: 93px 0 0;
        margin: 0  15vw 0;
        border-bottom: none;
    }
    
    .all-container {
        padding: 10px 15% ;
    }
    .title {
        font-size: 2.3rem;
        padding-bottom: 13px;
        width: 300px;
    }
    .sub-title {
        font-size: 1.7rem;
        margin-bottom: 60px;
    }
    .guide nav {
        font-size: 1.7rem;
        font-weight: 300;
        line-height: 4rem;
    }
    .guide nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .guide li {
        display: flex;
    }
    .guide a {
        color: #333;
        padding: 0;
        display: block;
        text-decoration: none;
        position: relative;
    }
    .guide a::before {
        background: #242424;
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        transform-origin: center top;
        transform: scale(0, 1);
        transition: transform .3s;
    }
    .guide a:hover::before {
        transform-origin: center top;
        transform: scale(1, 1);
    }
    .guide__nav-items:not(:last-child)::after {
        content: "　　|　　";
    }
    .section-title {
        font-size: 2rem;
        margin-top: 100px;
    }
    p {
        font-size: 1.6rem;
    }
    .guide-link {
        font-size: 1.6rem;
        margin: 35px auto 0;
        border-radius: 30px;
        border: 1px solid #B07979; 
        box-shadow: 2px 3px 1px #cbcaca;
    }
    .guide-link:hover {
        transition: .3s;
        background-color: #fff;
        color: #B07979;
        border: 1px solid #B07979;  
    }
}