@charset "UTF-8";
*{
  box-sizing: border-box;
  margin : 0;
  padding: 0;
}
html{
  width : 100%;
  height: 100%;
  font-size: 62.5%;
  font-feature-settings: "palt";
  font-family : sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body{
  width : 100%;
  height: 100%;
  color : #ffffff;
  background-color : rgba(24, 24, 24, 1);
}
a{
  text-decoration: none;
  color : inherit;
}
a:hover{
  filter:alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.nowrap{
  white-space: nowrap;
}
img{
  max-width: 100%;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}
li{
  list-style-type : none;
}
h1{
  width : 100%;
  height: 100%;
  display:flex;
  align-items: center;
}
#wrap{
  width : 100%;
  height: 100%;
  max-width: 60rem;
  margin: 0 auto;
}
.inner{
  margin : auto;
  padding: 0 1rem;
  width : 100%;
  height: 100%;
  max-width: 60rem;
}
section .inner{
  padding: 2rem 1rem 0;
  display:flex;
  flex-wrap:wrap;
  gap : 1.5rem;
}