﻿@charset "utf-8";
/* PC向け*/
body {
  margin: 0 auto;
  min-width: 1000px;
  background-color: #fbf7f2d1;
}
ul, li {
  list-style: none;
}
a{
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #333333;
  text-decoration: none;
  transition: .3s;
  outline: none;
}
a:visited {
  color: #333333;
  text-decoration: none;
}


/* タブレット向け：～1280px */
@media screen and (max-width: 1280px) {


}

/* スマホ向け：961px～ */
@media only screen and (max-width: 768px) {
    body {
    min-width:auto;
  }
}

