.ch {
  position: relative;
}

.ch-img {
  position: absolute;
  width: 100%;
  height: 350px;
  background-color: #000;
  z-index: -1;
}

.ch-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}

.ch-wrap {
  position: relative;
  width: 100%;
  height: 350px;
  max-width: 1100px;
  margin: 0 auto;
}

.ch-board {
  position: relative;
  top: 25%;
  left: 0;
  width: 350px;
  background-color: #fff;
  text-align: center;
  padding: 40px 0 45px 0;
}

@media screen and (max-width: 600px) {
  .ch-board {
    left: calc((100% - 300px) / 2);
    width: 280px;
  }
}
.ch-board::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: #1bb3e0;
  z-index: -1;
}

.ch-tit {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  background-image: linear-gradient(to left, #1bb3e0 5px, transparent 5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .ch-tit {
    font-size: 20px;
  }
}
.ch-tit p {
  color: #1bb3e0;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .ch-tit p {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.ch-img img {
  -o-object-position: 50% 35%;
     object-position: 50% 35%;
}

@media screen and (max-width: 600px) {
  .ch-img img {
    -o-object-position: 95% 15%;
       object-position: 95% 15%;
  }
}
.cnav {
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .cnav {
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .cnav {
    margin: 0 20px;
  }
}
.cnav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px;
}

@media screen and (max-width: 600px) {
  .cnav-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.cnav-link {
  display: block;
  background-color: #1bb3e0;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

@media screen and (max-width: 600px) {
  .cnav-link {
    font-size: 12px;
    padding: 10px 5px;
  }
}
.cnav-link span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 10px 3px 0;
}

@media screen and (max-width: 600px) {
  .cnav-link span {
    width: 6px;
    height: 6px;
    margin: 0 5px 3px 0;
  }
}
.cnav.scroll {
  position: fixed;
  top: 0;
  background-color: #fff;
  max-width: 100%;
  width: 100vw;
  margin-top: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.cnav.scroll .cnav-grid {
  gap: 1px;
}

.cnav.scroll .cnav-link {
  padding: 10px;
}

.cnav.scroll.active {
  opacity: 1;
  z-index: 10;
}

@media screen and (max-width: 600px) {
  .cnav.scroll {
    top: 60px;
    margin: 0;
  }
  .cnav.scroll .cnav-link {
    padding: 5px;
  }
}
.links-tit {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .links-tit {
    font-size: 18px;
  }
}
.links-tit p {
  color: #1bb3e0;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .-tit p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 600px) {
  .links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.links-wrap {
  background-color: #f8f8f8;
  padding: 30px 20px;
}

@media screen and (max-width: 600px) {
  .links-wrap {
    padding: 25px 15px 20px;
  }
}
.links-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.links-course {
  font-family: "Jost", sans-serif;
  font-weight: bold;
  margin-right: 15px;
}

.links-course h4 {
  font-size: 110px;
  line-height: 88px;
}

.links-course p {
  font-size: 25px;
  letter-spacing: 2px;
  margin-top: -5px;
}

.links-list li span {
  font-size: 20px;
  font-weight: bold;
}

.links-btn {
  display: block;
  background-color: #000;
  width: 100%;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid #000;
  padding: 5px;
  margin-top: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.links-btn:hover {
  background-color: #fff;
  color: #000;
}

.links ._red {
  color: #fa1b1b;
}

.links ._red a {
  background-color: #fa1b1b;
  border: 1px solid #fa1b1b;
}

.links ._red a:hover {
  color: #fa1b1b;
  background-color: #fff;
}

.links ._blue {
  color: #1bb3e0;
}

.links ._blue a {
  background-color: #1bb3e0;
  border: 1px solid #1bb3e0;
}

.links ._blue a:hover {
  color: #1bb3e0;
  background-color: #fff;
}

.course {
  background-color: #f8f8f8;
}

.course-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0;
}

@media screen and (max-width: 600px) {
  .course-wrap {
    padding: 40px 0;
  }
}
.course-grid {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 50px;
  letter-spacing: 1px;
}

@media screen and (max-width: 600px) {
  .course-grid {
    display: block;
  }
}
.course-grid:not(:last-child) {
  margin-bottom: 100px;
}

@media screen and (max-width: 600px) {
  .course-grid:not(:last-child) {
    margin-bottom: 70px;
  }
}
.course-left {
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 600px) {
  .course-left {
    margin: 20px 20px 0;
  }
}
.course-tit {
  font-family: "Jost", sans-serif;
  font-size: 160px;
  font-weight: bold;
  line-height: 130px;
}

.course-tit p {
  font-size: 40px;
  line-height: 30px;
  letter-spacing: 2px;
}

.course-txt {
  color: #fff;
  background-color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 20px;
  margin: 20px 0;
}

@media screen and (max-width: 600px) {
  .course-txt {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
  }
}
.course-works label {
  display: block;
  color: #fff;
  background-color: #000;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  .course-works label {
    font-weight: bold;
  }
}
.course-list {
  background-color: #fff;
  padding: 5px 20px;
}

.course-item {
  position: relative;
  font-weight: 500;
  padding: 5px 0;
}

.course-link_note {
  font-size: 12px;
}

.course-link_note a {
  text-decoration: underline;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.course-link_note a:hover {
  color: #1bb3e0;
}

@media screen and (max-width: 600px) {
  .course-item {
    padding: 10px 0;
  }
}
.course-item:not(:first-child)::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#000 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  top: -3px;
}

@media screen and (max-width: 600px) {
  .course-scroll {
    padding: 40px 0 10px;
    margin-left: 20px;
    overflow-x: scroll;
  }
}
.course-wrap_salary {
  margin-top: 40px;
}

@media screen and (max-width: 600px) {
  .course-wrap_salary {
    margin: 30px 20px 0;
  }
}
.course-wrap_salary table {
  min-width: 100%;
}

.course-wrap_salary p {
  margin: 10px 0 0;
}

.course-table {
  width: 100%;
}

@media screen and (max-width: 600px) {
  .course-table {
    min-width: 820px;
  }
}
.course-table th,
.course-table td {
  text-align: center;
  vertical-align: middle;
  padding: 15px 0;
}

.course-table th {
  background-color: #c6c6c6;
}

.course-table td {
  width: 170px;
  background-color: #fff;
  font-weight: bold;
}

.course-table ._wbborder {
  border-bottom: 1px solid #fff;
}

.course-table ._wrborder {
  border-right: 1px solid #fff;
}

.course-table ._gbborder {
  border-bottom: 1px solid #efefef;
}

.course-table ._grborder {
  border-right: 1px solid #efefef;
}

.course-table ._year {
  color: #fff;
  background-color: #000;
}

.course-table ._f16 {
  font-size: 16px;
  line-height: 20px;
}

.course-table ._f16 p {
  font-size: 12px;
  font-weight: 400;
}

.course-table ._f20 {
  font-size: 20px;
  line-height: 20px;
  padding: 20px 0;
}

.course-table ._f20 span {
  font-size: 10px;
}

.course-table ._f20 p {
  font-size: 12px;
}

.course-table ._salary {
  width: 680px;
  font-size: 24px;
  letter-spacing: 3px;
}

@media screen and (max-width: 600px) {
  .course-table ._salary {
    width: 230px;
  }
}
.course-table ._salary span {
  font-size: 14px;
}

@media screen and (max-width: 600px) {
  .course-note {
    font-size: 10px;
    line-height: 20px;
    margin: 0 20px;
  }
}
.course ._red:not(:first-child)::after {
  background-image: radial-gradient(#fa1b1b 25%, transparent 15%);
}

.course ._cred {
  color: #fa1b1b;
}

.course ._bgred {
  background-color: #fa1b1b;
}

.course ._bgpink {
  background-color: #ffe0e0;
}

.course ._blue:not(:first-child)::after {
  background-image: radial-gradient(#1bb3e0 25%, transparent 15%);
}

.course ._cblue {
  color: #1bb3e0;
}

.course ._bgblue {
  background-color: #1bb3e0;
}

.course ._bgcyan {
  background-color: #cef3ff;
}

.course-link {
  position: absolute;
  left: 50%;
  bottom: -85px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr minmax(100px, 700px);
  background-color: #fff;
  border-left: 5px solid #1bb3e0;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.course-link:hover {
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}

.course-link:hover span::after {
  right: -45px;
}

.course-link:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (max-width: 600px) {
  .course-link {
    grid-template-columns: 1fr minmax(30px, 120px);
  }
}
.course-link_wrap {
  white-space: nowrap;
  padding: 30px 40px;
}

@media screen and (max-width: 600px) {
  .course-link_wrap {
    padding: 20px;
  }
}
.course-link h4 {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .course-link h4 {
    font-size: 14px;
  }
}
.course-link h4::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#1bb3e0 25%, transparent 15%);
  background-size: 6px 6px;
  bottom: 2px;
  width: 50px;
}

@media screen and (max-width: 600px) {
  .course-link p {
    font-size: 10px;
  }
}
.course-link span {
  position: relative;
  display: inline-block;
  color: #1bb3e0;
  font-family: "Jost", sans-serif;
  letter-spacing: 1px;
  margin-top: 10px;
}

@media screen and (max-width: 600px) {
  .course-link span {
    margin-top: 5px;
  }
}
.course-link span::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: 11px;
  width: 20px;
  height: 4px;
  border-right: 1px solid #1bb3e0;
  border-bottom: 1px solid #1bb3e0;
  -webkit-transform: skewX(50deg);
          transform: skewX(50deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.course-link figure {
  width: 100%;
  max-width: 700px;
  height: 100%;
  max-height: 170px;
  overflow: hidden;
}

.course-link figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 600px) {
  .course-link figure img {
    -o-object-position: 70% 50%;
       object-position: 70% 50%;
  }
}
@media screen and (max-width: 600px) {
  .course-link {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
.loan {
  max-width: 1100px;
  padding: 80px 0;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .loan {
    padding: 60px 0;
  }
}
.loan-tit {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .loan-tit {
    font-size: 18px;
  }
}
.loan-tit p {
  color: #1bb3e0;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .loan-tit p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.loan-img {
  width: 100%;
  margin: 50px 0 30px;
}

@media screen and (max-width: 600px) {
  .loan-img {
    width: 800px;
    margin: 30px 0;
  }
}
@media screen and (max-width: 600px) {
  .loan-scroll {
    overflow-x: scroll;
    padding-bottom: 5px;
    margin-left: 20px;
  }
}
.loan-txt {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .loan-txt {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.loan-txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15px;
  background-color: #cef3ff;
  z-index: -1;
}

.loan-table {
  width: 100%;
  margin-bottom: 5px;
}

@media screen and (max-width: 600px) {
  .loan-table {
    min-width: 800px;
  }
}
.loan-table th,
.loan-table td {
  letter-spacing: 1px;
  text-align: center;
  vertical-align: middle;
  padding: 20px 10px;
  border: 1px solid #c6c6c6;
}

.loan-table th {
  background-color: #f8f8f8;
}

.loan-table td {
  width: 320px;
  font-weight: 500;
  line-height: 22px;
}

.loan-table td p {
  font-size: 12px;
}

.loan-table ._course {
  color: #fff;
  font-size: 12px;
  padding: 10px;
}

.loan-table ._course span {
  font-family: "Jost", sans-serif;
  font-size: 20px;
}

.loan-table ._a {
  background-color: #fa1b1b;
}

.loan-table ._b {
  background-color: #1bb3e0;
}

.loan-table ._c {
  background-color: #000;
}

@media screen and (max-width: 600px) {
  .loan-notes {
    font-size: 10px;
    line-height: 20px;
    margin: 0 20px;
  }
}
.treatment {
  max-width: 1100px;
  padding: 80px 0;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .treatment {
    max-width: 425px;
    padding: 60px 0;
  }
}
@media screen and (max-width: 425px) {
  .treatment {
    margin: 0 20px;
  }
}
.treatment-tit {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 40px;
}

@media screen and (max-width: 600px) {
  .treatment-tit {
    font-size: 18px;
  }
}
.treatment-tit p {
  color: #1bb3e0;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .treatment-tit p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.treatment-txt {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 600px) {
  .treatment-txt {
    margin-top: 30px;
  }
}
.treatment-table {
  width: 100%;
}

.treatment-table th,
.treatment-table td {
  vertical-align: middle;
  border-top: 2px solid #fff;
  padding: 20px 30px;
}

@media screen and (max-width: 600px) {
  .treatment-table th,
  .treatment-table td {
    font-size: 12px;
    padding: 15px;
  }
}
.treatment-table th {
  color: #fff;
  background-color: #1bb3e0;
  letter-spacing: 2px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .treatment-table th {
    width: 100px;
  }
}
.treatment-table td {
  background-color: #f8f8f8;
}

@media screen and (max-width: 600px) {
  .treatment-note {
    font-size: 10px;
    line-height: 20px;
    margin-top: 5px;
  }
}
.benefits {
  position: relative;
  background-image: radial-gradient(#cef3ff 30%, transparent 30%), radial-gradient(#cef3ff 30%, transparent 30%);
  background-position: 0 0, 3px 3px;
  background-size: 6px 6px;
  padding: 70px 0;
  z-index: 0;
}

@media screen and (max-width: 600px) {
  .benefits {
    padding: 50px 0;
  }
}
.benefits-wrap {
  max-width: 768px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .benefits-wrap {
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .benefits-wrap {
    margin: 0 20px;
  }
}
.benefits-tit {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .benefits-tit {
    font-size: 18px;
  }
}
.benefits-tit p {
  color: #1bb3e0;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  .benefits-tit p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0 15px;
}

@media screen and (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.benefits-cell {
  position: relative;
  background-color: #fff;
  text-align: center;
  border: 5px solid #1bb3e0;
  padding: 35px 30px 25px;
}

@media screen and (max-width: 600px) {
  .benefits-cell {
    width: calc(100% - 10px);
  }
}
.benefits-cell span {
  position: absolute;
  top: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  background-color: #1bb3e0;
  color: #fff;
  font-family: "Jost", sans-serif;
  letter-spacing: 1px;
  padding: 0 10px;
}

.benefits-cell i {
  color: #1bb3e0;
  font-size: 40px;
  padding-bottom: 15px;
}

.benefits-cell h3 {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  .benefits-note {
    font-size: 10px;
  }
}
.about {
  background-color: #1bb3e0;
  padding: 70px 0;
  margin-bottom: 80px;
}

@media screen and (max-width: 600px) {
  .about {
    padding: 50px 0;
    margin-bottom: 60px;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .about-grid {
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .about-grid {
    margin: 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.about-cell {
  background-color: #fff;
  text-align: center;
  padding: 40px 30px;
}

@media screen and (max-width: 600px) {
  .about-cell {
    padding: 30px 20px;
  }
}
.about-tit {
  position: relative;
  color: #1bb3e0;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 50px;
}

@media screen and (max-width: 600px) {
  .about-tit {
    font-size: 18px;
    padding-bottom: 30px;
  }
}
.about-tit::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#1bb3e0 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
}

@media screen and (max-width: 600px) {
  .about-tit::after {
    bottom: 10px;
  }
}
.advisor {
  background-image: radial-gradient(#cef3ff 30%, transparent 30%), radial-gradient(#cef3ff 30%, transparent 30%);
  background-position: 0 0, 3px 3px;
  background-size: 6px 6px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 60px 70px;
  z-index: 0;
  margin-top: 160px;
  margin-bottom: 120px;
}

@media screen and (max-width: 600px) {
  .advisor {
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .advisor {
    margin: 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .advisor {
    padding: 40px 30px;
  }
}
.advisor-wrap {
  max-width: 710px;
}

.advisor-img {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 430px;
  height: 450px;
  overflow: hidden;
  z-index: -1;
}

@media screen and (max-width: 600px) {
  .advisor-img {
    right: 15px;
    bottom: 95px;
    width: calc(100% - 40px);
    height: 210px;
  }
}
.advisor-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% -5%;
     object-position: 50% -5%;
}

.advisor-tit {
  color: #1bb3e0;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}

@media screen and (max-width: 600px) {
  .advisor-tit {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 15px;
  }
}
.advisor-btn {
  display: block;
  width: 350px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 2px;
  background-color: #1bb3e0;
  text-align: center;
  border: 1px solid #1bb3e0;
  padding: 15px 0;
  margin-top: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 600px) {
  .advisor-btn {
    width: 100%;
    margin-top: 200px;
  }
}
.advisor-btn:hover {
  background-color: #fff;
  color: #1bb3e0;
}

.advisor-btn:hover span::after {
  right: -15px;
  border-right: 1px solid #1bb3e0;
  border-bottom: 1px solid #1bb3e0;
}

.advisor-btn span {
  position: relative;
  display: inline-block;
  width: 40px;
}

.advisor-btn span::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  display: block;
  width: 20px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: skew(55deg);
          transform: skew(55deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 600px) {
  .advisor {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.line {
  background-color: #f8f8f8;
  padding: 50px 0 20px;
}

@media screen and (max-width: 600px) {
  .line {
    padding: 30px 0 0;
  }
}
.line-img {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 1100px;
  margin: 0 auto;
}

.line-img:hover {
  opacity: 0.7;
}

@media screen and (max-width: 600px) {
  .line-img {
    max-width: 425px;
  }
}
@media screen and (max-width: 425px) {
  .line-img {
    margin: 0 20px;
  }
}
.line-img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 600px) {
  .line-img ._pc {
    display: none;
  }
}
.line-img ._sp {
  display: none;
}

@media screen and (max-width: 600px) {
  .line-img ._sp {
    display: initial;
  }
}
.preparation {
  background-color: #fff;
  border: 10px solid #1bb3e0;
}

@media screen and (max-width: 600px) {
  .preparation {
    border: 8px solid #1bb3e0;
    margin: 0 20px;
  }
}
.preparation-tit {
  background-color: #1bb3e0;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  padding: 15px 0 25px;
}

@media screen and (max-width: 600px) {
  .preparation-tit {
    font-size: 18px;
    padding: 10px 0 15px;
  }
}
.preparation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  padding: 50px 70px;
}

@media screen and (max-width: 600px) {
  .preparation-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 20px 20px 30px;
  }
}
.preparation-txt {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 40px;
  z-index: 1;
}

@media screen and (max-width: 600px) {
  .preparation-txt {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 30px;
  }
}
.preparation-txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 20px;
  background-color: #cef3ff;
  z-index: -1;
}

.preparation-txt span {
  font-size: 40px;
}

@media screen and (max-width: 600px) {
  .preparation-txt span {
    font-size: 32px;
  }
}
.preparation-bubble {
  position: relative;
  background-color: #1bb3e0;
  color: #fff;
  width: 200px;
  font-weight: bold;
  text-align: center;
  border-radius: 100vh;
  padding: 5px;
  margin: 0 auto;
}

.preparation-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 20px solid #1bb3e0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.preparation-list {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  margin: 15px auto 20px;
}

@media screen and (max-width: 600px) {
  .preparation-list {
    font-size: 14px;
    margin: 10px auto 15px;
  }
}
.preparation-item {
  padding: 20px 55px;
}

@media screen and (max-width: 600px) {
  .preparation-item {
    padding: 15px 20px;
  }
}
.preparation-item:not(:first-child) {
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: top;
}

.preparation-item span {
  position: relative;
  color: #fa1b1b;
  top: 4px;
  margin-right: 10px;
  z-index: 0;
}

.preparation-item span::before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: 0px;
  display: block;
  background-color: #fff;
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  border-radius: 3px;
  z-index: -1;
}

.preparation-item span::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 7px;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  z-index: -1;
}

.preparation-time {
  background-color: #1bb3e0;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  padding: 15px;
}

@media screen and (max-width: 600px) {
  .preparation-time {
    padding: 10px;
  }
}
.preparation-works {
  text-align: center;
  margin-top: 15px;
}

.preparation-works label {
  display: block;
  color: #fff;
  background-color: #1bb3e0;
  font-weight: bold;
}

.preparation-list_work {
  background-color: #f8f8f8;
  padding: 5px 20px;
}

.preparation-item_work {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
}

@media screen and (max-width: 600px) {
  .preparation-item_work {
    font-size: 14px;
  }
}
.preparation-item_work:not(:first-child)::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#000 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  top: -3px;
}

.preparation-note {
  font-size: 12px;
  margin-top: 5px;
}

.preparation-note a {
  text-decoration: underline;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.preparation-note a:hover {
  color: #1bb3e0;
}

.preparation-wrap {
  position: relative;
  background-color: #f8f8f8;
  border-radius: 10px;
  -webkit-filter: drop-shadow(2px 5px 4px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(2px 5px 4px rgba(0, 0, 0, 0.15));
  padding: 30px 40px;
}

@media screen and (max-width: 600px) {
  .preparation-wrap {
    padding: 40px 20px 20px;
  }
}
.preparation-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-right: 50px solid #f8f8f8;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
}

@media screen and (max-width: 600px) {
  .preparation-wrap::after {
    position: absolute;
    top: -40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    border-bottom: 50px solid #f8f8f8;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: none;
  }
}
.preparation-img {
  position: relative;
}

.preparation-img img {
  width: 100%;
  height: auto;
}

.preparation-txt_img {
  position: absolute;
  font-weight: bold;
  z-index: 0;
}

@media screen and (max-width: 600px) {
  .preparation-txt_img {
    font-size: 12px;
  }
}
.preparation-txt_img span {
  position: relative;
  display: inline-block;
}

.preparation-txt_img span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15px;
  background-color: #cef3ff;
  z-index: -1;
}

.preparation ._left {
  top: 0;
  left: 0;
}

@media screen and (max-width: 600px) {
  .preparation ._left {
    top: -20px;
  }
}
.preparation ._right {
  top: 45px;
  right: 25px;
}

@media screen and (max-width: 600px) {
  .preparation ._right {
    top: 30px;
    right: 0px;
  }
}
.preparation-arrow {
  position: relative;
  background-color: #1bb3e0;
  color: #fff;
  width: 80px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 15px 0 0;
  margin: 10px auto 20px;
}

.preparation-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 35px solid #1bb3e0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  z-index: -1;
}

.links {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .links {
    max-width: 425px;
    margin: 0 20px;
  }
}
.links-grid {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 600px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
}
.links-cell._c {
  margin-top: 20px;
}
.links-wrap._c {
  padding: 20px;
}
@media screen and (max-width: 600px) {
  .links-flex {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.links-flex._c {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.links-label {
  position: relative;
  display: block;
  background-color: #000;
  width: 100%;
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100vh;
}
@media screen and (max-width: 600px) {
  .links-label {
    width: 180px;
  }
}
.links-label::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.links-label._red {
  background-color: #fa1b1b;
}
.links-label._red::after {
  border-top: 10px solid #fa1b1b;
}
.links-label._blue {
  background-color: #1bb3e0;
}
.links-label._blue::after {
  border-top: 10px solid #1bb3e0;
}
.links-label._black {
  background-color: #000;
}
.links-label._black::after {
  border-top: 10px solid #000;
}
.links-label._c::after {
  position: absolute;
  bottom: 50%;
  left: auto;
  right: -19px;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #000;
}
.links-course._c {
  margin-right: 35px;
}
.links-course._c h4 {
  font-size: 90px;
  line-height: 70px;
}
.links-course._c p {
  font-size: 20px;
  letter-spacing: 1px;
  margin: -5px 0 0 5px;
}
.links-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.links-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .links-list {
    grid-template-columns: 1fr;
    row-gap: 5px;
    margin-top: 10px;
  }
}
.links-list._c {
  margin-top: 0;
}
.links-list li {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding: 0 10px;
}
@media screen and (max-width: 600px) {
  .links-list li {
    padding: 0;
  }
}
.links-list li:nth-child(2) {
  position: relative;
}
.links-list li:nth-child(2)::before, .links-list li:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #000;
  width: 1px;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .links-list li:nth-child(2)::before, .links-list li:nth-child(2)::after {
    display: none;
  }
}
.links-list li:nth-child(2)::before {
  left: 0;
}
.links-list li:nth-child(2)::after {
  right: 0;
}
.links-list li:nth-child(2)._red::before, .links-list li:nth-child(2)._red::after {
  background-color: #fa1b1b;
}
.links-list li:nth-child(2)._blue::before, .links-list li:nth-child(2)._blue::after {
  background-color: #1bb3e0;
}
.links-btn._c {
  max-width: 250px;
  margin: 0 0 0 20px;
}

.preparation-note_attention {
  font-size: 16px;
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .preparation-note_attention {
    font-size: 14px;
    margin: 0 20px 80px;
  }
}

.summary {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0 50px;
}
@media screen and (max-width: 600px) {
  .summary {
    max-width: 425px;
    padding: 50px 0 40px;
    margin: 0 20px;
  }
}
.summary-tit {
  position: relative;
  color: #1bb3e0;
  font-size: 24px;
  font-weight: bold;
  line-height: 44px;
  letter-spacing: 1px;
  padding-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .summary-tit {
    font-size: 18px;
    line-height: 36px;
  }
}
.summary-tit span {
  position: relative;
  display: inline-block;
  font-size: 36px;
  padding: 2px 0 5px;
  margin: 0 auto 20px;
  z-index: 0;
}
@media screen and (max-width: 600px) {
  .summary-tit span {
    font-size: 24px;
    margin: 0 auto 5px;
  }
}
.summary-tit span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #ffe0e0;
  width: calc(100% + 30px);
  height: 20px;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .summary-tit span::after {
    bottom: 5px;
    width: calc(100% + 20px);
    height: 15px;
  }
}
.summary-tit::after {
  content: "";
  position: absolute;
  left: 0;
  width: 70px;
  height: 5px;
  background-image: radial-gradient(#1bb3e0 25%, transparent 15%);
  background-size: 6px 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
}
.summary-txt {
  font-size: 20px;
  line-height: 36px;
}
@media screen and (max-width: 600px) {
  .summary-txt {
    font-size: 18px;
  }
}
.summary-wrap {
  padding: 70px 0 80px;
}
@media screen and (max-width: 600px) {
  .summary-wrap {
    padding: 50px 0 60px;
  }
}
.summary-about {
  background-color: #1bb3e0;
  color: #fff;
  text-align: center;
  padding: 50px 0 100px;
}
@media screen and (max-width: 600px) {
  .summary-about {
    padding: 40px 20px 70px;
  }
}
.summary-about h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .summary-about h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.summary-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  max-width: 900px;
  margin: -60px auto 0;
}
@media screen and (max-width: 600px) {
  .summary-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: -40px 20px 0;
  }
}
.summary-cell {
  background-color: #fff;
  width: 100%;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
}
@media screen and (max-width: 600px) {
  .summary-cell {
    padding: 10px 20px 20px;
  }
}
.summary-cell img {
  display: block;
  max-width: 150px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .summary-cell img {
    max-width: 130px;
  }
}
.summary-cell h3 {
  color: #1bb3e0;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .summary-cell h3 {
    font-size: 16px;
  }
}

.link {
  display: block;
  max-width: 1100px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.link.comparison {
  margin-top: -100px;
}
.link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 600px) {
  .link {
    margin: 0 20px;
  }
}
.link-wrap {
  position: relative;
  background-color: #000;
  height: 200px;
  overflow: hidden;
}
.link-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
  opacity: 0.5;
}
.link-flex {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .link-flex {
    width: calc(100% - 20px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.link-tit {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .link-tit {
    font-size: 18px;
  }
}
.link-list {
  width: 100%;
  padding-left: 15px;
}
@media screen and (max-width: 600px) {
  .link-list {
    padding-left: 40px;
  }
}
.link-item {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 0;
}
.link-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  background-color: #1bb3e0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
@media screen and (max-width: 600px) {
  .link-item {
    font-size: 14px;
    padding: 0;
  }
}
.link-txt {
  color: #1bb3e0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
}
@media screen and (max-width: 600px) {
  .link-txt {
    font-size: 14px;
  }
}
.link-txt span {
  position: relative;
  margin-left: -35px;
}
.link-txt span::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: 9px;
  width: 20px;
  height: 4px;
  border-right: 1px solid #1bb3e0;
  border-bottom: 1px solid #1bb3e0;
  -webkit-transform: skewX(50deg);
          transform: skewX(50deg);
}