@charset "UTF-8";
.section__title.typing-text {
  margin-bottom: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  background-color: #F5F5F5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.875rem;
  }
}

p {
  margin-bottom: 1rem;
}

a {
  color: #ef8124;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
a:hover {
  color: #d1680f;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 992px) {
  .container {
    padding: 0 2rem;
  }
}

.header .container {
  max-width: 1400px;
}

.header {
  background-color: transparent;
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header--transparent {
  background-color: transparent;
  box-shadow: none;
}
.header--transparent .nav__link {
  color: #F5F5F5;
  text-shadow: none;
}
.header--transparent .nav__link:hover, .header--transparent .nav__link.active {
  color: #F5F5F5;
  text-shadow: none;
}
.header--transparent .menu-toggle__line {
  background-color: #F5F5F5;
  box-shadow: none;
}
.header--transparent .logo {
  filter: brightness(0) invert(1);
  filter: drop-shadow(none);
}
.header--white-menu .header__content {
  justify-content: space-between;
}
.header--white-menu .header__logo {
  order: 1;
}
.header--white-menu .header__nav {
  order: 2;
}
.header--white-menu .header__menu-toggle {
  order: 3;
}
.header--white-menu .nav__link {
  color: #F5F5F5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.header--white-menu .nav__link:hover, .header--white-menu .nav__link.active {
  color: #F5F5F5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.header--white-menu .logo {
  filter: brightness(0) invert(1);
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}
.header--white-menu .menu-toggle__line {
  background-color: #F5F5F5;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.header--scrolled .header__nav {
  background-color: rgba(245, 245, 245, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 1rem 4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.header--scrolled .nav__link {
  color: #000000;
  text-shadow: none;
}
.header--scrolled .nav__link:hover, .header--scrolled .nav__link.active {
  color: #ef8124;
  text-shadow: none;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  padding-top: 5rem;
}
.header__logo {
  position: fixed;
  left: 4.5rem;
  top: 2.5rem;
  z-index: 1001;
  margin: 0;
}
.header__logo .logo {
  height: 50px;
  width: auto;
  display: block;
}
.header__nav {
  position: absolute;
  right: 3rem;
  top: 55%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
}
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .header__menu-toggle {
    display: block;
  }
}
.header__menu-toggle .menu-toggle__line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333333;
  margin: 5px 0;
  transition: all 0.15s ease-in-out;
}
.header__menu-toggle.active .menu-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header__menu-toggle.active .menu-toggle__line:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle.active .menu-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 2rem;
}
.nav__link {
  font-weight: 500;
  font-size: 1.125rem;
  color: #333333;
  text-shadow: none;
  transition: color 0.15s ease-in-out;
}
.nav__link:hover, .nav__link.active {
  color: #ef8124;
  text-shadow: none;
}
@media (min-width: 768px) {
  .nav__link {
    font-size: 1.25rem;
  }
}

.header:not(.header--transparent) .nav__link {
  color: #000000;
  text-shadow: none;
}
.header:not(.header--transparent) .nav__link:hover, .header:not(.header--transparent) .nav__link.active {
  color: #ef8124;
  text-shadow: none;
}
.header:not(.header--transparent) .menu-toggle__line {
  background-color: #000000;
  box-shadow: none;
}
.header:not(.header--transparent) .logo {
  filter: none;
}

.breadcrumb {
  background-color: #E5E6E7;
  padding: 1rem 0;
  margin-top: 80px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 0.5rem;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 0.5rem;
  color: #6C757D;
}
.breadcrumb__item a {
  color: #6C757D;
}
.breadcrumb__item a:hover {
  color: #ef8124;
}

.main {
  padding: 3rem 0;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}
.page-header .page-title {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  margin-bottom: 0.5rem;
}
.page-header .page-subtitle {
  color: #6C757D;
  font-size: 1.125rem;
  font-weight: 300;
}

.hero {
  position: relative;
  color: #F5F5F5;
  margin-top: 0;
  text-align: left;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.hero + .animated-lines {
  display: none;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.hero__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  filter: brightness(0.6) contrast(1.1) saturate(0.8);
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0;
  padding: 2rem 1.5rem;
  padding-top: 96px;
  padding-bottom: 4rem;
}
@media (min-width: 576px) {
  .hero .container {
    padding: 2rem 3rem;
    padding-top: 80px;
    padding-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .hero .container {
    padding: 2rem 4rem;
    padding-top: 80px;
    padding-bottom: 4rem;
  }
}
.hero__title {
  margin-bottom: 2rem;
  color: #F5F5F5;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
}
.hero__title-main, .hero__title-sub {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #F5F5F5;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
}
.hero__title-main {
  font-size: 3rem;
}
@media (min-width: 768px) {
  .hero__title-main {
    font-size: 4.5rem;
  }
}
@media (min-width: 992px) {
  .hero__title-main {
    font-size: 6rem;
  }
}
.hero__description {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: #F5F5F5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}
.hero__cta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__cta .btn {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #F5F5F5;
}
.hero__cta .btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.hero__cta .btn--primary {
  background-color: rgba(245, 245, 245, 0.9);
  color: #ef8124;
}
.hero__cta .btn--primary:hover {
  background-color: #F5F5F5;
  color: #d1680f;
}
.hero__cta .btn--secondary {
  background-color: transparent;
  color: #F5F5F5;
  border-color: rgba(255, 255, 255, 0.8);
}
.hero__cta .btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #F5F5F5;
}
.hero .typing-text {
  display: inline-block;
  border-right: 4px solid #F5F5F5;
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation: typing-cursor 1s infinite;
          animation: typing-cursor 1s infinite;
  text-align: left;
}
.hero .typing-text.typing-complete {
  border-right: none;
  -webkit-animation: none;
          animation: none;
}
@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
  }
  .hero__title-main {
    font-size: 2.25rem;
  }
  .hero__description {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  .hero {
    min-height: 100vh;
  }
  .hero__title-main {
    font-size: 1.875rem;
  }
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__cta .btn {
    width: auto;
    min-width: 200px;
  }
}

.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: #ef8124;
  color: #F5F5F5;
}
.btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--primary:hover {
  background-color: #d1680f;
  color: #F5F5F5;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: #ef8124;
  border: 2px solid #ef8124;
}
.btn--secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--secondary:hover {
  background-color: #ef8124;
  color: #F5F5F5;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: #F5F5F5;
  border: 2px solid #F5F5F5;
}
.btn--outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--outline:hover {
  background-color: #F5F5F5;
  color: #ef8124;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.btn--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: #F5F5F5;
  color: #ef8124;
}
.btn--white:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn--white:hover {
  background-color: #E5E6E7;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #333333;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 3.9rem;
  }
}
@media (min-width: 992px) {
  .section__title {
    font-size: 4.5rem;
  }
}
.section__title.typing-text {
  display: inline-block;
  border-right: 4px solid #ef8124;
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation: typing-cursor 1s infinite;
          animation: typing-cursor 1s infinite;
  text-align: center;
  margin: 0 auto 3rem;
  min-height: 1.2em;
}
.section__title.typing-text.typing-complete {
  border-right: none;
  -webkit-animation: none;
          animation: none;
}

.page-title,
.hero__title-main,
.hero__title-sub,
.cta__title,
.recruit-hero__title,
.service-hero__title,
.cta-title {
  font-family: "Noto Sans JP", sans-serif;
}

body,
p,
span,
div,
button,
input,
textarea,
select,
label,
.nav__link,
.breadcrumb__item,
.footer__nav-list a,
.form-input,
.form-select,
.form-textarea,
.form-label,
.btn,
.notification {
  font-family: "Noto Sans JP", sans-serif;
}

.animated-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background-image: linear-gradient(rgba(128, 128, 128, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 128, 128, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-animation: gridMove 12s ease-in-out infinite;
          animation: gridMove 12s ease-in-out infinite;
}
.animated-lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(128, 128, 128, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 128, 128, 0.04) 1px, transparent 1px);
  background-size: 25px 25px;
  -webkit-animation: gridMoveReverse 8s ease-in-out infinite;
          animation: gridMoveReverse 8s ease-in-out infinite;
}
.animated-lines::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(128, 128, 128, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 128, 128, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  -webkit-animation: gridMoveSlow 18s ease-in-out infinite;
          animation: gridMoveSlow 18s ease-in-out infinite;
}

.services {
  padding: 8rem 0 12rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(50, 50, 50, 0.8)), url("../img/1351935.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  color: #F5F5F5;
}
.services .container {
  max-width: 1800px;
}
.services .section__title {
  font-size: 6rem;
  color: #F5F5F5;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .services .section__title {
    font-size: 7.5rem;
    letter-spacing: 0.15em;
  }
}
@media (min-width: 992px) {
  .services .section__title {
    font-size: 9rem;
    letter-spacing: 0.2em;
  }
}
.services .section__title.typing-text {
  margin-bottom: 0;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.services .section__title.typing-text::after {
  content: "サービス";
  display: inline;
  font-size: 0.3em;
  color: #F5F5F5;
  opacity: 0.9;
  font-weight: 700;
}
@media (min-width: 768px) {
  .services .section__title.typing-text::after {
    font-size: 0.25em;
  }
}
.services .container {
  position: relative;
  z-index: 1;
}
.services__grid {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
}

.service__item {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 2rem 0;
  background: transparent;
  border-radius: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  width: 95%;
  margin: 0 auto;
  position: relative;
}
.service__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(245, 245, 245, 0.3);
  margin: 0 1.5rem;
}
.service__item:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(245, 245, 245, 0.3);
  margin: 0 1.5rem;
}
.service__item:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(245, 245, 245, 0.3);
  margin: 0 1.5rem;
}
.service__item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.service__item:hover {
  transform: none;
}
@media (min-width: 992px) {
  .service__item {
    grid-template-columns: 1fr 1fr;
  }
}
.service__item .service__image {
  order: 1;
}
.service__item .service__content {
  order: 2;
}
.service__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service__image img {
  filter: drop-shadow(0 4px 8px rgba(239, 129, 36, 0.3));
  transition: all 0.3s ease;
  border-radius: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 350px;
  height: 350px;
}
.service__image img:hover {
  transform: scale(1.05);
}
.service__image svg {
  filter: drop-shadow(0 4px 8px rgba(239, 129, 36, 0.3));
  transition: all 0.3s ease;
}
.service__content {
  text-align: center;
}
@media (min-width: 992px) {
  .service__content {
    text-align: left;
  }
}
.service__title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  color: #F5F5F5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  position: relative;
  padding-left: 1.5rem;
}
@media (min-width: 768px) {
  .service__title {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .service__title {
    font-size: 3.6rem;
  }
}
.service__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 8px;
  height: 1em;
  background: linear-gradient(180deg, #ef8124 0%, rgba(239, 129, 36, 0.7) 100%);
  border-radius: 4px;
}
.service__description {
  color: #F5F5F5;
  line-height: 1.7;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .service__description {
    font-size: 1.5rem;
  }
}

.about {
  padding: 12rem 0;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(128, 128, 128, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 128, 128, 0.06) 1px, transparent 1px);
  background-size: 50px 50px, 50px 50px;
  background-position: 0 0;
  -webkit-animation: aboutGridMove 8s linear infinite;
          animation: aboutGridMove 8s linear infinite;
  z-index: -1;
}
.about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(128, 128, 128, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(128, 128, 128, 0.04) 1px, transparent 1px);
  background-size: 25px 25px, 25px 25px;
  background-position: 0 0;
  -webkit-animation: gridMoveReverse 6s linear infinite;
          animation: gridMoveReverse 6s linear infinite;
  z-index: -1;
}
.about__content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.about__description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .about__description {
    font-size: 1.5rem;
  }
}
.about__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.stat__item {
  text-align: center;
  padding: 2rem;
  background: #F5F5F5;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 245, 245, 0.3);
  transition: all 0.3s ease;
}
.stat__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
.stat__number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: #ef8124;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .stat__number {
    font-size: 3rem;
  }
}
.stat__label {
  color: #6C757D;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .stat__label {
    font-size: 1.25rem;
  }
}

.cta {
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%), url("../img/23389066.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #F5F5F5;
  padding: 12rem 0;
  text-align: center;
}
.cta .cta__title,
.cta .cta__description,
.cta .cta__buttons {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.cta.animate-in .cta__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.cta.animate-in .cta__description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.cta.animate-in .cta__buttons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.cta__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cta__title {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .cta__title {
    font-size: 3.6rem;
  }
}
.cta__description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .cta__description {
    font-size: 1.5rem;
  }
}
.cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta__buttons .button-primary,
.cta__buttons .button-outline {
  font-size: 1.875rem;
  padding: 1.5rem 3rem;
}
@media (min-width: 768px) {
  .cta__buttons .button-primary,
.cta__buttons .button-outline {
    font-size: 2.25rem;
    padding: 2rem 4rem;
  }
}
@media (min-width: 992px) {
  .cta__buttons .button-primary,
.cta__buttons .button-outline {
    font-size: 3rem;
    padding: 2rem 4rem;
  }
}

.company-info {
  margin-bottom: 4rem;
}
.company-info__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .company-info__grid {
    grid-template-columns: 2fr 1fr;
  }
}

.info-card {
  background-color: #F5F5F5;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.info-card__title {
  color: #ef8124;
  margin-bottom: 1.5rem;
}
.info-card__description {
  color: #6C757D;
  line-height: 1.7;
}
.info-list__term {
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.25rem;
}
.info-list__desc {
  margin-bottom: 1.5rem;
  color: #6C757D;
}

.contact-link {
  color: #ef8124;
  font-weight: 500;
}
.contact-link:hover {
  text-decoration: underline;
}

.company-story {
  margin-bottom: 4rem;
}
.company-story .story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.company-story .story-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #6C757D;
}

.values__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background-color: #F5F5F5;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.value-card__icon {
  margin-bottom: 1.5rem;
}
.value-card__title {
  color: #333333;
  margin-bottom: 1rem;
}
.value-card__description {
  color: #6C757D;
  line-height: 1.7;
}

.service-hero {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .service-hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.service-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  margin-bottom: 1.5rem;
}
.service-hero__description {
  color: #6C757D;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.service-hero__features {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-tag {
  background-color: #ef8124;
  color: #F5F5F5;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.service-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-mockup .mockup-screen {
  width: 300px;
  height: 200px;
  background-color: #333333;
  border-radius: 1rem;
  padding: 1.5rem;
}
.service-mockup .mockup-screen .screen-content {
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  border-radius: 0.25rem;
  padding: 1rem;
}
.service-mockup .mockup-screen .screen-content .ai-analysis {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.service-mockup .mockup-screen .screen-content .ai-analysis .analysis-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-mockup .mockup-screen .screen-content .ai-analysis .analysis-result .result-label {
  font-size: 0.875rem;
  color: #6C757D;
}
.service-mockup .mockup-screen .screen-content .ai-analysis .analysis-result .result-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ef8124;
}
.service-mockup .mockup-screen .screen-content .ai-analysis .analysis-visualization {
  flex: 1;
}
.service-mockup .mockup-screen .screen-content .ai-analysis .analysis-visualization .heatmap {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ef8124, #f6b883);
  border-radius: 0.25rem;
  opacity: 0.7;
}

.service-features {
  margin-bottom: 4rem;
}
.service-features .features__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .service-features .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background-color: #F5F5F5;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.feature-card__icon {
  margin-bottom: 1.5rem;
}
.feature-card__title {
  color: #333333;
  margin-bottom: 1rem;
}
.feature-card__description {
  color: #6C757D;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #6C757D;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ef8124;
  font-weight: 700;
}

.tech-specs {
  margin-bottom: 4rem;
}
.tech-specs .specs__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .tech-specs .specs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .tech-specs .specs__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.spec-card {
  background-color: #F5F5F5;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.spec-card__title {
  color: #ef8124;
  margin-bottom: 1.5rem;
}

.spec-list {
  list-style: none;
}
.spec-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #E5E6E7;
  color: #6C757D;
}
.spec-list li:last-child {
  border-bottom: none;
}

.use-cases {
  margin-bottom: 4rem;
}
.use-cases .use-cases__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .use-cases .use-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.use-case-card {
  background-color: #F5F5F5;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}
.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.use-case-card__title {
  color: #333333;
  margin-bottom: 1rem;
}
.use-case-card__description {
  color: #6C757D;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.use-case-stats .stat {
  text-align: center;
}
.use-case-stats .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ef8124;
  margin-bottom: 0.25rem;
}
.use-case-stats .stat-label {
  color: #6C757D;
  font-size: 0.875rem;
}

.service-cta {
  background-color: #E5E6E7;
  padding: 4rem;
  border-radius: 1rem;
  text-align: center;
}
.service-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.service-cta .cta-title {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  margin-bottom: 1.5rem;
}
.service-cta .cta-description {
  color: #6C757D;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.service-cta .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.recruit-hero {
  background: linear-gradient(135deg, #ef8124 0%, #b95c0e 100%);
  color: #F5F5F5;
  padding: 4rem;
  border-radius: 1rem;
  text-align: center;
  margin-bottom: 4rem;
}
.recruit-hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .recruit-hero__title {
    font-size: 2.25rem;
  }
}
.recruit-hero__description {
  font-size: 1.125rem;
  opacity: 0.9;
}

.job-openings {
  margin-bottom: 4rem;
}
.job-openings .jobs__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.job-card {
  background-color: #F5F5F5;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.job-card__header {
  border-bottom: 2px solid #E5E6E7;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.job-card__title {
  color: #333333;
  margin-bottom: 0.5rem;
}
.job-card__position {
  color: #ef8124;
  font-weight: 500;
  font-style: italic;
}
.job-card__content {
  margin-bottom: 2rem;
}
.job-card__footer {
  text-align: center;
}

.job-section {
  margin-bottom: 1.5rem;
}
.job-section__title {
  color: #ef8124;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.job-list {
  list-style: none;
}
.job-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #6C757D;
}
.job-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ef8124;
  font-weight: 700;
}

.employment-info {
  margin-bottom: 4rem;
}
.employment-info .employment__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .employment-info .employment__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.employment-card {
  background-color: #F5F5F5;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}
.employment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.employment-card__title {
  color: #ef8124;
  margin-bottom: 1.5rem;
}

.employment-list {
  list-style: none;
}
.employment-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #E5E6E7;
  color: #6C757D;
}
.employment-list li:last-child {
  border-bottom: none;
}

.application-process {
  margin-bottom: 4rem;
}
.application-process .application-content {
  max-width: 800px;
  margin: 0 auto;
}
.application-process .application-description {
  font-size: 1.125rem;
  color: #6C757D;
  text-align: center;
  margin-bottom: 2rem;
}
.application-process .application-info {
  text-align: center;
  margin-bottom: 3rem;
}
.application-process .application-email .email-label {
  display: block;
  color: #6C757D;
  margin-bottom: 0.5rem;
}
.application-process .application-email .email-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ef8124;
}
.application-process .application-email .email-link:hover {
  text-decoration: underline;
}

.contact-form .form-container,
.application-form .form-container {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form .form-title,
.application-form .form-title {
  color: #333333;
  text-align: center;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0.5rem;
}
.form-label .required {
  color: #ef8124;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #E5E6E7;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  transition: border-color 0.15s ease-in-out;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ef8124;
}
.form-input::-moz-placeholder, .form-select::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #6C757D;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #6C757D;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-file {
  width: 100%;
  padding: 0.5rem;
  border: 2px dashed #E5E6E7;
  border-radius: 0.5rem;
  background-color: #E5E6E7;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.form-file:hover {
  border-color: #ef8124;
  background-color: rgba(239, 129, 36, 0.05);
}

.form-help {
  display: block;
  color: #6C757D;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.checkbox-group .checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}
.checkbox-group .checkbox-label input[type=checkbox] {
  margin: 0;
}
.checkbox-group .checkbox-label .checkbox-text {
  color: #6C757D;
  line-height: 1.5;
}
.checkbox-group .checkbox-label .checkbox-text .privacy-link {
  color: #ef8124;
}
.checkbox-group .checkbox-label .checkbox-text .privacy-link:hover {
  text-decoration: underline;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-methods {
  margin-bottom: 4rem;
}
.contact-methods .contact-methods__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .contact-methods .contact-methods__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-method-card {
  background-color: #F5F5F5;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.contact-method-card__icon {
  margin-bottom: 1.5rem;
}
.contact-method-card__title {
  color: #333333;
  margin-bottom: 1rem;
}
.contact-method-card__description {
  color: #6C757D;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-email {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ef8124;
}
.contact-email:hover {
  text-decoration: underline;
}

.contact-address {
  font-style: normal;
  color: #6C757D;
  line-height: 1.7;
}

.faq {
  margin-bottom: 4rem;
}
.faq .faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #E5E6E7;
}
.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: #333333;
}
.faq__question:hover {
  color: #ef8124;
}
.faq__question .faq__icon {
  transition: transform 0.15s ease-in-out;
  flex-shrink: 0;
}
.faq__question.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.faq__answer.active {
  max-height: 200px;
}
.faq__answer p {
  padding: 0 0 1.5rem 0;
  color: #6C757D;
  line-height: 1.7;
}

.privacy-policy .privacy-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-policy .privacy-content h3 {
  color: #ef8124;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.privacy-policy .privacy-content ul {
  margin-bottom: 1.5rem;
}
.privacy-policy .privacy-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #6C757D;
}
.privacy-policy .privacy-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ef8124;
  font-weight: 700;
}
.privacy-policy .privacy-content p {
  color: #6C757D;
  line-height: 1.7;
}

.footer {
  background-color: #333333;
  color: #F5F5F5;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.index .footer {
  margin-top: 0;
}
.footer__content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .footer__content {
    grid-template-columns: 1fr 2fr;
  }
}
.footer__logo .logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
@media (min-width: 992px) {
  .footer__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__address {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  line-height: 1.7;
}
@media (min-width: 992px) {
  .footer__address {
    margin-bottom: 0;
  }
}
.footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer__nav-list a {
  color: #F5F5F5;
  opacity: 0.8;
  transition: opacity 0.15s ease-in-out;
}
.footer__nav-list a:hover {
  opacity: 1;
}
.footer__bottom {
  border-top: 1px solid rgba(245, 245, 245, 0.2);
  padding-top: 1.5rem;
  text-align: center;
}
.footer__copyright {
  opacity: 0.8;
  font-size: 0.875rem;
}

@media (max-width: 991px) {
  .header__nav {
    position: fixed;
    top: 96px;
    left: 1rem;
    right: 1rem;
    background-color: #F5F5F5;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }
  .header__nav.active {
    transform: translateY(0);
  }
  .header__nav .nav__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .header__nav .nav__link {
    color: #333333;
    text-shadow: none;
  }
  .header__nav .nav__link:hover, .header__nav .nav__link.active {
    color: #ef8124;
    text-shadow: none;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes typing-cursor {
  0%, 50% {
    border-color: #F5F5F5;
  }
  51%, 100% {
    border-color: transparent;
  }
}
@keyframes typing-cursor {
  0%, 50% {
    border-color: #F5F5F5;
  }
  51%, 100% {
    border-color: transparent;
  }
}
@-webkit-keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 25px 25px;
  }
  50% {
    background-position: 50px 50px;
  }
  75% {
    background-position: 25px 75px;
  }
  100% {
    background-position: 0 100px;
  }
}
@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 25px 25px;
  }
  50% {
    background-position: 50px 50px;
  }
  75% {
    background-position: 25px 75px;
  }
  100% {
    background-position: 0 100px;
  }
}
@-webkit-keyframes gridMoveReverse {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: -25px 25px;
  }
  50% {
    background-position: -50px 50px;
  }
  75% {
    background-position: -25px 75px;
  }
  100% {
    background-position: 0 100px;
  }
}
@keyframes gridMoveReverse {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: -25px 25px;
  }
  50% {
    background-position: -50px 50px;
  }
  75% {
    background-position: -25px 75px;
  }
  100% {
    background-position: 0 100px;
  }
}
@-webkit-keyframes gridMoveSlow {
  0% {
    background-position: 0 0;
  }
  33% {
    background-position: 33px 33px;
  }
  66% {
    background-position: 66px 66px;
  }
  100% {
    background-position: 100px 100px;
  }
}
@keyframes gridMoveSlow {
  0% {
    background-position: 0 0;
  }
  33% {
    background-position: 33px 33px;
  }
  66% {
    background-position: 66px 66px;
  }
  100% {
    background-position: 100px 100px;
  }
}
@-webkit-keyframes aboutGridMove {
  0% {
    background-position: 0 0, 0 0;
  }
  25% {
    background-position: 25px 25px, -25px 25px;
  }
  50% {
    background-position: 50px 50px, -50px 50px;
  }
  75% {
    background-position: 25px 75px, -25px 75px;
  }
  100% {
    background-position: 0 100px, 0 100px;
  }
}
@keyframes aboutGridMove {
  0% {
    background-position: 0 0, 0 0;
  }
  25% {
    background-position: 25px 25px, -25px 25px;
  }
  50% {
    background-position: 50px 50px, -50px 50px;
  }
  75% {
    background-position: 25px 75px, -25px 75px;
  }
  100% {
    background-position: 0 100px, 0 100px;
  }
}
.fade-in-up {
  -webkit-animation: fadeInUp 0.6s ease-out;
          animation: fadeInUp 0.6s ease-out;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

@media (max-width: 575px) {
  .hidden-mobile {
    display: none;
  }
}
@media (min-width: 576px) {
  .visible-mobile {
    display: none;
  }
}