@charset "UTF-8";
/* media query */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@1,700&display=swap");
/* fontsize用 */
.system .bg_img {
  background: url(../images/01.jpg) no-repeat;
  width: 100%;
  height: 400px;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
@media all and (max-width: 768px) {
  .system .bg_img {
    background-size: 1000px;
  }
}
@media all and (max-width: 640px) {
  .system .bg_img {
    height: 300px;
    background-position: center right 70%;
    background-size: 800px;
    background-attachment: scroll;
  }
}
@media all and (max-width: 320px) {
  .system .bg_img {
    height: 250px;
  }
}
@media (orientation: landscape) and (min-width: 900px) and (max-width: 1024px) {
  .system .bg_img {
    height: 300px;
    background-position: center right 70%;
    background-size: cover;
    background-attachment: scroll;
  }
}
@media (orientation: landscape) and (min-width: 568px) and (max-width: 899px) {
  .system .bg_img {
    height: 200px;
    background-position: center right 70%;
    background-size: cover;
    background-attachment: scroll;
  }
}
.system h2 {
  padding-top: 80px;
}
@media all and (max-width: 640px) {
  .system h2 {
    padding-top: 40px;
  }
}
.system h2 + p {
  margin: 50px 0;
  text-align: center;
}
@media all and (max-width: 640px) {
  .system h2 + p {
    text-align: left;
  }
}
@media (orientation: landscape) and (min-width: 568px) and (max-width: 1024px) {
  .system h2 + p {
    text-align: left;
  }
  .system h2 + p br.pc {
    display: none;
  }
}
.system h3 {
  margin-top: 50px;
  border-bottom: 1px solid #ccc;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.6;
}
@media all and (max-width: 640px) {
  .system h3 {
    margin-top: 25px;
  }
}
.system h3 + p {
  margin: 20px 0;
  text-align: left;
}
.system p.notice {
  max-width: 1100px;
  margin: auto;
  padding-left: 10px;
  font-size: 10px;
  font-size: 1rem;
}
@media all and (max-width: 640px) {
  .system p.notice {
    padding-left: 0;
    font-size: 8px;
    font-size: 0.8rem;
  }
}
.system p.image {
  text-align: center;
}
.system p.image img {
  max-width: 1100px;
}
@media all and (max-width: 640px) {
  .system p.image {
    white-space: nowrap;
    overflow: auto;
    margin-bottom: 10px;
  }
  .system p.image img {
    width: auto;
    max-width: 800px;
  }
}