@charset "UTF-8";
:root {
  --c-green: #00712f;
  --c-gry: #333;
  --c-red: #dc2630;
}

.service-nav{
    background: #fff;
    padding: 60px 0;
    border-radius: 20px;
}

.service-nav ul{
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: stretch;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.service-nav ul::after{
    content: "";
    width: 20vw;
    max-width: 270px;
    aspect-ratio: 268/180;
    background-image: url(../img/service/service_titlefig.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-120%);
}

.service-nav ul li{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.service-nav ul li a{
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100%;
    border: 2px solid var(--c-green);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
    line-height: 1.8em;
    border-radius: 20px;
    text-decoration: none;
    color: var(--c-green);
    font-size: 20px;
    font-weight: bold;
}

.service-nav ul li a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background-image: url(../img/common/ico-arrow_circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,50%) rotate(90deg);
}

.service-list{
    padding-top: 100px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.service-column{
    position: relative;
    display: grid;
    grid-template-columns:1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 140px;
}

.service-column::after{
    content: "";
    width: 80px;
    aspect-ratio: 292/263;
    background-image: url(../img/service/service_deco.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, 100%);
}

.service-column .item{
    position: relative;
    background: #fff;
    border-radius: 20px;
    text-align: center;
}

.service-column .item:nth-of-type(2){
    padding: 60px 50px;
}

.service-column .item:nth-of-type(2) p{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8em;
    margin: 0 0 30px;
}

.service-column .item:nth-of-type(2) p.title{
    font-size: 28px;
    font-weight: bold;
    color: var(--c-green);
    margin: 0 0 20px;
}

.service-column .item > img{
    border-radius: 20px;
}

.service-column .ribbon{
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    overflow: visible;
}

.service-column .ribbon > span{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 16px 20px 24px;
    background: #0d7a2f;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2em;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}

.service-column .ribbon::after{
    content: "";
    width: 18px;
    height: 18px;
    background: #27593C;
    position: absolute;
    top: 0;
    right: -18px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}


.service-column .item:nth-of-type(2) a{
    min-width: 260px;
    position: relative;
    display: inline-block;
    padding: 12px 60px;
    background: #fff;
    border-radius: 26px;
    color: var(--c-green);
    font-weight: bold;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid var(--c-green);
}

.service-column .item:nth-of-type(2) a:hover{
    background: #9FD5B5;
}

.service-column .item:nth-of-type(2) a::before,
.service-column .item:nth-of-type(2) a::after {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: transform 0.3s ease;
}

.service-column .item:nth-of-type(2) a::before {
    content: "";
    background-color:var(--c-green);
    border-radius: 50%;
}

.service-column .item:nth-of-type(2) a::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-color:#fff;
    -webkit-mask: url('../img/common/ico-arrow.svg') no-repeat center / contain;
    mask: url('../img/common/ico-arrow.svg') no-repeat center / contain;
}

.service-column-red{
    position: relative;
    display: grid;
    grid-template-columns:0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 140px;
}

.service-column-red::after{
    content: "";
    width: 80px;
    aspect-ratio: 292/263;
    background-image: url(../img/service/service_deco2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, 100%);
}

.service-column-red .item{
    position: relative;
    background: #fff;
    border-radius: 20px;
    text-align: center;
}

.service-column-red .item:nth-of-type(1){
    order: 2;
}

.service-column-red .item:nth-of-type(2){
    order: 1;
    padding: 60px 50px;
}

.service-column-red .item:nth-of-type(2) p{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8em;
    margin: 0 0 30px;
}

.service-column-red .item:nth-of-type(2) p.title{
    font-size: 28px;
    font-weight: bold;
    color: var(--c-red);
    margin: 0 0 20px;
}

.service-column-red .item > img{
    border-radius: 20px;
}

.service-column-red .ribbon{
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    overflow: visible;
}

.service-column-red .ribbon > span{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 16px 20px 24px;
    background: var(--c-red);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2em;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}

.service-column-red .ribbon::after{
    content: "";
    width: 18px;
    height: 18px;
    background: #B32E35;
    position: absolute;
    top: 0;
    right: -18px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}


.service-column-red .item:nth-of-type(2) a{
    min-width: 260px;
    position: relative;
    display: inline-block;
    padding: 12px 60px;
    background: #fff;
    border-radius: 26px;
    color: var(--c-red);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid var(--c-red);
}

.service-column-red .item:nth-of-type(2) a:hover{
    background: #9FD5B5;
}

.service-column-red .item:nth-of-type(2) a::before,
.service-column-red .item:nth-of-type(2) a::after {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: transform 0.3s ease;
}

.service-column-red .item:nth-of-type(2) a::before {
    content: "";
    background-color:var(--c-red);
    border-radius: 50%;
}

.service-column-red .item:nth-of-type(2) a::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-color:#fff;
    -webkit-mask: url('../img/common/ico-arrow.svg') no-repeat center / contain;
    mask: url('../img/common/ico-arrow.svg') no-repeat center / contain;
}

#service06.service-column-red::after{
    display: none;
}


@media (max-width: 768px) {
.service-nav{
    padding: 80px 0 60px;
}

.service-nav ul{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.service-nav ul::after{
    width: 30vw;
    max-width: 120px;
    top: -20px;
    right: 0;
    transform: translateY(-100%);
}

.service-nav ul li{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.service-nav ul li a{
    padding: 15px 0;
    font-size: 16px;
    line-height: 1.4em;
}

.service-nav ul li a::after{
    width: 24px;
    height: 24px;
}

.service-list{
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
}

.service-column{
    grid-template-columns:1fr;
    gap: 0px;
    margin-bottom: 100px;
}

.service-column::after{
    width: 40px;
}

.service-column .item{
    position: relative;
    background: #fff;
    border-radius:20px;
    text-align: center;
}

.service-column .item:nth-of-type(2){
    padding: 60px 30px 40px;
}

.service-column .item:nth-of-type(2) p{
    font-size: 14px;
    margin: 0 0 30px;
}

.service-column .item:nth-of-type(2) p.title{
    font-size: 20px;
    margin: 0 0 20px;
}

.service-column .item:nth-of-type(2) a{
    min-width: 100%;
    padding: 12px 0px;
}

.service-column-red{
    grid-template-columns:1fr;
    gap: 0px;
    margin-bottom: 100px;
}

.service-column-red::after{
    width: 40px;
}

.service-column-red .item{
    position: relative;
    background: #fff;
    border-radius: 20px;
    text-align: center;
}

.service-column-red .item:nth-of-type(1){
    order: 1;
}

.service-column-red .item:nth-of-type(2){
    order: 2;
    padding: 60px 30px 40px;
}

.service-column-red .item:nth-of-type(2) p{
    font-size: 14px;
    margin: 0 0 30px;
}

.service-column-red .item:nth-of-type(2) p.title{
    font-size: 20px;
    margin: 0 0 20px;
}

.service-column-red .item:nth-of-type(2) a{
    min-width: 100%;
    padding: 12px 0px;
}

}



/**

service under format

**/


.servicef-main{
    padding: 0 0 0 10vw;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.servicef-main .item .img{
    display: block;
    position: relative;
}

/*各Pフィギュア*/
.servicef-main.service01main .item .img::after{
    content: "";
    width: 92px;
    aspect-ratio:182/204 ;
    background-image: url(../img/service/service01/service01_mainfig.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 50px;
    transform: translateY(50%);
}
.servicef-main.service02main .item .img::after{
    content: "";
    width: 160px;
    aspect-ratio:330/222;
    background-image: url(../img/service/service02/service02_mainfig.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 50px;
    transform: translateY(50%);
}
.servicef-main.service03main .item .img::after{
    content: "";
    width: 100px;
    aspect-ratio:216/270;
    background-image: url(../img/service/service03/service03_mainfig.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 50px;
    transform: translateY(50%);
}
.servicef-main.service04main .item .img::after{
    content: "";
    width: 137px;
    aspect-ratio:274/292;
    background-image: url(../img/service/service04/service04_mainfig.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 50px;
    transform: translateY(50%);
}
.servicef-main.service05main .item .img::after{
    content: "";
    width: 122px;
    aspect-ratio:244/246;
    background-image: url(../img/service/service05/service05_mainfig.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 50px;
    transform: translateY(50%);
}
.servicef-main.service06main .item .img::after{
    content: "";
    width: 200px;
    aspect-ratio:410/218;
    background-image: url(../img/service/service06/service06_mainfig.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 50px;
    transform: translateY(50%);
}

.servicef-main .item:nth-of-type(2) img{
    border-radius: 20px;
}

.servicef-main .item .main-title{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.servicef-main .item .main-title span{
    font-size: 40px;
    font-weight: bold;
}

.servicef-main .item .main-title span:first-child{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 20px 26px;
    margin-right: 20px;
    background: var(--c-green);
    color: #fff;
    font-size: 18px;
    line-height: 1.2em;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 81%, 0 100%);
}

.servicef-main .item p{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8em;
}

.servicef-main .item p.title{
    font-size: 26px;
    font-weight: bold;
    line-height: 1.8em;
}

.service-facility{
    text-align: center;
    margin-bottom: 80px;
}

.service-facility-title{
    position: relative;
    display: inline-block;
    font-size: 34px;
    line-height: 1em;
    font-weight: bold;
    margin-bottom: 40px;
}

.service-facility-title::before{
    content: "●";
    color: var(--c-green);
    font-size: 18px;
    margin-right: 20px;
    vertical-align: 5px;
}

.service-facility-title::after{
    content: "●";
    color: var(--c-green);
    font-size: 18px;
    margin-left: 20px;
    vertical-align: 5px;
}

.service-facility-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.service-facility-list a{
    position: relative;
    width: calc(50% - 25px);
    background: #fff;
    border: 1px solid #333;
    border-radius: 20px;
    text-decoration: none;
    color: var(--c-gry);
}

.service-facility-list a::before,
.service-facility-list a::after{
    content: "";
    position: absolute;
}

.service-facility-list a::before{
    width: 32px;
    height: 32px;
    right: 16px;
    bottom: 16px;
    background-color: var(--c-green);
    border-radius: 50%;
}

.service-facility-list a::after{
    width: 15px;
    height: 15px;
    right: 24px;
    bottom: 24px;
    background-color: #fff;
    -webkit-mask: url('../img/common/ico-arrow.svg') no-repeat center / contain;
    mask: url('../img/common/ico-arrow.svg') no-repeat center / contain;
}

.service-facility-list a .inner{
    display: grid;
    grid-template-columns: 165px 1fr;
    gap: 20px;
    align-items: center;
    padding: 30px 52px 30px 30px;
}

.service-facility-list a .inner .item{
    text-align: left;
}

.service-facility-list a .inner .item .title{
    display: block;
    font-size: 18px;
    line-height: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-facility-list a .inner .item .txt{
    font-size: 16px;
    line-height: 2em;
    display: block;
}

.service-service{
    padding: 40px 0 80px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
}

.service-service-title{
    position: relative;
    display: inline-block;
    font-size: 34px;
    line-height: 1em;
    font-weight: bold;
    margin-bottom: 60px;
}

.service-service-title::before{
    content: "●";
    color: var(--c-green);
    font-size: 18px;
    margin-right: 20px;
    vertical-align: 5px;
}

.service-service-title::after{
    content: "●";
    color: var(--c-green);
    font-size: 18px;
    margin-left: 20px;
    vertical-align: 5px;
}

.service-service-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.service-service-list .item{
    background: #fff;
    border: 1px solid var(--c-gry);
    border-radius: 20px;
    overflow: hidden;
    scroll-margin-top: 120px;
}

.service-service-list .item .title{
    padding: 20px;
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: var(--c-green);
}

.service-service-list .item .txt{
    display: block;
    padding: 30px 40px;
    text-align: left;
    font-size: 16px;
    line-height: 2em;
}


.service-talk{
    padding-top: 60px;
}

.service-talk-title{
    text-align: center;
    padding: 0 10vw;
    font-size: 40px;
    line-height: 1em;
    color: #fff;
    font-weight: bold;
}

.service-talk-title img{
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;

}

.serive-talk-column{
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0 10px;
    border-bottom: 1px dashed #fff;
}

.service-column-left{
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.service-column-left .item:nth-of-type(1){
    width: 95px;
    text-align: center;
}

.service-column-left .item:nth-of-type(2){
    position: relative;
    width: calc(100% - 250px);
    background: #fff;
    border-radius: 20px;
}

.service-column-left .item:nth-of-type(2)::before{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50px;
    left: -18px;
    background: #fff;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.service-column-left .item:nth-of-type(2) p{
    text-align: left;
    padding: 30px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8em;
}

.service-column-right{
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.service-column-right .item:nth-of-type(1){
    width: 95px;
    text-align: center;
    order: 2;
}

.service-column-right .item:nth-of-type(2){
    position: relative;
    width: calc(100% - 250px);
    background: #fff;
    border-radius: 20px;
    order: 1;
}

.service-column-right .item:nth-of-type(2)::before{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50px;
    right: -18px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.service-column-right .item:nth-of-type(2) p{
    text-align: left;
    padding: 30px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8em;
}


.service-links{
    padding: 100px 0 50px;
}

.service-links .service-page span{
    display: block;
    color: var(--c-green);
    font-size: 16px;
    font-weight: 500;
}

.service-links .service-page a{
    display: inline-block;
    position: relative;
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
    color: #30363B;
    padding-right: 70px;
}

.service-links .service-page a:hover{
    color: var(--c-green);
}

.service-links .service-page a::after{
    content: "";
    width: 32px;
    height: 32px;
    background-image: url(../img/common/ico-arrow_circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: 0.5s;
}

.service-links .about-page a:hover::after{
    right: 15px;
    transition: 0.5s;
}

.service-links ul{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 0;
    padding: 20px 0 0;
}

.service-links ul li{
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-links ul li a{
    text-decoration: none;
    display: block;
    position: relative;
    background-color: var(--c-green);
    color: #fff;
    padding: 20px 60px 20px 15px;
    border-radius: 10px;
    font-weight: bold;
}

.service-links ul li a::after{
    content: "";
    width: 32px;
    height: 32px;
    background-image: url(../img/common/ico-arrow_circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: 0.5s;
}

.service-links ul li a:hover::after{
    right: 10px;
    transition: 0.5s;
}


.servicelink-service01 .service-links ul li:nth-of-type(1){display: none;}
.servicelink-service02 .service-links ul li:nth-of-type(2){display: none;}
.servicelink-service03 .service-links ul li:nth-of-type(3){display: none;}
.servicelink-service04 .service-links ul li:nth-of-type(4){display: none;}
.servicelink-service05 .service-links li:nth-of-type(5){display: none;}
.servicelink-service06 .service-links li:nth-of-type(6){display: none;}






@media (max-width: 768px) {

.servicef-main{
    padding: 0 10vw;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/*各Pフィギュア*/
.servicef-main.service01main .item .img::after{
    width: 50px;
    right: 30px;
}
.servicef-main.service02main .item .img::after{
    width: 90px;
    right: 30px;
}
.servicef-main.service03main .item .img::after{
    width: 50px;
    right: 30px;
}
.servicef-main.service04main .item .img::after{
    width: 60px;
    right: 30px;
}
.servicef-main.service05main .item .img::after{
    width: 70px;
    right: 30px;
}
.servicef-main.service06main .item .img::after{
    width: 100px;
    right: 30px;
}

.servicef-main .item .main-title{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.servicef-main .item .main-title span{
    font-size: 24px;
}

.servicef-main .item .main-title span:first-child{
    padding: 10px 16px 22px;
    margin-right: 15px;
    font-size: 14px;
}

.servicef-main .item p{
    font-size: 14px;
}

.servicef-main .item p.title{
    font-size: 18px;
}

.service-facility{
    margin-bottom: 40px;
}

.service-facility-title{
    font-size: 28px;
    margin-bottom: 40px;
}

.service-facility-title::before{
    font-size: 14px;
}

.service-facility-title::after{
    font-size: 14px;
}

.service-facility-list{
    display: block;
    gap: 0;
}

.service-facility-list a{
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.service-facility-list a .inner{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    padding: 0 0 40px 0;
    overflow: hidden;
    border-radius: 20px;
}

.service-facility-list a .inner .item{
    text-align: left;
}

.service-facility-list a .inner .item img{
    width: 100%;
}

.service-facility-list a .inner .item .title{
    font-size: 16px;
    margin-bottom: 10px;
    padding: 0 20px;
}

.service-facility-list a .inner .item .txt{
    font-size: 14px;
    padding: 0 20px;
}

.service-service{
    padding: 20px 0 40px;
}

.service-service-title{
    font-size: 28px;
    margin-bottom: 30px;
}

.service-service-title::before{
    font-size: 14px;
}

.service-service-title::after{
    font-size: 14px;
}

.service-service-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.service-service-list .item .title{
    padding: 10px;
    font-size: 18px;
}

.service-service-list .item .txt{
    padding: 10px 20px;
    text-align: left;
    font-size: 14px;
}


.service-talk{
    padding-top: 20px;
}

.service-talk-title{
    padding: 0 5vw;
    font-size: 20px;
}

.service-talk-title img{
    margin-bottom: 15px;
}

.serive-talk-column{
    margin: 0 5vw;
    padding: 20px 0 10px;
}

.service-column-left{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.service-column-left .item:nth-of-type(1){
    width: 60px;
    font-size: 10px;
}

.service-column-left .item:nth-of-type(2){
    width: calc(100% - 80px);
}

.service-column-left .item:nth-of-type(2)::before{
    content: "";
    width: 15px;
    height: 15px;
    top: 30px;
    left: -13px;
}

.service-column-left .item:nth-of-type(2) p{
    padding: 20px;
    font-size: 14px;
    line-height: 1.8em;
}

.service-column-right{
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.service-column-right .item:nth-of-type(1){
    width: 60px;
    font-size: 10px;
}

.service-column-right .item:nth-of-type(2){
    width: calc(100% - 80px);
}

.service-column-right .item:nth-of-type(2)::before{
    content: "";
    width: 15px;
    height: 15px;
    top: 30px;
    right: -13px;
}

.service-column-right .item:nth-of-type(2) p{
    padding: 20px;
    font-size: 14px;
    line-height: 1.8em;
}


.service-links{
    padding: 50px 0 10px;
}

.service-links .service-page span{
    font-size: 14px;
}

.service-links .service-page a{
    font-size: 18px;
    padding-right: 60px;;
}

.service-links .service-page a::after{
    width: 24px;
    height: 24px;
}

.service-links .about-page a:hover::after{
    right: 15px;
    transition: 0.5s;
}

.service-links ul{
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0;
    padding: 20px 0 0;
}

.service-links ul li a{
    text-decoration: none;
    display: block;
    position: relative;
    background-color: var(--c-green);
    color: #fff;
    font-size: 16px;
    padding: 20px 60px 20px 15px;
    border-radius: 10px;
}

.service-links ul li a::after{
    width: 24px;
    height: 24px;
}


}
