/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&family=UnifrakturMaguntia&display=swap');

/* ===== 変数 ===== */
:root {
  --logo-color: #ddd;
}

/* ===== 背景 =====
   ブレークポイント 850px / 1700px は Pico のものではなく画像の実寸由来:
   ビューポート幅が画像幅 (s: 851px, m: 1701px, l: 3402px) を超えたら
   一段大きい画像に切り替える。レイアウト用のメディアクエリを追加する
   場合は Pico のブレークポイントに合わせること。 */
html {
  height: 100vh;
  background-size: cover;
  background-image: url("images/s.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-color: rgba(0, 0, 0, .5);
  background-blend-mode: darken;
}

@media (min-width: 850px){
  html{
    background-image: url("images/m.jpg");
  }
}

@media (min-width: 1700px){
  html{
    background-image: url("images/l.jpg");
  }
}

/* ===== タイポグラフィ ===== */
.shippori-mincho-b1-regular, body {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}

.logo {
  font-family: "UnifrakturMaguntia", cursive, sans-serif;
  font-weight: 400;
  font-style: normal;
}

li.logo a {
  font-size: 2.5em;
  color: var(--logo-color);
  text-decoration: none;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

/* ===== フッター(画面下部に固定) ===== */
body {
  padding-bottom: 80px;
}

body footer {
  position: fixed;
  bottom: 0;
  height: 80px;
  padding: 26px 0;
  background-color: #222;
  text-align: center;
  width: 100%;
}

footer p,
footer a {
  color: var(--logo-color);
}

footer a {
  text-decoration: none;
}

/* ===== ユーティリティ ===== */
.text-center {
  text-align: center;
}
