/* ==========================================================================
   plan-hub-pc.css — 撮影メニュー一覧ページ (/plan/) の PC・横長画面用
   <link media="(min-width: 1024px)"> で読み込む。方針は common-pc.css の冒頭を参照。

   スマホ版は6プランを縦1列に並べているので、PC では 3列×2段のグリッドにする。
   ロケーションだけ注意書きが1行多いので、各カードを縦の flex にして
   「詳しくはこちら」ボタンの高さを段ごとに揃える
   ========================================================================== */

/* =============== 見出し =============== */
.ph-head {
  padding: 100px var(--pc-gutter) 0;
}
.ph-head__en {
  font-size: 56px;
}

.ph-head__note {
  margin-top: 28px;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 2;
}

/* =============== 一覧 =============== */
.ph-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px clamp(32px, 4vw, 64px);
  width: min(1100px, calc(100% - 2 * var(--pc-gutter)));
  margin: 80px auto 0;
}

.ph-item {
  display: flex;
  flex-direction: column;
  width: auto;
  margin: 0;
}
.ph-item + .ph-item { margin-top: 0; }

.ph-item__name {
  font-size: clamp(30px, 2.6vw, 38px);
}

/* 写真はカードの幅いっぱいの正方形。マウスを乗せると少し浮く */
.ph-item a:has(> .ph-item__photo) {
  display: block;
  margin-top: 16px;
  border-radius: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ph-item a:has(> .ph-item__photo):hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.ph-item__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-top: 0;
}

.ph-item__note {
  margin-top: 12px;
  font-size: 14px;
}

/* ボタンはカードの一番下（段ごとに高さが揃う） */
.ph-item__btn {
  width: 220px;
  height: 48px;
  margin: auto 0 0 auto;
  font-size: 15px;
}
/* 写真（と注意書き）とボタンの間の最低限の間隔 */
.ph-item a:has(> .ph-item__photo),
.ph-item__note { margin-bottom: 20px; }
.ph-item a:has(> .ph-item__photo) + .ph-item__note { margin-top: -8px; }

/* =============== 下の導線 =============== */
.ph-foot {
  margin-top: 110px;
}

.plan-hub-page .footer {
  margin-top: 140px;
}
