@charset "utf-8";

/* ==========================================================================
Foundation [ reset / base ]
========================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

:root {
  --paddingSection: 60px;
  --paddingLR: 20px;
  --teryco: #009684;
  --teryco-orange: #F3944A;
  --teryco-light: #EAF5EF;
  --teryco-dark: #176C54;
  --teryco-green: #87BB57;
  --teryco-text: #222;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 64px;
    --paddingSection: 40px;
    --border_radius: 10px;
  }
}

html,
body {
  line-height: 1.5;
  background-color: #fff;
  font-size: 14px;
  font-family: "Noto Sans JP","游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
}
body {
  padding-top: 68px;
  position: relative;
  padding-bottom: 50px;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
select {
  font-size: 12px;
  background-color: #fff;
  height: 26px;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

a img:hover {
  opacity: .75;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

a:hover, a:active, a:focus {
  text-decoration: inherit;
}

a:hover {
  opacity: 1.0;
}

a[href]:hover {
  opacity: .8;
}

a {
  text-decoration: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* skip */
.skip {
  width: 1px;
  color: #000000;
  font-size: 0.1%;
  line-height: 0.1;
  background-color: #FFFFFF;
  position: absolute;
  left: -3000px;
  z-index: 30000;
}
a.skip {
  background-color: #FFFFFF;
  /* 変更しない */
  text-align: center;
  /* 変更しない */
  padding: 2px 0;
  /* 変更しない */
  top: auto;
  /* 変更しない */
}
a.skip:active {
  display: block;
  width: 99.99%;
  /* 変更しない */
  font-size: 100%;
  /* 変更しない */
  line-height: 1.6;
  /* 変更しない */
  top: 0;
  /* 変更しない */
  left: 0;
  /* 変更しない */
}
a.skip:focus {
  display: block;
  width: 99.99%;
  /* 変更しない */
  font-size: 100%;
  /* 変更しない */
  line-height: 1.6;
  /* 変更しない */
  top: 0;
  /* 変更しない */
  left: 0;
  /* 変更しない */
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

/* Header
---------------------------------------------------------------*/
#header {
  width: 100%;
  height: 68px;
  position: fixed;
  left: 0;
  top: 0px;
  z-index: 100;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header-logo {
  padding-left: 20px;
  position: relative;
}

.l-header-logo .logo {
  width: 150px;
}

.l-header-btn {
  display: none;
}

/*hamburger menu*/
.menu {
  display: block;
  position: absolute;
  width: 50px;
  z-index: 30;
  height: 60px;
  top: 0px;
  right: 0;
  background: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
.menu span {
  position: absolute;
  left: 15px;
  width: 25px;
  height: 3px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: var(--teryco);
}
.menu span:nth-of-type(1) {
  top: 22px;
}
.menu span:nth-of-type(2) {
  top: 30px;
}
.menu span:nth-of-type(3) {
  bottom: 19px;
}
.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(3px) rotate(-45deg);
  top: 26px;
}
.menu.active span:nth-of-type(2) {
  opacity: 0;
}
.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-21px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  bottom: 18px;
}
.menu.is-show span {
  background-color: #001489;
}

/*nav*/
.l-header-nav {
  display: none;
  position: fixed;
  width: 100%;
  height: calc(100% - 68px);
  background-color: #fff;
  z-index: 21;
  right: 0;
  top: 68px;
  overflow-y: auto;
  padding: 2px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header-nav.active {
  display: block;
}

.l-header-menu__head > li {
  width: 92.5%;
  margin: 0 auto;
  border-bottom: 1px dashed var(--teryco);
}

.l-header-menu__head > li.l-header-menu__items.sp-menu {
  border-bottom: none;
}

.l-header-menu__head > li > a {
  display: block;
  padding: 20px;
  color: #073C33;
  font-weight: 700;
  background: url(../images/lp/ico-arw-green02.svg) no-repeat right center;
} 

.l-header-tell {
  text-align: center;
  margin: 20px 0;
}

.l-header-tell a {
  font-size: 2rem;
  font-weight: 700;
  background: url(../images/lp/ico-tell.svg) no-repeat left center;
  background-size: 27px;
  padding-left: 34px;
} 

.l-header-tell span {
  display: block;
  font-size: 0.85714285rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.l-header-btn__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.l-header-btn__list li {
  width: 100%;
}

.l-header-btn__list a {
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 200px;
  padding: 12px 26px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 auto;
  width: 80%;
  max-width: 320px;
}

.l-header-btn__list .l-header-btn__list__download a {
  background-color: var(--teryco);
}

.l-header-btn__list .l-header-btn__list__shindan a {
  background-color: var(--teryco-orange);
}

/* Main
---------------------------------------------------------------*/
.l-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Footer
---------------------------------------------------------------*/
#footer {
  position: relative;
  background-color: #fff;
  padding: 22px 0 0;
}

.l-footer-inner {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
}

.l-footer-logo {
  width: 190px;
  margin-bottom: 15px;
}

.l-footer-logo {
  width: 190px;
  margin-bottom: 15px;
}

.l-footer address {
  font-size: 0.875rem;
  line-height: 1.4;
}

.l-footer .com-name ,
.l-footer .com-tell {
  font-size: 0.875rem;
  line-height: 1.4;
}

.l-footer-nav {
  display: none;
}

.l-footer-top {
  position: fixed;
  z-index: 10;
  right: 10px;
  bottom: 40px;
  width: 60px;
  height: 60px;
}

.copyright {
  text-align: center;
  background-color: #0B2F28;
  padding: 10px 0;
  margin-top: 20px;
}

.copyright p {
  color: #fff;
  font-size: 0.750rem;
  font-weight: 700;
}

.sp-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 2%;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
}

.sp-banner a {
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 200px;
  padding: 12px 12px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 auto;
  width: 49%;
  font-size: 0.857142857rem ;
  max-width: 320px;
}

.sp-banner a.sp-banner01 {
  background-color: var(--teryco);
}

.sp-banner a.sp-banner02 {
  background-color: var(--teryco-orange);
}


/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */
/* =========================
  メインビジュアル
========================= */
.mv {
  background: url(../images/lp/mv-bg.webp) no-repeat 58% 0%;
  background-size: cover;
  padding: 20px 0 0;
}

.mv-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.mv-copy {
  max-width: 570px;
  padding: 0 15px;
}

.mv-copy h2 {
  font-size: 1.714285714rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 34px;
}

.mv-copy h2 span {
  color: var(--teryco);
  display: block;
  font-size: 2rem;
  line-height: 1.3;
}

.mv-service-box {
  border: 1px solid #B8D3C8;
  background-image: linear-gradient(113deg, #fbfdfb, #f0f8f3 49%, #fff9f2);
  padding: 20px 15px 10px;
  position: relative;
  margin-bottom: 13px;
}

.mv-service-label {
  color: #fff;
  font-size: 1rem;
  width: 240px;
  height: 30px;
  line-height: 30px;
  border-radius: 200px;
  position: absolute;
  top: -20px;
  left: 50%;
  margin-left: -120px;
  text-align: center;
  font-weight: 700;
  background-color: var(--teryco);
}

.service-types {
  display: flex;
  gap: 25px;
}

.service-types li {
  width: 30%;
  background-color: #fff;
  border: 1px solid #B8D3C8;
  border-radius: 5px;
  padding: 7px 9px 4px;
  position: relative;
  display: block;
  text-align: center;
}

.service-types li:after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  margin-top: -6px;
  width: 13px;
  height: 13px;
  background: url(../images/lp/and.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.service-types li:last-child:after {
  display: none;
}

.service-types li img {
  width: 45px;
  margin-bottom: 3px;
}

.service-types li span {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-types li span b {
  font-size: 1.25rem;
  color: var(--teryco);
  font-weight: 700;
  display: block;
  text-align: center;
}

.mv-visual {
  max-width: 677px;
  padding: 0 5px;
  box-sizing: border-box;
}

.mv-visual img {
  position: relative;
}

/* =========================
  資料請求フォーム
========================= */
.mv-form {
  width: 92%;
  margin: 20px auto;
  padding: 20px 14px 24px;
  border: 2px solid #B8D3C8;
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-sizing: border-box;
}

.mv-form-close {
  position: absolute;
  right: -12px;
  top: -12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  background: url(../images/lp/form-close.svg) no-repeat center center;
  background-size: 100%;
}

.mv-form h3 {
  text-align: center;
  color: var(--teryco-dark);
  font-size: 1.25rem;
  font-weight: 800;
}

.mv-form-lead {
  text-align: center;
  font-size: 0.875rem;
  margin: 6px 0 12px;
}

.mv-form input, .mv-form select {
  width: 100%;
  height: 34px;
  border: 1px solid #B8D3C8;
  padding: 0 10px;
  margin-bottom: 7px;
  background: #fff;
  font-family: inherit;
  border-radius: 3px;
}

.mv-form select {
  appearance: none;
  background: url(../images/lp/section-arw.svg) no-repeat 95% 50%;
  background-size: 12px;
}

.mv-form .form-name {
  display: flex;
  gap: 10px;
}

.privacy-check {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
}

.privacy-check input {
  width: auto;
  height: auto;
  margin: 0;
}

.privacy-text {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 9px 0 12px;
  font-weight: 500;
}

.privacy-text a {
  color: var(--teryco-dark);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: url(../images/lp/ico-download.svg) no-repeat 87% 50%;
  background-size: 18px;
  background-color: var(--teryco-dark);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
}

.mv-subimages {
  position: relative;
  width: 100%;
  margin-top: 22px;
  padding-bottom: 28px;
  z-index: 1;
}

.mv-subimages:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  background-color: var(--teryco);
  z-index: -1;
}

.mv-subimages .slick-dots {
  margin-top: 10px;
}

.mv-subimages .slick-slide {
  position: relative;
  z-index: 1;
  margin: 0 10px;
}

.mv-subimages li img {
  border-radius: 10px;
  border: 2px solid #fff;
}

/* =========================
  悩み
========================= */
.c-heading {
  text-align: center;
  margin-bottom: 25px;
}

.c-heading h2 {
  font-size: 1.714285714rem;
  line-height: 1.3;
  font-weight: 700;
}

.nayami .c-heading p {
  text-align: center;
  color: var(--teryco-orange);
  font-weight: 700;
  font-size: 0.928571429rem;
  letter-spacing: 0px;
  margin-bottom: 5px;
}

.nayami .c-center {
  padding-bottom: 70px;
  padding-top: 20px;
}

.nayami-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nayami-list li {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  position: relative;
}

.nayami-list li:after {
  content: "";
  position: absolute;
  right: -43px;
  bottom: -43px;
  width: 88px;
  height: 88px;
  background-color: #EAF5EF;
  border-radius: 100%;
}

.nayami-list li img {
  width: 100%;
  height: px;
  object-fit: cover;
}

.nayami-list li div {
  padding: 18px 20px 22px;
}

.nayami-list h3 {
  font-size: 1.285714286rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.nayami-list p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6C827C;
}

/* =========================
  solution
========================= */

.solution {
  background-color: var(--teryco);
  text-align: center;
  color: #fff;
}

.solution .c-center {
  padding-top: 56px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.solution-bubble {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 12px 10px;
  width: 300px;
  border: 2px solid #009684;
  border-radius: 50px;
  background-color: #ffffff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--teryco);
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
}

.solution-bubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #009684 transparent transparent;
  translate: -50% 100%;
}

.solution-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 13.5px 7.8px 0 7.8px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

.solution-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0px;
}

.solution h2 {
  font-size: 1.428571429rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 10px 0 20px;
}

.solution .service-types {
  margin: 0 auto 20px;
  justify-content: center;
}

.solution .service-types li span {
  color: #333;
}

.solution .service-types li:after {;
  background: url(../images/lp/and-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.solution-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.solution-btns a {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 12px;
  width: 320px;
  border-radius: 200px;
  box-sizing: border-box;
}

.solution-btns a.c-btn01 {
  background: url(../images/lp/ico-download.svg) no-repeat 90% 50%;
  background-size: 21px;
  border: 2px solid #fff;
}

.solution-btns a.c-btn02 {
  border: 2px solid var(--teryco-orange);
  background: url(../images/lp/ico-shindan.svg) no-repeat 90% 50%;
  background-size: 28px;
  background-color: var(--teryco-orange);
}

/* =========================
  reason
========================= */

.reason {
  background: url(../images/lp/bg-reason.webp) no-repeat top center #fff;
  background-size: 100%;
}
.reason h2 {
  display: inline-block;
  position: relative;
}

.reason h2 .txt01 {
  position: absolute;
  left: 18px;
  top: -13px;
  letter-spacing: 5px;
  font-size: 1.142857143rem;
  color: var(--teryco);
}

.reason h2 .txt02 {
  font-size: 1.714285714rem;
}

.reason-item {
  background-color: #EAF5EF;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 10px;
  display: block;
}

.reason-item:last-child {
  margin-bottom: 0;
}

.reason-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-transition: -webkit-transform .3s cubic-bezier(0.5, 1.71, 0.48, 0.61);
  transition: -webkit-transform .3s cubic-bezier(0.5, 1.71, 0.48, 0.61);
  transition: transform .3s cubic-bezier(0.5, 1.71, 0.48, 0.61);
  transition: transform .3s cubic-bezier(0.5, 1.71, 0.48, 0.61), -webkit-transform .3s cubic-bezier(0.5, 1.71, 0.48, 0.61);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  will-change: transform;
}

.reason-img.trigger img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.reason-img {
  width: 100%;
}

.reason-body {
  width: 100%;
  margin-top: 15px;
  position: relative;
}

.reason-num {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 4.625rem;
  font-weight: 900;
  color: #009684;
  line-height: 1;
  opacity: 0.1;
}

.reason-cat {
  margin-bottom: 7px;
  color: #fff;
}

.reason-cat span {
  background: var(--teryco);
  font-size: 1rem;
  padding: 6px 22px;
  font-weight: 700;
  border-radius: 100px;
  display: inline-block;
}

.reason-body h3 {
  font-size: 1.714285714rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 7px 0 3px;
  letter-spacing: 1px;
}

.reason-body .txt16 {
  margin-bottom: 14px;
  font-weight: 700;
}

.reason-body-list {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px;
}

.reason-body-list li {
  padding-left: 15px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}

.reason-body-list li + li {
  margin-top: 7px;
}

.reason-body-list li:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: var(--teryco-orange);
}

.reason-body a {
  width: 140px;
  height: 38px;
  background: var(--teryco);
  border-radius: 6px;
  display: inline-block;
  text-align: center;
  padding: 8px 19px;
  box-shadow: 4px 4px 0 rgba(0, 150, 132, 0.3);
}

.reason-body a span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  padding-right: 17px;
  background: url(../images/lp/ico-arw-reason.svg) no-repeat right center;
  background-size: 10px auto;
}

/* =========================
  reason
========================= */

.service-area {
  background: url(../images/lp/bg-service.webp) no-repeat top center,
  url(../images/lp/bg-service02.webp) no-repeat bottom center;
  background-size: auto;
  background-color: var(--teryco);
}

.service-area-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 1.25%;
  justify-content: space-between;
  margin-bottom: 160px;
}

.service-area-head a {
  background: url(../images/lp/ico-arw-btm.svg) no-repeat 95% 50%;
  background-size: 14px;
  background-color: #004A41;
  border-radius: 200px;
  width: 32.5%;
  padding: 8px 19px;
  border: 2px solid #fff;
  font-size: 0.928571429rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.service-box {
  background-color: #fff;
  border-radius: 20px;
  border: 4px solid #EAF5EF;
  padding: 20px 15px 60px;
}

.service-box + .service-box {
  margin-top: 50px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 40px;
}

.service-grid > li {
  background-color: #F7F7F7;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

#ttl02 {
  position: relative;
}

#ttl02:after {
  content: '';
  position: absolute;
  left: 50%;
  top: -151px;
  margin-left: -77px;
  width: 154px;
  height: 147px;
  background: url(../images/lp/caracter.webp);
  background-repeat: no-repeat;
  background-size: 100%;
}

.service-title {
  text-align: center;
  margin-bottom: 14px;
  padding-top: 40px;
  position: relative;
}

.service-title h2 {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  color: var(--teryco);
}

.service-title .din-bi {
  position: absolute;
  left: 50%;
  top: -7px;
  z-index: 0;
  width: 80px;
  height: 74px;
  background: url(../images/lp/service-din-bi.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translateX(-50%);
}

.service-title .din-dx {
  position: absolute;
  left: 50%;
  top: -7px;
  z-index: 0;
  width: 114px;
  height: 76px;
  background: url(../images/lp/service-din-dx.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translateX(-50%);
}

.service-title .din-bpo {
  position: absolute;
  left: 50%;
  top: -7px;
  z-index: 0;
  width: 176px;
  height: 92px;
  background: url(../images/lp/service-din-bpo.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translateX(-50%);
}

.service-box h3 {
  text-align: center;
  margin: 15px 0 32px;
  font-weight: 700;
  font-size: 1.142857143rem ;
}

.service-grid li .inner {
  padding: 15px;
}

.service-grid li .inner h4 {
  color: var(--teryco);
  font-weight: 700;
  font-size: 1.142857143rem;
  margin-bottom: 12px;
}

.service-grid-list li {
  padding-left: 12px;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
}

.service-grid-list li:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: var(--teryco-orange);
}

.service-grid-list li + li {
  margin-top: 9px;
}

/* =========================
  profile
========================= */

.profile {
  padding: 40px 0;
}

.profile .c-heading {
  margin-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.profile .c-heading h2 {
  color: #87BB57;
}

.profile .c-heading p {
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 15px;
}

.profile-list {
  margin-bottom: 10px!important;
  padding-bottom: 20px;
}

.profile-list .slick-slide {
  margin: 0 10px;
}

.profile-card .inner {
 padding: 15px 22px;
 border-radius: 20px;
 border: 2px solid #87BB57;
 display: block;
 background: url(../images/lp/ico-arw-green.svg) no-repeat 97% 50%;
 background-size: 22px auto;
}

.profile-card img {
  width: 44.3%;
  max-width: 280px;
  margin: 0 auto 12px;
  display: block;
}

.profile-card h3 {
  font-weight: 700;
  color: #87BB57;
  margin-bottom: 10px;
}

.profile-card h3 span {
  display: block;
  margin-bottom: 3px;
  color: #333;
}

.profile-card p {
  font-size: 1rem;
  font-weight: 700;
}

.profile-click {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.profile-click span {
  display: inline-block;
  padding-left: 29px;
  padding-top: 4px;
  padding-bottom: 4px;
  background: url(../images/lp/ico-click.svg) no-repeat left center;
  background-size: 20px auto;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li,
.slick-dots li button:before,
.slick-dots li button {
  width: 40px;
  height: 4px;
}

/*モーダル*/
.profile-modal { 
  display: none; 
  position: fixed; 
  inset: 0; 
  z-index: 1000; 
  align-items: center; 
  justify-content: center; 
}

.profile-modal.is-open { 
  display: flex; 
}

.profile-modal-overlay { 
  position: absolute; 
  inset: 0; 
  background: rgba(0,0,0,.62); 
}

.profile-modal-content { 
  position: relative; 
  z-index: 2; 
  width: 86%; 
  min-height: 420px;
  max-height: 70%;
  overflow-y: auto;
  display: flex; 
  gap: 3%; 
  padding: 20px 15px 20px; 
  background:#fff; 
  border-radius: 20px; 
  box-shadow: 0 20px 40px rgba(0,0,0,.2); 
  box-sizing: border-box;
}

.profile-modal-close { 
  position: absolute;
  top: 20px;
  right: 10px;
  width: 30px;
  border: 0;
  background: transparent; 
  cursor: pointer; 
}

.profile-modal-img { 
  width: 30%; 
}

.profile-modal-img img { 
  width: 100%; 
  border-radius: 12px; 
}

.profile-modal-body { 
  width: 67%;
  margin-left: auto;
  padding-top: 6px; 
}

.profile-modal-company { 
  font-weight: 700; 
  font-size:  0.857142857rem;
}

.profile-modal-role { 
  color: var(--teryco); 
  font-weight: 800; 
  font-size: 0.857142857rem;
}

.profile-modal-name { 
  font-size: 1.285714286rem; 
  font-weight: 800; 
  margin: 3px 0 15px; 
}

.profile-modal-copy { 
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 800;
  margin-bottom: 10px;
}

.profile-modal-text { 
  line-height: 1.65;
  font-size: 1rem;
  transform: translateX(-33%);
  width: calc(100% - -50%);
}

/* =========================
  phase
========================= */

.flow-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background-image: linear-gradient(113deg, #fbfdfb, #f0f8f3 49%, #fff9f2);
  border: 2px solid #009684;
  border-radius: 20px;
  position: relative;
}

.flow-heading {
  position: absolute;
  left: 5%;
  top: -50px;
  width: 90%;
}

.flow-heading h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 10px;
  border: 2px solid #009684;
  border-radius: 10px;
  background-color: #ffffff;
  text-align: center;
  font-size: 1.142857143rem;
  font-weight: 700;
  line-height: 1.5;
  color: #009684;
}

.flow-heading h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #009684 transparent transparent;
  translate: -50% 100%;
}

.flow-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

.flow-wrap-inner {
  padding: 50px 20px 101%;
  background: url(../images/lp/teriyo-flow.svg) no-repeat 50% 98%;
  background-size: 86%;
}

.flow-item {
  width: 100%;
  min-height: 26px;
  background: #fff url(../images/top/ico-cloud.svg) no-repeat center / 95% 95%;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 74, 65, .10);
  box-sizing: border-box;
  overflow: hidden;
  padding-bottom: 17px;
}

.flow-item + .flow-item {
  margin-top: 30px;
}

.flow-item .head {
  padding: 10px 10px;
  background-color: var(--teryco);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow-item .head span.roboto {
  width: 74px;
  height: 52px;
  color: var(--teryco);
  font-weight: 700;
  font-size: 1.875rem;
  display: inline-block;
  background: url(../images/lp/ico-cloud.svg) no-repeat left center;
  background-size: 100%;
  padding-top: 10px;
  text-align: center;
  box-sizing: border-box;
}

.flow-item .head h3 {
  font-size: 1.571428571rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.flow-item .head h3 span {
  display: block;
  font-size: 1.142857143rem;
  font-weight: 700;
  line-height: 1.3;
}

.flow-item p {
  width: auto;
  max-width: 300px;
  text-align: center;
  height: 38px;
  line-height: 38px;
  background-color: var(--teryco-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.142857143rem;
  margin: 10px 10px 8px 10px;
  border-radius: 120px;
}

.flow-item ul {
  margin: 0 10px 0 10px;
}

.flow-item ul li {
  line-height: 1.6;
}

/* =========================
  比較
========================= */

.comparison-table colgroup:nth-child(2) {
  border: 6px solid var(--teryco);
  background-color: #F1F8F4;
}

.comparison-table {
  width: 185vw;
  background: #fff;
  text-align: center;
}

.comparison-table th, .comparison-table td {
  padding: 10px 10px;
  border: 1px solid #CCCCCC;
  font-weight: 700;
}

.comparison-table thead th {
  background: #EAF5EF;
  font-weight: 700;
  font-size: 1rem;
  min-width: 140px;
  vertical-align: middle;
}

.comparison-table thead th.main-th {
  background-color: var(--teryco);
}

.comparison-table thead th.main-th span {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.comparison-table thead th.main-th p {
  display: block;
  color: #fff;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
}

.comparison-table td img {
  width: 20px;
}

.comparison-table tbody th {
  background-color: #FFFAF3;
  text-align: center;
  font-weight: 700;
  vertical-align: middle;
  width: 140px;
}

.comparison-table tbody td p {
  margin-top: 5px;
}

.comparison-table tbody td.main-td p {
  color: var(--teryco);
}


/* =========================
  case
========================= */

.case { 
  background: #edf9f7 url(../images/lp/bg-case.webp) repeat; 
}

.case .c-heading span { 
  display: block;
  color: var(--teryco-dark);
  font-size: 1rem;
  font-weight: 700;
}

.case-slider { 
  margin: 0 -12px; 
}

.case-slider .slick-slide {
  margin: 0 15px; 
}

.case-slider article { 
  border-radius: 30px; 
  background: #fff; 
  overflow: hidden; 
}

.case-slider article > img { 
  width: 100%; 
  height: 240px; 
  object-fit: cover; 
}

.case-slider article div { 
  padding: 18px 20px 22px; 
}

.case-slider article p.case-slider-head { 
  color: #073C33; 
  font-size: 1.125rem;
  font-weight: 700; 
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}

.case-slider article p.case-slider-head span { 
  margin-left: auto;
  background-color: var(--teryco);
  border-radius: 100px;
  text-align: center;
  color: #fff;
  font-weight: 700px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  display: inline-block;
}

.case-slider article h3 { 
  margin: 5px 0 16px; 
  font-size: 1.125rem;
  color: #073C33; 
  line-height: 1.5; 
  font-weight: 700; 
}

.case-slider article p.txt14 {
  color: #073C33;
  font-size: 0.875rem;
  font-weight: 500;
}

.case-slider .slick-prev,
.case-slider .slick-next { 
  width: 44px; 
  height: 44px; 
  z-index: 3; 
}

.case-slider .slick-prev { 
  left: -10px; 
  background: url(../images/lp/case-prev.svg) no-repeat center/contain; 
}

.case-slider .slick-next { 
  right: -10px; 
  background: url(../images/lp/case-next.svg) no-repeat center/contain; 
}

.case-slider .slick-prev:before,
.case-slider .slick-next:before { 
  display: none; 
}

/* =========================
  faq
========================= */

.faq {
  padding: 60px 0;
  background-image: linear-gradient(#ffffff, #f5faf7);
}

.reason #ttl01 {
  padding-top: 30px;
  margin-top: -30px;
}

.faq #ttl05 {
  padding-top: 20px;
  margin-top: -20px;
}

.faq .c-heading {
  margin-bottom: 30px;
}

.faq .c-heading span { 
  display: block;
  color: var(--teryco-dark);
  font-size: 1rem;
  font-weight: 700;
}

.faq-list {
  max-width: 92.5%;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #D9E7E1;
  border-radius: 15px;
  background: #fff;
  margin-bottom: 14px;
}

.faq-list .question {
  width: 100%;
  display: flex;
  gap: 12px;
  padding: 15px 40px 15px 15px;
  border: 0;
  text-align: left;
  border-radius: 15px;
  background: inherit;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
}

.faq-list .question span {
  display: inline-flex;
  min-width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--teryco);
  color: #fff;
  font-weight: 800;
}

.faq-list .question:after {
  content: "+";
  position: absolute;
  right: 10px;
  color: var(--teryco-dark);
  font-size: 1.125rem;
  font-weight: 800;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 100px;
  background-color: #EAF5EF;
  text-align: center;
  transition: .3s;
}

.faq-list .question.is-open:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.answer {
  padding: 0 20px 20px 20px;
}

.answer p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6C827C;
}

/* =========================
  CTA
========================= */
.bottom-cta {
  background-color: #004A41;
}

.bottom-cta .c-center {
  padding-top: 30px;
  padding-left: 0;
  padding-right: 0;
}

.campaign-label {
  display: block;
  width: 300px;
  height: 42px;
  line-height: 37px;
  font-size: 1.285714286rem;
  box-sizing: border-box;
  border: 2px solid #fff;
  background-color: var(--teryco-orange);
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-radius: 200px;
  margin: 0px auto 15px;
}

.bottom-cta .c-heading h2 {
  color: #fff;
  font-size: 1.571428571rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.check-txt {
  text-align: center;
  margin-bottom: 17px;
}

.check-txt span {
  display: inline-block;
  padding-left: 30px;
  background: url(../images/lp/ico-check.svg) no-repeat left center;
  background-size: 20px;
  color: #fff;
  font-weight: 700;
}

.bottom-cta .txt14 {
  color: #D6E7E1;
  font-weight: 500;
  text-align: left;
}

.timerex-inner {
  width: 100%;
  margin: 20px auto 0;
  border-radius: 20px;
  background-color: #fff;
  padding: 20px 15px 15px;
  box-sizing: border-box;
}

/*サンクス*/

body#thanks {
  background-color: #EFEFEF;
  padding-bottom: 0;
}

.lp-thanks {
  width: 92%;
  background-color: #fff;
  margin: 36px auto 30px; 
  border-radius: 20px;
  padding: 20px 20px 30px;
  box-sizing: border-box;
}

.lp-thanks-heading {
  padding-top: 80px;
  text-align: center;
}

.lp-thanks-heading h2 {
  display: inline-block;
  font-size: 1.285714286rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}

.lp-thanks-heading h2:before {
  content: '';
  position: absolute;
  left: 10%;
  top: -100px;
  width: 77px;
  height: 96px;
  background: url(../images/lp/thanks-illust02.webp);
  background-repeat: no-repeat;
  background-size: 100%;
}

.lp-thanks-heading h2:after {
  content: '';
  position: absolute;
  right: 20%;
  top: -100px;
  width: 66px;
  height: 103px;
  background: url(../images/lp/thanks-illust01.webp);
  background-repeat: no-repeat;
  background-size: 100%;
}

.lp-thanks .txt16 {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 20px;
}

.lp-thanks .box {
  background-color: #EFEFEF;
  border-radius: 5px;
  padding: 15px 15px 5px;
  margin-bottom: 20px;
}

/*資料ダウンロードサンクス*/

.lp-thanks.lp-thanks-download h3 {
  text-align: center;
  margin-top: 35px;
}

.lp-thanks.lp-thanks-download h3 {
  display: flex;
  align-items: center;
  font-size: 1.285714286rem;
  font-weight: 700;
  color: #009684;
  margin-bottom: 12px;
}

.lp-thanks.lp-thanks-download h3::before,
.lp-thanks.lp-thanks-download h3::after {
  content: "";
  flex-grow: 1;
  height: 1px; /* 線の太さ */
  background-color: #009684; /* 線の色 */
}

.lp-thanks.lp-thanks-download h3::before {
  margin-right: 0.5em; /* テキストと左線の間隔 */
}

.lp-thanks.lp-thanks-download h3::after {
  margin-left: 0.5em; /* テキストと右線の間隔 */
}

.file-download-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0px;
  margin-top: 30px;
}

.file-download-btn .l-header-tell a {
  font-size: 1.5rem;
  background: url(../images/lp/ico-tell.svg) no-repeat left center;
  background-size: 22px;
  padding-left: 28px;
  line-height: 1.3;
}

.file-download-btn .l-header-tell span {
  font-size: 1rem;
  margin: 0;
  line-height: 1.3;
  margin-left: 20px;
}

.c-btn02 {
  display: block;
  width: 100%;
  max-width: 355px;
}

.c-btn02 a {
  display: inline-block;
  width: 100%;
  background: url(../images/lp/ico-arw-white02.svg) no-repeat 95% 50%;
  background-size: 8px auto;
  background-color: #7FB644;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 14px 14px;
  line-height: 1.5;
  box-sizing: border-box;
  color: #fff;
  border-radius: 200px;
}

.l-header-logo .logo.logo-type02 img {
  width: 150px;
}

#footer.l-footer.l-footer-type02 {
  background-color: #7fb644;
  color: #fff;
}

.l-container {
  margin: auto;
  width: 90%;
  max-width: 1300px;
}

.c-footer__flex {
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 20px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

li.c-footer__info-item {
  margin-bottom: 6px;
  font-size: 1rem;
  font-family: "メイリオ", Meiryo, YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  letter-spacing: .2rem;
}

li.c-footer__info-item.company-name {
  margin-bottom: 15px;
  font-weight: 700;
}

.c-footer__flex-right {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  margin: auto;
  margin-bottom: 3rem;
  width: 60%;
}

.c-footer__flex-right img {
  width: 100%;
}

.copyrights {
  margin-top: 3vh;
  padding-bottom: 10px;
  color: #bfd8a6;
  font-size: 0.8125rem;
  text-align: right;
  font-family: "メイリオ", Meiryo, YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  letter-spacing: 2px;
}

#timerex {
  scroll-margin-top: 70px;
}

/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */
.c-center {
  width: 92.5%;
  max-width: 1320px;
  padding: var(--paddingSection) 15px;
  margin: 0 auto;
  box-sizing: border-box;
}

.c-center02 {
  width: 100%;
  max-width: 1100px;
  padding: var(--paddingSection) 15px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* grid */
.grid {
  clear: both;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

/* color */

.main-color {
  color: #009684;
}

/*btn*/
.c-btn {
  display: block;
  width: 100%;
  max-width: 355px;
  margin: 0 auto;
}

.c-btn a {
  display: inline-block;
  width: 100%;
  background: url(../images/lp/ico-arw-white02.svg) no-repeat 95% 50%;
  background-size: 8px auto;
  background-color: #073C33;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 14px 14px;
  line-height: 1.5;
  box-sizing: border-box;
  color: #fff;
  border-radius: 200px;
}

/* column */
.col-sp-1 { width: 8.33333333%; }
.col-sp-2 { width: 16.66666667%; }
.col-sp-3 { width: 25%; }
.col-sp-4 { width: 33.33333333%; }
.col-sp-5 { width: 41.66666667%; }
.col-sp-6 { width: 50%; }
.col-sp-7 { width: 58.33333333%; }
.col-sp-8 { width: 66.66666667%; }
.col-sp-9 { width: 75%; }
.col-sp-10 { width: 83.33333333%; }
.col-sp-11 { width: 91.66666667%; }
.col-sp-12 { width: 100%; }

/*==========
タイトル&テキスト
==========*/

.txt14 {
  font-size: 0.928571429rem;
}

.txt18 {
  font-size: 1.142857143rem;
}

strong {
  font-weight: 700;
}

/*==========
Effect
==========*/

.rotate {
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  opacity: 0;
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.rotate.trigger {
  -webkit-animation-name: rotate;
          animation-name: rotate;
}

@-webkit-keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
.fadeIn {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeIn.trigger {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeUp {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeUp.trigger {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
}

.fadeUpList > * {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeUpList.trigger > * {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.popUp {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.popUp.trigger {
  -webkit-animation-name: popUp;
          animation-name: popUp;
}

.popUpList > * {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.popUpList.trigger > * {
  -webkit-animation-name: popUp;
          animation-name: popUp;
}

@-webkit-keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.slideLeft {
  will-change: transform, opacity;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  opacity: 0;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.slideLeft.trigger {
  -webkit-animation-name: slideLeft;
          animation-name: slideLeft;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideRight {
  will-change: transform, opacity;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.slideRight.trigger {
  -webkit-animation-name: slideRight;
          animation-name: slideRight;
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeScale {
  overflow: hidden;
  opacity: 0;
  -webkit-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-transition: opacity .3s ease-in-out, -webkit-transform .3s cubic-bezier(0.5, 1.71, 0.48, 0.61);
  transition: opacity .3s ease-in-out, -webkit-transform .3s cubic-bezier(0.5, 1.71, 0.48, 0.61);
  transition: opacity .3s ease-in-out, transform .3s cubic-bezier(0.5, 1.71, 0.48, 0.61);
  transition: opacity .3s ease-in-out, transform .3s cubic-bezier(0.5, 1.71, 0.48, 0.61), -webkit-transform .3s cubic-bezier(0.5, 1.71, 0.48, 0.61);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  will-change: transform;
}

.fadeScale.trigger {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* ==========================================================================
Utility [ display / margin / padding / device... ]
========================================================================== */

/* device - utility
--------------------------------------------------------- */
.u-sp {
  display: block !important;
}
.u-pc {
  display: none !important;
}

/* vertical-align - utility
--------------------------------------------------------- */
.u-va-t{
  vertical-align: top !important;
}
.u-va-m{
  vertical-align: middle !important;
}
.u-va-b{
  vertical-align: bottom !important;
}

/* border - utility
--------------------------------------------------------- */
/* border-radius */
.u-br-4{
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-border-radius: 4px;
}
.u-br-8{
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -ms-border-radius: 8px;
}
.u-br-12{
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -ms-border-radius: 12px;
}
.u-br-16{
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -ms-border-radius: 16px;
}

/* border-none */
.u-br-0{
  border: none;
}
.u-br-t-0{
  border-top: none;
}
.u-br-r-0{
  border-right: none;
}
.u-br-b-0{
  border-bottom: none;
}
.u-br-l-0{
  border-left: none;
}

/* clearfix - utility
--------------------------------------------------------- */
.u-cf{
  *zoom: 1;
}
.u-cf:after{
  display: table;
  clear: both;
  content: '';
}

/* display - utility
--------------------------------------------------------- */
.u-d-tb{
  display: table !important;
}
.u-d-tbc{
  display: table-cell !important;
}
.u-d-b{
  display: block !important;
}
.u-d-ib{
  display: inline-block !important;
}
.u-d-n{
  display: none !important;
}

/* float - utility
--------------------------------------------------------- */
.u-fl-l{
  float: left !important;
}
.u-fl-r{
  float: right !important;
}

/* font-size - utility
--------------------------------------------------------- */
.u-fz-10{
  font-size: 10px !important;
}
.u-fz-12{
  font-size: 12px !important;
}
.u-fz-14{
  font-size: 14px !important;
}
.u-fz-16{
  font-size: 16px !important;
}
.u-fz-18{
  font-size: 18px !important;
}
.u-fz-20{
  font-size: 20px !important;
}
.u-fz-22{
  font-size: 22px !important;
}
.u-fz-24{
  font-size: 24px !important;
}
.u-fz-26{
  font-size: 26px !important;
}
.u-mini {
  font-size: 80%;
}

/* line-clamp - utility
--------------------------------------------------------- */
.u-lc{
  display:         box;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* margin - utility
--------------------------------------------------------- */
/* auto margin */
.u-m-c{
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Top margin */
.u-mt-0{
  margin-top: 0 !important;
}
.u-mt-8{
  margin-top: 8px !important;
}
.u-mt-16{
  margin-top: 16px !important;
}
.u-mt-24{
  margin-top: 24px !important;
}
.u-mt-32{
  margin-top: 32px !important;
}
.u-mt-40{
  margin-top: 40px !important;
}
.u-mt-48{
  margin-top: 48px !important;
}
.u-mt-56{
  margin-top: 56px !important;
}
.u-mt-64{
  margin-top: 64px !important;
}

/* Right margin */
.u-mr-0{
  margin-right: 0 !important;
}
.u-mr-8{
  margin-right: 8px !important;
}
.u-mr-16{
  margin-right: 16px !important;
}
.u-mr-24{
  margin-right: 24px !important;
}
.u-mr-32{
  margin-right: 32px !important;
}
.u-mr-40{
  margin-right: 40px !important;
}
.u-mr-48{
  margin-right: 48px !important;
}
.u-mr-56{
  margin-right: 56px !important;
}
.u-mr-64{
  margin-right: 64px !important;
}

/* Bottom margin */
.u-mb-0{
  margin-bottom: 0 !important;
}
.u-mb-8{
  margin-bottom: 8px !important;
}
.u-mb-16{
  margin-bottom: 16px !important;
}
.u-mb-24{
  margin-bottom: 24px !important;
}
.u-mb-32{
  margin-bottom: 32px !important;
}
.u-mb-40{
  margin-bottom: 40px !important;
}
.u-mb-48{
  margin-bottom: 48px !important;
}
.u-mb-56{
  margin-bottom: 56px !important;
}
.u-mb-64{
  margin-bottom: 64px !important;
}

/* Left margin */
.u-ml-0{
  margin-left: 0 !important;
}
.u-ml-8{
  margin-left: 8px !important;
}
.u-ml-16{
  margin-left: 16px !important;
}
.u-ml-24{
  margin-left: 24px !important;
}
.u-ml-32{
  margin-left: 32px !important;
}
.u-ml-40{
  margin-left: 40px !important;
}
.u-ml-48{
  margin-left: 48px !important;
}
.u-ml-56{
  margin-left: 56px !important;
}
.u-ml-64{
  margin-left: 64px !important;
}

/* misc - utility
--------------------------------------------------------- */
.u-ws-nowrap{
  white-space: nowrap;
}
.u-mx-img{
  max-width: 100%;
}
.u-tx-inside{
  margin-left: 1em;
  text-indent: -1em;
}

/* padding - utility
--------------------------------------------------------- */
/* Top padding */
.u-pt-0{
  margin-top: 0 !important;
}
.u-pt-8{
  margin-top: 8px !important;
}
.u-pt-16{
  margin-top: 16px !important;
}
.u-pt-24{
  margin-top: 24px !important;
}
.u-pt-32{
  margin-top: 32px !important;
}
.u-pt-40{
  margin-top: 40px !important;
}
.u-pt-48{
  margin-top: 48px !important;
}
.u-pt-56{
  margin-top: 56px !important;
}
.u-pt-64{
  margin-top: 64px !important;
}

/* Right padding */
.u-pr-0{
  padding-right: 0 !important;
}
.u-pr-8{
  padding-right: 8px !important;
}
.u-pr-16{
  padding-right: 16px !important;
}
.u-pr-24{
  padding-right: 24px !important;
}
.u-pr-32{
  padding-right: 32px !important;
}
.u-pr-40{
  padding-right: 40px !important;
}
.u-pr-48{
  padding-right: 48px !important;
}
.u-pr-56{
  padding-right: 56px !important;
}
.u-pr-64{
  padding-right: 64px !important;
}

/* Bottom padding */
.u-pb-0{
  padding-bottom: 0 !important;
}
.u-pb-8{
  padding-bottom: 8px !important;
}
.u-pb-16{
  padding-bottom: 16px !important;
}
.u-pb-24{
  padding-bottom: 24px !important;
}
.u-pb-32{
  padding-bottom: 32px !important;
}
.u-pb-40{
  padding-bottom: 40px !important;
}
.u-pb-48{
  padding-bottom: 48px !important;
}
.u-pb-56{
  padding-bottom: 56px !important;
}
.u-pb-64{
  padding-bottom: 64px !important;
}

/* Left padding */
.u-pl-0{
  padding-left: 0 !important;
}
.u-pl-8{
  padding-left: 8px !important;
}
.u-pl-16{
  padding-left: 16px !important;
}
.u-pl-24{
  padding-left: 24px !important;
}
.u-pl-32{
  padding-left: 32px !important;
}
.u-pl-40{
  padding-left: 40px !important;
}
.u-pl-48{
  padding-left: 48px !important;
}
.u-pl-56{
  padding-left: 56px !important;
}
.u-pl-64{
  padding-left: 64px !important;
}

/* position - utility
--------------------------------------------------------- */
.u-pos-a{
  position: absolute !important;
}
.u-pos-r{
  position: relative !important;
}

/* text-align - utility
--------------------------------------------------------- */
.u-ta-l{
  text-align: left !important;
}
.u-ta-c{
  text-align: center !important;
}
.u-ta-r{
  text-align: right !important;
}

/* text-decoration - utility
--------------------------------------------------------- */
.u-fw-n{
  font-weight: normal !important;
}
.u-fw-b{
  font-weight: bold !important;
}
.u-td-u{
  text-decoration: underline !important;
}

/* text-truncate - utility
--------------------------------------------------------- */
.u-tt{
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  /* for IE 8/9 */
}

/* width - utility
--------------------------------------------------------- */
.u-w-auto{
  width: auto !important;
}
.u-maw-full{
  max-width: 100% !important;
}
.u-maw-half{
  max-width: 50% !important;
}