@charset "UTF-8";
/* manavillage_room.css */

/* ===============
h1 h2
================*/
main h1 {
	width: 1000px;
	clear: both;
	font-size: 24px;
	font-weight: bold;
	margin: 40px auto;
}
main h2 {
	clear: both;
	font-size: 20px;
	color: #0e7438;
	margin: 0 0 20px 0;
	border-left: 4px solid #0e7438;
	padding: 8px 0 8px 20px;
}

.marginbottom40 {
	margin-bottom: 40px!important;
}

.roomtop_copy {
	margin: 10px 0 40px 0;
	font-size: 16px;
}


.room_location {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.room_location .shinbashi_img {
	flex-basis: 30%;
	width: 100%;
}
.room_location .shinbashi_txt {
	flex-basis: 67%;
}

.room_img {
	width: 100%;
	margin: 40px auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 2%;
}
.roomimg_item {
	flex-basis: 32%;
	margin-bottom: 30px;
}

.btn_area {
	width: 100%;
	margin: 30px auto 50px auto;
	display: flex;
	justify-content: center;
	gap: 40px;
}
.btn_area .btn_link {
	flex-basis: 200px;
	width: 100%;
}
.btn_area .btn_link a {
	display: block;
	padding: 12px 12px;
	text-align; center;
	border: 1px solid #c9c9c9;
	background: url("../images/common/arrow_down_gr.png") no-repeat 95% center;
	background-size: 12px;
	border-radius: 4px;
}
.btn_area .btn_link a:hover {
	cursor: pointer;
	text-decoration: none;
	background: url("../images/common/arrow_down_w.png") no-repeat 95% center #0e7439;
	background-size: 12px;
	color: #fff;
}

.usecase {
	width: 100%;
	margin: 0 auto 40px auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 5%;
}
.usecase .usecase_item {
	flex-basis: 47.5%;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 20px;
}
.usecase_img {
	flex-basis: 40%;
	margin-right: 3%;
}
.usecase_img img {
	border: 1px solid #c9c9c9;
}
.usecase_txt {
	flex-basis: 57%;
}
.usecase_txt h4 {
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 6px;
}


.room_access_upper  {
	width: 100%;
	margin: 0 auto 30px auto;
	display: flex;
	justify-content: flex-start;
	gap: 3%;
}
.room_access_upper  .roomaccess_photo {
	flex-basis: 33%;
}

.room_access_upper  .roomaccess_text {
	flex-basis: 30%;
}

.room_access_lower {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.room_access_lower .roomaccess_item {
	flex-basis: 32%;
}
.room_access_lower .roomaccess_item p {
	font-size: 14px;
}


/* ===============
.room_contents
================*/
main .room_img {
	width: 100%;
	margin: 40px auto;
	display: flex;
	flex-diretion: row;
	justify-content: space-between;
	flex-wrap:wrap;
}
main .roomimg_item {
	flex-basis: 32%;
}
main .roomimg_item p {
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 20px;
}
main .room_contents {
	clearn: both;
	margin: 10px auto 60px auto;
	overflow: hidden;
}
main .room_contents .roommap_area {
	clear: both;
	width: 500px;
	height: 300px;
	position: relative;
	float: left;
}
main .room_contents .roommap_area iframe {
	width: 100%;
	height: 300px;
	position: absolute;
}
main .room_contents .roomimg_area {
	clear: both;
	width: 500px;
	float: left;
}
main .room_contents .roomtext_area {
	margin-left: 520px;
}

/* ===============
.room_fee
================*/
main .room_fee {
	width: 80%;
	margin: 0 auto 60px auto;
}
main .room_fee table.roomrental_table {
	border-bottom: 1px solid #8b8b8b;
	margin: 20px auto 10px auto;
	width: 100%;
	font-size: 16px;
}
main .room_fee table.roomrental_table th {
	background-color: #0e7438;
	color: #fff;
	text-align: center;
	font-weight: bold;
	padding: 10px 0;
}
main .room_fee table.roomrental_table td {
	border-top: 1px solid #8b8b8b;
	padding: 10px;
	text-align: left;
}
main .room_fee h4 {
	font-size: 18px;
	color: #686868;
	font-weight: bold;
	margin: 0 0 16px 0;
}




@media all and (max-width: 767px) {
	
/* ===============
h1
================*/
main h1 {
	width: 96%;
	clear: both;
	font-size: 24px;
	font-weight: bold;
	margin: 40px auto;
}

.room_location {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.room_location .shinbashi_img {
	flex-basis: 100%;
	width: 100%;
	margin: 0 auto;
}
.room_location .shinbashi_txt {
	flex-basis: 100%;
		margin: 0 auto;
}

.room_img {
	width: 100%;
	margin: 40px auto;
	display: block;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 0;
}
.roomimg_item {
	flex-basis: 100%;
	margin-bottom: 30px;
}

.btn_area {
	width: 100%;
	margin: 30px auto 50px auto;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.btn_area .btn_link {
	flex-basis: 160px;
	width: 100%;
}
.btn_area .btn_link a {
	display: block;
	padding: 12px 12px;
	text-align; center;
	border: 1px solid #c9c9c9;
	background: url("../images/common/arrow_down_gr.png") no-repeat 95% center;
	background-size: 12px;
	border-radius: 4px;
}
.btn_area .btn_link a:hover {
	cursor: pointer;
	text-decoration: none;
	background: url("../images/common/arrow_down_w.png") no-repeat 95% center #0e7439;
	background-size: 12px;
	color: #fff;
}

.usecase {
	width: 100%;
	margin: 0 auto 40px auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 5%;
}
.usecase .usecase_item {
	flex-basis: 100%;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 20px;
}
.usecase_img {
	flex-basis: 40%;
	margin-right: 3%;
}
.usecase_img img {
	border: 1px solid #c9c9c9;
}
.usecase_txt {
	flex-basis: 57%;
}
.usecase_txt h4 {
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 6px;
}


.room_access_upper  {
	width: 100%;
	margin: 0 auto 30px auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 0;
}
.room_access_upper  .roomaccess_photo {
	flex-basis: 100%;
}

.room_access_upper  .roomaccess_text {
	flex-basis: 100%;
}

.room_access_lower {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.room_access_lower .roomaccess_item {
	flex-basis: 100%;
}
.room_access_lower .roomaccess_item p {
	font-size: 14px;
}
	
/* ===============
.room_contents
================*/
main .room_img {
	width: 100%;
	margin: 40px auto;
	display: flex;
	flex-diretion: column;
	justify-content: space-between;
	flex-wrap:wrap;
}
main .roomimg_item {
	flex-basis: 90%;
	margin: 0 auto 20px auto;
}
	
main .room_contents .roommap_area {
	clear: both;
	width: 100%;
	height: 300px;
	position: relative;
	float: none;
}
main .room_contents .roommap_area iframe {
	width: 100%;
	height: 300px;
	position: absolute;
}
main .room_contents .roomimg_area {
	clear: both;
	width: 100%;
	float: none;
}
main .room_contents .roomtext_area {
	margin-left: auto;
}
	
/* ===============
.room_fee
================*/
main .room_fee {
	width: 100%;
	margin: 0 auto 60px auto;
}
	
	
	
}