@charset "UTF-8";
/*==========================
    - 〜479px      ：SP portrait
    - 480px〜599px ：SP landscape
    - 600px〜959px ：tablet
    - 960px〜1279px：small PC
    - 1280px〜     ：large PC
    - 1400px〜     ：largest PC
==========================*/
html, body {
  line-height: 2em;
  letter-spacing: 0.02em; }

.p_flex {
  display: flex; }
  .p_flex.a_reverse {
    flex-direction: row-reverse; }
  .p_flex.a_center {
    justify-content: center; }
  .p_flex .p_flex_col {
    box-sizing: border-box; }
  .p_flex.a_col_2 .p_flex_col {
    width: 50%;
    padding: 0 5px; }
  .p_flex.a_nogap .p_flex_col {
    padding: 0; }
  .p_flex.a_col_1to2, .p_flex.a_col_2to1, .p_flex.a_col_2to3 {
    flex-wrap: wrap; }
  .p_flex.a_col_1to2 .p_flex_col {
    width: 100%; }
  .p_flex.a_col_2to1 .p_flex_col {
    width: 50%; }
  .p_flex.a_col_2to3 .p_flex_col {
    width: 50%; }
    .p_flex.a_col_2to3 .p_flex_col.a_wide {
      width: 100%; }

.banner {
  width: 224px;
  text-align: center;
  margin: 0 auto; }
  .banner.a_wide {
    width: 83.46666666666667%;
    max-width: 313px; }
  .banner .btn {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    padding: 0.8em 0;
    background-color: #b73f91;
    transition: all 0.2s ease; }
    .banner .btn:hover {
      background-color: #b83778; }
  .banner.green .btn {
    color: #fff;
    background-color: #f39800; }
    .banner.green .btn:hover {
      background-color: #d07900; }
  .banner.white .btn {
    color: #6bc8f2;
    background-color: #fff; }
    .banner.white .btn:hover {
      background-color: #eee; }
  .banner .btn.a_arrow_right::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    top: 50%;
    right: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    margin-top: 1px; }
  .banner.green .btn.a_arrow_right::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff; }
  .banner.white .btn.a_arrow_right::after {
    border-top: 2px solid #6bc8f2;
    border-right: 2px solid #6bc8f2; }

/* 〜479px：SP portrait
------------------------------ */
/***************************
    container
***************************/
section.block > .inner {
  width: 100%;
  padding: 25px 0 65px; }
section.block h2.title {
  margin: 0;
  font-size: 28px;
  line-height: 1em; }
  section.block h2.title span {
    font-size: 13px; }
section.block .lead {
  width: 90.65%;
  margin: 1.8em auto; }
section.block h3.title {
  font-size: 18px; }

#block-mainvisual {
  z-index: 0; }
  #block-mainvisual:before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: height 0.6s ease, top 0.6s ease; }
  #block-mainvisual.loaded:before {
    top: 100%;
    height: 0; }
  #block-mainvisual.loaded .blk-head {
    opacity: 1; }
  #block-mainvisual.loaded .scroller .item {
    animation: jump ease-in-out 1.2s forwards;
    animation-delay: 0.6s;
    animation-iteration-count: 1; }
  #block-mainvisual.loaded .badge {
    opacity: 1; }
  #block-mainvisual > .inner {
    padding: 0;
    background: #ccc; }
  #block-mainvisual .blk-head {
    opacity: 0;
    transition: opacity 0.4s linear 0.4s; }
  #block-mainvisual .badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s ease 1.0s; }
  #block-mainvisual .slider {
    position: relative; }
  #block-mainvisual .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.14); }
    #block-mainvisual .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: #f39800; }
  #block-mainvisual .scroller {
    position: relative;
    width: 100%; }
    #block-mainvisual .scroller .front {
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 2; }
    #block-mainvisual .scroller .item {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      transform: translateY(300px);
      z-index: 1;
      background: url("../img/mainvisual_layer_scroll_sp.png") center left repeat-x;
      background-size: cover;
      background-position-x: 0px; }

/*
  #block-mainvisual .badge {
    position: absolute;
    top: 22px;
    right: 13px;
    max-width: 119px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s ease 1.0s; }
*/
@keyframes jump {
  0% {
    transform: translate(0px, 200px); }
  45% {
    transform: translate(0px, -50px); }
  50% {
    transform: translate(0px, -50px); }
  100% {
    transform: translate(0px, 0px); } }
@keyframes jump-pc {
  0% {
    transform: translate(0px, 200px); }
  45% {
    transform: translate(0px, -70px); }
  50% {
    transform: translate(0px, -70px); }
  100% {
    transform: translate(0px, 0px); } }
.bg-box {
  background: url("../../../mathematics//assets/img/bg_sp.png") top center no-repeat;
  background-size: 100%; }

#block-about {
  z-index: 1; }
  #block-about > .inner {
    padding: 30px 0 40px; }
  #block-about h2.title {
    margin: 0 0 40px;
    font-size: 24px;
    line-height: 1.3em; }
    #block-about h2.title > span {
      display: block;
      font-size: 10px;
      line-height: 1.6em;
      letter-spacing: 0em;
      margin-top: 0.6em;
      color: #f39800; }
   #block-about h3{
     margin: 0 0 15px;
     line-height: 2;
     font-size: 16px;
     font-weight: bold;
    }
  #block-about .box-txt {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 78px;
    font-size: 13px;
    letter-spacing: 0;
    text-align: center; }
    #block-about .box-txt > p {
      margin-top: 1.8em; }
  #block-about .accr {
    width: 140px;
    margin: 1.8em auto 0; }

#block-concept > .inner {
  padding: 30px 0 40px; }
#block-concept h2.title {
  font-size: 24px;
  line-height: 1.3em;
  margin: 0 auto 45px; }
  #block-concept h2.title > span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6em;
    letter-spacing: 0em;
    margin-top: 0.6em;
    color: #6bc8f2; }

#block-appeal {
  position: relative;
  width: 100%;
  z-index: 1; }

  #block-appeal > .inner {
    width: 100%;
    padding: 55px 20px 75px;
    box-sizing: border-box; }
  #block-appeal h2.title {
    letter-spacing: 0.03em;
    margin-bottom: 30px; }
  #block-appeal .box-txt02 {
    text-align: center;
    margin: 0 0 17px; }

  #block-appeal .block-curriculum-list {
  display: block;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto 50px; }
  #block-appeal .block-curriculum-list li {
    width: 100%;
    line-height: 22px;
    font-size: 10px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
    border-left: 1px solid #d76cb5;
    border-right: 1px solid #d76cb5; }
  #block-appeal .block-curriculum-list li:last-of-type {
    border-bottom: 1px solid #d76cb5;
  }
    #block-appeal .block-curriculum-list li h4 {
      background: #b73f91;
      color: #fff;
      padding: 13px 0;
      font-size: 18px;
      font-weight: bold; }
    #block-appeal .block-curriculum-list li .text {
      color: #333;
      padding: 15px 10px;
      text-align: center;
      font-size: 14px; }

  #block-appeal .curriculum-box p.curriculum-p{
   padding-bottom: 5px;
   font-size: 16px;
   color: #69174f;
  }
  #block-appeal .curriculum-box {
    margin: 30px 0 0;
  }

#block-appeal .accr {
  width: 140px;
  margin: 1.8em auto 0; }

  #block-appeal .feature_box {
    margin-bottom: 30px; }

  #block-appeal .feature_box ul {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  #block-appeal .feature_box ul li {
    background: #e18fc0;
    margin-top: 18px;
   padding: 10px 20px;
  }
  #block-appeal .feature_box ul li p {
    font-size: 16px;
    font-weight: bold;
    color: #69174f;
    text-align: center;
  }

  #block-appeal .img_box {
    margin: 0 auto 70px; }
  #block-appeal h3.title {
    letter-spacing: 0.03em;
    color: #fff;
    margin: 0;
    font-size: 18px;
    line-height: 30px; }
  #block-appeal .blk-body .pc_flex.mb01 {
    margin: 0 0 30px; }
  #block-appeal .blk-body > .inner {
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto; }
  #block-appeal .blk-body .box {
    margin-top: 15px;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    text-align: center; }
    #block-appeal .blk-body .box .box-ttl {
      line-height: 36px;
      font-size: 15px;
      font-weight: bold;
      line-height: 1.7em;
      letter-spacing: 0em;
      padding: 3px 0; }
      #block-appeal .blk-body .box .box-ttl > span {
        font-size: 13px; }
        #block-appeal .blk-body .box .box-ttl > span.num {
          font-size: 180%; }
    #block-appeal .blk-body .box .box-img {
      max-width: 336px;
      padding: 0 10px; }
    #block-appeal .blk-body .box .box-txt {
      font-size: 13px;
      color: #333;
      padding: 10px 15px;
      box-sizing: border-box; }
  #block-appeal .blk-body .box_02 .box-txt, #block-appeal .blk-body .box_03 .box-txt {
    line-height: 1.8; }
  #block-appeal .blk-body .box_02 {
    border: 4px solid #f8b62b; }
    #block-appeal .blk-body .box_02 .box-ttl {
      background: #fffacc;
      color: #f8b62b; }
    #block-appeal .blk-body .box_02 .box-txt .color {
      color: #f8b62b; }
  #block-appeal .blk-body .box_03 {
    border: 4px solid #3ec34f; }
    #block-appeal .blk-body .box_03 .box-ttl {
      background: #d5fada;
      color: #3ec34f; }
    #block-appeal .blk-body .box_03 .box-txt .color {
      color: #3ec34f; }
  #block-appeal .blk-body .box_04 {
    border: 4px solid #ff54a0; }
    #block-appeal .blk-body .box_04 .box-ttl {
      background: #ffd9ea;
      color: #ff54a0; }
    #block-appeal .blk-body .box_04 .box-txt {
      line-height: 1.8; }
      #block-appeal .blk-body .box_04 .box-txt .color {
        color: #ff54a0; }
  #block-appeal .objects {
    width: 0;
    height: 0; }
    #block-appeal .objects .obj {
      position: absolute;
      pointer-events: none; }
      #block-appeal .objects .obj:nth-child(1) {
        max-width: 160px;
        top: 12px;
        left: -116px; }
      #block-appeal .objects .obj:nth-child(2) {
        max-width: 103px;
        top: 30px;
        right: -45px; }
      #block-appeal .objects .obj:nth-child(3) {
        max-width: 160px;
        bottom: 400px;
        right: -105px; }
      #block-appeal .objects .obj:nth-child(4) {
        max-width: 238px;
        bottom: -34px;
        right: -26px; }

#block-voice {
  position: relative;
  z-index: 1;
}

#block-voice > .inner {
  padding: 85px 0 80px; }
#block-voice h2.title {
  letter-spacing: 0.025em;
  margin-bottom: 1em; }
#block-voice h3.title {
  width: 90.65%;
  margin: 0 auto; }
#block-voice .box .box-txt, #block-voice .box .box-img {
  width: 90.65%;
  margin: 0px auto; }
#block-voice .box .box-txt {
  margin: 30px auto; }
#block-voice h3.title {
  font-size: 18px;
  line-height: 1.6em;
  letter-spacing: 0em;
  text-align: center;
  color: #f39800;
  margin-top: 1.8em; }
#block-voice .tggl {
  text-align: right; }
  #block-voice .tggl .tggl-trigger {
    width: 200px; }
  #block-voice .tggl .tggl-target {
    text-align: left; }
#block-voice .profile {
  padding-top: 1.8em; }
  #block-voice .profile h4.title {
    font-size: 14.5px; }
  #block-voice .profile .box-txt > p:not(:nth-of-type(1)) {
    margin-top: 1.8em; }
#block-voice .slider {
  margin-top: 25px; }
#block-voice .swiper-wrapper {
  transition-timing-function: linear; }
#block-voice .box .box-foot {
  margin-top: 50px; }
#block-voice .bg {
  background: url("../../../mathematics//assets/img/bg_appeal_top.jpg") repeat-x top, url(/mathematics/assets/img/bg_appeal.jpg) repeat-y top center / 100%; }
#block-voice .bg .jagged::after {
    content: '';
    position: absolute;
    z-index: 0;
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -45px;
    height: 46px;
    background-image: url("../../../mathematics//assets/img/bg_appeal_bottom02.png");
}

  #block-voice .box:first-child h2.title {
    color: #fff; }
  #block-voice .box:first-child h2.title span {
      color: #fff; }
  #block-voice .outer:nth-child(1) .box:nth-child(2) .box-txt {
    color: #fff; }

#block-adviser .box:first-child {
  position: relative;
  padding: 55px 0;
  overflow: hidden; }
  #block-adviser .box:first-child .box-head, #block-adviser .box:first-child .box-foot {
    text-align: center;
    color: #fff; }
  #block-adviser .box:first-child .box-head {
    font-size: 18px; }
  #block-adviser h3.title {
    font-size: 18px;
    line-height: 1.6em;
    letter-spacing: 0em;
    text-align: center;
    margin-top: 1.8em;
    color: #fff; }
  #block-adviser .box-body {
    margin-bottom: 50px; }
  #block-adviser .box-body {
    padding: 0 0 3.8em;
    max-width: 1030px;
    margin: 0 auto; }
    #block-adviser .box-body .box-txt {
      width: 90.65%;
      margin: 0px auto;
      color: #fff; }
    #block-adviser .box-img {
      width: 90.65%;
      margin: 0px auto; }
#block-adviser .box:nth-child(2) {
  padding: 35px 0 0; }
  #block-adviser .box:nth-child(2) .box-head {
    text-align: center;
    color: #f39800;
    font-size: 18px; }
  #block-adviser .box:nth-child(2) .box-body {
    position: relative;
    width: 90.65%;
    max-width: 340px;
    margin: 2.4em auto 50px; }
  #block-adviser .box:nth-child(2) .unit {
    width: 100%;
    box-sizing: border-box; }
  #block-adviser .box:nth-child(2) .list .item:not(:first-child) {
    margin-top: 8px; }
  #block-adviser .box:nth-child(2) .unit.pink {
    border: 5px solid #e366ba; }
  #block-adviser .box:nth-child(2) .unit.yellow {
    border: 5px solid #efb424; }
  #block-adviser .box:nth-child(2) .unit.green {
    border: 5px solid #3ec34f; }
  #block-adviser .box:nth-child(2) .unit.blue {
    border: 5px solid #2ca8ee; }
  #block-adviser .box:nth-child(2) .unit.pink .unit-head {
    background-color: #fae2f2; }
  #block-adviser .box:nth-child(2) .unit.yellow .unit-head {
    background-color: #fdebca; }
  #block-adviser .box:nth-child(2) .unit.green .unit-head {
    background-color: #dbfcdf; }
  #block-adviser .box:nth-child(2) .unit.blue .unit-head {
    background-color: #d0e9fc; }
  #block-adviser .box:nth-child(2) .unit .unit-head h4.title {
    position: relative;
    font-size: 15px;
    line-height: 2.4em;
    padding-left: 30px; }
    #block-adviser .box:nth-child(2) .unit .unit-head h4.title::before {
      content: "";
      width: 20px;
      height: 20px;
      position: absolute;
      top: 50%;
      left: 4px;
      transform: translateY(-50%); }
  #block-adviser .box:nth-child(2) .unit.pink .unit-head h4.title::before {
    background: url("../img/course_icon_pink.png") center center no-repeat;
    background-size: contain; }
  #block-adviser .box:nth-child(2) .unit.yellow .unit-head h4.title::before {
    background: url("../img/course_icon_yellow.png") center center no-repeat;
    background-size: contain; }
  #block-adviser .box:nth-child(2) .unit.green .unit-head h4.title::before {
    background: url("../img/course_icon_green.png") center center no-repeat;
    background-size: contain; }
  #block-adviser .box:nth-child(2) .unit.blue .unit-head h4.title::before {
    background: url("../img/course_icon_blue.png") center center no-repeat;
    background-size: contain; }
  #block-adviser .box:nth-child(2) .unit .unit-body {
    background-color: #fff; }
    #block-adviser .box:nth-child(2) .unit .unit-body .unit-img {
      width: 33%; }
    #block-adviser .box:nth-child(2) .unit .unit-body .unit-txt {
      padding: 0.8em 22% 12% 1.2em;
      font-size: 0.9rem;
      line-height: 1.5em;
      flex: 1; }
  #block-adviser .box:nth-child(2) .unit.pink .unit-body .unit-txt {
    background: url("../img/course_bg_pink.png") left bottom no-repeat;
    background-size: contain; }
  #block-adviser .box:nth-child(2) .unit.yellow .unit-body .unit-txt {
    background: url("../img/course_bg_yellow.png") left bottom no-repeat;
    background-size: contain; }
  #block-adviser .box:nth-child(2) .unit.green .unit-body .unit-txt {
    background: url("../img/course_bg_green.png") left bottom no-repeat;
    background-size: contain; }
  #block-adviser .box:nth-child(2) .unit.blue .unit-body .unit-txt {
    background: url("../img/course_bg_blue.png") left bottom no-repeat;
    background-size: contain; }
  #block-adviser .box:nth-child(2) .chart .lines {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: center;
    line-height: 2em;
    letter-spacing: -0.25em;
    color: #fff;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    bottom: 15px;
    right: 5px; }
    #block-adviser .box:nth-child(2) .chart .lines .line {
      position: relative;
      margin-top: auto;
      margin-right: 5px;
      font-size: 0.9rem;
      letter-spacing: 0.03em; }
      #block-adviser .box:nth-child(2) .chart .lines .line::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 13px 0 13px; }
      #block-adviser .box:nth-child(2) .chart .lines .line::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 13px 0 13px; }
      #block-adviser .box:nth-child(2) .chart .lines .line.orange {
        background-color: #e69516;
        float: right;
        height: 21%;
        z-index: 1; }
        #block-adviser .box:nth-child(2) .chart .lines .line.orange::before {
          border-color: #f3b20a transparent transparent transparent; }
        #block-adviser .box:nth-child(2) .chart .lines .line.orange::after {
          border-color: #e69516 transparent transparent transparent; }
      #block-adviser .box:nth-child(2) .chart .lines .line.yellow {
        background-color: #f3b20a;
        height: 95%;
        margin-top: auto; }
        #block-adviser .box:nth-child(2) .chart .lines .line.yellow::before {
          content: none; }
      #block-adviser .box:nth-child(2) .chart .lines .line.blue {
        background-color: #2ca8ee;
        height: 45%; }
        #block-adviser .box:nth-child(2) .chart .lines .line.blue::after {
          border-color: #2ca7ee transparent transparent transparent; }
        #block-adviser .box:nth-child(2) .chart .lines .line.blue::before {
          content: none; }

/* sTART OF UPDATE 20230721 block-adviser */
#block-adviser {
  position: relative;
  width: 100%;
  z-index: 1; }
#block-adviser .bg {
  background: url("../../../mathematics//assets/img/bg_appeal_top.jpg") repeat-x top, 
  url(/mathematics/assets/img/bg_appeal.jpg) repeat-y top center / 100%; }
#block-adviser .bg .jagged::after {
    content: '';
    position: absolute;
    z-index: 0;
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -45px;
    height: 46px;
    background-image: url("../../../mathematics//assets/img/bg_appeal_bottom02.png");
}
  #block-adviser > .inner {
    width: 100%;
    padding: 85px 0 80px;
    box-sizing: border-box; }
  #block-adviser h2.title {
    letter-spacing: 0.03em;
    margin-bottom: 1em;
    color: #fff; }
    #block-adviser h2.title span {
      color: #fff; }
  #block-adviser .img_box {
    margin: 0 auto 70px; }
  #block-adviser .blk-body > .inner {
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto; }

/* END OF UPDATE 20230721 block-adviser */

#block-classroom > .inner {
  padding: 40px 20px 80px;
  margin: 0 auto;
  box-sizing: border-box; }
#block-classroom h2 {
  margin: 0 0 30px; }
#block-classroom .blk-body {
  margin-bottom: 33px; }
  #block-classroom .blk-body .lead {
    text-align: center; }

#block-kagakut-ranking > .bg {
  background: url("../../../mathematics/general/img/bg_cream_box.jpg") left top repeat;
  background-size: 103.5px 178.5px; }
  #block-kagakut-ranking > .bg:before {
    background: url("../img/kagakut_ranking_bg_sp.png") center top no-repeat;
    background-size: 100%; }
#block-kagakut-ranking > .inner {
  padding-bottom: 20px;
  overflow: hidden; }
#block-kagakut-ranking .lead {
  width: 83%;
  margin-top: 23px; }
#block-kagakut-ranking .blk-body > .inner {
  max-width: 100%;
  flex-wrap: wrap;
  margin: 0 auto;
  height: 150px;
  padding: 35px 0 0;
  box-sizing: border-box;
  background: url("../img/kagakut_ranking_silhouette_sp.png") center center no-repeat;
  background-size: auto 100%; }
#block-kagakut-ranking .blk-body .objects {
  width: 0;
  height: 0; }
  #block-kagakut-ranking .blk-body .objects .obj {
    position: absolute;
    z-index: 1; }
    #block-kagakut-ranking .blk-body .objects .obj:nth-child(1) {
      width: 27.4%;
      max-width: 103px;
      top: 55px;
      left: -55px; }
    #block-kagakut-ranking .blk-body .objects .obj:nth-child(2) {
      width: 28.6%;
      max-width: 107.5px;
      top: 28px;
      right: -52px; }
    #block-kagakut-ranking .blk-body .objects .obj:nth-child(3) {
      width: 4%;
      max-width: 15.5px;
      top: 520px;
      right: 12px; }
    #block-kagakut-ranking .blk-body .objects .obj:nth-child(4) {
      width: 27.4%;
      top: 660px;
      right: -57px; }
    #block-kagakut-ranking .blk-body .objects .obj:nth-child(5) {
      width: 28.6%;
      bottom: 16px;
      left: -28px; }

#block-q-and-a > .inner {
  background-color: #faf7e1; }
#block-q-and-a .blk-head h2.title {
  letter-spacing: 0.35em; }
  #block-q-and-a .blk-head h2.title > span {
    line-height: 2.2em;
    letter-spacing: 0.025em; }
#block-q-and-a .blk-head .lead {
  text-align: center;
  margin-bottom: 3.2em; }

#block-franchise > .bg {
  background-image: url("../../../mathematics/general/img/bg_gray_box.jpg");
  background-position: left top;
  background-repeat: repeat;
  background-size: 103.5px 178.5px; }
#block-franchise h2.title {
  margin: 0 0 30px;
  font-size: 24px; }
#block-franchise .lead {
  margin-bottom: 3em;
  text-align: center; }
#block-franchise .banners .banner:not(:first-child) {
  margin-top: 10px; }

#block-search > .inner {
  background: #ffe8f8 url("../../../mathematics//assets/img/bg_sp.png") no-repeat top/100%; }
#block-search h2.title {
  margin: 0 0 35px;
  font-size: 24px; }
#block-search .lead {
  text-align: center;
  margin-bottom: 3em; }

#block-notification h2.title {
  margin: 0 0 30px;
  font-size: 24px; }
#block-notification .box {
  width: 90.65%;
  max-width: 950px;
  margin: 25px auto 20px;
  padding: 20px 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc; }
#block-notification .list .item:not(:first-child) {
  margin-top: 1em; }
#block-notification .list .item .date {
  color: #787878;
  font-size: 10px;
  line-height: 1em;
  letter-spacing: 0.015em; }
#block-notification .list .item .link {
  font-size: 11px;
  line-height: 1.5em;
  letter-spacing: 0em; }
  #block-notification .list .item .link > a {
    text-decoration: none;
    color: #333; }
    #block-notification .list .item .link > a:hover {
      text-decoration: underline; }
#block-notification .list .item .new {
  color: #eb3b4b;
  padding-left: 0.5em; }

 .pop_news {
    width: 90.65%;
    max-width: 900px;
    margin: 20px auto 0;
    text-align: center;
  }

/* 480px〜599px：SP landscape
------------------------------ */
@media screen and (min-width: 414px) {
  /***************************
      container
  ***************************/
  #course .box:nth-child(2) .unit .unit-body .unit-txt {
    font-size: 13px; }

  #block-kagakut-ranking .blk-body > .inner {
    max-width: 100%;
    height: 252px;
    padding: 70px 0 0;
    background: url("../img/kagakut_ranking_silhouette_pc.png") center center no-repeat; } }
/* 600px〜959px：tablet
------------------------------ */
@media screen and (min-width: 600px) {
  /***************************
      container
  ***************************/

  #block-appeal > .inner {
    margin: 0 auto; }
    #block-appeal > .inner .blk-head .inner {
      margin: 0 auto; } 

  #block-adviser > .inner {
    margin: 0 auto; }
    #block-adviser > .inner .blk-head .inner {
      margin: 0 auto; } }
/* 960px〜1279px：small PC
------------------------------ */
@media screen and (min-width: 960px) {
  .p_flex.a_col_1to2 .p_flex_col {
    width: 47%; }
  .p_flex.a_col_2to1 .p_flex_col {
    width: 100%; }
  .p_flex.a_col_2to3 .p_flex_col {
    width: 33.333%; }
    .p_flex.a_col_2to3 .p_flex_col.a_wide {
      width: 33.333%; }

  .bg-box {
    background: url("../../../mathematics//assets/img/bg_pc.png") top center repeat-y;
    background-size: 100%; }

  section.block > .inner {
    padding: 100px 0 120px; }
  section.block h2.title {
    font-size: 48px; }
    section.block h2.title span {
      margin: 0;
      font-size: 26px; }
  section.block .lead {
    width: 100%;
    text-align: center; }

  .banner {
    width: 358px;
    font-size: 20px; }
    .banner.a_wide {
      width: 418px;
      max-width: none; }
    .banner .btn.a_arrow_right::after, .banner.green .btn.a_arrow_right::after {
      width: 10px;
      height: 10px;
      right: 15px;
      border-top: 3px solid #fff;
      border-right: 3px solid #fff; }
    .banner.white .btn.a_arrow_right::after {
      width: 10px;
      height: 10px;
      right: 15px;
      border-top: 3px solid #6bc8f2;
      border-right: 3px solid #6bc8f2; }

  /***************************
      container
  ***************************/
  #block-mainvisual.loaded .scroller .item {
    animation: jump-pc ease-in-out 1.0s forwards;
    animation-delay: 0.6s;
    animation-iteration-count: 1; }
  #block-mainvisual .blk-body {
    pointer-events: none; }
  #block-mainvisual .slider .dots > li {
    cursor: pointer; }
  #block-mainvisual .scroller .item {
    top: -63px;
    background: url("../img/mainvisual_layer_scroll_pc.png") center left repeat-x;
    background-size: cover;
    background-position-x: 0px; }

  #block-about > .inner {
    padding: 40px 0 0px;
    box-sizing: border-box; }
  #block-about h2.title {
    font-size: 48px; }
    #block-about h2.title > span {
      font-size: 14px;
      margin-top: 1.8em; }
  #block-about .box-txt {
    font-size: 16px; }
  #block-about .accr {
    width: 240px; }

  #block-appeal > .inner {
    box-sizing: border-box; }
  #block-appeal .blk-body > .inner {
    width: 70%; }
  #block-appeal h2.title {
    font-size: 48px; }
    #block-concept h2.title > span {
      font-size: 26px; }
  #block-about h3 {
   line-height: 0;
   font-size: 22px; }

  #block-appeal .block-curriculum-list {
  display: flex;
  width: 100%;
  margin: 0 auto 50px; }
  #block-appeal .block-curriculum-list li {
    width: 25%;
    line-height: 30px;
    border-right: none;}
  #block-appeal .block-curriculum-list li:nth-child(4n) {
    border-right: 1px solid #d76cb5; }
  #block-appeal .block-curriculum-list li:nth-child(n+4) {
    border-bottom: 1px solid #d76cb5; }
    #block-appeal .block-curriculum-list li h4 {
      font-size: 23px; }
    #block-appeal .block-curriculum-list li .text {
      padding: 20px 20px 25px;
      font-size: 16px; }

  #block-appeal .accr {
    width: 240px; }

  #block-appeal .blk-body > .inner.m-bottom1 {
    margin-bottom: 80px;
  }
  #block-appeal .feature_box {
    margin-bottom: 0;
  }
  #block-appeal .feature_box ul li p {
    font-size: 20px;
  }
  #block-appeal .curriculum-box p.curriculum-p {
    font-size: 20px;
    text-align: center;
  }

  #block-appeal > .inner {
    max-width: 1030px; }
  #block-appeal h2.title {
    font-size: 48px;
    margin-top: 32px;
    margin-bottom: 30px; }
  #block-appeal .blk-body .inner {
    width: 100%; }
  #block-appeal .blk-body .pc_flex {
    display: flex;
    justify-content: space-between; }
    #block-appeal .blk-body .pc_flex.mb01 {
      margin: 0 0 50px; }
  #block-appeal .blk-body .img_box {
    margin: 0 auto 40px; }
  #block-appeal .blk-body .box {
    box-sizing: border-box;
    margin-top: 40px; }
    #block-appeal .blk-body .box .box-ttl {
      width: 100%;
      font-size: 22px;
      letter-spacing: 0.05em;
      margin: 0;
      box-sizing: border-box; }
    #block-appeal .blk-body .box .box-img {
      padding: 0; }
    #block-appeal .blk-body .box .left .box-img {
      margin-left: auto; }
    #block-appeal .blk-body .box .right .box-img {
      margin-right: auto; }
    #block-appeal .blk-body .box .box-txt {
      width: 100%; }
  #block-appeal .blk-body .box_02 {
    width: 32%;
    border: 4px solid #f8b62b; }
    #block-appeal .blk-body .box_02 .box-ttl {
      background: #fffacc;
      color: #f8b62b; }
    #block-appeal .blk-body .box_02 .box-txt {
      font-size: 94%;
      line-height: 2; }
  #block-appeal .blk-body .box_03 {
    width: 32%;
    border: 4px solid #3ec34f; }
    #block-appeal .blk-body .box_03 .box-ttl {
      background: #d5fada;
      color: #3ec34f; }
    #block-appeal .blk-body .box_03 .box-txt {
      font-size: 94%;
      line-height: 2; }
  #block-appeal .blk-body .box_04 {
    width: 32%;
    border: 4px solid #ff54a0; }
    #block-appeal .blk-body .box_04 .box-ttl {
      background: #ffd9ea;
      color: #ff54a0; }
    #block-appeal .blk-body .box_04 .box-img {
      padding: 0 30px 10px; }
    #block-appeal .blk-body .box_04 .box-txt {
      font-size: 94%;
      line-height: 2; }
  #block-appeal .objects {
    width: 0;
    height: 0; }
  #block-voice h3.title {
    width: 100%;
    font-size: 27px;
    letter-spacing: 0.03em;
    margin: 0; }
  #block-voice .tggl {
    width: 394px;
    margin: 18px auto 0;
    text-align: center; }
    #block-voice .tggl .tggl-trigger {
      width: 394px;
      font-size: 16px;
      padding: 0.2em 0;
      margin: 18px auto 0; }
  #block-voice .blk-body .inner {
    max-width: 1030px;
    margin: 0 auto; }
  #block-voice .outer:nth-child(1) {
    max-width: 1440px;
    margin: 0 auto 50px; }
    #block-adviser .box-body .box-img {
      width: 47%;
      max-width: 680px; }
      #block-voice .outer:nth-child(1) .box:nth-child(1) .box-img {
        width: 100%; }
    #block-voice .outer:nth-child(1) .box:nth-child(2) {
      width: 53%;
      min-width: 455px;
      padding-left: 90px;
      box-sizing: border-box; }
      #block-voice .outer:nth-child(1) .box:nth-child(2) h3.title {
        text-align: left; }
      #block-voice .outer:nth-child(1) .box:nth-child(2) .box-txt {
        width: 100%;
        margin: 0;
        color: #fff; }
  #block-voice .outer:nth-child(2) {
    margin-top: 80px; }
    #block-voice .outer:nth-child(2) .box .box-txt {
      text-align: center; }
  #block-voice .box .box-foot {
    margin-top: 70px; }

  #block-adviser h3.title {
    font-size: 22px;
    margin-top: 0;
    text-align: left;
    margin: 0 0 20px; }
  #block-adviser .outer:nth-child(1) .box:nth-child(1) {
    padding: 40px 0 80px; }
    #block-adviser .box-body .box-txt {
      width: 53%;
    min-width: 455px;
    padding-right: 90px;
    box-sizing: border-box; }
    #block-adviser .box-img {
      width: 47%;
      max-width: 680px;
      margin: 0; }
  #block-adviser .outer:nth-child(1) .box:nth-child(2) .box-body {
    width: 100%;
    max-width: none;
    margin-top: 50px;
    margin-bottom: 80px; }
  #block-adviser .outer:nth-child(1) .box:nth-child(2) .list {
    display: flex;
    justify-content: center; }
    #block-adviser .outer:nth-child(1) .box:nth-child(2) .list .item {
      width: 200px;
      margin: 0 10px; }
      #block-adviser .outer:nth-child(1) .box:nth-child(2) .list .item:first-child {
        margin-left: 0; }
      #block-adviser .outer:nth-child(1) .box:nth-child(2) .list .item:last-child {
        margin-right: 0; }
  #block-adviser .box:nth-child(2) {
    padding-top: 50px; }
    #block-adviser .box:nth-child(2) .unit.pink {
      border: 3px solid #e366ba; }
    #block-adviser .box:nth-child(2) .unit.yellow {
      border: 3px solid #efb424; }
    #block-adviser .box:nth-child(2) .unit.green {
      border: 3px solid #3ec34f; }
    #block-adviser .box:nth-child(2) .unit.blue {
      border: 3px solid #2ca8ee; }
    #block-adviser .box:nth-child(2) .unit .unit-body .unit-txt {
      min-height: 130px;
      padding: 1em 1em; }
    #block-adviser .box:nth-child(2) .unit .unit-body .unit-img {
      width: 100%; }
    #block-adviser .box:nth-child(2) .unit.pink .unit-body .unit-txt {
      background-size: cover;
      background-position-x: 22px;
      background-position-y: 7px; }
    #block-adviser .box:nth-child(2) .unit.yellow .unit-body .unit-txt {
      background-size: cover;
      background-position-x: 70px; }
    #block-adviser .box:nth-child(2) .unit.green .unit-body .unit-txt {
      background-size: cover;
      background-position-x: 37px; }
    #block-adviser .box:nth-child(2) .unit.blue .unit-body .unit-txt {
      background-size: cover;
      background-position-x: 2px; }
  #block-adviser .outer:nth-child(1) .box:nth-child(2) .unit .unit-body {
    display: block; }
  #block-adviser .box:nth-child(2) .chart .lines {
    -webkit-writing-mode: initial;
    writing-mode: initial;
    position: relative;
    bottom: 0;
    right: 0; }
    #block-adviser .box:nth-child(2) .chart .lines .line::before, #block-adviser .box:nth-child(2) .chart .lines .line::after {
      border-width: 16px 0 16px 21px;
      right: -20px;
      left: auto;
      bottom: 0; }
    #block-adviser .box:nth-child(2) .chart .lines .line.orange, #block-adviser .box:nth-child(2) .chart .lines .line.yellow {
      height: auto;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      letter-spacing: 0.015em;
      margin-right: 0;
      margin-top: 0; }
    #block-adviser .box:nth-child(2) .chart .lines .line.blue {
      height: auto;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      font-size: 14px;
      letter-spacing: 0.015em;
      margin-right: 0;
      margin-top: 0;
      width: 383px;
      bottom: 54px;
      margin-left: 218px; }
    #block-adviser .box:nth-child(2) .chart .lines .line.yellow {
      width: 665px;
      bottom: -22px;
      margin-left: -100px; }
    #block-adviser .box:nth-child(2) .chart .lines .line.orange {
      float: none;
      width: 180px;
      bottom: -54px;
      margin-left: 320px;
      box-sizing: border-box;
      padding-left: 21px; }
    #block-adviser .box:nth-child(2) .chart .lines .line.blue::after {
      border-color: transparent transparent transparent #2ca7ee; }
    #block-adviser .box:nth-child(2) .chart .lines .line.orange::before {
      right: 160px;
      border-color: transparent transparent transparent #f3b20a; }
    #block-adviser .box:nth-child(2) .chart .lines .line.orange::after {
      border-color: transparent transparent transparent #e69516; }


/* START OF UPDATE 20230721 adviser*/

#block-adviser > .inner {
  box-sizing: border-box; }
#block-adviser .blk-body > .inner {
  width: 70%; }
  #block-concept h2.title > span {
    font-size: 26px; }
#block-about h3 {
 line-height: 0;
 font-size: 22px; }
#block-adviser > .inner {
  max-width: 1030px; }
#block-adviser h2.title {
  font-size: 48px;
  margin-top: 32px; }
#block-adviser .blk-body .inner {
  width: 100%; }
#block-adviser .blk-body .img_box {
  margin: 0 auto 40px; }

/* END OF UPDATE 20230721 adviser*/    

  #block-classroom > .inner {
    position: relative;
    max-width: 950px;
    padding: 40px 0px 60px; }
  #block-classroom .blk-body .lead {
    margin-top: 55px; }

  #block-kagakut-ranking > .bg {
    background-size: 207px 357px; }
    #block-kagakut-ranking > .bg:before {
      top: -20px;
      background: url("../img/kagakut_ranking_bg_pc.png") center top no-repeat;
      background-size: 100%; }
  #block-kagakut-ranking > .inner {
    padding-bottom: 0;
    overflow: visible; }
  #block-kagakut-ranking .lead {
    margin: 3.2em auto 0; }
  #block-kagakut-ranking .objects {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0; }
    #block-kagakut-ranking .objects .obj {
      position: absolute;
      width: 20%;
      z-index: 1; }
      #block-kagakut-ranking .objects .obj:nth-child(1) {
        max-width: 258px;
        top: -17px;
        left: -44px; }
      #block-kagakut-ranking .objects .obj:nth-child(2) {
        max-width: 303px;
        top: 18px;
        right: -80px; }

  #block-q-and-a .blk-head .lead {
    margin-bottom: 4em; }

  #block-franchise h2.title {
    font-size: 48px; }
  #block-franchise > .bg {
    background-image: url("../../../mathematics/general/img/bg_gray_box.jpg");
    background-position: left top;
    background-repeat: repeat;
    background-size: 207px 357px; }
  #block-franchise .banners .banner:not(:first-child) {
    margin-top: 32px; }
  #block-franchise .lead {
    margin-bottom: 4em; }

  #block-search > .inner {
  background: #ffe8f8 url("../../../mathematics//assets/img/bg_pc.png") no-repeat top/100%;
    padding: 40px 0 80px;
  }
  #block-search h2.title {
    font-size: 48px; }

  #block-notification h2.title {
    font-size: 48px; }
  #block-notification .pop_news .bnr img {
    width: auto; }
  #block-notification .box {
    margin: 70px auto; }
  #block-notification .list .item {
    display: flex;
    align-items: center; }
    #block-notification .list .item .date {
      margin-right: 10px;
      font-size: 16px; }
    #block-notification .list .item .link {
      font-size: 16px; }
}
/* 1280px〜：large PC
------------------------------ */
@media screen and (min-width: 1280px) {
  /***************************
      container
  ***************************/
  /*
    #block-mainvisual .badge {
      top: 33px;
      right: 33px;
      max-width: 239px; }
  */

  #block-appeal > .inner {
    padding: 120px 0 105px;
  }
  #block-appeal .feature_box ul {
    display: flex;
  }
  #block-appeal .feature_box ul li {
    width: 405px;
   padding: 25px 50px;
  }
  #block-mainvisual .badge {
    width: 100%;
    height: 100%; }

  #block-about h2.title > span, #block-concept h2.title > span {
    font-size: 17px; }

  #block-about .box-txt, #block-concept .box-txt {
    font-size: 18px; }
  #block-adviser .box-img {
    max-width: 956px; }
  #block-adviser .outer:nth-child(1) .box:nth-child(2) .list .item {
    width: 260px;
    margin: 0 10px; }
  #block-adviser .box:nth-child(2) .unit .unit-head h4.title {
    font-size: 22px;
    letter-spacing: -0.015em;
    padding-left: 44px; }
    #block-adviser .box:nth-child(2) .unit .unit-head h4.title::before {
      width: 29px;
      height: 29px;
      left: 10px; }
  #block-adviser .box:nth-child(2) .unit.pink {
    border: 3px solid #e366ba; }
  #block-adviser .box:nth-child(2) .unit.yellow {
    border: 3px solid #efb424; }
  #block-adviser .box:nth-child(2) .unit.green {
    border: 3px solid #3ec34f; }
  #block-adviser .box:nth-child(2) .unit.blue {
    border: 3px solid #2ca8ee; }
  #block-adviser .box:nth-child(2) .unit .unit-body .unit-txt {
    min-height: 130px;
    font-size: 14px;
    padding: 1em 1em; }
  #block-adviser .box:nth-child(2) .unit.pink .unit-body .unit-txt {
    background-size: cover;
    background-position-x: 80px;
    background-position-y: 7px; }
  #block-adviser .box:nth-child(2) .unit.yellow .unit-body .unit-txt {
    background-size: cover;
    background-position-x: 120px; }
  #block-adviser .box:nth-child(2) .unit.green .unit-body .unit-txt {
    background-size: cover;
    background-position-x: 91px; }
  #block-adviser .box:nth-child(2) .unit.blue .unit-body .unit-txt {
    background-size: cover;
    background-position-x: 60px; }
  #block-adviser .box:nth-child(2) .chart .lines .line.orange, #block-adviser .box:nth-child(2) .chart .lines .line.yellow {
    font-size: 16px; }
  #block-adviser .box:nth-child(2) .chart .lines .line.blue {
    font-size: 16px;
    width: 504px;
    margin-left: 278px; }
  #block-adviser .box:nth-child(2) .chart .lines .line.yellow {
    width: 843px;
    margin-left: -130px; }
  #block-adviser .box:nth-child(2) .chart .lines .line.orange {
    width: 242px;
    margin-left: 409px; }
    #block-adviser .box:nth-child(2) .chart .lines .line.orange::before {
      right: 221px; } 
  
  /* START OF UPDATE 20230721 adviser*/
    
  #block-adviser > .inner {
    padding: 120px 0 105px;
  }
  /* START OF UPDATE 20230721 adviser*/
    }


/*MVPR area*/
#block-mainvisual .pr {
	position: absolute;
	width: 32%;    
    top: 36%;
    right: 0;
}
#block-mainvisual .pr img {
	height: auto;
}
#block-mainvisual .pr .jisseki {
	background: #b73f91;
  padding: 0.8em 0.8em 6em 0.8em;
}
#block-mainvisual .pr .jisseki dl {
	line-height: 1.4;
	text-align: center;
}
#block-mainvisual .pr .jisseki dl dt {
	color: #ffffff;
	font-size: 1.5vw; 
	font-weight: 600;
	border-bottom: 0.2vw solid #ffffff;
	padding-bottom: 0.2em;
	margin-bottom: 0.5em;
  display: inline-block;
}
#block-mainvisual .pr .jisseki dl dd {
	font-size: 1.4vw;
    font-weight: 700;
    line-height: 1.2;
}
#block-mainvisual .pr .jisseki dl dd .txt_lar {
	font-size: 150%;
	margin: 0 0.05em;
	vertical-align: -0.05em;
}
#block-mainvisual .pr .jisseki dl dd span.txt_lar:last-of-type {
	display: inline-block;
	margin-bottom: 0.2em;
}
#block-mainvisual .pr .mvbnr {
	margin-top: 0.5em;
}
@media screen and (max-width: 959px){
	#block-mainvisual .pr {		
		width: 40vw;
		top: 24vw;
	}
	#block-mainvisual .pr .jisseki {		
		padding: 0;
	}
	#block-mainvisual .pr .jisseki dl {
    	padding: 2vw 0;
	}
	#block-mainvisual .pr .jisseki dl dt {
		font-size: 3.4vw;
		border-bottom-width: 0.5vw;
		padding-bottom: 1.5vw;
		white-space: inherit;		
		display: inline-block;
		margin: 0 auto 1.5vw;
		line-height: 1.2;
	}
	#block-mainvisual .pr .jisseki dl dd {
		font-size: 3.4vw;
	}
	#block-mainvisual .pr .jisseki dl dd .txt_lar {
        display: inline-block;
        margin-bottom: 0.2em;
	}
	#block-mainvisual .pr .mvbnr {
		margin-top: 1vw;
	}	
}

/* camp */
#camp {
	background: #fbf7cc;
	background: -moz-linear-gradient(top,  #fbf7cc 0%, #fddeeb 100%);
	background: -webkit-linear-gradient(top,  #fbf7cc 0%,#fddeeb 100%);
	background: linear-gradient(to bottom,  #fbf7cc 0%,#fddeeb 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbf7cc', endColorstr='#fddeeb',GradientType=0 );
	text-align: center;
	padding: 80px 0;	    
}
#camp .camparea {
	border: 2px solid #e4007f;
	padding: 2em 2em 3em;
	background: #ffffff;
	margin: 0 auto;
	max-width: 920px;
	box-sizing: border-box;
}
#camp .camparea img {
	height: auto;
	max-width: 800px;
	display: block;
	margin-bottom: 2em;	
}
#camp .camparea p.banner {
	width: 480px;
	margin-bottom: 0.5em;
}
#camp .camparea p.banner .btn {
	background: #e4007f;
}
#camp .camparea p.note {
	font-size: 13px;
	color: #666666;
	
}
@media screen and (max-width: 959px){
	#camp {
		padding: 40px 5%;
		box-sizing: border-box;
	}	
	#camp .camparea {
		padding: 4vw 2%;
	}
	#camp .camparea p.banner {
		width: 96%;
		margin-bottom: 1em;
	}
	#camp .camparea p.note {
		font-size: 10px;
		line-height: 1.3;
	}
}

/* block-topics */
#block-topics {
	margin-top: 80px;
}
@media screen and (max-width: 959px){
	#block-topics {
		margin-top: 30px;
	}	
}



/* 1400px〜：largest PC
------------------------------ */
@media screen and (min-width: 1400px) {
  /***************************
      container
  ***************************/
/*# sourceMappingURL=index.css.map */
/*特別ニュース*/
.pop_news {
  width: 90.65%;
  max-width: 900px;
  margin: 20px auto 0;
  text-align: center; }
  .pop_news p {
    margin-bottom: 10px; }
  }

@media screen and (min-width: 1400px) {
  .pop_news p img {
    width: auto; } 
  }
/* @media screen and (min-width: 960px) {
  margin: 70px auto 0; 
} */

.pic_news {
  border: #ff6600 dotted 3px;
  padding: 10px; }
	
	



/* START OF UPDATE 20230522 */
.newcv-btns {
  width: 60%;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999998;
  background: #fff1fb;
  max-width: 800px;
  margin: auto;
  border: 4px solid #b73f91;
}
.newcv-btns__inner {
  padding: 26px;
}
.newcv-btns__heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #b73f91;
}
.newcv-btns__heading span {
  font-size: 18px;
}
.newcv-btns__area {
  margin: 16px auto 0;
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 600px;
}
.newcv-btns__btn {
  text-decoration: none;
  padding: 10px 30px 8px 20px;
  color: #fff;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  /* font-size: 16px; */
  font-size: 20px;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
}
.newcv-btns__btn.-search {
  background-color: #b73f91;
  border-bottom: solid 5px #870f61;
}
.newcv-btns__btn.-doc {
  background-color: #f39800;
  border-bottom: solid 5px #c36800;
}
.newcv-btns__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  right: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
#block-mainvisual .blk-body .inner .scroller .item {
  width: 100%;
}
@media (min-width: 960px) {
  .newcv-btns__btn:hover {
    margin-top: 3px;
    border-bottom-width: 2px;
  }
}
@media  (max-width: 960px) {
  .newcv-btns {
    width: 100%;
    position: inherit;
    z-index: 0;
    max-width: none;
  }
  #block-mainvisual .blk-body .inner .scroller .item {
    width: 100%;
  }
  .newcv-btns__inner {
    padding: 20px 12px;
  }
  .newcv-btns__heading {
    font-size: 20px;
  }
  .newcv-btns__heading span {
    font-size: 16px;
  }
  .newcv-btns__area {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .newcv-btns__btn {
    padding: 10px 16px 8px 8px;
    width: 240px;
    margin: auto;
    font-size: 16px;
  }
  .newcv-btns__btn::after {
    right: 12px;
  }
}
/* END OF UPDATE 20230522 */

/* START OF UPDATE 20230721 */

  .mvbanner {
    position: absolute;
    top: 10px;
    right: 2%;
    width: 40%;
  }
  #block-mainvisual .pr {
    position: static;
    width: 100%;
    background: #b73f91;
  }
  #block-mainvisual .pr .jisseki {
    background: none;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
  }
  #block-mainvisual .pr .jisseki dl {
    padding: 3px 0 0;
  }
  #block-mainvisual .pr .jisseki .imgarea {
    width: 26%;
    margin-right: 2%;
  }
  #block-mainvisual .pr .jisseki dl dd ul {
    display: block;
  }
  #block-mainvisual .pr .jisseki dl dd ul.list_sq li {
    margin-bottom: 2%;
  }
  #block-topics .inner {
    padding: 0;
  }
  #block-topics .slider {
    margin-top: 10px;
  }
  #block-topics .swiper-button-prev,
  #block-topics .swiper-button-next {
    display: none; 
  }
  section.block.topics > .inner {
    padding-bottom: 32px;
  }

  #block-faq {
    width: 90.66666666666666%;
    margin: 50px auto;
  }
  #block-faq dl + .icons {
    margin-top: 46px; }
  #block-faq dl dt {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 42px;
    margin: 0 0 12px;
    padding: 12px 40px 12px 50px;
    line-height: 18px;
    font-size: 13px;
    background: #e18fc0 url(../img/faq_q_icon_close.png) calc(100% - 10px) center no-repeat;
    background-size: 20px;
    box-sizing: border-box; }
  #block-faq dl dt.open {
    background-image: url(../img/faq_q_icon_open.png); }
  #block-faq dl dt:before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 42px;
    height: 100%;
    font-size: 18px;
    font-family: "Lato-Black";
    text-align: center;
    color: #fff;
    background: #b73f91; }
  #block-faq dl dd {
    display: none;
    position: relative;
    min-height: 46px;
    padding: 0 0 24px 50px;
    border-bottom: 1px solid #cecece; }
  #block-faq dl dd:before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 4px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 18px;
    font-family: "Lato-Black";
    text-align: center;
    color: #fff;
    background: #feb700; }
  #block-faq dl dd + dt {
    margin-top: 24px; }
  #block-faq dl dd:last-child {
    margin: 0; }
  #block-faq dl dd a {
    color: #b73f91; }

@media screen and (min-width: 960px) {
  .mvbanner {
    top: 40px;
    right: 2%;
    width: 24%;
  }
  #block-mainvisual .pr .jisseki {
    width: 50%;
    padding: 0.8em 0.8em 5em 0.8em;
  }
  #block-mainvisual .pr .jisseki .imgarea {
    width: 12%;
  }
  #block-mainvisual .pr .jisseki dl dd {
    color: #333;
  }
  #block-mainvisual .pr .jisseki dl dd ul {
    display: flex;
  }
  section.block.topics > .inner {
    padding: 25px 0 40px;
  }
  #block-topics .slider {
    width: 100%;
    margin: 20px auto 0;
  }
  #block-topics .blk-body .inner {
      width: 800px;
      margin: 0 auto;
  }
  #block-topics .swiper-slide {
    opacity: 0.4;
    transition: opacity 0.2s ease;
    backface-visibility: hidden;
  }
  #block-topics .swiper-slide-active, #block-topics .swiper-slide-prev, #block-topics .swiper-slide-next {
    opacity: 1;
  }
  #block-topics .swiper-button-prev,
  #block-topics .swiper-button-next {
    width: 26px;
    height: 50px;
    margin: 0;
    outline: none;
    transform: translateY(-50%); }
  #block-topics .swiper-button-prev,
  #block-topics .swiper-button-next {
    display: block; }
  #block-topics .swiper-button-prev {
    background: url("../img/topics_arrow_left.png") center center no-repeat;
    background-size: contain;
    left: -60px; }
  #block-topics .swiper-button-next {
    background: url("../img/topics_arrow_right.png") center center no-repeat;
    background-size: contain;
    right: -60px; }

  #block-faq {
    width: 100%;
  }

  #block-faq dl {
    width: 950px;
    margin: 0 auto; }
  #block-faq dl + .icons {
    margin-top: 80px; }
  #block-faq dl dt {
    cursor: pointer;
    min-height: 56px;
    margin: 0 0 30px;
    padding: 12px 54px 12px 75px;
    line-height: 32px;
    font-size: 20px;
    background-size: 30px; }
  #block-faq dl dt:before {
    width: 56px;
    font-size: 24px; }
  #block-faq dl dd {
    min-height: 64px;
    padding: 0 0 50px 75px;
    border-bottom: 2px solid #cecece; }
  #block-faq dl dd:before {
    top: 4px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 24px; }
  #block-faq dl dd + dt {
    margin-top: 50px; } 
}
@media screen and (min-width: 1280px) {
  #block-topics .blk-body .inner {
      width: 940px;
  }
  #block-topics .swiper-button-prev,
  #block-topics .swiper-button-next {
    width: 37px;
    height: 72px; }
  #block-topics .swiper-button-prev {
    left: -60px; }
  #block-topics .swiper-button-next {
    right: -60px; }
}
@media screen and (min-width: 1400px) {
  #block-topics .blk-body .inner {
      width: 1106px;
  }
  #block-topics .swiper-button-prev,
  #block-topics .swiper-button-next {
    width: 42px;
    height: 81px; }
  #block-topics .swiper-button-prev {
    left: -89px; }
  #block-topics .swiper-button-next {
    right: -89px; }
}

.m-allu__u {
  position: relative;
  margin-top: 3.57143rem;
  padding: 3.57143rem;
  border-radius: 1.78571rem;
  background: #fff;
  box-shadow: 0 .35714rem .71429rem rgba(51, 51, 51, .1);
}

@media (max-width: 767px) {
  .m-allu__u {
    padding: 1.78571rem 1.07143rem 2.14286rem;
  }
}
/* END OF UPDATE 20230721 */

/* START OF UPDATE 20230727 */

.newcv-btns {
  border-image: linear-gradient(90deg, #fb6363, #f4de38 30%, #47d947 70%, #4f88f1);
  border-image-slice: 1;
}
.newcv-btns__heading {
  color: #ec3e3e;
}
.newcv-btns__btn.-search {
  background-color: #ec3e3e;
  border-bottom: solid 5px #c52f2f;
}
@media  (max-width: 960px) {
  .newcv-btns {
    width: 70%;
    position: fixed;
    bottom: 0;
    left: 0;
    transform: none;
    z-index: 99998;
    max-width: none;
  }
  .newcv-btns__btn {
    width: 100%;
    max-width: 200px;
  }
  .newcv-btns__heading {
    font-size: 16px;
    line-height: 1.3;
  }
  .newcv-btns__heading span {
    font-size: 14px;
  }
  .newcv-btns__inner {
    padding: 10px 12px;
  }
  .newcv-btns__area {
    margin-top: 6px;
  }
  .newcv-btns__btn {
    font-size: 14px;
    padding: 7px 16px 3px 8px;
  }
}
/* END OF UPDATE 20230727 */

/* START OF UPDATE 20230809 */
.newcv-btns {
  display: none;
  left: 50%;
  transform: translateX(-50%);
}
.newcv-btns__area {
  margin-top: 0;
}
#block-mainvisual .pr .jisseki .list_sq {
  font-weight: 700;
}
#block-mainvisual .pr .jisseki .list_sq li {
  padding: 10px;
  font-size: 3.4vw;
  background: #fff;
  border-radius: 8px;
  border: solid 3px #c35ca2;
  color: #b73f91;
  line-height: 1;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .newcv-btns {
    width: 100%;
    max-width: 600px;
  }
  .newcv-btns__inner {
    padding: 16px;
  }
  .newcv-btns__area {
    margin: 0 auto;
    max-width: 600px;
  }
  #block-mainvisual .pr {
    position: absolute;
    top: 40%;
    background: none;
  }
  #block-mainvisual .pr .jisseki {
    width: auto;
  }
  #block-mainvisual .pr .jisseki .list_sq {
    margin-left: 20px;
  }
  #block-mainvisual .pr .jisseki .list_sq li {
    width: fit-content;
    padding: 16px;
    font-size: 1.8vw;
  }
} 
/* END OF UPDATE 20230809 */