@charset "utf-8";

.swiper {
    width: 100%;
    height: 100vh;
    --swiper-pagination-color: #45ba82;
}

.swiper::after {
    content: '';
    width: 100%;
    height: 60px;
    background: url(../img/top/bg_wave.svg) no-repeat top center / cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper {
    background: url(../img/top/bg.png) repeat-y top center / 100% auto;
}

.sec {
    padding: 1rem 0 2rem;
}

.sec .inner {
    display: grid;
    gap: .8rem;
}

.sec__ttl {
    color: #45ba82;
    text-align: center;
}

.sec__ttl::after {
    content: '';
    display: block;
    width: .75rem;
    height: .06rem;
    background: #45ba82;
    border-radius: 5px;
    margin: .2rem auto 0;
}

.sec__ttl span {
    color: #b1cc41;
}

.sec__txt {
    text-align: center;
}

.sec02 {
    position: relative;
    padding-bottom: 2.5rem;
}

.sec02 .inner {
    position: relative;
    border-radius: 9999px 9999px 400px 400px;
    background: url(../img/top/bg02.jpg) no-repeat top center / cover;
    display: grid;
    gap: .5rem;
    padding: 1rem;
}

.sec02 .inner::before {
    content: '';
    width: 75px;
    height: 50px;
    background: url(../img/top/leaf.png) no-repeat top center / 100% auto;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
}

.sec02__ttl {
    width: min(100%, 4.5rem);
    margin: auto;
    background: url(../img/top/ribbon.png) no-repeat center center / 100% auto;
    color: #fff;
    text-align: center;
}

.sec02__txt {
    text-align: center;
}

.sec02__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .4rem;
}

.sec02__list li {
    background: #fff;
    border-radius: .2rem;
    padding: .4rem;
    display: grid;
    place-content: start;
    gap: .2rem;
}


.sec02__ttl02 {
    display: grid;
    place-items: center;
    gap: .1rem;
    line-height: 1;
}

.sec02__ttl02::after {
    content: '';
    width: 107px;
    height: 18px;
    background: url(../img/top/line.png) no-repeat top center / 100% auto;
}

.sec02__list li:nth-child(1) .sec02__ttl02 {
    color: #1397d6;
}

.sec02__list li:nth-child(2) .sec02__ttl02 {
    color: #e17575;
}

.sec02__list li:nth-child(3) .sec02__ttl02 {
    color: #53a949;
}

.sec02__list li:nth-child(4) .sec02__ttl02 {
    color: #a3619d;
}

.sec03 {
    background: #d4efe0;
    border-radius: .8rem .8rem 0 0;
    padding: 1rem 0;
    margin-top: -1rem;
}

.sec03 .inner {
    display: grid;
    gap: .6rem;
    place-items: center;
}

.sec03__ttl {
    color: #fff;
    -webkit-text-stroke: 6px #45ba82;
    paint-order: stroke;
    display: grid;
    gap: .2rem;
}

.sec03__ttl::after {
    content: '';
    width: .8rem;
    height: .06rem;
    background: #45ba82;
    border-radius: 3px;
    margin: auto;
}

.sec03__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .4rem;
}

.sec03__list li a {
    display: block;
    background: #fff;
    border-radius: .2rem;
    padding: .25rem .8rem .2rem .4rem;
    overflow: hidden;
    position: relative;
}

.sec03__list li a::before {
    content: '';
    background: #45ba82;
    width: .8rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.sec03__list li:nth-child(4) a::before {
    background: #dcae32;

}

.sec03__list .ico_blank img {
    width: 23px;
    margin: 0 0 .05rem .05rem;
}

.sec03__list li a::after {
    content: '';
    width: 17px;
    height: 15px;
    background: url(../img/ico_arw.png) no-repeat top center / 100% auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: .3rem;
    margin: auto;
}

@media only screen and (max-width: 1024px) {
    .swiper {
        height: 60vh;
    }

    .swiper::after {
        height: 15px;
        background-size: 100% auto;
    }

    .sec02__list {
        grid-template-columns: 1fr;
    }

    .sec03__list {
        grid-template-columns: 1fr;
    }

    .sec03__list li a::after {
        right: .2rem;
    }
}

@media only screen and (max-width: 430px) {
    .sec02 .inner {
        padding: 1.5rem .4rem 1rem;
    }
}