@charset 'UTF-8';

.section02 {
    background-color: #e0e6e0;
}

/*----------虫眼鏡の配置----------*/
.img-area a {
    position: absolute;
}

.img-area a:nth-of-type(1) {
    top: 219px;
    left: 484px;
}

/*-----------テキスト、背景、ボタンカラー-----------*/
:root {
    --breakPage-color: #289038;
}

.section01 h2 {
    color: var(--breakPage-color);
}

.section02 p {
    background-color: var(--breakPage-color);
}

.section02 p::after {
    border-top: solid 36px var(--breakPage-color);
}

.section02-bg {
    border: solid 4px var(--breakPage-color);
}

.btn input {
    background-color: var(--breakPage-color);
}

/*----------画面幅500px以下----------*/
@media screen and (max-width: 500px) {

    .img-area a:nth-of-type(1) {
        top: 95px;
        left: 207px;
    }

    .section02-bg {
        border: solid 3px var(--breakPage-color);
    }
}