
/* ----------------------------------------
   アンカーリンクの移動位置調整
---------------------------------------- */
section#rooms::before,
section#events::before,
section#shopping::before,
section#facilities::before {
    content: "";
    display: block;
    height: 100px;       /* より大きな値に調整 */
    margin-top: -100px;  /* 同じ値に調整 */
    visibility: hidden;
}

.announce-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 33px 0;
    border-top: 1px solid var(--color-border, #D3D3D3);
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.announce-item:hover {
    background-color: rgba(145, 138, 122, 0.05);
    transform: translateX(5px);
}

@media screen and (max-width: 768px) {
  .common-arrow-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    margin: 15px auto;
    width: 80%;
    max-width: 240px;
    font-weight: 400;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .common-arrow-bottom:hover,
  .common-arrow-bottom:active {
    background-color: var(--color-hover, #f0a500);
    color: white;
    transform: translateY(0);
  }
  
  .common-arrow-bottom .triangle-icon {
    width: 16px;
    height: 16px;
    background-color: white;
  }
  
  .common-arrow-bottom .triangle-icon::after {
    border-color: var(--color-primary) transparent transparent transparent;
  }
  
  .common-arrow-bottom:hover .triangle-icon,
  .common-arrow-bottom:active .triangle-icon {
    background-color: white;
  }
  
  /* テキストを「More」に変更するには JavaScript も必要です */
}

/* クリッカブルカードのホバーエフェクト */
.room-item.card-hover,
.restaurants-item.card-hover,
.four-peaks-item.card-hover,
.club-item.card-hover,
.shopping-item.card-hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 基本カードスタイル（トランジション設定） */
.room-item,
.restaurants-item,
.four-peaks-item,
.club-item,
.shopping-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* clickableエリアであることを示すカーソルスタイル */
.room-item,
.restaurants-item,
.four-peaks-item,
.club-item,
.shopping-item {
  cursor: pointer;
}

/* カード内のリンクへのポインタスタイル保持 */
.room-item a,
.restaurants-item a,
.four-peaks-item a,
.club-item a,
.shopping-item a {
  position: relative;
  z-index: 1;
}

a.common-arrow-bottom {
    padding: 0 24px;
    height: 40px;
    font-size: 14px;
}

@media screen and (max-width: 550px) {
    .common-more-btn {
      width: auto;
      padding: 4px;
    }
}