@charset "shift-jis";
/* --------------------------------------------------------------------
  Financial Academy

  Style Info: /school/review/ setting
-------------------------------------------------------------------- */
* { box-sizing: border-box;}

/* ------------------------------
display
------------------------------ */
.pc {
  display: inherit;
}
.tab {
  display: none;
}
.sp {
  display: none;
}
.sp_tab {
  display: none;
}
@media screen and (min-width: 600px) {
  .tab_pc {
    display: inherit;
  }
}
@media screen and (max-width: 999px) {
  .pc {
    display: none;
  }
  .tab {
    display: inherit;
  }
  .sp {
    display: none;
  }
  .sp_tab {
    display: inherit;
  }
}
@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
  .tab {
    display: none ;
  }
  .sp {
    display: inherit;
  }
  .tab_pc {
    display: none;
  }
}

/* ------------------------------
inner
------------------------------ */
.inner {
  width: 92%;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0;
}

/* ------------------------------
buttom
------------------------------ */
/* btn_01 */
.btn_01 {
  display: block;
  position: relative;
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  padding: 1.2em 30px 1.2em 1em;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.btn_01::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: '';
}
.btn_01:hover {
  opacity: 0.7;
  text-decoration: none;
}
.btn_01.blue {
  background-color: #2085ea;
}
.btn_01.orange {
  background-color: #ea5520;
}

/* btn_fixed */
.fixed_btn_area {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 0 70px 0 10px;
  background: rgba(0,0,0,.3);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: all .3s;
}
.btn_fixed {
  display: block;
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 1em 25px 1em 1em;
  border: 1px solid #fff;
  border-radius: 9999px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
}
.btn_fixed::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}
.btn_fixed:hover {
  opacity: 0.7;
  text-decoration: none;
}
.btn_fixed.kabu {
  background-color: #5e76a7;
}
.btn_fixed.mf {
  background-color: #8a9f55;
}
.btn_fixed.fudo {
  background-color: #44a1c5;
}

/* ------------------------------
pagination
------------------------------ */
.wrap_pagination {
  text-align: center;
}
.pagination {
  display: inline-flex;
  margin: 50px auto 0;
}
.pagination li {
  background: #fff;
  border: 1px solid #1c2569;
  border-radius: 5px;
}
.pagination li + li {
  margin-left: 15px;
}
.pagination li > a,
.pagination li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  font-family: "din-2014", sans-serif;
  font-size: 16px;
}
.pagination li > span.current {
  background: #1c2569;
  color: #fff;
}
.pagination li > a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.pagination .ico_prev_arrow,
.pagination .ico_next_arrow {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
}
.pagination .ico_prev_arrow {
  left: 40%;
  border-left: 1px solid #1c2569;
  border-bottom: 1px solid #1c2569;
}
.pagination .ico_next_arrow {
  right: 40%;
  border-top: 1px solid #1c2569;
  border-right: 1px solid #1c2569;
}
@media screen and (max-width: 599px) {
  .pagination {
    margin-top: 30px;
  }
  .pagination li + li {
    margin-left: 5px;
  }
  .pagination li > a,
  .pagination li > span {
    width: 32px;
    height: 32px;
  }
}

/* ------------------------------
cta_area
------------------------------ */
.cta_area {
  margin-top: 70px;
  padding: 35px 5%;
  background: #fff;
  border: 1px solid;
  border-radius: 22px;
}
.cta_area h2 {
  margin-bottom: 0.5em;
  font-size: 25px;
}
.cta_area p {
  font-size: 14px;
}
.cta_area .btn_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  column-gap: 30px;
  row-gap: 20px;
  margin-top: 20px;
}
.cta_area.kabu {
  border-color: #5e76a7;
}
.cta_area.kabu h2 {
  color: #5e76a7;
}
.cta_area.mf {
  border-color: #8a9f55;
}
.cta_area.mf h2 {
  color: #8a9f55;
}
.cta_area.fudo {
  border-color: #44a1c5;
}
.cta_area.fudo h2 {
  color: #44a1c5;
}
@media screen and (max-width: 599px) {
  .cta_area {
    margin-top: 50px;
    padding: 25px 6%;
  }
  .cta_area h2 {
    font-size: 20px;
  }
}
