/* =========================
   TreBoost 共通スタイル
   ========================= */

/* ---- ベース ---- */

:root {
  --bg: #f5f5f8;
  --bg-soft: #ffffff;
  --accent: #ffcc00;
  --accent-2: #37a4ff;
  --text: #12121a;
  --muted: #7a7f90;
  --card-border: rgba(15, 20, 40, 0.06);
  --radius-lg: 18px;
  --radius-xl: 26px;
}

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

body {
/*  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;*/
	font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";

  background:
    radial-gradient(circle at top, rgba(255, 204, 0, 0.12), transparent 60%),
    radial-gradient(circle at bottom right, rgba(55, 164, 255, 0.12), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.centering{margin:0 auto;text-align:center;}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Margin */
.mgtop10{margin-top:10px;}
.mgtop20{margin-top:20px;}
.mgtop30{margin-top:30px;}
.mgtop40{margin-top:40px;}
.mgtop50{margin-top:50px;}


/* ---- HEADER ---- */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  border-bottom: 1px solid rgba(15, 20, 40, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================
   ヘッダー：ロゴ画像
   ========================= */

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;     /* ← ベストサイズ */
  width: auto;
  display: block;
  margin-top:-5px;
}

/* スマホだけ少し小さく */
@media (max-width: 480px) {
  .logo-img {
    height: 30px;
  }
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 0, #ffcc00, #ff5a5f 45%, #2e48ff 100%);
  box-shadow:
    0 0 12px rgba(255, 204, 0, 0.6),
    0 0 24px rgba(55, 164, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.logo-text-main {
/*  font-family: "Rajdhani", system-ui, sans-serif;*/
	font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";

  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 16px;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding-bottom: 3px;
  color: #262b3a;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* ---- BUTTON ---- */

.button {
  padding: 8px 18px;
  border-radius: 5px;
  border: 1px solid rgba(15, 20, 40, 0.12);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.2), rgba(255, 255, 255, 0.9));
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, background 0.12s ease;
  color: #262b3a;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 20, 40, 0.22);
  box-shadow: 0 4px 12px rgba(15, 20, 40, 0.18);
  background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.26), #ffffff);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #ffcc00, #ff7a18);
  color: #101010;
  box-shadow:
    0 0 12px rgba(255, 204, 0, 0.4),
    0 0 26px rgba(55, 164, 255, 0.35);
}

.button-primary:hover {
  box-shadow:
    0 0 18px rgba(255, 204, 0, 0.7),
    0 0 32px rgba(55, 164, 255, 0.45);
  transform: translateY(-1px) scale(1.01);
}

/* ---- SECTION BASE ---- */

section {
  padding: 32px 0;
}

.section-header {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #181b24;
}

.section-subtitle {
  font-size: 12px;
  color: var(--muted);
}

/* セクション見出し：スマホでは1列（縦並び）にする */
@media (max-width: 640px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start; /* baselineだとズレるので左揃え */
    gap: 6px;
  }
}

/* ---- SHOPS (店舗一覧共通パーツ) ---- */

.shop-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.shop-card {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(255, 204, 0, 0.12), transparent 65%),
    var(--bg-soft);
  border: 1px solid var(--card-border);
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, background 0.12s ease;
  box-shadow: 0 6px 14px rgba(20, 25, 50, 0.04);
}

.shop-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 25, 50, 0.18);
  box-shadow: 0 10px 20px rgba(20, 25, 50, 0.12);
  background:
    radial-gradient(circle at top, rgba(255, 204, 0, 0.18), transparent 70%),
    #ffffff;
}

.shop-badge {
  font-size: 11px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-name {
  font-family: "Rajdhani", system-ui, sans-serif;
	font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  /* text-transform: uppercase; ← これを削除 */
  text-transform: none;     /* ← 明示的に解除（保険） */
  color: #181b24;
  line-height: 1.2;
}

.shop-meta {
  font-size: 11px;
  color: var(--muted);
}

.shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.shop-tag {
  font-size: 10px;
  border-radius: 999px;
  border: 1px solid rgba(20, 25, 50, 0.08);
  padding: 2px 8px;
  color: var(--muted);
  background: rgba(248, 249, 255, 0.9);
}

/* ---- NEWS (お知らせ共通) ---- */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-item {
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.12s ease, border-color 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 4px 8px rgba(15, 20, 40, 0.03);

  /* ★ ここを追加 ★ */
  font-size: 12px;
  color: var(--muted);
}

.news-body,
.news-item p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.news-item:hover {
  background: #ffffff;
  border-color: rgba(20, 25, 50, 0.14);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 20, 40, 0.12);
}

.news-meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
}

.news-title {
  font-size: 13px;
  font-weight: 600;
  color: #262b3a;
}

/* ---- CONTACT 共通レイアウト ---- */

.contact-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

.contact-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  background:
    radial-gradient(circle at top left, rgba(255, 204, 0, 0.2), transparent 60%),
    #ffffff;
  padding: 16px 16px 18px;
  font-size: 13px;
  color: var(--muted);
  box-shadow: 0 10px 20px rgba(15, 20, 40, 0.08);
}

.contact-panel strong {
  color: #23273a;
}

/* フォーム要素（全ページ共通で使えるように） */

form {
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  background: #ffffff;
  padding: 16px 16px 18px;
  box-shadow: 0 10px 20px rgba(15, 20, 40, 0.08);
}

.form-row {
  margin-bottom: 10px;
}

label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: #4b5060;
}

input,
textarea,
select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(15, 20, 40, 0.12);
  background: #f9f9ff;
  color: #12121a;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px rgba(55, 164, 255, 0.3);
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.form-submit {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

/* ---- FOOTER ---- */

footer {
  padding: 20px 0 26px;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid rgba(15, 20, 40, 0.06);
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.96);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-color: rgba(15, 20, 40, 0.2);
  text-underline-offset: 2px;
  color: #555a6c;
}

/* =========================
   BREADCRUMB（共通）
   ========================= */

.breadcrumb {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
  padding-top:5px;
  margin-bottom: 0px;
}

.breadcrumb a {
  text-decoration: underline;
  text-decoration-color: rgba(15, 20, 40, 0.2);
  text-underline-offset: 2px;
}

.ichiran {padding-top:12px;font-size:11px;margin:0 auto;text-align:center;}
.ichiran a{border-bottom:1px solid #666;padding-bottom:3px;}
.ichiran a:hover {
	border-color:#0000ee;
	color:#0000ee;
}

/* form */
.comment{}
p.error_messe{color:#ff0000;}

/* 問い合わせボタン */
.btn-gradient-simple {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
  color: #FFF;
  background-image: linear-gradient(45deg, #709dff 0%, #b0c9ff 100%);
  transition: .4s;
}

.btn-gradient-simple:hover {
  background-image: linear-gradient(45deg, #709dff 50%, #b0c9ff 100%);
}
