/* ==========================================================
  トークン
   ========================================================== */
:root {
  --crust: #5c2c0d;      /* 焦げ茶：見出しテキスト・影 */
  --terracotta: #b84a15; /* たこ焼き生地：メインカラー */
  --terracotta-deep: #8f3510;
  --ember: #e2793f;      /* ソース照り：ホバー・アクセント */
  --mayo: #ffefc0;       /* マヨ：明るい背景 */
  --cream: #ffeaae;      /* 生成り：ヘッダー文字色 */
  --nori: #44721c;       /* 青のり：差し色 */

  --font-display: 'Kiwi Maru', serif;
  --font-body: 'M PLUS 1p', sans-serif;
  --font-pixel: 'DotGothic16', monospace;

  --radius-lg: 32px;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--mayo);
  background-image: url("../images/body_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: local;      /* 背景を動かすか */
  font-family: var(--font-body);
  color: var(--crust);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none;}
button { font: inherit; border: none; background: none; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--font-pixel);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.85;
  margin: 0 0 6px;
}
.eyebrow--dark { color: var(--terracotta-deep); opacity: 1; }

/* ==========================================================
  ヘッダー
   ========================================================== */
.hero {
  position: relative;
  min-height: 300px;
  padding: 48px 8% 90px;
  background-color: var(--terracotta);
  background-image: url("../images/header_background.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero_inner {
  position: relative;
  z-index: 2;
}

.header_text {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--cream);
  margin: 0 0 14px;
  text-shadow: 2px 3px 0 var(--terracotta-deep);
}

.mailadless {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.3;
  opacity: 0.9;
  border-bottom: 1px dashed transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.mailadless:hover { opacity: 1; border-color: var(--cream); }
.icon-mail { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 90px;
  display: block;
}

/* ==========================================================
  フッター
   ========================================================== */
.site-footer {
  text-align: center;
  padding: 24px;
  font-family: var(--font-pixel);
  font-size: 0.75rem;
  color: var(--cream);
  background-image: url("../images/header_background.png");
}
.footer_img {
  display: flex;
  margin: -90px auto -10px;
  margin-right: 10%;
  filter: drop-shadow(0 12px 14px rgba(92, 44, 13, 0.35));
}

/* ==========================================================
  レスポンシブ
   ========================================================== */
@media (max-width: 600px) {
  .hero { padding: 36px 6% 70px; min-height: 240px; }
  .mailadless { flex-direction: row; font-size: 0.75rem; }
  .img { width: 160px !important; margin-top: -50px; }
  .skewer { gap: 14px; }
  .dango { width: 48px; height: 48px; }
  .dango svg { width: 20px; height: 20px; }
}
