@charset "UTF-8";
/* 冬期講習
=========================================== */
main {
  font-family: "Noto Sans JP", sans-serif;
}

.highlight {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fefe30));
  background: -webkit-linear-gradient(transparent 70%, #fefe30 70%);
  background: linear-gradient(transparent 70%, #fefe30 70%);
}

.sec_title {
  margin: 0 auto 40px;
  font-size: clamp(2.2rem, 2.8vw, 2.4rem);
  font-weight: bold;
  color: #199525;
  text-align: center;
  background: #DCF1E3;
  padding: 48px 0 20px;
  position: relative;
}
@media (max-width: 768px) {
  .sec_title {
    padding: 40px 0 16px;
  }
}
.sec_title:before {
  content: "";
  position: absolute;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "roboto", sans-serif;
  color: #81CE9D;
  text-transform: capitalize;
  left: 0;
  right: 0;
  top: 22px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sec_title:before {
    font-size: 1.6rem;
    top: 16px;
  }
}

.scroll_img {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .scroll_img img {
    max-width: none;
    width: 800px;
    overflow-x: auto;
  }
}
@media (max-width: 560px) {
  .scroll_img img {
    width: 600px;
  }
}

.message {
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  .message {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 1079px) {
  .message {
    padding: 20px;
  }
}
.message .message_box {
  background: #fae5e5;
  border: solid 1px #cf0000;
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  .message .message_box {
    padding: 20px;
  }
}
.message .message_box p {
  text-align: center;
  color: #cf0000;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .message .message_box p {
    font-size: 1.3rem;
    text-align: left;
  }
}

#mv h2 {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto 80px;
}
@media (max-width: 768px) {
  #mv h2 {
    margin-bottom: 40px;
  }
}
#mv h2 > img {
  width: 100%;
  height: 100%;
}
#mv .mv_copy > p {
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
#mv .mv_copy > p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #mv .mv_copy > p {
    margin-bottom: 10px;
  }
}

@media (max-width: 560px) {
  #education .sec_title {
    margin-bottom: 20px;
  }
}
#education .sec_title:before {
  content: "knowledge education";
}
#education .list_menu {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 560px) {
  #education .list_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
}
#education .list_menu .menu_cont {
  cursor: pointer;
  width: calc((100% - 28px) / 3);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  border: 3px solid;
  border-radius: 16px 16px 0 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 14px 0;
}
@media (max-width: 560px) {
  #education .list_menu .menu_cont {
    width: 100%;
    border-radius: 16px;
    padding: 6px;
  }
}
#education .list_menu .menu_cont.high {
  color: #26549A;
  border-color: #26549A;
}
#education .list_menu .menu_cont.high.active {
  color: #fff;
  background: #26549A;
}
#education .list_menu .menu_cont.middle {
  color: #199525;
  border-color: #199525;
}
#education .list_menu .menu_cont.middle.active {
  color: #fff;
  background: #199525;
}
#education .list_menu .menu_cont.element {
  color: #FF5387;
  border-color: #FF5387;
}
#education .list_menu .menu_cont.element.active {
  color: #fff;
  background: #FF5387;
}
@media (hover: hover) {
  #education .list_menu .menu_cont:hover.high {
    color: #fff;
    background: #26549A;
  }
  #education .list_menu .menu_cont:hover.middle {
    color: #fff;
    background: #199525;
  }
  #education .list_menu .menu_cont:hover.element {
    color: #fff;
    background: #FF5387;
  }
}
#education .list_menu span {
  display: block;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: bold;
}
#education .list_content {
  padding: 70px;
  display: none;
}
@media (max-width: 993px) {
  #education .list_content {
    padding: 50px;
  }
}
@media (max-width: 560px) {
  #education .list_content {
    padding: 30px 20px;
  }
}
#education .list_content.is_show {
  display: block;
}
#education .list_content h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: bold;
  text-align: left;
  position: relative;
  padding-left: 1em;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #education .list_content h3 {
    margin-bottom: 16px;
  }
}
@media (max-width: 560px) {
  #education .list_content h3 {
    padding-left: 0.8em;
  }
}
#education .list_content h3:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 36px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media (max-width: 768px) {
  #education .list_content h3:before {
    width: 3px;
    height: 28px;
  }
}
#education .list_content .red_box {
  background: #E50B12;
  padding: 20px 12px;
  color: #fff;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: bold;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#education .list_content .red_box > span {
  color: #E50B12;
  background: #fff;
  display: inline-block;
  padding: 4px 8px;
  line-height: 1.4;
  margin-bottom: 4px;
}
#education .list_content .table > p {
  color: #fff;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
  font-weight: bold;
  background: #199525;
  padding: 12px 0;
  text-align: center;
}
#education .list_content .table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
}
#education .list_content .table table th {
  width: 30%;
  background: #E1FFE3;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: bold;
  padding: 18px 25px;
  vertical-align: middle;
}
@media (max-width: 993px) {
  #education .list_content .table table th {
    padding: 16px;
  }
}
@media (max-width: 560px) {
  #education .list_content .table table th {
    padding: 12px;
  }
}
#education .list_content .table table td {
  width: 100%;
  background: #fff;
  padding: 18px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
}
@media (max-width: 993px) {
  #education .list_content .table table td {
    padding: 16px;
  }
}
@media (max-width: 560px) {
  #education .list_content .table table td {
    padding: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#education .list_content .table table td p {
  display: inline-block;
}
#education .list_content .table table td p:last-child {
  color: #E50B12;
  font-weight: bold;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.4;
  padding-left: 10px;
}
@media (max-width: 560px) {
  #education .list_content .table table td p:last-child {
    padding-left: 0;
  }
}
#education .list_content .table table td p:last-child > span {
  font-size: 2.2rem;
}
#education .list_content .table table td p:first-child {
  position: relative;
  padding-right: 1.6em;
  vertical-align: text-bottom;
}
#education .list_content .table table td p:first-child:after {
  content: "⇒";
  position: absolute;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#education .list_content .price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
@media (max-width: 768px) {
  #education .list_content .price {
    gap: 10px;
  }
}
#education .list_content .price > span {
  display: inline-block;
  background: #199525;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 4px 10px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  #education .list_content .price > span {
    font-size: 1.4rem;
  }
}
#education .list_content .price .money p:first-child {
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: bold;
  color: #E50B12;
  line-height: 1.4;
  display: inline-block;
}
#education .list_content .price .money p:first-child span {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  #education .list_content .price .money p:first-child span {
    font-size: 1.4rem;
  }
}
#education .list_content .price .money p:last-child {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #E50B12;
}
@media (max-width: 768px) {
  #education .list_content .price .money p:last-child {
    font-size: 1.4rem;
  }
}
#education .list_content .point {
  margin-bottom: 60px;
}
#education .list_content .point:last-child {
  margin-bottom: 0;
}
#education .list_content .point h4 {
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  font-weight: bold;
  color: #fff;
  background: #199525;
  padding: 12px 12px 12px 2.5em;
  line-height: 1.4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
}
@media (max-width: 993px) {
  #education .list_content .point h4 {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  #education .list_content .point h4 {
    padding: 24px 24px 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 6px;
  }
}
#education .list_content .point h4:before {
  content: "";
  position: absolute;
  background: #FFEE00;
  border-radius: 50%;
  border: 3px solid #199525;
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: bold;
  color: #199525;
  width: 80px;
  height: 80px;
  left: -36px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 993px) {
  #education .list_content .point h4:before {
    width: 60px;
    height: 60px;
    left: -30px;
  }
}
@media (max-width: 768px) {
  #education .list_content .point h4:before {
    width: 42px;
    height: 42px;
    left: -16px;
    top: -20px;
    bottom: unset;
    margin: unset;
  }
}
#education .list_content .point h4 > span {
  display: inline-block;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  color: #E50B12;
  background: #fff;
  border-radius: 4px;
  padding: 4px 6px;
  vertical-align: middle;
}
#education .list_content .point .point_content {
  background: #fff;
  padding: 32px 40px;
}
@media (max-width: 768px) {
  #education .list_content .point .point_content {
    padding: 24px 30px;
    text-align: center;
  }
}
@media (max-width: 560px) {
  #education .list_content .point .point_content {
    padding: 16px;
  }
}
#education .list_content .point .point_content > p {
  font-size: 2rem;
  text-align: left;
}
@media (max-width: 768px) {
  #education .list_content .point .point_content > p {
    font-size: 1.6rem;
  }
}
#education .list_content .point .point_content > img {
  width: 100%;
}
#education .list_content .point.num01 h4:before {
  content: "1";
}
#education .list_content .point.num02 h4:before {
  content: "2";
}
#education .list_content .point.num03 h4:before {
  content: "3";
}
#education .list_content .point.num04 h4:before {
  content: "4";
}
#education .list_content .under_grade .top_content > .flex {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  #education .list_content .under_grade .top_content > .flex {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 560px) {
  #education .list_content .under_grade .top_content > .flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#education .list_content .under_grade .top_content > .flex p:first-child {
  width: 64%;
  font-size: clamp(2.4rem, 3.5vw, 4.4rem);
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.6;
}
@media (max-width: 768px) {
  #education .list_content .under_grade .top_content > .flex p:first-child {
    width: 100%;
  }
}
#education .list_content .top_grade .top_content h3 {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #education .list_content .top_grade .top_content h3 {
    margin-bottom: 12px;
  }
}
#education .list_content .top_grade .top_content > p {
  font-size: clamp(1.4rem, 2vw, 2.4rem);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  #education .list_content .top_grade .top_content > p {
    margin-bottom: 50px;
  }
}
#education .list_content .all_grade {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #education .list_content .all_grade {
    margin-bottom: 40px;
  }
}
#education .list_content .all_grade > h3 {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  #education .list_content .all_grade > h3 {
    margin-bottom: 16px;
  }
}
#education .list_content .all_grade > p {
  font-weight: bold;
  font-size: clamp(2.4rem, 3.5vw, 4.4rem);
  margin-bottom: 20px;
}
#education .list_content .all_grade .top_content > p {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 16px;
}
#education .list_content .all_grade .top_content > .flex.flex-between {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  gap: 30px;
}
@media (max-width: 993px) {
  #education .list_content .all_grade .top_content > .flex.flex-between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 560px) {
  #education .list_content .all_grade .top_content > .flex.flex-between {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#education .list_content .all_grade .top_content .table {
  width: 64%;
}
@media (max-width: 993px) {
  #education .list_content .all_grade .top_content .table {
    width: 100%;
  }
}
#education .list_content .all_grade .top_content .table td {
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  color: #E50B12;
  font-weight: bold;
  line-height: 1.4;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
#education .list_content .all_grade .top_content .table td > span {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
}
#education .list_content .all_grade .top_content .training {
  width: 30%;
  border: 3px solid #26549A;
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 993px) {
  #education .list_content .all_grade .top_content .training {
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 768px) {
  #education .list_content .all_grade .top_content .training {
    padding: 16px 20px;
  }
}
#education .list_content .all_grade .top_content .training li {
  font-size: clamp(1.6rem, 2.5vw, 3.2rem);
  color: #26549A;
  width: 100%;
}
@media (max-width: 993px) {
  #education .list_content .all_grade .top_content .training li {
    width: 46%;
  }
}
@media (max-width: 560px) {
  #education .list_content .all_grade .top_content .training li {
    width: 100%;
  }
}
#education .high.list_content {
  background: #ECF8FF;
}
#education .high.list_content h3 {
  color: #26549A;
}
#education .high.list_content h3:before {
  background: #26549A;
}
@media (max-width: 768px) {
  #education .high.list_content .under_grade .top_content > p {
    font-size: 1.4rem;
  }
}
#education .high.list_content .top_content {
  margin-bottom: 40px;
}
#education .high.list_content .top_content > .flex {
  margin-bottom: 16px;
}
#education .high.list_content .top_content > p {
  font-size: 2rem;
}
@media (max-width: 768px) {
  #education .high.list_content .top_content > p {
    font-size: 1.6rem;
  }
}
#education .high.list_content .bottom_content {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #education .high.list_content .bottom_content {
    margin-bottom: 40px;
  }
}
#education .high.list_content .bottom_content .table {
  width: 48%;
}
@media (max-width: 993px) {
  #education .high.list_content .bottom_content .table {
    width: 100%;
  }
}
#education .high.list_content .point.num01 .point_content > img {
  width: 65%;
}
@media (max-width: 768px) {
  #education .high.list_content .point.num01 .point_content > img {
    width: 100%;
  }
}
#education .high.list_content .point.num02 .point_content > p {
  margin-bottom: 20px;
}
#education .high.list_content .point.num02 .point_content .price {
  margin-bottom: 40px;
}
#education .high.list_content .point.num03 .point_content > p {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #education .high.list_content .point.num03 .point_content > p {
    margin-bottom: 20px;
  }
}
#education .high.list_content .point.num03 .point_content .high_point_price {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  gap: 10px;
}
@media (max-width: 768px) {
  #education .high.list_content .point.num03 .point_content .high_point_price {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#education .high.list_content .point.num03 .point_content .high_point_price .price_box {
  background: #ECF7FF;
  border-radius: 8px;
  padding: 36px 20px;
  text-align: center;
}
@media (max-width: 768px) {
  #education .high.list_content .point.num03 .point_content .high_point_price .price_box {
    padding: 26px 20px;
  }
}
#education .high.list_content .point.num03 .point_content .high_point_price .price_box .plus {
  width: 30px;
}
#education .high.list_content .point.num03 .point_content .high_point_price .price_box > p {
  font-size: clamp(2.4rem, 3.5vw, 4.2rem);
  font-weight: bold;
  color: #E50B12;
  line-height: 1.4;
  margin-top: 12px;
}
#education .high.list_content .point.num03 .point_content .high_point_price .price_box > p span {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  #education .high.list_content .point.num03 .point_content .high_point_price .price_box > p span {
    font-size: 1.4rem;
  }
}
#education .high.list_content .point.num03 .point_content .high_point_price .price_box .time_box {
  background: #fff;
  border-radius: 8px;
  padding: 10px 40px;
}
@media (max-width: 993px) {
  #education .high.list_content .point.num03 .point_content .high_point_price .price_box .time_box {
    padding: 10px 24px;
  }
}
#education .high.list_content .point.num03 .point_content .high_point_price .price_box .time_box > p {
  font-size: clamp(1.6rem, 1.8vw, 2.2rem);
  font-weight: bold;
  color: #26549A;
  line-height: 1.4;
}
#education .high.list_content .point.num03 .point_content .high_point_price .price_box .date {
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: bold;
}
#education .high.list_content .point.num03 .point_content .high_point_price .price_box .date p {
  display: inline-block;
}
#education .high.list_content .point.num03 .point_content .high_point_price .price_box .date > p:first-child {
  position: relative;
  padding-right: 20px;
}
@media (max-width: 993px) {
  #education .high.list_content .point.num03 .point_content .high_point_price .price_box .date > p:first-child {
    padding-right: 12px;
  }
}
#education .high.list_content .point.num03 .point_content .high_point_price .price_box .date > p:first-child:after {
  content: "";
  position: absolute;
  background: #222222;
  width: 10px;
  height: 10px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 50%;
}
@media (max-width: 993px) {
  #education .high.list_content .point.num03 .point_content .high_point_price .price_box .date > p:first-child:after {
    width: 6px;
    height: 6px;
  }
}
#education .high.list_content .point.num03 .point_content .high_point_price .box01 {
  width: 32%;
}
@media (max-width: 768px) {
  #education .high.list_content .point.num03 .point_content .high_point_price .box01 {
    width: 100%;
  }
}
#education .high.list_content .point.num03 .point_content .high_point_price .box02 {
  width: 66%;
}
@media (max-width: 768px) {
  #education .high.list_content .point.num03 .point_content .high_point_price .box02 {
    width: 100%;
  }
}
#education .high.list_content .point.num03 .point_content .high_point_price .box02 > .flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
@media (max-width: 768px) {
  #education .high.list_content .point.num03 .point_content .high_point_price .box02 > .flex {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 560px) {
  #education .high.list_content .point.num03 .point_content .high_point_price .box02 > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#education .high.list_content .point.num03 .point_content .high_point_price .box02 .time_box {
  width: 48%;
}
@media (max-width: 560px) {
  #education .high.list_content .point.num03 .point_content .high_point_price .box02 .time_box {
    width: 100%;
  }
}
#education .middle.list_content {
  background: #F8FFEE;
}
#education .middle.list_content h3 {
  color: #199525;
}
#education .middle.list_content h3:before {
  background: #199525;
}
#education .middle.list_content .under_grade .top_content {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #education .middle.list_content .under_grade .top_content {
    margin-bottom: 40px;
  }
}
#education .middle.list_content .under_grade .top_content > .flex.flex-between {
  margin-bottom: 40px;
}
#education .middle.list_content .point.num01 .point_content {
  text-align: center;
}
#education .middle.list_content .point.num01 .point_content > img {
  width: 60%;
}
@media (max-width: 768px) {
  #education .middle.list_content .point.num01 .point_content > img {
    width: 100%;
  }
}
#education .middle.list_content .point.num02 .point_content > p {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: bold;
}
#education .element.list_content {
  background: #FFF5F8;
}
#education .element.list_content h3 {
  color: #FF5387;
}
#education .element.list_content h3:before {
  background: #FF5387;
}
#education .element.list_content .all_grade .top_content .training {
  padding: 16px 12px;
  width: 32%;
  gap: 4px;
}
@media (max-width: 993px) {
  #education .element.list_content .all_grade .top_content .training {
    gap: 10px;
    width: 100%;
  }
}
#education .element.list_content .all_grade .top_content .training span {
  color: #fff;
  background: #26549A;
  font-weight: bold;
  font-size: 1.6rem;
  display: inline-block;
  padding: 2px 10px;
  max-width: 90px;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  #education .element.list_content .all_grade .top_content .training span {
    font-size: 1.4rem;
    max-width: 80px;
  }
}
#education .element.list_content .all_grade .top_content .training li {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
@media (max-width: 993px) {
  #education .element.list_content .all_grade .top_content .training li:last-child {
    width: 100%;
  }
}

#skill .sec_title:before {
  content: "skill";
}
#skill > .flex {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  gap: 24px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #skill > .flex {
    margin-bottom: 24px;
  }
}
#skill > .flex p {
  width: 48%;
}
@media (max-width: 768px) {
  #skill > .flex p {
    width: 100%;
  }
}
#skill > .flex img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  #skill .scroll_img img {
    max-width: none;
    width: 900px;
    overflow-x: auto;
  }
}
@media (max-width: 560px) {
  #skill .scroll_img img {
    width: 600px;
  }
}

#about .sec_title:before {
  content: "about";
}
#about > p {
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
#about .about_content {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 768px) {
  #about .about_content {
    gap: 36px;
  }
}
#about .about_content .about_one {
  width: calc((100% - 60px) / 3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 993px) {
  #about .about_content .about_one {
    width: calc((100% - 30px) / 3);
  }
}
@media (max-width: 768px) {
  #about .about_content .about_one {
    width: 100%;
  }
}
#about .about_content .about_one figure {
  width: 100%;
  height: auto;
}
#about .about_content .about_one figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .about_content .about_one > h3 {
  margin: 16px 0;
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  font-weight: bold;
  border-left: 8px solid #11A73B;
  padding-left: 10px;
}
#about .about_content .about_one > h3 span {
  color: #11A73B;
}
#about .about_content .about_one > p {
  background: #F8F8F8;
  padding: 20px;
  font-size: 1.6rem;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 768px) {
  #about .about_content .about_one > p {
    font-size: 1.4rem;
  }
}
#about .about_btn {
  max-width: 420px;
  width: 100%;
  background: #11A73B;
  border: 3px solid #11A73B;
  margin: 60px auto;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  #about .about_btn {
    max-width: 300px;
    margin-top: 40px;
  }
}
#about .about_btn a {
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
@media (max-width: 768px) {
  #about .about_btn a {
    font-size: 1.6rem;
    padding: 15px 0;
  }
}
@media (hover: hover) {
  #about .about_btn:hover {
    background: #fff;
  }
  #about .about_btn:hover a {
    color: #11A73B;
  }
}
#about .different h3 {
  font-size: 3.6rem;
  font-weight: bold;
  color: #11A73B;
  position: relative;
  padding-left: 56px;
  margin-bottom: 40px;
}
@media (max-width: 993px) {
  #about .different h3 {
    font-size: 2.4rem;
    padding-left: 32px;
  }
}
@media (max-width: 768px) {
  #about .different h3 {
    font-size: 2rem;
    padding-left: 28px;
    margin-bottom: 20px;
  }
}
#about .different h3:before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  background: #11A73B;
  left: 0;
  top: 16px;
}
@media (max-width: 993px) {
  #about .different h3:before {
    width: 20px;
    height: 20px;
    top: 14px;
  }
}
@media (max-width: 768px) {
  #about .different h3:before {
    width: 16px;
    height: 16px;
    top: 12px;
  }
}

#contact {
  background: #FEF7DB;
  padding: 40px 80px;
  text-align: center;
}
@media (max-width: 768px) {
  #contact {
    padding: 40px 20px;
  }
}
#contact > h2 {
  font-size: 5.6rem;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #E50B12;
  line-height: 1.6;
  position: relative;
  display: inline-block;
  padding: 0 40px;
  margin-bottom: 20px;
}
@media (max-width: 993px) {
  #contact > h2 {
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    padding: 0 25px;
  }
}
#contact > h2:before, #contact > h2:after {
  content: "";
  position: absolute;
  width: 26px;
  height: 65px;
  top: 12px;
}
@media (max-width: 993px) {
  #contact > h2:before, #contact > h2:after {
    width: 16px;
    height: 35px;
  }
}
@media (max-width: 768px) {
  #contact > h2:before, #contact > h2:after {
    top: 4px;
  }
}
#contact > h2:before {
  background: url(/lp/2023/winter/img/line_left.png) no-repeat;
  background-size: contain;
  left: 0;
}
#contact > h2:after {
  background: url(/lp/2023/winter/img/line_right.png) no-repeat;
  background-size: contain;
  right: 0;
}
#contact > p {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: bold;
  color: #fff;
  background: #E50B12;
  margin-bottom: 60px;
}
@media (max-width: 993px) {
  #contact > p {
    margin-bottom: 40px;
  }
}
@media (max-width: 560px) {
  #contact > p {
    margin-bottom: 20px;
  }
}
#contact .contact_btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  margin-bottom: 60px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 768px) {
  #contact .contact_btn {
    gap: 10px;
  }
}
@media (max-width: 560px) {
  #contact .contact_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}
#contact .contact_btn .box {
  width: 50%;
}
@media (max-width: 560px) {
  #contact .contact_btn .box {
    width: 100%;
  }
}
#contact .contact_btn .box > p {
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
  font-weight: bold;
  background: #fff;
  padding: 6px;
  width: 82%;
  position: relative;
  margin: 0 auto 26px;
}
@media (max-width: 560px) {
  #contact .contact_btn .box > p {
    width: 280px;
    margin-bottom: 20px;
  }
}
#contact .contact_btn .box > p:after {
  content: "";
  position: absolute;
  background: #fff;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  width: 20px;
  height: 20px;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 768px) {
  #contact .contact_btn .box > p:after {
    width: 16px;
    height: 16px;
    bottom: -10px;
  }
}
#contact .contact_btn .box .btn {
  border-radius: 16px;
  border: 3px solid;
  width: 100%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media (max-width: 560px) {
  #contact .contact_btn .box .btn {
    width: 280px;
  }
}
#contact .contact_btn .box .btn > a {
  width: 100%;
  padding: 0.65em;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.8rem);
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#contact .contact_btn .box.experience > p {
  color: #FF4B0C;
  border: 2px solid #FF4B0C;
}
#contact .contact_btn .box.experience > p:after {
  border-color: #FF4B0C;
}
#contact .contact_btn .box.experience .btn {
  border-color: #FF4B0C;
  background: #FF4B0C;
}
@media (hover: hover) {
  #contact .contact_btn .box.experience .btn:hover {
    background: #fff;
  }
  #contact .contact_btn .box.experience .btn:hover a {
    color: #FF4B0C;
  }
}
#contact .contact_btn .box.request > p {
  color: #199525;
  border: 2px solid #199525;
}
#contact .contact_btn .box.request > p:after {
  border-color: #199525;
}
#contact .contact_btn .box.request .btn {
  border-color: #199525;
  background: #199525;
}
@media (hover: hover) {
  #contact .contact_btn .box.request .btn:hover {
    background: #fff;
  }
  #contact .contact_btn .box.request .btn:hover a {
    color: #199525;
  }
}
#contact .contact_info > p {
  color: #0071BB;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: bold;
  margin-bottom: 22px;
}
#contact .contact_info .contact_link {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  #contact .contact_info .contact_link {
    gap: 14px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#contact .contact_info .contact_link a, #contact .contact_info .contact_link > img {
  width: 48%;
}
@media (max-width: 768px) {
  #contact .contact_info .contact_link a, #contact .contact_info .contact_link > img {
    width: 70%;
  }
}
@media (max-width: 560px) {
  #contact .contact_info .contact_link a, #contact .contact_info .contact_link > img {
    width: 90%;
  }
}
@media (min-width: 769px) {
  #contact .contact_info .contact_link a {
    pointer-events: none;
  }
}
#contact .contact_info .contact_link a img {
  width: 100%;
}