@charset "UTF-8";

/* 共通部分 */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

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


html {
  font-size: 100%;
}
body {
  font-family:'Yu Gothic Medium', '游ゴシック Medium','Yu Gothic','游ゴシック体','ヒラギノ角ゴ Pro W3', sans-serif;
  line-height: 1.7;
  color: #432;
  background-color:white;
}

img {
  max-width: 100%;
}

