a {
  text-decoration: none;
  color: #F57600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
a:hover {
  color: #F78B26;
}

picture {
  display: block;
}

header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}
header .top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
}
@media (min-width: 768px) {
  header .top-bar {
    height: 60px;
  }
}
header .myv-logo {
  display: block;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  header .myv-logo {
    padding: 0 30px;
  }
}
header .myv-logo img {
  width: 88px;
}
@media (min-width: 768px) {
  header .myv-logo img {
    width: 110px;
  }
}
header .top-menu {
  background: #FFFFFF;
  opacity: 0.95;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0);
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}
header .top-menu.float {
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}

nav {
  color: #000005;
  font-size: 16px;
  line-height: 1.44;
}
@media (min-width: 768px) {
  nav {
    font-size: 24px;
  }
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
nav ul li {
  padding: 2px 12px;
  margin: 10px 0;
  border-right: 1px solid #9e9e9e;
}
nav ul li a:hover {
  color: #000005;
}
@media (min-width: 768px) {
  nav ul li a:hover {
    color: #F57600;
  }
}
nav ul li.active a {
  color: #F57600;
}
@media (min-width: 768px) {
  nav ul li {
    margin: 24px 0;
    padding: 2px 48px;
  }
}
nav a {
  color: #000005;
}
nav a:hover {
  color: #F57600;
}

section {
  margin-bottom: 68px;
}
@media (min-width: 768px) {
  section {
    margin-bottom: 92px;
  }
}
@media (min-width: 993px) {
  section {
    margin-bottom: 120px;
  }
}
section h3 {
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  section h3 {
    margin-bottom: 32px;
  }
}
@media (min-width: 993px) {
  section h3 {
    margin-bottom: 40px;
  }
}

.info {
  color: #373737;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  font-weight: normal;
}
@media (min-width: 993px) {
  .info {
    font-size: 24px;
  }
}

.btn-wrap {
  text-align: center;
}

.btn {
  font-size: 15px;
  color: #fff;
  background-color: #F57600;
  padding: 8px 20px;
  border-radius: 90px;
  margin: 0 auto;
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.btn:hover {
  background-color: #F78B26;
  color: #fff;
}
@media (min-width: 993px) {
  .btn {
    font-size: 18px;
    padding: 12px 24px;
  }
}

.btn-arrow {
  padding-right: 50px;
  background-image: url(../images/ic_arrowRight_20.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: right 24px center;
}
.btn-arrow:hover {
  background-position: right 16px center;
}

.setting-list {
  border: 2px solid #F57600;
  border-radius: 16px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 44px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .setting-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 44px;
  }
}
.setting-list .num {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 66px;
  font-weight: bold;
  color: #fff;
  background-color: #F57600;
  width: 66px;
  height: 66px;
  text-align: center;
  border-radius: 33px;
}
@media (min-width: 993px) {
  .setting-list .num {
    margin-bottom: 32px;
  }
}
.setting-list .info {
  color: #000;
}
.setting-list .info a {
  font-weight: bold;
}
@media (min-width: 993px) {
  .setting-list .info {
    font-size: 18px;
  }
}
.setting-list .info.title {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .setting-list .info.title {
    min-height: 54px;
  }
}
@media (min-width: 993px) {
  .setting-list .info.title {
    margin-bottom: 32px;
  }
}
.setting-list .download-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.setting-list .download-apple {
  max-width: 89px;
}
.setting-list .download-google {
  max-width: 100px;
}
.setting-list-item {
  max-width: 210px;
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.setting-list-img-wrap {
  width: 124px;
  padding-bottom: 124px;
  position: relative;
  margin-bottom: 16px;
}
@media (min-width: 993px) {
  .setting-list-img-wrap {
    margin-bottom: 32px;
  }
}
.setting-list-icon {
  width: 124px;
  height: 124px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
}

@media (min-width: 768px) {
  .step-list {
    max-width: 533px;
    margin: 0 auto;
  }
}
@media (min-width: 993px) {
  .step-list {
    max-width: 665px;
  }
}
.step-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  max-width: 335px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .step-list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 60px;
  }
}
@media (min-width: 993px) {
  .step-list-item {
    gap: 100px;
  }
}
@media (min-width: 768px) {
  .step-list-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: -100px;
    margin-bottom: -100px;
    left: -20px;
  }
}
@media (min-width: 993px) {
  .step-list-item:nth-child(even) {
    margin-top: -150px;
    margin-bottom: -150px;
    left: 40px;
  }
}
.step-list-item:nth-child(even) .text {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.step-list-item .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .step-list-item .text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 250px;
  }
}
.step-list-item .info {
  text-align: left;
  margin-top: 12px;
  font-size: 16px;
  color: #000;
}
.step-list-item .num {
  font-size: 24px;
  color: #373D4B;
}
.step-list-item .num strong {
  font-size: 48px;
  font-weight: 500;
}
.step-list-item .step-title {
  font-weight: bold;
  font-size: 24px;
  color: #F57600;
}
.step-list-img-wrap {
  width: 223px;
  padding-bottom: 486px;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .step-list-img-wrap {
    margin: 0 100px 0 auto;
    -ms-flex-preferred-size: 223px;
        flex-basis: 223px;
    margin: 0;
  }
}
@media (min-width: 993px) {
  .step-list-img-wrap {
    -ms-flex-preferred-size: 306px;
        flex-basis: 306px;
    padding-bottom: 666px;
  }
}
.step-list-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
}

.voice {
  background-image: url(../images/voice_bg.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 5px 20px 0;
  margin-bottom: 28px;
  width: 100%;
}
@media (min-width: 768px) {
  .voice {
    padding: 40px 40px 0;
    min-height: 50.9027vw;
  }
}
@media (min-width: 993px) {
  .voice {
    padding: 40px 40px 27px;
    background-size: cover;
    margin-bottom: 60px;
    position: relative;
  }
}
.voice .h1 {
  color: #F57600;
  text-align: left;
  margin-bottom: 8px;
}
.voice .info {
  text-align: left;
  color: #fff;
  font-weight: bold;
  max-width: 270px;
}
@media (min-width: 993px) {
  .voice .info {
    max-width: 530px;
    font-size: 34px;
  }
}
.voice-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: 12px;
}
@media (min-width: 768px) {
  .voice-list {
    width: 400px;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 993px) {
  .voice-list {
    width: 422px;
    position: absolute;
    right: 40px;
    bottom: 27px;
  }
}

.voive-tutorial {
  margin-bottom: 105px;
}

.tutor-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;
}
.tutor-list-item {
  background: #F7F7F7;
  padding: 12px 14px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .tutor-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 38px 80px;
    gap: 40px;
  }
}
@media (min-width: 993px) {
  .tutor-list-item {
    padding: 38px 140px;
    gap: 160px;
  }
}
.tutor-list-item .info {
  font-size: 12px;
  line-height: 20px;
  text-align: left;
  color: #747E92;
}
@media (min-width: 768px) {
  .tutor-list-item .info {
    font-size: 13px;
  }
}
.tutor-list-item h4 {
  color: #F57600;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .tutor-list-item h4 {
    -ms-flex-preferred-size: 120px;
        flex-basis: 120px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 20px;
  }
}
@media (min-width: 993px) {
  .tutor-list-item h4 {
    font-size: 24px;
    -ms-flex-preferred-size: 130px;
        flex-basis: 130px;
  }
}
.tutor-list-item h4 .info {
  margin-left: 4px;
}
.tutor-list-item .tutor-content {
  font-size: 13px;
  line-height: 20px;
  color: #121212;
}
@media (min-width: 768px) {
  .tutor-list-item .tutor-content {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (min-width: 993px) {
  .tutor-list-item .tutor-content {
    font-size: 18px;
    line-height: 28px;
  }
}

footer {
  background-color: #282828;
  color: #fff;
  padding: 32px 0;
  font-size: 13px;
  text-align: center;
}
footer .notice {
  font-size: 12px;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 24px 12px;
  margin-bottom: 24px;
  text-align: left;
}
@media (min-width: 993px) {
  footer .notice {
    max-width: 1020px;
  }
}
footer h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #F57600;
}

.owl-theme .owl-dots .owl-dot span {
  background: #c4c4c4;
}
/*# sourceMappingURL=style.css.map */