@charset "UTF-8";
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Inter", "Roboto", sans-serif;
  background-color: #eaecf6;
  color: #424449;
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

/* 共通セクションスタイル */
section {
  position: relative;
  padding: 120px 5% 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

section .orange,
section .pink,
section .pink-2 {
  position: absolute;
  z-index: -1;
}

section .orange {
  width: 324px;
  height: 325px;
}

section .pink {
  width: 428px;
  height: 428px;
}

.fv .orange {
  top: 0;
  left: 0;
}

.fv .pink {
  bottom: -250px;
  margin: auto;
  left: 0;
  right: 0;
}

.reason .orange {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: 0;
}

.reason .pink {
  top: -200px;
}

.curriculum .orange {
  right: 0;
  bottom: 400px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.curriculum .pink {
  left: -40px;
}

.voice .orange {
  top: 0;
  right: 300px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.voice .pink {
  left: -30px;
  top: -120px;
}

.teacher .orange {
  left: 0;
  bottom: 0;
}

.teacher .pink {
  right: -250px;
  top: 0;
}

.media .orange {
  left: 0;
}

.support .orange {
  right: 0;
  bottom: 300px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.question .orange {
  left: 0;
  top: 400px;
}

img {
  display: block;
  width: 100%;
}

/* ヘッダー */
.header {
  background-color: #eaecf6;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 25px;
}

.header .content .nav-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.pc-only-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.tab-only,
.tab-wrap,
.sp-only {
  display: none !important;
}

.zdo_drawer_menu {
  position: relative;
  display: none;
}

.zdo_drawer_menu .zdo_drawer_button span,
.zdo_drawer_menu .zdo_drawer_button span:before,
.zdo_drawer_menu .zdo_drawer_button span:after {
  content: "";
  display: block;
  height: 3px;
  width: 50px;
  border-radius: 3px;
  background-color: #424449;
  position: absolute;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.zdo_drawer_menu .zdo_drawer_button span:before {
  bottom: 15px;
}

.zdo_drawer_menu .zdo_drawer_button span:after {
  top: 15px;
}

.zdo_drawer_menu.open {
  z-index: 1001;
}

.zdo_drawer_menu.open .zdo_drawer_button {
  z-index: 1001;
}

.zdo_drawer_menu.open .zdo_drawer_button span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

.zdo_drawer_menu.open .zdo_drawer_button span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.zdo_drawer_menu.open .zdo_drawer_button span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.zdo_drawer_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
  background: none;
  border: none;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.zdo_drawer_button .zdo_drawer_bar {
  display: block;
  width: 40px;
  height: 2px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  left: 0;
}

.zdo_drawer_button .zdo_drawer_button {
  color: #ffffff;
}

.zdo_drawer_button .zdo_drawer_button .zdo_drawer_bar {
  background-color: #ffffff;
}

.zdo_drawer_button.active .zdo_drawer_menu_text {
  display: none;
}

.zdo_drawer_button.active .zdo_drawer_close {
  display: block;
}

.zdo_drawer_text {
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 0;
  text-align: center;
  font-size: 10px;
}

.zdo_drawer_close {
  letter-spacing: 0.08em;
  display: none;
}

.zdo_drawer_button {
  color: #ffffff;
}

.zdo_drawer_button .zdo_drawer_bar {
  background-color: #ffffff;
}

.zdo_drawer_menu {
  height: 80px;
  width: 80px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.zdo_drawer_nav_wrapper {
  position: fixed;
  visibility: hidden;
  height: 100%;
  width: 450px;
  top: 80px;
  right: 0;
  background: #ffffff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translate(100%);
          transform: translate(100%);
  z-index: 1000;
  padding-top: 20px;
}

.zdo_drawer_nav_wrapper .log {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 56px;
  padding-bottom: 40px;
  width: 180px;
  margin: 0 auto;
}

.zdo_drawer_nav_wrapper .contact-btn {
  display: block;
  width: 270px;
  padding: 16px 0;
  text-align: center;
  margin: 0 auto;
}

.zdo_drawer_nav_wrapper.open {
  visibility: visible;
  right: 0px;
  -webkit-box-shadow: -7px 12px 21px -8px #333333;
          box-shadow: -7px 12px 21px -8px #333333;
}

@media screen and (max-width: 1200px) {
  .zdo_drawer_nav_wrapper.open {
    right: 450px;
  }
}

.zdo_drawer_nav_wrapper .zdo_drawer_nav {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 56px;
}

.zdo_drawer_nav_wrapper .zdo_drawer_nav .drawer_nav_item {
  border-bottom: 1px solid #e3e3e3;
}

.zdo_drawer_nav_wrapper .zdo_drawer_nav .drawer_nav_item a {
  position: relative;
  font-size: 16px;
  display: block;
  padding: 24px 0;
  display: block;
  width: 100%;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  font-weight: bold;
}

.zdo_drawer_nav_wrapper .zdo_drawer_nav .drawer_nav_item .menu-item-link {
  color: #333333;
}

.zdo_drawer_nav_wrapper .zdo_drawer_nav .drawer_nav_item.entry-content {
  padding-top: 16px;
}

.zdo_drawer_nav_wrapper .zdo_drawer_nav .drawer_nav_item.entry-content .entry-title {
  font-size: 18px;
}

.text-blue {
  background: -webkit-gradient(linear, left top, right top, from(#3397db), to(#6abff8));
  background: linear-gradient(90deg, #3397db 0%, #6abff8 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.text-center {
  text-align: center !important;
}

.navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.navigation ul li a {
  color: #7f839c;
  font-weight: 700;
  font-size: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigation ul li a:hover {
  color: #1982ca;
}

.navigation ul li a::after {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  border-top: solid 2px #424449;
  border-right: solid 2px #424449;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  margin-left: 10px;
}

.contact-btn {
  background: -webkit-gradient(linear, left top, right top, from(#ff8c00), to(#fdbe01));
  background: linear-gradient(to right, #ff8c00, #fdbe01);
  color: #ffffff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 16px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.contact-btn:hover {
  opacity: 0.8;
}

/* ファーストビュー */
.fv {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
  padding-left: 5%;
  min-height: 80vh;
  width: 100%;
}

.fv-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  position: relative;
  z-index: 1;
}

.fv-images {
  width: 40%;
  height: 100%;
}

.fv-images .main-image {
  background: url("/images/btoc/kv.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 600px;
  width: 100%;
  background-position: right;
}

.ellipse {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #f6b400, #f14805);
  border-radius: 50%;
  -webkit-filter: blur(150px);
          filter: blur(150px);
  opacity: 0.3;
  z-index: -1;
}

.main-title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#1982ca), to(#6abff8));
  background: linear-gradient(to right, #1982ca, #6abff8);
  -webkit-background-clip: text;
  color: transparent;
}

.main-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0px -18px;
     object-position: 0px -18px;
  max-height: 600px;
}

.sub-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #424449;
}

.sub-image {
  background-color: #ccc;
  /* 実際には画像に置き換え */
  height: 50%;
  margin: 5px;
}

.feature {
  margin-bottom: 40px;
  font-size: 24px;
}

.feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.feature-tag {
  border: 1px solid #424449;
  padding: 4px 16px;
  font-weight: 700;
}

.feature-multiply {
  font-weight: 200;
  font-size: 36px;
}

.feature-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 100%;
}

.feature p {
  font-weight: 700;
}

.cta-button {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#ff8c00), to(#ffca1e));
  background: linear-gradient(to right, #ff8c00, #ffca1e);
  color: #ffffff;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 50px;
  width: 320px;
  text-align: center;
  font-size: 18px;
  -webkit-box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
          box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.cta-button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* .image-grid {
    display: flex;
    flex-direction: column;
    width: 50%;
} */
/* .sub-images {
    display: flex;
    flex-direction: column;
    height: 40%;
} */
.change-life {
  position: absolute;
  right: 20%;
  bottom: 100px;
  width: 550px;
  height: 193px;
}

.section-label {
  position: absolute;
  top: 40px;
  font-size: 154px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.2;
  z-index: -1;
}

.section-title {
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 24px;
  background: -webkit-gradient(linear, left top, right top, from(#1982ca), to(#6abff8));
  background: linear-gradient(to right, #1982ca, #6abff8);
  -webkit-background-clip: text;
  color: transparent;
}

.section-title .title-small {
  font-size: 24px;
}

.section-title .title-big {
  font-size: 64px;
}

.section-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  font-size: 16px;
  color: #555a64;
  line-height: 1.75;
  margin-bottom: 40px;
}

.section-description p {
  text-align: left;
}

.section-description p.notice {
  width: 100%;
  margin: 5vh 0 0 57px;
  font-size: 12px;
}

.section .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin-bottom: 40px;
}

.content {
  width: 80%;
  margin: 0 auto;
}

.reason-cards,
.testimonials,
.support-steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (30%)[auto-fill];
      grid-template-columns: repeat(auto-fill, 30%);
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
}

/* Reason セクション */
.reason-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.reason .card-image {
  width: 100%;
}

.reason .card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.reason .card-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #424449;
}

.reason .card-description {
  font-size: 16px;
  color: #424449;
}

/* Curriculum セクション */
.curriculum {
  position: relative;
}

.course-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  width: 512px;
  height: 72px;
  border-radius: 60px;
  background-color: #fbfcff;
  border: 1px solid #004f9e;
  -webkit-box-shadow: inset 0px 2px 4px rgba(70, 85, 123, 0.4);
          box-shadow: inset 0px 2px 4px rgba(70, 85, 123, 0.4);
}

.course-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px;
  width: 244px;
  height: 58px;
  background-color: #fbfcff;
  border-radius: 60px;
  cursor: pointer;
}

.course-tab.active {
  background-color: #004f9e;
  color: #ffffff;
}

.course-name {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-right: 8px;
}

.course-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.course-details {
  display: none;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  width: 80%;
}

.course-details.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.course-image {
  width: 100%;
}

.details-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.details-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.details-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  padding: 8px 16px;
  color: #004f9e;
  border: 1px solid #004f9e;
}

.details-description {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
}

.details-description .description-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.details-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.details-right .text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.price {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin-bottom: 16px;
  color: #000000;
}

.price .tax {
  font-size: 14px;
  font-weight: normal;
}

.company-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 80%;
  gap: 56px;
  padding: 40px;
  background-color: rgba(251, 252, 255, 0.5);
  border: 1px solid #ffffff;
  border-radius: 16px;
  margin-top: 60px;
}

.company-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.company-name {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #505050;
}

.company-address, .company-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #505050;
}

.company-address::before, .company-phone::before {
  content: "";
  display: block;
  -webkit-mask-size: contain;
  width: 24px;
  height: 24px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #424449;
}

.company-address::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2220%22%20viewBox%3D%220%200%2016%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M8.00006%2012C10.2061%2012%2012.0001%2010.206%2012.0001%208C12.0001%205.794%2010.2061%204%208.00006%204C5.79406%204%204.00006%205.794%204.00006%208C4.00006%2010.206%205.79406%2012%208.00006%2012ZM8.00006%206C9.10306%206%2010.0001%206.897%2010.0001%208C10.0001%209.103%209.10306%2010%208.00006%2010C6.89706%2010%206.00006%209.103%206.00006%208C6.00006%206.897%206.89706%206%208.00006%206Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3Cpath%20d%3D%22M7.42009%2019.814C7.58934%2019.9349%207.79211%2019.9998%208.00009%2019.9998C8.20806%2019.9998%208.41084%2019.9349%208.58009%2019.814C8.88409%2019.599%2016.0291%2014.44%2016.0001%208C16.0001%203.589%2012.4111%200%208.00009%200C3.58909%200%208.80377e-05%203.589%208.80377e-05%207.995C-0.028912%2014.44%207.11609%2019.599%207.42009%2019.814ZM8.00009%202C11.3091%202%2014.0001%204.691%2014.0001%208.005C14.0211%2012.443%209.61209%2016.428%208.00009%2017.735C6.38909%2016.427%201.97909%2012.441%202.00009%208C2.00009%204.691%204.69109%202%208.00009%202Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2220%22%20viewBox%3D%220%200%2016%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M8.00006%2012C10.2061%2012%2012.0001%2010.206%2012.0001%208C12.0001%205.794%2010.2061%204%208.00006%204C5.79406%204%204.00006%205.794%204.00006%208C4.00006%2010.206%205.79406%2012%208.00006%2012ZM8.00006%206C9.10306%206%2010.0001%206.897%2010.0001%208C10.0001%209.103%209.10306%2010%208.00006%2010C6.89706%2010%206.00006%209.103%206.00006%208C6.00006%206.897%206.89706%206%208.00006%206Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3Cpath%20d%3D%22M7.42009%2019.814C7.58934%2019.9349%207.79211%2019.9998%208.00009%2019.9998C8.20806%2019.9998%208.41084%2019.9349%208.58009%2019.814C8.88409%2019.599%2016.0291%2014.44%2016.0001%208C16.0001%203.589%2012.4111%200%208.00009%200C3.58909%200%208.80377e-05%203.589%208.80377e-05%207.995C-0.028912%2014.44%207.11609%2019.599%207.42009%2019.814ZM8.00009%202C11.3091%202%2014.0001%204.691%2014.0001%208.005C14.0211%2012.443%209.61209%2016.428%208.00009%2017.735C6.38909%2016.427%201.97909%2012.441%202.00009%208C2.00009%204.691%204.69109%202%208.00009%202Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.company-phone::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2219%22%20height%3D%2219%22%20viewBox%3D%220%200%2019%2019%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M14.7083%2010.2932C14.6155%2010.2003%2014.5053%2010.1265%2014.384%2010.0762C14.2627%2010.0259%2014.1326%2010%2014.0013%2010C13.87%2010%2013.7399%2010.0259%2013.6186%2010.0762C13.4973%2010.1265%2013.3871%2010.2003%2013.2943%2010.2932L11.7003%2011.8872C10.9613%2011.6672%209.58231%2011.1672%208.70831%2010.2932C7.83431%209.4192%207.33431%208.0402%207.11431%207.3012L8.70831%205.7072C8.80126%205.61441%208.87499%205.50421%208.9253%205.38289C8.97562%205.26158%209.00151%205.13153%209.00151%205.0002C9.00151%204.86887%208.97562%204.73882%208.9253%204.61751C8.87499%204.49619%208.80126%204.38599%208.70831%204.2932L4.70831%200.293201C4.61552%200.200255%204.50532%200.126518%204.384%200.0762068C4.26269%200.0258961%204.13264%200%204.00131%200C3.86998%200%203.73993%200.0258961%203.61862%200.0762068C3.4973%200.126518%203.3871%200.200255%203.29431%200.293201L0.58231%203.0052C0.202311%203.3852%20-0.0116897%203.9072%20-0.00368971%204.4402C0.0193103%205.8642%200.396311%2010.8102%204.29431%2014.7082C8.19231%2018.6062%2013.1383%2018.9822%2014.5633%2019.0062H14.5913C15.1193%2019.0062%2015.6183%2018.7982%2015.9963%2018.4202L18.7083%2015.7082C18.8013%2015.6154%2018.875%2015.5052%2018.9253%2015.3839C18.9756%2015.2626%2019.0015%2015.1325%2019.0015%2015.0012C19.0015%2014.8699%2018.9756%2014.7398%2018.9253%2014.6185C18.875%2014.4972%2018.8013%2014.387%2018.7083%2014.2942L14.7083%2010.2932ZM14.5813%2017.0052C13.3333%2016.9842%209.06331%2016.6492%205.70831%2013.2932C2.34231%209.9272%202.01631%205.6422%201.99631%204.4192L4.00131%202.4142L6.58731%205.0002L5.29431%206.2932C5.17677%206.41065%205.09035%206.55554%205.04286%206.71477C4.99537%206.874%204.98831%207.04256%205.02231%207.2052C5.04631%207.3202%205.63331%2010.0472%207.29331%2011.7072C8.95331%2013.3672%2011.6803%2013.9542%2011.7953%2013.9782C11.9579%2014.0132%2012.1266%2014.0067%2012.286%2013.9593C12.4453%2013.9119%2012.5902%2013.8252%2012.7073%2013.7072L14.0013%2012.4142L16.5873%2015.0002L14.5813%2017.0052Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2219%22%20height%3D%2219%22%20viewBox%3D%220%200%2019%2019%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M14.7083%2010.2932C14.6155%2010.2003%2014.5053%2010.1265%2014.384%2010.0762C14.2627%2010.0259%2014.1326%2010%2014.0013%2010C13.87%2010%2013.7399%2010.0259%2013.6186%2010.0762C13.4973%2010.1265%2013.3871%2010.2003%2013.2943%2010.2932L11.7003%2011.8872C10.9613%2011.6672%209.58231%2011.1672%208.70831%2010.2932C7.83431%209.4192%207.33431%208.0402%207.11431%207.3012L8.70831%205.7072C8.80126%205.61441%208.87499%205.50421%208.9253%205.38289C8.97562%205.26158%209.00151%205.13153%209.00151%205.0002C9.00151%204.86887%208.97562%204.73882%208.9253%204.61751C8.87499%204.49619%208.80126%204.38599%208.70831%204.2932L4.70831%200.293201C4.61552%200.200255%204.50532%200.126518%204.384%200.0762068C4.26269%200.0258961%204.13264%200%204.00131%200C3.86998%200%203.73993%200.0258961%203.61862%200.0762068C3.4973%200.126518%203.3871%200.200255%203.29431%200.293201L0.58231%203.0052C0.202311%203.3852%20-0.0116897%203.9072%20-0.00368971%204.4402C0.0193103%205.8642%200.396311%2010.8102%204.29431%2014.7082C8.19231%2018.6062%2013.1383%2018.9822%2014.5633%2019.0062H14.5913C15.1193%2019.0062%2015.6183%2018.7982%2015.9963%2018.4202L18.7083%2015.7082C18.8013%2015.6154%2018.875%2015.5052%2018.9253%2015.3839C18.9756%2015.2626%2019.0015%2015.1325%2019.0015%2015.0012C19.0015%2014.8699%2018.9756%2014.7398%2018.9253%2014.6185C18.875%2014.4972%2018.8013%2014.387%2018.7083%2014.2942L14.7083%2010.2932ZM14.5813%2017.0052C13.3333%2016.9842%209.06331%2016.6492%205.70831%2013.2932C2.34231%209.9272%202.01631%205.6422%201.99631%204.4192L4.00131%202.4142L6.58731%205.0002L5.29431%206.2932C5.17677%206.41065%205.09035%206.55554%205.04286%206.71477C4.99537%206.874%204.98831%207.04256%205.02231%207.2052C5.04631%207.3202%205.63331%2010.0472%207.29331%2011.7072C8.95331%2013.3672%2011.6803%2013.9542%2011.7953%2013.9782C11.9579%2014.0132%2012.1266%2014.0067%2012.286%2013.9593C12.4453%2013.9119%2012.5902%2013.8252%2012.7073%2013.7072L14.0013%2012.4142L16.5873%2015.0002L14.5813%2017.0052Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.company-image {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 228px;
  background-color: #ddd;
  /* 実際には画像に置き換え */
}

/* Comparison セクション */
.comparison {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#3397db), to(#6abff8));
  background: linear-gradient(to right, #3397db, #6abff8);
  color: #ffffff;
}

.comparison .section-label {
  z-index: 1;
}

.comparison .text-area {
  width: 90%;
}

.comparison-table {
  background-color: #d4def5;
  border-radius: 8px;
  -webkit-box-shadow: 16px 16px 34px rgba(114, 120, 166, 0.25);
          box-shadow: 16px 16px 34px rgba(114, 120, 166, 0.25);
  max-width: 1080px;
  margin: 0 auto;
}

.comparison .section-label {
  color: rgba(255, 255, 255, 0.08);
}

.comparison .section-title {
  color: #f3f7f5;
  background: none;
}

.comparison .section-description {
  color: #ffffff;
  font-weight: 700;
}

.table-area {
  min-width: 1080px;
  height: 550px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-area table {
  border: 4px solid #d4def5;
  border-radius: 8px;
  border-collapse: separate;
  font-weight: bold;
  font-size: 18px;
}

.table-area table td,
.table-area table th {
  width: 184px;
  height: 25px;
}

.table-area thead th {
  padding: 24px;
  font-weight: 700;
  font-size: 16px;
  color: #48a5ed;
  background-color: #edf3ff;
}

.table-area thead th.our-company {
  width: 320px;
  color: #ffffff;
  background-image: -webkit-gradient(linear, left top, right top, from(#3397db), to(#6abff8));
  background-image: linear-gradient(90deg, #3397db, #6abff8);
  font-size: 20px;
  text-align: center;
}

.table-area thead th.our-company .line-wrapper {
  position: relative;
}

.table-area thead th.our-company .line-wrapper .line {
  position: absolute;
  top: -25px;
  background: url("/images/btoc/line.png");
  background-repeat: no-repeat;
  height: 542px;
  width: 315px;
  background-size: 315px 542px;
  left: -23px;
}

.table-area thead th.sticky {
  z-index: 1;
}

.table-area thead th:first-child {
  background: #d7e0fd;
  border-radius: 8px 0 0 0;
}

.table-area thead th:last-child {
  border-radius: 0 8px 0 0;
}

.table-area tbody th {
  width: 200px;
  padding: 16px 24px;
  background-color: #edf3ff;
  font-weight: 700;
  font-size: 16px;
  color: #555a64;
}

.table-area tbody th div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table-area tbody th div::before {
  content: "";
  display: block;
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 20px;
  width: 20px;
  margin-right: 12px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #424449;
}

.table-area tbody th div.study::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2214%22%20viewBox%3D%220%200%2018%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.08464%2010.7507H7.7513C7.98741%2010.7507%208.18533%2010.6708%208.34505%2010.5111C8.50478%2010.3513%208.58464%2010.1534%208.58464%209.91732V8.25065C8.58464%208.01454%208.50478%207.81662%208.34505%207.6569C8.18533%207.49718%207.98741%207.41732%207.7513%207.41732H6.08464C5.84852%207.41732%205.65061%207.49718%205.49089%207.6569C5.33116%207.81662%205.2513%208.01454%205.2513%208.25065V9.91732C5.2513%2010.1534%205.33116%2010.3513%205.49089%2010.5111C5.65061%2010.6708%205.84852%2010.7507%206.08464%2010.7507ZM6.08464%206.58398H7.7513C7.98741%206.58398%208.18533%206.50412%208.34505%206.3444C8.50478%206.18468%208.58464%205.98676%208.58464%205.75065V4.08398C8.58464%203.84787%208.50478%203.64996%208.34505%203.49023C8.18533%203.33051%207.98741%203.25065%207.7513%203.25065H6.08464C5.84852%203.25065%205.65061%203.33051%205.49089%203.49023C5.33116%203.64996%205.2513%203.84787%205.2513%204.08398V5.75065C5.2513%205.98676%205.33116%206.18468%205.49089%206.3444C5.65061%206.50412%205.84852%206.58398%206.08464%206.58398ZM10.2513%2010.7507H11.918C12.1541%2010.7507%2012.352%2010.6708%2012.5117%2010.5111C12.6714%2010.3513%2012.7513%2010.1534%2012.7513%209.91732V8.25065C12.7513%208.01454%2012.6714%207.81662%2012.5117%207.6569C12.352%207.49718%2012.1541%207.41732%2011.918%207.41732H10.2513C10.0152%207.41732%209.81728%207.49718%209.65755%207.6569C9.49783%207.81662%209.41797%208.01454%209.41797%208.25065V9.91732C9.41797%2010.1534%209.49783%2010.3513%209.65755%2010.5111C9.81728%2010.6708%2010.0152%2010.7507%2010.2513%2010.7507ZM10.2513%206.58398H11.918C12.1541%206.58398%2012.352%206.50412%2012.5117%206.3444C12.6714%206.18468%2012.7513%205.98676%2012.7513%205.75065V4.08398C12.7513%203.84787%2012.6714%203.64996%2012.5117%203.49023C12.352%203.33051%2012.1541%203.25065%2011.918%203.25065H10.2513C10.0152%203.25065%209.81728%203.33051%209.65755%203.49023C9.49783%203.64996%209.41797%203.84787%209.41797%204.08398V5.75065C9.41797%205.98676%209.49783%206.18468%209.65755%206.3444C9.81728%206.50412%2010.0152%206.58398%2010.2513%206.58398ZM2.33464%2013.6673C1.8763%2013.6673%201.48394%2013.5041%201.15755%2013.1777C0.831163%2012.8513%200.667969%2012.459%200.667969%2012.0007V2.00065C0.667969%201.54232%200.831163%201.14996%201.15755%200.823568C1.48394%200.497179%201.8763%200.333984%202.33464%200.333984H15.668C16.1263%200.333984%2016.5187%200.497179%2016.8451%200.823568C17.1714%201.14996%2017.3346%201.54232%2017.3346%202.00065V12.0007C17.3346%2012.459%2017.1714%2012.8513%2016.8451%2013.1777C16.5187%2013.5041%2016.1263%2013.6673%2015.668%2013.6673H2.33464ZM2.33464%2012.0007H15.668V2.00065H2.33464V12.0007Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2214%22%20viewBox%3D%220%200%2018%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.08464%2010.7507H7.7513C7.98741%2010.7507%208.18533%2010.6708%208.34505%2010.5111C8.50478%2010.3513%208.58464%2010.1534%208.58464%209.91732V8.25065C8.58464%208.01454%208.50478%207.81662%208.34505%207.6569C8.18533%207.49718%207.98741%207.41732%207.7513%207.41732H6.08464C5.84852%207.41732%205.65061%207.49718%205.49089%207.6569C5.33116%207.81662%205.2513%208.01454%205.2513%208.25065V9.91732C5.2513%2010.1534%205.33116%2010.3513%205.49089%2010.5111C5.65061%2010.6708%205.84852%2010.7507%206.08464%2010.7507ZM6.08464%206.58398H7.7513C7.98741%206.58398%208.18533%206.50412%208.34505%206.3444C8.50478%206.18468%208.58464%205.98676%208.58464%205.75065V4.08398C8.58464%203.84787%208.50478%203.64996%208.34505%203.49023C8.18533%203.33051%207.98741%203.25065%207.7513%203.25065H6.08464C5.84852%203.25065%205.65061%203.33051%205.49089%203.49023C5.33116%203.64996%205.2513%203.84787%205.2513%204.08398V5.75065C5.2513%205.98676%205.33116%206.18468%205.49089%206.3444C5.65061%206.50412%205.84852%206.58398%206.08464%206.58398ZM10.2513%2010.7507H11.918C12.1541%2010.7507%2012.352%2010.6708%2012.5117%2010.5111C12.6714%2010.3513%2012.7513%2010.1534%2012.7513%209.91732V8.25065C12.7513%208.01454%2012.6714%207.81662%2012.5117%207.6569C12.352%207.49718%2012.1541%207.41732%2011.918%207.41732H10.2513C10.0152%207.41732%209.81728%207.49718%209.65755%207.6569C9.49783%207.81662%209.41797%208.01454%209.41797%208.25065V9.91732C9.41797%2010.1534%209.49783%2010.3513%209.65755%2010.5111C9.81728%2010.6708%2010.0152%2010.7507%2010.2513%2010.7507ZM10.2513%206.58398H11.918C12.1541%206.58398%2012.352%206.50412%2012.5117%206.3444C12.6714%206.18468%2012.7513%205.98676%2012.7513%205.75065V4.08398C12.7513%203.84787%2012.6714%203.64996%2012.5117%203.49023C12.352%203.33051%2012.1541%203.25065%2011.918%203.25065H10.2513C10.0152%203.25065%209.81728%203.33051%209.65755%203.49023C9.49783%203.64996%209.41797%203.84787%209.41797%204.08398V5.75065C9.41797%205.98676%209.49783%206.18468%209.65755%206.3444C9.81728%206.50412%2010.0152%206.58398%2010.2513%206.58398ZM2.33464%2013.6673C1.8763%2013.6673%201.48394%2013.5041%201.15755%2013.1777C0.831163%2012.8513%200.667969%2012.459%200.667969%2012.0007V2.00065C0.667969%201.54232%200.831163%201.14996%201.15755%200.823568C1.48394%200.497179%201.8763%200.333984%202.33464%200.333984H15.668C16.1263%200.333984%2016.5187%200.497179%2016.8451%200.823568C17.1714%201.14996%2017.3346%201.54232%2017.3346%202.00065V12.0007C17.3346%2012.459%2017.1714%2012.8513%2016.8451%2013.1777C16.5187%2013.5041%2016.1263%2013.6673%2015.668%2013.6673H2.33464ZM2.33464%2012.0007H15.668V2.00065H2.33464V12.0007Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.table-area tbody th div.period::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2218%22%20viewBox%3D%220%200%2016%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.16667%2017.3327C1.70833%2017.3327%201.31597%2017.1695%200.989583%2016.8431C0.663194%2016.5167%200.5%2016.1243%200.5%2015.666V3.99935C0.5%203.54102%200.663194%203.14865%200.989583%202.82227C1.31597%202.49588%201.70833%202.33268%202.16667%202.33268H3V0.666016H4.66667V2.33268H11.3333V0.666016H13V2.33268H13.8333C14.2917%202.33268%2014.684%202.49588%2015.0104%202.82227C15.3368%203.14865%2015.5%203.54102%2015.5%203.99935V15.666C15.5%2016.1243%2015.3368%2016.5167%2015.0104%2016.8431C14.684%2017.1695%2014.2917%2017.3327%2013.8333%2017.3327H2.16667ZM2.16667%2015.666H13.8333V7.33268H2.16667V15.666ZM2.16667%205.66602H13.8333V3.99935H2.16667V5.66602ZM8%2010.666C7.76389%2010.666%207.56597%2010.5862%207.40625%2010.4264C7.24653%2010.2667%207.16667%2010.0688%207.16667%209.83268C7.16667%209.59657%207.24653%209.39865%207.40625%209.23893C7.56597%209.07921%207.76389%208.99935%208%208.99935C8.23611%208.99935%208.43403%209.07921%208.59375%209.23893C8.75347%209.39865%208.83333%209.59657%208.83333%209.83268C8.83333%2010.0688%208.75347%2010.2667%208.59375%2010.4264C8.43403%2010.5862%208.23611%2010.666%208%2010.666ZM4.66667%2010.666C4.43056%2010.666%204.23264%2010.5862%204.07292%2010.4264C3.91319%2010.2667%203.83333%2010.0688%203.83333%209.83268C3.83333%209.59657%203.91319%209.39865%204.07292%209.23893C4.23264%209.07921%204.43056%208.99935%204.66667%208.99935C4.90278%208.99935%205.10069%209.07921%205.26042%209.23893C5.42014%209.39865%205.5%209.59657%205.5%209.83268C5.5%2010.0688%205.42014%2010.2667%205.26042%2010.4264C5.10069%2010.5862%204.90278%2010.666%204.66667%2010.666ZM11.3333%2010.666C11.0972%2010.666%2010.8993%2010.5862%2010.7396%2010.4264C10.5799%2010.2667%2010.5%2010.0688%2010.5%209.83268C10.5%209.59657%2010.5799%209.39865%2010.7396%209.23893C10.8993%209.07921%2011.0972%208.99935%2011.3333%208.99935C11.5694%208.99935%2011.7674%209.07921%2011.9271%209.23893C12.0868%209.39865%2012.1667%209.59657%2012.1667%209.83268C12.1667%2010.0688%2012.0868%2010.2667%2011.9271%2010.4264C11.7674%2010.5862%2011.5694%2010.666%2011.3333%2010.666ZM8%2013.9993C7.76389%2013.9993%207.56597%2013.9195%207.40625%2013.7598C7.24653%2013.6%207.16667%2013.4021%207.16667%2013.166C7.16667%2012.9299%207.24653%2012.732%207.40625%2012.5723C7.56597%2012.4125%207.76389%2012.3327%208%2012.3327C8.23611%2012.3327%208.43403%2012.4125%208.59375%2012.5723C8.75347%2012.732%208.83333%2012.9299%208.83333%2013.166C8.83333%2013.4021%208.75347%2013.6%208.59375%2013.7598C8.43403%2013.9195%208.23611%2013.9993%208%2013.9993ZM4.66667%2013.9993C4.43056%2013.9993%204.23264%2013.9195%204.07292%2013.7598C3.91319%2013.6%203.83333%2013.4021%203.83333%2013.166C3.83333%2012.9299%203.91319%2012.732%204.07292%2012.5723C4.23264%2012.4125%204.43056%2012.3327%204.66667%2012.3327C4.90278%2012.3327%205.10069%2012.4125%205.26042%2012.5723C5.42014%2012.732%205.5%2012.9299%205.5%2013.166C5.5%2013.4021%205.42014%2013.6%205.26042%2013.7598C5.10069%2013.9195%204.90278%2013.9993%204.66667%2013.9993ZM11.3333%2013.9993C11.0972%2013.9993%2010.8993%2013.9195%2010.7396%2013.7598C10.5799%2013.6%2010.5%2013.4021%2010.5%2013.166C10.5%2012.9299%2010.5799%2012.732%2010.7396%2012.5723C10.8993%2012.4125%2011.0972%2012.3327%2011.3333%2012.3327C11.5694%2012.3327%2011.7674%2012.4125%2011.9271%2012.5723C12.0868%2012.732%2012.1667%2012.9299%2012.1667%2013.166C12.1667%2013.4021%2012.0868%2013.6%2011.9271%2013.7598C11.7674%2013.9195%2011.5694%2013.9993%2011.3333%2013.9993Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2218%22%20viewBox%3D%220%200%2016%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.16667%2017.3327C1.70833%2017.3327%201.31597%2017.1695%200.989583%2016.8431C0.663194%2016.5167%200.5%2016.1243%200.5%2015.666V3.99935C0.5%203.54102%200.663194%203.14865%200.989583%202.82227C1.31597%202.49588%201.70833%202.33268%202.16667%202.33268H3V0.666016H4.66667V2.33268H11.3333V0.666016H13V2.33268H13.8333C14.2917%202.33268%2014.684%202.49588%2015.0104%202.82227C15.3368%203.14865%2015.5%203.54102%2015.5%203.99935V15.666C15.5%2016.1243%2015.3368%2016.5167%2015.0104%2016.8431C14.684%2017.1695%2014.2917%2017.3327%2013.8333%2017.3327H2.16667ZM2.16667%2015.666H13.8333V7.33268H2.16667V15.666ZM2.16667%205.66602H13.8333V3.99935H2.16667V5.66602ZM8%2010.666C7.76389%2010.666%207.56597%2010.5862%207.40625%2010.4264C7.24653%2010.2667%207.16667%2010.0688%207.16667%209.83268C7.16667%209.59657%207.24653%209.39865%207.40625%209.23893C7.56597%209.07921%207.76389%208.99935%208%208.99935C8.23611%208.99935%208.43403%209.07921%208.59375%209.23893C8.75347%209.39865%208.83333%209.59657%208.83333%209.83268C8.83333%2010.0688%208.75347%2010.2667%208.59375%2010.4264C8.43403%2010.5862%208.23611%2010.666%208%2010.666ZM4.66667%2010.666C4.43056%2010.666%204.23264%2010.5862%204.07292%2010.4264C3.91319%2010.2667%203.83333%2010.0688%203.83333%209.83268C3.83333%209.59657%203.91319%209.39865%204.07292%209.23893C4.23264%209.07921%204.43056%208.99935%204.66667%208.99935C4.90278%208.99935%205.10069%209.07921%205.26042%209.23893C5.42014%209.39865%205.5%209.59657%205.5%209.83268C5.5%2010.0688%205.42014%2010.2667%205.26042%2010.4264C5.10069%2010.5862%204.90278%2010.666%204.66667%2010.666ZM11.3333%2010.666C11.0972%2010.666%2010.8993%2010.5862%2010.7396%2010.4264C10.5799%2010.2667%2010.5%2010.0688%2010.5%209.83268C10.5%209.59657%2010.5799%209.39865%2010.7396%209.23893C10.8993%209.07921%2011.0972%208.99935%2011.3333%208.99935C11.5694%208.99935%2011.7674%209.07921%2011.9271%209.23893C12.0868%209.39865%2012.1667%209.59657%2012.1667%209.83268C12.1667%2010.0688%2012.0868%2010.2667%2011.9271%2010.4264C11.7674%2010.5862%2011.5694%2010.666%2011.3333%2010.666ZM8%2013.9993C7.76389%2013.9993%207.56597%2013.9195%207.40625%2013.7598C7.24653%2013.6%207.16667%2013.4021%207.16667%2013.166C7.16667%2012.9299%207.24653%2012.732%207.40625%2012.5723C7.56597%2012.4125%207.76389%2012.3327%208%2012.3327C8.23611%2012.3327%208.43403%2012.4125%208.59375%2012.5723C8.75347%2012.732%208.83333%2012.9299%208.83333%2013.166C8.83333%2013.4021%208.75347%2013.6%208.59375%2013.7598C8.43403%2013.9195%208.23611%2013.9993%208%2013.9993ZM4.66667%2013.9993C4.43056%2013.9993%204.23264%2013.9195%204.07292%2013.7598C3.91319%2013.6%203.83333%2013.4021%203.83333%2013.166C3.83333%2012.9299%203.91319%2012.732%204.07292%2012.5723C4.23264%2012.4125%204.43056%2012.3327%204.66667%2012.3327C4.90278%2012.3327%205.10069%2012.4125%205.26042%2012.5723C5.42014%2012.732%205.5%2012.9299%205.5%2013.166C5.5%2013.4021%205.42014%2013.6%205.26042%2013.7598C5.10069%2013.9195%204.90278%2013.9993%204.66667%2013.9993ZM11.3333%2013.9993C11.0972%2013.9993%2010.8993%2013.9195%2010.7396%2013.7598C10.5799%2013.6%2010.5%2013.4021%2010.5%2013.166C10.5%2012.9299%2010.5799%2012.732%2010.7396%2012.5723C10.8993%2012.4125%2011.0972%2012.3327%2011.3333%2012.3327C11.5694%2012.3327%2011.7674%2012.4125%2011.9271%2012.5723C12.0868%2012.732%2012.1667%2012.9299%2012.1667%2013.166C12.1667%2013.4021%2012.0868%2013.6%2011.9271%2013.7598C11.7674%2013.9195%2011.5694%2013.9993%2011.3333%2013.9993Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.table-area tbody th div.tuition-fee::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2214%22%20viewBox%3D%220%200%2018%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M4.0013%2013.6673C3.08464%2013.6673%202.29991%2013.3409%201.64714%2012.6882C0.994358%2012.0354%200.667969%2011.2507%200.667969%2010.334V3.66732C0.667969%202.75065%200.994358%201.96593%201.64714%201.31315C2.29991%200.660373%203.08464%200.333984%204.0013%200.333984H14.0013C14.918%200.333984%2015.7027%200.660373%2016.3555%201.31315C17.0082%201.96593%2017.3346%202.75065%2017.3346%203.66732V10.334C17.3346%2011.2507%2017.0082%2012.0354%2016.3555%2012.6882C15.7027%2013.3409%2014.918%2013.6673%2014.0013%2013.6673H4.0013ZM4.0013%203.66732H14.0013C14.3069%203.66732%2014.5985%203.70204%2014.8763%203.77148C15.1541%203.84093%2015.418%203.95204%2015.668%204.10482V3.66732C15.668%203.20898%2015.5048%202.81662%2015.1784%202.49023C14.852%202.16385%2014.4596%202.00065%2014.0013%202.00065H4.0013C3.54297%202.00065%203.15061%202.16385%202.82422%202.49023C2.49783%202.81662%202.33464%203.20898%202.33464%203.66732V4.10482C2.58464%203.95204%202.84852%203.84093%203.1263%203.77148C3.40408%203.70204%203.69575%203.66732%204.0013%203.66732ZM2.45964%206.37565L11.7305%208.62565C11.8555%208.65343%2011.9805%208.65343%2012.1055%208.62565C12.2305%208.59787%2012.3485%208.54232%2012.4596%208.45898L15.3555%206.04232C15.2027%205.83398%2015.0082%205.66385%2014.7721%205.5319C14.536%205.39996%2014.2791%205.33398%2014.0013%205.33398H4.0013C3.64019%205.33398%203.32422%205.42773%203.05339%205.61523C2.78255%205.80273%202.58464%206.05621%202.45964%206.37565Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2214%22%20viewBox%3D%220%200%2018%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M4.0013%2013.6673C3.08464%2013.6673%202.29991%2013.3409%201.64714%2012.6882C0.994358%2012.0354%200.667969%2011.2507%200.667969%2010.334V3.66732C0.667969%202.75065%200.994358%201.96593%201.64714%201.31315C2.29991%200.660373%203.08464%200.333984%204.0013%200.333984H14.0013C14.918%200.333984%2015.7027%200.660373%2016.3555%201.31315C17.0082%201.96593%2017.3346%202.75065%2017.3346%203.66732V10.334C17.3346%2011.2507%2017.0082%2012.0354%2016.3555%2012.6882C15.7027%2013.3409%2014.918%2013.6673%2014.0013%2013.6673H4.0013ZM4.0013%203.66732H14.0013C14.3069%203.66732%2014.5985%203.70204%2014.8763%203.77148C15.1541%203.84093%2015.418%203.95204%2015.668%204.10482V3.66732C15.668%203.20898%2015.5048%202.81662%2015.1784%202.49023C14.852%202.16385%2014.4596%202.00065%2014.0013%202.00065H4.0013C3.54297%202.00065%203.15061%202.16385%202.82422%202.49023C2.49783%202.81662%202.33464%203.20898%202.33464%203.66732V4.10482C2.58464%203.95204%202.84852%203.84093%203.1263%203.77148C3.40408%203.70204%203.69575%203.66732%204.0013%203.66732ZM2.45964%206.37565L11.7305%208.62565C11.8555%208.65343%2011.9805%208.65343%2012.1055%208.62565C12.2305%208.59787%2012.3485%208.54232%2012.4596%208.45898L15.3555%206.04232C15.2027%205.83398%2015.0082%205.66385%2014.7721%205.5319C14.536%205.39996%2014.2791%205.33398%2014.0013%205.33398H4.0013C3.64019%205.33398%203.32422%205.42773%203.05339%205.61523C2.78255%205.80273%202.58464%206.05621%202.45964%206.37565Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.table-area tbody th div.curriculum-th::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2217%22%20viewBox%3D%220%200%2014%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M4.4987%209.33268H9.4987C9.73481%209.33268%209.93273%209.25282%2010.0924%209.0931C10.2522%208.93338%2010.332%208.73546%2010.332%208.49935C10.332%208.26324%2010.2522%208.06532%2010.0924%207.9056C9.93273%207.74588%209.73481%207.66602%209.4987%207.66602H4.4987C4.26259%207.66602%204.06467%207.74588%203.90495%207.9056C3.74523%208.06532%203.66536%208.26324%203.66536%208.49935C3.66536%208.73546%203.74523%208.93338%203.90495%209.0931C4.06467%209.25282%204.26259%209.33268%204.4987%209.33268ZM4.4987%2011.8327H9.4987C9.73481%2011.8327%209.93273%2011.7528%2010.0924%2011.5931C10.2522%2011.4334%2010.332%2011.2355%2010.332%2010.9994C10.332%2010.7632%2010.2522%2010.5653%2010.0924%2010.4056C9.93273%2010.2459%209.73481%2010.166%209.4987%2010.166H4.4987C4.26259%2010.166%204.06467%2010.2459%203.90495%2010.4056C3.74523%2010.5653%203.66536%2010.7632%203.66536%2010.9994C3.66536%2011.2355%203.74523%2011.4334%203.90495%2011.5931C4.06467%2011.7528%204.26259%2011.8327%204.4987%2011.8327ZM4.4987%2014.3327H6.9987C7.23481%2014.3327%207.43273%2014.2528%207.59245%2014.0931C7.75217%2013.9334%207.83203%2013.7355%207.83203%2013.4994C7.83203%2013.2632%207.75217%2013.0653%207.59245%2012.9056C7.43273%2012.7459%207.23481%2012.666%206.9987%2012.666H4.4987C4.26259%2012.666%204.06467%2012.7459%203.90495%2012.9056C3.74523%2013.0653%203.66536%2013.2632%203.66536%2013.4994C3.66536%2013.7355%203.74523%2013.9334%203.90495%2014.0931C4.06467%2014.2528%204.26259%2014.3327%204.4987%2014.3327ZM1.9987%2016.8327C1.54036%2016.8327%201.148%2016.6695%200.821615%2016.3431C0.495226%2016.0167%200.332031%2015.6244%200.332031%2015.166V1.83268C0.332031%201.37435%200.495226%200.981988%200.821615%200.655599C1.148%200.32921%201.54036%200.166016%201.9987%200.166016H7.97786C8.20009%200.166016%208.41189%200.207682%208.61328%200.291016C8.81467%200.374349%208.99175%200.492405%209.14453%200.645182L13.1862%204.68685C13.339%204.83963%2013.457%205.01671%2013.5404%205.2181C13.6237%205.41949%2013.6654%205.63129%2013.6654%205.85352V15.166C13.6654%2015.6244%2013.5022%2016.0167%2013.1758%2016.3431C12.8494%2016.6695%2012.457%2016.8327%2011.9987%2016.8327H1.9987ZM11.9987%205.99935H9.08203C8.73481%205.99935%208.43967%205.87782%208.19661%205.63477C7.95356%205.39171%207.83203%205.09657%207.83203%204.74935V1.83268H1.9987V15.166H11.9987V5.99935Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2217%22%20viewBox%3D%220%200%2014%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M4.4987%209.33268H9.4987C9.73481%209.33268%209.93273%209.25282%2010.0924%209.0931C10.2522%208.93338%2010.332%208.73546%2010.332%208.49935C10.332%208.26324%2010.2522%208.06532%2010.0924%207.9056C9.93273%207.74588%209.73481%207.66602%209.4987%207.66602H4.4987C4.26259%207.66602%204.06467%207.74588%203.90495%207.9056C3.74523%208.06532%203.66536%208.26324%203.66536%208.49935C3.66536%208.73546%203.74523%208.93338%203.90495%209.0931C4.06467%209.25282%204.26259%209.33268%204.4987%209.33268ZM4.4987%2011.8327H9.4987C9.73481%2011.8327%209.93273%2011.7528%2010.0924%2011.5931C10.2522%2011.4334%2010.332%2011.2355%2010.332%2010.9994C10.332%2010.7632%2010.2522%2010.5653%2010.0924%2010.4056C9.93273%2010.2459%209.73481%2010.166%209.4987%2010.166H4.4987C4.26259%2010.166%204.06467%2010.2459%203.90495%2010.4056C3.74523%2010.5653%203.66536%2010.7632%203.66536%2010.9994C3.66536%2011.2355%203.74523%2011.4334%203.90495%2011.5931C4.06467%2011.7528%204.26259%2011.8327%204.4987%2011.8327ZM4.4987%2014.3327H6.9987C7.23481%2014.3327%207.43273%2014.2528%207.59245%2014.0931C7.75217%2013.9334%207.83203%2013.7355%207.83203%2013.4994C7.83203%2013.2632%207.75217%2013.0653%207.59245%2012.9056C7.43273%2012.7459%207.23481%2012.666%206.9987%2012.666H4.4987C4.26259%2012.666%204.06467%2012.7459%203.90495%2012.9056C3.74523%2013.0653%203.66536%2013.2632%203.66536%2013.4994C3.66536%2013.7355%203.74523%2013.9334%203.90495%2014.0931C4.06467%2014.2528%204.26259%2014.3327%204.4987%2014.3327ZM1.9987%2016.8327C1.54036%2016.8327%201.148%2016.6695%200.821615%2016.3431C0.495226%2016.0167%200.332031%2015.6244%200.332031%2015.166V1.83268C0.332031%201.37435%200.495226%200.981988%200.821615%200.655599C1.148%200.32921%201.54036%200.166016%201.9987%200.166016H7.97786C8.20009%200.166016%208.41189%200.207682%208.61328%200.291016C8.81467%200.374349%208.99175%200.492405%209.14453%200.645182L13.1862%204.68685C13.339%204.83963%2013.457%205.01671%2013.5404%205.2181C13.6237%205.41949%2013.6654%205.63129%2013.6654%205.85352V15.166C13.6654%2015.6244%2013.5022%2016.0167%2013.1758%2016.3431C12.8494%2016.6695%2012.457%2016.8327%2011.9987%2016.8327H1.9987ZM11.9987%205.99935H9.08203C8.73481%205.99935%208.43967%205.87782%208.19661%205.63477C7.95356%205.39171%207.83203%205.09657%207.83203%204.74935V1.83268H1.9987V15.166H11.9987V5.99935Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.table-area tbody th div.support-th::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2219%22%20height%3D%2218%22%20viewBox%3D%220%200%2019%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M11.6237%2015.4993L16.582%2013.9577C16.5126%2013.8327%2016.4119%2013.725%2016.2799%2013.6348C16.148%2013.5445%2015.9987%2013.4993%2015.832%2013.4993H11.6237C11.2487%2013.4993%2010.9501%2013.4855%2010.7279%2013.4577C10.5056%2013.4299%2010.2765%2013.3743%2010.0404%2013.291L8.85286%2012.8952C8.63064%2012.8257%208.47092%2012.6868%208.3737%2012.4785C8.27648%2012.2702%208.26259%2012.0549%208.33203%2011.8327C8.40148%2011.6105%208.53689%2011.4473%208.73828%2011.3431C8.93967%2011.2389%209.15148%2011.2216%209.3737%2011.291L10.2487%2011.5827C10.4848%2011.6521%2010.7522%2011.7077%2011.0508%2011.7493C11.3494%2011.791%2011.7556%2011.8188%2012.2695%2011.8327H12.4987C12.4987%2011.6799%2012.4536%2011.5341%2012.3633%2011.3952C12.273%2011.2563%2012.1654%2011.166%2012.0404%2011.1243L7.16536%209.33268H5.83203V13.916L11.6237%2015.4993ZM11.1862%2017.1243L5.83203%2015.6243C5.72092%2015.9855%205.50217%2016.2771%205.17578%2016.4993C4.84939%2016.7216%204.51259%2016.8327%204.16536%2016.8327H2.4987C2.04036%2016.8327%201.648%2016.6695%201.32161%2016.3431C0.995226%2016.0167%200.832031%2015.6243%200.832031%2015.166V9.33268C0.832031%208.87435%200.995226%208.48199%201.32161%208.1556C1.648%207.82921%202.04036%207.66602%202.4987%207.66602H7.16536C7.26259%207.66602%207.35981%207.67643%207.45703%207.69727C7.55425%207.7181%207.64453%207.7424%207.72786%207.77018L12.6237%209.58268C13.082%209.74935%2013.4536%2010.041%2013.7383%2010.4577C14.023%2010.8743%2014.1654%2011.3327%2014.1654%2011.8327H15.832C16.5265%2011.8327%2017.1168%2012.0618%2017.6029%2012.5202C18.089%2012.9785%2018.332%2013.5827%2018.332%2014.3327C18.332%2014.6382%2018.2522%2014.8778%2018.0924%2015.0514C17.9327%2015.225%2017.6862%2015.3674%2017.3529%2015.4785L12.1445%2017.1035C11.9918%2017.1591%2011.832%2017.1868%2011.6654%2017.1868C11.4987%2017.1868%2011.339%2017.166%2011.1862%2017.1243ZM2.4987%2015.166H4.16536V9.33268H2.4987V15.166ZM13.332%208.66602C13.1237%208.66602%2012.9188%208.62782%2012.7174%208.55143C12.5161%208.47504%2012.332%208.36046%2012.1654%208.20768L9.8737%205.95768C9.44314%205.54102%209.07856%205.07921%208.77995%204.57227C8.48134%204.06532%208.33203%203.51324%208.33203%202.91602C8.33203%202.15213%208.59939%201.50282%209.13411%200.968099C9.66884%200.433377%2010.3181%200.166016%2011.082%200.166016C11.5265%200.166016%2011.9431%200.259766%2012.332%200.447266C12.7209%200.634766%2013.0543%200.888238%2013.332%201.20768C13.6098%200.888238%2013.9431%200.634766%2014.332%200.447266C14.7209%200.259766%2015.1376%200.166016%2015.582%200.166016C16.3459%200.166016%2016.9952%200.433377%2017.5299%200.968099C18.0647%201.50282%2018.332%202.15213%2018.332%202.91602C18.332%203.51324%2018.1862%204.06532%2017.8945%204.57227C17.6029%205.07921%2017.2418%205.54102%2016.8112%205.95768L14.4987%208.20768C14.332%208.36046%2014.148%208.47504%2013.9466%208.55143C13.7452%208.62782%2013.5404%208.66602%2013.332%208.66602ZM13.332%206.99935L15.6029%204.77018C15.8668%204.50629%2016.1098%204.22504%2016.332%203.92643C16.5543%203.62782%2016.6654%203.29102%2016.6654%202.91602C16.6654%202.61046%2016.5612%202.35352%2016.3529%202.14518C16.1445%201.93685%2015.8876%201.83268%2015.582%201.83268C15.3876%201.83268%2015.2036%201.87088%2015.0299%201.94727C14.8563%202.02365%2014.707%202.13824%2014.582%202.29102L13.9779%203.02018C13.8112%203.21463%2013.5959%203.31185%2013.332%203.31185C13.0681%203.31185%2012.8529%203.21463%2012.6862%203.02018L12.082%202.29102C11.957%202.13824%2011.8077%202.02365%2011.6341%201.94727C11.4605%201.87088%2011.2765%201.83268%2011.082%201.83268C10.7765%201.83268%2010.5195%201.93685%2010.3112%202.14518C10.1029%202.35352%209.9987%202.61046%209.9987%202.91602C9.9987%203.29102%2010.1098%203.62782%2010.332%203.92643C10.5543%204.22504%2010.7973%204.50629%2011.0612%204.77018L13.332%206.99935Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2219%22%20height%3D%2218%22%20viewBox%3D%220%200%2019%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M11.6237%2015.4993L16.582%2013.9577C16.5126%2013.8327%2016.4119%2013.725%2016.2799%2013.6348C16.148%2013.5445%2015.9987%2013.4993%2015.832%2013.4993H11.6237C11.2487%2013.4993%2010.9501%2013.4855%2010.7279%2013.4577C10.5056%2013.4299%2010.2765%2013.3743%2010.0404%2013.291L8.85286%2012.8952C8.63064%2012.8257%208.47092%2012.6868%208.3737%2012.4785C8.27648%2012.2702%208.26259%2012.0549%208.33203%2011.8327C8.40148%2011.6105%208.53689%2011.4473%208.73828%2011.3431C8.93967%2011.2389%209.15148%2011.2216%209.3737%2011.291L10.2487%2011.5827C10.4848%2011.6521%2010.7522%2011.7077%2011.0508%2011.7493C11.3494%2011.791%2011.7556%2011.8188%2012.2695%2011.8327H12.4987C12.4987%2011.6799%2012.4536%2011.5341%2012.3633%2011.3952C12.273%2011.2563%2012.1654%2011.166%2012.0404%2011.1243L7.16536%209.33268H5.83203V13.916L11.6237%2015.4993ZM11.1862%2017.1243L5.83203%2015.6243C5.72092%2015.9855%205.50217%2016.2771%205.17578%2016.4993C4.84939%2016.7216%204.51259%2016.8327%204.16536%2016.8327H2.4987C2.04036%2016.8327%201.648%2016.6695%201.32161%2016.3431C0.995226%2016.0167%200.832031%2015.6243%200.832031%2015.166V9.33268C0.832031%208.87435%200.995226%208.48199%201.32161%208.1556C1.648%207.82921%202.04036%207.66602%202.4987%207.66602H7.16536C7.26259%207.66602%207.35981%207.67643%207.45703%207.69727C7.55425%207.7181%207.64453%207.7424%207.72786%207.77018L12.6237%209.58268C13.082%209.74935%2013.4536%2010.041%2013.7383%2010.4577C14.023%2010.8743%2014.1654%2011.3327%2014.1654%2011.8327H15.832C16.5265%2011.8327%2017.1168%2012.0618%2017.6029%2012.5202C18.089%2012.9785%2018.332%2013.5827%2018.332%2014.3327C18.332%2014.6382%2018.2522%2014.8778%2018.0924%2015.0514C17.9327%2015.225%2017.6862%2015.3674%2017.3529%2015.4785L12.1445%2017.1035C11.9918%2017.1591%2011.832%2017.1868%2011.6654%2017.1868C11.4987%2017.1868%2011.339%2017.166%2011.1862%2017.1243ZM2.4987%2015.166H4.16536V9.33268H2.4987V15.166ZM13.332%208.66602C13.1237%208.66602%2012.9188%208.62782%2012.7174%208.55143C12.5161%208.47504%2012.332%208.36046%2012.1654%208.20768L9.8737%205.95768C9.44314%205.54102%209.07856%205.07921%208.77995%204.57227C8.48134%204.06532%208.33203%203.51324%208.33203%202.91602C8.33203%202.15213%208.59939%201.50282%209.13411%200.968099C9.66884%200.433377%2010.3181%200.166016%2011.082%200.166016C11.5265%200.166016%2011.9431%200.259766%2012.332%200.447266C12.7209%200.634766%2013.0543%200.888238%2013.332%201.20768C13.6098%200.888238%2013.9431%200.634766%2014.332%200.447266C14.7209%200.259766%2015.1376%200.166016%2015.582%200.166016C16.3459%200.166016%2016.9952%200.433377%2017.5299%200.968099C18.0647%201.50282%2018.332%202.15213%2018.332%202.91602C18.332%203.51324%2018.1862%204.06532%2017.8945%204.57227C17.6029%205.07921%2017.2418%205.54102%2016.8112%205.95768L14.4987%208.20768C14.332%208.36046%2014.148%208.47504%2013.9466%208.55143C13.7452%208.62782%2013.5404%208.66602%2013.332%208.66602ZM13.332%206.99935L15.6029%204.77018C15.8668%204.50629%2016.1098%204.22504%2016.332%203.92643C16.5543%203.62782%2016.6654%203.29102%2016.6654%202.91602C16.6654%202.61046%2016.5612%202.35352%2016.3529%202.14518C16.1445%201.93685%2015.8876%201.83268%2015.582%201.83268C15.3876%201.83268%2015.2036%201.87088%2015.0299%201.94727C14.8563%202.02365%2014.707%202.13824%2014.582%202.29102L13.9779%203.02018C13.8112%203.21463%2013.5959%203.31185%2013.332%203.31185C13.0681%203.31185%2012.8529%203.21463%2012.6862%203.02018L12.082%202.29102C11.957%202.13824%2011.8077%202.02365%2011.6341%201.94727C11.4605%201.87088%2011.2765%201.83268%2011.082%201.83268C10.7765%201.83268%2010.5195%201.93685%2010.3112%202.14518C10.1029%202.35352%209.9987%202.61046%209.9987%202.91602C9.9987%203.29102%2010.1098%203.62782%2010.332%203.92643C10.5543%204.22504%2010.7973%204.50629%2011.0612%204.77018L13.332%206.99935Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.table-area tbody th div.job-support::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2217%22%20viewBox%3D%220%200%2020%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M9.89572%2015.166C9.95128%2015.166%2010.0068%2015.1521%2010.0624%2015.1244C10.1179%2015.0966%2010.1596%2015.0688%2010.1874%2015.041L17.0207%208.20768C17.1874%208.04102%2017.3089%207.85352%2017.3853%207.64518C17.4617%207.43685%2017.4999%207.22852%2017.4999%207.02018C17.4999%206.79796%2017.4617%206.58616%2017.3853%206.38477C17.3089%206.18338%2017.1874%206.00629%2017.0207%205.85352L13.4791%202.31185C13.3263%202.14518%2013.1492%202.02365%2012.9478%201.94727C12.7464%201.87088%2012.5346%201.83268%2012.3124%201.83268C12.1041%201.83268%2011.8957%201.87088%2011.6874%201.94727C11.4791%202.02365%2011.2916%202.14518%2011.1249%202.31185L10.8957%202.54102L12.4374%204.10352C12.6457%204.29796%2012.7985%204.52018%2012.8957%204.77018C12.9929%205.02018%2013.0416%205.28407%2013.0416%205.56185C13.0416%206.14518%2012.8436%206.63477%2012.4478%207.0306C12.052%207.42643%2011.5624%207.62435%2010.9791%207.62435C10.7013%207.62435%2010.4339%207.57574%2010.177%207.47852C9.92003%207.38129%209.69433%207.23546%209.49989%207.04102L7.93739%205.49935L4.29156%209.14518C4.24989%209.18685%204.21864%209.23199%204.19781%209.2806C4.17697%209.32921%204.16656%209.38129%204.16656%209.43685C4.16656%209.54796%204.20822%209.64866%204.29156%209.73893C4.37489%209.82921%204.47211%209.87435%204.58322%209.87435C4.63878%209.87435%204.69433%209.86046%204.74989%209.83268C4.80544%209.80491%204.84711%209.77713%204.87489%209.74935L7.12489%207.49935C7.27767%207.34657%207.46864%207.26671%207.6978%207.25977C7.92697%207.25282%208.12489%207.33268%208.29155%207.49935C8.44433%207.65213%208.52072%207.84657%208.52072%208.08268C8.52072%208.31879%208.44433%208.51324%208.29155%208.66602L6.06239%2010.916C6.02072%2010.9577%205.98947%2011.0028%205.96864%2011.0514C5.94781%2011.1%205.93739%2011.1521%205.93739%2011.2077C5.93739%2011.3188%205.97906%2011.416%206.06239%2011.4994C6.14572%2011.5827%206.24294%2011.6244%206.35405%2011.6244C6.40961%2011.6244%206.46517%2011.6105%206.52072%2011.5827C6.57628%2011.5549%206.61794%2011.5271%206.64572%2011.4994L8.89572%209.27018C9.0485%209.11741%209.23947%209.03754%209.46864%209.0306C9.69781%209.02366%209.89572%209.10352%2010.0624%209.27018C10.2152%209.42296%2010.2916%209.61741%2010.2916%209.85352C10.2916%2010.0896%2010.2152%2010.2841%2010.0624%2010.4369L7.83322%2012.6869C7.79155%2012.7146%207.7603%2012.7563%207.73947%2012.8119C7.71864%2012.8674%207.70822%2012.923%207.70822%2012.9785C7.70822%2013.0896%207.74989%2013.1869%207.83322%2013.2702C7.91655%2013.3535%208.01378%2013.3952%208.12489%2013.3952C8.18044%2013.3952%208.23253%2013.3848%208.28114%2013.3639C8.32975%2013.3431%208.37489%2013.3119%208.41655%2013.2702L10.6666%2011.041C10.8193%2010.8882%2011.0103%2010.8084%2011.2395%2010.8014C11.4686%2010.7945%2011.6666%2010.8744%2011.8332%2011.041C11.986%2011.1938%2012.0624%2011.3882%2012.0624%2011.6244C12.0624%2011.8605%2011.986%2012.0549%2011.8332%2012.2077L9.58322%2014.4577C9.54156%2014.4994%209.51031%2014.5445%209.48947%2014.5931C9.46864%2014.6417%209.45822%2014.6938%209.45822%2014.7494C9.45822%2014.8605%209.50336%2014.9577%209.59364%2015.041C9.68392%2015.1244%209.78461%2015.166%209.89572%2015.166ZM9.87489%2016.8327C9.361%2016.8327%208.90614%2016.6625%208.5103%2016.3223C8.11447%2015.982%207.88183%2015.5549%207.81239%2015.041C7.34017%2014.9716%206.94433%2014.7771%206.62489%2014.4577C6.30544%2014.1382%206.111%2013.7424%206.04156%2013.2702C5.56933%2013.2007%205.17697%2013.0028%204.86447%2012.6764C4.55197%2012.35%204.361%2011.9577%204.29156%2011.4994C3.76378%2011.4299%203.33322%2011.2007%202.99989%2010.8119C2.66656%2010.423%202.49989%209.96463%202.49989%209.43685C2.49989%209.15907%202.55197%208.89171%202.65614%208.63477C2.76031%208.37782%202.90961%208.15213%203.10406%207.95768L6.74989%204.31185C7.06933%203.9924%207.46169%203.83268%207.92697%203.83268C8.39225%203.83268%208.78461%203.9924%209.10406%204.31185L10.6666%205.87435C10.6943%205.91602%2010.736%205.94727%2010.7916%205.9681C10.8471%205.98893%2010.9027%205.99935%2010.9582%205.99935C11.0832%205.99935%2011.1874%205.96116%2011.2707%205.88477C11.3541%205.80838%2011.3957%205.70768%2011.3957%205.58268C11.3957%205.52713%2011.3853%205.47157%2011.3645%205.41602C11.3436%205.36046%2011.3124%205.31879%2011.2707%205.29102L8.29155%202.31185C8.13878%202.14518%207.96169%202.02365%207.7603%201.94727C7.55892%201.87088%207.34711%201.83268%207.12489%201.83268C6.91655%201.83268%206.70822%201.87088%206.49989%201.94727C6.29155%202.02365%206.10406%202.14518%205.93739%202.31185L2.99989%205.27018C2.80544%205.46463%202.66656%205.69379%202.58322%205.95768C2.49989%206.22157%202.47906%206.48546%202.52072%206.74935C2.56239%206.98546%202.51378%207.19379%202.37489%207.37435C2.236%207.55491%202.0485%207.65907%201.81239%207.68685C1.57628%207.71463%201.36794%207.66254%201.18739%207.5306C1.00683%207.39866%200.902666%207.21463%200.874888%206.97852C0.791555%206.45074%200.82975%205.93338%200.989472%205.42643C1.14919%204.91949%201.4235%204.47157%201.81239%204.08268L4.74989%201.14518C5.08322%200.825738%205.45475%200.582682%205.86447%200.416016C6.27419%200.249349%206.69433%200.166016%207.12489%200.166016C7.55544%200.166016%207.97558%200.249349%208.3853%200.416016C8.79503%200.582682%209.15961%200.825738%209.47906%201.14518L9.70822%201.37435L9.93739%201.14518C10.2707%200.825738%2010.6422%200.582682%2011.052%200.416016C11.4617%200.249349%2011.8818%200.166016%2012.3124%200.166016C12.7429%200.166016%2013.1631%200.249349%2013.5728%200.416016C13.9825%200.582682%2014.3471%200.825738%2014.6666%201.14518L18.1874%204.66602C18.5068%204.98546%2018.7499%205.35352%2018.9166%205.77018C19.0832%206.18685%2019.1666%206.61046%2019.1666%207.04102C19.1666%207.47157%2019.0832%207.89171%2018.9166%208.30143C18.7499%208.71116%2018.5068%209.07574%2018.1874%209.39518L11.3541%2016.2077C11.1596%2016.4021%2010.9339%2016.5549%2010.677%2016.666C10.42%2016.7771%2010.1527%2016.8327%209.87489%2016.8327Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2217%22%20viewBox%3D%220%200%2020%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M9.89572%2015.166C9.95128%2015.166%2010.0068%2015.1521%2010.0624%2015.1244C10.1179%2015.0966%2010.1596%2015.0688%2010.1874%2015.041L17.0207%208.20768C17.1874%208.04102%2017.3089%207.85352%2017.3853%207.64518C17.4617%207.43685%2017.4999%207.22852%2017.4999%207.02018C17.4999%206.79796%2017.4617%206.58616%2017.3853%206.38477C17.3089%206.18338%2017.1874%206.00629%2017.0207%205.85352L13.4791%202.31185C13.3263%202.14518%2013.1492%202.02365%2012.9478%201.94727C12.7464%201.87088%2012.5346%201.83268%2012.3124%201.83268C12.1041%201.83268%2011.8957%201.87088%2011.6874%201.94727C11.4791%202.02365%2011.2916%202.14518%2011.1249%202.31185L10.8957%202.54102L12.4374%204.10352C12.6457%204.29796%2012.7985%204.52018%2012.8957%204.77018C12.9929%205.02018%2013.0416%205.28407%2013.0416%205.56185C13.0416%206.14518%2012.8436%206.63477%2012.4478%207.0306C12.052%207.42643%2011.5624%207.62435%2010.9791%207.62435C10.7013%207.62435%2010.4339%207.57574%2010.177%207.47852C9.92003%207.38129%209.69433%207.23546%209.49989%207.04102L7.93739%205.49935L4.29156%209.14518C4.24989%209.18685%204.21864%209.23199%204.19781%209.2806C4.17697%209.32921%204.16656%209.38129%204.16656%209.43685C4.16656%209.54796%204.20822%209.64866%204.29156%209.73893C4.37489%209.82921%204.47211%209.87435%204.58322%209.87435C4.63878%209.87435%204.69433%209.86046%204.74989%209.83268C4.80544%209.80491%204.84711%209.77713%204.87489%209.74935L7.12489%207.49935C7.27767%207.34657%207.46864%207.26671%207.6978%207.25977C7.92697%207.25282%208.12489%207.33268%208.29155%207.49935C8.44433%207.65213%208.52072%207.84657%208.52072%208.08268C8.52072%208.31879%208.44433%208.51324%208.29155%208.66602L6.06239%2010.916C6.02072%2010.9577%205.98947%2011.0028%205.96864%2011.0514C5.94781%2011.1%205.93739%2011.1521%205.93739%2011.2077C5.93739%2011.3188%205.97906%2011.416%206.06239%2011.4994C6.14572%2011.5827%206.24294%2011.6244%206.35405%2011.6244C6.40961%2011.6244%206.46517%2011.6105%206.52072%2011.5827C6.57628%2011.5549%206.61794%2011.5271%206.64572%2011.4994L8.89572%209.27018C9.0485%209.11741%209.23947%209.03754%209.46864%209.0306C9.69781%209.02366%209.89572%209.10352%2010.0624%209.27018C10.2152%209.42296%2010.2916%209.61741%2010.2916%209.85352C10.2916%2010.0896%2010.2152%2010.2841%2010.0624%2010.4369L7.83322%2012.6869C7.79155%2012.7146%207.7603%2012.7563%207.73947%2012.8119C7.71864%2012.8674%207.70822%2012.923%207.70822%2012.9785C7.70822%2013.0896%207.74989%2013.1869%207.83322%2013.2702C7.91655%2013.3535%208.01378%2013.3952%208.12489%2013.3952C8.18044%2013.3952%208.23253%2013.3848%208.28114%2013.3639C8.32975%2013.3431%208.37489%2013.3119%208.41655%2013.2702L10.6666%2011.041C10.8193%2010.8882%2011.0103%2010.8084%2011.2395%2010.8014C11.4686%2010.7945%2011.6666%2010.8744%2011.8332%2011.041C11.986%2011.1938%2012.0624%2011.3882%2012.0624%2011.6244C12.0624%2011.8605%2011.986%2012.0549%2011.8332%2012.2077L9.58322%2014.4577C9.54156%2014.4994%209.51031%2014.5445%209.48947%2014.5931C9.46864%2014.6417%209.45822%2014.6938%209.45822%2014.7494C9.45822%2014.8605%209.50336%2014.9577%209.59364%2015.041C9.68392%2015.1244%209.78461%2015.166%209.89572%2015.166ZM9.87489%2016.8327C9.361%2016.8327%208.90614%2016.6625%208.5103%2016.3223C8.11447%2015.982%207.88183%2015.5549%207.81239%2015.041C7.34017%2014.9716%206.94433%2014.7771%206.62489%2014.4577C6.30544%2014.1382%206.111%2013.7424%206.04156%2013.2702C5.56933%2013.2007%205.17697%2013.0028%204.86447%2012.6764C4.55197%2012.35%204.361%2011.9577%204.29156%2011.4994C3.76378%2011.4299%203.33322%2011.2007%202.99989%2010.8119C2.66656%2010.423%202.49989%209.96463%202.49989%209.43685C2.49989%209.15907%202.55197%208.89171%202.65614%208.63477C2.76031%208.37782%202.90961%208.15213%203.10406%207.95768L6.74989%204.31185C7.06933%203.9924%207.46169%203.83268%207.92697%203.83268C8.39225%203.83268%208.78461%203.9924%209.10406%204.31185L10.6666%205.87435C10.6943%205.91602%2010.736%205.94727%2010.7916%205.9681C10.8471%205.98893%2010.9027%205.99935%2010.9582%205.99935C11.0832%205.99935%2011.1874%205.96116%2011.2707%205.88477C11.3541%205.80838%2011.3957%205.70768%2011.3957%205.58268C11.3957%205.52713%2011.3853%205.47157%2011.3645%205.41602C11.3436%205.36046%2011.3124%205.31879%2011.2707%205.29102L8.29155%202.31185C8.13878%202.14518%207.96169%202.02365%207.7603%201.94727C7.55892%201.87088%207.34711%201.83268%207.12489%201.83268C6.91655%201.83268%206.70822%201.87088%206.49989%201.94727C6.29155%202.02365%206.10406%202.14518%205.93739%202.31185L2.99989%205.27018C2.80544%205.46463%202.66656%205.69379%202.58322%205.95768C2.49989%206.22157%202.47906%206.48546%202.52072%206.74935C2.56239%206.98546%202.51378%207.19379%202.37489%207.37435C2.236%207.55491%202.0485%207.65907%201.81239%207.68685C1.57628%207.71463%201.36794%207.66254%201.18739%207.5306C1.00683%207.39866%200.902666%207.21463%200.874888%206.97852C0.791555%206.45074%200.82975%205.93338%200.989472%205.42643C1.14919%204.91949%201.4235%204.47157%201.81239%204.08268L4.74989%201.14518C5.08322%200.825738%205.45475%200.582682%205.86447%200.416016C6.27419%200.249349%206.69433%200.166016%207.12489%200.166016C7.55544%200.166016%207.97558%200.249349%208.3853%200.416016C8.79503%200.582682%209.15961%200.825738%209.47906%201.14518L9.70822%201.37435L9.93739%201.14518C10.2707%200.825738%2010.6422%200.582682%2011.052%200.416016C11.4617%200.249349%2011.8818%200.166016%2012.3124%200.166016C12.7429%200.166016%2013.1631%200.249349%2013.5728%200.416016C13.9825%200.582682%2014.3471%200.825738%2014.6666%201.14518L18.1874%204.66602C18.5068%204.98546%2018.7499%205.35352%2018.9166%205.77018C19.0832%206.18685%2019.1666%206.61046%2019.1666%207.04102C19.1666%207.47157%2019.0832%207.89171%2018.9166%208.30143C18.7499%208.71116%2018.5068%209.07574%2018.1874%209.39518L11.3541%2016.2077C11.1596%2016.4021%2010.9339%2016.5549%2010.677%2016.666C10.42%2016.7771%2010.1527%2016.8327%209.87489%2016.8327Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.table-area tbody th div.appropriate::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2217%22%20viewBox%3D%220%200%2014%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.9987%2016.8327C6.63759%2016.8327%206.3112%2016.7459%206.01953%2016.5723C5.72786%2016.3987%205.4987%2016.166%205.33203%2015.8744C4.8737%2015.8744%204.48134%2015.7112%204.15495%2015.3848C3.82856%2015.0584%203.66536%2014.666%203.66536%2014.2077V11.2494C2.84592%2010.7077%202.18967%209.99241%201.69661%209.10352C1.20356%208.21463%200.957031%207.24935%200.957031%206.20768C0.957031%204.52713%201.54384%203.10004%202.71745%201.92643C3.89106%200.752821%205.31814%200.166016%206.9987%200.166016C8.67925%200.166016%2010.1063%200.752821%2011.2799%201.92643C12.4536%203.10004%2013.0404%204.52713%2013.0404%206.20768C13.0404%207.27713%2012.7938%208.24935%2012.3008%209.12435C11.8077%209.99935%2011.1515%2010.7077%2010.332%2011.2494V14.2077C10.332%2014.666%2010.1688%2015.0584%209.84245%2015.3848C9.51606%2015.7112%209.1237%2015.8744%208.66536%2015.8744C8.4987%2016.166%208.26953%2016.3987%207.97786%2016.5723C7.6862%2016.7459%207.35981%2016.8327%206.9987%2016.8327ZM5.33203%2014.2077H8.66536V13.4577H5.33203V14.2077ZM5.33203%2012.6244H8.66536V11.8327H5.33203V12.6244ZM5.16536%2010.166H6.3737V7.91602L4.97786%206.52018C4.85286%206.39518%204.79036%206.24935%204.79036%206.08268C4.79036%205.91602%204.85286%205.77018%204.97786%205.64518C5.10286%205.52018%205.2487%205.45768%205.41536%205.45768C5.58203%205.45768%205.72786%205.52018%205.85286%205.64518L6.9987%206.79102L8.14453%205.64518C8.26953%205.52018%208.41536%205.45768%208.58203%205.45768C8.7487%205.45768%208.89453%205.52018%209.01953%205.64518C9.14453%205.77018%209.20703%205.91602%209.20703%206.08268C9.20703%206.24935%209.14453%206.39518%209.01953%206.52018L7.6237%207.91602V10.166H8.83203C9.58203%209.80491%2010.1931%209.27366%2010.6654%208.57227C11.1376%207.87088%2011.3737%207.08268%2011.3737%206.20768C11.3737%204.98546%2010.9501%203.95074%2010.1029%203.10352C9.25564%202.25629%208.22092%201.83268%206.9987%201.83268C5.77648%201.83268%204.74175%202.25629%203.89453%203.10352C3.04731%203.95074%202.6237%204.98546%202.6237%206.20768C2.6237%207.08268%202.85981%207.87088%203.33203%208.57227C3.80425%209.27366%204.41536%209.80491%205.16536%2010.166Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2217%22%20viewBox%3D%220%200%2014%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.9987%2016.8327C6.63759%2016.8327%206.3112%2016.7459%206.01953%2016.5723C5.72786%2016.3987%205.4987%2016.166%205.33203%2015.8744C4.8737%2015.8744%204.48134%2015.7112%204.15495%2015.3848C3.82856%2015.0584%203.66536%2014.666%203.66536%2014.2077V11.2494C2.84592%2010.7077%202.18967%209.99241%201.69661%209.10352C1.20356%208.21463%200.957031%207.24935%200.957031%206.20768C0.957031%204.52713%201.54384%203.10004%202.71745%201.92643C3.89106%200.752821%205.31814%200.166016%206.9987%200.166016C8.67925%200.166016%2010.1063%200.752821%2011.2799%201.92643C12.4536%203.10004%2013.0404%204.52713%2013.0404%206.20768C13.0404%207.27713%2012.7938%208.24935%2012.3008%209.12435C11.8077%209.99935%2011.1515%2010.7077%2010.332%2011.2494V14.2077C10.332%2014.666%2010.1688%2015.0584%209.84245%2015.3848C9.51606%2015.7112%209.1237%2015.8744%208.66536%2015.8744C8.4987%2016.166%208.26953%2016.3987%207.97786%2016.5723C7.6862%2016.7459%207.35981%2016.8327%206.9987%2016.8327ZM5.33203%2014.2077H8.66536V13.4577H5.33203V14.2077ZM5.33203%2012.6244H8.66536V11.8327H5.33203V12.6244ZM5.16536%2010.166H6.3737V7.91602L4.97786%206.52018C4.85286%206.39518%204.79036%206.24935%204.79036%206.08268C4.79036%205.91602%204.85286%205.77018%204.97786%205.64518C5.10286%205.52018%205.2487%205.45768%205.41536%205.45768C5.58203%205.45768%205.72786%205.52018%205.85286%205.64518L6.9987%206.79102L8.14453%205.64518C8.26953%205.52018%208.41536%205.45768%208.58203%205.45768C8.7487%205.45768%208.89453%205.52018%209.01953%205.64518C9.14453%205.77018%209.20703%205.91602%209.20703%206.08268C9.20703%206.24935%209.14453%206.39518%209.01953%206.52018L7.6237%207.91602V10.166H8.83203C9.58203%209.80491%2010.1931%209.27366%2010.6654%208.57227C11.1376%207.87088%2011.3737%207.08268%2011.3737%206.20768C11.3737%204.98546%2010.9501%203.95074%2010.1029%203.10352C9.25564%202.25629%208.22092%201.83268%206.9987%201.83268C5.77648%201.83268%204.74175%202.25629%203.89453%203.10352C3.04731%203.95074%202.6237%204.98546%202.6237%206.20768C2.6237%207.08268%202.85981%207.87088%203.33203%208.57227C3.80425%209.27366%204.41536%209.80491%205.16536%2010.166Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.table-area tbody td {
  padding: 16px 12px;
  font-size: 14px;
  color: #555a64;
  background-color: #fbfcff;
  border-left: 1px solid #d4e6f5;
  text-align: center;
}

.table-area tbody td:nth-of-type(1) div {
  background: -webkit-gradient(linear, left top, right top, from(#3397db), to(#6abff8));
  background: linear-gradient(90deg, #3397db 0%, #6abff8 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.table-area tbody td.highlight {
  width: 320px;
  color: #48a5ed;
  font-weight: 700;
  font-size: 18px;
}

.table-area .sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-left: none;
  border-right: none;
}

.table-area .sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 1px solid #d4def5;
  background: #edf3ff;
  z-index: -1;
}

.comparison-tables {
  background-color: #d4def5;
  border-radius: 8px;
  -webkit-box-shadow: 16px 16px 34px rgba(114, 120, 166, 0.25);
          box-shadow: 16px 16px 34px rgba(114, 120, 166, 0.25);
  padding: 4px;
  min-width: 1080px;
  margin: 0 auto;
}

.comparison-tables .line-wrapper {
  position: relative;
}

.comparison-tables .line-wrapper .line {
  position: absolute;
  top: 0;
  background: url("/images/btoc/line.png");
  background-repeat: no-repeat;
  height: 516px;
  width: 315px;
  background-size: 315px 516px;
  left: 203px;
}

.table-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-cell {
  padding: 16px;
  font-weight: 700;
  font-size: 16px;
  color: #48a5ed;
  background-color: #d7e0fd;
  border-bottom: 1px solid #d4e6f5;
  border-right: 1px solid #d4def5;
}

.header-cell.empty {
  width: 200px;
  border-radius: 5px 0 0 0;
}

.header-cell.our-company {
  width: 320px;
  color: #ffffff;
  background-image: -webkit-gradient(linear, left top, right top, from(#3397db), to(#6abff8));
  background-image: linear-gradient(90deg, #3397db, #6abff8);
  font-size: 20px;
  text-align: center;
}

.header-cell:not(.empty):not(.our-company) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  background-color: #edf3ff;
}

.header-cell:last-child {
  border-radius: 0 6px 0 0;
}

.table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.row-header {
  width: 200px;
  height: 64px;
  padding: 16px 24px;
  background-color: #edf3ff;
  font-weight: 700;
  font-size: 16px;
  color: #555a64;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.row-header div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.row-header div::before {
  content: "";
  display: block;
  -webkit-mask-size: contain;
          mask-size: contain;
  height: 20px;
  width: 20px;
  margin-right: 12px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #424449;
}

.row-header div.study::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2214%22%20viewBox%3D%220%200%2018%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.08464%2010.7507H7.7513C7.98741%2010.7507%208.18533%2010.6708%208.34505%2010.5111C8.50478%2010.3513%208.58464%2010.1534%208.58464%209.91732V8.25065C8.58464%208.01454%208.50478%207.81662%208.34505%207.6569C8.18533%207.49718%207.98741%207.41732%207.7513%207.41732H6.08464C5.84852%207.41732%205.65061%207.49718%205.49089%207.6569C5.33116%207.81662%205.2513%208.01454%205.2513%208.25065V9.91732C5.2513%2010.1534%205.33116%2010.3513%205.49089%2010.5111C5.65061%2010.6708%205.84852%2010.7507%206.08464%2010.7507ZM6.08464%206.58398H7.7513C7.98741%206.58398%208.18533%206.50412%208.34505%206.3444C8.50478%206.18468%208.58464%205.98676%208.58464%205.75065V4.08398C8.58464%203.84787%208.50478%203.64996%208.34505%203.49023C8.18533%203.33051%207.98741%203.25065%207.7513%203.25065H6.08464C5.84852%203.25065%205.65061%203.33051%205.49089%203.49023C5.33116%203.64996%205.2513%203.84787%205.2513%204.08398V5.75065C5.2513%205.98676%205.33116%206.18468%205.49089%206.3444C5.65061%206.50412%205.84852%206.58398%206.08464%206.58398ZM10.2513%2010.7507H11.918C12.1541%2010.7507%2012.352%2010.6708%2012.5117%2010.5111C12.6714%2010.3513%2012.7513%2010.1534%2012.7513%209.91732V8.25065C12.7513%208.01454%2012.6714%207.81662%2012.5117%207.6569C12.352%207.49718%2012.1541%207.41732%2011.918%207.41732H10.2513C10.0152%207.41732%209.81728%207.49718%209.65755%207.6569C9.49783%207.81662%209.41797%208.01454%209.41797%208.25065V9.91732C9.41797%2010.1534%209.49783%2010.3513%209.65755%2010.5111C9.81728%2010.6708%2010.0152%2010.7507%2010.2513%2010.7507ZM10.2513%206.58398H11.918C12.1541%206.58398%2012.352%206.50412%2012.5117%206.3444C12.6714%206.18468%2012.7513%205.98676%2012.7513%205.75065V4.08398C12.7513%203.84787%2012.6714%203.64996%2012.5117%203.49023C12.352%203.33051%2012.1541%203.25065%2011.918%203.25065H10.2513C10.0152%203.25065%209.81728%203.33051%209.65755%203.49023C9.49783%203.64996%209.41797%203.84787%209.41797%204.08398V5.75065C9.41797%205.98676%209.49783%206.18468%209.65755%206.3444C9.81728%206.50412%2010.0152%206.58398%2010.2513%206.58398ZM2.33464%2013.6673C1.8763%2013.6673%201.48394%2013.5041%201.15755%2013.1777C0.831163%2012.8513%200.667969%2012.459%200.667969%2012.0007V2.00065C0.667969%201.54232%200.831163%201.14996%201.15755%200.823568C1.48394%200.497179%201.8763%200.333984%202.33464%200.333984H15.668C16.1263%200.333984%2016.5187%200.497179%2016.8451%200.823568C17.1714%201.14996%2017.3346%201.54232%2017.3346%202.00065V12.0007C17.3346%2012.459%2017.1714%2012.8513%2016.8451%2013.1777C16.5187%2013.5041%2016.1263%2013.6673%2015.668%2013.6673H2.33464ZM2.33464%2012.0007H15.668V2.00065H2.33464V12.0007Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2214%22%20viewBox%3D%220%200%2018%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.08464%2010.7507H7.7513C7.98741%2010.7507%208.18533%2010.6708%208.34505%2010.5111C8.50478%2010.3513%208.58464%2010.1534%208.58464%209.91732V8.25065C8.58464%208.01454%208.50478%207.81662%208.34505%207.6569C8.18533%207.49718%207.98741%207.41732%207.7513%207.41732H6.08464C5.84852%207.41732%205.65061%207.49718%205.49089%207.6569C5.33116%207.81662%205.2513%208.01454%205.2513%208.25065V9.91732C5.2513%2010.1534%205.33116%2010.3513%205.49089%2010.5111C5.65061%2010.6708%205.84852%2010.7507%206.08464%2010.7507ZM6.08464%206.58398H7.7513C7.98741%206.58398%208.18533%206.50412%208.34505%206.3444C8.50478%206.18468%208.58464%205.98676%208.58464%205.75065V4.08398C8.58464%203.84787%208.50478%203.64996%208.34505%203.49023C8.18533%203.33051%207.98741%203.25065%207.7513%203.25065H6.08464C5.84852%203.25065%205.65061%203.33051%205.49089%203.49023C5.33116%203.64996%205.2513%203.84787%205.2513%204.08398V5.75065C5.2513%205.98676%205.33116%206.18468%205.49089%206.3444C5.65061%206.50412%205.84852%206.58398%206.08464%206.58398ZM10.2513%2010.7507H11.918C12.1541%2010.7507%2012.352%2010.6708%2012.5117%2010.5111C12.6714%2010.3513%2012.7513%2010.1534%2012.7513%209.91732V8.25065C12.7513%208.01454%2012.6714%207.81662%2012.5117%207.6569C12.352%207.49718%2012.1541%207.41732%2011.918%207.41732H10.2513C10.0152%207.41732%209.81728%207.49718%209.65755%207.6569C9.49783%207.81662%209.41797%208.01454%209.41797%208.25065V9.91732C9.41797%2010.1534%209.49783%2010.3513%209.65755%2010.5111C9.81728%2010.6708%2010.0152%2010.7507%2010.2513%2010.7507ZM10.2513%206.58398H11.918C12.1541%206.58398%2012.352%206.50412%2012.5117%206.3444C12.6714%206.18468%2012.7513%205.98676%2012.7513%205.75065V4.08398C12.7513%203.84787%2012.6714%203.64996%2012.5117%203.49023C12.352%203.33051%2012.1541%203.25065%2011.918%203.25065H10.2513C10.0152%203.25065%209.81728%203.33051%209.65755%203.49023C9.49783%203.64996%209.41797%203.84787%209.41797%204.08398V5.75065C9.41797%205.98676%209.49783%206.18468%209.65755%206.3444C9.81728%206.50412%2010.0152%206.58398%2010.2513%206.58398ZM2.33464%2013.6673C1.8763%2013.6673%201.48394%2013.5041%201.15755%2013.1777C0.831163%2012.8513%200.667969%2012.459%200.667969%2012.0007V2.00065C0.667969%201.54232%200.831163%201.14996%201.15755%200.823568C1.48394%200.497179%201.8763%200.333984%202.33464%200.333984H15.668C16.1263%200.333984%2016.5187%200.497179%2016.8451%200.823568C17.1714%201.14996%2017.3346%201.54232%2017.3346%202.00065V12.0007C17.3346%2012.459%2017.1714%2012.8513%2016.8451%2013.1777C16.5187%2013.5041%2016.1263%2013.6673%2015.668%2013.6673H2.33464ZM2.33464%2012.0007H15.668V2.00065H2.33464V12.0007Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.row-header div.period::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2218%22%20viewBox%3D%220%200%2016%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.16667%2017.3327C1.70833%2017.3327%201.31597%2017.1695%200.989583%2016.8431C0.663194%2016.5167%200.5%2016.1243%200.5%2015.666V3.99935C0.5%203.54102%200.663194%203.14865%200.989583%202.82227C1.31597%202.49588%201.70833%202.33268%202.16667%202.33268H3V0.666016H4.66667V2.33268H11.3333V0.666016H13V2.33268H13.8333C14.2917%202.33268%2014.684%202.49588%2015.0104%202.82227C15.3368%203.14865%2015.5%203.54102%2015.5%203.99935V15.666C15.5%2016.1243%2015.3368%2016.5167%2015.0104%2016.8431C14.684%2017.1695%2014.2917%2017.3327%2013.8333%2017.3327H2.16667ZM2.16667%2015.666H13.8333V7.33268H2.16667V15.666ZM2.16667%205.66602H13.8333V3.99935H2.16667V5.66602ZM8%2010.666C7.76389%2010.666%207.56597%2010.5862%207.40625%2010.4264C7.24653%2010.2667%207.16667%2010.0688%207.16667%209.83268C7.16667%209.59657%207.24653%209.39865%207.40625%209.23893C7.56597%209.07921%207.76389%208.99935%208%208.99935C8.23611%208.99935%208.43403%209.07921%208.59375%209.23893C8.75347%209.39865%208.83333%209.59657%208.83333%209.83268C8.83333%2010.0688%208.75347%2010.2667%208.59375%2010.4264C8.43403%2010.5862%208.23611%2010.666%208%2010.666ZM4.66667%2010.666C4.43056%2010.666%204.23264%2010.5862%204.07292%2010.4264C3.91319%2010.2667%203.83333%2010.0688%203.83333%209.83268C3.83333%209.59657%203.91319%209.39865%204.07292%209.23893C4.23264%209.07921%204.43056%208.99935%204.66667%208.99935C4.90278%208.99935%205.10069%209.07921%205.26042%209.23893C5.42014%209.39865%205.5%209.59657%205.5%209.83268C5.5%2010.0688%205.42014%2010.2667%205.26042%2010.4264C5.10069%2010.5862%204.90278%2010.666%204.66667%2010.666ZM11.3333%2010.666C11.0972%2010.666%2010.8993%2010.5862%2010.7396%2010.4264C10.5799%2010.2667%2010.5%2010.0688%2010.5%209.83268C10.5%209.59657%2010.5799%209.39865%2010.7396%209.23893C10.8993%209.07921%2011.0972%208.99935%2011.3333%208.99935C11.5694%208.99935%2011.7674%209.07921%2011.9271%209.23893C12.0868%209.39865%2012.1667%209.59657%2012.1667%209.83268C12.1667%2010.0688%2012.0868%2010.2667%2011.9271%2010.4264C11.7674%2010.5862%2011.5694%2010.666%2011.3333%2010.666ZM8%2013.9993C7.76389%2013.9993%207.56597%2013.9195%207.40625%2013.7598C7.24653%2013.6%207.16667%2013.4021%207.16667%2013.166C7.16667%2012.9299%207.24653%2012.732%207.40625%2012.5723C7.56597%2012.4125%207.76389%2012.3327%208%2012.3327C8.23611%2012.3327%208.43403%2012.4125%208.59375%2012.5723C8.75347%2012.732%208.83333%2012.9299%208.83333%2013.166C8.83333%2013.4021%208.75347%2013.6%208.59375%2013.7598C8.43403%2013.9195%208.23611%2013.9993%208%2013.9993ZM4.66667%2013.9993C4.43056%2013.9993%204.23264%2013.9195%204.07292%2013.7598C3.91319%2013.6%203.83333%2013.4021%203.83333%2013.166C3.83333%2012.9299%203.91319%2012.732%204.07292%2012.5723C4.23264%2012.4125%204.43056%2012.3327%204.66667%2012.3327C4.90278%2012.3327%205.10069%2012.4125%205.26042%2012.5723C5.42014%2012.732%205.5%2012.9299%205.5%2013.166C5.5%2013.4021%205.42014%2013.6%205.26042%2013.7598C5.10069%2013.9195%204.90278%2013.9993%204.66667%2013.9993ZM11.3333%2013.9993C11.0972%2013.9993%2010.8993%2013.9195%2010.7396%2013.7598C10.5799%2013.6%2010.5%2013.4021%2010.5%2013.166C10.5%2012.9299%2010.5799%2012.732%2010.7396%2012.5723C10.8993%2012.4125%2011.0972%2012.3327%2011.3333%2012.3327C11.5694%2012.3327%2011.7674%2012.4125%2011.9271%2012.5723C12.0868%2012.732%2012.1667%2012.9299%2012.1667%2013.166C12.1667%2013.4021%2012.0868%2013.6%2011.9271%2013.7598C11.7674%2013.9195%2011.5694%2013.9993%2011.3333%2013.9993Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2218%22%20viewBox%3D%220%200%2016%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.16667%2017.3327C1.70833%2017.3327%201.31597%2017.1695%200.989583%2016.8431C0.663194%2016.5167%200.5%2016.1243%200.5%2015.666V3.99935C0.5%203.54102%200.663194%203.14865%200.989583%202.82227C1.31597%202.49588%201.70833%202.33268%202.16667%202.33268H3V0.666016H4.66667V2.33268H11.3333V0.666016H13V2.33268H13.8333C14.2917%202.33268%2014.684%202.49588%2015.0104%202.82227C15.3368%203.14865%2015.5%203.54102%2015.5%203.99935V15.666C15.5%2016.1243%2015.3368%2016.5167%2015.0104%2016.8431C14.684%2017.1695%2014.2917%2017.3327%2013.8333%2017.3327H2.16667ZM2.16667%2015.666H13.8333V7.33268H2.16667V15.666ZM2.16667%205.66602H13.8333V3.99935H2.16667V5.66602ZM8%2010.666C7.76389%2010.666%207.56597%2010.5862%207.40625%2010.4264C7.24653%2010.2667%207.16667%2010.0688%207.16667%209.83268C7.16667%209.59657%207.24653%209.39865%207.40625%209.23893C7.56597%209.07921%207.76389%208.99935%208%208.99935C8.23611%208.99935%208.43403%209.07921%208.59375%209.23893C8.75347%209.39865%208.83333%209.59657%208.83333%209.83268C8.83333%2010.0688%208.75347%2010.2667%208.59375%2010.4264C8.43403%2010.5862%208.23611%2010.666%208%2010.666ZM4.66667%2010.666C4.43056%2010.666%204.23264%2010.5862%204.07292%2010.4264C3.91319%2010.2667%203.83333%2010.0688%203.83333%209.83268C3.83333%209.59657%203.91319%209.39865%204.07292%209.23893C4.23264%209.07921%204.43056%208.99935%204.66667%208.99935C4.90278%208.99935%205.10069%209.07921%205.26042%209.23893C5.42014%209.39865%205.5%209.59657%205.5%209.83268C5.5%2010.0688%205.42014%2010.2667%205.26042%2010.4264C5.10069%2010.5862%204.90278%2010.666%204.66667%2010.666ZM11.3333%2010.666C11.0972%2010.666%2010.8993%2010.5862%2010.7396%2010.4264C10.5799%2010.2667%2010.5%2010.0688%2010.5%209.83268C10.5%209.59657%2010.5799%209.39865%2010.7396%209.23893C10.8993%209.07921%2011.0972%208.99935%2011.3333%208.99935C11.5694%208.99935%2011.7674%209.07921%2011.9271%209.23893C12.0868%209.39865%2012.1667%209.59657%2012.1667%209.83268C12.1667%2010.0688%2012.0868%2010.2667%2011.9271%2010.4264C11.7674%2010.5862%2011.5694%2010.666%2011.3333%2010.666ZM8%2013.9993C7.76389%2013.9993%207.56597%2013.9195%207.40625%2013.7598C7.24653%2013.6%207.16667%2013.4021%207.16667%2013.166C7.16667%2012.9299%207.24653%2012.732%207.40625%2012.5723C7.56597%2012.4125%207.76389%2012.3327%208%2012.3327C8.23611%2012.3327%208.43403%2012.4125%208.59375%2012.5723C8.75347%2012.732%208.83333%2012.9299%208.83333%2013.166C8.83333%2013.4021%208.75347%2013.6%208.59375%2013.7598C8.43403%2013.9195%208.23611%2013.9993%208%2013.9993ZM4.66667%2013.9993C4.43056%2013.9993%204.23264%2013.9195%204.07292%2013.7598C3.91319%2013.6%203.83333%2013.4021%203.83333%2013.166C3.83333%2012.9299%203.91319%2012.732%204.07292%2012.5723C4.23264%2012.4125%204.43056%2012.3327%204.66667%2012.3327C4.90278%2012.3327%205.10069%2012.4125%205.26042%2012.5723C5.42014%2012.732%205.5%2012.9299%205.5%2013.166C5.5%2013.4021%205.42014%2013.6%205.26042%2013.7598C5.10069%2013.9195%204.90278%2013.9993%204.66667%2013.9993ZM11.3333%2013.9993C11.0972%2013.9993%2010.8993%2013.9195%2010.7396%2013.7598C10.5799%2013.6%2010.5%2013.4021%2010.5%2013.166C10.5%2012.9299%2010.5799%2012.732%2010.7396%2012.5723C10.8993%2012.4125%2011.0972%2012.3327%2011.3333%2012.3327C11.5694%2012.3327%2011.7674%2012.4125%2011.9271%2012.5723C12.0868%2012.732%2012.1667%2012.9299%2012.1667%2013.166C12.1667%2013.4021%2012.0868%2013.6%2011.9271%2013.7598C11.7674%2013.9195%2011.5694%2013.9993%2011.3333%2013.9993Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.row-header div.tuition-fee::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2214%22%20viewBox%3D%220%200%2018%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M4.0013%2013.6673C3.08464%2013.6673%202.29991%2013.3409%201.64714%2012.6882C0.994358%2012.0354%200.667969%2011.2507%200.667969%2010.334V3.66732C0.667969%202.75065%200.994358%201.96593%201.64714%201.31315C2.29991%200.660373%203.08464%200.333984%204.0013%200.333984H14.0013C14.918%200.333984%2015.7027%200.660373%2016.3555%201.31315C17.0082%201.96593%2017.3346%202.75065%2017.3346%203.66732V10.334C17.3346%2011.2507%2017.0082%2012.0354%2016.3555%2012.6882C15.7027%2013.3409%2014.918%2013.6673%2014.0013%2013.6673H4.0013ZM4.0013%203.66732H14.0013C14.3069%203.66732%2014.5985%203.70204%2014.8763%203.77148C15.1541%203.84093%2015.418%203.95204%2015.668%204.10482V3.66732C15.668%203.20898%2015.5048%202.81662%2015.1784%202.49023C14.852%202.16385%2014.4596%202.00065%2014.0013%202.00065H4.0013C3.54297%202.00065%203.15061%202.16385%202.82422%202.49023C2.49783%202.81662%202.33464%203.20898%202.33464%203.66732V4.10482C2.58464%203.95204%202.84852%203.84093%203.1263%203.77148C3.40408%203.70204%203.69575%203.66732%204.0013%203.66732ZM2.45964%206.37565L11.7305%208.62565C11.8555%208.65343%2011.9805%208.65343%2012.1055%208.62565C12.2305%208.59787%2012.3485%208.54232%2012.4596%208.45898L15.3555%206.04232C15.2027%205.83398%2015.0082%205.66385%2014.7721%205.5319C14.536%205.39996%2014.2791%205.33398%2014.0013%205.33398H4.0013C3.64019%205.33398%203.32422%205.42773%203.05339%205.61523C2.78255%205.80273%202.58464%206.05621%202.45964%206.37565Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2214%22%20viewBox%3D%220%200%2018%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M4.0013%2013.6673C3.08464%2013.6673%202.29991%2013.3409%201.64714%2012.6882C0.994358%2012.0354%200.667969%2011.2507%200.667969%2010.334V3.66732C0.667969%202.75065%200.994358%201.96593%201.64714%201.31315C2.29991%200.660373%203.08464%200.333984%204.0013%200.333984H14.0013C14.918%200.333984%2015.7027%200.660373%2016.3555%201.31315C17.0082%201.96593%2017.3346%202.75065%2017.3346%203.66732V10.334C17.3346%2011.2507%2017.0082%2012.0354%2016.3555%2012.6882C15.7027%2013.3409%2014.918%2013.6673%2014.0013%2013.6673H4.0013ZM4.0013%203.66732H14.0013C14.3069%203.66732%2014.5985%203.70204%2014.8763%203.77148C15.1541%203.84093%2015.418%203.95204%2015.668%204.10482V3.66732C15.668%203.20898%2015.5048%202.81662%2015.1784%202.49023C14.852%202.16385%2014.4596%202.00065%2014.0013%202.00065H4.0013C3.54297%202.00065%203.15061%202.16385%202.82422%202.49023C2.49783%202.81662%202.33464%203.20898%202.33464%203.66732V4.10482C2.58464%203.95204%202.84852%203.84093%203.1263%203.77148C3.40408%203.70204%203.69575%203.66732%204.0013%203.66732ZM2.45964%206.37565L11.7305%208.62565C11.8555%208.65343%2011.9805%208.65343%2012.1055%208.62565C12.2305%208.59787%2012.3485%208.54232%2012.4596%208.45898L15.3555%206.04232C15.2027%205.83398%2015.0082%205.66385%2014.7721%205.5319C14.536%205.39996%2014.2791%205.33398%2014.0013%205.33398H4.0013C3.64019%205.33398%203.32422%205.42773%203.05339%205.61523C2.78255%205.80273%202.58464%206.05621%202.45964%206.37565Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.row-header div.curriculum-th::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2217%22%20viewBox%3D%220%200%2014%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M4.4987%209.33268H9.4987C9.73481%209.33268%209.93273%209.25282%2010.0924%209.0931C10.2522%208.93338%2010.332%208.73546%2010.332%208.49935C10.332%208.26324%2010.2522%208.06532%2010.0924%207.9056C9.93273%207.74588%209.73481%207.66602%209.4987%207.66602H4.4987C4.26259%207.66602%204.06467%207.74588%203.90495%207.9056C3.74523%208.06532%203.66536%208.26324%203.66536%208.49935C3.66536%208.73546%203.74523%208.93338%203.90495%209.0931C4.06467%209.25282%204.26259%209.33268%204.4987%209.33268ZM4.4987%2011.8327H9.4987C9.73481%2011.8327%209.93273%2011.7528%2010.0924%2011.5931C10.2522%2011.4334%2010.332%2011.2355%2010.332%2010.9994C10.332%2010.7632%2010.2522%2010.5653%2010.0924%2010.4056C9.93273%2010.2459%209.73481%2010.166%209.4987%2010.166H4.4987C4.26259%2010.166%204.06467%2010.2459%203.90495%2010.4056C3.74523%2010.5653%203.66536%2010.7632%203.66536%2010.9994C3.66536%2011.2355%203.74523%2011.4334%203.90495%2011.5931C4.06467%2011.7528%204.26259%2011.8327%204.4987%2011.8327ZM4.4987%2014.3327H6.9987C7.23481%2014.3327%207.43273%2014.2528%207.59245%2014.0931C7.75217%2013.9334%207.83203%2013.7355%207.83203%2013.4994C7.83203%2013.2632%207.75217%2013.0653%207.59245%2012.9056C7.43273%2012.7459%207.23481%2012.666%206.9987%2012.666H4.4987C4.26259%2012.666%204.06467%2012.7459%203.90495%2012.9056C3.74523%2013.0653%203.66536%2013.2632%203.66536%2013.4994C3.66536%2013.7355%203.74523%2013.9334%203.90495%2014.0931C4.06467%2014.2528%204.26259%2014.3327%204.4987%2014.3327ZM1.9987%2016.8327C1.54036%2016.8327%201.148%2016.6695%200.821615%2016.3431C0.495226%2016.0167%200.332031%2015.6244%200.332031%2015.166V1.83268C0.332031%201.37435%200.495226%200.981988%200.821615%200.655599C1.148%200.32921%201.54036%200.166016%201.9987%200.166016H7.97786C8.20009%200.166016%208.41189%200.207682%208.61328%200.291016C8.81467%200.374349%208.99175%200.492405%209.14453%200.645182L13.1862%204.68685C13.339%204.83963%2013.457%205.01671%2013.5404%205.2181C13.6237%205.41949%2013.6654%205.63129%2013.6654%205.85352V15.166C13.6654%2015.6244%2013.5022%2016.0167%2013.1758%2016.3431C12.8494%2016.6695%2012.457%2016.8327%2011.9987%2016.8327H1.9987ZM11.9987%205.99935H9.08203C8.73481%205.99935%208.43967%205.87782%208.19661%205.63477C7.95356%205.39171%207.83203%205.09657%207.83203%204.74935V1.83268H1.9987V15.166H11.9987V5.99935Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2217%22%20viewBox%3D%220%200%2014%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M4.4987%209.33268H9.4987C9.73481%209.33268%209.93273%209.25282%2010.0924%209.0931C10.2522%208.93338%2010.332%208.73546%2010.332%208.49935C10.332%208.26324%2010.2522%208.06532%2010.0924%207.9056C9.93273%207.74588%209.73481%207.66602%209.4987%207.66602H4.4987C4.26259%207.66602%204.06467%207.74588%203.90495%207.9056C3.74523%208.06532%203.66536%208.26324%203.66536%208.49935C3.66536%208.73546%203.74523%208.93338%203.90495%209.0931C4.06467%209.25282%204.26259%209.33268%204.4987%209.33268ZM4.4987%2011.8327H9.4987C9.73481%2011.8327%209.93273%2011.7528%2010.0924%2011.5931C10.2522%2011.4334%2010.332%2011.2355%2010.332%2010.9994C10.332%2010.7632%2010.2522%2010.5653%2010.0924%2010.4056C9.93273%2010.2459%209.73481%2010.166%209.4987%2010.166H4.4987C4.26259%2010.166%204.06467%2010.2459%203.90495%2010.4056C3.74523%2010.5653%203.66536%2010.7632%203.66536%2010.9994C3.66536%2011.2355%203.74523%2011.4334%203.90495%2011.5931C4.06467%2011.7528%204.26259%2011.8327%204.4987%2011.8327ZM4.4987%2014.3327H6.9987C7.23481%2014.3327%207.43273%2014.2528%207.59245%2014.0931C7.75217%2013.9334%207.83203%2013.7355%207.83203%2013.4994C7.83203%2013.2632%207.75217%2013.0653%207.59245%2012.9056C7.43273%2012.7459%207.23481%2012.666%206.9987%2012.666H4.4987C4.26259%2012.666%204.06467%2012.7459%203.90495%2012.9056C3.74523%2013.0653%203.66536%2013.2632%203.66536%2013.4994C3.66536%2013.7355%203.74523%2013.9334%203.90495%2014.0931C4.06467%2014.2528%204.26259%2014.3327%204.4987%2014.3327ZM1.9987%2016.8327C1.54036%2016.8327%201.148%2016.6695%200.821615%2016.3431C0.495226%2016.0167%200.332031%2015.6244%200.332031%2015.166V1.83268C0.332031%201.37435%200.495226%200.981988%200.821615%200.655599C1.148%200.32921%201.54036%200.166016%201.9987%200.166016H7.97786C8.20009%200.166016%208.41189%200.207682%208.61328%200.291016C8.81467%200.374349%208.99175%200.492405%209.14453%200.645182L13.1862%204.68685C13.339%204.83963%2013.457%205.01671%2013.5404%205.2181C13.6237%205.41949%2013.6654%205.63129%2013.6654%205.85352V15.166C13.6654%2015.6244%2013.5022%2016.0167%2013.1758%2016.3431C12.8494%2016.6695%2012.457%2016.8327%2011.9987%2016.8327H1.9987ZM11.9987%205.99935H9.08203C8.73481%205.99935%208.43967%205.87782%208.19661%205.63477C7.95356%205.39171%207.83203%205.09657%207.83203%204.74935V1.83268H1.9987V15.166H11.9987V5.99935Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.row-header div.support-th::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2219%22%20height%3D%2218%22%20viewBox%3D%220%200%2019%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M11.6237%2015.4993L16.582%2013.9577C16.5126%2013.8327%2016.4119%2013.725%2016.2799%2013.6348C16.148%2013.5445%2015.9987%2013.4993%2015.832%2013.4993H11.6237C11.2487%2013.4993%2010.9501%2013.4855%2010.7279%2013.4577C10.5056%2013.4299%2010.2765%2013.3743%2010.0404%2013.291L8.85286%2012.8952C8.63064%2012.8257%208.47092%2012.6868%208.3737%2012.4785C8.27648%2012.2702%208.26259%2012.0549%208.33203%2011.8327C8.40148%2011.6105%208.53689%2011.4473%208.73828%2011.3431C8.93967%2011.2389%209.15148%2011.2216%209.3737%2011.291L10.2487%2011.5827C10.4848%2011.6521%2010.7522%2011.7077%2011.0508%2011.7493C11.3494%2011.791%2011.7556%2011.8188%2012.2695%2011.8327H12.4987C12.4987%2011.6799%2012.4536%2011.5341%2012.3633%2011.3952C12.273%2011.2563%2012.1654%2011.166%2012.0404%2011.1243L7.16536%209.33268H5.83203V13.916L11.6237%2015.4993ZM11.1862%2017.1243L5.83203%2015.6243C5.72092%2015.9855%205.50217%2016.2771%205.17578%2016.4993C4.84939%2016.7216%204.51259%2016.8327%204.16536%2016.8327H2.4987C2.04036%2016.8327%201.648%2016.6695%201.32161%2016.3431C0.995226%2016.0167%200.832031%2015.6243%200.832031%2015.166V9.33268C0.832031%208.87435%200.995226%208.48199%201.32161%208.1556C1.648%207.82921%202.04036%207.66602%202.4987%207.66602H7.16536C7.26259%207.66602%207.35981%207.67643%207.45703%207.69727C7.55425%207.7181%207.64453%207.7424%207.72786%207.77018L12.6237%209.58268C13.082%209.74935%2013.4536%2010.041%2013.7383%2010.4577C14.023%2010.8743%2014.1654%2011.3327%2014.1654%2011.8327H15.832C16.5265%2011.8327%2017.1168%2012.0618%2017.6029%2012.5202C18.089%2012.9785%2018.332%2013.5827%2018.332%2014.3327C18.332%2014.6382%2018.2522%2014.8778%2018.0924%2015.0514C17.9327%2015.225%2017.6862%2015.3674%2017.3529%2015.4785L12.1445%2017.1035C11.9918%2017.1591%2011.832%2017.1868%2011.6654%2017.1868C11.4987%2017.1868%2011.339%2017.166%2011.1862%2017.1243ZM2.4987%2015.166H4.16536V9.33268H2.4987V15.166ZM13.332%208.66602C13.1237%208.66602%2012.9188%208.62782%2012.7174%208.55143C12.5161%208.47504%2012.332%208.36046%2012.1654%208.20768L9.8737%205.95768C9.44314%205.54102%209.07856%205.07921%208.77995%204.57227C8.48134%204.06532%208.33203%203.51324%208.33203%202.91602C8.33203%202.15213%208.59939%201.50282%209.13411%200.968099C9.66884%200.433377%2010.3181%200.166016%2011.082%200.166016C11.5265%200.166016%2011.9431%200.259766%2012.332%200.447266C12.7209%200.634766%2013.0543%200.888238%2013.332%201.20768C13.6098%200.888238%2013.9431%200.634766%2014.332%200.447266C14.7209%200.259766%2015.1376%200.166016%2015.582%200.166016C16.3459%200.166016%2016.9952%200.433377%2017.5299%200.968099C18.0647%201.50282%2018.332%202.15213%2018.332%202.91602C18.332%203.51324%2018.1862%204.06532%2017.8945%204.57227C17.6029%205.07921%2017.2418%205.54102%2016.8112%205.95768L14.4987%208.20768C14.332%208.36046%2014.148%208.47504%2013.9466%208.55143C13.7452%208.62782%2013.5404%208.66602%2013.332%208.66602ZM13.332%206.99935L15.6029%204.77018C15.8668%204.50629%2016.1098%204.22504%2016.332%203.92643C16.5543%203.62782%2016.6654%203.29102%2016.6654%202.91602C16.6654%202.61046%2016.5612%202.35352%2016.3529%202.14518C16.1445%201.93685%2015.8876%201.83268%2015.582%201.83268C15.3876%201.83268%2015.2036%201.87088%2015.0299%201.94727C14.8563%202.02365%2014.707%202.13824%2014.582%202.29102L13.9779%203.02018C13.8112%203.21463%2013.5959%203.31185%2013.332%203.31185C13.0681%203.31185%2012.8529%203.21463%2012.6862%203.02018L12.082%202.29102C11.957%202.13824%2011.8077%202.02365%2011.6341%201.94727C11.4605%201.87088%2011.2765%201.83268%2011.082%201.83268C10.7765%201.83268%2010.5195%201.93685%2010.3112%202.14518C10.1029%202.35352%209.9987%202.61046%209.9987%202.91602C9.9987%203.29102%2010.1098%203.62782%2010.332%203.92643C10.5543%204.22504%2010.7973%204.50629%2011.0612%204.77018L13.332%206.99935Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2219%22%20height%3D%2218%22%20viewBox%3D%220%200%2019%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M11.6237%2015.4993L16.582%2013.9577C16.5126%2013.8327%2016.4119%2013.725%2016.2799%2013.6348C16.148%2013.5445%2015.9987%2013.4993%2015.832%2013.4993H11.6237C11.2487%2013.4993%2010.9501%2013.4855%2010.7279%2013.4577C10.5056%2013.4299%2010.2765%2013.3743%2010.0404%2013.291L8.85286%2012.8952C8.63064%2012.8257%208.47092%2012.6868%208.3737%2012.4785C8.27648%2012.2702%208.26259%2012.0549%208.33203%2011.8327C8.40148%2011.6105%208.53689%2011.4473%208.73828%2011.3431C8.93967%2011.2389%209.15148%2011.2216%209.3737%2011.291L10.2487%2011.5827C10.4848%2011.6521%2010.7522%2011.7077%2011.0508%2011.7493C11.3494%2011.791%2011.7556%2011.8188%2012.2695%2011.8327H12.4987C12.4987%2011.6799%2012.4536%2011.5341%2012.3633%2011.3952C12.273%2011.2563%2012.1654%2011.166%2012.0404%2011.1243L7.16536%209.33268H5.83203V13.916L11.6237%2015.4993ZM11.1862%2017.1243L5.83203%2015.6243C5.72092%2015.9855%205.50217%2016.2771%205.17578%2016.4993C4.84939%2016.7216%204.51259%2016.8327%204.16536%2016.8327H2.4987C2.04036%2016.8327%201.648%2016.6695%201.32161%2016.3431C0.995226%2016.0167%200.832031%2015.6243%200.832031%2015.166V9.33268C0.832031%208.87435%200.995226%208.48199%201.32161%208.1556C1.648%207.82921%202.04036%207.66602%202.4987%207.66602H7.16536C7.26259%207.66602%207.35981%207.67643%207.45703%207.69727C7.55425%207.7181%207.64453%207.7424%207.72786%207.77018L12.6237%209.58268C13.082%209.74935%2013.4536%2010.041%2013.7383%2010.4577C14.023%2010.8743%2014.1654%2011.3327%2014.1654%2011.8327H15.832C16.5265%2011.8327%2017.1168%2012.0618%2017.6029%2012.5202C18.089%2012.9785%2018.332%2013.5827%2018.332%2014.3327C18.332%2014.6382%2018.2522%2014.8778%2018.0924%2015.0514C17.9327%2015.225%2017.6862%2015.3674%2017.3529%2015.4785L12.1445%2017.1035C11.9918%2017.1591%2011.832%2017.1868%2011.6654%2017.1868C11.4987%2017.1868%2011.339%2017.166%2011.1862%2017.1243ZM2.4987%2015.166H4.16536V9.33268H2.4987V15.166ZM13.332%208.66602C13.1237%208.66602%2012.9188%208.62782%2012.7174%208.55143C12.5161%208.47504%2012.332%208.36046%2012.1654%208.20768L9.8737%205.95768C9.44314%205.54102%209.07856%205.07921%208.77995%204.57227C8.48134%204.06532%208.33203%203.51324%208.33203%202.91602C8.33203%202.15213%208.59939%201.50282%209.13411%200.968099C9.66884%200.433377%2010.3181%200.166016%2011.082%200.166016C11.5265%200.166016%2011.9431%200.259766%2012.332%200.447266C12.7209%200.634766%2013.0543%200.888238%2013.332%201.20768C13.6098%200.888238%2013.9431%200.634766%2014.332%200.447266C14.7209%200.259766%2015.1376%200.166016%2015.582%200.166016C16.3459%200.166016%2016.9952%200.433377%2017.5299%200.968099C18.0647%201.50282%2018.332%202.15213%2018.332%202.91602C18.332%203.51324%2018.1862%204.06532%2017.8945%204.57227C17.6029%205.07921%2017.2418%205.54102%2016.8112%205.95768L14.4987%208.20768C14.332%208.36046%2014.148%208.47504%2013.9466%208.55143C13.7452%208.62782%2013.5404%208.66602%2013.332%208.66602ZM13.332%206.99935L15.6029%204.77018C15.8668%204.50629%2016.1098%204.22504%2016.332%203.92643C16.5543%203.62782%2016.6654%203.29102%2016.6654%202.91602C16.6654%202.61046%2016.5612%202.35352%2016.3529%202.14518C16.1445%201.93685%2015.8876%201.83268%2015.582%201.83268C15.3876%201.83268%2015.2036%201.87088%2015.0299%201.94727C14.8563%202.02365%2014.707%202.13824%2014.582%202.29102L13.9779%203.02018C13.8112%203.21463%2013.5959%203.31185%2013.332%203.31185C13.0681%203.31185%2012.8529%203.21463%2012.6862%203.02018L12.082%202.29102C11.957%202.13824%2011.8077%202.02365%2011.6341%201.94727C11.4605%201.87088%2011.2765%201.83268%2011.082%201.83268C10.7765%201.83268%2010.5195%201.93685%2010.3112%202.14518C10.1029%202.35352%209.9987%202.61046%209.9987%202.91602C9.9987%203.29102%2010.1098%203.62782%2010.332%203.92643C10.5543%204.22504%2010.7973%204.50629%2011.0612%204.77018L13.332%206.99935Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.row-header div.job-support::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2217%22%20viewBox%3D%220%200%2020%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M9.89572%2015.166C9.95128%2015.166%2010.0068%2015.1521%2010.0624%2015.1244C10.1179%2015.0966%2010.1596%2015.0688%2010.1874%2015.041L17.0207%208.20768C17.1874%208.04102%2017.3089%207.85352%2017.3853%207.64518C17.4617%207.43685%2017.4999%207.22852%2017.4999%207.02018C17.4999%206.79796%2017.4617%206.58616%2017.3853%206.38477C17.3089%206.18338%2017.1874%206.00629%2017.0207%205.85352L13.4791%202.31185C13.3263%202.14518%2013.1492%202.02365%2012.9478%201.94727C12.7464%201.87088%2012.5346%201.83268%2012.3124%201.83268C12.1041%201.83268%2011.8957%201.87088%2011.6874%201.94727C11.4791%202.02365%2011.2916%202.14518%2011.1249%202.31185L10.8957%202.54102L12.4374%204.10352C12.6457%204.29796%2012.7985%204.52018%2012.8957%204.77018C12.9929%205.02018%2013.0416%205.28407%2013.0416%205.56185C13.0416%206.14518%2012.8436%206.63477%2012.4478%207.0306C12.052%207.42643%2011.5624%207.62435%2010.9791%207.62435C10.7013%207.62435%2010.4339%207.57574%2010.177%207.47852C9.92003%207.38129%209.69433%207.23546%209.49989%207.04102L7.93739%205.49935L4.29156%209.14518C4.24989%209.18685%204.21864%209.23199%204.19781%209.2806C4.17697%209.32921%204.16656%209.38129%204.16656%209.43685C4.16656%209.54796%204.20822%209.64866%204.29156%209.73893C4.37489%209.82921%204.47211%209.87435%204.58322%209.87435C4.63878%209.87435%204.69433%209.86046%204.74989%209.83268C4.80544%209.80491%204.84711%209.77713%204.87489%209.74935L7.12489%207.49935C7.27767%207.34657%207.46864%207.26671%207.6978%207.25977C7.92697%207.25282%208.12489%207.33268%208.29155%207.49935C8.44433%207.65213%208.52072%207.84657%208.52072%208.08268C8.52072%208.31879%208.44433%208.51324%208.29155%208.66602L6.06239%2010.916C6.02072%2010.9577%205.98947%2011.0028%205.96864%2011.0514C5.94781%2011.1%205.93739%2011.1521%205.93739%2011.2077C5.93739%2011.3188%205.97906%2011.416%206.06239%2011.4994C6.14572%2011.5827%206.24294%2011.6244%206.35405%2011.6244C6.40961%2011.6244%206.46517%2011.6105%206.52072%2011.5827C6.57628%2011.5549%206.61794%2011.5271%206.64572%2011.4994L8.89572%209.27018C9.0485%209.11741%209.23947%209.03754%209.46864%209.0306C9.69781%209.02366%209.89572%209.10352%2010.0624%209.27018C10.2152%209.42296%2010.2916%209.61741%2010.2916%209.85352C10.2916%2010.0896%2010.2152%2010.2841%2010.0624%2010.4369L7.83322%2012.6869C7.79155%2012.7146%207.7603%2012.7563%207.73947%2012.8119C7.71864%2012.8674%207.70822%2012.923%207.70822%2012.9785C7.70822%2013.0896%207.74989%2013.1869%207.83322%2013.2702C7.91655%2013.3535%208.01378%2013.3952%208.12489%2013.3952C8.18044%2013.3952%208.23253%2013.3848%208.28114%2013.3639C8.32975%2013.3431%208.37489%2013.3119%208.41655%2013.2702L10.6666%2011.041C10.8193%2010.8882%2011.0103%2010.8084%2011.2395%2010.8014C11.4686%2010.7945%2011.6666%2010.8744%2011.8332%2011.041C11.986%2011.1938%2012.0624%2011.3882%2012.0624%2011.6244C12.0624%2011.8605%2011.986%2012.0549%2011.8332%2012.2077L9.58322%2014.4577C9.54156%2014.4994%209.51031%2014.5445%209.48947%2014.5931C9.46864%2014.6417%209.45822%2014.6938%209.45822%2014.7494C9.45822%2014.8605%209.50336%2014.9577%209.59364%2015.041C9.68392%2015.1244%209.78461%2015.166%209.89572%2015.166ZM9.87489%2016.8327C9.361%2016.8327%208.90614%2016.6625%208.5103%2016.3223C8.11447%2015.982%207.88183%2015.5549%207.81239%2015.041C7.34017%2014.9716%206.94433%2014.7771%206.62489%2014.4577C6.30544%2014.1382%206.111%2013.7424%206.04156%2013.2702C5.56933%2013.2007%205.17697%2013.0028%204.86447%2012.6764C4.55197%2012.35%204.361%2011.9577%204.29156%2011.4994C3.76378%2011.4299%203.33322%2011.2007%202.99989%2010.8119C2.66656%2010.423%202.49989%209.96463%202.49989%209.43685C2.49989%209.15907%202.55197%208.89171%202.65614%208.63477C2.76031%208.37782%202.90961%208.15213%203.10406%207.95768L6.74989%204.31185C7.06933%203.9924%207.46169%203.83268%207.92697%203.83268C8.39225%203.83268%208.78461%203.9924%209.10406%204.31185L10.6666%205.87435C10.6943%205.91602%2010.736%205.94727%2010.7916%205.9681C10.8471%205.98893%2010.9027%205.99935%2010.9582%205.99935C11.0832%205.99935%2011.1874%205.96116%2011.2707%205.88477C11.3541%205.80838%2011.3957%205.70768%2011.3957%205.58268C11.3957%205.52713%2011.3853%205.47157%2011.3645%205.41602C11.3436%205.36046%2011.3124%205.31879%2011.2707%205.29102L8.29155%202.31185C8.13878%202.14518%207.96169%202.02365%207.7603%201.94727C7.55892%201.87088%207.34711%201.83268%207.12489%201.83268C6.91655%201.83268%206.70822%201.87088%206.49989%201.94727C6.29155%202.02365%206.10406%202.14518%205.93739%202.31185L2.99989%205.27018C2.80544%205.46463%202.66656%205.69379%202.58322%205.95768C2.49989%206.22157%202.47906%206.48546%202.52072%206.74935C2.56239%206.98546%202.51378%207.19379%202.37489%207.37435C2.236%207.55491%202.0485%207.65907%201.81239%207.68685C1.57628%207.71463%201.36794%207.66254%201.18739%207.5306C1.00683%207.39866%200.902666%207.21463%200.874888%206.97852C0.791555%206.45074%200.82975%205.93338%200.989472%205.42643C1.14919%204.91949%201.4235%204.47157%201.81239%204.08268L4.74989%201.14518C5.08322%200.825738%205.45475%200.582682%205.86447%200.416016C6.27419%200.249349%206.69433%200.166016%207.12489%200.166016C7.55544%200.166016%207.97558%200.249349%208.3853%200.416016C8.79503%200.582682%209.15961%200.825738%209.47906%201.14518L9.70822%201.37435L9.93739%201.14518C10.2707%200.825738%2010.6422%200.582682%2011.052%200.416016C11.4617%200.249349%2011.8818%200.166016%2012.3124%200.166016C12.7429%200.166016%2013.1631%200.249349%2013.5728%200.416016C13.9825%200.582682%2014.3471%200.825738%2014.6666%201.14518L18.1874%204.66602C18.5068%204.98546%2018.7499%205.35352%2018.9166%205.77018C19.0832%206.18685%2019.1666%206.61046%2019.1666%207.04102C19.1666%207.47157%2019.0832%207.89171%2018.9166%208.30143C18.7499%208.71116%2018.5068%209.07574%2018.1874%209.39518L11.3541%2016.2077C11.1596%2016.4021%2010.9339%2016.5549%2010.677%2016.666C10.42%2016.7771%2010.1527%2016.8327%209.87489%2016.8327Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2217%22%20viewBox%3D%220%200%2020%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M9.89572%2015.166C9.95128%2015.166%2010.0068%2015.1521%2010.0624%2015.1244C10.1179%2015.0966%2010.1596%2015.0688%2010.1874%2015.041L17.0207%208.20768C17.1874%208.04102%2017.3089%207.85352%2017.3853%207.64518C17.4617%207.43685%2017.4999%207.22852%2017.4999%207.02018C17.4999%206.79796%2017.4617%206.58616%2017.3853%206.38477C17.3089%206.18338%2017.1874%206.00629%2017.0207%205.85352L13.4791%202.31185C13.3263%202.14518%2013.1492%202.02365%2012.9478%201.94727C12.7464%201.87088%2012.5346%201.83268%2012.3124%201.83268C12.1041%201.83268%2011.8957%201.87088%2011.6874%201.94727C11.4791%202.02365%2011.2916%202.14518%2011.1249%202.31185L10.8957%202.54102L12.4374%204.10352C12.6457%204.29796%2012.7985%204.52018%2012.8957%204.77018C12.9929%205.02018%2013.0416%205.28407%2013.0416%205.56185C13.0416%206.14518%2012.8436%206.63477%2012.4478%207.0306C12.052%207.42643%2011.5624%207.62435%2010.9791%207.62435C10.7013%207.62435%2010.4339%207.57574%2010.177%207.47852C9.92003%207.38129%209.69433%207.23546%209.49989%207.04102L7.93739%205.49935L4.29156%209.14518C4.24989%209.18685%204.21864%209.23199%204.19781%209.2806C4.17697%209.32921%204.16656%209.38129%204.16656%209.43685C4.16656%209.54796%204.20822%209.64866%204.29156%209.73893C4.37489%209.82921%204.47211%209.87435%204.58322%209.87435C4.63878%209.87435%204.69433%209.86046%204.74989%209.83268C4.80544%209.80491%204.84711%209.77713%204.87489%209.74935L7.12489%207.49935C7.27767%207.34657%207.46864%207.26671%207.6978%207.25977C7.92697%207.25282%208.12489%207.33268%208.29155%207.49935C8.44433%207.65213%208.52072%207.84657%208.52072%208.08268C8.52072%208.31879%208.44433%208.51324%208.29155%208.66602L6.06239%2010.916C6.02072%2010.9577%205.98947%2011.0028%205.96864%2011.0514C5.94781%2011.1%205.93739%2011.1521%205.93739%2011.2077C5.93739%2011.3188%205.97906%2011.416%206.06239%2011.4994C6.14572%2011.5827%206.24294%2011.6244%206.35405%2011.6244C6.40961%2011.6244%206.46517%2011.6105%206.52072%2011.5827C6.57628%2011.5549%206.61794%2011.5271%206.64572%2011.4994L8.89572%209.27018C9.0485%209.11741%209.23947%209.03754%209.46864%209.0306C9.69781%209.02366%209.89572%209.10352%2010.0624%209.27018C10.2152%209.42296%2010.2916%209.61741%2010.2916%209.85352C10.2916%2010.0896%2010.2152%2010.2841%2010.0624%2010.4369L7.83322%2012.6869C7.79155%2012.7146%207.7603%2012.7563%207.73947%2012.8119C7.71864%2012.8674%207.70822%2012.923%207.70822%2012.9785C7.70822%2013.0896%207.74989%2013.1869%207.83322%2013.2702C7.91655%2013.3535%208.01378%2013.3952%208.12489%2013.3952C8.18044%2013.3952%208.23253%2013.3848%208.28114%2013.3639C8.32975%2013.3431%208.37489%2013.3119%208.41655%2013.2702L10.6666%2011.041C10.8193%2010.8882%2011.0103%2010.8084%2011.2395%2010.8014C11.4686%2010.7945%2011.6666%2010.8744%2011.8332%2011.041C11.986%2011.1938%2012.0624%2011.3882%2012.0624%2011.6244C12.0624%2011.8605%2011.986%2012.0549%2011.8332%2012.2077L9.58322%2014.4577C9.54156%2014.4994%209.51031%2014.5445%209.48947%2014.5931C9.46864%2014.6417%209.45822%2014.6938%209.45822%2014.7494C9.45822%2014.8605%209.50336%2014.9577%209.59364%2015.041C9.68392%2015.1244%209.78461%2015.166%209.89572%2015.166ZM9.87489%2016.8327C9.361%2016.8327%208.90614%2016.6625%208.5103%2016.3223C8.11447%2015.982%207.88183%2015.5549%207.81239%2015.041C7.34017%2014.9716%206.94433%2014.7771%206.62489%2014.4577C6.30544%2014.1382%206.111%2013.7424%206.04156%2013.2702C5.56933%2013.2007%205.17697%2013.0028%204.86447%2012.6764C4.55197%2012.35%204.361%2011.9577%204.29156%2011.4994C3.76378%2011.4299%203.33322%2011.2007%202.99989%2010.8119C2.66656%2010.423%202.49989%209.96463%202.49989%209.43685C2.49989%209.15907%202.55197%208.89171%202.65614%208.63477C2.76031%208.37782%202.90961%208.15213%203.10406%207.95768L6.74989%204.31185C7.06933%203.9924%207.46169%203.83268%207.92697%203.83268C8.39225%203.83268%208.78461%203.9924%209.10406%204.31185L10.6666%205.87435C10.6943%205.91602%2010.736%205.94727%2010.7916%205.9681C10.8471%205.98893%2010.9027%205.99935%2010.9582%205.99935C11.0832%205.99935%2011.1874%205.96116%2011.2707%205.88477C11.3541%205.80838%2011.3957%205.70768%2011.3957%205.58268C11.3957%205.52713%2011.3853%205.47157%2011.3645%205.41602C11.3436%205.36046%2011.3124%205.31879%2011.2707%205.29102L8.29155%202.31185C8.13878%202.14518%207.96169%202.02365%207.7603%201.94727C7.55892%201.87088%207.34711%201.83268%207.12489%201.83268C6.91655%201.83268%206.70822%201.87088%206.49989%201.94727C6.29155%202.02365%206.10406%202.14518%205.93739%202.31185L2.99989%205.27018C2.80544%205.46463%202.66656%205.69379%202.58322%205.95768C2.49989%206.22157%202.47906%206.48546%202.52072%206.74935C2.56239%206.98546%202.51378%207.19379%202.37489%207.37435C2.236%207.55491%202.0485%207.65907%201.81239%207.68685C1.57628%207.71463%201.36794%207.66254%201.18739%207.5306C1.00683%207.39866%200.902666%207.21463%200.874888%206.97852C0.791555%206.45074%200.82975%205.93338%200.989472%205.42643C1.14919%204.91949%201.4235%204.47157%201.81239%204.08268L4.74989%201.14518C5.08322%200.825738%205.45475%200.582682%205.86447%200.416016C6.27419%200.249349%206.69433%200.166016%207.12489%200.166016C7.55544%200.166016%207.97558%200.249349%208.3853%200.416016C8.79503%200.582682%209.15961%200.825738%209.47906%201.14518L9.70822%201.37435L9.93739%201.14518C10.2707%200.825738%2010.6422%200.582682%2011.052%200.416016C11.4617%200.249349%2011.8818%200.166016%2012.3124%200.166016C12.7429%200.166016%2013.1631%200.249349%2013.5728%200.416016C13.9825%200.582682%2014.3471%200.825738%2014.6666%201.14518L18.1874%204.66602C18.5068%204.98546%2018.7499%205.35352%2018.9166%205.77018C19.0832%206.18685%2019.1666%206.61046%2019.1666%207.04102C19.1666%207.47157%2019.0832%207.89171%2018.9166%208.30143C18.7499%208.71116%2018.5068%209.07574%2018.1874%209.39518L11.3541%2016.2077C11.1596%2016.4021%2010.9339%2016.5549%2010.677%2016.666C10.42%2016.7771%2010.1527%2016.8327%209.87489%2016.8327Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.row-header div.appropriate::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2217%22%20viewBox%3D%220%200%2014%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.9987%2016.8327C6.63759%2016.8327%206.3112%2016.7459%206.01953%2016.5723C5.72786%2016.3987%205.4987%2016.166%205.33203%2015.8744C4.8737%2015.8744%204.48134%2015.7112%204.15495%2015.3848C3.82856%2015.0584%203.66536%2014.666%203.66536%2014.2077V11.2494C2.84592%2010.7077%202.18967%209.99241%201.69661%209.10352C1.20356%208.21463%200.957031%207.24935%200.957031%206.20768C0.957031%204.52713%201.54384%203.10004%202.71745%201.92643C3.89106%200.752821%205.31814%200.166016%206.9987%200.166016C8.67925%200.166016%2010.1063%200.752821%2011.2799%201.92643C12.4536%203.10004%2013.0404%204.52713%2013.0404%206.20768C13.0404%207.27713%2012.7938%208.24935%2012.3008%209.12435C11.8077%209.99935%2011.1515%2010.7077%2010.332%2011.2494V14.2077C10.332%2014.666%2010.1688%2015.0584%209.84245%2015.3848C9.51606%2015.7112%209.1237%2015.8744%208.66536%2015.8744C8.4987%2016.166%208.26953%2016.3987%207.97786%2016.5723C7.6862%2016.7459%207.35981%2016.8327%206.9987%2016.8327ZM5.33203%2014.2077H8.66536V13.4577H5.33203V14.2077ZM5.33203%2012.6244H8.66536V11.8327H5.33203V12.6244ZM5.16536%2010.166H6.3737V7.91602L4.97786%206.52018C4.85286%206.39518%204.79036%206.24935%204.79036%206.08268C4.79036%205.91602%204.85286%205.77018%204.97786%205.64518C5.10286%205.52018%205.2487%205.45768%205.41536%205.45768C5.58203%205.45768%205.72786%205.52018%205.85286%205.64518L6.9987%206.79102L8.14453%205.64518C8.26953%205.52018%208.41536%205.45768%208.58203%205.45768C8.7487%205.45768%208.89453%205.52018%209.01953%205.64518C9.14453%205.77018%209.20703%205.91602%209.20703%206.08268C9.20703%206.24935%209.14453%206.39518%209.01953%206.52018L7.6237%207.91602V10.166H8.83203C9.58203%209.80491%2010.1931%209.27366%2010.6654%208.57227C11.1376%207.87088%2011.3737%207.08268%2011.3737%206.20768C11.3737%204.98546%2010.9501%203.95074%2010.1029%203.10352C9.25564%202.25629%208.22092%201.83268%206.9987%201.83268C5.77648%201.83268%204.74175%202.25629%203.89453%203.10352C3.04731%203.95074%202.6237%204.98546%202.6237%206.20768C2.6237%207.08268%202.85981%207.87088%203.33203%208.57227C3.80425%209.27366%204.41536%209.80491%205.16536%2010.166Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2217%22%20viewBox%3D%220%200%2014%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M6.9987%2016.8327C6.63759%2016.8327%206.3112%2016.7459%206.01953%2016.5723C5.72786%2016.3987%205.4987%2016.166%205.33203%2015.8744C4.8737%2015.8744%204.48134%2015.7112%204.15495%2015.3848C3.82856%2015.0584%203.66536%2014.666%203.66536%2014.2077V11.2494C2.84592%2010.7077%202.18967%209.99241%201.69661%209.10352C1.20356%208.21463%200.957031%207.24935%200.957031%206.20768C0.957031%204.52713%201.54384%203.10004%202.71745%201.92643C3.89106%200.752821%205.31814%200.166016%206.9987%200.166016C8.67925%200.166016%2010.1063%200.752821%2011.2799%201.92643C12.4536%203.10004%2013.0404%204.52713%2013.0404%206.20768C13.0404%207.27713%2012.7938%208.24935%2012.3008%209.12435C11.8077%209.99935%2011.1515%2010.7077%2010.332%2011.2494V14.2077C10.332%2014.666%2010.1688%2015.0584%209.84245%2015.3848C9.51606%2015.7112%209.1237%2015.8744%208.66536%2015.8744C8.4987%2016.166%208.26953%2016.3987%207.97786%2016.5723C7.6862%2016.7459%207.35981%2016.8327%206.9987%2016.8327ZM5.33203%2014.2077H8.66536V13.4577H5.33203V14.2077ZM5.33203%2012.6244H8.66536V11.8327H5.33203V12.6244ZM5.16536%2010.166H6.3737V7.91602L4.97786%206.52018C4.85286%206.39518%204.79036%206.24935%204.79036%206.08268C4.79036%205.91602%204.85286%205.77018%204.97786%205.64518C5.10286%205.52018%205.2487%205.45768%205.41536%205.45768C5.58203%205.45768%205.72786%205.52018%205.85286%205.64518L6.9987%206.79102L8.14453%205.64518C8.26953%205.52018%208.41536%205.45768%208.58203%205.45768C8.7487%205.45768%208.89453%205.52018%209.01953%205.64518C9.14453%205.77018%209.20703%205.91602%209.20703%206.08268C9.20703%206.24935%209.14453%206.39518%209.01953%206.52018L7.6237%207.91602V10.166H8.83203C9.58203%209.80491%2010.1931%209.27366%2010.6654%208.57227C11.1376%207.87088%2011.3737%207.08268%2011.3737%206.20768C11.3737%204.98546%2010.9501%203.95074%2010.1029%203.10352C9.25564%202.25629%208.22092%201.83268%206.9987%201.83268C5.77648%201.83268%204.74175%202.25629%203.89453%203.10352C3.04731%203.95074%202.6237%204.98546%202.6237%206.20768C2.6237%207.08268%202.85981%207.87088%203.33203%208.57227C3.80425%209.27366%204.41536%209.80491%205.16536%2010.166Z%22%20fill%3D%22%23424449%22%2F%3E%0A%3C%2Fsvg%3E");
}

.row-cell {
  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;
  height: 64px;
  padding: 6px 12px;
  font-size: 14px;
  color: #555a64;
  background-color: #fbfcff;
  border-left: 1px solid #d4e6f5;
  text-align: center;
  width: 184px;
  font-weight: 700;
}

.row-cell.highlight {
  width: 320px;
  color: #48a5ed;
  font-size: 18px;
}

.row-cell:not(.highlight) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.table-row {
  border-bottom: 1px solid #d4e6f5;
}

.table-row:last-child .row-header {
  border-radius: 0 0 0 6px;
}

.table-row:last-child .row-cell:last-child {
  border-radius: 0 0 6px 0;
}

/* Voice セクション */
.testimonials {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (30%)[auto-fill];
      grid-template-columns: repeat(auto-fill, 30%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
}

.testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.testimonial-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-bottom: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.testimonial-profile .profile-info {
  position: absolute;
  bottom: 30px;
  width: 100%;
}

.testimonial-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.testimonial-title {
  font-size: 20px;
  font-weight: 700;
  color: #424449;
  text-align: center;
}

.testimonial-text {
  font-size: 16px;
  color: #424449;
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #ddd;
  /* 実際には画像に置き換え */
}

.profile-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.career-change {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.career {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 4px;
  width: 40%;
}

.career .label {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.career .value {
  min-width: 130px;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  width: 100%;
}

.career.before .value {
  background-color: #d9d9d9;
  color: #424449;
}

.career.after .value {
  background: -webkit-gradient(linear, left top, right top, from(#1982ca), to(#6abff8));
  background: linear-gradient(to right, #1982ca, #6abff8);
}

/* Teacher セクション */
.teachers {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
}

.slick-slide {
  box-sizing: border-box;
}

.slick-prev {
  left: -45px!important;
}

.slick-prev:before, .slick-next:before {
  font-size: 40px!important;
  color: #7f839c!important;
}

.each-teacher {
  padding-left: 20px;
  padding-right: 20px;
}

/* レスポンシブ対応 (例: 768px以下の画面サイズで1枚表示) */
/* このメディアクエリ内の設定は、あなたのデザインのブレークポイントに合わせて調整してください */
@media (max-width: 768px) {
  .each-teacher {
    padding-left: 0;
    padding-right: 0;
  }
  .slick-list {
      margin: 0 -20px; /* それに合わせて負のマージンも調整 */
  }
}

.slick-prev,
.slick-next,
.slick-dots {
  z-index: 1; /* 必要に応じて調整 */
}

.slick-list {
  margin-bottom: 20px!important;
}

.slick-dots li {
  width: 50px!important;
}

.slick-dots li button:before {
  font-size: 20px!important;
  left: 15px!important;
}

.teacher-card {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: rgba(251, 252, 255, 0.5);
  border: 1px solid #ffffff;
  border-radius: 16px;
}

.teacher-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 28px 35px;
  height: 307px;
  background-color: #d4dee8;
  border-radius: 16px 16px 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
}

.teacher-header.funaki {
  background-image: url("/images/btoc/photo/img-11.png");
}

.teacher-header.kuriyama {
  background-image: url("/images/btoc/photo/img-12.png");
}

.teacher-header.gyoba {
  background-image: url("/images/btob/photo/img-21.png");
}

.teacher-image {
  width: 200px;
  height: 200px;
  background-color: #ddd;
  /* 実際には画像に置き換え */
  margin-bottom: 30px;
}

.teacher-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.teacher-info .teacher-experience,
.teacher-info .teacher-name {
  color: #fbfcff;
}

.teacher-experience {
  display: inline-block;
  padding: 4px 8px;
  font-size: 16px;
  color: #fbfcff;
  border: 3px solid #fbfcff;
  width: 120px;
  font-weight: 600;
  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;
  color: #000000;
  text-shadow: 0px 0px 20px #096222;
}

.teacher-name {
  font-size: 40px;
  font-weight: 700;
  color: #424449;
  line-height: 1.1;
  color: #000000;
  text-shadow: 0px 0px 20px #096222;
}

.teacher-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  padding: 40px;
}

.teacher-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.teacher-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #424449;
}

.teacher-section-text {
  font-size: 16px;
  color: #424449;
}

.teacher-skills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  padding: 4px 24px;
  background-color: #c4dbf2;
  border-radius: 30px;
  font-size: 16px;
  color: #424449;
}

/* Media セクション */
.media-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  max-width: 1080px;
  width: 80%;
  margin: 0 auto;
}

.media-feature {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 50%;
}

.media-feature .media-image {
  width: 100%;
}

.media-feature .media-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.media-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.media-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.media-title .title:first-child {
  min-width: 70px;
}

.media-description {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #000000;
  text-align: left;
}

/* Support セクション */
.support-steps {
  max-width: 1080px;
  margin: 0 auto;
}

.support-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.step-image {
  width: 100%;
}

.step-image img {
  width: 100%;
}

.step-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 24px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #424449;
}

.step-description {
  font-size: 16px;
  color: #424449;
}

/* Question セクション */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.faq-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  gap: 12px;
  padding: 4px 20px 4px 4px;
  background-color: #fbfcff;
  border-radius: 6px;
  -webkit-box-shadow: 4px 4px 16px rgba(24, 74, 149, 0.2), -4px -4px 16px white;
          box-shadow: 4px 4px 16px rgba(24, 74, 149, 0.2), -4px -4px 16px white;
  position: relative;
  padding-right: 45px;
}

.faq-question::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 30px;
  border-top: solid 4px #004f9e;
  border-right: solid 4px #004f9e;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.faq-question.active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.faq-answer {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  padding-left: 80px;
}

.question-label {
  padding: 0 20px;
  background-color: #e7f3ff;
  font-weight: 700;
  font-size: 16px;
  color: #004f9e;
  line-height: 48px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.question-text {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #004f9e;
  padding: 12px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.question-toggle {
  width: 24px;
  height: 24px;
  border: 2px solid #004f9e;
  position: relative;
  cursor: pointer;
}

.question-toggle::before, .question-toggle::after {
  content: "";
  position: absolute;
  background-color: #004f9e;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.question-toggle::before {
  width: 12px;
  height: 2px;
}

.question-toggle::after {
  width: 2px;
  height: 12px;
}

/* Closing セクション */
.closing {
  width: 100%;
  background: url("/images/btoc/photo/img-19.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.closing-background {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.closing-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60%;
  white-space: nowrap;
  gap: 10px;
}

.closing-message .main-title {
  min-width: 665px;
  color: #ffffff;
  background: none;
  text-shadow: 0px 0px 54px #01284f;
}

.closing-message .sub-title {
  color: #ffffff;
  text-shadow: 0px 0px 54px #01284f;
}

.contact-form {
  width: 40%;
  background-color: rgba(255, 255, 255, 0.93);
  padding: 56px;
  border-radius: 16px;
}

.form-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 16px;
  background: -webkit-gradient(linear, left top, right top, from(#3397db), to(#6abff8));
  background: linear-gradient(to right, #3397db, #6abff8);
  -webkit-background-clip: text;
  color: transparent;
}

.form-description {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #505050;
  margin-bottom: 24px;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.form-label label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #505050;
}

.form-agreement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.form-agreement label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #5f5f5f;
}

.required {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: #cf1b1b;
  padding: 2px 8px;
  border: 1px solid #cf1b1b;
  border-radius: 4px;
  white-space: nowrap;
}

input,
textarea {
  padding: 18px 16px;
  border: 1px solid #c5ccd9;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  resize: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #b7b7b7;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #b7b7b7;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #b7b7b7;
}

input::placeholder,
textarea::placeholder {
  color: #b7b7b7;
}

textarea {
  height: 120px;
}

.submit-button {
  width: 100%;
  padding: 18px 0;
  background: -webkit-gradient(linear, left top, right top, from(#ff8c00), to(#ffca1e));
  background: linear-gradient(to right, #ff8c00, #ffca1e);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.submit-button:hover {
  opacity: 0.8;
}

/* Footer */
.footer {
  background: -webkit-gradient(linear, left top, right top, from(#3397db), to(#6abff8));
  background: linear-gradient(to right, #3397db, #6abff8);
  color: #ffffff;
  padding: 24px 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  font-size: 12px;
  text-decoration: underline;
}

.footer-link {
  font-size: 12px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 0.8;
}

.copyright {
  font-size: 12px;
}

.swal2-popup.responsive-modal {
  width: 50% !important;
}

/* レスポンシブ対応 */
@media screen and (min-width: 1440px) {
  .header .content {
    max-width: 1200px;
  }
  .fv {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fv .fv-content {
    width: auto;
  }
}

@media screen and (max-width: 1200px) {
  .header .content {
    padding: 0 24px;
  }
  .zdo_drawer_menu {
    display: block;
  }
  .pc-only-flex {
    display: none !important;
  }
  section {
    padding: 100px 2% 60px;
  }
  .section-label {
    font-size: 120px;
  }
  .section-title .title-big {
    font-size: 48px;
  }
  .table-area {
    width: 100%;
    min-width: auto;
  }
  .table-area table {
    min-width: 1080px;
  }
  .main-title {
    white-space: nowrap;
    font-size: 60px;
  }
  .fv {
    padding: 0px 0 0px 60px;
  }
  .fv-content {
    width: 55%;
  }
  .fv-images {
    width: 45%;
  }
  .change-life {
    width: 450px;
    height: 158px;
    right: 150px;
  }
  .sub-title {
    font-size: 24px;
  }
  .teachers .teacher-header {
    background-position: -50px 0;
  }
  .reason-cards,
  .testimonials,
  .support-steps {
    max-width: none;
    width: 100%;
    -ms-grid-columns: (400px)[auto-fill];
        grid-template-columns: repeat(auto-fill, 400px);
    gap: 20px;
  }
  .career .value {
    padding: 6px 18px;
  }
  .media-features {
    max-width: none;
  }
  .closing-message {
    width: 50%;
  }
  .closing-message .main-title {
    min-width: auto;
  }
  .contact-form {
    width: 50%;
  }
}

@media screen and (max-width: 992px) {
  .header .content {
    padding: 0 20px;
  }
  .main-title {
    text-align: center;
  }
  .tab-display {
    display: block !important;
  }
  section {
    padding: 80px 0 40px;
    overflow: hidden;
  }
  .section-label {
    font-size: 80px;
  }
  .section-title .title-big {
    font-size: 40px;
  }
  .fv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0;
  }
  .fv-content, .fv-images {
    width: 100%;
  }
  .fv-content {
    padding-top: 60px;
  }
  .fv-content .fv-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .fv-images {
    height: 100%;
    position: relative;
  }
  .fv-images .main-image {
    background: url("/images/btoc/kv-tab.png");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 360px;
    width: 100%;
  }
  .fv .change-life {
    top: 25%;
    right: 0;
    width: 90%;
    -o-object-fit: contain;
       object-fit: contain;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .fv .main-image {
    min-height: 320px;
  }
  .support-step {
    gap: 15px;
  }
  .support-step .step-content {
    gap: 10px;
  }
  .course-details {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .course-details .details-right .text-area .cta-buttons {
    width: 100%;
  }
  .course-details .details-right .text-area .cta-buttons a {
    display: block;
    width: 100%;
  }
  .career .value {
    padding: 6px 10px;
  }
  .teachers {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 20px;
  }
  .teachers .teacher-card {
    width: 47%;
  }
  .teachers .teacher-header {
    background-position: -90px;
  }
  .media-features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .media-features .media-feature {
    width: 100%;
    gap: 15px;
  }
  .media-features .media-feature .media-title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .media-features .media-feature .media-content {
    gap: 10px;
  }
  .reason-cards,
  .testimonials,
  .support-steps {
    width: 90%;
    -ms-grid-columns: (45%)[auto-fill];
        grid-template-columns: repeat(auto-fill, 45%);
  }
  .closing-message {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .closing-message .main-title {
    min-width: auto;
  }
  .contact-form {
    width: 100%;
  }
  .closing-background {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  section {
    width: 100%;
  }
  .reason,
  .curriculum,
  .voice,
  .teacher,
  .media,
  .support,
  .question {
    padding: 80px 20px 40px;
  }
  .tab-only {
    display: block !important;
  }
  .fv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0;
  }
  .fv-content, .fv-images {
    width: 100%;
  }
  .fv-content {
    padding-top: 60px;
  }
  .fv-content .fv-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .fv-content .fv-text .sub-title {
    margin-bottom: 32px;
  }
  .fv-images {
    height: 100%;
  }
  .fv-images .main-image {
    background: url("/images/btoc/kv-tab.png");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 360px;
    width: 100%;
  }
  .main-title {
    font-size: 48px;
    text-align: center;
  }
  .feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    margin-bottom: 32px;
    font-size: 20px;
  }
  .cta-button {
    width: 80%;
  }
  .course-tabs {
    width: 80%;
    height: 83px;
  }
  .course-tabs .course-tab {
    width: 47%;
    height: 68px;
  }
  .course-tabs .course-tab .course-name {
    font-size: 18px;
  }
  .table-area table th,
  .table-area table td {
    width: 152px;
  }
  .table-area thead th {
    padding: 8px 0;
    font-size: 16px;
  }
  .table-area thead th.our-company {
    max-width: 152px;
    width: 152px;
    font-size: 16px;
  }
  .table-area thead th.our-company .line-wrapper .line {
    background-size: 212px 530px;
    width: 212px;
    height: 530px;
    top: -10px;
    left: 0;
  }
  .table-area tbody th {
    padding: 10px 0;
    padding-left: 14px;
    width: 132px;
  }
  .table-area tbody td {
    padding: 10px 0;
  }
  .table-area tbody td.highlight {
    width: 152px;
  }
  .comparison-tables .line-wrapper .line {
    height: 580px;
    width: 210px;
    background-size: 210px 580px;
    left: 213px;
  }
  .table-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-cell {
    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;
    width: 212px;
  }
  .header-cell.empty {
    width: 212px;
    border-radius: 5px 0 0 0;
  }
  .header-cell.our-company {
    width: 212px;
    font-size: 16px;
  }
  .table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .row-header {
    width: 212px;
    height: 70px;
    padding: 16px 24px;
  }
  .row-cell {
    height: 70px;
    width: 212px;
  }
  .row-cell.highlight {
    width: 212px;
    font-size: 16px;
  }
  .teachers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .teachers .teacher-card {
    width: 100%;
  }
  .teachers .teacher-header {
    background-position: center;
  }
  .reason-cards,
  .testimonials,
  .support-steps {
    gap: 50px;
    -ms-grid-columns: (100%)[auto-fill];
        grid-template-columns: repeat(auto-fill, 100%);
    width: 100%;
  }
  .faq-question {
    height: 129px;
  }
  .faq-answer {
    padding: 0;
  }
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 24px 0;
  }
  .footer-links {
    font-size: 12px;
  }
  .course-details,
  .company-info,
  .teachers,
  .media-features,
  .cta-button,
  .content {
    width: 100%;
  }

  .section-description p.notice {
    margin: 5vh 0 0 0;
  }

  .swal2-popup.responsive-modal {
    width: 90% !important;
  }
}

@media screen and (max-width: 480px) {
  .sp-only {
    display: block !important;
  }
  .fv .main-image {
    height: 360px;
  }
  .fv-content .fv-text {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 53px;
  }
  .fv .change-life {
    width: 80%;
    -o-object-fit: contain;
       object-fit: contain;
    top: 100px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
  .navigation {
    display: none;
  }
  .section-title {
    font-size: 32px;
  }
  .main-title {
    font-size: 40px;
  }
  .sub-title {
    font-size: 20px;
  }
  .reason-cards,
  .testimonials,
  .support-steps {
    gap: 15px;
    -ms-grid-columns: (100%)[auto-fill];
        grid-template-columns: repeat(auto-fill, 100%);
  }
  .feature {
    font-size: 18px;
  }
  .feature-multiply {
    font-size: 24px;
  }
  .cta-button {
    width: 100%;
  }
  .comparison-table {
    overflow-x: auto;
  }
  .teacher-header {
    background-position: -60px;
  }
  .fv .orange {
    bottom: 230px;
    left: -100px;
  }
  .fv .pink {
    bottom: -100px;
    margin: auto;
    right: -600px;
  }
  .reason .orange,
  .reason .pink {
    display: none;
  }
  .curriculum .orange {
    display: none;
  }
  .curriculum .pink {
    left: 300px;
    top: -100px;
  }
  .curriculum .pink-2 {
    bottom: 800px;
    left: -100px;
  }
  .voice .orange,
  .voice .pink {
    display: none;
  }
  .teacher .orange {
    left: -300px;
    bottom: 900px;
  }
  .teacher .pink {
    display: none;
  }
  .media .orange {
    left: 180px;
    top: 150px;
  }
  .support .orange {
    display: none;
  }
  .question .orange {
    left: -100px;
    top: 300px;
  }
}
/*# sourceMappingURL=style.css.map */