:root{
  --bg1:#f6e9e3;
  --bg2:#fdf6f2;
  --text:#4b3f3a;
  --muted:#7a5c52;
  --muted2:#9c8a84;
  --accent:#d7a7a0;
  --accent2:#c98f87;

  /* 角丸を基本オフ（“四角の頃”に寄せる） */
  --radius: 0px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: "Georgia", serif;
  background: linear-gradient(var(--bg1), var(--bg2));
  color: var(--text);
  text-align:center;
}

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

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px 60px;
}

/* Header */
header{
  padding: 60px 0 20px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:44px;
  height:44px;
  border-radius: 0; /* 四角 */
  background: rgba(215,167,160,.25);
  display:grid;
  place-items:center;
  overflow:hidden;
}

.logo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.brand-title{
  text-align:left;
  line-height:1.1;
}

.brand-title .jp{
  font-weight:700;
  letter-spacing:1px;
  font-size: 18px;
}

.brand-title .en{
  color: var(--muted2);
  font-size: 12px;
  letter-spacing:.4px;
  margin-top:2px;
}

/* Nav */
nav{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap:wrap;
}

.navlink{
  display:inline-block;
  padding: 10px 14px;
  border: 1px solid rgba(80,60,55,.18);
  background: rgba(255,255,255,.55);
  border-radius: 0; /* 四角 */
  color: var(--muted);
  transition: .2s ease;
  font-size: 14px;
}

.navlink:hover{
  background: rgba(255,255,255,.80);
  color: var(--text);
}

/* Hero（いまのHTML構造に合わせて“中央1カラムっぽく”見せる） */
.hero{
  display:block;
  margin-top: 10px;
}

.panel{
  background: transparent;   /* パネル感を消して紙っぽく */
  border: none;
  border-radius: var(--radius);
  box-shadow: none;
}

.hero-text{
  padding: 0;
}

.kicker{
  display:inline-block;
  font-size: 14px;
  letter-spacing: .6px;
  color: var(--muted);
  margin-bottom: 14px;
}

.dot{ display:none; } /* ドット飾りは消す（好みで戻せる） */

h1{
  font-size: 42px;
  margin: 0 0 10px;
  letter-spacing: 1px;
}

.lead{
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

/* ミラル画像枠：不要なら非表示でOK */
.hero-art{ display:none; }

/* CTAボタン（ここだけ丸い“当時の感じ”） */
.cta-row{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 10px;
}

.btn{
  display:inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 30px; /* ボタンだけ丸い */
  font-size: 18px;
  transition: .3s;
  border: none;
}

.btn:hover{
  background: var(--accent2);
}

.btn.primary{ /* primaryも同じ見た目でOK */
  background: var(--accent);
}

.top-hero{
  border-radius: 18px;
  overflow: hidden;
  margin-top: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.top-hero img{
  width:100%;
  height:auto;
  display:block;
}

/* ページ共通：本文は表示 */
.section{ display:block; }
.grid{ display:grid; }

/* トップだけ：カード群や更新メモを隠す（MVPでシンプル運用） */
.home .grid{ display:none; }
.home .section{ display:none; }

/* Footer */
footer{
  margin-top: 80px;
  padding: 20px 0;
  font-size: 14px;
  color: var(--muted2);
}
