/* ホバー */
a {
    text-decoration: none;
    color: inherit;
}

body {
    background: #111;
    color: #fff;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 750px;
}

@media screen and (min-width:751px) {
  html {
      font-size: 16px;
  }
  body {
	  width: 100%;
  }
  #wpadminbar {
	  display: block;
  }
}

*,
*::before,
*::after {
-webkit-box-sizing: border-box;
        box-sizing: border-box;
}

/* Remove default padding */
    ul,
    ol {
    padding: 0;
}

  /* Remove default margin */
  body,
  h1,
  h2,
  h3,
  h4,
  p,
  ul,
  ol,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }
  
  /* Set core root defaults */
  html {
    scroll-behavior: smooth;
  }
  
  /* Set core body defaults */
  body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
  }
  
  /* Remove list styles on ul, ol elements with a class attribute */
  ul,
  ol {
    list-style: none;
  }
  
  /* A elements that don't have a class get default styles */
  a:not([class]) {
    text-decoration-skip-ink: auto;
  }
  
  /* Make images easier to work with */
  img {
    max-width: 100%;
    display: block;
    width: 100%;
  }
  
  /* Natural flow and rhythm in articles by default */
  article > * + * {
    margin-top: 1em;
  }
  
  /* Inherit fonts for inputs and buttons */
  input,
  button,
  textarea,
  select {
    font: inherit;
  }
  
  /* Blur images when they have no alt attribute */
  img:not([alt]) {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  
  /* フォームリセット */
  input,
  button,
  select,
  textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
  }
  
  textarea {
    resize: vertical;
  }
  
  input[type=checkbox],
  input[type=radio] {
    display: none;
  }
  
  input[type=submit],
  input[type=button],
  label,
  button,
  select {
    cursor: pointer;
  }
  
  select::-ms-expand {
    display: none;
  }
