/* =========================
   ベース設定
========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #111;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

/* =========================
   全体ラッパー
========================= */

.wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 16px;
  background: #ffffff;
}

/* centerタグを現代的に扱う */
center {
  display: block;
}

/* =========================
   画像
========================= */

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

/* =========================
   テキスト
========================= */

strong {
  display: block;
  margin: 24px 0 12px;
  font-size: 0.95rem;
}

/* 古いfontタグ救済 */
font {
  display: block;
  margin: 8px 0 16px;
  color: #555;
}

/* =========================
   リンク（今っぽさの核）
========================= */

a.link {
  display: block;
  padding: 14px 16px;
  margin: 10px 0;
  text-decoration: none;
  color: #111;
  background: #f0f0f0;
  border-radius: 14px;
  text-align: center;
  font-weight: 500;
  transition: background 0.2s ease;
}

a.link:hover {
  background: #e2e2e2;
}

/* etc... の文字が横に残るのを少し整える */
a.link + text,
a.link + span {
  display: none;
}

/* =========================
   iframe（Spotify / YouTube）
========================= */

iframe {
  max-width: 100%;
  width: 100%;
  margin: 16px auto 32px;
  display: block;
  border-radius: 12px;
}

/* YouTubeの縦横比対策（古iframe救済） */
iframe[src*="youtube"] {
  aspect-ratio: 16 / 9;
  height: auto;
}

/* =========================
   フッターっぽい部分
========================= */

.wrapper > br:last-of-type {
  display: none;
}

/* =========================
   PCで見た時ちょい広げる
========================= */

@media (min-width: 768px) {
  .wrapper {
    max-width: 600px;
  }
}


a.link {
  display: block;              /* 面で押せるように */
  padding: 14px 16px;
  margin: 10px 0;
  text-align: center;

  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;

  transition: transform 0.1s ease, background 0.1s ease;
}

/* 押してる最中（スマホで指を置いた瞬間） */
a.link:active {
  transform: scale(0.97);
  background: #333;
}


a.link {
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

a.link:active {
  transform: scale(0.97);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

