@charset 'UTF-8';

.section02 {
    background-color: #ccccd7;
}

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

.img-area a:nth-of-type(1) {/*屋根*/
    top: 131px;
    left: 529px;
}

.img-area a:nth-of-type(2) {/*設備*/
    top: 397px;
    left: 130px;
}

.img-area a:nth-of-type(3) {/*壁*/
    top: 397px;
    left: 385px;
}

.img-area a:nth-of-type(4) {/*窓*/
    top: 397px;
    left: 655px;
}

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

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

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

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

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

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

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

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

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

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

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