#main{
	font-size:15px;
	line-height:1.6;
}
section{
	padding-bottom: 90px;
}
.pageWrap .inner{
	display:flex;
}
.pageWrap .inner .contents{
	width:720px;
}
.pageWrap .inner .sideBar{
	width:200px;
}
h3{
	font-size:20px;
	margin-bottom:24px;
	
}
h4{
	font-size:20px;
	margin-bottom:16px;
	position: relative;
	display: inline-block;
}
h4:after{
	position: absolute;
	content: "";
	width: 115px;
	height: 1px;
	background-color: #000;
	top: 50%;
    right: -120px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.proparty{
	display:flex;
	flex-wrap:wrap;
	width:100%;
}
dl{
	width:calc(100% / 3);
	display:flex;
	justify-content:space-between;
}
dl dt,dl dd{
	width: 50%;
}


.titleArea {
	display: flex;
	align-items: center;
	width: 100%;
	height: 190px;
	background: linear-gradient(#FFC001, #FFD658)
}

@media only screen and (min-width: 1480px) {
	.titleArea {
		height: 300px
	}
}

@media only screen and (max-width: 500px) {
	.titleArea {
		height: 150px
	}
}
.titleArea .inner p {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .1em;
	font-family: "Poppins", sans-serif
}

@media only screen and (max-width: 500px) {
	.titleArea .inner p {
		font-size: 1.5rem;
		font-weight: 600
	}
}

.titleArea .inner h2 {
	margin-top: 20px;
	font-size: 3rem;
	font-weight: 600
}

@media only screen and (min-width: 1480px) {
	.titleArea .inner h2 {
		font-size: 4rem
	}
}

@media only screen and (max-width: 500px) {
	.titleArea .inner h2 {
		margin-top: 10px;
		font-size: 8vw
	}
}
.housingWrap .inner{
		display: flex;
		flex-direction: row-reverse;
	align-items: flex-start;
}
.housingWrap .inner .basicInfo{
		width: 295px;
		border: 1px solid #000;
		padding: 32px;
		box-sizing: border-box;
	position: sticky;
  top: 60px;
}
.housingWrap .inner .roomInfo{
		width: 860px;
}

.roomCatch{
	height: 48px;
	line-height: 48px;
	text-align: center;
	color: #FF6302;
	margin-bottom: 36px;
	background-color: #F5F4F0;
}
.roomGalery{
	background-color: #ccc;
	margin-bottom: 60px;

}
.dlWrap{
	display:flex;
	flex-wrap: wrap;
}
.dlWrap dl{
	width:50%;
	border-bottom: 1px solid #C1C1C1;
}
.dlWrap dl.ful{
	width:100%;
}
.dlWrap dl dt{
	width:30%;
	padding: 20px;
	box-sizing: border-box;
	background-color: #F5F4F0;
	color: #FF6302;
}
.dlWrap dl dd{
	width:70%;
	padding: 20px;
	box-sizing: border-box;
}
dlWrap dl dt{
	width:30%;
	padding: 20px;
	box-sizing: border-box;
	background-color: #F5F4F0;
	color: #FF6302;
}

.voices{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px 40px;
}


/* Main / voiceCard
 --------------------------------------------- */


.voiceCard {
	display: flex;
	justify-content: space-between;
	padding: 30px;
	max-width: 580px;
	border: 1px solid #120202;
	box-sizing: border-box
}

@media only screen and (max-width: 767px) {
	.voiceCard {
		display: block;
		min-width: 300px
	}
}

.voiceCard .thumnail {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20%;
	height: 20%;
	max-width: 100px;
	max-height: 100px;
	border-radius: 50%
}

@media only screen and (max-width: 767px) {
	.voiceCard .thumnail {
		width: 20vw;
		min-width: 80px;
		height: 20vw;
		min-height: 80px;
		margin: 0 auto
	}
}

.voiceCard .thumnail img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%
}

.voiceCard .voiceContents {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 70%;
	max-width: 380px
}

@media only screen and (max-width: 1079px) {
	.voiceCard .voiceContents {
		display: block
	}
}

@media only screen and (max-width: 767px) {
	.voiceCard .voiceContents {
		margin-top: 10%;
		width: 100%
	}
}

.voiceCard .voiceContents .name {
	display: flex;
	padding-bottom: 2%;
	margin-bottom: 5%;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border-bottom: 1px solid #120202;
	font-size: 22px
}

.voiceCard .voiceContents .department {
	display: flex;
	padding: 3% 4%;
	margin-bottom: 5%;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border: 1px solid #707070;
	font-size: 12px
}

@media only screen and (max-width: 1079px) {
	.voiceCard .voiceContents .department {
		display: flex
	}
}

.voiceCard .voiceContents .department .departmentName {
	position: relative;
	margin-right: 30px
}

.voiceCard .voiceContents .department .departmentName::after {
	content: "";
	position: absolute;
	top: 5px;
	right: -23px;
	display: block;
	width: 13px;
	height: .5px;
	background-color: #000;
	transform: rotate(-55deg)
}

.voiceCard .voiceContents .Comment {
	display: inline-block;
	width: 100%;
	letter-spacing: .05em;
	line-height: 1.5
}

@media only screen and (min-width: 1480px) {
	.voiceCard .voiceContents .Comment {
		font-size: 15px
	}
}

@media only screen and (max-width: 767px) {
	.voiceCard .voiceContents .Comment {
		font-size: 18px
	}
}
#reccomendRoom{
	border-top: 1px solid #E5E5E5;
	padding:80px 0;
}
.column4{
	display:flex;
	flex-wrap:wrap;
}
.column4 .roomCard{
	width:calc(100% / 4);
}
.roomCard .thumnail{
	width:100%;
	height:200px;
}
.roomCard .thumnail img{
	object-fit:cover;
	width:100%;
	height:100%;
}
.roomCard .cardContents{
	padding:20px;
}