@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Varela+Round");
/* メイン */
html, html body {
  width: 100%;
  height: 100%;
  margin: 0;
}
html body {
  font-family: "Varela Round", sans-serif;
}

.main {
  position: absolute;
  margin-top: 60px;
  width: 100%;
  height: 100%;
  background-color: rgb(245, 245, 245);
  margin: 0;
}
.main .MainContent {
  border-radius: 10px;
  background-color: white;
  height: calc(100% - 20px);
  margin-top: 10px;
}
.main .MainContent .Title {
  margin: 0;
  width: 100%;
  text-align: center;
}
.main .MainContent .ContentAd .ContentAd1 {
  position: absolute;
  margin-left: 10px;
  height: 60px;
  width: 468px;
}
.main .pages {
  position: absolute;
  border-radius: 10px;
  background-color: white;
  left: 20px;
  margin-top: 50px;
  width: 160px;
}
.main .pages p {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  border-bottom: 1px solid;
}
.main .pages .pageList {
  margin: 0;
  padding: 0;
}
.main .pages .pageList li {
  list-style: none;
  width: 100%;
  cursor: pointer;
}
.main .pages .pageList li a {
  color: black;
  font-weight: bold;
  text-decoration: none;
  margin: 5px;
  position: relative;
  display: inline-block;
}
.main .pages .pageList li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: rgb(49, 170, 226);
  transition: width 0.3s;
}
.main .pages .pageList li:hover a::after {
  width: 100%;
}
.main #koukoku #migi {
  position: absolute;
  display: block;
  width: 160px;
  height: 600px;
  right: 10px;
  margin-top: 10px;
}

@media screen and (min-width: 1100px) {
  .MainContent {
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    min-width: 600px;
    width: 60%;
  }
  .MainContent .Title {
    font-size: 6vw;
  }
  .pages {
    display: block;
  }
  .main #koukoku #migi {
    display: block;
  }
}
@media screen and (max-width: 1099px) {
  .MainContent {
    width: calc(100% - 20px - 160px - 20px);
    margin-left: 10px;
  }
  .MainContent .Title {
    font-size: 6vw;
  }
  .pages {
    display: none;
  }
  .main #koukoku #migi {
    display: block;
  }
}
@media screen and (max-width: 840px) {
  .MainContent {
    width: calc(100% - 20px - 160px - 20px);
  }
  .MainContent .Title {
    font-size: 6vw;
  }
  .pages {
    display: none;
  }
  .main #koukoku #migi {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .MainContent {
    width: calc(100% - 20px);
  }
  .MainContent .Title {
    font-size: 50.4px;
  }
  .pages {
    display: none;
  }
  .main #koukoku #migi {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .ContentAd .ContentAd1 {
    display: none;
  }
}
/* メイン *//*# sourceMappingURL=main.css.map */