html{
  font-size: 62.5%;
}
body{
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt";
  color: #171616;
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width:959px){
  body{
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
*,*::after,*::before{
  box-sizing:border-box;
}
main{
  display: block;

  overflow: hidden;
}
img{
  max-width: 95%;
  height: auto;
}
a{
  text-decoration: none;
  color: #navy;
}
a:hover{
  opacity: 0.5;
}
li{
  list-style-type: none;
}

table{

}

/* ------------------------------------------------------- */

     /* form要素の初期設定 */

/* ------------------------------------------------------- */
input, select, textarea,button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* IEのselect要素の右側に表示される矢印を無効にするためのCSS */
select::-ms-expand{
  display: none;
}

input:focus,
select:focus,
textarea:focus{
  outline:0;
}
