html {
  width: 100%;
  margin: 0 auto;
  font-size: 0.6666666667vw;
  color: #333333;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  html {
    min-width: 100%;
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: Noto Sans JP, sans-serif, serif;
  position: relative;
  font-weight: 500;
  width: 100%;
}
body > * {
  box-sizing: border-box;
}
body.fixed {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  opacity: 0.8;
  text-decoration: none;
}

img {
  height: auto;
}

article {
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

header {
  padding: 2rem 0;
  border-bottom: 1px solid #dcdcdc;
}

.header__inr {
  position: relative;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (min-width: 769px) {
  .header__inr {
    width: 80%;
    max-width: 1200px;
  }
}
.header__inr .logo {
  position: absolute;
  top: 0;
  left: 2rem;
  width: 11rem;
  margin-right: auto;
}
.header__inr .p-title {
  margin-right: auto;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}

footer {
  padding: 4rem 0 4rem;
  border-top: 1px solid #dcdcdc;
}

.footer__inr {
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (min-width: 769px) {
  .footer__inr {
    width: 80%;
    max-width: 1200px;
  }
}

.copyright {
  text-align: right;
}

.is-disabled {
  pointer-events: none;
}

.result_cont {
  position: relative;
  padding: 10rem 2rem;
}
@media screen and (max-width: 768px) {
  .result_cont {
    padding: 10rem 4rem 14rem;
  }
}
.result_cont + .result_cont::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 67.5%;
  max-width: 1100px;
  height: 1px;
  margin: auto;
  border-top: 1px dashed rgb(119, 119, 119);
}
@media screen and (max-width: 768px) {
  .result_cont + .result_cont::before {
    width: 89.335%;
  }
}
.result_cont__title {
  margin-bottom: 4rem;
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .result_cont__title {
    margin-bottom: 4rem;
    text-align: left;
    font-size: 4rem;
  }
}
.result_cont__period {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .result_cont__period {
    font-size: 3rem;
  }
}
.result_cont__program {
  padding-top: 2rem;
  text-align: center;
}
.result_cont__program__btn {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .result_cont__program__btn {
    width: 100%;
  }
}
.result_cont__program__btn a {
  display: block;
  text-align: center;
  padding: 1.4rem 8rem;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #dcdcdc;
  border-radius: 0.6rem;
}
@media screen and (max-width: 768px) {
  .result_cont__program__btn a {
    padding: 3rem 0;
    font-size: 3rem;
  }
}
.result_cont .ico--pdf {
  position: relative;
}
.result_cont .ico--pdf::after {
  content: "";
  width: 2.6rem;
  height: 2rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(-50%, -50%);
  background-image: url(../images/icon_pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .result_cont .ico--pdf::after {
    width: 3.6rem;
    height: 3rem;
  }
}
.result_cont__sec {
  width: 80%;
  max-width: 900px;
  margin: 5rem auto 0;
}
@media screen and (min-width: 769px) {
  .result_cont__sec {
    width: 70%;
    margin-top: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .result_cont__sec {
    width: 100%;
    margin-top: 8rem;
  }
}
.result_cont__sec__title {
  padding-bottom: 1rem;
  text-align: center;
  font-size: 2rem;
  border-bottom: 1px solid #dcdcdc;
}
@media screen and (max-width: 768px) {
  .result_cont__sec__title {
    font-size: 3.2rem;
  }
}
.result_cont__sec__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 0 0;
}
.result_cont__sec__list::after {
  content: "";
  display: block;
  width: 31.25%;
}
@media screen and (max-width: 768px) {
  .result_cont__sec__list::after {
    width: 47.619047619%;
  }
}
.result_cont__sec__list > li {
  width: 31.25%;
}
@media screen and (max-width: 768px) {
  .result_cont__sec__list > li {
    width: 47.619047619%;
  }
}
.result_cont__sec__list > li:nth-of-type(n+4) {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .result_cont__sec__list > li:nth-of-type(n+4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .result_cont__sec__list > li:nth-of-type(n+3) {
    margin-top: 2.4rem;
  }
}
.result_cont__sec__list > li a {
  display: block;
  padding: 2rem 0;
  text-align: center;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
}
@media screen and (max-width: 768px) {
  .result_cont__sec__list > li a {
    padding: 2.4rem 0;
    font-size: 2.4rem;
  }
}
.result_cont__sec__list > li a.is-disabled {
  text-decoration: none;
}

.no_posts {
  text-align: center;
  font-size: 1.8rem;
  padding: 10rem 0 20rem;
}
@media screen and (max-width: 768px) {
  .no_posts {
    font-size: 3rem;
    padding-bottom: 50rem;
  }
}/*# sourceMappingURL=style.css.map */