@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
  .is-tab {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-sp {
    display: none !important;
  }
  .is-tab {
    display: none !important;
  }
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  color: #333333;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 26px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  background: white;
  font-weight: 400;
}

img {
  vertical-align: middle;
  max-width: 100%;
  width: 100%;
  height: auto;
  line-height: 1;
}

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

body,
h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/*========================
common
========================*/
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .inner {
    max-width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

.section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 48px 0;
  }
}
.section.section--bg {
  background: #F9F7EF;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #B88204;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 24px;
    line-height: 1.4;
  }
}
.section-title span {
  position: relative;
  display: inline-block;
}
.section-title span::before, .section-title span::after {
  content: "";
  background: url(../img/sec-title.png) no-repeat center center/contain;
  width: 47px;
  height: 22px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-title span::before {
  left: -60px;
}
.section-title span::after {
  right: -60px;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.small {
  font-size: 13px;
}

.line-btn-sec {
  text-align: center;
}
.line-btn-sec .top {
  font-weight: 500;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .line-btn-sec .top {
    font-size: 16px;
  }
}
.line-btn-sec .bottom {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .line-btn-sec .bottom {
    font-size: 14px;
  }
}

.line-btn {
  margin: 8px auto 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  background: #4CC764;
  -webkit-box-shadow: 0px 10px 0px 0px #529D70;
          box-shadow: 0px 10px 0px 0px #529D70;
  gap: 20px;
  padding: 16px 80px;
  padding-right: 110px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.line-btn::before {
  content: "";
  background: url(../img/arrow.svg) no-repeat center center/contain;
  position: absolute;
  width: 13px;
  height: 21px;
  right: 34px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .line-btn::before {
    right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .line-btn {
    gap: 16px;
    padding: 12px 32px;
    padding-right: 63px;
  }
}
.line-btn:hover {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-box-shadow: 0px 0px 0px 0px #529D70;
          box-shadow: 0px 0px 0px 0px #529D70;
}
.line-btn .icon {
  max-width: 60px;
}
@media screen and (max-width: 767px) {
  .line-btn .icon {
    max-width: 40px;
  }
}
.line-btn p {
  font-size: 32px;
  color: white;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .line-btn p {
    font-size: 24px;
  }
}

.sticky {
  position: fixed;
  z-index: 100;
  bottom: 0;
  width: 100%;
  background: white;
  padding: 15px 20px 20px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .sticky {
    padding: 10px 16px 17px;
  }
}
.sticky .line-btn {
  padding: 10px;
  margin: 0 auto;
  -webkit-box-shadow: 0px 7px 0px 0px #529D70;
          box-shadow: 0px 7px 0px 0px #529D70;
}
.sticky .line-btn:hover {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  -webkit-box-shadow: 0px 0px 0px 0px #529D70;
          box-shadow: 0px 0px 0px 0px #529D70;
}
@media screen and (max-width: 767px) {
  .sticky .line-btn {
    padding: 5px 33px;
    padding-right: 55px;
    gap: 10px;
    -webkit-box-shadow: 0px 7px 0px 0px #529D70;
            box-shadow: 0px 7px 0px 0px #529D70;
  }
  .sticky .line-btn::before {
    width: 10px;
  }
}
.sticky .line-btn .icon {
  width: 45px;
}
@media screen and (max-width: 767px) {
  .sticky .line-btn .icon {
    width: 34px;
  }
}
.sticky .line-btn p {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .sticky .line-btn p {
    font-size: 20px;
  }
}

/*========================
mv
========================*/
.mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: hidden;
}
.mv .mv__img {
  min-width: 1720px;
  max-width: 2100px;
}
@media screen and (max-width: 1100px) {
  .mv .mv__img {
    min-width: 1190px;
  }
}
@media screen and (max-width: 767px) {
  .mv .mv__img {
    min-width: 0;
  }
}

/*========================
intro
========================*/
.intro {
  padding-bottom: 0;
}

.intro__wrap {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 88px;
}
@media screen and (max-width: 767px) {
  .intro__wrap {
    margin-top: 60px;
  }
}

.intro__item {
  border-radius: 10px;
  border: 1px solid #0657B4;
  background: #FFF;
  padding: 24px 42px 32px;
}
@media screen and (max-width: 767px) {
  .intro__item {
    padding: 16px;
  }
}
.intro__item:not(:nth-of-type(1)) {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .intro__item:not(:nth-of-type(1)) {
    margin-top: 32px;
  }
}
.intro__item h3 {
  font-size: 32px;
  color: #0657B4;
  border-bottom: 2px dashed #0657B4;
  position: relative;
  padding-left: 75px;
  padding-bottom: 19px;
  margin-left: 37px;
}
@media screen and (max-width: 767px) {
  .intro__item h3 {
    padding-left: 40px;
    margin-left: 0;
    font-size: 19px;
    line-height: 1.4;
    padding-bottom: 11px;
  }
}
.intro__item h3 img {
  width: 94px;
  position: absolute;
  top: -17px;
  left: -37px;
}
@media screen and (max-width: 767px) {
  .intro__item h3 img {
    width: 60px;
    top: 0px;
    left: -28px;
  }
}
.intro__item .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 38px;
  gap: 52px;
}
@media screen and (max-width: 767px) {
  .intro__item .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
    gap: 24px;
  }
}
.intro__item .flex .img {
  max-width: 410px;
  width: 100%;
}

/*========================
orientation
========================*/
.orientation__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 56px 0;
}
@media screen and (max-width: 767px) {
  .orientation__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
}
.orientation__wrap .teacher {
  max-width: 228px;
}
.orientation__wrap .name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 8px;
  text-align: center;
}

.orientation__balloon {
  background: white;
  padding: 32px;
  position: relative;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .orientation__balloon {
    padding: 24px;
  }
}
.orientation__balloon::before {
  content: "";
  background: url(../img/.png) no-repeat center center/contain;
  position: absolute;
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 40px 20px 0;
  border-color: transparent #FFFFFF transparent transparent;
}
@media screen and (max-width: 767px) {
  .orientation__balloon::before {
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    top: -29px;
  }
}

.orientation__box {
  background: white;
  border: 1px solid #E3AF13;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 56px;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .orientation__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .orientation__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding: 24px;
  }
}
.orientation__box .hissu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #E3AF13;
  color: white;
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  width: 158px;
  height: 158px;
  line-height: 1.12;
  padding-bottom: 6px;
  top: -19px;
  right: 32px;
}
@media screen and (max-width: 767px) {
  .orientation__box .hissu {
    font-size: 27px;
    width: 95px;
    height: 95px;
    right: -16px;
    top: -60px;
  }
}
.orientation__box .img {
  max-width: 420px;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .orientation__box .img {
    max-width: none;
  }
}
.orientation__box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .orientation__box .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
}
.orientation__box .strong {
  background: #E3AF13;
  color: white;
  display: inline-block;
  font-weight: bold;
  font-size: 24px;
  padding: 3px 11px 6px 18px;
}
@media screen and (max-width: 767px) {
  .orientation__box .strong {
    font-size: 20px;
  }
}
.orientation__box h3 {
  color: #E3AF13;
  font-size: 32px;
  font-weight: bold;
  margin: 8px 0;
}
@media screen and (max-width: 767px) {
  .orientation__box h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .orientation__box .date {
    margin-top: 24px;
  }
}
.orientation__box .date .num {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  color: #E3AF13;
}
@media screen and (max-width: 767px) {
  .orientation__box .date .num {
    font-size: 40px;
    line-height: 1;
  }
}
.orientation__box .date .youbi {
  font-size: 20px;
  font-weight: 500;
}
.orientation__box .date .and {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 500;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .orientation__box .date .and {
    font-size: 28px;
  }
}
.orientation__box .note {
  color: #FF002A;
}
@media screen and (max-width: 767px) {
  .orientation__box .note {
    margin-top: 8px;
  }
}
.orientation__box .time {
  margin-top: 16px;
  max-width: 270px;
  width: 100%;
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .orientation__box .time {
    font-size: 20px;
  }
}
.orientation__box .time p {
  font-size: 24px;
  border-bottom: 1px solid #333333;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.orientation__box .time p span {
  font-size: 18px;
}
.orientation__box .time div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 0;
}
.orientation__box .time div::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 100%;
  border-bottom: dotted 2px #333333;
}
.orientation__box .time dt {
  margin: 0;
  padding: 0 10px 0 0;
  background-color: #ffffff;
  z-index: 2;
  text-align: left;
}
.orientation__box .time dd {
  margin: 0;
  padding: 0 0 0 10px;
  background-color: #ffffff;
  z-index: 2;
  text-align: right;
}

.orientation__anchor {
  margin-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .orientation__anchor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    margin: 72px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .orientation__anchor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    margin: 64px auto 0;
    gap: 24px;
  }
}
.orientation__anchor .btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 14px 64px 16px 35px;
  border-radius: 100px;
  font-size: 26px;
  font-weight: bold;
  color: white;
  position: relative;
  border: 1px solid transparent;
}
@media screen and (max-width: 767px) {
  .orientation__anchor .btn {
    font-size: 20px;
  }
}
.orientation__anchor .btn svg {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 26px;
}
.orientation__anchor .btn path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.orientation__anchor .btn:nth-child(1) {
  background: #3C87CD;
}
.orientation__anchor .btn:nth-child(1):hover {
  color: #3C87CD;
  border-color: #3C87CD;
}
.orientation__anchor .btn:nth-child(1):hover path {
  stroke: #3C87CD;
}
.orientation__anchor .btn:nth-child(2) {
  background: #4AC3E2;
}
.orientation__anchor .btn:nth-child(2):hover {
  color: #4AC3E2;
  border-color: #4AC3E2;
}
.orientation__anchor .btn:nth-child(2):hover path {
  stroke: #4AC3E2;
}
.orientation__anchor .btn:nth-child(3) {
  background: #E69626;
}
.orientation__anchor .btn:nth-child(3):hover {
  color: #E69626;
  border-color: #E69626;
}
.orientation__anchor .btn:nth-child(3):hover path {
  stroke: #E69626;
}
.orientation__anchor .btn:nth-child(4) {
  background: #d5bd06;
}
.orientation__anchor .btn:nth-child(4):hover {
  color: #d5bd06;
  border-color: #d5bd06;
}
.orientation__anchor .btn:nth-child(4):hover path {
  stroke: #d5bd06;
}
.orientation__anchor .btn:hover {
  background: white;
}

/*========================
main-content
========================*/
.c3 {
  background: #F0F5FA;
}

.c1-2 {
  background: #EFF8FB;
}

.s6 {
  background: #FEFAF4;
}

.s4-6 {
  background: #FDFBEC;
}

.flow {
  background: #E2EEFC;
}

.section-head {
  background-blend-mode: multiply, normal;
}
.section-head .inner {
  position: relative;
}
.section-head .goakun {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 32px;
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .section-head .goakun {
    display: none;
    gap: 16px;
    top: -50px;
    right: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.section-head .goakun .balloon {
  font-size: 16px;
  background: white;
  color: #333333;
  font-weight: 500;
  min-width: 147px;
  letter-spacing: normal;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 24px;
  position: relative;
  -webkit-filter: drop-shadow(0 4px 4px rgba(89, 89, 89, 0.25));
          filter: drop-shadow(0 4px 4px rgba(89, 89, 89, 0.25));
}
@media screen and (max-width: 767px) {
  .section-head .goakun .balloon {
    font-size: 13px;
    min-width: 100px;
    padding: 8px 14px;
  }
}
.section-head .goakun .balloon::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 12px 0 12px;
  border-color: white transparent transparent transparent;
  right: -18px;
  top: 20px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .section-head .goakun .balloon::before {
    border-width: 14px 10px 0 10px;
    right: 29px;
    -webkit-transform: none;
            transform: none;
    bottom: -10px;
    top: inherit;
  }
}
.section-head .goakun .img {
  max-width: 117px;
}
@media screen and (max-width: 767px) {
  .section-head .goakun .img {
    max-width: 80px;
  }
}
.section-head .goakun .img.img2 {
  max-width: 160px;
}
@media screen and (max-width: 767px) {
  .section-head .goakun .img.img2 {
    max-width: 110px;
  }
}
.section-head h2 {
  padding: 17px 20px;
  font-size: 40px;
  border-left: white solid 10px;
  color: white;
  font-weight: 700;
  letter-spacing: 5.6px;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .section-head h2 br.is-sp {
    display: inline !important;
  }
}
@media screen and (max-width: 767px) {
  .section-head h2 {
    font-size: 24px;
    letter-spacing: 2px;
    padding: 12px 16px;
  }
}
.c3 .section-head {
  background: url(../img/stripe-bg.png) center center/cover no-repeat, #3C87CD;
}
.c1-2 .section-head {
  background: url(../img/stripe-bg.png) center center/cover no-repeat, #4AC3E2;
}
.s6 .section-head {
  background: url(../img/stripe-bg.png) center center/cover no-repeat, #E69626;
}
.s4-6 .section-head {
  background: url(../img/stripe-bg.png) center center/cover no-repeat, #d5bd06;
}
.flow .section-head {
  background: url(../img/stripe-bg.png) center center/cover no-repeat, #0657B4;
}

.class h3 {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .class h3 {
    font-size: 32px;
    line-height: 1.4;
  }
}
.c3 .class h3 {
  color: #3C87CD;
}
.c1-2 .class h3 {
  color: #4AC3E2;
}
.s6 .class h3 {
  color: #E69626;
}
.s4-6 .class h3 {
  color: #d5bd06;
}
.class h4 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
  padding: 10px 20px 10px 16px;
  gap: 11px;
}
@media screen and (max-width: 767px) {
  .class h4 {
    font-size: 18px;
    padding: 7px 20px 7px 16px;
  }
}
.c3 .class h4 {
  background: #3C87CD;
}
.c1-2 .class h4 {
  background: #4AC3E2;
}
.s6 .class h4 {
  background: #E69626;
}
.s4-6 .class h4 {
  background: #d5bd06;
}

.class__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .class__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .class__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.class__wrap .content .balloon {
  background: white;
  color: #3C87CD;
  display: inline-block;
  position: relative;
  padding: 8px 32px;
  font-weight: bold;
  border-radius: 50px;
  font-size: 22px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .class__wrap .content .balloon {
    font-size: 20px;
  }
}
.class__wrap .content .balloon::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 13.5px 0 13.5px;
  border-color: white transparent transparent transparent;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.class__wrap .content .sub {
  font-size: 24px;
  font-weight: 500;
}
.class__wrap .circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .class__wrap .circle {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.class__wrap .circle .item {
  background: white;
  border: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  font-weight: 700;
  line-height: 126.439%;
  /* 25.288px */
  letter-spacing: -1.2px;
}
@media screen and (max-width: 767px) {
  .class__wrap .circle .item {
    font-size: 15px;
    width: 80px;
    height: 80px;
  }
}
.c3 .class__wrap .circle .item {
  border-color: #3C87CD;
  color: #3C87CD;
}
.c1-2 .class__wrap .circle .item {
  border-color: #4AC3E2;
  color: #4AC3E2;
}
.s6 .class__wrap .circle .item {
  border-color: #E69626;
  color: #E69626;
}
.s4-6 .class__wrap .circle .item {
  border-color: #d5bd06;
  color: #d5bd06;
}

.class__point {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 40px;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .class__point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .class__point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.s4-6 .class__point {
  gap: 10px;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .s4-6 .class__point {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .s4-6 .class__point {
    gap: 40px;
  }
}
.class__point .img {
  max-width: 446px;
}
.class__point .img.img4 {
  max-width: 540px;
}
.class__point ul {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .class__point ul {
    margin-top: 32px;
  }
}
.class__point ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .class__point ul li {
    font-size: 18px;
    margin: 10px 0;
  }
}
.class__point ul li svg {
  width: 52px;
}
@media screen and (max-width: 767px) {
  .class__point ul li svg {
    width: 40px;
  }
}
.class__point ul li span {
  width: calc(100% - 52px - 10px);
}
@media screen and (max-width: 767px) {
  .class__point ul li span {
    width: calc(100% - 40px - 10px);
  }
}
.c1-2 .class__point ul li path {
  fill: #4AC3E2;
}
.s6 .class__point ul li path {
  fill: #E69626;
}
.s4-6 .class__point ul li path {
  fill: #d5bd06;
}
.class__point .fusen {
  background: white;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  padding: 4px 6px 6px 9px;
  color: #4AC3E2;
  border-left: 9px solid #4AC3E2;
  margin-top: 20px;
}

.class__s6-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 58px;
}
@media screen and (max-width: 767px) {
  .class__s6-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
}
.class__s6-content .box1 {
  max-width: 500px;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .class__s6-content .box1 {
    max-width: 320px;
  }
}
.class__s6-content svg {
  margin: 0 40px;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .class__s6-content svg {
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .class__s6-content svg {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    max-width: 20px;
  }
}
.class__s6-content .box2 {
  max-width: 450px;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .class__s6-content .box2 {
    max-width: 320px;
  }
}

.class__s4-6-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .class__s4-6-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 32px;
  }
}
.class__s4-6-content .box1 {
  max-width: 260px;
}
.class__s4-6-content .box2 {
  background: white;
  font-weight: 500;
  padding: 24px 40px;
  margin-top: 40px;
  margin-left: 78px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .class__s4-6-content .box2 {
    margin: 0;
    margin-bottom: 40px;
    padding: 24px;
  }
}
.class__s4-6-content .box2 svg {
  position: absolute;
  left: -28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .class__s4-6-content .box2 svg {
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(-90deg);
            transform: translateX(-50%) rotate(-90deg);
    top: inherit;
    bottom: -30px;
  }
}
.class__s4-6-content .box2 .top {
  font-size: 20px;
  margin: 4px 0 8px;
}
.class__s4-6-content .box2 .top span {
  font-size: 24px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F8F0B3));
  background: linear-gradient(transparent 60%, #F8F0B3 60%);
}
.class__s4-6-content .box2 .mid {
  font-size: 20px;
}
.class__s4-6-content .box2 .mid span {
  font-size: 32px;
  font-weight: bold;
  color: #0657B4;
}
.class__s4-6-content .box2 .bottom {
  font-weight: 400;
  margin-top: 8px;
}

.profile {
  background: white;
  padding: 24px 32px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .profile {
    padding: 24px;
  }
}
.profile .title {
  color: #d5bd06;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.class__course {
  margin: 56px auto;
}
@media screen and (max-width: 767px) {
  .class__course {
    margin: 40px auto;
  }
}
.c3 .class__course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .c3 .class__course {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 700px;
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .c3 .class__course {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.c3 .class__course .item {
  border-color: #3C87CD;
}
.c3 .class__course .title {
  color: #3C87CD;
}
.c3 .class__course .price .num {
  color: #3C87CD;
}
.c1-2 .class__course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .c1-2 .class__course {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 700px;
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .c1-2 .class__course {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.c1-2 .class__course .item {
  border-color: #4AC3E2;
}
.c1-2 .class__course .title {
  color: #4AC3E2;
}
.c1-2 .class__course .title span {
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c1-2 .class__course .title span {
    font-size: 20px;
  }
}
.c1-2 .class__course .flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-top: 12px;
}
.c1-2 .class__course .price {
  margin-left: auto;
  margin-top: 0;
}
.c1-2 .class__course .price .num {
  color: #4AC3E2;
}
.s6 .class__course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
.s6 .class__course .item {
  border-color: #E69626;
}
.s6 .class__course .title {
  color: #E69626;
}
.s6 .class__course .price .num {
  color: #E69626;
}
.s4-6 .class__course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
.s4-6 .class__course .item {
  border-color: #d5bd06;
}
.s4-6 .class__course .title {
  color: #d5bd06;
}
.s4-6 .class__course .price .num {
  color: #d5bd06;
}
.s4-6 .class__course .price {
  margin-top: 0;
  text-align: right;
}
.s4-6 .class__course .price .small {
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .s4-6 .class__course .price .note {
    font-size: 14px;
  }
}
.class__course .item {
  width: 100%;
  background: white;
  padding: 25px 30px;
  border: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .class__course .item {
    padding: 24px 16px;
  }
}
.s6 .class__course .item, .s4-6 .class__course .item {
  max-width: 840px;
  margin: 0 auto;
}
.class__course .title {
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .class__course .title {
    font-size: 24px;
  }
}
.class__course .subject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  padding: 16px 0 24px;
}
@media screen and (max-width: 767px) {
  .class__course .subject {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 250px;
  }
}
.class__course .subject div {
  font-size: 20px;
  font-weight: 500;
  width: 69px;
  height: 69px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .class__course .subject div {
    font-size: 16px;
    width: 60px;
    height: 60px;
  }
}
.class__course .en {
  background: #FFFDD7;
  color: #FF7A00;
}
.class__course .math {
  background: #DFF9FF;
  color: #0063AB;
}
.class__course .jp {
  background: #FFEDED;
  color: #FF234B;
}
.class__course .sci {
  background: #E9FFDF;
  color: #00BA07;
}
.class__course .soc {
  background: #F4ECFF;
  color: #7D2EFF;
}
.class__course .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .class__course .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.class__course .price {
  font-size: 46px;
  font-weight: bold;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .class__course .price {
    font-size: 40px;
  }
  .s6 .class__course .price {
    margin-top: 0;
  }
}
.class__course p {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .class__course p {
    font-size: 18px;
  }
}
.class__course .num {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .class__course .num {
    text-align: right;
  }
}
.class__course .num span {
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  margin-right: 16px;
}
.class__course .small {
  font-size: 20px;
  font-weight: 400;
  text-align: right;
}
.class__course .small.left {
  text-align: left;
  margin-top: 8px;
}
.class__course .small span {
  font-size: 24px;
}

.class__schedule {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .class__schedule {
    margin-bottom: 40px;
  }
}
.class__schedule .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .class__schedule .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 8px;
  }
}
.class__schedule .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .class__schedule .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .class__schedule .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.class__schedule .table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .class__schedule .table:not(:first-child) {
    margin-top: 32px;
  }
}
.s6 .class__schedule .table, .s4-6 .class__schedule .table {
  width: 50%;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .s6 .class__schedule .table, .s4-6 .class__schedule .table {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .s6 .class__schedule .table, .s4-6 .class__schedule .table {
    width: 100%;
  }
}
.class__schedule .table .title {
  text-align: center;
}
.class__schedule .table .title span {
  display: inline-block;
  padding: 0 10px;
  font-size: 32px;
  color: #4AC3E2;
  font-weight: bold;
  border-bottom: 2px solid #4AC3E2;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .class__schedule .table .title span {
    font-size: 24px;
  }
}
.class__schedule .table table {
  width: 100%;
  background: white;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .class__schedule .table table {
    font-size: 14px;
  }
}
.class__schedule .table table,
.class__schedule .table td,
.class__schedule .table th {
  border: 1px solid #595959;
  border-collapse: collapse;
}
.class__schedule .table td,
.class__schedule .table th {
  padding: 3px;
  height: 25px;
}
.class__schedule .table th {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .class__schedule .table th {
    font-size: 16px;
  }
}
.class__schedule .table th.date {
  width: 24%;
}
.class__schedule .table th.subject {
  width: 45%;
}
.class__schedule .table td {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  position: relative;
  padding: 3px 16px;
}
@media screen and (max-width: 767px) {
  .class__schedule .table td {
    padding: 3px 10px;
  }
}
.class__schedule .table td.date {
  text-align: center;
  font-size: 24px;
  padding: 0;
  padding-right: 28px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .class__schedule .table td.date {
    font-size: 18px;
    padding-left: 3px;
  }
}
.class__schedule .table td.date.date-pb {
  padding-bottom: 20px;
}
.class__schedule .table td.date.date-pb span {
  -webkit-transform: translateY(-95%);
          transform: translateY(-95%);
}
@media screen and (max-width: 767px) {
  .class__schedule .table td.date.date-pb span {
    -webkit-transform: translateY(-95%);
            transform: translateY(-95%);
  }
}
.class__schedule .table td.time {
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .class__schedule .table td.time {
    padding: 3px 2px;
    font-size: 15px;
  }
}
.class__schedule .table td span {
  font-size: 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #000;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  padding-top: 1px;
  margin-left: 4px;
  position: absolute;
  right: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .class__schedule .table td span {
    right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .class__schedule .table td span {
    right: 6px;
  }
}
.class__schedule .table td span.level {
  position: relative;
  width: auto;
  height: auto;
  -webkit-transform: none;
          transform: none;
  top: inherit;
  right: inherit;
  border-radius: 4px;
  margin: 0;
  padding: 1px 4px 0;
}
.class__schedule .table td span.hyojun {
  border-color: #2d60be !important;
  color: #2d60be;
}
.class__schedule .table td span.hatten {
  border-color: #FF7A90 !important;
  color: #FF7A90;
}
.class__schedule .table td span.mogi-exam {
  width: 100%;
  height: auto;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(130%) !important;
          transform: translateX(-50%) translateY(130%) !important;
  top: inherit;
  right: inherit;
  margin: 0;
  border: none;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .class__schedule .table td span.mogi-exam {
    font-size: 14px;
  }
}
.class__schedule .table td span.liveclass {
  color: #0657B4;
  background: white;
  width: 100px;
  border-radius: 4px;
  line-height: 1.3;
  -webkit-transform: translateX(-50%) translateY(150%) !important;
          transform: translateX(-50%) translateY(150%) !important;
}
@media screen and (max-width: 767px) {
  .class__schedule .table td span.liveclass {
    width: 74px;
    font-size: 13px;
  }
}
.class__schedule .table th {
  color: white;
  text-align: center;
}
.c3 .class__schedule .table table,
.c3 .class__schedule .table td,
.c3 .class__schedule .table th {
  border-color: #3C87CD;
}
.c3 .class__schedule .table th {
  background: #3C87CD;
}
.c3 .class__schedule .table td.date {
  color: #3C87CD;
  background: #ecf6ff;
}
.c3 .class__schedule .table td span {
  border-color: #3C87CD;
}
.c1-2 .class__schedule .table table,
.c1-2 .class__schedule .table td,
.c1-2 .class__schedule .table th {
  border-color: #4AC3E2;
}
.c1-2 .class__schedule .table th {
  background: #4AC3E2;
}
.c1-2 .class__schedule .table td.date {
  color: #4AC3E2;
  background: #ebf8fc;
}
.c1-2 .class__schedule .table td span {
  border-color: #4AC3E2;
}
.s6 .class__schedule .table table,
.s6 .class__schedule .table td,
.s6 .class__schedule .table th {
  border-color: #E69626;
}
.s6 .class__schedule .table th {
  background: #E69626;
}
.s6 .class__schedule .table td.date {
  color: #E69626;
  background: #fff8ed;
}
.s6 .class__schedule .table td span {
  border-color: #E69626;
}
.s4-6 .class__schedule .table {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .s4-6 .class__schedule .table {
    width: 100%;
  }
}
.s4-6 .class__schedule .table .subject {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .s4-6 .class__schedule .table .subject {
    width: 34%;
  }
}
.s4-6 .class__schedule .table table,
.s4-6 .class__schedule .table td,
.s4-6 .class__schedule .table th {
  border-color: #d5bd06;
}
.s4-6 .class__schedule .table th {
  background: #d5bd06;
}
.s4-6 .class__schedule .table td.date {
  color: #d5bd06;
  background: #fdfae4;
}
.s4-6 .class__schedule .table td.time {
  text-align: left;
}
.s4-6 .class__schedule .table td span {
  border-color: #d5bd06;
}
.class__schedule .note {
  font-size: 14px;
  margin-top: 16px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .class__schedule .small {
    font-size: 12px;
  }
}

/*========================
achieve-section
========================*/
@media screen and (max-width: 767px) {
  .achieve-sec {
    padding-top: 0px;
  }
}

.achieve {
  background: #F9F7EF;
  padding: 56px 0;
  margin-top: 80px;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .achieve {
    margin-top: 110px;
  }
}
@media screen and (max-width: 767px) {
  .achieve {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 80px;
    padding: 32px 24px;
  }
}

.achieve__heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: bold;
  color: #E3AF13;
}
@media screen and (max-width: 767px) {
  .achieve__heading {
    font-size: 24px;
  }
}
.achieve__heading span {
  color: #0657B4;
}

.achieve__school {
  max-width: 670px;
  margin: 0 auto;
  position: relative;
}
.achieve__school .goukaku {
  max-width: 147px;
  position: absolute;
  right: -90px;
  top: -190px;
}
@media screen and (max-width: 1199.5px) and (min-width: 768px) {
  .achieve__school .goukaku {
    right: -14px;
    top: -256px;
  }
}
@media screen and (max-width: 767px) {
  .achieve__school .goukaku {
    max-width: 120px;
    right: -15px;
    top: -210px;
    max-width: 110px;
  }
}

.student {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7%;
}
@media screen and (max-width: 767px) {
  .student {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
    margin-top: 40px;
  }
}
.student .img {
  max-width: 300px;
  margin: 0 auto;
}
.student .content {
  background: white;
  text-align: center;
  padding: 16px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .student .content {
    margin-top: 0px;
  }
}
.student .name {
  font-weight: 500;
  margin-bottom: 8px;
}
.student .name span {
  font-size: 20px;
  font-weight: bold;
}
.student .bottom {
  font-weight: 500;
}
.student .year {
  background: #0657B4;
  color: white;
  padding: 2px 10px 5px;
  border-radius: 50px;
}
.student .strong {
  font-size: 20px;
  font-weight: bold;
  color: #0657B4;
  margin: 0 6px;
}

/*========================
flow
========================*/
.flow {
  background: #ECF3FF;
}
@media screen and (max-width: 767px) {
  .flow .goakun {
    top: -58px;
  }
}

.flow__items {
  max-width: 990px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .flow__items {
    margin: 0 auto 60px;
  }
}
.flow__items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow__items .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.flow__items .item:not(:first-child) {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .flow__items .item:not(:first-child) {
    margin-top: 24px;
  }
}
.flow__items .item::before {
  content: "";
  background: white;
  height: 4px;
  width: 90%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .flow__items .item::before {
    height: 90%;
    width: 4px;
    left: 40px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.flow__items .icon {
  width: 86px;
  margin-right: 24px;
  position: relative;
  z-index: 2;
}
.flow__items .head {
  width: 270px;
  margin-right: 24px;
  font-weight: 500;
  position: relative;
  z-index: 2;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .flow__items .head {
    width: 100%;
    padding-left: 100px;
    margin-top: -76px;
  }
}
.flow__items .step {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
}
.flow__items h3 {
  font-size: 24px;
  color: #0657B4;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .flow__items h3 {
    font-size: 20px;
    margin-top: 0;
  }
}
.flow__items .body {
  width: calc(100% - 86px - 24px - 270px - 24px);
  background: white;
  padding: 16px 24px;
  min-height: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .flow__items .body {
    width: 100%;
    margin-top: 32px;
    padding: 16px 14px;
  }
}
.flow__items .body .small {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .flow__items .body .small {
    font-size: 13px;
  }
}

/*========================
footer
========================*/
.footer {
  background: #d5bd06;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 10px 0;
    padding-bottom: 80px;
    font-size: 12px;
  }
}

.footer-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  padding: 40px 0;
  gap: 10px 0;
  border-top: 1px solid #F9F7EF;
}
@media screen and (max-width: 767px) {
  .footer-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 1em;
    padding: 30px 16px;
    padding-left: calc(16px + 1em);
  }
  .footer-lists li {
    list-style: disc;
  }
  .footer-lists li::marker {
    color: #E3AF13;
  }
}

.footer-lists__item {
  padding: 0 20px;
  border-right: 1px solid #333333;
}
@media screen and (max-width: 767px) {
  .footer-lists__item {
    border-right: none;
    padding: 0;
  }
}
.footer-lists__item:last-child {
  border-right: none;
}
.footer-lists__item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-lists__item a:hover {
  color: #E3AF13;
}