.privacyArea{
	position: fixed;
	bottom: 0;
    background-color: rgba(0,0,0,.85);
    color: white;
    z-index: 100;
    overflow: hidden;
}

.privacyArea .content{
	width: 80%;
	padding: 50px 35px 50px 75px;
    line-height: 30px;
    float: left;
}

.privacyArea .content a{
	color:white;
	text-decoration: underline;
}

.privacyArea .button{
	width: 20%;
    float: left;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    right: 0;

}
.privacyArea .button button{
	padding: 10px 15px;
    background: #B89150;
    color: white;
    letter-spacing: 4px;
    border: 0;
}

@media (max-width: 767px) {
    .privacyArea .content{
        width: 100%;
    }
    .privacyArea .button{
        width: 100%;
        position: unset;
        text-align: center;
    }
}


.temporary-news{
    display: block;
    bottom: 0px;
    right: 0px;
    width: 600px;
    height: 220px;
    position: fixed;
    background-color: #ffffffe0;
    z-index: 99;
    overflow: hidden;
}
.temporary-news .temporary-news-img{
    display: block;
    padding: 10px 10px;
    float: left;
    max-width: 40%;
}
.temporary-news .temporary-news-img img{
    width: 100%;
}
.temporary-news .temporary-news-content{
    display: block;
    padding: 10px 10px;
    float: left;
    max-width: 60%;
}
.temporary-news .temporary-news-content .title{
    font-weight: bold;
    padding: 10px;
    font-size: 20px;
}
.temporary-news .temporary-news-content .description{
    padding: 10px;
    color: #777777;
}
.temporary-news .temporary-news-content .close{
    position: absolute;
    top: 10px;
    right: 30px;
    padding: 5px 7px;
    background: #fff;
    color: #000;
    border: 0;
}
.temporary-news .temporary-news-content .close:hover{
    background-color: #dedede;
}
.temporary-news .temporary-news-content .close:after{
    content: "X";
}
.temporary-news .temporary-news-content .reserve{
    position: absolute;
    bottom: 25px;
    right: 30px;  
    padding: 10px 15px;
    background: #B89150;
    color: white;
    letter-spacing: 4px;
    border: 0;
}
@media (max-width: 767px) {
    .temporary-news{
        width: 100%;
        height: auto;
    }
    .temporary-news .temporary-news-content .reserve{
        display: none;
    }
}

.contact-map{
    display: none;
}
.contact-map.pc{
    display: block;
}
@media (max-width: 767px) {
    .contact-map.mobile{
        display: block;
    }
    .contact-map.pc{
        display: none;
    }
}