@charset "UTF-8";
/* ===============================
   Reset & Base Styles
   =============================== */
/* ボックスサイズ統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* マージン・パディングリセット */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
  color: #615F5D;
}

/* リストマーカー削除 */
ul,
ol {
  list-style: none;
}

/* リンクの基本スタイル */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
  transition: opacity 0.3s;
}

/* 画像レスポンシブ */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム要素のフォント継承 */
input,
button,
textarea,
select {
  font: inherit;
}

/* ===============================
   Base Fonts & Colors
   =============================== */
html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: "dnp-shuei-nmincho-std", "Gilda Display", serif;
  font-size: 14px;
  line-height: 1.6;
  color: #615F5D;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 見出しは太字で明朝体を使い、ウェイト高め */
h1,
h2,
h3,
h4 {
  color: #615F5D;
  font-weight: 700;
  line-height: 1.3;
  font-family: dnp-shuei-nmincho-std, sans-serif;
}

br.sp {
  display: none;
}

/* ===============================
   Responsive
   =============================== */
@media screen and (max-width: 768px) {
  br.sp {
    display: block;
  }
}
