@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  color: #1A1311;
  font-family: "Hiragino Sans W3", "ヒラギノ角ゴシック W3", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.7rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}

.l-inner {
  max-width: 1170px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 550px) {
  .l-inner {
    padding: 0 20px;
  }
}

img {
  width: 100%;
  vertical-align: top;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

mark {
  text-decoration: underline;
  text-decoration-color: #FFFA8E;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 10px;
  text-underline-offset: -4px;
  letter-spacing: -0.05em;
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 550px) {
  .section {
    padding: 60px 0;
  }
}

.section-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-size: 4rem;
  text-align: center;
  color: #19427B;
  padding-bottom: 14px;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 550px) {
  .section-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}

.section-title::after {
  content: "";
  width: 72px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-bottom: 4px solid #19427B;
}

.second-title {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #19427B;
  margin-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .second-title {
    font-size: 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 22px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 550px) {
  .second-title {
    font-size: 2rem;
  }
}

.ttl-num {
  display: inline-block;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  width: 30px;
  line-height: 30px;
  margin-right: 15px;
  position: relative;
  top: 6px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ttl-num {
    font-size: 1.7rem;
    width: 28px;
    line-height: 28px;
    margin-right: 0;
    top: 6px;
  }
}

.ttl-num::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #19427B;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  rotate: 45deg;
}

.btn {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: auto;
  padding: 16px 87px 16px 27px;
  border-radius: 3px;
  position: relative;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  overflow: hidden;
  -webkit-transition-property: background-position;
  transition-property: background-position;
  background-image: linear-gradient(-61deg, #db521f 50%, #a63e17 0);
  background-position: 100%;
  background-size: 300%;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 2rem;
    padding: 16px 60px 16px 20px;
  }
}

.btn:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  rotate: 45deg;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .btn:before {
    width: 12px;
    height: 12px;
    right: 30px;
    border-width: 1.5px;
  }
}

.btn:after {
  content: "";
  -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  width: 82px;
  height: 100%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: #a63e17;
}
@media screen and (max-width: 768px) {
  .btn:after {
    width: 62px;
  }
}

.btn:active, .btn:hover {
  background-position: 0;
}

.wrapper {
  overflow: hidden;
}

.text-center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.s {
  display: none;
}
@media screen and (max-width: 550px) {
  .s {
    display: block;
  }
}

.section-mail .l-inner {
  height: calc(100vh - 215px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .section-mail .l-inner {
    height: calc(100vh - 204px);
  }
}
@media screen and (max-width: 550px) {
  .section-mail .l-inner {
    padding-bottom: 10px;
  }
}

.mail-message {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .mail-message {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

label.error {
  display: block;
  width: 100%;
  color: #E84204;
  margin-top: 10px;
}

.fix-cta {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 13px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 550px) {
  .fix-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header {
  width: 100%;
  z-index: 20;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  header {
    background: #fff;
    padding: 0;
  }
}

header.scroll {
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  header.scroll {
    background: #fff;
  }
}

header .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1380px;
}
@media screen and (max-width: 768px) {
  header .l-inner {
    height: 60px;
  }
}

.header__logo img {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 110px;
  }
}
@media screen and (max-width: 550px) {
  .header__logo img {
    width: 100px;
  }
}

.header__logo a {
  display: block;
}

header .btn {
  font-size: 2rem;
  padding: 16px 62px 16px 18px;
}
@media screen and (max-width: 768px) {
  header .btn {
    display: none;
  }
}

header .btn:before {
  width: 12px;
  height: 12px;
  right: 26px;
  border-width: 2px;
}

header .btn:after {
  width: 59px;
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}

footer {
  text-align: center;
  background: #D9D9D9;
  padding: 60px 0;
}
@media screen and (max-width: 550px) {
  footer {
    margin-bottom: 92px;
  }
}

footer img {
  width: 178px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  footer img {
    margin-bottom: 30px;
  }
}

.copyright {
  font-size: 1.5rem;
  color: rgba(26, 19, 17, 0.5);
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 1.2rem;
  }
}

.fv {
  background: url(../img/fv.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  position: relative;
  z-index: 15;
}
@media screen and (max-width: 768px) {
  .fv {
    margin-top: 60px;
  }
}
@media screen and (max-width: 550px) {
  .fv {
    background: url(../img/fv-sp.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
  }
}

.fv .l-inner {
  max-width: 1280px;
}

.fv__txt {
  max-width: 630px;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  padding: 142px 0 146px;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .fv__txt {
    padding: 220px 0 40px;
  }
}

.fv h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
@media screen and (max-width: 550px) {
  .fv h1 {
    margin-bottom: 16px;
    gap: 8px;
  }
}

.fv h1 .subcopy {
  font-size: 2.7rem;
  color: #fff;
  background: #19427B;
  padding: 5px 18px;
}
@media screen and (max-width: 550px) {
  .fv h1 .subcopy {
    font-size: 2.1rem;
    padding: 2px 16px;
  }
}

.fv h1 strong {
  font-size: 5rem;
  color: #19427B;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .fv h1 strong {
    font-size: 4rem;
  }
}
@media screen and (max-width: 550px) {
  .fv h1 strong {
    font-size: 2.8rem;
  }
}

.fv h1 strong span {
  font-size: 8rem;
  letter-spacing: 0.06em;
  position: relative;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .fv h1 strong span {
    font-size: 6rem;
  }
}
@media screen and (max-width: 550px) {
  .fv h1 strong span {
    font-size: 4.8rem;
    bottom: -2px;
    margin-right: -2px;
    margin-left: 4px;
  }
}

.fv__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 550px) {
  .fv__point {
    gap: 8px;
    margin-bottom: 30px;
  }
}

.fv__point li {
  font-size: 3rem;
  line-height: 1.2;
  color: #19427B;
  background: #fff;
  width: 220px;
  padding: 10px 10px 16px;
  border-radius: 3px;
}
@media screen and (max-width: 550px) {
  .fv__point li {
    font-size: 2.1rem;
    width: 100%;
    max-width: 180px;
    padding: 12px 6px 16px;
  }
}

.fv__point small {
  font-size: 2rem;
  letter-spacing: -0.11em;
}
@media screen and (max-width: 550px) {
  .fv__point small {
    font-size: 1.4rem;
  }
}

.fv__point .banner {
  font-size: 2.2rem;
  letter-spacing: 1;
  text-align: center;
  display: block;
  color: #fff;
  background: #19427B;
  padding: 8px 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 550px) {
  .fv__point .banner {
    font-size: 1.6rem;
    padding: 6px 0 4px;
    margin-bottom: 6px;
  }
}

.fv__cta p {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #19427B;
  margin-bottom: 8px;
}
@media screen and (max-width: 550px) {
  .fv__cta p {
    font-size: 1.7rem;
  }
}

.what .section-title {
  padding-bottom: 0;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .what .section-title {
    margin-bottom: 12px;
  }
}

.what .section-title::after {
  content: none;
}

.what p {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 2rem;
  color: #19427B;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .what p {
    font-size: 1.7rem;
  }
}

.what__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #F8F8F8;
  padding: 40px 20px;
  gap: 35px;
  border-radius: 10px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .what__content {
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
  .what__content {
    max-width: 400px;
    padding: 34px 14px;
    margin: 0 auto;
  }
}

.what__content section {
  width: 30%;
  text-align: center;
  position: relative;
}
.what__content section:not(:last-of-type)::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #19427B;
  border-width: 25px 0px 25px 30px;
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  transform: translateY(-50%);
}
.what__content section h3 {
  font-size: 1.8rem;
  font-weight: bold;
}
.what__content section img {
  max-width: 180px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .what__content section {
    width: 100%;
  }
  .what__content section:not(:last-of-type)::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #19427B transparent transparent transparent;
    border-width: 30px 25px 0px 25px;
    top: calc(100% + 25px);
    left: 50%;
    transform: translateX(-50%);
  }
}

.what__content ul {
  font-family: "Hiragino Sans W6", "ヒラギノ角ゴシック W6", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #19427B;
}
@media screen and (max-width: 768px) {
  .what__content ul {
    font-size: 1.8rem;
  }
}

.what__content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .what__content li {
    margin-bottom: 12px;
  }
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 16px;
  background: url(../img/check-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.difference {
  background: #F8F8F8;
}

.difference .text-center {
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .difference .text-center {
    margin-bottom: 24px;
  }
}

.difference section {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .difference section {
    max-width: 560px;
    padding: 30px 18px 40px;
    margin: 0 auto 20px;
  }
}

.difference section > div {
  max-width: 930px;
  margin: 0 auto;
}

.difference .output {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 20px;
  max-width: 826px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .difference .output {
    gap: 24px 18px;
  }
}

.difference .output li {
  font-size: 1.6rem;
  text-align: center;
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .difference .output li {
    font-size: 1.5rem;
    width: calc(50% - 9px);
  }
}

.difference .output img {
  margin-bottom: 12px;
}

.difference__flex > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .difference__flex > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .difference section:nth-of-type(1) .section-title.text-center {
    margin-bottom: 16px;
  }
}

.difference__flex:nth-of-type(3) > div {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .difference__flex:nth-of-type(3) > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.difference__flex:nth-of-type(2) img {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .difference__flex:nth-of-type(2) img {
    width: 90%;
    max-width: 400px;
  }
}

.difference__flex:nth-of-type(3) img {
  width: 36%;
}
@media screen and (max-width: 768px) {
  .difference__flex:nth-of-type(3) img {
    width: 90%;
    max-width: 400px;
  }
}

.difference__flex:nth-of-type(4) img {
  width: 36%;
}
@media screen and (max-width: 768px) {
  .difference__flex:nth-of-type(4) img {
    width: 90%;
    max-width: 400px;
  }
}

.difference__flex .difference__txt {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .difference__flex .difference__txt {
    width: 100%;
  }
}

.reason .l-inner > section {
  background: #F8F8F8;
  border-radius: 10px;
  padding: 56px 70px;
}
@media screen and (max-width: 1024px) {
  .reason .l-inner > section {
    padding: 30px 18px 40px;
  }
}

.reason .l-inner > section:not(:last-of-type) {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .reason .l-inner > section:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.reason .second-title {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
  .reason .second-title > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.reason .ttl-num {
  top: -6px;
}
@media screen and (max-width: 768px) {
  .reason .ttl-num {
    margin-bottom: 18px;
  }
}

.industry-other {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  max-width: 790px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .industry-other {
    margin-bottom: 18px;
    gap: 20px;
  }
}

.industry-other section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 19px;
  width: 50%;
  background: #fff;
  border-radius: 5px;
  padding: 28px 10px;
}
@media screen and (max-width: 1024px) {
  .industry-other section {
    padding: 15px 14px 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.industry-other h4 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .industry-other h4 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 550px) {
  .industry-other h4 {
    font-size: 1.9rem;
  }
}

.industry-other span {
  font-size: 1.9rem;
  padding: 12px 10px;
  border: 1px solid #C1C1C1;
}
@media screen and (max-width: 550px) {
  .industry-other span {
    font-size: 1.6rem;
    padding: 6px 16px;
  }
}

.industry-other img {
  width: auto;
  height: 53px;
}
@media screen and (max-width: 550px) {
  .industry-other img {
    height: 36px;
  }
}

.industry {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  background: #fff;
  border-radius: 6px;
  padding: 30px 10px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .industry {
    padding: 20px 20px 10px;
  }
}

.industry__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  max-width: 825px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 768px) {
  .industry__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    margin-bottom: 27px;
  }
}

.industry__head span {
  font-size: 2.5rem;
  padding: 14px 20px 12px;
  border: 1px solid #C1C1C1;
}
@media screen and (max-width: 768px) {
  .industry__head span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 550px) {
  .industry__head span {
    font-size: 1.6rem;
    padding: 10px 16px 8px;
  }
}

.industry__head .second-title {
  margin-bottom: 0;
}

.industry__company {
  width: 49%;
  margin-left: 80px;
}
@media screen and (max-width: 768px) {
  .industry__company {
    width: 100%;
    max-width: 353px;
    margin-left: 0;
    margin: 0 auto;
  }
}

.industry__worry {
  width: 42%;
  position: absolute;
  bottom: 10px;
  right: -5px;
}
@media screen and (max-width: 768px) {
  .industry__worry {
    position: static;
    max-width: 353px;
    width: 100%;
    margin: 0 auto;
  }
}

.industry-problem {
  background: #fff;
  border-radius: 6px;
  padding: 30px 10px 40px;
}
@media screen and (max-width: 768px) {
  .industry-problem {
    padding: 30px 0;
  }
}

.industry-problem h4 {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #19427B;
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .industry-problem h4 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
}

.industry-problem ul {
  font-size: 2.3rem;
  font-family: "Hiragino Sans W6", "ヒラギノ角ゴシック W6", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 46px;
  max-width: 680px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .industry-problem ul {
    font-size: 1.7rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 250px;
    gap: 8px;
  }
}

.industry-problem li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 23px);
}
@media screen and (max-width: 768px) {
  .industry-problem li {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .reason .l-inner > section:last-of-type {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.reason .l-inner > section:last-of-type img {
  max-width: 936px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .reason .l-inner > section:last-of-type img {
    max-width: 400px;
    width: 95%;
    margin-bottom: 20px;
  }
}

.reason .l-inner > section:last-of-type p {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  color: #19427B;
}
@media screen and (max-width: 768px) {
  .reason .l-inner > section:last-of-type p {
    font-size: 1.8rem;
  }
}

.cta {
  text-align: center;
  background: url(../img/cta-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 52px 0 46px;
  }
}

.cta__txt {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 3.9rem;
  font-weight: 600;
  color: #19427B;
  margin-bottom: 38px;
}
@media screen and (max-width: 1024px) {
  .cta__txt {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .cta__txt {
    font-size: 2.7rem;
    margin-bottom: 20px;
  }
}

.cta__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.cta img {
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .cta img {
    position: static;
  }
}

.cta img:first-of-type {
  width: 20%;
  max-width: 237px;
  right: calc(50% + 315px);
}
@media screen and (max-width: 1024px) {
  .cta img:first-of-type {
    right: calc(50% + 240px);
  }
}
@media screen and (max-width: 768px) {
  .cta img:first-of-type {
    width: 128px;
  }
}

.cta img:last-of-type {
  width: 15%;
  max-width: 180px;
  left: calc(50% + 315px);
}
@media screen and (max-width: 1024px) {
  .cta img:last-of-type {
    left: calc(50% + 240px);
  }
}
@media screen and (max-width: 768px) {
  .cta img:last-of-type {
    width: 100px;
  }
}

.flow {
  background: #F8F8F8;
}

.flow section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 730px;
  margin: 0 auto;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .flow section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    padding-bottom: 20px;
  }
}

.flow section img {
  width: 98px;
  margin-right: 24px;
}

.flow__num {
  top: 0;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .flow__num {
    width: 26px;
    line-height: 26px;
  }
}
@media screen and (max-width: 550px) {
  .flow__num {
    width: 26px;
    line-height: 26px;
  }
}

.flow__num::after {
  content: "";
  height: 160px;
  border-left: 3px solid #19427B;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  .flow__num::after {
    height: 220px;
  }
}

.flow section:last-of-type .flow__num:after {
  height: 90px;
}
@media screen and (max-width: 768px) {
  .flow section:last-of-type .flow__num:after {
    height: 100px;
  }
}

.flow__txt {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .flow__txt {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .flow__txt {
    font-size: 1.4rem;
  }
}

.flow__txt h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-size: 2.6rem;
  color: #19427B;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .flow__txt h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 550px) {
  .flow__txt h3 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .flow__txt h3 small {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 550px) {
  .flow__txt h3 small {
    font-size: 1.1rem;
  }
}

.flow__txt > p {
  margin-left: 52px;
}
@media screen and (max-width: 768px) {
  .flow__txt > p {
    margin-left: 44px;
  }
}

.work .l-inner {
  max-width: 990px;
}

.work__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 62px;
}
@media screen and (max-width: 768px) {
  .work__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.work__list section {
  width: 49%;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .work__list section {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }
}

.work__list section h3 {
  font-size: 2.1rem;
  text-align: center;
  color: #fff;
  background: #19427B;
  border-radius: 3px 3px 0 0;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .work__list section h3 {
    font-size: 1.9rem;
    padding: 8px;
  }
}

.work__list section div {
  border: 1px solid #DDDDDD;
  border-top: 1px solid transparent;
  padding: 25px 25px 30px;
  border-radius: 0 0 3px 3px;
}
@media screen and (max-width: 768px) {
  .work__list section div {
    padding: 16px 18px 26px;
  }
}

.work__plan {
  font-size: 2.1rem;
  color: #E84203;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .work__plan {
    font-size: 1.8rem;
    text-align: center;
  }
}

.work__comment {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .work__comment {
    font-size: 1.5rem;
  }
}

.work__comment span {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  display: inline-block;
  color: #19427B;
  background: #DFEFF7;
  padding: 2px 5px 0;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .work__comment span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 550px) {
  .work__comment span {
    text-align: center;
    width: 100%;
    margin-bottom: 6px;
  }
}

.price {
  background: #F8F8F8;
}

.price .text-center {
  margin-bottom: 30px;
}

.price-table {
  width: 100%;
}

.price-table th,
.price-table td {
  border-right: 1px solid #C9C9C9;
  border-bottom: 1px solid #C9C9C9;
  text-align: center;
}

.price-table th {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: #19427B;
  background: rgba(112, 112, 112, 0.03);
  padding: 10px 5px;
}
@media screen and (max-width: 1024px) {
  .price-table th {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .price-table th {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 550px) {
  .price-table th {
    font-size: 1.3rem;
  }
}

.price-table td {
  padding: 30px 5px;
}
@media screen and (max-width: 550px) {
  .price-table td {
    padding: 26px 5px;
  }
}
@media screen and (max-width: 768px) {
  .table_center {
    font-size: 11px;
  }
}

.price-table th:first-of-type {
  background: none;
}

.price-table th:first-of-type,
.price-table td:first-of-type {
  width: 138px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .price-table th:first-of-type,
  .price-table td:first-of-type {
    font-size: 1.4rem;
    width: 90px;
  }
}
@media screen and (max-width: 550px) {
  .price-table th:first-of-type,
  .price-table td:first-of-type {
    font-size: 1.2rem;
    width: 52px;
    position: relative;
    white-space: nowrap;
  }
}

@media screen and (max-width: 550px) {
  .price-table td:first-of-type span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.price-table th:not(:first-of-type),
.price-table td:not(:first-of-type) {
  width: calc((100% - 138px) / 3);
}
@media screen and (max-width: 768px) {
  .price-table th:not(:first-of-type),
  .price-table td:not(:first-of-type) {
    width: calc((100% - 90px) / 3);
  }
}
@media screen and (max-width: 550px) {
  .price-table th:not(:first-of-type),
  .price-table td:not(:first-of-type) {
    width: calc((100% - 52px) / 3);
  }
}

.price-table td:not(:first-of-type) {
  padding: 30px 5px;
}

.price-table tr:not(:first-of-type) th:not(:first-of-type),
.price-table tr:not(:first-of-type) td:not(:first-of-type) {
  background: #fff;
}

.table__price {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
  color: #19427B;
}
@media screen and (max-width: 1024px) {
  .table__price {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .table__price {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 550px) {
  .table__price {
    font-size: 1.5rem;
    position: relative;
  }
}

.table_center span {
  height: 100%;
  margin: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.table__price small {
  font-size: 1.7rem;
  margin-left: 10px;
  position: relative;
  top: -5px;
}
@media screen and (max-width: 1024px) {
  .table__price small {
    font-size: 1.4rem;
    top: -2px;
  }
}
@media screen and (max-width: 768px) {
  .table__price small {
    font-size: 1.1rem;
    margin-left: 5px;
  }
}
@media screen and (max-width: 550px) {
  .table__price small {
    position: absolute;
    top: calc(50% + 10px);
    right: 20px;
  }
}

.price-table tr:nth-of-type(4) td {
  position: relative;
  height: 153px;
}
@media screen and (max-width: 768px) {
  .price-table tr:nth-of-type(4) td {
    height: 250px;
  }
}
@media screen and (max-width: 550px) {
  .price-table tr:nth-of-type(4) td {
    height: 226px;
  }
}

.price-table tr:nth-of-type(4) td span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.table__txt {
  font-size: clamp(1rem, 1.27vw, 1.5rem);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .table__txt {
    font-size: clamp(1.1rem, 2.93vw, 1.4rem);
  }
}

.table__txt > span {
  text-align: left;
}

.table__txt:last-of-type {
  font-size: 1.9rem;
}
@media screen and (max-width: 1024px) {
  .table__txt:last-of-type {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .table__txt:last-of-type {
    font-size: 1.1rem;
  }
}

.price-table th:last-of-type,
.price-table td:last-of-type {
  border-right: none;
}

.price-table tr:last-of-type td {
  border-bottom: none;
}

/* .price-table tr:last-of-type td:not(:first-of-type) {
  font-size: 2.2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .price-table tr:last-of-type td:not(:first-of-type) {
    font-size: 1.5rem;
  }
} */

.solution__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 2.6%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .solution__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
    max-width: 400px;
    margin: 0 auto;
  }
}

.solution__list section {
  text-align: center;
  background: #F5FCFC;
  width: 23%;
  padding: 25px 5px 20px;
}
@media screen and (max-width: 1024px) {
  .solution__list section {
    width: 100%;
    padding: 22px 20px;
  }
}

.solution__list section h3 {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #19427B;
  margin-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  .solution__list section h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .solution__list section h3 {
    font-size: 2rem;
  }
}

.solution__list section:nth-of-type(1),
.solution__list section:nth-of-type(2) {
  width: 36%;
}
@media screen and (max-width: 1024px) {
  .solution__list section:nth-of-type(1),
  .solution__list section:nth-of-type(2) {
    width: 100%;
  }
}

.solution__list section:nth-of-type(1) div {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5.4%;
}

.faq__item {
  max-width: 850px;
  border-bottom: 1px solid #D5D5D5;
  padding: 30px 0;
  margin: 0 auto;
}

.faq__item:first-of-type {
  padding-top: 0;
}

.faq__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.faq__item h3 {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #19427B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .faq__item h3 {
    font-size: 1.8rem;
    margin-bottom: 14px;
    gap: 12px;
  }
}
@media screen and (max-width: 550px) {
  .faq__item h3 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1.4;
  }
}

.faq__item h3 span:last-of-type {
  width: calc(100% - 40px);
}

@media screen and (max-width: 768px) {
  .faq__item .ttl-num {
    display: block;
    position: relative;
    top: 0;
  }
}

.faq__item div {
  margin-left: 48px;
}
@media screen and (max-width: 768px) {
  .faq__item div {
    margin-left: 0;
  }
}

.contact {
  background: #F8F8F8;
}

.contact form {
  max-width: 540px;
  margin: 0 auto;
}

.contact form div:not(:nth-last-of-type(2)) {
  margin-bottom: 35px;
}

.contact form label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .contact form label {
    margin-bottom: 12px;
  }
}

.contact form label span {
  font-size: 1.4rem;
  color: #fff;
  background: #E84203;
  border-radius: 2px;
  padding: 0 5px;
}
@media screen and (max-width: 550px) {
  .contact form label span {
    font-size: 1.2rem;
  }
}

.contact form input[type=text],
.contact form textarea {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #C9C9C9;
  border-radius: 4px;
  padding: 14px 25px;
}

.contact form p {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .contact form p {
    font-size: 1.3rem;
  }
}

.contact form input[type=text]::-webkit-input-placeholder, .contact form textarea::-webkit-input-placeholder {
  color: #C1C1C1;
}

.contact form input[type=text]::-moz-placeholder, .contact form textarea::-moz-placeholder {
  color: #C1C1C1;
}

.contact form input[type=text]:-ms-input-placeholder, .contact form textarea:-ms-input-placeholder {
  color: #C1C1C1;
}

.contact form input[type=text]::-ms-input-placeholder, .contact form textarea::-ms-input-placeholder {
  color: #C1C1C1;
}

.contact form input[type=text]::placeholder,
.contact form textarea::placeholder {
  color: #C1C1C1;
}

.contact form .policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  cursor: pointer;
  margin: 22px 0 28px;
}
@media screen and (max-width: 768px) {
  .contact form .policy {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contact form .policy input + label {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.contact form .policy a {
  color: #137FAF;
  text-decoration: underline;
}

/*リセット */
input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックスデザイン */
input[type=checkbox] {
  cursor: pointer;
  padding-left: 28px;
  vertical-align: middle;
  position: relative;
}

input[type=checkbox]::before,
input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type=checkbox]::before {
  background-color: #fff;
  border: 1px solid #C9C9C9;
  width: 25px;
  height: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 5px;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  input[type=checkbox]::before {
    width: 22px;
    height: 22px;
  }
}

input[type=checkbox]::after {
  border-bottom: 2px solid #1A1311;
  border-left: 2px solid #1A1311;
  opacity: 0;
  height: 9px;
  width: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -7px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  input[type=checkbox]::after {
    width: 13px;
    height: 7px;
    top: -5px;
  }
}

input[type=checkbox]:checked::after {
  opacity: 1;
}

.submit {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 355px;
  padding: 16px 27px;
  margin: 0 auto;
  border-radius: 3px;
  position: relative;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  overflow: hidden;
  -webkit-transition-property: background-position;
  transition-property: background-position;
  background-image: linear-gradient(-61deg, #db521f 50%, #a63e17 0);
  background-position: 100%;
  background-size: 300%;
}
@media screen and (max-width: 768px) {
  .submit {
    max-width: 335px;
    font-size: 2rem;
    padding: 16px 20px;
  }
}

.submit:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  rotate: 45deg;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .submit:before {
    width: 12px;
    height: 12px;
    right: 30px;
    border-width: 1.5px;
  }
}

.submit:after {
  content: "";
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  width: 82px;
  height: 100%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: #a63e17;
}
@media screen and (max-width: 768px) {
  .submit:after {
    width: 62px;
  }
}

.submit:active, .submit:hover {
  background-position: 0;
}

.submit input {
  width: 100%;
  height: 100%;
}

.l-sv {
  overflow: hidden;
  padding: 0;
}

.l-sv__container {
  display: flex
}

.l-sv__logo-list {
  align-items: center;
  -webkit-animation: slide var(--duration, 15s) linear infinite;
  animation: slide var(--duration, 15s) linear infinite;
  display: flex;
  flex-shrink: 0;
  gap: 0 40px;
  height: 120px;
  justify-content: center;
  max-width: none
}

.l-sv__logo-item {
  height: 100px;
  max-width: fit-content;
  width: 150px
}

.l-sv__logo-item img {
  height: 100%;
  object-fit: contain
}

.l-sv__logo-item._half {
  height: calc(50% - .4rem)
}

@-webkit-keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}