@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Poppins:ital,wght@0,300;0,500;0,700;0,900;1,100&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor:default;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  color: #282a2c;
  list-style: none;
}
body{
  width: 100%;
  background-color: #DDDCDB;
}
h1,h2,h3,h4,h5,a{
  color: unset;
  font-size: unset;
  font-weight: unset;
}
a{
  cursor: pointer;
}
.will{
  will-change: transform, opacity, width;
}

.text-color-orange{
  color: #FF640C;
  margin: 0 0.1em;
}

#shutter-text{
  position: fixed;
  color: rgb(199, 199, 199);
  font-weight: 100;
  font-size: 1em;
  letter-spacing: 0.3em;
  transform: translate(-50%,-50%);

  left: 50vw;
  top: 50vh;
  z-index: 101;
}
#shutter{
  position: fixed;
  left: 0;
  top: 0;

  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #a1a3a647;
}
#shutter-inner{
  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 100%;
  background-color: #282a2c;
}

.page{
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;

  width: 100%;
  height: auto;
}
.content{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.content-item{
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 0;
}

.data-property{
  font-weight: 500;
  font-size: 0.8em;
  color: #282a2ca9;
}
.data{
  margin-bottom: 0.5em;
}

@media screen and (max-width:800px) {
  *{
    font-size: 12px;
  }
}