@charset 'UTF-8';

.section02 {
    background-color: #eae4e4;
}

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

.img-area a:nth-of-type(1) {/*車*/
    top: 211px;
    left: 197px;
}

.img-area a:nth-of-type(2) {/*公共交通機関*/
    top: 251px;
    left: 769px;
}

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

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

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

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

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

/*----------画面幅500px以下----------*/
@media screen and (max-width: 500px) {
	
    .img-area a:nth-of-type(1) {
        top: 93px;
        left: 87px;
    }
    
    .img-area a:nth-of-type(2) {
        top: 111px;
        left: 333px;
    }
	
    .section02-bg {
        border: solid 3px var(--trafficPage-color);
    }
}