@import "header.css";
@import "section00.css";
@import "section02.css";
@import "section03.css";
@import "section04.css";
@import "footer.css";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  overflow-x: hidden;
  overflow-y: scroll;
  background: url("../img/section02_background.png") fixed  center no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -webkit-background-image: url("../img/section02_background.png");
  /*-webkit-background: url("../img/section02_background.png") fixed  center no-repeat;*/
  /*background: #2ea8ee;*/
}
section {
  width: 100vw;
  display: flex;
  height: calc(100vh - 100px);
  justify-content: center;
  background: center / contain  url("../img/background.png");
  /*background-size: contain;*/
  -webkit-background-image: url("../img/background.png");
  -webkit-background-size: contain;
}
a {
  text-decoration: none;
  color: inherit;
}
/*section:nth-child(odd) {*/
/*  background: #fa6c98;*/
/*}*/
/*section:nth-child(even) {*/
/*  background: #79edfc;*/
/*}*/
