/* service */
.service-content01 {
    margin: 1rem 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

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

.service-item {
    background-color: #fffef4;
    border-radius: 15px;
}

/*
.service-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
*/
.service-list a {
    font-family: 'Tenali Ramakrishna', sans-serif;
    display: block;
    height: 30px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 1.0rem 1.8rem;
    transition: all 0.5s ease;
    font-size: 38px;
}

.service-text {
    margin: 1.2rem 2.6rem 0 2.6rem;
}

.service-text h1 {
    padding: 0;
    font-size: 1.8rem;
    font-weight: 500;
}

.service-text p {
    font-weight: 300;
    font-size: 1.1rem;
    opacity: 0.90;
    padding-bottom: 1.2rem;
    margin: 0.8rem 0;
    word-wrap: break-word;
}

.service-text a {
    border: 2px solid #ffc0c0;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666060;
    text-decoration: none;
    display: inline-block;
    background: transparent;
    padding: 0.35rem 0.55rem;
    transition: all 0.5s ease;
    text-align: center;
    margin-bottom: 1rem;
}

.service-text a:hover {
    background: #ffc0c0;
    color: #fff;
}

@media(max-width:1300px) {
    .service-content02 {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}

@media(max-width:700px) {
    .service-content02 {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .service-item {
        width: 82vw;
    }
}