@charset "UTF-8";
.webShow {
  display: initial !important;
}

.mobileShow {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .mw100 {
    width: 100% !important;
  }
  .webShow {
    display: none !important;
  }
  .mobileShow {
    display: initial !important;
  }
}

html, body {
  overflow-x: hidden;
  font-family: 'Noto Sans TC', "Microsoft JhengHei";
  font-size: 14px;
  color: #141414;
  background: #F5F5F5;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  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;
  border-bottom: 8px solid #00B4B4;
  background: #FFFFFF;
  padding: 0 20px;
}

header .logo {
  cursor: pointer;
}

header .logo img {
  position: relative;
  z-index: 10;
  width: auto;
  height: 52px;
  display: block;
}

header div {
  width: calc(100% - 12rem);
  text-align: right;
  padding-top: 36px;
}

header div .lang {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 1rem;
  list-style: none;
  background: -webkit-gradient(linear, left top, right top, from(#FFFFFF), to(#F5F5F5));
  background: linear-gradient(to right, #FFFFFF, #F5F5F5);
  padding: 5px 20px 4px;
}

header div .lang li {
  display: inline-block;
  font-size: 13px;
  color: #00469C;
  border-radius: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 5px 10px;
}

header div .lang li.active {
  color: #FFFFFF;
  background: #00469C;
}

header div .menu {
  margin-right: 8rem;
}

header div .menu li {
  display: inline-block;
  vertical-align: middle;
  line-height: 21px;
  font-size: 16px;
  list-style: none;
  color: #141414;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  padding: 20px 16px;
}

header div .menu li:hover {
  color: #00B4B4;
}

header div .menuBtn {
  position: relative;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: none;
  vertical-align: middle;
  cursor: pointer;
  padding: 9px 6px;
}

header div .menuBtn span {
  position: absolute;
  width: 24px;
  height: 3px;
  background: #00469C;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header div .menuBtn span:nth-of-type(1) {
  top: 10px;
  left: 6px;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

header div .menuBtn span:nth-of-type(2) {
  top: 17px;
  left: 6px;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

header div .menuBtn span:nth-of-type(3) {
  bottom: 9px;
  left: 6px;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

header div.menuActive .menuBtn span:nth-of-type(1) {
  top: 7px;
  left: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header div.menuActive .menuBtn span:nth-of-type(2) {
  top: 7px;
  left: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header div.menuActive .menuBtn span:nth-of-type(3) {
  bottom: 8px;
  left: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

main {
  margin-top: 105px;
}

main .banner {
  height: 22rem;
  background: no-repeat center / cover;
  padding: 9rem 3rem 0;
}

main .banner h2 {
  text-align: center;
  font-size: 36px;
  color: #FFFFFF;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

main .banner.index {
  background-image: url("../img/banner1.jpg");
}

main .banner.brand {
  background-image: url("../img/banner2.jpg");
}

main .banner.foreign {
  padding-top: 7rem;
}

main section {
  width: 1000px;
  max-width: 1152px;
  border-radius: 8px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
  margin: -4.5rem auto 80px;
  padding: 40px 0;
}

main section h3.topicTitle {
  font-size: 24px;
  font-weight: 300;
  line-height: 0.83;
  border-bottom: 1px solid #707070;
  margin: 0 80px 34px;
  padding-bottom: 20px;
}

main section h3.topicTitle::before {
  content: '';
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  vertical-align: sub;
  background: url("../img/ico-circlegreen.svg") no-repeat center/contain;
  margin-right: 16px;
}

main section h4.title {
  font-size: 20px;
  margin: 0 80px 10px;
}

main section h4.title.mar-b24 {
  margin-bottom: 24px;
}

main section h4.title:before {
  content: '｜';
  display: inline-block;
  vertical-align: text-bottom;
}

main section div.content {
  margin: 0 80px 40px;
}

main section div.content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

main section div.content p:not(:nth-last-of-type(1)) {
  margin-bottom: 10px;
}

main section div.content .advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 1.5rem;
}

main section div.content .advantage div {
  max-width: 12.5rem;
  border-radius: 25px;
  background: #F5F5F5;
  padding: 35px 26px;
}

main section div.content .advantage div img {
  width: 48px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

main section div.content .advantage div p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.33;
}

main section div.content .advantage.foreign {
  padding: 0;
}

main section div.content .advantage.foreign div {
  max-width: calc(100%/4 - 0.5rem);
}

main section div.content ul {
  margin-left: 1.7rem;
}

main section div.content ul li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.33;
  margin-bottom: 10px;
}

main section div.value {
  position: relative;
  height: 28.5rem;
  text-align: center;
  background: url("../img/corespirit.jpg") no-repeat center/cover;
  margin-bottom: 60px;
  padding: 10rem 0;
}

main section div.value::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(20, 20, 20, 0.25);
}

main section div.value ul {
  position: relative;
  z-index: 4;
  width: 70%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  list-style: none;
  margin: auto;
}

main section div.value ul li {
  width: 11.5rem;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  background: rgba(20, 20, 20, 0.25);
  padding: 7px 15px;
}

main section div.solgan {
  position: relative;
  height: 28.5rem;
  text-align: right;
  background: url("../img/techsupport.jpg") no-repeat center/cover;
  margin: 70px 0 30px;
  padding: 12.5em 80px;
}

main section div.solgan ul {
  position: relative;
  z-index: 4;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -ms-flex-line-pack: center;
      align-content: center;
  list-style: none;
}

main section div.solgan ul li {
  width: 9.5rem;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #141414;
  font-size: 18px;
  line-height: 0.89;
  border-radius: 2rem;
  background: #FFFFFF;
  -webkit-box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 1rem;
  padding: 10px 15px;
}

main section div.solgan ul li:not(:nth-last-child(1)) {
  margin-right: 24px;
}

main section div.solgan.foreign {
  padding: 0 80px;
}

main section div.solgan.foreign ul {
  width: 50%;
  -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;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0 0 0 auto;
}

main section div.solgan.foreign ul li {
  width: 20rem;
}

main section div.brandList {
  margin-bottom: 60px;
  padding: 0 100px;
}

main section div.brandList > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px dashed #BEBEBE;
  padding: 25px 0;
}

main section div.brandList > div:nth-of-type(1) {
  padding-top: 12px;
}

main section div.brandList > div .leftArea {
  text-align: right;
}

main section div.brandList > div .leftArea img {
  width: 180px;
  height: auto;
  display: block;
  cursor: pointer;
  margin-bottom: 12px;
}

main section div.brandList > div .leftArea a {
  font-size: 14px;
  line-height: 1.14;
  color: #00469c;
}

main section div.brandList > div .rightArea {
  width: calc(100% - 180px - 45px);
  margin-left: 45px;
}

main section div.brandList > div .rightArea p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.33;
  margin-bottom: 24px;
}

main section div.brandList > div .rightArea ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 1.5rem;
}

main section div.brandList > div .rightArea ul li {
  width: 100%;
  font-size: 16px;
  line-height: 1.07;
  margin-bottom: 10px;
}

main section div.brandList > div .rightArea ul.half li {
  width: 50%;
}

main section div.service {
  padding: 0 80px;
}

main section div.service p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.33;
  margin-bottom: 30px;
}

main section div.service > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 10px;
}

main section div.service > div > div {
  position: relative;
  width: calc(100%/3 - 20px - 1px);
  height: 180px;
  overflow: hidden;
  border: 1px solid #707070;
  border-radius: 10px;
  margin: 18px 10px;
}

main section div.service > div > div::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(20, 20, 20, 0.5);
}

main section div.service > div > div:hover img.bg {
  height: 120%;
}

main section div.service > div > div img.bg {
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -100%;
  right: -100%;
  z-index: 1;
  width: auto;
  height: 100%;
  margin: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

main section div.service > div > div > div {
  position: absolute;
  left: 0;
  right: 0;
  top: -10%;
  bottom: -10%;
  z-index: 10;
  height: 7em;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  margin: auto;
}

main section div.service > div > div > div p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 7px 0 0;
}

main section div.service.foreign > div > div > div {
  height: 8em;
}

main section div.service.foreign > div > div > div p {
  height: 2em;
  margin: 7px 1rem 0;
}

main .goTop {
  position: fixed;
  bottom: 2rem;
  right: 5rem;
  z-index: 80;
  width: 48px;
  height: 48px;
  display: block;
  background: url("../img/ico-gotop.svg") no-repeat center/contain;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}

main .goTop.show {
  opacity: 1;
}

footer {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  background: #00469C;
  padding: 50px 50px 85px;
}

footer .contact {
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: auto;
}

footer .contact ul {
  border-left: 1px solid #00B4B4;
  padding: 5px 20px 0 20px;
}

footer .contact ul li {
  list-style: none;
  font-size: 14px;
  line-height: 1.14;
  margin-bottom: 10px;
}

footer .contact ul li:nth-of-type(1) {
  font-weight: bold;
}

footer .copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
}

footer .copyright p {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.07;
}

footer .copyright p.mail {
  font-size: 14px;
  margin-right: 40px;
}

footer .copyright p.mail:before {
  content: '';
  display: inline-block;
  vertical-align: sub;
  width: 24px;
  height: 18px;
  line-height: 1.14;
  background: url("../img/ico-mail.svg") no-repeat center/contain;
  margin-right: 6px;
}

@media all and (max-width: 1100px) {
  header div .menu {
    margin-right: 1.5rem;
  }
  main section {
    width: 90%;
  }
  main section div.content .advantage div {
    width: calc(100% /4 - 10px);
    max-width: inherit;
    padding: 35px 1.5rem;
  }
  main section div.value ul {
    width: 90%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main section div.value ul li {
    margin: 0 1rem 1rem;
  }
  main section div.service > div {
    padding: 0;
  }
  main .goTop {
    right: 2rem;
  }
  footer .contact {
    width: 100%;
  }
}

@media all and (max-width: 844px) {
  header {
    border-width: 4px;
    background: #F5F5F5;
    padding: 8px;
  }
  header .logo img {
    height: 44px;
  }
  header div {
    width: calc(100% - 9rem);
    padding-top: 0;
  }
  header div .lang {
    position: static;
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    padding: 0;
  }
  header div .lang li {
    border-radius: 0;
    margin-left: -4px;
    padding: 1rem 5px;
  }
  header div .lang li:not(:nth-last-of-type(1)):after {
    content: '';
    border-right: 1px solid #00469C;
    margin-left: 10px;
  }
  header div .lang li.active {
    color: #00469C;
    background: transparent;
  }
  header div .menuBtn {
    display: inline-block;
  }
  header div .menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 90;
    background: #00B4B4;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    pointer-events: none;
    margin: 0;
  }
  header div .menu:before {
    content: '';
    width: 100%;
    height: 2.5rem;
    display: block;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 20, 20, 0.25)), to(rgba(190, 190, 190, 0)));
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.25), rgba(190, 190, 190, 0));
  }
  header div .menu ul {
    margin: 0 3.5rem 2.5rem;
  }
  header div .menu ul li {
    width: 100%;
    font-size: 16px;
    text-align: center;
    line-height: 2.5;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 5px 0 4px;
  }
  header div .menu ul li:hover, header div .menu ul li:active, header div .menu ul li.active {
    color: #FFFFFF;
    background: rgba(20, 20, 20, 0.2);
  }
  header div.menuActive .menu {
    opacity: 1;
    pointer-events: auto;
  }
  main {
    margin-top: 64px;
  }
  main .banner {
    height: 17.5rem;
    padding: 4.5rem 3rem;
  }
  main .banner h2 {
    font-size: 30px;
  }
  main .banner.foreign {
    padding-top: 2.5rem;
  }
  main section h3.topicTitle {
    font-size: 20px;
    margin-left: 40px;
    margin-right: 40px;
    padding-bottom: 16px;
  }
  main section h3.topicTitle::before {
    width: 22px;
    height: 22px;
    vertical-align: text-top;
    margin-right: 10px;
  }
  main section h4.title {
    font-size: 18px;
    margin-left: 40px;
    margin-right: 40px;
  }
  main section div.content {
    margin-left: 40px;
    margin-right: 40px;
  }
  main section div.content .advantage {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 18px;
    padding: 0;
  }
  main section div.content .advantage div {
    width: calc(100%/2 - 10px);
    max-width: inherit;
    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;
    margin-bottom: 12px;
    padding: 30px 2rem;
  }
  main section div.content .advantage div img {
    margin: 0;
  }
  main section div.content .advantage div p {
    width: calc(100% - 48px - 2rem);
  }
  main section div.content .advantage.foreign div {
    max-width: inherit;
  }
  main section div.value {
    padding: 6rem 0;
  }
  main section div.solgan.foreign ul {
    width: 80%;
  }
  main section div.brandList {
    padding-left: 50px;
    padding-right: 50px;
  }
  main section div.service {
    padding-left: 40px;
    padding-right: 40px;
  }
  main section div.service > div {
    padding: 0 5px;
  }
  main section div.service > div > div {
    width: calc(100%/2 - 12px);
    margin: 6px;
  }
  main section div.service > div > div:hover img.bg {
    width: 120%;
    height: 120%;
  }
  main section div.service > div > div img.bg {
    width: 100%;
    height: 100%;
  }
  footer {
    padding: 50px 30px calc(85px + 28px);
  }
  footer .contact {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .contact ul {
    width: 100%;
    margin-bottom: 16px;
  }
  footer .copyright {
    text-align: left;
  }
  footer .copyright p {
    width: 100%;
    margin-bottom: 14px;
  }
}

@media all and (max-width: 680px) {
  main section div.content .advantage div {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 30px 3rem;
  }
  main section div.content .advantage div img {
    margin-right: 3rem;
  }
  main section div.content .advantage div p {
    width: inherit;
  }
  main section div.solgan {
    height: 21.5rem;
    padding: 9em 3rem;
  }
  main section div.solgan ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main section div.solgan ul li {
    width: 32%;
  }
  main section div.solgan ul li:not(:nth-last-child(1)) {
    margin-right: 0;
  }
  main section div.solgan.foreign {
    padding: 0;
  }
  main section div.solgan.foreign ul {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main section div.brandList > div {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main section div.brandList > div .leftArea {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  main section div.brandList > div .leftArea img {
    margin: 0 auto;
  }
  main section div.brandList > div .rightArea {
    width: 100%;
    margin: 0;
  }
  main section div.brandList > div .rightArea ul.half li {
    width: 100%;
  }
  main section div.brandList > div:nth-last-of-type(1) {
    border-bottom: 0;
  }
}

@media all and (max-width: 480px) {
  main .banner {
    padding: 4.5rem;
  }
  main .banner h2 {
    font-size: 24px;
  }
  main section {
    width: calc(100vw - 30px);
  }
  main section h3.topicTitle {
    font-size: 18px;
    margin-left: 20px;
    margin-right: 20px;
  }
  main section h3.topicTitle::before {
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: text-bottom;
  }
  main section h4.title {
    margin-left: 20px;
    margin-right: 20px;
  }
  main section div.content {
    margin-left: 20px;
    margin-right: 20px;
  }
  main section div.value ul {
    width: 75%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main section div.value ul li {
    width: 100%;
    margin: 0 0 1rem;
  }
  main section div.solgan {
    padding: 0 6rem;
  }
  main section div.solgan ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main section div.solgan ul li {
    width: 9.5rem;
  }
  main section div.brandList {
    padding-left: 30px;
    padding-right: 30px;
  }
  main section div.service {
    padding-left: 20px;
    padding-right: 20px;
  }
  main section div.service > div {
    padding: 0 10px;
  }
  main section div.service > div > div {
    width: 100%;
    margin: 6px 0;
  }
  main .goTop {
    bottom: 4rem;
  }
}

@media all and (max-width: 350px) {
  header div .lang li {
    margin-left: -6px;
    padding: 1rem 4px;
  }
  header div .lang li:not(:nth-last-of-type(1)):after {
    margin-left: 8px;
  }
  main section div.solgan.foreign ul li {
    width: 85%;
  }
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    header {
      top: env(safe-area-inset-top);
      padding-left: calc(20px + env(safe-area-inset-left));
      padding-right: calc(20px + env(safe-area-inset-right));
    }
    header div .lang {
      top: env(safe-area-inset-top);
      left: env(safe-area-inset-left);
      right: env(safe-area-inset-right);
    }
    main section div.service > div > div > div {
      left: env(safe-area-inset-left);
      right: env(safe-area-inset-right);
    }
    @media all and (max-width: 1100px) {
      main section {
        width: calc(90% - env(safe-area-inset-left) - env(safe-area-inset-right));
      }
    }
    @media all and (max-width: 844px) {
      header {
        padding-left: calc(8px + env(safe-area-inset-left));
        padding-right: calc(8px + env(safe-area-inset-right));
      }
      header div .menu {
        top: calc(64px + env(safe-area-inset-top));
        left: env(safe-area-inset-left);
        right: env(safe-area-inset-right);
      }
      footer {
        padding-left: calc(30px + env(safe-area-inset-left));
        padding-right: calc(30px + env(safe-area-inset-right));
      }
      footer .copyright {
        padding-left: calc(20px + env(safe-area-inset-left));
        padding-right: calc(20px + env(safe-area-inset-right));
      }
    }
  }
}
/*# sourceMappingURL=style.css.map */