@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #585858;
  padding-top: 130px;
  padding-bottom: 64px;
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 70px;
    padding-bottom: 0;
  }
}

.place-link {
  color: #585858;
}
.place-link:hover {
  color: #000 !important;
}

.pretty {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.pretty input {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1em;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.pretty svg {
  margin: 0;
  text-align: center;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc(0% - (100% - 1em) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}
.pretty label {
  position: initial;
  display: inline-block;
  font-weight: 400;
  margin: 0;
  text-indent: 1.5em;
  min-width: calc(1em + 2px);
}
.pretty label:before, .pretty label:after {
  content: "";
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  display: block;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: calc(0% - (100% - 1em) - 8%);
  background-color: transparent;
  border-radius: 20%;
}
.pretty label:before {
  border-color: #bdc3c7;
}
.pretty input:checked ~ .state svg {
  opacity: 1;
  color: #fff;
  stroke: #fff;
}
.pretty input:checked ~ .state label:after {
  background-color: #2FADCF !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 15px;
}
.select2-container .select2-selection--single {
  height: 40px;
  border: none;
  background: #F5F5F5;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  top: 6px;
}
.select2-container .select2-results__option--highlighted.select2-results__option--selectable {
  background: #2FADCF;
}
.select2-container.select2-container--open .select2-dropdown--below, .select2-container.select2-container--open .select2-dropdown--above {
  border-radius: 4px;
  transform: translateY(5px);
  border: 1px solid #dddddd;
}
.select2-container.select2-container--open .select2-dropdown--below.select2-dropdown--above, .select2-container.select2-container--open .select2-dropdown--above.select2-dropdown--above {
  transform: translateY(-5px);
}

.datepicker-cell.selected, .datepicker-cell.selected:hover {
  background-color: #2FADCF;
}

a {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

section {
  padding: 40px 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section {
    padding: 70px 0;
  }
}

h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  color: #0C3178;
  margin: 0 0 30px 0;
}
@media screen and (min-width: 768px) {
  h2 {
    text-align: left;
    font-size: 32px;
  }
}

p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .m {
    display: none;
  }
}

.vid-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.vid-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.readmore {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .readmore {
    margin-bottom: 0;
    justify-content: flex-start;
  }
}
.readmore a {
  color: #0C3178;
  padding: 2px 24px;
  border: 1px solid #0C3178;
  border-radius: 30px;
  display: block;
  transition: all 0.4s;
}
.readmore a:hover {
  background: #0C3178;
  color: #fff;
}

header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header > div {
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 1200px) {
  header > div {
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.25);
  }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  height: 70px;
}
header .container .brand-logo img {
  height: 25px;
}
@media screen and (min-width: 1200px) {
  header .container .brand-logo img {
    height: 34px;
  }
}
header .container nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  header .container nav {
    display: block;
  }
}
header .container nav > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container nav > ul a {
  line-height: 16px;
  padding: 27px 3px;
}
header .container nav li {
  position: relative;
  white-space: nowrap;
}
header .container nav li:hover ul {
  display: block;
}
header .container nav ul ul {
  display: none;
  position: absolute;
  bottom: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100%;
  transform: translateY(100%);
  background: #fff;
  padding: 10px 0 15px 0;
}
header .container nav ul ul a {
  margin: 0;
  padding: 10px;
  transition: all 0.2s;
}
header .container nav a {
  color: #585858;
  display: block;
  padding: 6px 3px;
  margin: 0 6px;
  font-weight: 500;
  transition: all 0.2s;
}
header .container nav a:hover, header .container nav a.active {
  color: #2FADCF;
}
header .container .social {
  display: none;
}
@media screen and (min-width: 1200px) {
  header .container .social {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
header .container .social a {
  display: block;
  padding: 3.5px 0;
  margin: 0 3.5px;
  opacity: 0.85;
  transition: all 0.2s;
}
header .container .social a:hover {
  opacity: 1;
}
header .container .act {
  display: flex;
}
header .container .order {
  background: #2FADCF;
  color: #fff;
  padding: 3px 16px;
  border-radius: 30px;
  opacity: 0.85;
  transition: all 0.2s;
}
@media screen and (min-width: 1200px) {
  header .container .order {
    padding: 5px 20px;
  }
}
header .container .order:hover {
  opacity: 1;
}
header .container .mobile-ham {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  margin-left: 20px;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  header .container .mobile-ham {
    display: none;
  }
}
header .container .mobile-ham svg {
  width: 29px;
}
header .container .mobile-ham .mobile-ham-close-icon {
  display: none;
}
header .container .mobile-ham.open .mobile-ham-icon {
  display: none;
}
header .container .mobile-ham.open .mobile-ham-close-icon {
  display: block;
}
header .mob-order {
  background: #2FADCF;
  color: #fff;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  header .mob-order {
    display: none;
  }
}

#mob-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 0px);
  z-index: 999;
}
@media screen and (min-width: 1200px) {
  #mob-nav {
    display: none !important;
  }
}
#mob-nav .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0b0b;
  opacity: 0;
  transition: opacity 0.25s;
}
#mob-nav .nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  transform: translateX(270px);
  transition: transform 0.2s;
}
#mob-nav.open .overlay {
  opacity: 0.7;
}
#mob-nav.open .nav-panel {
  transform: translateX(0);
}
#mob-nav nav {
  padding: 30px 0;
}
#mob-nav nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mob-nav nav li a {
  color: hsla(0, 0%, 40%, 0.85);
  padding: 15px 0 15px 20px;
  display: block;
  font-size: 15px;
  transition: all 0.3s;
  width: calc(100% - 50px);
}
#mob-nav nav li a:hover {
  color: hsla(0, 0%, 7%, 0.85);
}
#mob-nav nav > ul li {
  border-bottom: 1px solid #ececec;
}
#mob-nav nav > ul li ul {
  display: none;
  padding-left: 20px;
}
#mob-nav nav > ul li ul li a {
  font-size: 14px;
  padding: 15px 20px;
  width: 100%;
  line-height: 1.4;
}
#mob-nav nav > ul li.open {
  background: rgba(0, 0, 0, 0.05);
}
#mob-nav nav > ul > li:hover {
  background: rgba(0, 0, 0, 0.05);
}
#mob-nav .social {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}
#mob-nav .social a {
  padding: 10px 6px;
}
#mob-nav .social img {
  width: 34px;
  filter: brightness(0) invert(0);
  opacity: 0.4;
}
#mob-nav .has-children {
  position: relative;
}
#mob-nav .has-children:after {
  content: "";
  position: absolute;
  top: 23px;
  right: 15px;
  width: 15px;
  height: 15px;
  background-image: url(../img/nav-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transform-origin: center center;
  transition: transform 0.4s;
}
#mob-nav .has-children.open:after {
  transform: rotate(180deg);
}

footer {
  background: #000;
  color: #fff;
  padding: 40px 0 100px 0;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 40px 0;
  }
}
@media screen and (min-width: 768px) {
  footer .container > div {
    display: flex;
    justify-content: space-between;
    max-width: 1016px;
  }
}
footer .logo img {
  margin-bottom: 30px;
}
footer .social {
  text-align: center;
  display: flex;
  justify-content: center;
}
footer .social img {
  margin: 0 5px;
  width: 40px;
  filter: brightness(0) invert(1);
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  footer .social img {
    opacity: 0.8;
  }
}
footer .social img:hover {
  opacity: 1;
}
footer .grid {
  display: none;
}
@media screen and (min-width: 768px) {
  footer .grid {
    display: block;
  }
}
footer .grid:nth-child(1) {
  display: block;
}
footer .grid .title {
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px; /* 125% */
  letter-spacing: 2.4px;
  margin-bottom: 20px;
}
footer .grid .link {
  color: #FFF;
  line-height: 26px; /* 162.5% */
  letter-spacing: 1.6px;
  opacity: 0.5;
  transition: all 0.2s;
}
footer .grid .link:hover {
  opacity: 1;
}
footer .copyright {
  display: block !important;
  margin-top: 40px;
  color: gray;
  font-size: 14px;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

#fixed-social {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 64px;
  background: #2FADCF;
  box-shadow: 0px -3px 4px 0px rgba(12, 49, 120, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  #fixed-social {
    background: none;
    right: 50px;
    bottom: 100px;
    width: 40px;
    height: auto;
    display: block;
    box-shadow: none;
  }
}
#fixed-social svg {
  width: 40px;
  height: auto;
  margin: 0 10px;
  display: block;
}
@media screen and (min-width: 768px) {
  #fixed-social svg {
    margin: 0 0 10px 0;
  }
}
#fixed-social .gotop {
  cursor: pointer;
}
#fixed-social .gotop svg {
  width: 35px;
  margin: 5px auto 0 auto;
}

#breadcrumb {
  color: #585858;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 0;
}
#breadcrumb a {
  color: #585858;
}
#breadcrumb a:hover {
  text-decoration: underline;
}
#breadcrumb .active {
  color: #2FADCF;
  font-weight: 500;
}

#page-banner {
  padding: 0;
  position: relative;
  overflow: hidden;
}
#page-banner img {
  min-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-banner .text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
}
#page-banner .text-wrapper h1 {
  letter-spacing: 2px;
  font-size: 20px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #page-banner .text-wrapper h1 {
    font-size: 30px;
  }
}
#page-banner .text-wrapper .desc {
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  #page-banner .text-wrapper .desc {
    font-size: 16px;
    margin-top: 10px;
  }
}

#order .tags {
  text-align: center;
  color: #2FADCF;
  font-size: 18px;
  font-weight: 700;
  margin: 0 30px;
}
@media screen and (min-width: 768px) {
  #order .tags {
    font-size: 20px;
  }
}
#order .tags span {
  white-space: nowrap;
}
#order .order-title {
  border-radius: 30px;
  background: #2FADCF;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  max-width: 200px;
  margin: 0 auto 30px auto;
  transition: all 0.2s;
}
#order .order-title svg {
  width: 30px;
  height: auto;
}
#order a .title:hover {
  background: #2996b3;
}
#order .row {
  margin: 0 -20px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
#order .col, #order .col-2 {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  #order .col-2 {
    width: 50%;
  }
}
#order .form-group {
  margin-bottom: 30px;
}
#order .form-group > label {
  display: block;
}
#order .form-group > label span {
  color: #2FADCF;
}
#order .form-group input, #order .form-group textarea {
  display: block;
  width: 100%;
  border: none;
  background: #F5F5F5;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 15px;
  border-radius: 6px;
}
#order .form-group input:focus, #order .form-group textarea:focus {
  outline: none;
}
#order .form-group textarea {
  resize: none;
}
#order form button.submit {
  color: #fff;
  background: #2FADCF;
  border: 1px solid #2FADCF;
  padding: 7px 50px;
  margin-bottom: 20px;
  border-radius: 40px;
  font-size: 18px;
  display: inline-block;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.2s;
}
#order form button.submit:hover {
  background: #2996b3;
}
#order .notice, #order .agree {
  font-size: 15px;
  /* 為了可以放連結 */
  /* Make pretty checkbox handle links in labels, thanks goes to pmonte, for a pointer in the right direction */
}
@media screen and (min-width: 768px) {
  #order .notice, #order .agree {
    text-align: center;
  }
}
#order .notice .notice-title, #order .agree .notice-title {
  color: #2FADCF;
  border: 1px solid #2FADCF;
  padding: 7px 50px;
  margin-bottom: 20px;
  border-radius: 40px;
  font-size: 18px;
  display: inline-block;
}
#order .notice span.blue, #order .agree span.blue {
  color: #2FADCF;
}
#order .notice .pretty label, #order .agree .pretty label {
  line-height: 180%;
  text-indent: 0;
  padding-left: 1.5em;
}
#order .notice .pretty label:after, #order .notice .pretty label:before,
#order .notice .pretty.p-svg svg, #order .agree .pretty label:after, #order .agree .pretty label:before,
#order .agree .pretty.p-svg svg {
  top: 0.4em;
}
#order .notice .pretty label, #order .agree .pretty label {
  white-space: normal;
  text-indent: unset;
  padding-left: 1.5em; /* Change to your preferred dimensions */
}
#order .notice .pretty a, #order .agree .pretty a {
  z-index: 3;
  position: relative;
}
#order .agree {
  margin-top: 30px;
}
#order .agree a {
  color: #2FADCF;
}
#order .agree a:hover {
  text-decoration: underline;
}

#success-case .content {
  padding: 20px 20px 30px 20px;
}
@media screen and (min-width: 768px) {
  #success-case .content {
    padding: 14px;
    padding: 20px;
  }
}
#success-case .content .date {
  color: #979797;
  font-weight: 700;
  line-height: 28px; /* 175% */
  text-align: center;
}
@media screen and (min-width: 768px) {
  #success-case .content .date {
    text-align: left;
  }
}
#success-case .content .title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 140% */
  margin-bottom: 14px;
}
#success-case .readmore {
  margin: 0;
}

h2 {
  text-align: center;
}

.tabs {
  display: flex;
  justify-content: center;
  padding: 0 10px;
  position: relative;
  margin-top: -30px;
}
.tabs .tabs-inner {
  display: flex;
  border-radius: 20px;
  border: 2px solid #0C3178;
  background: #FFF;
  padding: 0 10px;
}
.tabs .tabs-inner .tab {
  color: #585858;
  display: block;
  padding: 10px 20px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s;
}
@media screen and (min-width: 455px) {
  .tabs .tabs-inner .tab {
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  .tabs .tabs-inner .tab {
    padding: 20px;
    font-size: 16px;
  }
}
.tabs .tabs-inner .tab:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 1.5px;
  height: 20px;
  background: #0C3178;
}
.tabs .tabs-inner .tab:last-child:after {
  display: none;
}
.tabs .tabs-inner .tab.active, .tabs .tabs-inner .tab:hover {
  color: #0C3178;
}
.tabs .tabs-inner .tab.active {
  font-weight: 700;
}

#about {
  text-align: center;
}

#risk {
  text-align: center;
  background: #F5F5F5;
}
#risk h3 {
  font-size: 20px;
  color: #0C3178;
  margin: 0;
}
#risk .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#risk .item {
  margin-top: 20px;
  width: calc(50% - 10px);
  line-height: 1.5em;
}
@media screen and (min-width: 768px) {
  #risk .item {
    width: calc(25% - 40px);
  }
}
#risk img {
  margin-bottom: 10px;
}
#risk .blue {
  color: #2FADCF;
  font-weight: 700;
  letter-spacing: 1.2px;
}

@media screen and (min-width: 768px) {
  #principle h2 {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  #principle .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  #principle .text, #principle img {
    width: calc(50% - 40px);
  }
}

#advantage .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  color: #231815;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}
#advantage .list .item {
  width: calc(50% - 20px);
  margin: 0 10px 20px 10px;
}
@media screen and (min-width: 600px) {
  #advantage .list .item {
    width: calc(33.333% - 20px);
  }
}
#advantage .list svg {
  width: 100%;
  max-width: 100px;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

#zeiss .photo {
  margin: 0 -20px 30px -20px;
}
@media screen and (min-width: 768px) {
  #zeiss .photo {
    margin: 0 0 40px 0;
  }
}
#zeiss .photo div {
  width: 100%;
  height: 0;
  padding-top: 62.5%;
  background-image: url(../img/myopia_lens/zeiss.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  #zeiss .photo div {
    padding-top: 31.25%;
  }
}
#zeiss .photo div {
  background-attachment: fixed;
}
@media only screen and (max-device-width: 992px) {
  #zeiss .photo div {
    background-attachment: scroll;
  }
}
#zeiss .content span {
  color: #0C3178;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  #essilor h2, #hoya h2 {
    text-align: left;
  }
}
#essilor .item, #hoya .item {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #essilor .item, #hoya .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
}
#essilor .item:last-child, #hoya .item:last-child {
  margin: 0;
}
@media screen and (min-width: 768px) {
  #essilor .item .text, #hoya .item .text {
    width: calc(50% - 40px);
  }
}
#essilor .item .title, #hoya .item .title {
  color: #0C3178;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}
#essilor .item img, #hoya .item img {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  #essilor .item img, #hoya .item img {
    margin-top: 0;
    width: calc(50% - 40px);
  }
}

@media screen and (min-width: 768px) {
  #hoya .item {
    flex-direction: row-reverse;
  }
}

#benifit .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}
@media screen and (min-width: 768px) {
  #benifit .list {
    max-width: 900px;
    margin: 0 auto;
  }
}
#benifit .item {
  width: calc(50% - 20px);
  margin: 0 10px 20px 10px;
  border-radius: 14px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #benifit .item {
    width: calc(33.3333% - 20px);
  }
}
#benifit .content {
  background: #D7F6FF;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2FADCF;
  font-size: 15px;
  line-height: 22px;
  padding: 0 8px;
}
@media screen and (min-width: 768px) {
  #benifit .content {
    font-size: 20px;
    line-height: 28px;
  }
}

#team {
  padding: 0;
}
#team .wrapper {
  overflow: hidden;
  background: #0C3178;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  #team .wrapper {
    display: block;
    padding: 70px 0;
    background-image: url(../img/home/team-circle.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 100%;
  }
}
#team .container {
  position: relative;
  padding: 0 44px;
}
@media screen and (min-width: 768px) {
  #team .container {
    padding: 0 20px;
  }
}
#team h2 {
  color: #fff;
}
@media screen and (min-width: 768px) {
  #team .flex-pc {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch;
  }
}
#team .action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  #team .action {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  #team .slider {
    width: calc(100% - 200px);
    transform: translate(-100px, 0);
  }
}
@media screen and (min-width: 768px) {
  #team .content {
    transform: translateX(-80px);
    display: flex;
    flex-direction: column;
  }
}
#team .swiper-slide {
  background: #fff;
}
#team .swiper-button-next, #team .swiper-button-prev {
  position: static;
  transform: translate(0, 0);
  margin: 0 10px;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  filter: brightness(0) invert(1);
}
#team .swiper-button-next:after, #team .swiper-button-prev:after {
  display: none;
}
#team .swiper-button-next.swiper-button-prev, #team .swiper-button-prev.swiper-button-prev {
  background-image: url(../img/home/arrow-prev.svg);
}
#team .swiper-button-next.swiper-button-next, #team .swiper-button-prev.swiper-button-next {
  background-image: url(../img/home/arrow-next.svg);
}
#team .swiper-pagination {
  position: static;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  #team .swiper-pagination {
    width: calc(100% - 300px);
  }
}
#team .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
#team .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #2FADCF;
  opacity: 1;
}
#team .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 20px 20px 20px;
}
#team .info:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(0deg, #FFF 75%, rgba(217, 217, 217, 0) 100%);
}
#team .info .name {
  position: relative;
  color: #4D4D4D;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.4px;
}
#team .info .pos {
  position: relative;
  color: #2FADCF;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  border-bottom: 2px solid #2FADCF;
  padding-bottom: 4px;
  margin-bottom: 5px;
}
#team .info .desc {
  position: relative;
  color: #585858;
  line-height: 22px; /* 137.5% */
}

#base {
  padding-bottom: 0;
}
#base h2 {
  text-align: center;
  width: 100%;
}
#base .tabs {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto 40px auto;
}
#base .tabs .tab {
  margin: 0 7px;
  color: #FFF;
  text-align: center;
  font-weight: 500;
  line-height: 140%; /* 140% */
  letter-spacing: 2px;
  border-radius: 10px;
  background: #2FADCF;
  max-width: 200px;
  width: 100%;
  padding: 10px 0;
  transition: all 0.2s;
  cursor: pointer;
}
#base .tabs .tab:hover, #base .tabs .tab.active {
  background: #0C3178;
}
#base .list {
  margin-bottom: 10px;
}
#base .list .list-item {
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
  #base .list .list-item {
    margin-bottom: 0;
  }
}
#base .list .list-item:last-child {
  margin-bottom: 0;
}
#base .list .list-item .list-item-title {
  position: relative;
  background: #2FADCF;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px; /* 140% */
  letter-spacing: 2px;
  padding: 10px 5px;
  transition: all 0.2s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #base .list .list-item .list-item-title {
    display: none;
  }
}
#base .list .list-item .list-item-title svg {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
#base .list .list-item .list-item-title svg g {
  transform-origin: center center;
  transition: all 0.2s;
}
#base .list .list-item .list-item-content {
  text-align: center;
  color: #4D4D4D;
  font-weight: 700;
  line-height: 30px; /* 150% */
  letter-spacing: 2px;
  overflow: hidden;
  transition: height 0.4s linear;
  height: 0;
}
@media screen and (min-width: 768px) {
  #base .list .list-item .list-item-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    transition: none;
  }
  #base .list .list-item .list-item-content > div:nth-child(1) {
    width: 350px;
    margin: 0 15px 30px 15px;
  }
}
#base .list .list-item .list-item-content .content {
  padding: 20px 7px 0 7px;
}
#base .list .list-item .list-item-content .photo img {
  width: 100%;
}
#base .list .list-item .list-item-content a {
  color: #4D4D4D;
}
#base .list .list-item .list-item-content .name {
  color: #0C3178;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px; /* 163.636% */
  padding: 0 8px 0 8px;
  border-bottom: 1px solid #0C3178;
  letter-spacing: 0px;
  margin-bottom: 12px;
}
#base .list .list-item .list-item-content .phone1, #base .list .list-item .list-item-content .phone2, #base .list .list-item .list-item-content .addr {
  display: flex;
  align-items: center;
  justify-content: center;
}
#base .list .list-item .list-item-content .phone1 svg, #base .list .list-item .list-item-content .phone2 svg, #base .list .list-item .list-item-content .addr svg {
  margin-right: 8px;
}
#base .list .list-item .list-item-content .time {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 10px 0;
}
@media screen and (min-width: 768px) {
  #base .list .list-item .list-item-content .time {
    margin: 0;
    width: 615px;
    margin: 0 15px 30px 15px;
  }
}
#base .list .list-item .list-item-content .time .swiper {
  width: 100%;
}
#base .list .list-item .list-item-content iframe {
  display: block;
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 768px) {
  #base .list .list-item .list-item-content iframe {
    height: 500px;
  }
}
#base .list .list-item.open .list-item-title {
  background: #0C3178;
}
#base .list .list-item.open .list-item-title svg g {
  transform: rotate(90deg);
}
#base .time .event-title {
  background: #0C3178;
  color: #fff;
  padding: 6px 0;
}
#base .time .swiper-button-next, #base .time .swiper-button-prev {
  width: auto;
  color: #fff;
  font-weight: 400;
  top: 0;
  transform: none;
  margin: 0;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  #base .time .swiper-button-next, #base .time .swiper-button-prev {
    font-size: 16px;
  }
}
#base .time .swiper-button-next:after, #base .time .swiper-button-prev:after {
  display: none;
}

#notice ul {
  margin: 0;
  padding-left: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}/*# sourceMappingURL=myopia_lens.css.map */