@charset "utf-8";

/*物件購入*/

.buy-search_box{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.buy-search_box > .buy-check_box,
.buy-search_box > .buy-check_box2{
    width: 45%;
}

@media (max-width: 700px) {
    .buy-search_box{
        display: block;
    }
    .buy-search_box > .buy-check_box,
    .buy-search_box > .buy-check_box2{
        width: 100%;
    }
    
}


.buy-main_img{
    position: relative;
    background-image: url('../img/buy-main01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
}

.buy-main_img::before{
    background-color: rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
}

.buy-main_img > h2{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 4rem;
    height: 100%;
    width: 100%;
    margin: 0;
}


.select-point{
    width: 100%;
    padding: 1rem 0;
}

.select-arrow{
    position: relative;
}



.buy-search_btn_box{
    width: fit-content;
    margin: 4rem auto;
}

.buy-search_btn{
    padding: 10px 50px;
    font-size: 1.6rem;
	text-decoration: none;
	margin: auto;
	font-weight: bold;
	background: #27acd9;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
    border: none;
}

.buy-search_btn:hover {
	background: #44c6f2;
	color: #fff;
}

@media (max-width: 700px) {
    .buy-main_img{
        height: 300px;
    }

    .buy-main_img > h2{
        font-size: 3rem;
    }
    .select-point{
        -webkit-appearance: none;
        appearance: none;
        font-size: 1.7rem;
    }

    .select-arrow:after{
        content: "";
        position: absolute;
        top: 6px;
        right: 12px;
        width: 8px;
        height: 8px;
        border-right: 2px solid #333;
        border-bottom: 2px solid #333;
        transform: rotate(45deg);
    }
}