@charset 'UTF-8';

.section02 {
    background-color: #e4e0e0;
}

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

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

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

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

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

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

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

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

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

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

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