/* =========================================================
   reset.css — 変数定義 / 最小リセット / ベーススタイル
   ========================================================= */
:root{
  --navy:      #1B2A4A;
  --red:       #C03A4A;
  --brown:     #3D2315;
  /*--beige:     #F2EEE3;*/
  --beige:     #f5f2e9;
  --teal:      #4DB8A0;
  --pink:      #EF9EA0;
  --orange:    #E8943A;
  --lightblue: #7BB8D4;
  --text-dark: #333333;
  --text-mid:  #666666;

  --font-jp: 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  --font-en: 'DIN Next', 'Avenir Next', var(--font-jp);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ font-size:16px; }
body{
  font-family:var(--font-jp);
  font-weight:600;
  color:var(--text-dark);
  background:#fff;
  /* ヘッダー背景をブラウザ幅100%にするため body は全幅 / 本文は .container で1280px中央寄せ */
  width:100%;
  /*min-width:1280px;*/
  margin:0;
  overflow-x:hidden;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-size-adjust:100%;
}
.container{
/*width:1280px;*/
/*margin:0 auto;*/
}
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; height:auto; border:0; }
ul,ol{ list-style:none; }
