html{
  font-size: 62.5%;
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
body{
  font-family: "oswald","kozuka-gothic-pro",sans-serif;
  font-feature-settings: "palt";
  color: #171616;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1;
  /* oswald 600~700 */
  /* kozuka 400 500 700 */
}
@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: 100%;
  height: auto;
}
a{
  text-decoration: none;
  color: #353434;
}
a:hover{
  /* opacity: 0.5; */
}
li{
  list-style-type: none;
}

figure{
  font-size: 0;
}
figcaption{
  font-size: 1.3rem;
  padding: 0 3%;
  text-align: right;

}

/* ------------------------------------------------------- */

     /* 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;
}
