@charset "UTF-8";

/* =========================================
   THE FLOWER COFFEE / 共通スタイル
   ========================================= */

/* ベース変数（必要に応じて調整してください） */
:root {
  --tf-body-bg: #ffffff;
  --tf-body-color: #212529;
  --tf-primary: #000000;
  --tf-accent: #e5803c; /* オレンジ系アクセント（例） */
  --tf-border-color: #e5e5e5;
}

/* ベース */
html {
  scroll-behavior: smooth;
}

/* =========================
   Typography Base
   ========================= */

body {
  font-family: "Noto Sans JP",
               -apple-system,
               BlinkMacSystemFont,
               "Segoe UI",
               "Hiragino Kaku Gothic ProN",
               Meiryo,
               sans-serif;

  /* Bootstrap default: 1.5 → 少し広げる */
  line-height: 1.8;
  letter-spacing: 0.02em;
}


/* 共通リンクスタイル */
a {
  text-decoration: none;
  color: var(--tf-primary);
}

a:hover {
  text-decoration: underline;
}

/* ナビゲーション */
.navbar {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(8px);
}

.navbar-brand {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* スマホ時、ナビリンクの見やすさを少しアップ */
.navbar-nav .nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* セクション・余白の微調整（Bootstrap + α） */
section {
  scroll-margin-top: 5rem; /* アンカー時にヘッダーと被らないように */
}

/* セクション見出し */
section header h2,
section h2.section-title {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
#hero {
  /* hero部分の背景などを変えたい場合はここに */
}

/* カード（商品・限定など） */
.card {
  border-radius: 0.75rem;
  border-color: var(--tf-border-color);
}

.card-title {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ボタン */
.btn-dark {
  border-radius: 999px;
}

.btn-outline-dark {
  border-radius: 999px;
}

/* フッター */
footer {
  font-size: 0.8rem;
}

/* 小さめ画面での調整 */
@media (max-width: 767.98px) {
  body {
    padding-top: 4rem;
  }

  .navbar-brand {
    font-size: 0.85rem;
  }
}




/* 見出し */
h1, h2, h3, h4, h5 {
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* セクションタイトル */
section header h2 {
  margin-bottom: 1.5rem;
}

/* 本文 */
p {
  line-height: 1.9;
}

/* 小さなテキスト（補足・キャプション） */
.small,
.text-muted {
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  body {
    line-height: 1.7;
  }
  p {
    line-height: 1.8;
  }
}


.font-tt-mm {
  font-family: "tt-modernoir", sans-serif;
  font-weight: 500;
  font-style: normal; 
}

.color-flower {
  color: #e25a52;
}


footer a:hover{
  text-decoration: underline;
  color:#ffffff;
}

