@charset "utf-8";
/* CSS Document */
main h1, .top {
  text-align: right;
  padding-top: 10px;
}
main .info {
  display: flex;
}
main .info p {
  font-size: 18px;
  align-self: center;
}
main .room_1, .room_2 {
  display: flex;
  width: 1110px;
	height: 350px;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
	margin-bottom: 10px;
}
main .room p {
  margin-bottom: 10px;
  
}
main .room {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
  height: 710px;
  background-color: #990E0E;
  margin-bottom: 30px;
}
main .layout {
  text-align: center;
  margin-bottom: 30px;
}

/*画像大きくする
*/
main .ImgBox-Img{
 width: 550px;
  height: 350px;
  overflow: hidden;
cursor: pointer;
}
main .ImgBox-Img img {
  transition-duration: 0.5s;
}
main .ImgBox-Img img:hover{
  transform: scale(1.2);
  transition-duration: 0.5s;
}






/*ここからテーブル*/
main table {
  border: 5px solid #000;
  border-collapse: collapse;
  font-size: 16px;
  text-align: center;
  background-color: #fff;
}

main table th {
  border: 1px solid #CCC;
  border-collapse: collapse;
  padding: 5px 10px 5px 10px;
white-space: nowrap;
}
main table td {
  border: 2px solid #000;
  border-collapse: collapse;
  padding: 5px 10px 5px 10px;
  text-align: center;
  white-space: nowrap;
  background: #fff;
}
main table th {
  border: 2px solid #000;
  background: #dcdcdc;
}
main table .red {
  background: #990e0e;
  color: #FFF;
  width: 210px;
}
main table .green {
  background: #00652B;
  color: #FFF;
  width: 90px;
}
main table .gray td
{
  background: #DCDCDC;
}
main table {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
/*main .pa {
  margin-left: 210px;
  margin-bottom: 30px;
}*/
main .other {
  border-color: #00652B;
  border-radius: 20px;
  border-style: dotted;
  width: 630px;
  padding: 20px;
  margin-bottom: 30px;
  margin-left: 210px;
}
main .other dl, .other dd, .other p {
  margin-bottom: 0
}
main .other dd {
  text-indent: 2em;
}
main .option table .red {
  background: #990e0e;
  color: #FFF;
  width: 200px;
}
main .option table .green {
  background: #00652B;
  color: #FFF;
  width: 75px;
}
main .option table .gray {
  background: #DCDCDC;
}
main .option table .gray .td40 {
  width: 40px;
}
main .option table .gray .td270 {
  width: 270px;
}
main .option table .gray .td170 {
  width: 170px;
}
main .option table .gray .td265 {
  width: 265 px;
}
main .option table .font_26 {
  color: #990E0E;
}
/*header.navi .studio{
	background-image: url("../images/common/navi_1_h.png");}
*/
@media screen and (max-width:640px) {
  main {
    padding-top: 80px;
    margin-bottom: 30px;
  }
 main h1 {
    text-align: left;
    padding-top: 30px;
	margin-bottom: 30px;
  }
	
	main .info {
    display: block;
  }
  main .room {
    width: auto;
    height: auto;
	  padding-top: 10px;
	margin-bottom: 10px;
	  padding-bottom: 1px;
  }
  main .room_1, .room_2 {
    display: block;
    width: auto;
	  height: auto;
  }
  main .other {
    width: auto;
    padding: 10px;
    margin-left: 40px;
	  margin-top: 20px;
  }
  main .ImgBox-Img{
 width: auto;
  height: auto;
  pointer-events :none;
}

	
main table {
    font-size: 14px;
	margin-bottom: 10px;
  }
   main table td {
    font-size: 14px;
	   
  }	
	main .option table .font_26{
		font-size: 18px;
	}
	
	main .info p {
    font-size: 15px;
    padding-left: 50px;
    margin-bottom: 10px;
}
	main .layout {
    width: auto;
    margin-left: 50px;
    margin-right: 0px;
    padding-top: 10px;
    margin-bottom: 20px;
  }
	 /*表の横スクロール*/
  .scroll table {
    width: 100%;
  }
  .scroll {
    display: block;
    overflow: auto; /*tableをスクロールさせる*/
    white-space: nowrap; /*tableのセル内にある文字の折り返しを禁止*/
  }
  .scroll::-webkit-scrollbar { /*tableにスクロールバーを追加*/
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track { /*tableにスクロールバーを追加*/
    background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb { /*tableにスクロールバーを追加*/
    background: #BCBCBC;
  }
}