body{
    margin: 0;
}
.background-animated-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.3;
  animation: moveBG 60s linear infinite;
}

.background-animated-shapes svg {
  width: 100%;
  height: auto;
  transform: translate(-25%, -25%);
}

@keyframes moveBG {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-50px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
/* HEADER CON DISEÑO FORMAL */
.l-header {
  background-color: #1b4079; /* azul/gris oscuro elegante */
  color: #fff;
  padding: 0;
  border-bottom: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Contenedor interior del header */
.l-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-img {
  height: 120px;       /* Aumentamos la altura */
  width: auto;
  display: block;
}


/* Navegación principal */
.header_nav {
  flex-grow: 1;
  margin-left: 40px;
}

.nav_wrap {
  display: flex;
  align-items: center;
    justify-content: flex-end;
}

.nav_list {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
}

.nav_item a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav_item a:hover {
  color: #616160; 
  border-bottom: 2px solid #aaaaa8;
}

.nav_text {
  margin: 0;
}

/* Submenú (como el botón PDF) */
.sub_menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.print_btn {
  background-color: #44465a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.print_btn:hover {
  background-color: #5a5d78;
}

/* Botón hamburguesa oculto (para mostrar luego en mobile) */
.p-hamburger {
  display: none;
}

/* Responsive para mobile (opcional futuro) */
@media (max-width: 768px) {
  .nav_wrap {
    display: none;
  }

  .p-hamburger {
    display: block;
  }
}
.nav_item a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav_item a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff; /* o el color que prefieras */
  transition: width 0.3s ease, left 0.3s ease;
}

.nav_item a:hover {
  color: #bababa; 
}

.nav_item a:hover::after {
  width: 100%;
  left: 0;
}
.site-footer {
  background-color: #1b4079;
  color: white;
  padding: 60px 20px;
  position: relative;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.company-name {
  font-weight: bold;
  margin-bottom: 8px;
}

address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.social-links a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.social-links a:hover img {
  transform: scale(1.1);
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-nav li,
.footer-legal li {
  margin-bottom: 10px;
}

.footer-nav a,
.footer-legal a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #ffcc00;
}

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

.copyright {
  margin-top: 20px;
  font-size: 12px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

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

.about-animated {
  background-color: #0d1e46;
  color: white;
  padding: 80px 20px;
  font-family: 'Arial', sans-serif;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
.about-text {
  flex: 1 1 400px;
  margin-right: 40px;
  animation: fadeInLeft 1s ease;
}
.about-text h2 {
  font-size: 48px;
  margin-bottom: 0;
}
.about-text h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.about-text .highlight {
  color: #ffd700;
  font-weight: bold;
}
.about-text .btn-view {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.about-text .btn-view:hover {
  background-color: #fff;
  color: #0d1e46;
}

.about-circles {
  position: relative;
  width: 400px;
  height: 400px;
  flex: 1 1 400px;
  margin-top: 40px;
  animation: fadeInRight 1s ease;
}
.circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid #fff;
  color: #ffd700;
  font-weight: bold;
  text-align: center;
  padding-top: 70px;
  font-size: 16px;
  transition: transform 0.5s ease;
}
.circle span {
  display: block;
  font-size: 12px;
  color: #ccc;
  margin-top: 5px;
}
.tourism { top: 0; left: 100px; }
.digital { top: 150px; left: 0; }
.marketing { top: 150px; left: 200px; }

.circle:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-circles {
    width: 100%;
    height: 300px;
    margin-top: 30px;
  }
}
.about-us {
  background: #fff;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  background-image: url('/images/bg-about-overlay.png'); /* imagen gris decorativa */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
.about-content {
  max-width: 800px;
  margin: auto;
  color: #222;
}
.about-us h1 {
  font-size: 52px;
  font-weight: 800;
  color: #0d1e46;
  margin-bottom: 10px;
}
.about-us h2 {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  margin-bottom: 40px;
}
.mission-block .label {
  font-size: 14px;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.mission-block h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0d1e46;
  margin-bottom: 40px;
  line-height: 1.6;
}
.about-text p {
  font-size: 16px;
  color: #ffffff;
  line-height: 2;
  margin-bottom: 20px;
}
.text-about p {
  font-size: 16px;
  color: #000000;
  line-height: 2;
  margin-bottom: 20px;
}
.about-text .black p {
  font-size: 16px;
  color: #000000;
  line-height: 2;
  margin-bottom: 20px;
}
.company-profile {
  padding: 0 20px;
  background-color: #fff;
  position: relative;
}
.company-profile .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.bg-title {
  font-size: 72px;
  color: rgba(0, 0, 0, 0.05);
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 1;
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.profile-table {
  display: flex;
  flex-direction: column;
  gap: 24px;
    padding-bottom: 100px;

}
.row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  padding-bottom: 16px;
}
.label {
  width: 20%;
  font-weight: bold;
  color: #333;
}
.value {
  width: 80%;
  color: #444;
  line-height: 1.6;
}
.value .en {
  font-size: 14px;
  color: #666;
}
.privacy-icon {
  height: 40px;
  vertical-align: middle;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .label, .value {
    width: 100%;
  }
  .bg-title {
    font-size: 48px;
  }
}
.block_service {
  background-color: #f9f9f9;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.block_service .l-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-set {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
  animation: fadeInUp 1s ease;
}

.content_detail {
  flex: 1 1 55%;
  padding-right: 30px;
}

.content_example {
  flex: 1 1 40%;
  padding-top: 20px;
}

.c-heading {
  font-size: 28px;
  font-weight: 700;
  color: #0d1e46;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.c-heading .ja {
  font-size: 20px;
  color: #555;
  margin-top: 10px;
}

.text_box p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.c-list-style ul {
  list-style: disc;
  padding-left: 20px;
  color: #444;
  font-size: 15px;
  line-height: 1.8;
}

.c-list-style.list-style--2 ul li a {
  color: #0d1e46;
  text-decoration: underline;
  font-weight: 500;
}

.heading {
  font-size: 18px;
  font-weight: 600;
  color: #0d1e46;
  margin-top: 30px;
  margin-bottom: 15px;
}

.list_output {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.list_output li {
  width: calc(50% - 10px);
  text-align: center;
}

.list_output .img_box img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.list_output .img_box img:hover {
  transform: scale(1.03);
}

.list_output .text {
  margin-top: 10px;
  color: #333;
  font-size: 15px;
}

/* Animación */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .service-set {
    flex-direction: column;
    padding: 20px;
  }

  .content_detail, .content_example {
    flex: 1 1 100%;
    padding: 0;
  }

  .list_output li {
    width: 100%;
  }
}
.block_service-chart {
  background-color: #ffffff;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
}

.block_service-chart .heading_box {
  text-align: center;
  margin-bottom: 60px;
}

.block_service-chart .c-heading .en img {
  max-width: 300px;
}
.block_service-chart .c-heading .ja {
  display: block;
  font-size: 20px;
  color: #555;
  margin-top: 10px;
}
.block_service-chart .lead_box p {
  font-size: 16px;
  color: #333;
  margin-top: 20px;
  line-height: 1.8;
}

.list_chart {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  padding-top: 40px;
}

.list_chart::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #0d1e46, transparent);
  z-index: 0;
}

.list_chart li {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 30px 20px;
  width: calc(25% - 20px);
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.8s ease;
}

.list_chart li .img_box {
  margin-bottom: 20px;
}
.list_chart li .img_box img {
  max-width: 100px;
  height: auto;
}

.list_chart .heading {
  font-size: 18px;
  font-weight: 700;
  color: #0d1e46;
  margin-bottom: 10px;
  text-align: center;
}

.list_chart p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  text-align: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .list_chart {
    flex-direction: column;
    align-items: center;
  }
  .list_chart::before {
    display: none;
  }
  .list_chart li {
    width: 90%;
    margin-bottom: 40px;
  }
}
.contact-form {
  max-width: 720px;
  margin: 60px auto;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  font-family: "Noto Sans JP", sans-serif;
}

.contact-form h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  border-left: 5px solid #333;
  padding-left: 10px;
  color: #222;
}

.contact-form p.intro {
  font-size: 14px;
  margin-bottom: 25px;
  color: #444;
  line-height: 1.6;
}

.contact-form dl {
  margin-bottom: 20px;
}

.contact-form dt {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.contact-form dd {
  margin: 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  transition: border 0.2s;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: #3f51b5;
  outline: none;
}

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

.contact-form .checkbox-field {
  margin-top: 10px;
  font-size: 14px;
}

.contact-form .checkbox-field input[type="checkbox"] {
  margin-right: 8px;
}

.contact-form .submit-button {
  text-align: center;
  margin-top: 30px;
}

.contact-form button {
  padding: 12px 30px;
  background-color: #3f51b5;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #2c3e95;
}

.contact-form .privacy-notice {
  font-size: 12px;
  color: #666;
  margin-top: 20px;
  line-height: 1.6;
  background: #fff;
  border-left: 3px solid #ccc;
  padding: 10px 15px;
}
.section-header {
  position: relative;
  height: 400px;
  background: #f5f7fb;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-title {
  font-size: 48px;
  color: #0d1e46;
  font-weight: bold;
  z-index: 2;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Particles.js background layer */
.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.c-mainText {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.c-mainText h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #0d1e46;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.c-mainText h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #0d1e46;
  border-radius: 2px;
}


.c-mainText h4 {
  font-size: 20px;
  margin-top: 30px;
  color: #0d1e46;
  font-weight: 600;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 6px;
}

.c-mainText p {
  margin-bottom: 20px;
}

.c-mainText ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.c-mainText ol > li {
  margin-bottom: 25px;
  font-weight: 500;
  color: #222;
}

.c-mainText ol > li > ul {
  list-style: disc;
  margin-top: 10px;
  margin-left: 20px;
  font-weight: 400;
  color: #444;
}

.c-mainText ul li {
  margin-bottom: 8px;
}

.c-mainText a {
  color: #0d3d99;
  text-decoration: underline;
}

.c-mainText a:hover {
  color: #093073;
}

.u-sp {
  display: none;
}

@media (max-width: 768px) {
  .c-mainText {
    font-size: 15px;
    padding: 30px 15px;
  }

  .c-mainText h3 {
    font-size: 20px;
  }

  .c-mainText h4 {
    font-size: 18px;
  }

  .u-sp {
    display: inline;
  }
}
