@charset "UTF-8";
/* テントリストブロックの基本スタイル */
.itemArea ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.itemArea ul a {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  border: 1px solid #ddd;
  padding: 10px 20px 10px 10px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  color: #333;
  justify-content: center;
  flex-wrap: wrap;
  border-radius: 10px;
  position: relative;
  box-sizing: border-box;
  height: 100%;
}

.itemArea ul a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-left: 2px solid red;
  border-top: 2px solid red;
  transform: rotate(135deg);
  position: absolute;
  right: 10px;
}

.itemArea ul a div:nth-of-type(1) {
  width: 54px;
  height: 54px;
}

.itemArea ul a div:nth-of-type(1) img {
  width: 100%;
}

.itemArea ul a div:nth-of-type(2) span {
  display: block;
}

.itemArea ul a div:nth-of-type(2) span:nth-of-type(1) {
  font-size: 16px;
}

.itemArea ul a div:nth-of-type(2) span:nth-of-type(2) {
  font-size: 10px;
}

.itemArea ul a div:nth-of-type(3) span {
  display: block;
}

.itemArea ul a div:nth-of-type(3) span strong {
  font-size: 1.2em;
  color: #f00;
}

.itemArea ul a div:nth-of-type(4) span {
  display: block;
}

.itemArea ul a div:nth-of-type(4) span:nth-of-type(1) {
  background-color: #f00;
  color: #fff;
  padding: 0.25em 0.5em;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 4px;
  font-size: 10px;
}

.itemArea ul a div:nth-of-type(4) span:nth-of-type(1) strong {
  font-size: 1.2em;
}

.itemArea ul a div:nth-of-type(4) span:nth-of-type(2) {
  font-size: 12px;
}

.tent-list {
  margin-top: 10px;
}

.tent-list .tent-item {
  display: block;
  margin-bottom: 8px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.tent-list .tent-item:hover {
  background: #f5f5f5;
}

.tent-list .tent-item input[type="checkbox"] {
  margin-right: 8px;
}

.tent-preview {
  padding: 15px;
  background: #f8f8f8;
  border-radius: 4px;
}

.tent-preview h4 {
  margin: 0 0 10px;
  color: #333;
}

.tent-preview ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tent-preview ul li {
  padding: 8px;
  margin-bottom: 5px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.tent-preview p {
  margin: 0;
  color: #666;
}

.tent-selection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tent-selection-list .tent-item {
  margin: 0;
}

.tent-selection-list .tent-item.is-active {
  background: #007cba;
  color: white;
}

.tent-display {
  padding: 16px;
  background: #f0f0f0;
  border-radius: 4px;
}

.tent-display h4 {
  margin: 0 0 12px;
}

.tent-display .selected-tents {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tent-display .selected-tent-item {
  padding: 8px;
  background: white;
  border-radius: 4px;
  border: 1px solid #ddd;
}
