@import url("normalize.css");
html, body{
  padding:0;
  margin:0;
}
*, *::before, *::after{
  box-sizing: border-box;
}
html{
  line-height: 2.1;
  font-size: 15px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  letter-spacing: 0.05em;
}
body{
  background-color: #0F2350;
  color: #000000;
}
ul{
  list-style: none;
  margin:0;
}
li{
  list-style-type: none;
}
p{
  margin: 0;
}
a{
  text-decoration: none;
}
.sp{
  display: none !important;
}
.sp_flex{
  display: none !important;
}
.pc{
  display: inline-block !important;
}
.pc2{
  display: block !important;
}
.pc_flex{
  display: flex;
}


/********** ここからスマホ **********/
@media only screen and (max-width:599px){
  .pc{
    display: none !important;
  }
  .pc2{
    display: none !important;
  }
  .pc_flex{
    display: none !important;
  }
  .sp{
    display: inline-block !important;
  }
  .sp_flex{
    display: flex !important;
  }
  .sp_img{
    width: 100%;
  }
  main .title-en{
    font-size: 13px;
  }
}