.tripwell {
  position: relative;
  width: 100%;
  background-color: #fff;
}

.tripwell-bg {
  position: relative;
  height: 65vh;
  overflow: hidden;
}

.tripwell-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%) brightness(60%);
}

.tripwell-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.tripwell-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
  z-index: 2;
}

.tripwell-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.tripwell-main {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.tripwell-sub {
  font-size: 1rem;
  color: #eee;
}

/* 3つのアイテム */
.tripwell-content {
  background-image: url('/assets/images/bg-white.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 0;
  z-index: 3;
}

/* 背景を薄くする半透明レイヤー */
.tripwell-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7); /* ← ここで薄さを調整 */
  z-index: -1;
}

.tripwell-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  margin-top: -20.5vh;
  gap: 40px;
}

.tripwell-item {
  width: 30%;
  max-width: 400px;
  text-align: center;
  background-color: transparent;
}

.tripwell-item img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  height: 260px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border-radius: 12px;
}

.tripwell-item h3 {
  font-size: 1.5rem;
  margin: 20px 0 4px;
}

.tripwell-item p {
  font-size: 0.95rem;
  color: #333;
  padding: 20px 8px 20px;
  margin: 0 auto;
}

/* ボタン */
.tripwell-action {
  display: flex;
  align-items: center;
}

.tripwell-action .tripwell-btn {
  display: flex;
  align-items: center;
  background: #5d5d5d;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  gap: 8px;
  padding: 10px 40px;
  margin: 0 auto;
}

.tripwell-action .tripwell-btn .icon-wrapper::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: #fff;
  margin: 0 8px;
  vertical-align: middle;
}

.tripwell-action .tripwell-btn .icon-wrapper img {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}