/* =================================================================
   Components CSS
   ================================================================= */

/* -----------------------------------------------------------------
   Base Reset
   ----------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --reel-padding: 1rem;
  --reel-item-spacing: 0.5rem;
}

/* -----------------------------------------------------------------
   01. Stack Component - 垂直方向の余白管理
   ----------------------------------------------------------------- */
.stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.stack > * + * {
  margin-top: 1.5rem;
}

/* 余白のバリエーション */
.stack-large > * + * {
  margin-top: 2rem;
}

.stack-small > * + * {
  margin-top: 0.5rem;
}

/* -----------------------------------------------------------------
   02. Box Component - パディングとカラーテーマ管理
   ----------------------------------------------------------------- */
.box {
  --color-light: #eee;
  --color-dark: #222;

  color: var(--color-dark);
  /* background-color: var(--color-light); */
  padding: 1.5rem;
}

.box * {
  color: inherit;
}

.box.invert {
  color: var(--color-light);
  background-color: var(--color-dark);
}

/* -----------------------------------------------------------------
   03. Center Component - 水平方向の中央揃え
   ----------------------------------------------------------------- */
.center {
  /* コンテンツ幅で計算する */
  box-sizing: content-box;

  /* 親要素のセンタリング */
  max-width: 30ic;
  margin-left: auto;
  margin-right: auto;

  /* 子要素の揃え */
  display: flex;
  flex-direction: column;
}

/* -----------------------------------------------------------------
   04. Cluster Component - フレックスボックスによる要素配置
   ----------------------------------------------------------------- */
.cluster {
  /* フレックスボックスコンテキスト */
  display: flex;
  /* 折り返しを有効 */
  flex-wrap: wrap;
  /* スペース設定 */
  gap: 1.5rem;

  /* 主軸（垂直方向）の位置揃え */
  justify-content: start;

  /* 交差軸（水平方向）の位置揃え */
  align-items: center;
}

/* クラスターを使ったメニュー設計 */
.cluster-menu-set {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cluster-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

/* -----------------------------------------------------------------
   05. Sidebar Component - サイドバーレイアウト
   ----------------------------------------------------------------- */
.sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: start;
  justify-content: center;
}

.sidebar > :first-child {
  flex-grow: 1;
}

.sidebar > :last-child {
  flex-basis: 0;
  /* スペース最大まで拡大する */
  flex-grow: 999;
  /* 最小幅 これを下回るとシングルカラムになる*/
  min-width: 70%;
}

/* -----------------------------------------------------------------
   06. Switcher Component - レスポンシブなレイアウト切り替え
   ----------------------------------------------------------------- */
.switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  --threshold: 30rem;
}

.switcher > * {
  flex-grow: 1;
  flex-basis: calc((var(--threshold) - 100%) * 999);
}

/* -----------------------------------------------------------------
   07. Cover Component - 上下のセンタリング
   ----------------------------------------------------------------- */
.cover {
  --space: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 50vh;
  padding: var(--space);
}

.cover > * {
  margin-top: auto;
  margin-bottom: auto;
}

.cover > :first-child:not(h1) {
  margin-top: 0;
}

.cover > :last-child:not(h1) {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------
   08. Grid Component - レスポンシブグリッドレイアウト
   ----------------------------------------------------------------- */
.grid {
  display: grid;
  grid-gap: 1.5rem;
  /* カラム最小幅 */
  --minimum: 15ic;

  /* カラム設定 */
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(var(--minimum), 100%), 1fr)
  );
}

/* -----------------------------------------------------------------
   09. Frame Component - アスペクト比固定
   ----------------------------------------------------------------- */
.frame {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* インライン要素の隙間を解消する */
  display: block;
}

/* アスペクト比のバリエーション */
.frame-1-1 {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.frame-16-9 {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.frame-5-1 {
  aspect-ratio: 5/1;
  overflow: hidden;
}

/* クラス名の一部を指定して一度に設定する */
[class^="frame-"] > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -----------------------------------------------------------------
   10. Reel Component - 水平スクロール
   ----------------------------------------------------------------- */
.reel {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}

/* 要素間にスペースが必要な場合、Stackを横に応用する */
.reel > * + * {
  margin-left: var(--reel-item-spacing);
}

/* 画像用のリールには高さを設定するとよい  */
.image-reel {
  height: 20vh;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}

/* 画像の間にスペースが必要な場合、Stackを横に応用する */
.image-reel > * + * {
  margin-left: var(--reel-item-spacing);
}

/* 画像用リールの画像には、高さを100％に揃える属性を追加する */
.image-reel > img {
  height: 100%;
  width: auto;
  /* アスペクト比を調整する場合は Frame コンポーネントの考え方が応用できる */
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* -----------------------------------------------------------------
   11. Imposter Component - 要素の絶対配置・オーバーレイ
   ----------------------------------------------------------------- */
.imposter {
  /* 要素の左上の点を位置指定コンテキストの中央に配置する */
  position: var(--positioning, absolute);
  top: 50%;
  left: 50%;

  /* 要素の中央が親要素の位置指定コンテキストの中央になるように位置を変更する */
  transform: translate(-50%, -50%);

  /* 親要素より大きくなった場合のはみ出し処理 */
  overflow: auto;

  /* 親要素とのパディングを設けるとき */
  --imposter-padding: 1.5rem;
  max-width: calc(100% - var(--imposter-padding));
  max-height: calc(100% - var(--imposter-padding));
}

/* 親要素を位置指定コンテキストにする */
.parent {
  position: relative;
}

/* -----------------------------------------------------------------
   12. Icon Component - アイコンとテキストの配置
   ----------------------------------------------------------------- */
.icon {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.icon svg {
  height: 1.25em;
  width: 1.25em;
  flex-shrink: 0;
  vertical-align: middle;
}

/* サイズバリエーション */
.icon--small svg {
  height: 0.75em;
  width: 0.75em;
}

.icon--large svg {
  height: 1.8em;
  width: 1.8em;
}

/* テキストとの間隔を調整 */
.icon--tight {
  gap: 0.15em;
}

/* -----------------------------------------------------------------
   Utility Classes - よく使用するユーティリティクラス
   ----------------------------------------------------------------- */

/* カード */
.card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card-inner {
  padding: 0.8rem;
}
