@charset "UTF-8";
body {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
}
body h1,
body h2,
body h3,
body p {
  margin: 0;
}

header .logo {
  height: 70px;
}
header .logo img {
  display: block;
  max-width: 300px;
  margin: 10px auto 0;
}
header .hero_section {
  position: relative;
}
header .hero_section .hero_image_mb {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
header .hero_section .hero_image {
  display: none;
  width: 100%;
}
header .hero_section .hero_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: #333;
}
header .hero_section .hero_content .sub {
  font-size: 12px;
  margin-top: 15px;
}
header .hero_section .hero_content .lead {
  margin-top: 10px;
  font-size: 14px;
}
header .hero_section .hero_content h1 {
  margin-top: 12px;
  font-size: 20px;
  line-height: 25px;
  font-weight: 900;
  background-color: #fff;
  padding: 5px;
}
header .hero_section .price {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 150px;
}
header .intro {
  background-color: #2F4B71;
  color: #fff;
  padding: 30px 10px;
  text-align: center;
}
header .intro h2 {
  margin-bottom: 10px;
}
header .intro p {
  font-size: 15px;
  line-height: 25px;
}

.seminar_topics {
  margin: 50px auto;
}
.seminar_topics h2 {
  text-align: center;
  margin-bottom: 50px;
}
.seminar_topics .topics_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.seminar_topics .topics_wrapper .topic-item {
  width: 300px;
  height: 300px;
  margin: 15px;
  box-shadow: 2px 2px 2px 0px #e2e2e2;
}
.seminar_topics .topics_wrapper .topic-item h3 {
  height: 50px;
  font-size: 16px;
  text-align: center;
  margin: 20px auto;
  color: #632727;
}
.seminar_topics .topics_wrapper .topic-item img {
  display: block;
  max-width: 250px;
  margin: auto;
}

.recommend {
  background-color: #EDF2FA;
  padding: 50px 0;
}
.recommend h2 {
  text-align: center;
}
.recommend .recommend_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.recommend .recommend_wrapper .recommend_item {
  width: 290px;
  height: 290px;
  background-color: #fff;
  border-radius: 50%;
  margin: 25px;
}
.recommend .recommend_wrapper .recommend_item p {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  padding-top: 90px;
}
.recommend .recommend_note {
  text-align: center;
  width: 95%;
  margin: auto;
  font-size: 18px;
  font-weight: 700;
}

.overview_list {
  margin: 50px auto;
}
.overview_list h2 {
  text-align: center;
  margin-bottom: 50px;
}
.overview_list table {
  margin: auto;
}
.overview_list table tr th {
  width: 120px;
  background-color: #2F4B71;
  color: #fff;
  padding: 20px 0;
}
.overview_list table tr td {
  padding-left: 15px;
}
.overview_list table tr td .proviso {
  font-size: 13px;
}
.overview_list table tr td a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.overview_list table tr td a .apply {
  background-color: yellow;
  border: 3px solid red;
}

.closing h2 {
  text-align: center;
  margin-bottom: 300px;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 200px;
  background-color: #333;
  color: #fff;
}
footer p {
  text-align: center;
}
footer .sticky-inner .sticky-copy {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding-top: 5px;
}
footer .sticky-inner .footer_apply {
  text-align: center;
}
footer .sticky-inner .footer_apply p {
  margin: 5px auto;
  font-size: 13px;
}
footer .sticky-inner .footer_apply a {
  text-decoration: none;
  color: #fff;
  margin: 5px auto;
}
footer .sticky-inner .footer_apply a .apply {
  color: #333;
  font-weight: 700;
  background-color: rgb(255, 255, 58);
  border: 2px solid rgb(212, 52, 52);
}
footer .copyright {
  font-size: 12px;
  padding-top: 5px;
}

/* ==============================
   PC対応（スマホファースト）
   ============================== */
@media (min-width: 500px) {
  header .hero_content .sub {
    font-size: 15px;
    margin-top: 30px;
  }
  header .hero_content .lead {
    font-size: 25px;
    margin-top: 15px;
  }
  header .hero_content h1 {
    font-size: 40px;
    line-height: 45px;
    padding: 8px;
  }
  .sticky-copy {
    font-size: 20px !important;
  }
  .footer_apply p {
    margin: 10px auto;
    font-size: 18px !important;
  }
  .footer_apply .pc_none {
    display: none;
  }
}
@media (min-width: 728px) {
  header .hero_section .hero_image_mb {
    display: none;
  }
  header .hero_section .hero_image {
    display: block;
  }
  header .hero_section .hero_content {
    text-align: right;
  }
  header .hero_section .hero_content .sub {
    font-size: 1em;
  }
  header .hero_section .hero_content .lead {
    font-size: 15px;
  }
  header .hero_section .hero_content h1 {
    position: absolute;
    right: 0;
    width: 400px;
    font-size: 33px;
    line-height: 50px;
  }
  header .hero_section .price {
    bottom: -120px;
  }
  header .intro h2 {
    max-width: 66%;
    margin: auto;
  }
}
@media (min-width: 1250px) {
  header .hero_section .hero_content .sub {
    font-weight: 700;
    font-size: 1.5em;
  }
  header .hero_section .hero_content .lead {
    font-weight: 700;
    font-size: 20px;
  }
  header .hero_section .hero_content h1 {
    width: 50vw;
    height: 9vw;
    font-size: 4vw;
    line-height: 4.3vw;
  }
  header .hero_section .price {
    bottom: 0;
    right: 15vw;
    width: 15vw;
  }
  header .hero_section .intro h2 {
    max-width: none;
  }
}/*# sourceMappingURL=style.css.map */