@charset 'UTF-8';

.section02 {
    background-color: #cbd4c9;
}

/*----------星マーク、文字画像の配置----------*/
.img-area a {
    position: absolute;
}

.img-area a:nth-of-type(1) {/*レバー*/
    top: 308px;
    left: 778px;
}

.img-area a:nth-of-type(2) {/*便座*/
    top: 398px;
    left: 600px;
}

/*-----------テキスト、背景、ボタンカラー-----------*/
:root {
    --toiletPage-color: #407936;
}
.section01 h2 {
    color: var(--toiletPage-color);
}

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

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

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

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

/*----------画面幅500px以下----------*/
@media screen and (max-width: 500px) {
	
    .img-area a:nth-of-type(1) {
        top: 134px;
        left: 335px;
    }

    .img-area a:nth-of-type(2) {
        top: 172px;
        left: 262px;
    }

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