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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.pc {
  display: block;
}

.md {
  display: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background-color: rgba(2, 20, 47, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
header .logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #bbdefb;
}
header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}
header .hamburger span {
  height: 3px;
  background: white;
  border-radius: 2px;
}
header .global-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
header .global-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}
header #menu-toggle {
  display: none;
}
@media (max-width: 768px) {
  header .hamburger {
    display: flex;
  }
  header .global-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0d47a1;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  header .global-nav ul {
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }
  header #menu-toggle:checked ~ .global-nav {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .md {
    display: block;
  }
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #bbdefb;
  max-width: 200px;
}

.logo img {
  max-width: 100px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #bbdefb;
}

main {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding: 8rem 2rem 2rem; */
  max-width: 100%;
  width: 100%;
}

main img {
  max-width: 100%;
  width: 100%;
}

.catchcopy {
  max-width: 700px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

section#features {
  background: #f8f8f8;
  color: #0d47a1;
  padding: 4rem 2rem;
}

section#features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.features-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item {
  flex: 1 1 250px;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #0d47a1;
  transition: transform 0.3s ease;
  cursor: default;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.feature-item img {
  margin-bottom: 1rem;
  width: 64px;
  height: 64px;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-item p {
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .catchcopy {
    font-size: 1.8rem;
  }
  nav ul {
    gap: 1rem;
  }
  .features-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  /* background-color: rgba(13, 71, 161, 0.85); */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  /* backdrop-filter: blur(6px); */
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #bbdefb;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

main {
  /* padding: 8rem 2rem 2rem; */
  text-align: center;
}

.catchcopy {
  font-size: 2.4rem;
  font-weight: bold;
}

section {
  padding: 4rem 2rem;
}

.features-container, .business-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item, .business-item {
  background: white;
  color: #0d47a1;
  padding: 2rem;
  border-radius: 12px;
  width: 260px;
  text-align: center;
}

.company-info table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  color: #0d47a1;
  border-radius: 12px;
  overflow: hidden;
}

.company-info th, .company-info td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid #ccc;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: white;
  color: #0d47a1;
  padding: 2rem;
  border-radius: 12px;
}

.contact-form form {
  display: flex;
}

.contact-form input, .contact-form textarea {
  margin-bottom: 0px;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background: #1976d2;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.company-waper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.company-waper .company-img {
  max-width: 400px;
  align-self: center;
  margin: 0 auto;
  margin-top: 50px;
}
.company-waper .company-img img {
  max-width: 100%;
  width: 100%;
  align-self: center;
}

#features {
  padding: 4rem 2rem;
  background-color: #f5faff;
  text-align: center;
  color: #0d47a1;
}

#features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 280px;
  width: 100%;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.form {
  display: flex;
  justify-content: center;
}

input {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  border: 0;
  padding: 5px;
}

textarea {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 5px;
}

footer {
  background-color: #031b41;
  padding-top: 25px;
  padding-bottom: 25px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
footer p {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-section {
  background: #011027;
  color: white;
  padding: 4rem 2rem;
}

.business-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.business-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.business-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.business-card img {
  margin-bottom: 1rem;
  width: 100%;
  max-width: 100%;
  height: calc(0 * (100vw - 415px) / 1585 + 250px);
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.business-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #0d47a1;
}

.business-card p {
  color: #0d47a1;
}

#contact {
  padding: 4rem 2rem;
  background-color: #e3f2fd;
  color: #0d47a1;
  text-align: center;
  padding-bottom: 150px;
}
#contact h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
#contact .contact-form {
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}
#contact .contact-form .mw_wp_form.mw_wp_form_input {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#contact .contact-form .mw_wp_form.mw_wp_form_input form {
  flex-wrap: wrap;
}
#contact .contact-form .mw_wp_form.mw_wp_form_input .form-left,
#contact .contact-form .mw_wp_form.mw_wp_form_input .form-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 10px;
}
#contact .contact-form .mw_wp_form.mw_wp_form_input .form-left label,
#contact .contact-form .mw_wp_form.mw_wp_form_input .form-right label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
#contact .contact-form .mw_wp_form.mw_wp_form_input .form-left label input,
#contact .contact-form .mw_wp_form.mw_wp_form_input .form-left label textarea,
#contact .contact-form .mw_wp_form.mw_wp_form_input .form-right label input,
#contact .contact-form .mw_wp_form.mw_wp_form_input .form-right label textarea {
  margin-top: 0.4rem;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  max-width: 100%;
}
#contact .contact-form .mw_wp_form.mw_wp_form_input .form-left label textarea,
#contact .contact-form .mw_wp_form.mw_wp_form_input .form-right label textarea {
  resize: initial;
  height: 313px;
}
#contact .contact-form .mw_wp_form.mw_wp_form_input .button {
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #0d47a1;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#contact .contact-form .mw_wp_form.mw_wp_form_input .button:hover {
  background-color: #1565c0;
}/*# sourceMappingURL=style.css.map */