@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #333333;
  background: #ffffff;
  font-size: 16px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body.menu-open {
  overflow: hidden;
}

.section {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }
}
.section__title {
  text-align: center;
  margin-bottom: 40px;
}
.section__title h2 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .section__title h2 {
    font-size: 2em;
  }
}
.section__title p {
  color: #1bb9d4;
  font-size: 1.1em;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 992px) {
  .hamburger {
    display: block;
    position: fixed;
    right: 20px;
    top: 18px;
    z-index: 999;
  }
}
.hamburger-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.hamburger-inner span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #003471;
  transition: all 0.3s ease;
  backface-visibility: hidden;
}
.hamburger-inner span:nth-child(1) {
  top: 0;
}
.hamburger-inner span:nth-child(2) {
  top: 11px;
}
.hamburger-inner span:nth-child(3) {
  top: 22px;
}
.hamburger.active .hamburger-inner span {
  background-color: #ffffff;
}
.hamburger.active .hamburger-inner span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.hamburger.active .hamburger-inner span:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-inner span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.menu-btn {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 992px) {
  .menu-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.menu-btn span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #1bb9d4;
  transition: all 0.3s ease;
}
.menu-btn span:nth-child(1) {
  top: 0;
}
.menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-btn span:nth-child(3) {
  bottom: 0;
}
.menu-btn.active span {
  background-color: #ffffff;
}
.menu-btn.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.site-nav {
  display: none;
}
@media (max-width: 992px) {
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 52, 113, 0.98), rgba(27, 185, 212, 0.98));
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding-top: 80px;
  }
  .site-nav.active {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transition: all 0.3s ease;
  }
}

.site-nav {
  display: none;
}
@media (max-width: 992px) {
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 52, 113, 0.98), rgba(27, 185, 212, 0.98));
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding-top: 80px;
  }
  .site-nav.active {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transition: all 0.3s ease;
  }
  .site-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
  }
  .site-nav .nav-list li:active {
    opacity: 1;
  }
  .site-nav .nav-list li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .site-nav .nav-list li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .site-nav .nav-list li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .site-nav .nav-list li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .site-nav .nav-list li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .site-nav .nav-list li:nth-child(6) {
    transition-delay: 0.6s;
  }
  .site-nav .nav-list li:nth-child(7) {
    transition-delay: 0.7s;
  }
  .site-nav .nav-list li:nth-child(8) {
    transition-delay: 0.8s;
  }
  .site-nav .nav-list li:nth-child(9) {
    transition-delay: 0.9s;
  }
  .site-nav .nav-list li:nth-child(10) {
    transition-delay: 1s;
  }
  .site-nav .nav-list li.show {
    opacity: 1;
    transform: translateY(0);
  }
  .site-nav .nav-list li .btn {
    color: #ffffff;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
  }
  .site-nav .nav-list li .btn:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .site-nav .nav-list li a {
    color: #ffffff;
    font-size: 1.4em;
    text-decoration: none;
    padding: 10px;
    display: inline-block;
    position: relative;
    letter-spacing: 0.1em;
  }
  .site-nav .nav-list li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1bb9d4;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  .site-nav .nav-list li a:hover::after {
    width: 100%;
  }
}

a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
  position: relative;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.header.hide {
  transform: translateY(-100%);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .header__inner {
    height: 60px;
  }
}
.header__logo img {
  height: 40px;
}
@media (max-width: 992px) {
  .header__logo img {
    height: 30px;
  }
}
.header__nav {
  display: block;
}
@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0, 52, 113, 0.98), rgba(27, 185, 212, 0.98));
    padding-top: 80px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .header__nav.active {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 992px) {
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 40px;
  }
}
.header__nav-list li {
  position: relative;
}
@media (max-width: 992px) {
  .header__nav-list li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }
  .header__nav-list li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .header__nav-list li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .header__nav-list li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .header__nav-list li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .header__nav-list li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .header__nav-list li:nth-child(6) {
    transition-delay: 0.6s;
  }
  .header__nav-list li:nth-child(7) {
    transition-delay: 0.7s;
  }
  .header__nav-list li:nth-child(8) {
    transition-delay: 0.8s;
  }
  .header__nav-list li:nth-child(9) {
    transition-delay: 0.9s;
  }
  .header__nav-list li:nth-child(10) {
    transition-delay: 1s;
  }
  .header__nav-list li.show {
    opacity: 1;
    transform: translateY(0);
  }
}
.header__nav-list li a {
  color: #333333;
}
.header__nav-list li .btn {
  color: #ffffff;
}
.header__nav a {
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
    max-width: 992px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
    max-width: 768px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 10px;
    max-width: 576px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(#113d83, #2b5cac);
}
.hero .hero-bg {
  width: 75%;
  height: 90%;
  position: absolute;
  right: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
}
.hero__content {
  max-width: 850px;
  text-align: left;
}
@media (max-width: 992px) {
  .hero__content {
    height: 80vh;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
  }
}
.hero__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.5s;
  background-color: #003471;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 40px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding: 10px 20px;
  }
}
.hero__catch {
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 1s;
  background-color: #003471;
  padding: 20px 40px;
  font-weight: 500;
  width: 820px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 992px) {
  .hero__catch {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .hero__catch {
    font-size: 1.1rem;
    padding: 10px 20px;
  }
  .hero__catch br {
    display: none;
  }
}

.service {
  padding: 100px 0;
  background: linear-gradient(#2b5cac, #1bb9d4);
}
@media (max-width: 768px) {
  .service {
    padding: 60px 0;
  }
}
.service .section-title {
  text-align: center;
  margin-bottom: 60px;
  color: white;
  font-size: 2.5rem;
  font-weight: 300;
}
.service .section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .service .section-title h2 {
    font-size: 2rem;
  }
}
.service .section-title p {
  color: #0056b3;
  font-size: 1.1rem;
}
.service_content {
  margin: 0 auto 50px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  display: flex;
}
.service_content:nth-child(odd) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .service_content:nth-child(odd) {
    padding: 0;
    margin-bottom: 30px;
    flex-direction: column;
  }
}
.service_content.visible {
  opacity: 1;
  transform: translateY(0);
}
.service_content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .service_content {
    padding: 0;
    margin-bottom: 30px;
    flex-direction: column;
  }
}
.service_content h3 {
  font-size: 1.8rem;
  color: #1bb9d4;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 300;
}
@media (max-width: 768px) {
  .service_content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
}
@media (max-width: 992px) {
  .service_content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .service_content h3 br {
    display: none;
  }
}
.service_content p {
  font-size: 1.1rem;
  line-height: 2;
  color: #666666;
}
@media (max-width: 768px) {
  .service_content p br {
    display: none;
  }
}
@media (max-width: 992px) {
  .service_content p {
    font-size: 1rem;
  }
}

.service_content {
  display: flex;
  height: 350px;
}
@media (max-width: 768px) {
  .service_content {
    height: 660px;
  }
}
@media (max-width: 576px) {
  .service_content {
    height: 500px;
  }
}
.service_content .service-img {
  max-width: 100%;
  height: auto;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .service_content .service-img {
    width: 100%;
  }
}
.service_content .desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-left: 50px;
}
@media (max-width: 992px) {
  .service_content .desc {
    margin-left: 0;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .service_content .desc p {
    font-size: 1rem;
  }
  .service_content .desc p br {
    display: none;
  }
}
.service_content:nth-child(even)::before {
  content: "";
  display: block;
  width: calc((100vw - 100%) / 2);
  height: 100%;
  position: absolute;
  right: calc((100vw - 100%) / 2 * -1);
  top: 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .service_content:nth-child(even)::before {
    display: none;
  }
}
.service_content:nth-child(odd)::before {
  content: "";
  display: block;
  width: calc((100vw - 100%) / 2);
  height: 100%;
  position: absolute;
  left: calc((100vw - 100%) / 2 * -1);
  top: 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .service_content:nth-child(odd)::before {
    display: none;
  }
}

h2 {
  color: #1bb9d4;
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 50px;
}

.works {
  padding: 100px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .works {
    padding: 60px 0;
  }
}
.works .container {
  display: flex;
  position: relative;
}
@media (max-width: 992px) {
  .works .container {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.works h2 {
  margin-right: 150px;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .works h2 {
    margin-right: 0;
  }
}
.works__grid {
  display: block;
  width: 70%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .works__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.works__item {
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .works__item {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .works__item {
    flex-direction: column;
  }
}
.works__item.visible {
  opacity: 1;
  transform: translateY(0);
}
.works__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.works__item:hover img {
  transform: scale(1.05);
}
.works__item img {
  width: 300px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  margin-right: 20px;
}
@media (max-width: 992px) {
  .works__item img {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
}
.works__item .content {
  padding: 10px;
}
.works__item .content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .works__item .content h3 {
    font-size: 1.2rem;
  }
}
.works__item .content h3 a {
  color: #333333;
}
.works__item .content p {
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 15px;
}
.works .btn {
  width: 230px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 50px;
  text-align: center;
}
.works .btn:hover {
  opacity: 0.8;
}
@media (max-width: 992px) {
  .works .btn {
    left: 50%;
    bottom: -70px;
    translate: -50%;
  }
}

.btn {
  background: linear-gradient(to right, #113d83, #1bb9d4);
  color: #ffffff;
  border-radius: 40px;
  padding: 15px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.btn:hover {
  opacity: 0.8;
}

.contact {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}
.contact .contact-img {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact .container {
  display: flex;
}
@media (max-width: 768px) {
  .contact .container {
    flex-direction: column;
  }
}
.contact .container .section-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 2rem;
  text-align: center;
  width: 40%;
  color: #ffffff;
}
.contact .container .section-title span {
  font-size: 50%;
}
@media (max-width: 768px) {
  .contact .container .section-title {
    margin: 0 auto;
    width: 100%;
  }
}
.contact .container .contact__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  width: 70%;
  color: #ffffff;
}
.contact .container .contact__content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .contact .container .contact__content p {
    font-size: 1rem;
  }
}
.contact .container .contact__content .phone {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .contact .container .contact__content .phone {
    font-size: 2rem;
  }
}
.contact .container .contact__content .hours {
  margin-bottom: 40px;
}
.contact .container .btn {
  width: 450px;
  display: block;
  margin: 0 auto;
  box-shadow: #666666 0px 1px 3px;
}
.contact .container .btn br {
  display: none;
}
.contact .container .btn:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .contact .container .btn {
    width: 100%;
  }
  .contact .container .btn br {
    display: block;
  }
}

.site-footer {
  background: #003471;
  color: #ffffff;
  padding: 80px 0 30px;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0 20px;
  }
}
@media (max-width: 992px) {
  .site-footer .container {
    grid-template-columns: 1fr 1fr;
  }
}
.site-footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.site-footer .footer-info {
  margin: 0 auto;
}
.site-footer .footer-info img {
  height: 70px;
  margin-bottom: 20px;
}
.site-footer .footer-info p {
  color: #ffffff;
  line-height: 1.8;
}
.site-footer .footer-nav {
  margin: 0 auto;
}
.site-footer .footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.site-footer .footer-nav ul li {
  display: flex;
  align-items: center;
  margin: 8px;
  width: calc(40% - 30px);
}
@media (max-width: 992px) {
  .site-footer .footer-nav ul li {
    width: calc(50% - 30px);
  }
}
.site-footer .footer-nav ul li a {
  color: #1bb9d4;
}
.site-footer .footer-nav ul li a:hover {
  opacity: 0.8;
}
.site-footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #ffffff;
  font-size: 0.9rem;
}

.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1bb9d4;
  z-index: 9999;
  transform: translateY(100%);
}
.page-transition.active {
  animation: pageTransition 1.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes pageTransition {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay:nth-child(1) {
  transition-delay: 0.1s;
}
.fade-in-delay:nth-child(2) {
  transition-delay: 0.2s;
}
.fade-in-delay:nth-child(3) {
  transition-delay: 0.3s;
}
.fade-in-delay:nth-child(4) {
  transition-delay: 0.4s;
}
.fade-in-delay:nth-child(5) {
  transition-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.page-header .container {
  display: flex;
  max-width: initial;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  margin-top: 80px;
  position: relative;
  background: linear-gradient(#113d83, #1bb9d4);
}
.page-header .page-title {
  white-space: nowrap;
  font-size: 2.5rem;
  text-align: left;
  color: #ffffff;
  width: 20%;
  display: inline-block;
  position: absolute;
  top: 40%;
  left: 5%;
  font-weight: bold;
  line-height: 3rem;
  z-index: 1;
}
.page-header .page-title span {
  font-size: 50%;
}
@media (max-width: 768px) {
  .page-header .page-title {
    font-size: 2.2rem;
    padding: 100px 0 60px;
    margin-bottom: 40px;
  }
}
.page-header .header-bg {
  height: 400px;
  width: 80%;
  background-size: cover;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 20%;
}

.form-group {
  margin-bottom: 30px;
}
.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0056b3;
}
.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-page {
  padding: 80px 0;
}
.contact-page .contact-content {
  max-width: 800px;
  margin: 0 auto;
}
.contact-page .contact-content .contact-info {
  text-align: center;
  margin-bottom: 50px;
}
.contact-page .contact-content .contact-info .phone {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0056b3;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .contact-page .contact-content .contact-info .phone {
    font-size: 2rem;
  }
}
.contact-page .contact-content .contact-info .hours {
  color: #666666;
  font-size: 1.1rem;
}
.contact-page .contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .contact-page .contact-form {
    padding: 20px;
  }
}
.contact-page .contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}
.contact-page .privacy-policy {
  margin: 40px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 5px;
}
.contact-page .privacy-policy h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.contact-page .privacy-policy p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666666;
}
.contact-page .submit-button {
  text-align: center;
  margin-top: 40px;
}
.contact-page .submit-button button {
  padding: 15px 50px;
  font-size: 1.1rem;
  background: #0056b3;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-page .submit-button button:hover {
  background: rgb(0, 61.4972067039, 128);
  transform: translateY(-2px);
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1rem;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #0056b3;
}

textarea {
  height: 150px;
  resize: vertical;
}

.about-page .company-info,
.about-page .history,
.about-page .future-info,
.about-page .service-info,
.about-page .service-details,
.about-page .partner-info,
.about-page .privacy-info,
.about-page .harrasment-info,
.about-page .infosec-info,
.service-page .company-info,
.service-page .history,
.service-page .future-info,
.service-page .service-info,
.service-page .service-details,
.service-page .partner-info,
.service-page .privacy-info,
.service-page .harrasment-info,
.service-page .infosec-info,
.partner-page .company-info,
.partner-page .history,
.partner-page .future-info,
.partner-page .service-info,
.partner-page .service-details,
.partner-page .partner-info,
.partner-page .privacy-info,
.partner-page .harrasment-info,
.partner-page .infosec-info,
.privacy-page .company-info,
.privacy-page .history,
.privacy-page .future-info,
.privacy-page .service-info,
.privacy-page .service-details,
.privacy-page .partner-info,
.privacy-page .privacy-info,
.privacy-page .harrasment-info,
.privacy-page .infosec-info,
.harrasment-page .company-info,
.harrasment-page .history,
.harrasment-page .future-info,
.harrasment-page .service-info,
.harrasment-page .service-details,
.harrasment-page .partner-info,
.harrasment-page .privacy-info,
.harrasment-page .harrasment-info,
.harrasment-page .infosec-info,
.infosec-page .company-info,
.infosec-page .history,
.infosec-page .future-info,
.infosec-page .service-info,
.infosec-page .service-details,
.infosec-page .partner-info,
.infosec-page .privacy-info,
.infosec-page .harrasment-info,
.infosec-page .infosec-info {
  margin-top: 100px;
}
.about-page .company-info h2,
.about-page .history h2,
.about-page .future-info h2,
.about-page .service-info h2,
.about-page .service-details h2,
.about-page .partner-info h2,
.about-page .privacy-info h2,
.about-page .harrasment-info h2,
.about-page .infosec-info h2,
.service-page .company-info h2,
.service-page .history h2,
.service-page .future-info h2,
.service-page .service-info h2,
.service-page .service-details h2,
.service-page .partner-info h2,
.service-page .privacy-info h2,
.service-page .harrasment-info h2,
.service-page .infosec-info h2,
.partner-page .company-info h2,
.partner-page .history h2,
.partner-page .future-info h2,
.partner-page .service-info h2,
.partner-page .service-details h2,
.partner-page .partner-info h2,
.partner-page .privacy-info h2,
.partner-page .harrasment-info h2,
.partner-page .infosec-info h2,
.privacy-page .company-info h2,
.privacy-page .history h2,
.privacy-page .future-info h2,
.privacy-page .service-info h2,
.privacy-page .service-details h2,
.privacy-page .partner-info h2,
.privacy-page .privacy-info h2,
.privacy-page .harrasment-info h2,
.privacy-page .infosec-info h2,
.harrasment-page .company-info h2,
.harrasment-page .history h2,
.harrasment-page .future-info h2,
.harrasment-page .service-info h2,
.harrasment-page .service-details h2,
.harrasment-page .partner-info h2,
.harrasment-page .privacy-info h2,
.harrasment-page .harrasment-info h2,
.harrasment-page .infosec-info h2,
.infosec-page .company-info h2,
.infosec-page .history h2,
.infosec-page .future-info h2,
.infosec-page .service-info h2,
.infosec-page .service-details h2,
.infosec-page .partner-info h2,
.infosec-page .privacy-info h2,
.infosec-page .harrasment-info h2,
.infosec-page .infosec-info h2 {
  margin-right: 0;
}
.about-page .company-info .info-table,
.about-page .history .info-table,
.about-page .future-info .info-table,
.about-page .service-info .info-table,
.about-page .service-details .info-table,
.about-page .partner-info .info-table,
.about-page .privacy-info .info-table,
.about-page .harrasment-info .info-table,
.about-page .infosec-info .info-table,
.service-page .company-info .info-table,
.service-page .history .info-table,
.service-page .future-info .info-table,
.service-page .service-info .info-table,
.service-page .service-details .info-table,
.service-page .partner-info .info-table,
.service-page .privacy-info .info-table,
.service-page .harrasment-info .info-table,
.service-page .infosec-info .info-table,
.partner-page .company-info .info-table,
.partner-page .history .info-table,
.partner-page .future-info .info-table,
.partner-page .service-info .info-table,
.partner-page .service-details .info-table,
.partner-page .partner-info .info-table,
.partner-page .privacy-info .info-table,
.partner-page .harrasment-info .info-table,
.partner-page .infosec-info .info-table,
.privacy-page .company-info .info-table,
.privacy-page .history .info-table,
.privacy-page .future-info .info-table,
.privacy-page .service-info .info-table,
.privacy-page .service-details .info-table,
.privacy-page .partner-info .info-table,
.privacy-page .privacy-info .info-table,
.privacy-page .harrasment-info .info-table,
.privacy-page .infosec-info .info-table,
.harrasment-page .company-info .info-table,
.harrasment-page .history .info-table,
.harrasment-page .future-info .info-table,
.harrasment-page .service-info .info-table,
.harrasment-page .service-details .info-table,
.harrasment-page .partner-info .info-table,
.harrasment-page .privacy-info .info-table,
.harrasment-page .harrasment-info .info-table,
.harrasment-page .infosec-info .info-table,
.infosec-page .company-info .info-table,
.infosec-page .history .info-table,
.infosec-page .future-info .info-table,
.infosec-page .service-info .info-table,
.infosec-page .service-details .info-table,
.infosec-page .partner-info .info-table,
.infosec-page .privacy-info .info-table,
.infosec-page .harrasment-info .info-table,
.infosec-page .infosec-info .info-table {
  width: 100%;
  border-collapse: collapse;
}
.about-page .company-info .info-table tr:first-child,
.about-page .history .info-table tr:first-child,
.about-page .future-info .info-table tr:first-child,
.about-page .service-info .info-table tr:first-child,
.about-page .service-details .info-table tr:first-child,
.about-page .partner-info .info-table tr:first-child,
.about-page .privacy-info .info-table tr:first-child,
.about-page .harrasment-info .info-table tr:first-child,
.about-page .infosec-info .info-table tr:first-child,
.service-page .company-info .info-table tr:first-child,
.service-page .history .info-table tr:first-child,
.service-page .future-info .info-table tr:first-child,
.service-page .service-info .info-table tr:first-child,
.service-page .service-details .info-table tr:first-child,
.service-page .partner-info .info-table tr:first-child,
.service-page .privacy-info .info-table tr:first-child,
.service-page .harrasment-info .info-table tr:first-child,
.service-page .infosec-info .info-table tr:first-child,
.partner-page .company-info .info-table tr:first-child,
.partner-page .history .info-table tr:first-child,
.partner-page .future-info .info-table tr:first-child,
.partner-page .service-info .info-table tr:first-child,
.partner-page .service-details .info-table tr:first-child,
.partner-page .partner-info .info-table tr:first-child,
.partner-page .privacy-info .info-table tr:first-child,
.partner-page .harrasment-info .info-table tr:first-child,
.partner-page .infosec-info .info-table tr:first-child,
.privacy-page .company-info .info-table tr:first-child,
.privacy-page .history .info-table tr:first-child,
.privacy-page .future-info .info-table tr:first-child,
.privacy-page .service-info .info-table tr:first-child,
.privacy-page .service-details .info-table tr:first-child,
.privacy-page .partner-info .info-table tr:first-child,
.privacy-page .privacy-info .info-table tr:first-child,
.privacy-page .harrasment-info .info-table tr:first-child,
.privacy-page .infosec-info .info-table tr:first-child,
.harrasment-page .company-info .info-table tr:first-child,
.harrasment-page .history .info-table tr:first-child,
.harrasment-page .future-info .info-table tr:first-child,
.harrasment-page .service-info .info-table tr:first-child,
.harrasment-page .service-details .info-table tr:first-child,
.harrasment-page .partner-info .info-table tr:first-child,
.harrasment-page .privacy-info .info-table tr:first-child,
.harrasment-page .harrasment-info .info-table tr:first-child,
.harrasment-page .infosec-info .info-table tr:first-child,
.infosec-page .company-info .info-table tr:first-child,
.infosec-page .history .info-table tr:first-child,
.infosec-page .future-info .info-table tr:first-child,
.infosec-page .service-info .info-table tr:first-child,
.infosec-page .service-details .info-table tr:first-child,
.infosec-page .partner-info .info-table tr:first-child,
.infosec-page .privacy-info .info-table tr:first-child,
.infosec-page .harrasment-info .info-table tr:first-child,
.infosec-page .infosec-info .info-table tr:first-child {
  border-top: 2px solid #bdcce0;
}
.about-page .company-info .info-table tr:last-child,
.about-page .history .info-table tr:last-child,
.about-page .future-info .info-table tr:last-child,
.about-page .service-info .info-table tr:last-child,
.about-page .service-details .info-table tr:last-child,
.about-page .partner-info .info-table tr:last-child,
.about-page .privacy-info .info-table tr:last-child,
.about-page .harrasment-info .info-table tr:last-child,
.about-page .infosec-info .info-table tr:last-child,
.service-page .company-info .info-table tr:last-child,
.service-page .history .info-table tr:last-child,
.service-page .future-info .info-table tr:last-child,
.service-page .service-info .info-table tr:last-child,
.service-page .service-details .info-table tr:last-child,
.service-page .partner-info .info-table tr:last-child,
.service-page .privacy-info .info-table tr:last-child,
.service-page .harrasment-info .info-table tr:last-child,
.service-page .infosec-info .info-table tr:last-child,
.partner-page .company-info .info-table tr:last-child,
.partner-page .history .info-table tr:last-child,
.partner-page .future-info .info-table tr:last-child,
.partner-page .service-info .info-table tr:last-child,
.partner-page .service-details .info-table tr:last-child,
.partner-page .partner-info .info-table tr:last-child,
.partner-page .privacy-info .info-table tr:last-child,
.partner-page .harrasment-info .info-table tr:last-child,
.partner-page .infosec-info .info-table tr:last-child,
.privacy-page .company-info .info-table tr:last-child,
.privacy-page .history .info-table tr:last-child,
.privacy-page .future-info .info-table tr:last-child,
.privacy-page .service-info .info-table tr:last-child,
.privacy-page .service-details .info-table tr:last-child,
.privacy-page .partner-info .info-table tr:last-child,
.privacy-page .privacy-info .info-table tr:last-child,
.privacy-page .harrasment-info .info-table tr:last-child,
.privacy-page .infosec-info .info-table tr:last-child,
.harrasment-page .company-info .info-table tr:last-child,
.harrasment-page .history .info-table tr:last-child,
.harrasment-page .future-info .info-table tr:last-child,
.harrasment-page .service-info .info-table tr:last-child,
.harrasment-page .service-details .info-table tr:last-child,
.harrasment-page .partner-info .info-table tr:last-child,
.harrasment-page .privacy-info .info-table tr:last-child,
.harrasment-page .harrasment-info .info-table tr:last-child,
.harrasment-page .infosec-info .info-table tr:last-child,
.infosec-page .company-info .info-table tr:last-child,
.infosec-page .history .info-table tr:last-child,
.infosec-page .future-info .info-table tr:last-child,
.infosec-page .service-info .info-table tr:last-child,
.infosec-page .service-details .info-table tr:last-child,
.infosec-page .partner-info .info-table tr:last-child,
.infosec-page .privacy-info .info-table tr:last-child,
.infosec-page .harrasment-info .info-table tr:last-child,
.infosec-page .infosec-info .info-table tr:last-child {
  border-bottom: 2px solid #bdcce0;
}
.about-page .company-info .info-table th,
.about-page .company-info .info-table td,
.about-page .history .info-table th,
.about-page .history .info-table td,
.about-page .future-info .info-table th,
.about-page .future-info .info-table td,
.about-page .service-info .info-table th,
.about-page .service-info .info-table td,
.about-page .service-details .info-table th,
.about-page .service-details .info-table td,
.about-page .partner-info .info-table th,
.about-page .partner-info .info-table td,
.about-page .privacy-info .info-table th,
.about-page .privacy-info .info-table td,
.about-page .harrasment-info .info-table th,
.about-page .harrasment-info .info-table td,
.about-page .infosec-info .info-table th,
.about-page .infosec-info .info-table td,
.service-page .company-info .info-table th,
.service-page .company-info .info-table td,
.service-page .history .info-table th,
.service-page .history .info-table td,
.service-page .future-info .info-table th,
.service-page .future-info .info-table td,
.service-page .service-info .info-table th,
.service-page .service-info .info-table td,
.service-page .service-details .info-table th,
.service-page .service-details .info-table td,
.service-page .partner-info .info-table th,
.service-page .partner-info .info-table td,
.service-page .privacy-info .info-table th,
.service-page .privacy-info .info-table td,
.service-page .harrasment-info .info-table th,
.service-page .harrasment-info .info-table td,
.service-page .infosec-info .info-table th,
.service-page .infosec-info .info-table td,
.partner-page .company-info .info-table th,
.partner-page .company-info .info-table td,
.partner-page .history .info-table th,
.partner-page .history .info-table td,
.partner-page .future-info .info-table th,
.partner-page .future-info .info-table td,
.partner-page .service-info .info-table th,
.partner-page .service-info .info-table td,
.partner-page .service-details .info-table th,
.partner-page .service-details .info-table td,
.partner-page .partner-info .info-table th,
.partner-page .partner-info .info-table td,
.partner-page .privacy-info .info-table th,
.partner-page .privacy-info .info-table td,
.partner-page .harrasment-info .info-table th,
.partner-page .harrasment-info .info-table td,
.partner-page .infosec-info .info-table th,
.partner-page .infosec-info .info-table td,
.privacy-page .company-info .info-table th,
.privacy-page .company-info .info-table td,
.privacy-page .history .info-table th,
.privacy-page .history .info-table td,
.privacy-page .future-info .info-table th,
.privacy-page .future-info .info-table td,
.privacy-page .service-info .info-table th,
.privacy-page .service-info .info-table td,
.privacy-page .service-details .info-table th,
.privacy-page .service-details .info-table td,
.privacy-page .partner-info .info-table th,
.privacy-page .partner-info .info-table td,
.privacy-page .privacy-info .info-table th,
.privacy-page .privacy-info .info-table td,
.privacy-page .harrasment-info .info-table th,
.privacy-page .harrasment-info .info-table td,
.privacy-page .infosec-info .info-table th,
.privacy-page .infosec-info .info-table td,
.harrasment-page .company-info .info-table th,
.harrasment-page .company-info .info-table td,
.harrasment-page .history .info-table th,
.harrasment-page .history .info-table td,
.harrasment-page .future-info .info-table th,
.harrasment-page .future-info .info-table td,
.harrasment-page .service-info .info-table th,
.harrasment-page .service-info .info-table td,
.harrasment-page .service-details .info-table th,
.harrasment-page .service-details .info-table td,
.harrasment-page .partner-info .info-table th,
.harrasment-page .partner-info .info-table td,
.harrasment-page .privacy-info .info-table th,
.harrasment-page .privacy-info .info-table td,
.harrasment-page .harrasment-info .info-table th,
.harrasment-page .harrasment-info .info-table td,
.harrasment-page .infosec-info .info-table th,
.harrasment-page .infosec-info .info-table td,
.infosec-page .company-info .info-table th,
.infosec-page .company-info .info-table td,
.infosec-page .history .info-table th,
.infosec-page .history .info-table td,
.infosec-page .future-info .info-table th,
.infosec-page .future-info .info-table td,
.infosec-page .service-info .info-table th,
.infosec-page .service-info .info-table td,
.infosec-page .service-details .info-table th,
.infosec-page .service-details .info-table td,
.infosec-page .partner-info .info-table th,
.infosec-page .partner-info .info-table td,
.infosec-page .privacy-info .info-table th,
.infosec-page .privacy-info .info-table td,
.infosec-page .harrasment-info .info-table th,
.infosec-page .harrasment-info .info-table td,
.infosec-page .infosec-info .info-table th,
.infosec-page .infosec-info .info-table td {
  padding: 15px;
  border-bottom: 1px solid #cccccc;
}
@media (max-width: 768px) {
  .about-page .company-info .info-table th,
  .about-page .company-info .info-table td,
  .about-page .history .info-table th,
  .about-page .history .info-table td,
  .about-page .future-info .info-table th,
  .about-page .future-info .info-table td,
  .about-page .service-info .info-table th,
  .about-page .service-info .info-table td,
  .about-page .service-details .info-table th,
  .about-page .service-details .info-table td,
  .about-page .partner-info .info-table th,
  .about-page .partner-info .info-table td,
  .about-page .privacy-info .info-table th,
  .about-page .privacy-info .info-table td,
  .about-page .harrasment-info .info-table th,
  .about-page .harrasment-info .info-table td,
  .about-page .infosec-info .info-table th,
  .about-page .infosec-info .info-table td,
  .service-page .company-info .info-table th,
  .service-page .company-info .info-table td,
  .service-page .history .info-table th,
  .service-page .history .info-table td,
  .service-page .future-info .info-table th,
  .service-page .future-info .info-table td,
  .service-page .service-info .info-table th,
  .service-page .service-info .info-table td,
  .service-page .service-details .info-table th,
  .service-page .service-details .info-table td,
  .service-page .partner-info .info-table th,
  .service-page .partner-info .info-table td,
  .service-page .privacy-info .info-table th,
  .service-page .privacy-info .info-table td,
  .service-page .harrasment-info .info-table th,
  .service-page .harrasment-info .info-table td,
  .service-page .infosec-info .info-table th,
  .service-page .infosec-info .info-table td,
  .partner-page .company-info .info-table th,
  .partner-page .company-info .info-table td,
  .partner-page .history .info-table th,
  .partner-page .history .info-table td,
  .partner-page .future-info .info-table th,
  .partner-page .future-info .info-table td,
  .partner-page .service-info .info-table th,
  .partner-page .service-info .info-table td,
  .partner-page .service-details .info-table th,
  .partner-page .service-details .info-table td,
  .partner-page .partner-info .info-table th,
  .partner-page .partner-info .info-table td,
  .partner-page .privacy-info .info-table th,
  .partner-page .privacy-info .info-table td,
  .partner-page .harrasment-info .info-table th,
  .partner-page .harrasment-info .info-table td,
  .partner-page .infosec-info .info-table th,
  .partner-page .infosec-info .info-table td,
  .privacy-page .company-info .info-table th,
  .privacy-page .company-info .info-table td,
  .privacy-page .history .info-table th,
  .privacy-page .history .info-table td,
  .privacy-page .future-info .info-table th,
  .privacy-page .future-info .info-table td,
  .privacy-page .service-info .info-table th,
  .privacy-page .service-info .info-table td,
  .privacy-page .service-details .info-table th,
  .privacy-page .service-details .info-table td,
  .privacy-page .partner-info .info-table th,
  .privacy-page .partner-info .info-table td,
  .privacy-page .privacy-info .info-table th,
  .privacy-page .privacy-info .info-table td,
  .privacy-page .harrasment-info .info-table th,
  .privacy-page .harrasment-info .info-table td,
  .privacy-page .infosec-info .info-table th,
  .privacy-page .infosec-info .info-table td,
  .harrasment-page .company-info .info-table th,
  .harrasment-page .company-info .info-table td,
  .harrasment-page .history .info-table th,
  .harrasment-page .history .info-table td,
  .harrasment-page .future-info .info-table th,
  .harrasment-page .future-info .info-table td,
  .harrasment-page .service-info .info-table th,
  .harrasment-page .service-info .info-table td,
  .harrasment-page .service-details .info-table th,
  .harrasment-page .service-details .info-table td,
  .harrasment-page .partner-info .info-table th,
  .harrasment-page .partner-info .info-table td,
  .harrasment-page .privacy-info .info-table th,
  .harrasment-page .privacy-info .info-table td,
  .harrasment-page .harrasment-info .info-table th,
  .harrasment-page .harrasment-info .info-table td,
  .harrasment-page .infosec-info .info-table th,
  .harrasment-page .infosec-info .info-table td,
  .infosec-page .company-info .info-table th,
  .infosec-page .company-info .info-table td,
  .infosec-page .history .info-table th,
  .infosec-page .history .info-table td,
  .infosec-page .future-info .info-table th,
  .infosec-page .future-info .info-table td,
  .infosec-page .service-info .info-table th,
  .infosec-page .service-info .info-table td,
  .infosec-page .service-details .info-table th,
  .infosec-page .service-details .info-table td,
  .infosec-page .partner-info .info-table th,
  .infosec-page .partner-info .info-table td,
  .infosec-page .privacy-info .info-table th,
  .infosec-page .privacy-info .info-table td,
  .infosec-page .harrasment-info .info-table th,
  .infosec-page .harrasment-info .info-table td,
  .infosec-page .infosec-info .info-table th,
  .infosec-page .infosec-info .info-table td {
    display: block;
    width: 100%;
  }
}
.about-page .company-info .info-table th a,
.about-page .company-info .info-table td a,
.about-page .history .info-table th a,
.about-page .history .info-table td a,
.about-page .future-info .info-table th a,
.about-page .future-info .info-table td a,
.about-page .service-info .info-table th a,
.about-page .service-info .info-table td a,
.about-page .service-details .info-table th a,
.about-page .service-details .info-table td a,
.about-page .partner-info .info-table th a,
.about-page .partner-info .info-table td a,
.about-page .privacy-info .info-table th a,
.about-page .privacy-info .info-table td a,
.about-page .harrasment-info .info-table th a,
.about-page .harrasment-info .info-table td a,
.about-page .infosec-info .info-table th a,
.about-page .infosec-info .info-table td a,
.service-page .company-info .info-table th a,
.service-page .company-info .info-table td a,
.service-page .history .info-table th a,
.service-page .history .info-table td a,
.service-page .future-info .info-table th a,
.service-page .future-info .info-table td a,
.service-page .service-info .info-table th a,
.service-page .service-info .info-table td a,
.service-page .service-details .info-table th a,
.service-page .service-details .info-table td a,
.service-page .partner-info .info-table th a,
.service-page .partner-info .info-table td a,
.service-page .privacy-info .info-table th a,
.service-page .privacy-info .info-table td a,
.service-page .harrasment-info .info-table th a,
.service-page .harrasment-info .info-table td a,
.service-page .infosec-info .info-table th a,
.service-page .infosec-info .info-table td a,
.partner-page .company-info .info-table th a,
.partner-page .company-info .info-table td a,
.partner-page .history .info-table th a,
.partner-page .history .info-table td a,
.partner-page .future-info .info-table th a,
.partner-page .future-info .info-table td a,
.partner-page .service-info .info-table th a,
.partner-page .service-info .info-table td a,
.partner-page .service-details .info-table th a,
.partner-page .service-details .info-table td a,
.partner-page .partner-info .info-table th a,
.partner-page .partner-info .info-table td a,
.partner-page .privacy-info .info-table th a,
.partner-page .privacy-info .info-table td a,
.partner-page .harrasment-info .info-table th a,
.partner-page .harrasment-info .info-table td a,
.partner-page .infosec-info .info-table th a,
.partner-page .infosec-info .info-table td a,
.privacy-page .company-info .info-table th a,
.privacy-page .company-info .info-table td a,
.privacy-page .history .info-table th a,
.privacy-page .history .info-table td a,
.privacy-page .future-info .info-table th a,
.privacy-page .future-info .info-table td a,
.privacy-page .service-info .info-table th a,
.privacy-page .service-info .info-table td a,
.privacy-page .service-details .info-table th a,
.privacy-page .service-details .info-table td a,
.privacy-page .partner-info .info-table th a,
.privacy-page .partner-info .info-table td a,
.privacy-page .privacy-info .info-table th a,
.privacy-page .privacy-info .info-table td a,
.privacy-page .harrasment-info .info-table th a,
.privacy-page .harrasment-info .info-table td a,
.privacy-page .infosec-info .info-table th a,
.privacy-page .infosec-info .info-table td a,
.harrasment-page .company-info .info-table th a,
.harrasment-page .company-info .info-table td a,
.harrasment-page .history .info-table th a,
.harrasment-page .history .info-table td a,
.harrasment-page .future-info .info-table th a,
.harrasment-page .future-info .info-table td a,
.harrasment-page .service-info .info-table th a,
.harrasment-page .service-info .info-table td a,
.harrasment-page .service-details .info-table th a,
.harrasment-page .service-details .info-table td a,
.harrasment-page .partner-info .info-table th a,
.harrasment-page .partner-info .info-table td a,
.harrasment-page .privacy-info .info-table th a,
.harrasment-page .privacy-info .info-table td a,
.harrasment-page .harrasment-info .info-table th a,
.harrasment-page .harrasment-info .info-table td a,
.harrasment-page .infosec-info .info-table th a,
.harrasment-page .infosec-info .info-table td a,
.infosec-page .company-info .info-table th a,
.infosec-page .company-info .info-table td a,
.infosec-page .history .info-table th a,
.infosec-page .history .info-table td a,
.infosec-page .future-info .info-table th a,
.infosec-page .future-info .info-table td a,
.infosec-page .service-info .info-table th a,
.infosec-page .service-info .info-table td a,
.infosec-page .service-details .info-table th a,
.infosec-page .service-details .info-table td a,
.infosec-page .partner-info .info-table th a,
.infosec-page .partner-info .info-table td a,
.infosec-page .privacy-info .info-table th a,
.infosec-page .privacy-info .info-table td a,
.infosec-page .harrasment-info .info-table th a,
.infosec-page .harrasment-info .info-table td a,
.infosec-page .infosec-info .info-table th a,
.infosec-page .infosec-info .info-table td a {
  color: #1bb9d4;
  padding: initial;
}
.about-page .company-info .info-table th,
.about-page .history .info-table th,
.about-page .future-info .info-table th,
.about-page .service-info .info-table th,
.about-page .service-details .info-table th,
.about-page .partner-info .info-table th,
.about-page .privacy-info .info-table th,
.about-page .harrasment-info .info-table th,
.about-page .infosec-info .info-table th,
.service-page .company-info .info-table th,
.service-page .history .info-table th,
.service-page .future-info .info-table th,
.service-page .service-info .info-table th,
.service-page .service-details .info-table th,
.service-page .partner-info .info-table th,
.service-page .privacy-info .info-table th,
.service-page .harrasment-info .info-table th,
.service-page .infosec-info .info-table th,
.partner-page .company-info .info-table th,
.partner-page .history .info-table th,
.partner-page .future-info .info-table th,
.partner-page .service-info .info-table th,
.partner-page .service-details .info-table th,
.partner-page .partner-info .info-table th,
.partner-page .privacy-info .info-table th,
.partner-page .harrasment-info .info-table th,
.partner-page .infosec-info .info-table th,
.privacy-page .company-info .info-table th,
.privacy-page .history .info-table th,
.privacy-page .future-info .info-table th,
.privacy-page .service-info .info-table th,
.privacy-page .service-details .info-table th,
.privacy-page .partner-info .info-table th,
.privacy-page .privacy-info .info-table th,
.privacy-page .harrasment-info .info-table th,
.privacy-page .infosec-info .info-table th,
.harrasment-page .company-info .info-table th,
.harrasment-page .history .info-table th,
.harrasment-page .future-info .info-table th,
.harrasment-page .service-info .info-table th,
.harrasment-page .service-details .info-table th,
.harrasment-page .partner-info .info-table th,
.harrasment-page .privacy-info .info-table th,
.harrasment-page .harrasment-info .info-table th,
.harrasment-page .infosec-info .info-table th,
.infosec-page .company-info .info-table th,
.infosec-page .history .info-table th,
.infosec-page .future-info .info-table th,
.infosec-page .service-info .info-table th,
.infosec-page .service-details .info-table th,
.infosec-page .partner-info .info-table th,
.infosec-page .privacy-info .info-table th,
.infosec-page .harrasment-info .info-table th,
.infosec-page .infosec-info .info-table th {
  width: 20%;
  font-weight: bold;
  text-align: left;
  color: #1bb9d4;
}
@media (max-width: 768px) {
  .about-page .company-info .info-table th,
  .about-page .history .info-table th,
  .about-page .future-info .info-table th,
  .about-page .service-info .info-table th,
  .about-page .service-details .info-table th,
  .about-page .partner-info .info-table th,
  .about-page .privacy-info .info-table th,
  .about-page .harrasment-info .info-table th,
  .about-page .infosec-info .info-table th,
  .service-page .company-info .info-table th,
  .service-page .history .info-table th,
  .service-page .future-info .info-table th,
  .service-page .service-info .info-table th,
  .service-page .service-details .info-table th,
  .service-page .partner-info .info-table th,
  .service-page .privacy-info .info-table th,
  .service-page .harrasment-info .info-table th,
  .service-page .infosec-info .info-table th,
  .partner-page .company-info .info-table th,
  .partner-page .history .info-table th,
  .partner-page .future-info .info-table th,
  .partner-page .service-info .info-table th,
  .partner-page .service-details .info-table th,
  .partner-page .partner-info .info-table th,
  .partner-page .privacy-info .info-table th,
  .partner-page .harrasment-info .info-table th,
  .partner-page .infosec-info .info-table th,
  .privacy-page .company-info .info-table th,
  .privacy-page .history .info-table th,
  .privacy-page .future-info .info-table th,
  .privacy-page .service-info .info-table th,
  .privacy-page .service-details .info-table th,
  .privacy-page .partner-info .info-table th,
  .privacy-page .privacy-info .info-table th,
  .privacy-page .harrasment-info .info-table th,
  .privacy-page .infosec-info .info-table th,
  .harrasment-page .company-info .info-table th,
  .harrasment-page .history .info-table th,
  .harrasment-page .future-info .info-table th,
  .harrasment-page .service-info .info-table th,
  .harrasment-page .service-details .info-table th,
  .harrasment-page .partner-info .info-table th,
  .harrasment-page .privacy-info .info-table th,
  .harrasment-page .harrasment-info .info-table th,
  .harrasment-page .infosec-info .info-table th,
  .infosec-page .company-info .info-table th,
  .infosec-page .history .info-table th,
  .infosec-page .future-info .info-table th,
  .infosec-page .service-info .info-table th,
  .infosec-page .service-details .info-table th,
  .infosec-page .partner-info .info-table th,
  .infosec-page .privacy-info .info-table th,
  .infosec-page .harrasment-info .info-table th,
  .infosec-page .infosec-info .info-table th {
    width: 100%;
  }
}
.about-page .history .info-table th,
.service-page .history .info-table th,
.partner-page .history .info-table th,
.privacy-page .history .info-table th,
.harrasment-page .history .info-table th,
.infosec-page .history .info-table th {
  color: #333333;
  font-weight: 300;
}
.about-page .future-info .future-container,
.service-page .future-info .future-container,
.partner-page .future-info .future-container,
.privacy-page .future-info .future-container,
.harrasment-page .future-info .future-container,
.infosec-page .future-info .future-container {
  counter-reset: step-index;
}
.about-page .future-info .future-container .future-goal,
.service-page .future-info .future-container .future-goal,
.partner-page .future-info .future-container .future-goal,
.privacy-page .future-info .future-container .future-goal,
.harrasment-page .future-info .future-container .future-goal,
.infosec-page .future-info .future-container .future-goal {
  width: 90%;
  margin: 0 auto;
  counter-increment: step-index;
  position: relative;
}
@media (max-width: 768px) {
  .about-page .future-info .future-container .future-goal,
  .service-page .future-info .future-container .future-goal,
  .partner-page .future-info .future-container .future-goal,
  .privacy-page .future-info .future-container .future-goal,
  .harrasment-page .future-info .future-container .future-goal,
  .infosec-page .future-info .future-container .future-goal {
    width: 70%;
  }
}
@media (max-width: 576px) {
  .about-page .future-info .future-container .future-goal,
  .service-page .future-info .future-container .future-goal,
  .partner-page .future-info .future-container .future-goal,
  .privacy-page .future-info .future-container .future-goal,
  .harrasment-page .future-info .future-container .future-goal,
  .infosec-page .future-info .future-container .future-goal {
    width: 60%;
  }
}
.about-page .future-info .future-container .future-goal:not(:last-child)::before,
.service-page .future-info .future-container .future-goal:not(:last-child)::before,
.partner-page .future-info .future-container .future-goal:not(:last-child)::before,
.privacy-page .future-info .future-container .future-goal:not(:last-child)::before,
.harrasment-page .future-info .future-container .future-goal:not(:last-child)::before,
.infosec-page .future-info .future-container .future-goal:not(:last-child)::before {
  position: absolute;
  top: 0;
  left: -47px;
  width: 4px;
  height: 290%;
  content: "";
  background-color: #003471;
}
.about-page .future-info .future-container .future-goal h3,
.service-page .future-info .future-container .future-goal h3,
.partner-page .future-info .future-container .future-goal h3,
.privacy-page .future-info .future-container .future-goal h3,
.harrasment-page .future-info .future-container .future-goal h3,
.infosec-page .future-info .future-container .future-goal h3 {
  font-size: 1.5rem;
  color: #003471;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
}
@media (max-width: 768px) {
  .about-page .future-info .future-container .future-goal h3,
  .service-page .future-info .future-container .future-goal h3,
  .partner-page .future-info .future-container .future-goal h3,
  .privacy-page .future-info .future-container .future-goal h3,
  .harrasment-page .future-info .future-container .future-goal h3,
  .infosec-page .future-info .future-container .future-goal h3 {
    font-size: 1.3rem;
  }
}
.about-page .future-info .future-container .future-goal h3::before,
.service-page .future-info .future-container .future-goal h3::before,
.partner-page .future-info .future-container .future-goal h3::before,
.privacy-page .future-info .future-container .future-goal h3::before,
.harrasment-page .future-info .future-container .future-goal h3::before,
.infosec-page .future-info .future-container .future-goal h3::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: #003471;
  color: white;
  border-radius: 40px;
  margin-bottom: 10px;
  content: "0" counter(step-index);
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  position: absolute;
  left: -70px;
  top: 0;
  font-size: 1rem;
}
.about-page .future-info .future-container .future-goal p,
.service-page .future-info .future-container .future-goal p,
.partner-page .future-info .future-container .future-goal p,
.privacy-page .future-info .future-container .future-goal p,
.harrasment-page .future-info .future-container .future-goal p,
.infosec-page .future-info .future-container .future-goal p {
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}

.service-page {
  margin-bottom: 100px;
}
.service-page .service-info p {
  margin-bottom: 20px;
}
.service-page .service-info .service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-page .service-info .service-list li {
  width: 30%;
  margin-bottom: 50px;
  text-align: center;
  transition: all 0.3s ease;
  background-color: #cee7ff;
  border-radius: 10px;
  list-style: none;
  height: 100px;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 992px) {
  .service-page .service-info .service-list li {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .service-page .service-info .service-list li {
    width: 100%;
  }
}
.service-page .service-info .service-list li span {
  font-size: 80%;
  font-weight: 300;
}
.service-page .service-info .service-list li:nth-of-type(4) {
  width: 48%;
}
@media (max-width: 768px) {
  .service-page .service-info .service-list li:nth-of-type(4) {
    width: 100%;
  }
}
.service-page .service-info .service-list li:nth-of-type(5) {
  width: 48%;
}
@media (max-width: 768px) {
  .service-page .service-info .service-list li:nth-of-type(5) {
    width: 100%;
  }
}
.service-page .service-details .detail-box {
  display: flex;
  gap: 5%;
  border: 1px solid #cccccc;
  padding: 20px;
}
@media (max-width: 768px) {
  .service-page .service-details .detail-box {
    flex-direction: column;
  }
}
.service-page .service-details .detail-box .details-container {
  width: 30%;
}
@media (max-width: 768px) {
  .service-page .service-details .detail-box .details-container {
    width: 100%;
  }
}
.service-page .service-details .detail-box .details-container h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .service-page .service-details .detail-box .details-container h4 {
    font-size: 1rem;
  }
}
.service-page .service-details .detail-box .details-container p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.partner-page .partner-info .partner-txt {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}
.partner-page .partner-info .partner-box {
  border: 1px solid #cccccc;
  padding: 20px;
  margin-bottom: 30px;
}
.partner-page .partner-info .partner-box h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .partner-page .partner-info .partner-box h4 {
    font-size: 1rem;
  }
}
.partner-page .partner-info .partner-box p {
  font-size: 1rem;
  text-align: left;
}

.works-archive .works__grid {
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.works-archive .works__grid .works__item {
  flex-direction: column;
  width: 540px;
  gap: 5%;
  margin: 20px;
  background: #cee7ff;
}
@media (max-width: 992px) {
  .works-archive .works__grid .works__item {
    font-size: 1rem;
    width: 430px;
  }
}
.works-archive .works__grid .works__item .content {
  width: 100%;
}
.works-archive .works__grid .works__item .content h3 {
  color: #1bb9d4;
}
.works-archive .works__grid .works__item .content a {
  color: #333333;
}
.works-archive .works__grid .works__item img {
  width: 100%;
  height: 300px;
}

.single-works .container {
  padding: 20px;
}
.single-works .container .works-content h3 {
  color: #1bb9d4;
  margin-bottom: 20px;
  font-size: 2rem;
}
.single-works .container .works-content img {
  width: 300px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-works .container .works-content .works-body .acf-section {
  margin: 50px 0;
  border: 1px solid #cccccc;
  padding: 20px;
  letter-spacing: 0.1em;
}
.single-works .container .works-content .works-body .acf-section h4 {
  margin-bottom: 20px;
}
.single-works .container .works-content .works-body .acf-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
}
.single-works .container .works-content .works-body .acf-section ul {
  list-style: disc inside;
  margin-bottom: 20px;
}
.single-works .container .works-content .works-body .acf-section ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #333333;
}

.application-form_content {
  margin: 0 auto;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .application-form_content {
    padding: 30px 15px;
  }
}
.application-form_content .form-description {
  text-align: left;
  margin-top: 30px;
}
.application-form_content .form-description .intro-text {
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .application-form_content .form-description .intro-text {
    font-size: 1.2rem;
  }
}

.contact-form-section {
  margin-bottom: 50px;
}
.contact-form-section .form-container .wpcf7-form {
  /* 必須・任意 */
  /* input・textarea */
  /* プレースホルダー */
  /* Google Chrome / Safari / Mozilla Firefox / Opera */
  /* Microsoft Edge */
  /* Internet Explorer */
}
.contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap label {
  display: flex;
  margin-bottom: 5px;
  font-weight: 400;
  color: #333333;
}
.contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap label .required {
  color: #e74c3c;
  margin-left: 3px;
}
.contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap textarea.wpcf7-form-control {
  min-height: 120px;
  resize: vertical;
}
.contact-form-section .form-container .wpcf7-form .cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  border-bottom: 1px solid #cccccc;
}
.contact-form-section .form-container .wpcf7-form .cf7__list .wpcf7-form-control {
  padding: 15px;
  border-color: #cccccc;
  border-radius: 5px;
}
.contact-form-section .form-container .wpcf7-form .cf7__list dt {
  width: 20%;
  padding: 15px;
  color: #1bb9d4;
  font-weight: 600;
  border-bottom: 1px solid #cccccc;
  align-items: center;
  display: flex;
}
.contact-form-section .form-container .wpcf7-form .cf7__list dt p {
  margin: 0;
}
.contact-form-section .form-container .wpcf7-form .cf7__list dd {
  width: 80%;
  padding: 15px;
  border-bottom: 1px solid #cccccc;
}
.contact-form-section .form-container .wpcf7-form .cf7__required,
.contact-form-section .form-container .wpcf7-form .cf7__optional {
  padding: 6px;
  color: #be1d1d;
  font-size: 12px;
  vertical-align: 1px;
}
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text],
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel],
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email],
.contact-form-section .form-container .wpcf7-form .cf7__list dd textarea {
  width: 100%;
  padding: 15px 20px;
}
.contact-form-section .form-container .wpcf7-form .cf7__list dd .wpcf7-list-item:nth-child(n+2) {
  margin-top: 18px;
}
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]::-moz-placeholder, .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]::-moz-placeholder, .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]::-moz-placeholder, .contact-form-section .form-container .wpcf7-form .cf7__list dd textarea::-moz-placeholder {
  color: #a5a5a5;
}
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]::placeholder,
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]::placeholder,
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]::placeholder,
.contact-form-section .form-container .wpcf7-form .cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]::-ms-input-placeholder,
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]::-ms-input-placeholder,
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]::-ms-input-placeholder,
.contact-form-section .form-container .wpcf7-form .cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
}
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]:-ms-input-placeholder,
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]:-ms-input-placeholder,
.contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]:-ms-input-placeholder,
.contact-form-section .form-container .wpcf7-form .cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}
.contact-form-section .form-container .wpcf7-form input[type=submit]:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .contact-form-section .form-container .wpcf7-form {
    /* 送信ボタン */
  }
  .contact-form-section .form-container .wpcf7-form .cf7__list dt {
    width: 100%;
    border: none;
  }
  .contact-form-section .form-container .wpcf7-form .cf7__list dd {
    width: 100%;
  }
  .contact-form-section .form-container .wpcf7-form .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }
  .contact-form-section .form-container .wpcf7-form .cf7__list dd .wpcf7-form-control-wrap input,
  .contact-form-section .form-container .wpcf7-form textarea {
    margin-left: 0;
  }
  .contact-form-section .form-container .wpcf7-form input[type=submit] {
    height: 56px;
    font-size: 1.1rem;
  }
}

.cf7 .btn {
  width: 20%;
  margin: 0 auto;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 992px) {
  .cf7 .btn {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .cf7 .btn {
    width: 50%;
  }
}
.cf7 .btn .wpcf7-form-control {
  width: 100%;
  padding: 15px;
  transition: border-color 0.3s ease;
  background: linear-gradient(to right, #113d83, #1bb9d4);
  color: #ffffff;
  border-radius: 40px;
  padding: 15px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.cf7 .btn .wpcf7-form-control:focus {
  outline: none;
  border-color: #333333;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
.cf7 .btn .wpcf7-form-control.wpcf7-not-valid {
  border-color: #e74c3c;
}
.cf7 .btn .wpcf7-spinner {
  display: none;
}

.privacy-page .container,
.harrasment-page .container,
.infosec-page .container {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .privacy-page .container,
  .harrasment-page .container,
  .infosec-page .container {
    flex-direction: column;
  }
}
.privacy-page .container .privacy-info,
.privacy-page .container .harrasment-info,
.privacy-page .container .infosec-info,
.harrasment-page .container .privacy-info,
.harrasment-page .container .harrasment-info,
.harrasment-page .container .infosec-info,
.infosec-page .container .privacy-info,
.infosec-page .container .harrasment-info,
.infosec-page .container .infosec-info {
  width: 30%;
  padding: 20px;
}
@media (max-width: 768px) {
  .privacy-page .container .privacy-info,
  .privacy-page .container .harrasment-info,
  .privacy-page .container .infosec-info,
  .harrasment-page .container .privacy-info,
  .harrasment-page .container .harrasment-info,
  .harrasment-page .container .infosec-info,
  .infosec-page .container .privacy-info,
  .infosec-page .container .harrasment-info,
  .infosec-page .container .infosec-info {
    margin-top: 0;
    width: 100%;
  }
}
.privacy-page .container .privacy-info h2,
.privacy-page .container .harrasment-info h2,
.privacy-page .container .infosec-info h2,
.harrasment-page .container .privacy-info h2,
.harrasment-page .container .harrasment-info h2,
.harrasment-page .container .infosec-info h2,
.infosec-page .container .privacy-info h2,
.infosec-page .container .harrasment-info h2,
.infosec-page .container .infosec-info h2 {
  width: 70%;
}
.privacy-page .container .privacy-info .regulation_cat,
.privacy-page .container .harrasment-info .regulation_cat,
.privacy-page .container .infosec-info .regulation_cat,
.harrasment-page .container .privacy-info .regulation_cat,
.harrasment-page .container .harrasment-info .regulation_cat,
.harrasment-page .container .infosec-info .regulation_cat,
.infosec-page .container .privacy-info .regulation_cat,
.infosec-page .container .harrasment-info .regulation_cat,
.infosec-page .container .infosec-info .regulation_cat {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.privacy-page .container .privacy-info .regulation_cat a,
.privacy-page .container .harrasment-info .regulation_cat a,
.privacy-page .container .infosec-info .regulation_cat a,
.harrasment-page .container .privacy-info .regulation_cat a,
.harrasment-page .container .harrasment-info .regulation_cat a,
.harrasment-page .container .infosec-info .regulation_cat a,
.infosec-page .container .privacy-info .regulation_cat a,
.infosec-page .container .harrasment-info .regulation_cat a,
.infosec-page .container .infosec-info .regulation_cat a {
  color: #1bb9d4;
  margin: 10px;
}
@media (max-width: 768px) {
  .privacy-page .container .privacy-info .regulation_cat a,
  .privacy-page .container .harrasment-info .regulation_cat a,
  .privacy-page .container .infosec-info .regulation_cat a,
  .harrasment-page .container .privacy-info .regulation_cat a,
  .harrasment-page .container .harrasment-info .regulation_cat a,
  .harrasment-page .container .infosec-info .regulation_cat a,
  .infosec-page .container .privacy-info .regulation_cat a,
  .infosec-page .container .harrasment-info .regulation_cat a,
  .infosec-page .container .infosec-info .regulation_cat a {
    margin: 0;
  }
}
.privacy-page .container .privacy-main-content,
.privacy-page .container .harrasment-main-content,
.privacy-page .container .infosec-main-content,
.harrasment-page .container .privacy-main-content,
.harrasment-page .container .harrasment-main-content,
.harrasment-page .container .infosec-main-content,
.infosec-page .container .privacy-main-content,
.infosec-page .container .harrasment-main-content,
.infosec-page .container .infosec-main-content {
  width: 70%;
  padding: 20px;
  margin: 100px 0;
  list-style: none;
}
.privacy-page .container .privacy-main-content h2,
.privacy-page .container .privacy-main-content h3,
.privacy-page .container .privacy-main-content h4,
.privacy-page .container .harrasment-main-content h2,
.privacy-page .container .harrasment-main-content h3,
.privacy-page .container .harrasment-main-content h4,
.privacy-page .container .infosec-main-content h2,
.privacy-page .container .infosec-main-content h3,
.privacy-page .container .infosec-main-content h4,
.harrasment-page .container .privacy-main-content h2,
.harrasment-page .container .privacy-main-content h3,
.harrasment-page .container .privacy-main-content h4,
.harrasment-page .container .harrasment-main-content h2,
.harrasment-page .container .harrasment-main-content h3,
.harrasment-page .container .harrasment-main-content h4,
.harrasment-page .container .infosec-main-content h2,
.harrasment-page .container .infosec-main-content h3,
.harrasment-page .container .infosec-main-content h4,
.infosec-page .container .privacy-main-content h2,
.infosec-page .container .privacy-main-content h3,
.infosec-page .container .privacy-main-content h4,
.infosec-page .container .harrasment-main-content h2,
.infosec-page .container .harrasment-main-content h3,
.infosec-page .container .harrasment-main-content h4,
.infosec-page .container .infosec-main-content h2,
.infosec-page .container .infosec-main-content h3,
.infosec-page .container .infosec-main-content h4 {
  margin: 2rem 0;
}
.privacy-page .container .privacy-main-content h2,
.privacy-page .container .harrasment-main-content h2,
.privacy-page .container .infosec-main-content h2,
.harrasment-page .container .privacy-main-content h2,
.harrasment-page .container .harrasment-main-content h2,
.harrasment-page .container .infosec-main-content h2,
.infosec-page .container .privacy-main-content h2,
.infosec-page .container .harrasment-main-content h2,
.infosec-page .container .infosec-main-content h2 {
  padding: 10px;
  text-align: center;
}
.privacy-page .container .privacy-main-content h3,
.privacy-page .container .harrasment-main-content h3,
.privacy-page .container .infosec-main-content h3,
.harrasment-page .container .privacy-main-content h3,
.harrasment-page .container .harrasment-main-content h3,
.harrasment-page .container .infosec-main-content h3,
.infosec-page .container .privacy-main-content h3,
.infosec-page .container .harrasment-main-content h3,
.infosec-page .container .infosec-main-content h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
}
@media (max-width: 768px) {
  .privacy-page .container .privacy-main-content h2,
  .privacy-page .container .harrasment-main-content h2,
  .privacy-page .container .infosec-main-content h2,
  .harrasment-page .container .privacy-main-content h2,
  .harrasment-page .container .harrasment-main-content h2,
  .harrasment-page .container .infosec-main-content h2,
  .infosec-page .container .privacy-main-content h2,
  .infosec-page .container .harrasment-main-content h2,
  .infosec-page .container .infosec-main-content h2 {
    font-size: 2rem;
  }
}
.privacy-page .container .privacy-main-content .purpose ul,
.privacy-page .container .privacy-main-content .disclosure ul,
.privacy-page .container .harrasment-main-content .purpose ul,
.privacy-page .container .harrasment-main-content .disclosure ul,
.privacy-page .container .infosec-main-content .purpose ul,
.privacy-page .container .infosec-main-content .disclosure ul,
.harrasment-page .container .privacy-main-content .purpose ul,
.harrasment-page .container .privacy-main-content .disclosure ul,
.harrasment-page .container .harrasment-main-content .purpose ul,
.harrasment-page .container .harrasment-main-content .disclosure ul,
.harrasment-page .container .infosec-main-content .purpose ul,
.harrasment-page .container .infosec-main-content .disclosure ul,
.infosec-page .container .privacy-main-content .purpose ul,
.infosec-page .container .privacy-main-content .disclosure ul,
.infosec-page .container .harrasment-main-content .purpose ul,
.infosec-page .container .harrasment-main-content .disclosure ul,
.infosec-page .container .infosec-main-content .purpose ul,
.infosec-page .container .infosec-main-content .disclosure ul {
  padding-left: 10px;
}
.privacy-page .container .privacy-main-content .purpose ul li,
.privacy-page .container .privacy-main-content .disclosure ul li,
.privacy-page .container .harrasment-main-content .purpose ul li,
.privacy-page .container .harrasment-main-content .disclosure ul li,
.privacy-page .container .infosec-main-content .purpose ul li,
.privacy-page .container .infosec-main-content .disclosure ul li,
.harrasment-page .container .privacy-main-content .purpose ul li,
.harrasment-page .container .privacy-main-content .disclosure ul li,
.harrasment-page .container .harrasment-main-content .purpose ul li,
.harrasment-page .container .harrasment-main-content .disclosure ul li,
.harrasment-page .container .infosec-main-content .purpose ul li,
.harrasment-page .container .infosec-main-content .disclosure ul li,
.infosec-page .container .privacy-main-content .purpose ul li,
.infosec-page .container .privacy-main-content .disclosure ul li,
.infosec-page .container .harrasment-main-content .purpose ul li,
.infosec-page .container .harrasment-main-content .disclosure ul li,
.infosec-page .container .infosec-main-content .purpose ul li,
.infosec-page .container .infosec-main-content .disclosure ul li {
  list-style: none;
}
@media (max-width: 768px) {
  .privacy-page .container .privacy-main-content,
  .privacy-page .container .harrasment-main-content,
  .privacy-page .container .infosec-main-content,
  .harrasment-page .container .privacy-main-content,
  .harrasment-page .container .harrasment-main-content,
  .harrasment-page .container .infosec-main-content,
  .infosec-page .container .privacy-main-content,
  .infosec-page .container .harrasment-main-content,
  .infosec-page .container .infosec-main-content {
    margin-top: 0;
    width: 100%;
  }
}