@charset "utf-8";

/* =========================================================
   Items ディレクトリ専用スタイル (LP・ポータル画面用)
   Prefix: .items-
========================================================= */

/* --- Layouts --- */
.items-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.items-lineup-fullwidth {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .items-lineup-fullwidth {
    padding: 0 20px;
  }
}

/* --- Components --- */
/* 特化カード */
.items-lp-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.items-lp-card__img-wrap {
  margin-bottom: 20px;
}
.items-lp-card__img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.items-lp-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.items-lp-card__title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.items-lp-card__desc {
  flex-grow: 1;
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.items-lp-card__recommend {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--color-highlight, #83ccd2);
  margin-bottom: 20px;
}

/* iframeコンテナ */
.items-lineup-iframe {
  width: 100%;
  height: 600px;
  min-height: 500px;
  border: none;
  overflow: hidden;
  display: block;
  transition: height 0.2s ease;
}

/* --- Utilities --- */
.items-max-w-800 {
  max-width: 800px;
}
.items-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
