@charset "utf-8";
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* * Basic information:
* * - CSS guideline : FLOCSS
* *
* * Order of discription:
* * - Foundation [ reset / base ]
* * - Layout [ header / main / side / footer ]
* * - Object [ component / project / utility ]
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /

/****************************
  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 {
  --teryco: #009684;
  --teryco-orange: #F3944A;
  --teryco-light: #EAF5EF;
  --teryco-dark: #176C54;
  --teryco-green: #87BB57;
  --teryco-text: #222;
  --paddingSection: 60px;
}

@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 64px;
    --paddingSection: 40px;
    --border_radius: 10px;
  }
}
html,
body {
  background-color: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP","游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  color: #222222;
  min-width: 1200px;
  position: relative;
}

body {
  position: relative;
  padding-top: 90px;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

select {
  font-size: 14px;
  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: 90px;
  position: fixed;
  left: 0;
  top: 0px;
  z-index: 100;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  min-width: 1200px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  background: #fff;
  padding: 12px 34px 12px 60px;
  border-bottom: 1px solid #D9E7E1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.l-header-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding-right: 28px;
}

.l-header-nav {
  display: block;
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  padding: 0;
  overflow: visible;
}

.l-header-menu__head {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #073C33;
}

.l-header-btn {
  display: flex;
  margin-left: 40px;
  gap: 15px;
  align-items: center;
}

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

.l-header-tell span {
  display: block;
  font-size: 0.750rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: right;
  margin-right: 10px;
}

.l-header-btn__list {
  display: flex;
  gap: 10px;
}

.l-header-btn__list a {
  color: #fff;
  text-align: center;
  display: inline-block;
  border-radius: 200px;
  padding: 12px 26px;
  line-height: 1.3;
  font-weight: 700;
}

.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: 1240px;
  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 {
  margin-left: auto;
}

.l-footer-nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #073C33;
}

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

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

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

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

.l-header-menu__items.sp-menu,
.sp-banner {
  display: none;
}

/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */

/* =========================
  メインビジュアル
========================= */
.mv {
  background: url(../images/lp/mv-bg.webp) no-repeat top center;
  background-size: cover;
  padding: 30px 0 0;
  position: relative;
  overflow: hidden;
}

.mv:before {
  content: '';
  position: absolute;
  left: -331px;
  bottom: 230px;
  width: 438px;
  height: 438px;
  border-radius: 50%;
  background-color: rgba(243, 148, 74, 0.1);
}

.mv:after {
  content: '';
  position: absolute;
  right: -180px;
  top: -157px;
  width: 438px;
  height: 438px;
  border-radius: 50%;
  background-color: rgba(147, 205, 182, 0.31);
}

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

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

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

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

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

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

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

.service-types li {
  width: 148px;
  background-color: #fff;
  border: 1px solid #B8D3C8;
  border-radius: 5px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  position: relative;
  gap: 8px;
}

.service-types li:after {
  content: '';
  position: absolute;
  right: -23px;
  top: 23px;
  width: 17px;
  height: 17px;
  background: url(../images/lp/and.svg);
  background-repeat: no-repeat;
}

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

.service-types li img {
  width: 47px;
}

.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;
}

.mv-visual img {
  position: relative;
  left: -50px;
}

/* =========================
  資料請求フォーム
========================= */
.mv-form {
  position: absolute;
  z-index: 5;
  top: 28px;
  right: 0;
  width: 430px;
  padding: 28px 34px 24px;
  border: 4px solid #B8D3C8;
  border-radius: 28px;
  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: -25px;
  top: -20px;
  width: 52px;
  height: 52px;
  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: 38px;
  border: 1px solid #B8D3C8;
  padding: 0 10px;
  margin-bottom: 10px;
  background: #fff;
  font-family: inherit;
  border-radius: 3px;
}

.mv-form input::placeholder ,
.mv-form select::placeholder {
  color: #777777;
}

.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: 12px 0 24px;
  font-weight: 500;
}

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

.form-submit {
  width: 100%;
  min-height: 66px;
  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 85% 50%;
  background-size: 21px;
  background-color: var(--teryco-dark);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
}

.mv-subimages {
  position: relative;
  width: 100%;
  gap: 2.5%;
  display: flex;
  justify-content: center;
  margin-top: 22px;
  padding-bottom: 28px;
}

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

.mv-subimages li {
 width: 27.5%; 
 position: relative;
 z-index: 1;
}

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

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

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

.nayami .c-heading p {
  text-align: center;
  color: var(--teryco-orange);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.nayami .c-center {
  padding-bottom: 120px;
}

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

.nayami-list li {
  width: calc((100% - 36px) / 3);
  border-radius: 26px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 12px 30px 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.25rem;
  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: 84px;
  padding-bottom: 50px;
  position: relative;
}

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

.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: 15.5px 7.8px 0 7.8px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

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

.solution h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 21px 0 27px;
}

.solution .service-types {
  margin: 0 auto 30px;
  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;
}

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

.solution-btns a {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 15px;
  width: 355px;
  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: 40px;
  top: -20px;
  letter-spacing: 10px;
  font-size: 1.375rem;
  color: var(--teryco);
}

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

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

.reason-img img {
  width: 100%;
  height: 100%;
  -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: 530px;
}

.reason-body {
  width: calc(100% - 530px);
  margin-left: auto;
  position: relative;
}

.reason-num {
  position: absolute;
  right: -30px;
  top: -30px;
  font-size: 6.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: 8px 26px;
  font-weight: 700;
  border-radius: 100px;
  display: inline-block;
}

.reason-body h3 {
  font-size: 1.875rem;
  font-weight: 900;
  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: 20px;
}

.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: 4px;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: var(--teryco-orange);
}

.reason-body a {
  width: 165px;
  height: 42px;
  background: var(--teryco);
  border-radius: 6px;
  display: inline-block;
  padding: 6px 39px;
  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;
  justify-content: space-between;
  margin-bottom: 195px;
}

.service-area-head a {
  background: url(../images/lp/ico-arw-btm.svg) no-repeat 95% 50%;
  background-size: 28px;
  background-color: #004A41;
  border-radius: 200px;
  width: 318px;
  height: 64px;
  line-height: 64px;
  border: 2px solid #fff;
  font-size: 1.4375rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

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

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

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

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

#ttl02 {
  position: relative;
}

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

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

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

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

.service-title .din-dx {
  position: absolute;
  left: 50%;
  top: -7px;
  z-index: 0;
  width: 150px;
  height: 89px;
  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;
  margin-left: -75px;
  z-index: 0;
  width: 150px;
  height: 89px;
  background: url(../images/lp/service-din-dx.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

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

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

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

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

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

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

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

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

.profile {
  padding: 60px 0;
}

.profile .c-heading {
  margin-bottom: 60px;
}

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

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

.profile-list {
  padding-bottom: 30px;
}

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

.profile-card .inner {
 padding: 31px 25px;
 border-radius: 20px;
 border: 2px solid #87BB57;
 display: flex;
 align-items: center;
 gap: 2.6%;
 background: url(../images/lp/ico-arw-green.svg) no-repeat 97% 50%;
 background-size: 29px auto;
}

.profile-card img {
  width: 24.3%;
}

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

.profile-card h3 span {
  display: inline-block;
  margin-right: 25px;
  color: #333;
}

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

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

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

.profile-list,
.case-slider {
  opacity: 0;
  transition: opacity .25s ease;
}
.profile-list.slick-initialized ,
.case-slider.slick-initialized {
  opacity: 1;
}


/*モーダル*/
.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: 600px; 
  min-height:420px; 
  display:flex; 
  gap:25px; 
  padding:45px 45px 40px; 
  background:#fff; 
  border-radius:20px; 
  box-shadow:0 20px 40px rgba(0,0,0,.2); 
}

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

.profile-modal-img { 
  width:190px; 
}

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

.profile-modal-body { 
  flex:1; 
  padding-top:6px; 
}

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

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

.profile-modal-name { 
  font-size:25px; 
  font-weight:800; 
  margin:3px 0 22px; 
}

.profile-modal-copy { 
  font-size:22px; 
  line-height:1.5; 
  font-weight:800; 
  margin-bottom:18px; 
}

.profile-modal-text { 
  line-height:1.75; 
  font-size: 0.875rem;
}

/* =========================
  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: 50%;
  top: -50px;
  transform: translateX(-50%);
}

.flow-heading h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 25px 31px;
  border: 2px solid #009684;
  border-radius: 50px;
  background-color: #ffffff;
  text-align: left;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
  color: #009684;
  white-space: nowrap;
}

.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 {
  min-height: 884px;
  padding: 100px 100px 77px;
  background: url(../images/lp/teriyo-flow.svg) no-repeat 50% 149px;
}

.flow-item {
  position: absolute;
  width: 400px;
  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.flow01 {
  left: 100px;
  top: 100px;
}

.flow-item.flow02 {
  right: 100px;
  top: 100px;
}

.flow-item.flow03 {
  right: 100px;
  bottom: 77px;
}

.flow-item.flow04 {
  left: 100px;
  bottom: 77px;
}

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

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

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

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

.flow-item p {
  width: 235px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  background-color: var(--teryco-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 12px 10px 8px 29px;
  border-radius: 120px;
}

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

.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: 100%;
  background: #fff;
  text-align: center;
}

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

.comparison-table thead th {
  background: #EAF5EF;
  font-weight: 700;
  font-size: 1.125rem;
  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 tbody th {
  background-color: #FFFAF3;
  text-align: center;
  font-weight: 700;
  vertical-align: middle;
}

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

.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: 74px; 
  height: 74px; 
  z-index: 3; 
}

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

.case-slider .slick-next { 
  right: -80px; 
  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);
}

.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: 920px;
  margin: 0 auto;
}

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

.faq-list .question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 22px 50px 22px 20px;
  border: 0;
  text-align: left;
  border-radius: 20px;
  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;
  width: 31px;
  height: 31px;
  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: 15px;
  color: var(--teryco-dark);
  font-size: 1.125rem;
  font-weight: 800;
  width: 30px;
  height: 30px;
  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 70px 20px 70px;
}

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

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

.bottom-cta .c-center {
  padding-top: 40px;
}

.campaign-label {
  display: block;
  width: 322px;
  height: 52px;
  line-height: 52px;
  font-size: 1.3125rem;
  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: 0 auto 20px;
}

.bottom-cta .c-heading {
  position: relative;
}

.bottom-cta .c-heading:before {
  content: '';
  position: absolute;
  left: 74px;
  top: 25px;
  width: 174px;
  height: 174px;
  background: url(../images/lp/cta-illust01.webp);
  background-repeat: no-repeat;
  background-size: 100%;
}

.bottom-cta .c-heading:after {
  content: '';
  position: absolute;
  right: 74px;
  top: 25px;
  width: 174px;
  height: 174px;
  background: url(../images/lp/cta-illust02.webp);
  background-repeat: no-repeat;
  background-size: 100%;
}

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

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

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

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

.timerex-inner {
  width: 1240px;
  margin: 40px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fff;
  padding: 50px 0;
}

/*無料診断サンクス*/

body#thanks {
  background-color: #EFEFEF;
}

.lp-thanks {
  width: 1080px;
  background-color: #fff;
  margin: 36px auto 99px; 
  border-radius: 20px;
  padding: 40px 60px 60px;
  box-sizing: border-box;
}

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

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

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

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

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

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

/*資料ダウンロードサンクス*/
.lp-thanks.lp-thanks-download .lp-thanks-heading {
  margin-bottom: 40px;
}


.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.5rem;
  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: 1em; /* テキストと左線の間隔 */
}

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

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

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

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

.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: 1.125rem;
  font-weight: 700;
  padding: 19px 14px 19px;
  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;
}

li.c-footer__info-item {
  margin-bottom: 6px;
  font-size: 0.875rem;
  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 {
  width: 20%;
}

.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: 100px;
}


/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */

/* filter: drop-shadow(0 3px 6px rgba(0, 55, 51, 0.1));
font-size: clamp(0.75rem, 1.25vw, 1rem);
aspect-ratio: 1 / 2;
background: center/contain url("../images/aaa.svg") no-repeat; */

.c-center {
  width: 100%;
  max-width: 1320px;
  padding: var(--paddingSection) 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

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

.flex-top {
  align-items: flex-start;
}

.flex-middle {
  align-items: center;
}

.flex-bottom {
  align-items: flex-end;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content:space-around;
}

.flex-left {
  justify-content:flex-start;
}

.flex-center {
  justify-content:center;
}

.flex-right {
  justify-content:flex-end;
}

/* color */
.main_color {
  color: #087C8C;
}

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

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

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

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

.txt14 {
  font-size: 0.875rem;
}

.txt18 {
  font-size: 1.125rem;
}

strong {
  font-weight: 700;
}

.main-color {
  color: #009684;
}

/*==========
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-pc {
  display: block !important;
}
.u-sp {
  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-r{
  font-weight: 400 !important;
}
.u-fw-n{
  font-weight: 500 !important;
}
.u-fw-b{
  font-weight: 700 !important;
}
.u-td-u{
  text-decoration: underline !important;
}

.u-td-u:hover {
  text-decoration: none;
}

/* 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;
}

/*可変幅*/
@media screen and (max-width: 1450px){
  
}
