body {
  font-family: sans-serif;
}

.sp {
  display: none;
}

@media (max-width: 768px) {
  article header i {
    font-size: 36px !important;
    opacity: 0.8 !important;
  }
  article header h2 {
    margin-top: 10px !important;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  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;
}

#header #logo a {
  display: block;
}

#header #logo a img {
  max-height: 40px;
  width: auto;
}

#header #nav {
  width: 100%;
}

#header #nav.active {
  display: block;
}

#header #nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#header #nav ul li {
  margin-left: 20px;
  text-align: center;
}

#header #nav ul li:first-child {
  margin-left: 0;
}

#header #nav ul li:last-child a {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #C48F96, #C30D23);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  line-height: 1;
  width: auto;
  text-align: center;
  border-radius: 50px;
}

#header #nav ul li a {
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-align: center;
}

#header #nav ul li a:hover {
  color: #ff4500;
}

#header #nav ul li a i {
  font-size: 10px;
  color: #333;
  opacity: 0.6;
  display: block;
  text-align: center;
}

#header .hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

#header .hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 768px) {
  #header .container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #header .hamburger {
    display: block;
  }
  #header #nav {
    margin-top: 15px;
    display: none;
    width: 100%;
    position: absolute;
    background: #fff;
    top: 0px;
    left: 0;
    padding: 80px 20px;
    z-index: -1;
  }
  #header #nav.active {
    padding: 80px 20px;
  }
  #header #nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #header #nav ul li {
    margin-left: 0;
    margin-bottom: 20px;
    text-align: left;
  }
  #header #nav ul li:last-child {
    margin-bottom: 0;
    margin-top: 20px;
  }
  #header #nav ul li a {
    font-size: 20px;
  }
  #header #nav ul li a i {
    text-align: left;
  }
}

#title {
  position: relative;
  background-color: white;
  min-height: 800px;
  overflow: hidden;
}

#title section {
  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;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 800px;
  overflow: hidden;
}

#title .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 2;
  padding-left: 80px;
  position: relative;
}

#title .text_bg {
  font-size: 140px;
  color: #C32539;
  position: absolute;
  top: -80px;
  left: 0;
  z-index: -1;
  opacity: 0.1;
  line-height: 1;
  font-weight: bold;
}

#title h1 {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 40px;
  font-weight: bold;
}

#title h1 small {
  display: block;
  font-size: 18px;
  margin-bottom: 40px;
}

#title p {
  font-size: 16px;
  margin-bottom: 30px;
}

#title .btn_wrap {
  margin-top: 20px;
}

#title .btn {
  display: inline-block;
  padding: 15px 20px;
  background: linear-gradient(135deg, #C48F96, #C30D23);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  line-height: 1;
  width: 200px;
  text-align: center;
  border-radius: 50px;
}

#title .btn:hover {
  opacity: 0.8;
}

#title .bg {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 60%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  position: absolute;
  right: 0;
  height: 100%;
}

@media (max-width: 768px) {
  #title {
    min-height: 600px;
  }
  #title section {
    min-height: 600px;
    padding: 40px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #title section .title {
    padding: 0;
    padding-top: 240px;
  }
  #title .text_bg {
    font-size: 64px;
    z-index: 2;
    top: 160px;
    opacity: 1;
  }
  #title h1 {
    font-size: 28px;
    white-space: nowrap;
  }
  #title img.bg {
    max-width: 100%;
    margin-top: 30px;
    opacity: 0.2;
  }
}

#slide {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}

#slide header {
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 20px;
}

#slide header .title {
  margin-bottom: 20px;
}

#slide header .title i {
  font-style: normal;
  font-size: 80px;
  color: #C32539;
  display: block;
  line-height: 1;
  font-weight: bold;
  opacity: 0.1;
}

#slide header .title h2 {
  font-size: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#slide header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

#slide section {
  width: 100%;
  overflow: hidden;
}

#slide section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
}

#slide section ul li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto;
  margin-right: 20px;
  height: 50px;
}

#slide section ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  #slide {
    padding: 80px 0px;
  }
  #slide header {
    padding: 0 20px;
  }
  #slide header .title i {
    font-size: 28px !important;
  }
  #slide header .title h2 {
    font-size: 24px;
    margin-top: 0px;
  }
}

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

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

#about {
  padding: 80px 0;
  background-color: #f5f5f5;
  margin-bottom: 80px;
}

#about header {
  text-align: center;
  margin-bottom: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

#about header i {
  font-style: normal;
  font-size: 80px;
  color: #C32539;
  display: block;
  line-height: 1;
  font-weight: bold;
  opacity: 0.1;
}

#about header h2 {
  font-size: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#about section {
  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;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

#about .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#about .text h3 {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: bold;
}

#about .text p {
  font-size: 16px;
  line-height: 1.6;
}

#about .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#about .img img {
  width: calc(100% + 80px);
  height: auto;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: calc(100% + 80px);
}

#about .img img:nth-child(3) {
  grid-column: span 2;
}

@media (max-width: 768px) {
  #about {
    padding: 80px 20px;
  }
  #about header {
    padding: 0;
  }
  #about header h2 {
    font-size: 24px;
    margin-top: 0px;
  }
  #about section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 0 0;
  }
  #about .text h3 {
    font-size: 20px;
  }
  #about .text p {
    padding-top: 40px;
  }
  #about .img {
    margin-top: 40px;
  }
  #about .img img {
    width: 100%;
  }
}

.cta {
  background-image: url("/imgs/cta_bg.jpg?v=1");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  border-radius: 20px;
  margin: 0px auto;
  max-width: 1200px;
  width: calc(100% - 120px);
}

.cta .content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.cta .content p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}

.cta .content .btn_wrap {
  text-align: center;
}

.cta .content .btn_wrap .btn {
  display: inline-block;
  padding: 15px 20px;
  background: linear-gradient(135deg, #C48F96, #C30D23);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  line-height: 1;
  width: 200px;
  text-align: center;
  border-radius: 50px;
}

.cta .content .btn_wrap .btn:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cta {
    padding: 40px 20px;
    margin: 40px 20px;
    width: calc(100% - 80px);
  }
  .cta .content p {
    font-size: 20px;
  }
  .cta .content .btn_wrap .btn {
    padding: 12px 40px;
    font-size: 16px;
  }
}

#why {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}

#why header {
  text-align: center;
  margin-bottom: 40px;
}

#why header i {
  font-style: normal;
  font-size: 80px;
  color: #C32539;
  display: block;
  line-height: 1;
  font-weight: bold;
  opacity: 0.1;
}

#why header h2 {
  font-size: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#why section h3 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

#why section p {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 40px;
}

#why section ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

#why section ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#why section ul li h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

#why section ul li .img {
  margin-bottom: 20px;
}

#why section ul li .img img {
  width: 100%;
  border-radius: 10px;
}

#why section ul li p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #why {
    margin: 80px auto;
    padding: 0 20px;
  }
  #why header h2 {
    margin-top: 0;
  }
  #why section h3 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 40px;
  }
  #why section ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#onayami {
  background-color: #F8F8F8;
  padding: 80px 0;
}

#onayami header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

#onayami header i {
  font-style: normal;
  font-size: 80px;
  color: #C32539;
  display: block;
  line-height: 1;
  font-weight: bold;
  opacity: 0.1;
}

#onayami header h2 {
  font-size: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#onayami section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#onayami section .box {
  background-color: white;
  border-radius: 20px;
  padding: 40px 40px 0;
}

#onayami section .title {
  text-align: center;
  margin-bottom: 30px;
}

#onayami section .title h3 {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

#onayami section .title h3::before, #onayami section .title h3::after {
  content: '';
  width: 30px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
}

#onayami section .title h3::before {
  left: -40px;
}

#onayami section .title h3::after {
  right: -40px;
}

#onayami section .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#onayami section ul {
  list-style: none;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 40px;
}

#onayami section ul li {
  background-color: #C32539;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  margin-bottom: 15px;
  position: relative;
}

#onayami section ul li::after {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #C32539;
  border-radius: 50%;
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#onayami section .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}

#onayami section .img img {
  width: 100%;
  height: auto;
  margin-top: -80px;
}

@media (max-width: 768px) {
  #onayami {
    padding: 80px 0 40px;
    background-color: #fffbfa;
  }
  #onayami header h2 {
    margin-top: 0;
    white-space: nowrap;
    font-size: 22px;
  }
  #onayami section .box {
    padding: 40px 20px 0;
    background: transparent;
  }
  #onayami section .box .title h3 {
    font-size: 20px;
  }
  #onayami section .box .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #onayami section .box ul {
    margin-right: 0;
    margin-bottom: 30px;
  }
  #onayami section .box ul li {
    font-size: 14px;
  }
  #onayami section .box .img {
    width: 100%;
    margin: 0 auto;
  }
  #onayami section .box .img img {
    margin-top: 0;
  }
}

#solution {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  text-align: center;
}

#solution section {
  padding: 0;
}

#solution .img {
  margin-bottom: 30px;
  text-align: center;
}

#solution .img img {
  width: 40px;
  height: auto;
}

#solution .title {
  margin: auto;
  margin-bottom: 40px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 20px 0;
  max-width: 600px;
}

#solution .title p {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: center;
}

#solution .title p span {
  color: #c41230;
}

#solution .title h3 {
  font-size: 20px;
  font-weight: normal;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

#solution .logo {
  margin-bottom: 40px;
  text-align: center;
}

#solution .logo img {
  width: 360px;
  height: auto;
}

#solution p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  #solution {
    padding: 40px 20px 0;
  }
  #solution .title p span {
    font-size: 36px;
    font-weight: bold;
  }
  #solution .logo img {
    width: 240px;
    height: auto;
    margin-left: -40px;
  }
}

#point {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}

#point header {
  text-align: center;
  margin-bottom: 80px;
}

#point header i {
  font-style: normal;
  font-size: 80px;
  color: #C32539;
  display: block;
  line-height: 1;
  font-weight: bold;
  opacity: 0.1;
}

#point header h2 {
  font-size: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#point section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#point section li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

#point section li:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#point section li:nth-child(2) .img {
  margin-right: 0;
  margin-left: 40px;
}

#point section .img {
  width: 50%;
  position: relative;
  margin-right: 40px;
}

#point section .img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#point section .img .num {
  position: absolute;
  top: -40px;
  left: -20px;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  width: 80px;
  font-size: 36px;
  height: 80px;
  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;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#point section .text {
  width: 50%;
}

#point section .text h3 {
  font-size: 36px;
  font-weight: bold;
  padding: 0px 0 20px;
  color: #C32539;
  line-height: 1.4;
}

#point section .text p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  #point {
    padding: 0 20px;
  }
  #point section li {
    padding-bottom: 40px;
  }
  #point section li:last-child {
    padding-bottom: 0;
  }
  #point section li, #point section li:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #point section li .img, #point section li:nth-child(2) .img {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
  }
  #point section li .img .num, #point section li:nth-child(2) .img .num {
    left: -10px;
  }
  #point section li .text, #point section li:nth-child(2) .text {
    width: 100%;
  }
  #point section li .text h3, #point section li:nth-child(2) .text h3 {
    font-size: 24px;
  }
}

#reason {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px 80px;
}

#reason header {
  text-align: center;
  margin-bottom: 40px;
}

#reason header i {
  font-style: normal;
  font-size: 80px;
  color: #C32539;
  display: block;
  line-height: 1;
  font-weight: bold;
  opacity: 0.1;
}

#reason header h2 {
  font-size: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#reason section ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#reason section ul li {
  width: calc(33.333% - 20px);
  margin-bottom: 0px;
  background: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#reason section ul li:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

#reason section ul li .img {
  height: 200px;
  overflow: hidden;
}

#reason section ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#reason section ul li:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#reason section ul li .text {
  padding: 20px;
}

#reason section ul li .text h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

#reason section ul li .text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  #reason header h2 {
    margin-top: 0;
  }
  #reason section ul li {
    width: 100%;
    margin-bottom: 40px;
  }
  #reason section ul li .text h3 {
    font-size: 20px;
  }
  #reason section ul li:last-child {
    margin-bottom: 0;
  }
}

#comparison {
  margin: 0 auto 80px;
  padding: 80px 40px;
  background-color: #F8F8F8;
}

#comparison header {
  text-align: center;
  margin-bottom: 40px;
}

#comparison header h2 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 20px;
}

#comparison .table {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border-collapse: collapse;
}

#comparison .table th, #comparison .table td {
  border: 1px solid #c32539;
  padding: 15px;
  text-align: center;
}

#comparison .table thead th {
  background-color: #f8f8f8;
  font-weight: normal;
}

#comparison .table thead th:first-child {
  border: none;
  background-color: transparent;
}

#comparison .table thead th img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  width: 240px;
  display: block;
  margin: -40px auto 20px;
}

#comparison .table thead th.target {
  background-color: #c32539;
  border-top: 60px solid #c32539;
  border-bottom: dashed #fff;
}

#comparison .table tbody th {
  white-space: nowrap;
  width: 50px;
  background-color: #f8f8f8;
  font-weight: normal;
  width: 20%;
}

#comparison .table tbody td {
  width: 25%;
}

#comparison .table tbody td:first-of-type {
  background-color: #c32539;
  color: white;
  border-bottom: dashed;
  width: 30%;
}

#comparison .table tbody td:first-of-type.target {
  border-bottom: 80px solid #c32539;
  padding-top: 40px;
  padding-bottom: 0;
}

#comparison .table .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
}

@media (max-width: 768px) {
  #comparison {
    padding: 80px 20px;
  }
  #comparison header h2 {
    font-size: 36px;
    line-height: 1.4;
  }
  #comparison header h2 span {
    color: #C32539;
  }
  #comparison section {
    overflow-x: scroll;
  }
  #comparison .table {
    font-size: 14px;
  }
  #comparison .table th, #comparison .table td {
    padding: 10px;
  }
  #comparison .table tbody th {
    width: 30px;
  }
}

#works {
  padding: 80px 40px;
}

#works header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
}

#works header i {
  font-style: normal;
  font-size: 80px;
  color: #C32539;
  display: block;
  line-height: 1;
  font-weight: bold;
  opacity: 0.1;
}

#works header h2 {
  font-size: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#works .workers__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: auto;
}

.worker-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.worker-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.worker-card__image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.worker-card__content {
  padding: 1rem;
}

.worker-card__tags {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.worker-card .tag {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

.worker-card .tag--engineer {
  background-color: #ff0000;
  color: #ffffff;
}

.worker-card .tag--n2 {
  background-color: #0000ff;
  color: #ffffff;
}

.worker-card__education, .worker-card__specialty, .worker-card__skills {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

.worker-card__education {
  font-weight: bold;
}

@media (max-width: 768px) {
  #works {
    padding: 40px 20px 80px;
  }
  #works header h2 {
    font-size: 24px;
    margin-top: 0;
  }
  #works .workers__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 40px;
  }
}

#flow {
  max-width: 1200px;
  margin: 0px auto 80px;
  padding: 0 20px;
}

#flow header {
  text-align: center;
  margin-bottom: 60px;
}

#flow header i {
  font-style: normal;
  font-size: 80px;
  color: #C32539;
  display: block;
  line-height: 1;
  font-weight: bold;
  opacity: 0.1;
}

#flow header h2 {
  font-size: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#flow .steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

#flow .steps::before {
  content: "";
  position: absolute;
  top: calc(50% - 40px);
  left: 60px;
  right: 60px;
  height: 80px;
  background-color: #C30D23;
  z-index: 1;
  opacity: 0.2;
}

#flow .step {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

#flow .step .step-number {
  display: inline-block;
  background-color: #C30D23;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  width: 120px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

#flow .step .step-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: calc(100% - 80px);
}

#flow .step .step-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  overflow: hidden;
}

#flow .step .step-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#flow .step h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  font-weight: bold;
}

#flow .step h3:after {
  content: "";
  width: 60px;
  background: #C30D23;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 30px);
  z-index: 2;
  display: block;
}

#flow .step p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

#flow .step small {
  font-size: 12px;
  color: #999;
  display: block;
}

@media (max-width: 1024px) {
  #flow .steps {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #flow .steps::before {
    display: none;
  }
  #flow .step {
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  #flow header h2 {
    margin-top: 0;
  }
  #flow .step {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 0;
  }
  #flow .step:last-child {
    margin-bottom: 0;
  }
  #flow .step .step-number {
    display: block;
  }
  #flow .step .step-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
  #flow .step .step-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 10px;
  }
  #flow .step .step-content .content {
    max-width: calc(100% - 100px);
    text-align: left;
    padding-left: 20px;
  }
  #flow .step .step-content .content h3 {
    margin-bottom: 10px;
    text-align: left;
    padding-bottom: 10px;
  }
  #flow .step .step-content .content h3:after {
    left: 0;
  }
}

#faq {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

#faq header {
  text-align: center;
  margin-bottom: 40px;
}

#faq header i {
  font-style: normal;
  font-size: 80px;
  color: #C32539;
  display: block;
  line-height: 1;
  font-weight: bold;
  opacity: 0.1;
}

#faq header h2 {
  font-size: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#faq .box {
  max-width: 800px;
  margin: 0 auto;
}

#faq details {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

#faq details:last-child {
  border-bottom: none;
}

#faq details summary {
  list-style: none;
  padding: 20px 0 20px 60px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  outline: none;
  margin-bottom: 20px;
}

#faq details summary::-webkit-details-marker {
  display: none;
}

#faq details summary::marker {
  display: none;
}

#faq details summary::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #C30D23;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  border: solid #C30D23 1px;
}

#faq details summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 24px;
  color: #C30D23;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#faq details[open] summary::after {
  content: '-';
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

#faq details p {
  padding: 0 0 20px 60px;
  margin: 0;
  color: #000;
  line-height: 1.4;
  position: relative;
  font-weight: bold;
}

#faq details p::before {
  content: "A";
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  left: 0;
  color: #C30D23;
  font-weight: bold;
  font-size: 18px;
  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;
  background: #fafafa;
  border: solid 1px #C30D23;
  border-radius: 10px;
}

@media (max-width: 768px) {
  #faq header h2 {
    margin-top: 0;
  }
  #faq details summary {
    padding: 0px 24px 0px 36px;
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  #faq details summary:before {
    top: 11px;
    width: 24px;
    height: 24px;
    font-size: 14px;
    border-radius: 4px;
  }
  #faq details summary:after {
    top: 11px;
  }
  #faq details p {
    padding: 0 0 20px 36px;
    font-size: 14px;
  }
  #faq details p:before {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    font-size: 14px;
  }
}

#voice {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 40px;
}

#voice header {
  text-align: center;
  margin-bottom: 40px;
}

#voice header i {
  font-style: normal;
  font-size: 80px;
  color: #C32539;
  display: block;
  line-height: 1;
  font-weight: bold;
  opacity: 0.1;
}

#voice header h2 {
  font-size: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#voice section .workers__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: auto;
}

#voice section .workers__grid .worker-card__content {
  padding: 20px 20px 40px;
}

#voice section .workers__grid .worker-card__content h3 {
  font-size: 20px;
  line-height: 1.4;
  padding-bottom: 20px;
}

/*============================
#footer
============================*/
footer#footer {
  background: #0A0A0A;
  color: #fff;
  padding: 40px;
  border-radius: 40px 40px 0 0;
}

footer#footer div.wrap {
  max-width: 1480px;
  padding: 0 40px;
}

footer#footer div.wrap div.top a img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  width: 320px;
}

footer#footer div.wrap div.bottom {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

footer#footer div.wrap div.bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer#footer div.wrap div.bottom ul li {
  margin-right: 20px;
}

footer#footer div.wrap div.bottom ul li a {
  padding-bottom: 4px;
  border-bottom: solid 1px #fff;
  letter-spacing: 2px;
}

footer#footer div.wrap div.bottom address {
  font-size: 12px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  footer#footer {
    padding: 40px 0px 0px;
  }
  footer#footer div.wrap {
    padding: 0;
  }
  footer#footer div.wrap div.top {
    padding: 0 20px;
  }
  footer#footer div.wrap div.top a img {
    width: 180px;
  }
  footer#footer div.wrap div.bottom {
    display: block;
    padding: 40px 20px 20px;
  }
  footer#footer div.wrap div.bottom ul {
    margin-bottom: 40px;
  }
  footer#footer div.wrap div.bottom ul li {
    margin-right: 20px;
    font-size: 14px;
  }
  footer#footer div.wrap div.bottom address {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

#support {
  background-image: url("/imgs/support-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: #ffffff;
  position: relative;
}

#support .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

#support header {
  text-align: center;
  margin-bottom: 40px;
}

#support header h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

#support section {
  text-align: center;
}

#support section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#support section .box .content {
  list-style: none;
  max-width: 800px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding: 0 40px;
}

#support section .box .content li {
  background-color: #dc3545;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  min-width: auto;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

#support section .box .content li:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
          box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

@media (max-width: 768px) {
  #support {
    padding: 60px 0;
  }
  #support header h2 {
    font-size: 28px;
  }
  #support section p {
    font-size: 16px;
  }
  #support section .box .content {
    gap: 10px;
    padding: 0 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #support section .box .content li {
    font-size: 14px;
    padding: 8px 10px;
    letter-spacing: 2px;
  }
}

#contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  padding-top: 0;
}

#contact header {
  text-align: center;
  margin-bottom: 40px;
}

#contact header i {
  font-style: normal;
  font-size: 80px;
  color: #C32539;
  display: block;
  line-height: 1;
  font-weight: bold;
  opacity: 0.1;
}

#contact header h2 {
  font-size: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

#contact section {
  background: #F8F8F8;
  padding: 40px 0;
  border-radius: 20px;
}

#contact section form {
  max-width: 600px;
  display: block;
  margin: auto;
}

#contact section form .haveto {
  background: #F44336;
  font-size: 10px;
  color: #fff;
  padding: 4px 8px;
  border-radius: 10px;
  letter-spacing: 2px;
  font-weight: 300;
  margin-left: 10px;
}

#contact section form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact section form select {
  border-radius: 4px;
  outline: 0;
  background: #fff;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
}

#contact section form input {
  border-radius: 4px;
  outline: 0;
  background: #fff;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
}

#contact section form textarea {
  border-radius: 4px;
  outline: 0;
  background: #fff;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
}

#contact section form div.col-xs-4 button {
  background: #2196F3;
  color: #fff;
  max-width: 100%;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 20px auto 0;
  padding: 15px;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
          box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  width: 100%;
  border: none;
}

@media (max-width: 768px) {
  #contact section form {
    padding: 0 20px;
  }
}
/*# sourceMappingURL=common.css.map */