@charset "UTF-8";
:root {
  --normal-font-family: "Montserrat", "Microsoft JhengHei", sans-serif;
  --title-font-family: "Montserrat", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --title-color: #333;
  --text-color: #555;
  --lineWorks-color: #03C75A;
  --lineWorks-second-color: #009CFF;
  --lineWorks-third-color: #404CF8;
}

/*
  Remove all the styles of the "User-Agent-Style sheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
*/
*:where(:not(html, iframe, canvas, img, svg, video, audio, table, thead, tbody, tfoot, th, tr, td, colgroup, col):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
html,
body {
  height: 100%;
  font-family: var(--normal-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  word-wrap: break-word;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}
*::before, *::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  display: block;
  cursor: pointer;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  display: block;
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
     -moz-user-select: auto;
      -ms-user-select: auto;
          user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

input::-ms-clear {
  display: none;
}

select::-ms-expand {
  display: none;
}

button {
  background-color: transparent;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

.lineWorks-header {
  width: 100%;
  background-color: #fff;
}
.lineWorks-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 120px;
}
@media (max-width: 991px) {
  .lineWorks-header__logo {
    height: 100px;
  }
}
.lineWorks-header__logo p:nth-child(1) {
  width: 100%;
  font-family: "Calibri Light", "標楷體";
  font-size: 34px;
  line-height: 1;
  text-align: center;
  color: #272727;
}
@media (max-width: 991px) {
  .lineWorks-header__logo p:nth-child(1) {
    font-size: 28px;
  }
}
.lineWorks-header__logo p:nth-child(2) {
  width: 100%;
  padding: 4px 0;
  font-family: "Calibri Light", "標楷體";
  font-size: 16px;
  line-height: 1;
  text-align: center;
  letter-spacing: 1px;
  color: #272727;
}
@media (max-width: 991px) {
  .lineWorks-header__logo p:nth-child(2) {
    font-size: 14px;
  }
}

.lineWorks-anchors {
  position: sticky;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  z-index: 9;
}
.lineWorks-anchors a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  font-family: var(--title-font-family);
  font-size: 20px;
  line-height: 1;
  color: var(--text-color);
}
@media (max-width: 991px) {
  .lineWorks-anchors a {
    height: 40px;
    font-size: 16px;
  }
  .lineWorks-anchors a span {
    display: none;
  }
}
.lineWorks-anchors a:nth-child(n+2) {
  border-left: 1px solid #ccc;
}
.lineWorks-anchors a:hover:not(.active) {
  background-color: #f9f9f9;
}
.lineWorks-anchors a.active {
  color: #fff;
  background-color: #747474;
}

.lineWorks-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 12px 10px;
  background-color: #22506d;
}
@media (max-width: 991px) {
  .lineWorks-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lineWorks-footer p {
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}
.lineWorks-footer p:nth-child(2) {
  margin-left: 60px;
}
@media (max-width: 991px) {
  .lineWorks-footer p:nth-child(2) {
    margin: 10px 0 0;
  }
}
.lineWorks-footer p a {
  display: inline;
  color: #fff;
}
.lineWorks-footer p a:hover {
  opacity: 0.8;
}

.lineWorks-main {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (min-width: 992px) {
  .lineWorks-main {
    min-width: 1200px;
  }
}
.lineWorks-main .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  top: calc(100% - 16px);
  bottom: auto;
  height: auto;
}
@media (max-width: 991px) {
  .lineWorks-main .swiper-pagination {
    top: calc(100% - 12px);
  }
}
.lineWorks-main .swiper-pagination-bullet {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 !important;
  background-color: #d9d9d9;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .lineWorks-main .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}
.lineWorks-main .swiper-pagination-bullet-active {
  background-color: #fff;
  border: 4px solid #777;
}
.lineWorks-section {
  width: 100%;
}
.lineWorks-container {
  width: 100%;
  max-width: 1330px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1359px) and (min-width: 992px) {
  .lineWorks-container {
    max-width: 1200px;
  }
}
@media (max-width: 991px) {
  .lineWorks-container {
    max-width: 575px;
    padding: 0 10px;
  }
}
.lineWorks-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .lineWorks-title {
    margin-bottom: 25px;
  }
}
.lineWorks-title p {
  width: 100%;
  font-family: var(--title-font-family);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--title-color);
  text-align: center;
}
@media (max-width: 991px) {
  .lineWorks-title p {
    max-width: 300px;
    font-size: 28px;
  }
}
.lineWorks-title p span.first {
  color: var(--lineWorks-color);
}
.lineWorks-title p span.second {
  color: var(--lineWorks-second-color);
}
.lineWorks-title p span.third {
  color: var(--lineWorks-third-color);
}
.lineWorks-title img:first-child {
  height: 60px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .lineWorks-title img:first-child {
    height: 50px;
  }
}
.lineWorks-title img:first-child.small {
  height: 36px !important;
}
.lineWorks-title img:last-child {
  height: 100px;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .lineWorks-title img:last-child {
    height: 60px;
  }
}
.lineWorks-summary {
  width: 100%;
  padding: 100px 0;
  background-color: #FAFAFA;
}
@media (max-width: 991px) {
  .lineWorks-summary {
    padding: 50px 0;
  }
}
.lineWorks-summary__block {
  width: 100%;
}
.lineWorks-summary__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  .lineWorks-summary__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lineWorks-summary__detail {
  width: 560px;
}
@media (max-width: 1359px) and (min-width: 992px) {
  .lineWorks-summary__detail {
    width: 500px;
  }
}
@media (max-width: 991px) {
  .lineWorks-summary__detail {
    width: 100%;
  }
}
.lineWorks-summary__detail-text {
  position: relative;
  width: calc(100% - 40px);
  padding: 20px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.1));
}
@media (max-width: 991px) {
  .lineWorks-summary__detail-text {
    width: 100%;
    padding: 20px 15px;
  }
}
.lineWorks-summary__detail-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lineWorks-summary__detail-text p:nth-child(1) {
  width: 100%;
  font-family: var(--title-font-family);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  color: var(--title-color);
}
@media (max-width: 1359px) and (min-width: 992px) {
  .lineWorks-summary__detail-text p:nth-child(1) {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .lineWorks-summary__detail-text p:nth-child(1) {
    font-size: 22px;
  }
}
.lineWorks-summary__detail-text p:nth-child(1) span {
  color: var(--lineWorks-color);
}
.lineWorks-summary__detail-text p:nth-child(2) {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
}
.lineWorks-summary__detail-image {
  width: 100%;
  margin-top: 45px;
}
.lineWorks-summary__detail-image img {
  width: 100%;
}
.lineWorks-summary__detail-note {
  width: 100%;
  margin-top: 25px;
}
.lineWorks-summary__detail-note p {
  width: 100%;
  font-family: var(--title-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-color);
  text-align: center;
}
@media (max-width: 1359px) {
  .lineWorks-summary__detail-note p {
    font-size: 15px;
  }
}
.lineWorks-summary__slider {
  width: calc(100% - 620px);
}
@media (max-width: 1359px) and (min-width: 992px) {
  .lineWorks-summary__slider {
    width: calc(100% - 550px);
  }
}
@media (max-width: 991px) {
  .lineWorks-summary__slider {
    width: 100%;
    margin-top: 25px;
  }
}
.lineWorks-summary__slider-box {
  width: 100%;
}
@media (max-width: 991px) {
  .lineWorks-summary__slider-box--pc {
    width: 0;
    height: 0;
    overflow: hidden;
  }
}
@media (min-width: 992px) {
  .lineWorks-summary__slider-box--mobile {
    height: 0;
    overflow: hidden;
  }
}
.lineWorks-summary__slider .swiper-wrapper {
  margin-bottom: 31px;
}
@media (max-width: 991px) {
  .lineWorks-summary__slider .swiper-wrapper {
    margin-bottom: 27px;
  }
}
.lineWorks-features {
  width: 100%;
  padding: 100px 0;
  background-color: #fff;
}
@media (max-width: 991px) {
  .lineWorks-features {
    padding: 50px 0;
  }
}
@media (min-width: 1600px) {
  .lineWorks-features .lineWorks-container {
    max-width: 1600px;
  }
}
.lineWorks-features__block {
  width: 100%;
}
.lineWorks-features__content {
  width: 100%;
}
.lineWorks-features__sliders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  .lineWorks-features__sliders {
    width: 0;
    height: 0;
    overflow: hidden;
  }
}
.lineWorks-features__sliders-left, .lineWorks-features__sliders-right {
  width: 20%;
}
.lineWorks-features__sliders-center {
  width: 60%;
  padding: 0 50px;
}
@media (max-width: 1359px) {
  .lineWorks-features__sliders-center {
    padding: 0 20px;
  }
}
.lineWorks-features__sliders-center .swiper-wrapper {
  margin-bottom: 31px;
}
@media (max-width: 991px) {
  .lineWorks-features__sliders-center .swiper-wrapper {
    margin-bottom: 27px;
  }
}
.lineWorks-features__slider {
  width: 100%;
}
@media (min-width: 992px) {
  .lineWorks-features__slider {
    height: 0;
    overflow: hidden;
  }
}
.lineWorks-features__slider .swiper-wrapper {
  margin-bottom: 31px;
}
@media (max-width: 991px) {
  .lineWorks-features__slider .swiper-wrapper {
    margin-bottom: 27px;
  }
}
.lineWorks-features__slider img {
  display: block;
  margin: 0 auto;
}
.lineWorks-advantages {
  width: 100%;
  padding: 100px 0 0;
  background-color: #FAFAFA;
}
@media (max-width: 991px) {
  .lineWorks-advantages {
    padding: 50px 0;
  }
}
.lineWorks-advantages__block {
  width: 100%;
}
.lineWorks-advantages__content {
  width: 100%;
}
.lineWorks-advantages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .lineWorks-advantages__list {
    display: none;
  }
}
.lineWorks-advantages__list .lineWorks-advantages__item {
  width: 25%;
}
.lineWorks-advantages__item--even {
  background-color: #f1f1f1;
}
.lineWorks-advantages__item-image {
  width: 100%;
}
.lineWorks-advantages__item-text {
  width: 100%;
  padding: 30px;
}
@media (max-width: 991px) {
  .lineWorks-advantages__item-text {
    padding: 20px 15px;
  }
}
.lineWorks-advantages__item-text p {
  width: 100%;
}
.lineWorks-advantages__item-text p:nth-child(1) {
  width: 100%;
  font-family: var(--title-font-family);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--title-color);
}
@media (max-width: 991px) {
  .lineWorks-advantages__item-text p:nth-child(1) {
    font-size: 18px;
  }
}
.lineWorks-advantages__item-text p:nth-child(2) {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
}
@media (max-width: 991px) {
  .lineWorks-advantages__item-text p:nth-child(2) {
    margin-top: 10px;
  }
}
.lineWorks-advantages__slider {
  width: 100%;
  max-width: 555px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .lineWorks-advantages__slider {
    height: 0;
    overflow: hidden;
  }
}
.lineWorks-advantages__slider .swiper-wrapper {
  margin-bottom: 31px;
}
@media (max-width: 991px) {
  .lineWorks-advantages__slider .swiper-wrapper {
    margin-bottom: 27px;
  }
}
.lineWorks-advantages__slider .lineWorks-advantages__item {
  width: 100%;
}
.lineWorks-scene {
  width: 100%;
  padding: 100px 0;
  background-color: #FAFAFA;
}
@media (max-width: 991px) {
  .lineWorks-scene {
    padding: 50px 0;
  }
}
.lineWorks-scene__block {
  width: 100%;
}
.lineWorks-scene__content {
  width: 100%;
}
.lineWorks-scene__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px 30px;
  width: 100%;
}
@media (max-width: 991px) {
  .lineWorks-scene__list {
    display: none;
  }
}
.lineWorks-scene__list .lineWorks-scene__item {
  width: calc((99.999% - 60px) / 3);
}
.lineWorks-scene__item {
  border-bottom: 1px solid #ccc;
}
.lineWorks-scene__item-image {
  width: 100%;
}
.lineWorks-scene__item-title {
  width: 100%;
  margin-top: 25px;
  font-family: var(--title-font-family);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--title-color);
  text-align: center;
}
@media (max-width: 991px) {
  .lineWorks-scene__item-title {
    margin-top: 20px;
    font-size: 22px;
  }
}
.lineWorks-scene__item-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
}
@media (max-width: 991px) {
  .lineWorks-scene__item-tags {
    margin-top: 10px;
  }
}
.lineWorks-scene__item-tags p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 24px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background-color: var(--lineWorks-second-color);
  border-radius: 12px;
}
@media (max-width: 991px) {
  .lineWorks-scene__item-tags p {
    width: 80px;
    height: 20px;
    font-size: 15px;
    border-radius: 10px;
  }
}
.lineWorks-scene__item-list {
  width: 100%;
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}
.lineWorks-scene__item-listItem {
  width: 100%;
}
.lineWorks-scene__item-listItem:nth-child(n+2) {
  margin-top: 7px;
}
.lineWorks-scene__item-listItem p {
  width: 100%;
}
.lineWorks-scene__item-listItem p:nth-child(1) {
  position: relative;
  padding-left: 16px;
  font-family: var(--title-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--title-color);
}
.lineWorks-scene__item-listItem p:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 8px;
  display: block;
  width: 4px;
  height: 4px;
  background-color: var(--title-color);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.lineWorks-scene__item-listItem p:nth-child(2) {
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
}
.lineWorks-scene__slider {
  width: 100%;
}
@media (min-width: 992px) {
  .lineWorks-scene__slider {
    height: 0;
    overflow: hidden;
  }
}
.lineWorks-scene__slider .swiper-wrapper {
  margin-bottom: 31px;
}
@media (max-width: 991px) {
  .lineWorks-scene__slider .swiper-wrapper {
    margin-bottom: 27px;
  }
}
.lineWorks-scene__slider .lineWorks-scene__item {
  width: 100%;
}
.lineWorks-contact {
  width: 100%;
  background: linear-gradient(135deg, #29acff 0%, #007dcc 100%);
}
.lineWorks-contact__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.lineWorks-contact__image {
  width: 58%;
  background-image: url("../images/contact_bg.png");
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 300px 0 0;
}
@media (max-width: 991px) {
  .lineWorks-contact__image {
    width: 100%;
    height: 350px;
    background-position: center;
    border-radius: 0 0 100px 0;
  }
}
.lineWorks-contact__content {
  width: 42%;
}
@media (min-width: 992px) {
  .lineWorks-contact__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: calc(100vh - 60px);
    max-height: 990px;
    min-height: 500px;
  }
}
@media (max-width: 991px) {
  .lineWorks-contact__content {
    width: 100%;
    padding: 50px 0;
  }
}
.lineWorks-contact__content p {
  width: 100%;
  text-align: center;
}
.lineWorks-contact__content p:nth-child(1) {
  font-family: var(--title-font-family);
  font-size: 70px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  .lineWorks-contact__content p:nth-child(1) {
    font-size: 36px;
  }
}
.lineWorks-contact__content p:nth-child(2) {
  margin-top: 40px;
  font-family: var(--title-font-family);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (max-width: 991px) {
  .lineWorks-contact__content p:nth-child(2) {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 500;
  }
}
.lineWorks-contact__content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 280px;
  height: 50px;
  margin: 30px auto 0;
  font-family: var(--title-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--title-color);
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
}
@media (max-width: 991px) {
  .lineWorks-contact__content a {
    margin: 20px auto 0;
  }
}
.lineWorks-contact__content a:hover {
  color: #fff;
  background-color: var(--lineWorks-color);
}