@charset "Shift_JIS";

/**
 * 前回検討したプラン・最近見た遊びスポットorプラン履歴ちら出し
 */
.activityBrowsingHistory {
  margin: 40px 0;
}
.activityBrowsingHistory__title {
  position: relative;
  padding-left: 39px;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
.activityBrowsingHistory__title::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 30px;
  height: 26px;
  background: url('/ou/d/cs/pc/image/icon_history.svg') no-repeat 0 0 / 30px 26px;
}
.activityBrowsingHistory ul {
  display: flex;
  margin-top: 13px;
}
.activityBrowsingHistory li {
  position: relative;
  width: 181px;
  margin-right: 5px;
}
.activityBrowsingHistory li:last-of-type {
  margin-right: 0;
}
.activityBrowsingHistory li > a {
  display: block;
  height: 100%;
  padding: 2px 2px 10px;
  border: 1px solid transparent;
  color: #333;
  text-decoration: none;
  box-sizing: border-box;
}
.activityBrowsingHistory li > a:hover {
  border-color: #ccc;
  background: #fef5d8;
}
.activityBrowsingHistory__label {
  position: absolute;
  top: 5px;
  left: 1px;
  z-index: 1;
  padding: 4px 8px;
  background: #e78a13;
  color: #fff;
  line-height: 1;
}
.activityBrowsingHistory__thum,
.activityBrowsingHistory__planThum {
  display: block;
  width: 172px;
  height: 129px;
  margin: auto;
}
.activityBrowsingHistory__planThum {
  position: relative;
}
.activityBrowsingHistory__thum img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}
.activityBrowsingHistory__planThum img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
  transform: translate(-50%, -50%);
}
.activityBrowsingHistory__spotName {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.activityBrowsingHistory__info {
  display: flex;
  margin-top: 10px;
}
.activityBrowsingHistory__thum + .activityBrowsingHistory__info {
	margin-top: 8px;
}
.activityBrowsingHistory__areaName {
  display: block;
  width: 45px;
  margin-right: 8px;
  padding-left: 11px;
  background: url('/ou/d/cs/pc/image/icon_access.svg') no-repeat 0 0 / 9px 13px;
  font-size: 14px;
  line-height: 1.1;
}
.activityBrowsingHistory__genreName {
  flex: 1;
  display: block;
  padding-left: 13px;
  background: url('/ou/d/cs/pc/image/icon_genre.svg') no-repeat 0 0 / 11px 12px;
  font-size: 14px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.activityBrowsingHistory__name {
  position: relative;
  max-height: 48px;
  margin-top: 8px;
  color: #1b47ff;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
}
.activityBrowsingHistory li > a:hover .activityBrowsingHistory__name {
  color: #ff7d00;
  text-decoration: underline;
}
.activityBrowsingHistory__name::before {
  content: '...';
  position: absolute;
  right: 0;
  top: 20px;
  padding: 0 2px 0 3px;
  background: #fff;
}
.activityBrowsingHistory__name::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
}
.activityBrowsingHistory li > a:hover .activityBrowsingHistory__name::before,
.activityBrowsingHistory li > a:hover .activityBrowsingHistory__name::after {
  background: #fef5d8;
}
.activityBrowsingHistory__price {
  margin-top: 4px;
  color: #f00;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: right;
}