@charset "utf-8";
/* CSS Document */

/* 親コンテナはフレックスにしない */
/* 親コンテナ（カードの横並び） */
.history-container {
  display: flex;
  flex-wrap: wrap;     /* 画面幅で折り返し */
  gap: 20px;           /* カード間の余白 */
  justify-content: flex-start;
  margin-bottom: 30px; /* セクション全体の下余白 */
}

/* 各カード */
.history-item {
  display: flex;
  flex-direction: column; /* 日時・画像・施設名を縦に並べる */
  align-items: center;
  width: 220px;
  height: 220px;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  background-color: #fff;
  transition: transform 0.2s ease; /* マウスオーバーで少し動かす */
}

.history-item:hover {
  transform: translateY(-5px);
}

/* 日付 */
.history-date {
  font-weight: bold;
  margin-bottom: 5px;
}

/* 画像 */
.history-item img {
  max-width: 100%;
  max-height: 120px;
  object-fit: cover;
  margin-bottom: 5px;
  border-radius: 4px;
}

/* 施設名 */
.hotel-name {
  font-size: 14px;
  line-height: 1.2;
}

/* 見出し h3 */
h3 {
	margin-top: 30px;    /* 上余白を少し広めに */
	margin-bottom: 10px; /* 下余白は控えめ */
	font-size: 20px;
	font-weight: bold; /* ちょっとアクセント */
	padding-left: 10px;
	margin-left: 15px;
}

/* 段落 p */
p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
}
#ad_250919_net_728_90 {
  margin-left: 15px;
}
