@charset 'UTF-8';

.section02 {
    background-color: #dbd7cd;
}

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

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

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

.img-area a:nth-of-type(3) {
    top: 435px;
    left: 222px;
}

.img-area a:nth-of-type(4) {
    top: 435px;
    left: 750px;
}

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

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

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

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

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

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

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

    .img-area a:nth-of-type(1) {
        top: 63px;
        left: 96px;
    }
    
    .img-area a:nth-of-type(2) {
        top: 63px;
        left: 322px;
    }
    
    .img-area a:nth-of-type(3) {
        top: 186px;
        left: 96px;
    }
    
    .img-area a:nth-of-type(4) {
        top: 186px;
        left: 322px;
    }

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