@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------------------------------------------

   特定箇所指定

--------------------------------------------------------------------------------------------- */

#tent{
	margin-bottom: 75px;
}

@media screen and (max-width:550px) {

#tent{
	margin-bottom: 50px;
}
	
}


/* ロビーラウンジ
------------------------------------------------------------*/
.fa-couch{
	color: #b393bf;
	font-size: clamp(20px, 2vw, 24px);
}

/* バーラウンジ
------------------------------------------------------------*/
.fa-wine-bottle{
	color: #a8bf93;
	font-size: clamp(20px, 2vw, 24px);
}

/* 会議室
------------------------------------------------------------*/
.fa-users{
	color: #b393bf;
	font-size: clamp(20px, 2vw, 24px);
}




/* ---------------------------------------------------------------------------------------------

   全共通箇所

--------------------------------------------------------------------------------------------- */
.banquet{
	position: relative;
  margin-bottom: -100px;
}

.banquet-back{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 55%;
	background-image: url(../banquet-images/skulls.png);
	background-repeat: repeat;
	z-index: 1;
}

.banquet .text-18{
	text-align: center;
	position: relative;
	z-index: 5;
	letter-spacing: 0.25em;
	margin: 0 auto;
}



/* ---------------------------------------------------------------------------------------------

   Lobby, Bar,    横パターン  

--------------------------------------------------------------------------------------------- */
.main-image{
	width: 100%;
	position: relative;
	z-index: 5;
}
.main-image img{
	width: 100%;
	height: auto;
}

.beside-image{
	position: relative;
	z-index: 5;
	margin-bottom: 50px;
}

.beside-image li{
	float: left;
	width: 49%;
	margin-top: 2%;
}
.beside-image li.last{
	float: right;
	width: 49%;
	margin-top: 2%;
}
.beside-image li img{
	width: 100%;
	height: auto;
}



/* ---------------------------------------------------------------------------------------------

Tent,Yoga 縦パターン

--------------------------------------------------------------------------------------------- */
.vertical-image{
	width: 100%;
	margin-bottom: 50px;
	position: relative;
	z-index: 5;
}

.vertical-image li{
	float: left;
	width: 33.33%;
}

.vertical-image li img{
	width: 100%;
	height: auto;
}

.vertical-image .top_fade{
	margin-top: 5%;
}



/* 各施設グリッドスタイル
------------------------------------------------------------*/
.banquet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.banquet-card {

  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  position: relative;
  padding-bottom: 60px;
}

.banquet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.banquet-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.banquet-card-content {
  padding: 20px;
}

.banquet-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.banquet-card-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.banquet-card-floor {
  font-size: 16px;
  color: #666;
}

.banquet-card-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.banquet-card-details {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.banquet-card-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 16px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 15px;
  transition: background 0.3s;
  width: fit-content;
}

.banquet-card-button:hover {
  background: #555;
}

.banquet-card-button i {
  font-size: 13px;
  color: #fff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .banquet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media screen and (max-width: 640px) {
  .banquet-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .banquet-card-image {
    height: 200px;
  }
  
  .banquet-card-title {
    font-size: 20px;
  }
  
  .banquet-card-floor {
    font-size: 14px;
  }
  
  .banquet-card-description {
    font-size: 15px;
  }
  
  .banquet-card-details {
    font-size: 14px;
  }
}


/* 宴会場コンテンツスタイル
------------------------------------------------------------*/
.banquet-hall-item {
  margin-bottom: 0;
}

.banquet-hall-image {
  width: 100%;
  margin: 0 0 30px 0;
  background-color: #f0f0f0;
}

.banquet-hall-image img {
  width: 100%;
  height: auto;
  display: block;
}

.banquet-hall-content {
  text-align: center;
  padding: 20px 20px 0;
  
}

.banquet-hall-subtitle {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: -10px;
  color: #333;
}

.banquet-hall-capacity {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  color: #333;
}

.banquet-hall-description {
  max-width: 980px;
  margin: 0 auto;
}

.banquet-hall-text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .banquet-hall-content {
    padding: 30px 15px;
  }
  
  .banquet-hall-subtitle {
    font-size: 16px;
  }
  
  .banquet-hall-capacity {
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .banquet-hall-text {
    font-size: 14px;
    line-height: 1.8;
  }
}


/* 会議室コンテンツスタイル
------------------------------------------------------------*/
.meeting-room-item {
  margin-bottom: 50px;
}

.meeting-room-image {
  width: 100%;
  margin: 0 0 30px 0;
  background-color: #f0f0f0;
}

.meeting-room-image img {
  width: 100%;
  height: auto;
  display: block;
}

.meeting-room-content {
  text-align: center;
  padding: 20px 20px 40px;

  margin-bottom: 0;
}

.meeting-room-subtitle {
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  color: #333;
}

.meeting-room-capacity {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  color: #333;
}

.meeting-room-description {
  max-width: 900px;
  margin: 0 auto;
}

.meeting-room-text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

/* 料金表スタイル */
.meeting-room-pricing {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 20px;
  background-color: #fafafa;
}

.pricing-title-wrap {
  flex-shrink: 0;
  border-right: 1px solid #333;
  padding-right: 30px;
}

.pricing-title-vertical {
  font-size: 24px;
  font-weight: bold;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.pricing-content {
  flex: 1;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table tr {
  border-bottom: 1px solid #ddd;
}

.pricing-table tr:last-child {
  border-bottom: none;
}

.pricing-table td {
  padding: 20px 15px;
  vertical-align: top;
}

.room-type {
  font-size: 18px;
  font-weight: bold;
  width: 150px;
  color: #333;
  white-space: nowrap;
}

.room-price {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .meeting-room-content {
    padding: 30px 15px;
  }
  
  .meeting-room-subtitle {
    font-size: 16px;
  }
  
  .meeting-room-capacity {
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .meeting-room-text {
    font-size: 14px;
    line-height: 1.8;
  }
  
  .meeting-room-pricing {
    flex-direction: column;
    gap: 30px;
    padding: 30px 15px;
  }
  
  .pricing-title-wrap {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid #333;
    padding-right: 0;
    padding-bottom: 20px;
    width: 100%;
  }
  
  .pricing-title-vertical {
    writing-mode: horizontal-tb;
    font-size: 20px;
  }
  
  .room-type {
    font-size: 16px;
    width: 120px;
  }
  
  .room-price {
    font-size: 14px;
  }
}


