@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200&family=Noto+Sans+JP:wght@100&display=swap");
/* CSS Document */
/*============================
body style
============================*/
:root {
  --main-bg-color-white: #d6d6d6;
  --main-color-black: #1a1a1a;
  --sub-color-black: #6e6e6e;
  --sub-color-green-dark1: #037F8C;
  --sub-color-green-dark2: #038C8C;
  --sub-color-green-light: #5EBFBF;
  --sub-color-orange: #BF6341;
}

.icon {
  font-family: "Font Awesome 5 Free";
  color: var(--main-color-black);
  margin-right: 10px;
  font-size: 90%;
}

/*--Bootstrap用--*/
body * {
  box-sizing: border-box;
}

.selector-for-some-widget {
  box-sizing: content-box;
}

body {
  position: relative;
  margin: 0 auto;
  height: 5000px;
  background: var(--main-bg-color-white);
  font-family: "Montserrat", "Noto Sans JP", semplicitapro, sans-serif;
  line-height: 1.6;
}

ul {
  margin-bottom: 0;
}

/*-----LOADING-------*/
.loading {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: var(--main-bg-color-white);
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}
.loading.hide .circle {
  display: none;
}

.loading .circle {
  display: block;
  position: relative;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 8px solid #e0e0e0;
  border-top: 7px solid #ffcccc;
  border-radius: 50px;
  animation: loading 700ms linear 0ms infinite normal both;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*---------/LOADING------------*/
@media screen and (min-width: 820px) {
  .forPC {
    display: block;
  }
}
@media screen and (max-width: 819px) {
  .forPC {
    display: none;
  }
}

@media screen and (min-width: 820px) {
  .forSP {
    display: none;
  }
}
@media screen and (max-width: 819px) {
  .forSP {
    display: block;
  }
}

h1 {
  font-family: "Montserrat", "Noto Sans JP", semplicitapro, sans-serif;
  font-weight: 100;
  color: #ffffff;
}

h2 {
  font-family: "Montserrat", "Noto Sans JP", semplicitapro, sans-serif;
  font-weight: 100;
  color: var(--main-color-black);
  font-size: 45px;
  padding: 20px 0;
  text-align: left;
}

button.officialSite {
  background-color: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  padding: 5px 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 20px auto;
  font-size: 1.2rem;
  display: inline-block;
  transition: 0.5s;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

button.small {
  background-color: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  padding: 5px 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 20px auto;
  font-size: 1rem;
  display: block;
  transition: 0.5s;
}

button:hover {
  background-color: #1a1a1a;
  color: #fff;
  transition: 0.5s;
}

.clickBtn {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 960px;
}

strong {
  background-color: #FFF;
  display: inline-block;
  padding: 5px;
}

.pageTtl {
  padding: 40px 0;
  text-align: center;
  border-bottom: none !important;
  margin-bottom: 0;
}
.pageTtl span {
  width: 50px;
  display: block;
  margin: 0 auto 20px;
}
.pageTtl span img {
  width: 100%;
}

.worksTtl {
  background-color: var(--sub-color-black);
  padding: 1rem 2rem;
  color: var(--main-bg-color-white);
  font-size: 32px;
}

#works {
  padding-bottom: 30px;
}

p,
dd,
dt,
span {
  font-weight: bold;
  color: var(--main-color-black);
  font-size: 16px;
}

main {
  margin-top: 60px;
  background: #f1f1f1;
}
@media screen and (min-width: 820px) {
  main {
    width: 1140px;
    margin: 60px auto 0;
    background: #f1f1f1;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 819px) {
  main {
    width: 100%;
  }
}

img {
  max-width: 100%;
}

.innerbox {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.flex-box-2 {
  display: flex;
  justify-content: space-between;
}

.flex-box-2 div:first-child {
  flex-basis: 70%;
}

.box-mar {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .innerbox {
    width: 100%;
    padding: 0 5%;
  }
  .flex-box-2 {
    display: block;
  }
  .flex-box-2 div:first-child {
    flex-basis: 70%;
  }
}
/*============================
グロナビ
============================*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: var(--main-color-black);
  z-index: 99;
}

.header_inner {
  position: relative;
  padding: 15px;
}

.logo {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0 0 3%;
}
.logo h1 {
  padding-bottom: 0;
}
.logo h1 img {
  height: 60px;
  width: 100%;
}

.title {
  font-size: 2rem;
  font-weight: 400;
}

footer {
  background-color: var(--main-color-black);
  color: var(--main-bg-color-white);
}
footer p {
  color: var(--main-bg-color-white);
  text-align: center;
}

/* header固定のため余白をつける。メニューのCSSには関係ない */
.main {
  margin-top: 60px;
}

/* @media only screen and (max-width: 768px) { */
.nav {
  position: fixed;
  right: -320px;
  /* 右から出てくる */
  top: 0;
  width: 300px;
  /* スマホに収まるサイズ */
  height: 100vh;
  padding-top: 60px;
  background-color: #1a1a1a;
  transition: all 0.6s;
  z-index: 200;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
}

.hamburger {
  position: absolute;
  right: 15px;
  top: 8px;
  width: 40px;
  /* クリックしやすい幅 */
  height: 40px;
  /* クリックしやすい高さ */
  cursor: pointer;
  z-index: 300;
}

.nav_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav_item {
  text-align: center;
  padding: 0 14px;
  margin: 30px auto;
}

.nav_item a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #eee;
  font-size: 200%;
}
@media screen and (max-width: 819px) {
  .nav_item a {
    font-size: 100%;
  }
}

.nav_item .sub a {
  display: block;
  padding: 8px 0 0;
  border-bottom: none;
  text-decoration: none;
  color: #eee;
  font-size: 110%;
}

.nav_item a:hover {
  background-color: none;
}

.hamburger_border {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.6s;
  border-radius: 2px;
}

.hamburger_border_top {
  top: 14px;
}

.hamburger_border_center {
  top: 20px;
}

.hamburger_border_bottom {
  top: 26px;
}

.black_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: var(--main-color-black);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  cursor: pointer;
}

/* 表示された時用のCSS */
.nav-open .nav {
  right: 0;
}

.nav-open .black_bg {
  opacity: 0.8;
  visibility: visible;
}

.nav-open .hamburger_border_top {
  transform: rotate(45deg);
  top: 20px;
}

.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_border_bottom {
  transform: rotate(-45deg);
  top: 20px;
}

/* } */
/* sp */
/* @media only screen and (min-width: 769px) { */
.header_inner {
  max-width: 1140px;
  width: 100%;
  padding: 15px 30px;
  margin-left: auto;
  margin-right: auto;
}

.nav_list {
  text-align: right;
}

.nav_list li {
  text-align: right;
  padding-left: 20px;
}

.nav_list li a {
  color: #fff;
  font-weight: 400;
}

/* } */
#footerNav nav {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  font-size: 0.8rem;
}
@media screen and (min-width: 820px) {
  #footerNav nav {
    margin-left: 3%;
  }
}
#footerNav nav h1 {
  font-size: 60%;
  padding-left: 2rem;
}
#footerNav nav .nav_list {
  display: flex;
}
#footerNav nav .nav_list li {
  text-align: center;
  padding: 0 14px;
}
#footerNav nav .nav_list li a {
  padding: 0;
}
#footerNav nav .nav_list .nav_item {
  margin: 0 auto;
}
#footerNav nav .nav_list .nav_item ul.sub {
  display: flex;
  max-width: 180px;
  flex-wrap: wrap;
  justify-content: center;
}

/* pc */
a {
  display: block;
  transition: 0.5s;
}

a:hover {
  transform: translateY(-5px);
  transition: 0.5s;
  color: inherit;
  text-decoration: none;
}

.turn {
  width: 90%;
  margin: 200px auto;
  border: solid 1px;
  padding: 30px;
}
.turn #_turn {
  width: 952px;
  height: 674px;
  margin: 0 auto;
}
.turn ul {
  text-align: center;
  list-style: none;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
  margin-bottom: 30px;
}
.turn ul li {
  width: 50%;
  float: left;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.turn ul::after {
  content: "";
  display: block;
  clear: both;
}
.turn #prevpage,
.turn #nextpage {
  cursor: pointer;
}

/* nav acordion */
/* END nav acordion */
#topics_list ul {
  display: flex;
  justify-content: center;
}
#topics_list ul li {
  width: 24%;
  max-width: 250px;
}

div.row {
  padding: 5% 0;
}

.sec-topics {
  color: #fff;
  line-height: 2;
  background-color: var(--main-color-black);
  padding: 50px 0;
}
.sec-topics h3 {
  font-size: 16px;
  font-weight: bold;
}
.sec-topics h4 {
  color: #747474;
  background-color: #fff;
  display: inline;
  padding: 0 3px;
  font-size: 12px;
  font-weight: bold;
}
.sec-topics p {
  padding-right: 30px;
}
.sec-topics .txt-small a {
  text-decoration: underline;
  padding: 0 5px;
}
.sec-topics img {
  max-width: 150px !important;
}

.topic-box {
  display: flex;
  justify-content: center;
}
.topic-box .topic-text {
  width: 40%;
}
.topic-box .topic-img img {
  width: 150px !important;
  height: 150px !important;
  margin: 10px;
}

/* Bootstrapの調整 */
.nav {
  justify-content: center;
}

.row {
  justify-content: center;
}

a {
  color: inherit;
}

/* LPスライダー */
#cts-lp {
  /* 矢印のカスタマイズ */
  /* 共通設定 */
  /* next */
  /* prev */
}
#cts-lp .slider-for .slide-item {
  margin: 10px;
}
#cts-lp .slick-list {
  max-height: 300px;
}
#cts-lp .slick-next {
  right: 20px;
}
#cts-lp .slick-prev {
  left: 20px;
  z-index: 1;
}
@media screen and (max-width: 819px) {
  #cts-lp .slide-item {
    max-width: 300px;
  }
}
#cts-lp .slick-arrow {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0;
  width: 20px;
  height: 38px;
  color: transparent;
  z-index: 1;
  transition: opacity 0.5s;
  z-index: 1;
}
#cts-lp .slick-arrow:hover {
  opacity: 0.7;
}
#cts-lp .slick-next::before,
#cts-lp .slick-next::after,
#cts-lp .slick-prev::before,
#cts-lp .slick-prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
#cts-lp .slick-next::after,
#cts-lp .slick-prev::after {
  width: 26px;
  height: 26px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
#cts-lp .slick-next {
  right: 26px;
}
#cts-lp .slick-next::after {
  right: 4px;
  transform: rotate(45deg);
}
#cts-lp .slick-prev {
  left: 26px;
}
#cts-lp .slick-prev::after {
  left: 4px;
  transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  #cts-lp .slick-next::after,
  #cts-lp .slick-prev::after {
    width: 10px;
    height: 10px;
  }
  #cts-lp .slick-next {
    right: 8px;
  }
  #cts-lp .slick-prev {
    left: 8px;
  }
  #cts-lp .slick-next::after {
    right: 2px;
  }
}

/* about.html */
#about {
  /* END .clm-main */
}
#about .ctsAbout {
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 819px) {
  #about .ctsAbout {
    display: block;
    padding-top: 0;
  }
}
#about .clm-lft .pfTxt {
  padding: 5%;
}
#about .clm-lft img {
  width: 100%;
}
#about .clm-lft h3 span {
  font-size: 50%;
  display: block;
  margin-top: 10px;
}
@media screen and (min-width: 820px) {
  #about .clm-lft {
    flex-basis: 25%;
  }
}
#about .clm-main {
  /* background-color: #333333 !important; */
  padding: 0 5% 2%;
  color: var(--main-color-black);
}
#about .clm-main h3 span {
  font-size: 40%;
  padding-left: 20px;
}
@media screen and (min-width: 820px) {
  #about .clm-main {
    flex-basis: 73%;
  }
}
#about .clm-main dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: bold;
}
#about .clm-main dl dt {
  width: 20%;
}
#about .clm-main dl dd {
  width: 80%;
  padding-bottom: 20px;
  padding-left: 5%;
}
#about .clm-main dl dd span {
  font-size: 14px;
  font-weight: bold;
  display: block;
  padding: 5px;
}
#about .clm-main .ctsSK dl dt {
  width: 15%;
  padding-top: 20px;
  text-align: center;
}
@media screen and (max-width: 819px) {
  #about .clm-main .ctsSK dl {
    display: block;
  }
  #about .clm-main .ctsSK dl dd {
    width: 100%;
    padding: 20px 0;
  }
  #about .clm-main .ctsSK dl dd img {
    width: 20%;
  }
  #about .clm-main .ctsSK dl dd img:nth-child(2) {
    width: 60%;
  }
  #about .clm-main .ctsSK dl dt {
    padding-top: 0;
    text-align: left;
  }
}
#about .clm-main .evFigure {
  display: flex;
  justify-content: space-between;
}
#about h3 {
  border-bottom: 1px solid;
  display: block;
  margin-bottom: 2rem;
  font-size: 2rem;
  padding-bottom: 1rem;
}

/* END #about */
#WABIO {
  position: relative;
  /* タブの切替 */
}
#WABIO .W-cts {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (min-width: 820px) {
  #WABIO .W-cts {
    margin-top: 50px;
  }
}
#WABIO .W-cts div img {
  filter: drop-shadow(5px 5px 20px #a3a3a3);
  transition: 0.6s;
}
@media screen and (min-width: 820px) {
  #WABIO .W-cts {
    display: flex;
    justify-content: space-between;
  }
}
#WABIO .W-cts p {
  padding-top: 50px;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 819px) {
  #WABIO .W-cts p {
    padding-bottom: 50px;
  }
}
#WABIO .W-cts div:first-of-type {
  position: relative;
  flex-basis: 40%;
}
#WABIO .W-cts div:first-of-type::before {
  content: "Before";
  position: absolute;
  top: -60px;
  left: 0;
  font-size: 150%;
}
@media screen and (max-width: 819px) {
  #WABIO .W-cts div:first-of-type img {
    padding: 0 8%;
    display: block;
    margin: 0 auto;
  }
}
#WABIO .W-cts div:nth-of-type(2) {
  margin-top: 50px;
  position: relative;
  flex-basis: 50%;
}
#WABIO .W-cts div:nth-of-type(2)::before {
  content: "After";
  position: absolute;
  top: -60px;
  left: 0;
  font-size: 150%;
}
@media screen and (max-width: 819px) {
  #WABIO .W-cts div:nth-of-type(2) img {
    padding: 0;
    display: block;
    margin: 0 auto;
  }
}
#WABIO .W-cts div:nth-of-type(3) {
  position: absolute;
  top: 200px;
  left: 320px;
  z-index: 1;
}
#WABIO .tab-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#WABIO .tab {
  flex-grow: 1;
  padding: 5px;
  list-style: none;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 10px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 22%;
  color: #555;
  border: dashed 2px #c7c7c7;
  box-sizing: border-box;
}
@media screen and (max-width: 819px) {
  #WABIO .tab {
    margin: 1em 10px;
    padding: 0;
  }
}
#WABIO .tab h2 {
  color: #c7c7c7;
  margin-bottom: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 819px) {
  #WABIO .tab h2 {
    font-size: 100%;
    font-weight: bold;
    padding: 15px 0;
  }
}
#WABIO .tab:hover h2 {
  color: #333333;
  transition: all 0.5s;
}
#WABIO .panel-group {
  margin-top: 80px;
}
@media screen and (min-width: 820px) {
  #WABIO .panel-group {
    padding: 0 8%;
  }
}
#WABIO .panel {
  display: none;
}
#WABIO .tab.is-active {
  animation-name: fade;
  animation-duration: 1s;
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 22%;
  color: #555;
  font-size: 16px;
  background: #FFF;
  border: solid 2px #555;
  box-sizing: border-box;
}
@media screen and (max-width: 819px) {
  #WABIO .tab.is-active {
    margin: 1em 10px;
    padding: 0;
  }
}
#WABIO .tab.is-active:before {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #FFF;
  z-index: 2;
}
#WABIO .tab.is-active:after {
  content: "";
  position: absolute;
  bottom: -29px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #555;
  z-index: 1;
}
#WABIO .tab.is-active h2 {
  color: var(--main-color-black);
}
@media screen and (max-width: 819px) {
  #WABIO .tab.is-active h2 {
    background-color: #fff;
  }
}
#WABIO .panel.is-show {
  display: flex;
  animation-name: fade;
  animation-duration: 1s;
}
@media screen and (max-width: 819px) {
  #WABIO .panel.is-show {
    display: block;
  }
}

/* ふわっと出てくるアニメーション */
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#LP {
  /* #LP main */
}
#LP main ul li {
  padding: 2% 2% 0;
  max-width: 25%;
}
@media screen and (max-width: 819px) {
  #LP main ul li {
    max-width: 50%;
  }
}
#LP main ul li div {
  overflow: hidden;
  width: 100%;
}
#LP main ul li p {
  margin-top: 5%;
}
#LP main .listLP {
  display: flex;
  flex-wrap: wrap;
}
#LP main .listLP li {
  width: 49%;
  list-style: none;
  animation: test 0.8s;
}
#LP main .listLP li h4 {
  font-size: 0.8rem;
  padding-top: 0.5rem;
  padding-bottom: 5px;
  font-weight: bold;
}
#LP main .listLP li a::before {
  font-size: 70%;
  font-weight: bold;
  padding: 5px 15px;
  position: relative;
  top: 18px;
  left: 0;
}
#LP main .listLP li.supli a::before {
  content: "supli";
  /*Font Awesome 5 Freeのユニコード*/
  color: #fff;
  background-color: var(--sub-color-green-dark1);
}
#LP main .listLP li.skin a::before {
  content: "skincare";
  /*Font Awesome 5 Freeのユニコード*/
  color: #fff;
  background-color: var(--sub-color-green-dark2);
}
#LP main .listLP li.other a::before {
  content: "other";
  /*Font Awesome 5 Freeのユニコード*/
  color: #fff;
  background-color: var(--sub-color-green-light);
}
#LP main .listLP li:nth-child(even) {
  margin-right: 0;
}
@keyframes test {
  0% {
    transform: scale(0.1);
  }
  100% {
    transform: none;
  }
}
#LP main .btn-small {
  background-color: #959595;
  color: #fff;
  cursor: pointer;
  outline: none;
  padding: 5px 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 20px 1%;
  font-size: 1rem;
  display: block;
  transition: 0.5s;
}
#LP main .btn-small.supli {
  background-color: var(--sub-color-green-dark1);
}
#LP main .btn-small.skin {
  background-color: var(--sub-color-green-dark2);
}
#LP main .btn-small.other {
  background-color: var(--sub-color-green-light);
}

.cts-video {
  background-color: #d1d0d1;
  width: 100%;
  height: 100vh;
  min-height: 400px;
  text-align: center;
  /* 上下中央配置 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cts-video video {
  width: 100%;
  max-width: 400px;
  height: auto;
  border: none;
  left: 0;
  right: 0;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

#ILP h3 {
  font-size: 16px;
  padding-bottom: 1rem;
  font-weight: bold;
  border-bottom: 1px dashed var(--main-color-black);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 820px) {
  #ILP .container {
    /* display: flex; */
    width: 100%;
    max-width: 700px;
  }
  #ILP .container div {
    flex-grow: 1;
    margin: 0 3%;
  }
}

#top {
  /*** 下から登場するアニメーション ***/
  /*** アニメーションさせる要素 ***/
  /*** スクロールで画面に入った場合 ***/
  /*** 各文字のアニメーション遅延時間 ***/
  /*** 装飾用 ***/
}
#top main {
  background-color: inherit;
}
@keyframes updown-anim {
  0% {
    transform: translateY(110%);
    /*表示範囲外から*/
  }
  100% {
    transform: translateY(0);
    /*通常の位置へ*/
  }
}
#top .updown {
  display: flex;
  overflow: hidden;
}
#top .updown span {
  transform: translateY(120%);
  /*下（範囲外）に隠しておく*/
  display: block;
  /*ブロック要素に変更*/
}
#top .updown.active span {
  animation: 0.35s updown-anim linear forwards;
  /*一度だけのアニメーション（終了時点で固定）*/
}
#top .updown span:nth-child(1) {
  animation-delay: 0s;
}
#top .updown span:nth-child(2) {
  animation-delay: 0.05s;
}
#top .updown span:nth-child(3) {
  animation-delay: 0.1s;
}
#top .updown span:nth-child(4) {
  animation-delay: 0.15s;
}
#top .updown span:nth-child(5) {
  animation-delay: 0.2s;
}
#top .updown span:nth-child(6) {
  animation-delay: 0.25s;
}
#top .updown span:nth-child(7) {
  animation-delay: 0.3s;
}
#top .updown span:nth-child(8) {
  animation-delay: 0.35s;
}
#top .updown span:nth-child(9) {
  animation-delay: 0.4s;
}
#top .updown span:nth-child(10) {
  animation-delay: 0.45s;
}
#top .updown span:nth-child(11) {
  animation-delay: 0, 5s;
}
#top .updown span:nth-child(12) {
  animation-delay: 0.55s;
}
#top .updown span:nth-child(13) {
  animation-delay: 0.6s;
}
#top .updown span:nth-child(14) {
  animation-delay: 0.65s;
}
#top .updown span:nth-child(15) {
  animation-delay: 0.7s;
}
#top .updown span:nth-child(16) {
  animation-delay: 0.75s;
}
#top .updown {
  justify-content: center;
}
#top .updown span {
  font-size: inherit;
}

.btnMore {
  background-color: var(--sub-color-green-dark1);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 5px 10px;
  display: inline-block;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}
.btnMore:hover {
  color: #b8b8b8;
}/*# sourceMappingURL=style.css.map */