@charset "utf-8";
/*
Theme Name: lsworks
Author: 株式会社シールズ
Description: original theme
version： 1.0.0
*/
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  overflow-x: hidden;
  color: #fff;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .1rem;
}
body.vi {
  font-size: 1.5rem;
  letter-spacing: 0;
}
body { /* color */
  --color-white: #fff;
  --color-black: #181818;
  --color-lightBlue: #e5fcff;
  --color-lightBlue2: #7be9fa;
  --color-gray: #d7d7d7;
  --color-blue: #3c6ceb;
  --color-red: #E31F26;
}
.mincho {
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
main {
  position: relative;
  z-index: 1;
}
.wrapper {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: inherit;
  opacity: .7;
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.container {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}
.container.wide {
  width: 90%;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid {
  display: grid;
}
@media (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (max-width:767px) {
  body {
    font-size: 1.4rem;
  }
  body.vi {
    font-size: 1.3rem;
  }
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
}
/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.5s ease-in-out;
}
header.on {
  background: url(img/common/header_bg_pc.png) no-repeat center / cover;
}
.vi header.on {
  background: url(img/common/header-vn_bg_pc.png) no-repeat center / cover;
}
header .logo .blue,
header.on .logo .white {
  display: none;
  transition: all 0.5s ease-in-out;
}
header.on .logo .blue {
  display: block;
}
header .logo a {
  align-items: center;
}
header a {
  display: block;
  font-weight: 700;
  color: var(--color-white);
}
.hamburger {
  display: none;
}
header .lgSwitch {
  position: absolute;
  top: 5px;
  right: -10px;
}
header .lgSwitch li {
  position: relative;
  padding: 0 25px;
  font-size: 1.4rem;
}
header .lgSwitch li:first-child::after {
  position: absolute;
  top: 0;
  right: -5px;
  color: var(--color-white);
  content: "/";
}
header .lgSwitch li a {
  padding: 0 3px;
  border-bottom: 2px solid transparent;
  font-weight: 300;
}
header .lgSwitch li.current-lang a {
  border-bottom: 2px solid var(--color-white);
  font-weight: 700;
}
header .headWrap {
  position: relative;
  align-items: center;
  padding: 55px 0 20px;
}
header .global-nav {
  width: calc(100% - 150px);
}
header .global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .global-nav li {
  padding-left: 60px;
}
.vi header .global-nav li {
  padding-left: 15px;
}
header .global-nav li.ig  {
  padding-left: 60px;
}
header .global-nav li.fb  {
  padding-left: 30px;
}
@media (max-width: 1600px) {
  .vi header .global-nav li a {
    font-size: 1.3rem;
  }
}
@media (max-width: 1200px) {
  .vi header .global-nav li a {
    font-size: 1.2rem;
  }
  header a {
    font-size: 1.4rem;
  }
  header .logo a img {
    width: 100px;
  }
  header .global-nav {
    width: calc(100% - 100px);
  }
  header .global-nav li {
    padding-left: 30px;
  }
  header .global-nav li.ig  {
    padding-left: 40px;
  }
  header .global-nav li.fb  {
    padding-left: 20px;
  }
}
@media (max-width: 1050px) {
  .vi header .global-nav li a {
    font-size: 1rem;
  }
  header a {
    font-size: 1.2rem;
  }
  header .logo a img {
    width: 90px;
  }
  header .global-nav {
    width: calc(100% - 100px);
  }
  header .global-nav li {
    padding-left: 20px;
  }
  .vi header .global-nav li {
    padding-left: 5px;
  }
  header .global-nav li.ig  {
    padding-left: 20px;
  }
  header .global-nav li.fb  {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  header.on,
  .vi header.on {
    background: #2798f2 url(img/common/header_bg_sp.png) no-repeat center / cover;
  }
  .vi header .global-nav li a {
    font-size: 1.4rem;
  }
  header .headWrap {
    padding: 20px;
    margin: 0;
    width: calc(100% - 60px);
  }
  header .logo a img {
    width: 150px;
  }
  header .lgSwitch {
    right: 0;
  }
  header .lgSwitch li {
    padding: 0 15px;
  }
  header .global-nav {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 50px 5% 100px;
    width: 100%;
    height: 100vh;
    background-color: var(--color-blue);
    z-index: 200;
    overflow-y: auto;
    display: none;
  }
  .hamburger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 300;
    transition: all 0.5s ease-in-out;
  }
  .hamburger::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    margin: auto;
    color: #fff;
    font-size: 1rem;
    content: "MENU";
  }
  header .global-nav ul {
  flex-wrap: wrap;
  justify-content: center;
  }
  header .global-nav li {
    padding: 0;
    width: 100%;
  }
  header .global-nav li a {
    padding: 10px 0;
    font-size: 1.6rem;
  }
  header .global-nav li a::before {
    margin-right: 5px;
    content: "→"
  }
  header .global-nav li.ig  {
    padding-left: 0;
    margin: 20px 10px 0 0;
    width: 30px;
  }
  header .global-nav li.fb  {
    padding-left: 0;
    margin: 20px 0 0 10px;
    width: 30px;
  }
  header .global-nav li.ig a::before,
  header .global-nav li.fb a::before {
    content: none;
  }
  .hamburger__line {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    transition: all .6s;
  }
  .hamburger__line--1 {
    top: 13px;
  }
  .hamburger__line--2 {
    top: 23px;
  }
  .hamburger__line--3 {
    top: 33px;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    display: block;
  }
  .nav-open .hamburger::after {
    content: "CLOSE";
  }
  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 25px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 25px;
  }
}
/* common style
-------------------------------------------------------------- */
#sv {
  position: relative;
  margin: 250px 0 150px;
}
#sv h1 {
  margin: 0 auto;
  padding-bottom: 30px;
  max-width: 1050px;
  width: 90%;
  color: var(--color-lightBlue2);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.4;
}
#sv h1::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc((100% - 1100px) / 2 + 160px);
  height: 5px;
  background: url(img/common/sv_h1_line.png) no-repeat right center;
  content: "";
}
#sv h1:first-letter {
  color: var(--color-blue);
}
.bg {
  position: relative;
  overflow: hidden;
}
.bg::after {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: calc(100% - 120px);
  background: url(img/common/main_bg_pc.png) no-repeat top center / 100% auto;
  content: "";
  z-index: -1;
}
.btnMore a {
  position: relative;
  display: block;
  padding: 10px 20px;
  box-sizing: border-box;
  border: 2px solid var(--color-blue);
  border-radius: 10px;
  background: var(--color-white);
  width: 176px;
  color: var(--color-blue);
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
}
.btnMore a::after {
  position: absolute;
  right: 10px;
  margin: auto;
  content: "→";
}
.btnMore a:hover {
  background: var(--color-blue);
  color: var(--color-white);
  opacity: 1;
}
.btnMore02 a {
  position: relative;
  display: block;
  padding: 10px 20px;
  box-sizing: border-box;
  border: 2px solid var(--color-white);
  border-radius: 10px;
  background: var(--color-blue);
  width: 140px;
  color: var(--color-white);
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
}
.btnMore02 a::after {
  position: absolute;
  right: 10px;
  margin: auto;
  content: "→";
}
.btnMore02 a:hover {
  background: var(--color-white);
  color: var(--color-blue);
  opacity: 1;
}
@media (max-width: 767px) {
  #sv {
    margin: 100px 0 50px;
  }
  #sv h1 {
    padding-bottom: 20px;
    font-size: 3rem;
  }
  #sv h1::before {
    width: 120px;
  }
  .bg::after {
    top: 50px;
    height: calc(100% - 50px);
    background: url(img/common/main_bg_sp.png) no-repeat top center / 100% auto;
  }
}
/* archive
-------------------------------------------------------------- */
#newsList {
  margin-bottom: 280px;
  color: #000;
}
#newsList .container {
  max-width: 1050px;
}
#newsList ul {
  margin: 0 -20px 200px;
  gap: 70px 0;
  grid-template-columns: 1fr 1fr 1fr;
}
#newsList li {
  padding: 0 20px;
  border-right: 1px solid var(--color-gray);
  font-size: 1.4rem;
}
#newsList li:nth-of-type(3n) {
  border-right: 0;
}
#newsList li .date {
  font-weight: 700;
}
#newsList li .ttl {
  padding: 30px 0 40px;
}
#newsList .btnMore02 {
  justify-content: flex-end;
}
#newsList .btnMore02 a {
  padding: 12px 20px;
}
#recruitList {
  margin-bottom: 280px;
  color: #000;
}
#recruitList .container {
  max-width: 1050px;
}
#recruitList ul {
  margin-bottom: 200px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 80px 25px;
}
#recruitList li a {
  display: block;
  border-radius: 20px;
  border: 2px solid var(--color-gray);
}
#recruitList li .ttl {
  padding: 30px 15px;
  color: var(--color-blue);
  font-weight: 700;
}
#recruitList li .txt {
  overflow: hidden;
  padding: 0 15px 40px;
  font-size: 1.4rem;
}
#recruitList li .more {
  position: relative;
  display: block;
  padding: 15px 60px;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
  background: var(--color-blue);
  color: var(--color-white);
  text-align: right;
  font-size: 1.4rem;
  line-height: 1;
}
#recruitList li .more::after {
  position: absolute;
  right: 30px;
  margin: auto;
  content: "→";
  transition: all 0.5s ease-in-out;
}
#recruitList li a:hover .more::after {
  right: 10px;
}
@media (max-width: 767px) {
  #newsList {
    margin-bottom: 100px;
  }
  #newsList ul {
    margin: 0 0 50px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  #newsList li {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-gray);
    border-right: none;
    font-size: 1.4rem;
  }
  #newsList li .ttl {
    padding: 20px 0;
  }
  #recruitList {
    margin-bottom: 100px;
  }
  #recruitList ul {
    margin-bottom: 30px;
    gap: 20px;
    grid-template-columns: 1fr;
  }
  #recruitList li a {
    border-radius: 10px;
  }
  #recruitList li .ttl {
    padding: 20px 15px;
  }
  #recruitList li .txt {
    padding: 0 15px 20px;
    font-size: 1.3rem;
  }
  #recruitList li .more {
    padding: 15px 50px;
    border-radius: 0 0 10px 10px;
  }
  #recruitList li .more::after {
    right: 20px;
  }
}
/* single
-------------------------------------------------------------- */
#newsSingle {
  margin-bottom: 280px;
}
#newsSingle article {
  padding: 0 30px;
  border-bottom: 2px solid var(--color-blue);
  color: var(--color-black);
  font-size: 1.5rem;
}
#newsSingle .postTtl {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 80px;
  color: var(--color-blue);
  font-size: 3rem;
  font-weight: 700;
  line-height: 2;
}
#newsSingle .postTtl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: url(img/common/post_ttl_line.png) no-repeat left center;
  content: "";
}
#newsSingle .eyecatch {
  margin-bottom: 30px;
}
#newsSingle .freetxt {
  padding-bottom: 100px;
}
#newsSingle .btnMore a {
  margin: 120px auto 100px;
  padding: 16px 30px;
  border-radius: 25px;
  border: 1px solid var(--color-blue);
  width: 300px;
  font-size: 1.5rem;
}
#recruitSingle {
  margin-bottom: 80px;
}
#recruitSingle article {
  padding: 0 30px;
  border-bottom: 2px solid var(--color-blue);
  color: var(--color-black);
  font-size: 1.5rem;
}
#recruitSingle .postTtl {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 80px;
  color: var(--color-blue);
  font-size: 3rem;
  font-weight: 700;
  line-height: 2;
}
#recruitSingle .postTtl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: url(img/common/post_ttl_line.png) no-repeat left center;
  content: "";
}
#recruitSingle .pr {
  padding-bottom: 60px;
}
#recruitSingle dl {
  border-top: 1px solid var(--color-gray);
}
#recruitSingle dt {
  padding: 30px 0;
  border-bottom: 1px solid var(--color-gray);
  width: 25%;
  font-weight: 700;
}
#recruitSingle dd {
  padding: 30px 0;
  border-bottom: 1px solid var(--color-gray);
  width: 75%;
}
#recruitSingle .btnMore a {
  margin: 120px auto 100px;
  padding: 16px 30px;
  border-radius: 25px;
  border: 1px solid var(--color-blue);
  width: 300px;
  font-size: 1.5rem;
}
#newPost {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 300px;
}
#newPost::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--color-lightBlue);
  content: "";
  z-index: -1;
}
#newPost .postArea {
  justify-content: flex-start;
  gap: 25px;
  margin: auto;
  padding: 40px;
  background: var(--color-white);
  max-width: 1100px;
}
#newPost .postArea article {
  width: calc((100% - 45px) / 4);
}
#newPost .postArea article a {
  display: block;
  border-radius: 20px;
  border: 2px solid var(--color-gray);
}
#newPost .postArea article .ttl {
  padding: 30px 15px;
  color: var(--color-blue);
  font-weight: 700;
  line-height: 1.5;
}
#newPost .postArea article .txt {
  overflow: hidden;
  padding: 0 15px 40px;
  color: #000;
  font-size: 1.4rem;
  line-height: 1.5;
}
#newPost .postArea article .more {
  position: relative;
  display: block;
  padding: 15px 60px;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
  background: var(--color-blue);
  color: var(--color-white);
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
}
#newPost .postArea article .more::after {
  position: absolute;
  right: 30px;
  margin: auto;
  content: "→";
  transition: all 0.5s ease-in-out;
}
#newPost .postArea article a:hover .more::after {
  right: 10px;
}
.freetxt a {
  color: #333;
}
.freetxt figure {
  margin-bottom: 30px;
}
.freetxt p {
  margin-bottom: 30px;
  font-size: 1.5rem;
  line-height: 2;
}
.freetxt blockquote {
  background: #efefef;
  padding: 20px;
}
.freetxt .aligncenter {
  display: block;
  margin: 0 auto;
}
.freetxt .alignleft {
  float: left;
}
.freetxt .alignright {
  float: right;
}
.freetxt ul, .freetxt ol {
  margin: 0 20px;
}
.freetxt ul li {
  list-style: square;
  margin-bottom: 15px;
}
.freetxt ol li {
  list-style: decimal;
  margin-bottom: 15px;
}
.freetxt h2 {
  margin-bottom: 30px;
  color: var(--color-blue);
  font-size: 3rem;
  font-weight: 700;
}
.freetxt h3 {
  padding: 10px 0;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--color-lightBlue2);
  color: var(--color-blue);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
.freetxt table {
  width: 100%;
}
.freetxt table th {
  padding: 10px 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ccc;
}
.freetxt table td {
  padding: 10px 15px;
  font-size: 1.5rem;
  border: 1px solid #ccc;
}
.freetxt .youtube {
  margin-bottom: 20px;
}
.freetxt .youtube iframe {
  width: 100%;
  height: 550px;
}
@media (max-width: 767px) {
  #newsSingle {
    margin-bottom: 100px;
  }
  #newsSingle article {
    padding: 0 5px;
  }
  #newsSingle .postTtl {
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-size: 2rem;
    line-height: 1.7;
  }
  #newsSingle .postTtl::after {
    width: 100%;
    height: 3px;
  }
  #newsSingle .eyecatch {
    margin-bottom: 20px;
  }
  #newsSingle .freetxt {
    padding-bottom: 50px;
  }
  #newsSingle .btnMore a {
    margin: 60px auto 50px;
    width: 80%;
    font-size: 1.4rem;
  }
  #recruitSingle {
    margin-bottom: 0;
  }
  #recruitSingle article {
    padding: 0 5px;
  }
  #recruitSingle .postTtl {
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-size: 2rem;
    line-height: 1.7;
  }
  #recruitSingle .postTtl::after {
    width: 100%;
    height: 3px;
  }
  #recruitSingle .pr {
    padding-bottom: 30px;
  }
  #recruitSingle dt {
    padding: 20px 0;
    width: 28%;
  }
  #recruitSingle dd {
    padding: 20px 0;
    width: 72%;
  }
  #recruitSingle .btnMore a {
    margin: 60px auto 50px;
    width: 80%;
    font-size: 1.4rem;
  }
  #newPost {
    padding-bottom: 30px;
    margin-bottom: 150px;
  }
  #newPost::after {
    height: 70%;
  }
  #newPost .postArea {
    padding: 20px;
    width: 90%;
    gap: 20px;
  }
  #newPost .postArea article {
    width: 100%;
  }
  #newPost .postArea article a {
    border-radius: 10px;
  }
  #newPost .postArea article .ttl {
    padding: 20px 15px;
  }
  #newPost .postArea article .txt {
    padding: 0 15px 20px;
    font-size: 1.3rem;
  }
  #newPost .postArea article .more {
    padding: 15px 50px;
    border-radius: 0 0 10px 10px;
  }
  #newPost .postArea article .more::after {
    right: 20px;
  }
  .freetxt p {
    font-size: 1.4rem;
  }
  .freetxt h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .freetxt h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  .freetxt .youtube iframe {
    height: 200px;
  }
}
/* ページネーション
-------------------------------------------------------------- */
.paging {
  position: relative;
  padding: 0 40px;
}
.paging .next a, .paging .prev a {
  width: 120px!important;
  font-size: 1.4rem;
}
.paging .prev {
  float: left;
}
.paging .prev a {
  padding: 10px 40px 10px 30px!important;
}
.paging .next {
  float: right;
}
.paging .next a {
  padding: 10px 30px 10px 40px!important;
}
.paging .prev.btnMore a::after {
  position: absolute;
  right: auto;
  left: 10px;
  margin: auto;
  content: "←";
}
.pagination {
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  width: 100%;
}
.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
a.page-numbers, .dots, .pagination .current {
  padding: 10px 40px;
  line-height: 1;
  border-right: 1px solid #a0a0a0;
}
a.page-numbers:hover {
  color: var(--color-blue);
}
.dots + .page-numbers {
  border-right: 0;
}
.pagination .current {
  color: var(--color-blue);
  font-weight: 700;
}
a.next, a.prev {
  box-sizing: border-box;
  width: 60px;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 15px;
}
a.next {
  padding: 6px 10px 6px 20px;
  margin-left: 50px;
}
a.prev {
  padding: 6px 20px 6px 10px;
  margin-right: 50px;
}
a.next:hover, a.prev:hover {
  background: var(--color-blue);
  color: var(--color-white);
  opacity: 1;
}
@media (max-width: 767px) {
  .paging {
    padding: 0 20px;
    font-size: 1.4rem;
  }
  .paging .next a, .paging .prev a {
    padding: 5px 10px;
  }
  .pagination {
    font-size: 1.2rem;
    padding: 0 50px;
  }
  .pagination .nav-links {
    gap: 10px 0;
  }
  a.page-numbers, .dots, .pagination .current {
    padding: 5px 20px;
  }
  a.next, a.prev {
    position: absolute;
    width: 40px;
  }
  a.next {
    right: 0;
    padding: 5px 10px 5px 20px;
    margin-left: 0;
  }
  a.prev {
    left: 0;
    padding: 5px 20px 5px 10px;
    margin-right: 0;
  }
}

/* footer
-------------------------------------------------------------- */
footer {
  position: relative;
  padding: 160px 0 50px;
  background: linear-gradient(180deg, #7be9fa 0%, #4eb1ef 100%);
  z-index: 1;
}
footer::before {
  position: absolute;
  top: -105px;
  right: 0;
  font-size: 11.4rem;
  font-weight: 700;
  color: var(--color-lightBlue2);
  line-height: 1;
  content: "L.S.WORKS";
}
footer p {
  padding-bottom: 30px;
  font-size: 1.5rem;
}
footer .copy {
  padding-top: 30px;
  font-size: 1.3rem;
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 50px;
  right: 3%;
  width: 60px;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 767px) {
  footer {
    padding: 60px 0 20px;
  }
  footer::before {
    top: -45px;
    font-size: 5rem;
  }
  footer p {
    padding-bottom: 20px;
    font-size: 1.4rem;
  }
  footer .copy {
    padding-top: 20px;
    font-size: 1.2rem;
  }
}
/* 404
-------------------------------------------------------------- */
#errormsg {
  padding: 100px 0;
}
#errormsg p {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  #errormsg {
    padding: 60px 0 150px;
  }
  #errormsg p {
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: left;
  }
  #errormsg .btnMore {
    text-align: center;
  }
}