@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* 20260216 HPリニューアル */
/* ============================================
  base
============================================  */
.front .l-wrapper {
  line-height: 1;
  letter-spacing: 0;
}
.front .l-wrapper h2,
.front .l-wrapper h3,
.front .l-wrapper h4,
.front .l-wrapper h5,
.front .l-wrapper h6,
.front .l-wrapper p,
.front .l-wrapper div,
.front .l-wrapper span,
.front .l-wrapper li,
.front .l-wrapper a {
  color: #333;
  font-family:
    "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Arial, Verdana, sans-serif;
}

/* ============================================
  共通
============================================  */
.l-inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
a.btn_link {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  a.btn_link {
    font-size: 14px;
  }
}
a.btn_link:hover {
  text-decoration: none;
}

.c-link__circle {
  font-size: 16px;
  width: 3.125em;
  height: 3.125em;
  background-color: #12b3cf;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0.9375em;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.c-link__circle:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 160%;
  z-index: 0;
  -webkit-transform: scale(1, 0) skewY(0deg) translate3d(-50%, -50%, 0);
  transform: scale(1, 0) skewY(0deg) translate3d(-50%, -50%, 0);
  background-color: #fff;
}

.c-link__circleBody {
  fill: #fff;
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .c-link:hover .c-link__circle {
    border: 1px solid #12b3cf;
  }
  .c-link__circle:before {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transition: -webkit-transform 0.4s
      cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition:
      transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .c-link__circleBody {
    -webkit-transition: fill 0.6s;
    transition: fill 0.6s;
  }
  .c-link:hover .c-link__circle:before {
    -webkit-transform: scale(1, 1) skewY(-30deg) translate3d(-50%, -50%, 0);
    transform: scale(1, 1) skewY(-30deg) translate3d(-50%, -50%, 0);
  }
  .c-link:hover .c-link__circleBody {
    fill: #12b3cf;
  }
}

/* ============================================
  メインビジュアル
============================================  */
.f-mainvisual a:hover {
  opacity: 1;
}

/* ============================================
  TIS INTEC GROUP
============================================  */
.f-intro {
  background-image: url(../../images/top/renew/infro_bg.jpg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-bottom: 245px;
  margin-top: 150px;
  position: relative;
  background-color: #13c2d3;
}
@media only screen and (max-width: 767px) {
  .f-intro {
    padding-bottom: 125px;
  }
}
.f-intro::before {
  position: absolute;
  bottom: 250px;
  left: 0;
  z-index: 10;
  content: "";
  width: 100%;
  height: calc(100% - 250px + 150px);
  background: linear-gradient(
    to top,
    rgba(2, 122, 139, 0) 0,
    rgb(33, 143, 159) 30%,
    #13c2d3 calc(100% - 250px) 100%
  );
}
@media only screen and (max-width: 767px) {
  .f-intro::before {
    bottom: 125px;
    height: calc(100% - 125px + 150px);
  }
}
.f-intro::after {
  position: absolute;
  bottom: calc(100% + 150px);
  left: 0;
  z-index: 10;
  content: "";
  width: 100%;
  height: var(--after-height, 0);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #13c2d3),
    to(rgba(2, 122, 139, 0))
  );
  background: linear-gradient(to top, #13c2d3 0, rgba(2, 122, 139, 0) 100%);
  -webkit-transform: 0.8s ease;
  transform: 0.8s ease;
}
.f-intro .l-inner {
  padding-top: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 150px;
  position: relative;
  z-index: 20;
}
@media only screen and (max-width: 1200px) {
  .f-intro .l-inner {
    gap: 100px;
  }
}
@media only screen and (max-width: 1000px) {
  .f-intro .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .f-intro .l-inner {
    padding-top: 60px;
  }
}
.f-intro .l-inner ._titlearea {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 362px;
  -webkit-transform: 0.8s ease;
  transform: 0.8s ease;
}
@media only screen and (max-width: 767px) {
  .f-intro .l-inner ._titlearea {
    width: 80%;
    max-width: 362px;
  }
}
.f-intro .l-inner ._contents {
  width: 100%;
  margin-top: 50px;
  -webkit-transform: 0.8s ease;
  transform: 0.8s ease;
}
@media only screen and (max-width: 1000px) {
  .f-intro .l-inner ._contents {
    margin-top: 0;
  }
}
.f-intro .l-inner ._contents ._read {
  color: #fff !important;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .f-intro .l-inner ._contents ._read {
    font-size: 20px;
  }
}
.f-intro .l-inner ._contents ._read span {
  color: #fff !important;
}
.f-intro .l-inner ._contents ._text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .f-intro .l-inner ._contents ._text {
    font-size: 16px;
  }
}

/* ============================================
  サービス一覧
============================================  */
.f-module {
  background-color: #f7f7f7;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .f-module {
    padding: 50px 0;
  }
}
.f-module::after {
  content: "";
  width: 1000px;
  height: 2000px;
  background-image: url(../..//images/top/renew/module_bg.png);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.f-module article {
  position: relative;
  z-index: 10;
  border-top: solid 1px #ccc;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px 60px;
}
@media only screen and (max-width: 767px) {
  .f-module article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 25px 0;
  }
}
.f-module article:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .f-module article:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.f-module article:last-child {
  border-bottom: solid 1px #ccc;
}
.f-module article ._contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .f-module article ._contents {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    width: 100%;
  }
}
.f-module article ._contents ._title {
  font-size: 40px;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .f-module article ._contents ._title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.f-module article ._contents ._text {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .f-module article ._contents ._text {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.f-module article ._contents ._servicelist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .f-module article ._contents ._servicelist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.f-module article ._contents ._servicelist ._item {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  width: calc(50% - 5px);
  height: 60px;
  background-color: #fff;
  border-radius: 10px;
  border: solid 1px #ccc;
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 1000px) {
  .f-module article ._contents ._servicelist ._item {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .f-module article ._contents ._servicelist ._item {
    height: 50px;
    font-size: 14px;
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .f-module article ._contents ._servicelist ._item svg {
    width: 20px;
  }
}
.f-module article ._contents ._btn {
  margin-top: 40px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .f-module article ._contents ._btn {
    margin-top: 20px;
  }
}
.f-module article ._thumb {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
.f-module article ._thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ============================================
  採用情報
============================================  */
.f-recruit {
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  .f-recruit {
    padding: 50px 0;
  }
}
.f-recruit ._area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: solid 2px #12b3cf;
  border-bottom: solid 2px #12b3cf;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 1000px) {
  .f-recruit ._area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.f-recruit ._area ._illust {
  width: 50%;
}
@media only screen and (max-width: 1000px) {
  .f-recruit ._area ._illust {
    width: 100%;
  }
}
.f-recruit ._area ._illust img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.f-recruit ._area ._contents {
  width: 50%;
  padding: 65px 70px;
}
@media only screen and (max-width: 1000px) {
  .f-recruit ._area ._contents {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .f-recruit ._area ._contents {
    padding: 40px 20px;
  }
}
.f-recruit ._area ._title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .f-recruit ._area ._title {
    margin-bottom: 10px;
  }
}
.f-recruit ._area ._title ._sub {
  font-size: 20px;
  margin-left: 25px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .f-recruit ._area ._title ._sub {
    font-size: 14px;
  }
}
.f-recruit ._area ._title ._sub::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: #12b3cf;
  position: absolute;
  top: 50%;
  left: -25px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.f-recruit ._area ._title ._main {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .f-recruit ._area ._title ._main {
    font-size: 30px;
  }
}
.f-recruit ._area ._copy {
  color: #12b3cf;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .f-recruit ._area ._copy {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.f-recruit ._area ._copy span {
  color: #12b3cf;
}
.f-recruit ._area ._btnlist {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px 60px;
}
.f-recruit ._area ._btnlist ._item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  background-color: #12b3cf;
  border: solid 2px #12b3cf;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  min-height: 80px;
  padding: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .f-recruit ._area ._btnlist ._item {
    min-height: 50px;
    padding: 10px;
    font-size: 16px;
    gap: 10px;
  }
}
.f-recruit ._area ._btnlist ._item svg {
  fill: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .f-recruit ._area ._btnlist ._item svg {
    width: 30px;
  }
}
.f-recruit ._area ._btnlist ._item:hover {
  color: #12b3cf;
  background-color: #fff;
}
.f-recruit ._area ._btnlist ._item:hover svg {
  fill: #12b3cf;
}

/* ============================================
  ニュース&トピックス
============================================  */
.f-newstopics {
  padding-top: 115px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .f-newstopics {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.f-newstopics::after {
  content: "";
  width: 480px;
  height: 1080px;
  background-image: url(../..//images/top/renew/news_bg.png);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.f-newstopics .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px 85px;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 1100px) {
  .f-newstopics .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.f-newstopics ._titlearea {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.f-newstopics ._titlearea ._title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.f-newstopics ._titlearea ._title ._sub {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  padding-left: 25px;
}
@media only screen and (max-width: 767px) {
  .f-newstopics ._titlearea ._title ._sub {
    font-size: 14px;
  }
}
.f-newstopics ._titlearea ._title ._sub::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: #12b3cf;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.f-newstopics ._titlearea ._title ._main {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .f-newstopics ._titlearea ._title ._main {
    font-size: 30px;
  }
}
.f-newstopics ._titlearea ._title ._main span {
  font-size: 30px;
}
.f-newstopics ._list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-top: solid 1px #ddd;
}
.f-newstopics ._list ._item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 40px;
  text-decoration: none;
  padding: 30px 20px;
  border-bottom: solid 1px #ddd;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .f-newstopics ._list ._item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 15px 10px;
    gap: 15px;
  }
}
.f-newstopics ._list ._item:hover {
  background-color: #12b3cf;
  padding: 30px 10px 30px 30px;
}
.f-newstopics ._list ._item:hover ._date {
  color: #fff !important;
}
.f-newstopics ._list ._item:hover ._title {
  color: #fff !important;
}
.f-newstopics ._list ._item ._title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .f-newstopics ._list ._item ._title {
    width: 100%;
    font-size: 16px;
  }
}
.f-newstopics ._list ._item ._datearea {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.f-newstopics ._list ._item ._datearea ._category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  width: 90px;
  height: 30px;
  border-radius: 9999px;
  background-color: #eee;
}
.f-newstopics ._list ._item ._datearea ._category.news_service {
  background-color: #d3f0f4;
}
.f-newstopics ._list ._item ._datearea ._date {
  color: #666;
  font-size: 13px;
  font-weight: 500;
}
.f-newstopics ._btn {
  margin-top: 40px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .f-newstopics ._btn {
    margin-top: 0;
  }
}

/* ============================================
  PC／SPのみ表示
============================================  */
@media only screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

/* ============================================
  inline-block
============================================  */
.u-inlineblock {
  display: inline-block;
}

/* ============================================
  font
============================================  */
.u-bold {
  font-weight: bold !important;
}

.u-normal {
  font-weight: normal !important;
}

.u-lighter {
  font-weight: 200 !important;
}

.u-left {
  text-align: left !important;
}

.u-right {
  text-align: right !important;
}

.u-center {
  text-align: center !important;
}

.u-cap {
  font-size: 15px;
}

.u-highlight {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgb(255, 255, 65); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

/* ============================================
  Scroll Animation
============================================  */
/* fadeUp
------------------------- */
.a-fadeUp {
  opacity: 0;
}
.a-fadeUp.is-active {
  -webkit-animation-name: fade-up;
  animation-name: fade-up;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fade-up {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/* fadeLeft
------------------------- */
.a-fadeLeft {
  opacity: 0;
}
.a-fadeLeft.is-active {
  -webkit-animation-name: fade-left;
  animation-name: fade-left;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /* animation-delay: .0s; */
}

@-webkit-keyframes fade-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/* fadeRight
------------------------- */
.a-fadeRight {
  opacity: 0;
}
.a-fadeRight.is-active {
  -webkit-animation-name: fade-right;
  animation-name: fade-right;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /* animation-delay: .0s; */
}

@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
/* curtain
------------------------- */
.a-curtain {
  overflow: hidden;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.a-curtain::after {
  background-color: #13c2d3;
  content: "";
  display: block;
  width: 0;
  top: 0;
  position: absolute;
  left: 0;
  height: 100%;
  z-index: 2;
  -webkit-transition:
    left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s,
    width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s,
    width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.a-curtain.is-active::after {
  left: 100%;
  width: 100%;
}
.a-curtain > div,
.a-curtain > img {
  opacity: 0;
  -webkit-transition: opacity 0s 0.4s;
  transition: opacity 0s 0.4s;
}
.a-curtain.is-active > div,
.a-curtain.is-active > img {
  opacity: 1;
}

/* scale
------------------------- */
.a-scale img {
  opacity: 0;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.a-scale.is-active img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
} /*# sourceMappingURL=style.css.map */
