@charset "UTF-8";
  .info-hero {
    background-image: url(../images/karaoke.jpeg);
    background-size: cover;
    background-position: center;
    display: flex; /* 中の文字を中央揃えしたい場合 */
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    color: #fff;
  }
  .shop-info-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
    color: #3F3C3C;
    background-color: #fff8f8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .content-wrapper {
    display: flex;
    justify-content: space-between; /* 子要素を左右いっぱいまで広げる */
    gap: 40px; 
	/*flex-wrap: wrap;*/
    width: 100%;
	max-width: 1400px;
  }
  .shop-info {
    border-collapse: collapse;
    width: 600px;
  }
.shop-info tr {
}
  /* ヘッダーセル */
  .shop-info th {
    background-color: #f2e9e4;
    text-align: left;
    padding-top: 10px;
    padding-right: 0;
    padding-left: 5px;
    padding-bottom: 10px;
    font-weight: bold;
    width: 120px;
    white-space: nowrap;
    border-top: 1px solid #D9D9D9;
  }
  /* データセル */
  .shop-info td {
    padding-top: 10px;
    padding-right: 0;
    padding-left: 4px;
    padding-bottom: 10px;
    border-top: 1px solid #D9D9D9;
	white-space: nowrap;
  }
  .shop-info tr:last-child th, .shop-info tr:last-child td {
    border-bottom: 1px solid #D9D9D9; /* お好みの色に変更OK */
  }
  .map {
    height: 490px;
    border: 0;	/*height: 300px;*//*高さ必須*/
    width: 600px;
  }
.photo-wrapper {
    display: flex;
	flex-wrap: wrap;
    gap: 2%;
    padding-top: 20px;
    margin-top: 30px;
}
.room{
	width: 32%;
    height: 450px;
	background-size:cover;/*画像をいっぱいにトリミングしながらフィット*/
	background-position:center;/*画像の中心を見せる*/
	background-repeat:no-repeat;/*繰り返しを防ぐ*/
}
.photo-wrapper .room.counter {
    background-image: url(../images/info_counter.jpg);
}
.photo-wrapper .room.snack {
    background-image: url(../images/info_snack.jpg);
}
.photo-wrapper .room.corner {
    background-image: url(../images/info_corner.jpg);
}
@media (max-width:1439px){
.content-wrapper {
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.shop-info {
    width: 49%;
}
.map {
}
}

@media (max-width:1024px) {
  .content-wrapper {
	  flex-direction: column;
	}
  
    
 .shop-info {
    width: 100%; /* テーブルも全幅に */
    margin-left: 0; /* 中央の隙間を解除 */
    table-layout: fixed;	
    }
 .map {
      width: 100%; /* 画面幅いっぱいに */
      margin-bottom: 20px; /* 下にスペース */
    }
.photo-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 2%;/*隙間の調整*/
    justify-content: space-between;
}
.room {
	width: 32%;
    height: 280px;
	box-sizing: border-box; /* 余裕を持たせる */
}
  }
@media (max-width:768px){
	
.content-wrapper{
	flex-direction: column;
}
.photo-wrapper {
    display: block;
    margin-top: 0px;
}
.room {
    width: 100%;
    height: 300px;
    margin-bottom: 12px;
}
}

@media (max-width:480px){

.shop-info-section {
    padding-left: 5px;
    padding-right: 5px;
}
.shop-info th  {
    font-size: 0.8em;
    width: 30%;
    text-align: left;
}

.shop-info td {
    font-size: 0.8em;
    margin-left: 4px;
	white-space: normal;
}
.map {
    height: 220px;
}
.room {
    margin-bottom: 15px;
}
}
