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

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333333;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

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

section {
  padding: 100px 5%;
}
section:nth-of-type(even) {
  background-color: #f4f7f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #0082cd;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 0;
}
@media (max-width: 768px) {
  header .header-top {
    padding: 10px 5%;
  }
}
header .header-branding .site-desc {
  display: block;
  font-size: 0.7rem;
  color: #666666;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  header .header-branding .site-desc {
    font-size: 0.6rem;
  }
}
header .header-branding .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
header .header-branding .logo span {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0082cd;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
@media (max-width: 768px) {
  header .header-branding .logo span {
    font-size: 1.4rem;
  }
}
header .header-info {
  display: flex;
  align-items: center;
  gap: 30px;
}
header .header-info .contact-box {
  text-align: right;
}
header .header-info .contact-box .sub {
  display: block;
  font-size: 0.7rem;
  color: #777;
  margin-bottom: 2px;
}
header .header-info .contact-box .tel {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0082cd;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.3s;
}
header .header-info .contact-box .tel:hover {
  opacity: 0.7;
}
header .header-info .contact-box .fax {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0082cd;
  text-decoration: none;
  line-height: 1;
}
header .header-info .contact-box .mail {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0082cd;
  text-decoration: none;
  line-height: 1;
}
header .header-info .contact-box .time {
  display: block;
  font-size: 0.65rem;
  color: #999;
  margin-top: 2px;
}
header .header-info .header-cta {
  background: #d7000f;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 rgb(138.5, 0, 9.6627906977);
}
header .header-info .header-cta:hover {
  background: rgb(189.5, 0, 13.2209302326);
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgb(138.5, 0, 9.6627906977);
}
@media (max-width: 768px) {
  header .header-info {
    display: none;
  }
}
header .pc-nav {
  background: #ffffff;
  border-top: 1px solid #eee;
  border-bottom: 2px solid #0082cd;
}
header .pc-nav ul {
  display: flex;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  list-style: none;
}
header .pc-nav ul li {
  flex: 1;
  border-right: 1px solid #eee;
}
header .pc-nav ul li:first-child {
  border-left: 1px solid #eee;
}
header .pc-nav ul li a {
  display: block;
  padding: 16px 0;
  text-align: center;
  text-decoration: none;
  color: #333333;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}
header .pc-nav ul li a:hover {
  background: rgba(0, 130, 205, 0.03);
  color: #0082cd;
}
header .pc-nav ul li a:hover::after {
  width: 100%;
}
header .pc-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #d7000f;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  header .pc-nav {
    display: none;
  }
}
header .hamburger {
  display: none;
}
@media (max-width: 768px) {
  header .hamburger {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
  }
  header .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0082cd;
    transition: 0.4s;
  }
  header .hamburger span:nth-child(1) {
    top: 0;
  }
  header .hamburger span:nth-child(2) {
    top: 11px;
  }
  header .hamburger span:nth-child(3) {
    bottom: 0;
  }
  header .hamburger.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  header .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  header .hamburger.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}
header .sp-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  padding: 100px 40px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}
header .sp-nav.is-active {
  right: 0;
}
header .sp-nav ul {
  list-style: none;
}
header .sp-nav ul li {
  border-bottom: 1px solid #eee;
}
header .sp-nav ul li a {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 15px 0;
  color: #333333;
  text-decoration: none;
}
header .sp-nav ul li a.btn-primary {
  background: #d7000f;
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
  margin-top: 20px;
  border-bottom: none;
}
header .sp-nav .sp-nav-contact {
  margin-top: 40px;
  text-align: center;
}
header .sp-nav .sp-nav-contact p {
  font-size: 0.8rem;
  color: #666666;
  margin-bottom: 5px;
}
header .sp-nav .sp-nav-contact .tel {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0082cd;
  text-decoration: none;
}
header .nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
header .nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 80px 5% 30px;
}
footer .footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  footer .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
footer .footer-info .footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  display: block;
}
footer .footer-info p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.8;
}
footer .footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-left: 15px;
}
footer .footer-links h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #0082cd;
}
footer .footer-links ul li {
  margin-bottom: 12px;
}
footer .footer-links ul li a {
  font-size: 0.9rem;
  color: #bbb;
}
footer .footer-links ul li a:hover {
  color: #f7931e;
  padding-left: 5px;
}
footer .copyright {
  text-align: center;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  color: #777;
  letter-spacing: 0.05em;
}
footer .footer-banners {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
footer .footer-banners img {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
}
footer .footer-banners img:hover {
  filter: none;
  opacity: 1;
}

.mobile-cv-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cv-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1500;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  .mobile-cv-bar .cv-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: bold;
    text-decoration: none;
  }
  .mobile-cv-bar .cv-item i {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  .mobile-cv-bar .cv-item.tel {
    background: #0082cd;
  }
  .mobile-cv-bar .cv-item.mail {
    background: #f7931e;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.detail-card {
  background: #ffffff;
  padding: 50px 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}
.detail-card:hover {
  transform: translateY(-8px);
}
.detail-card .icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(0, 130, 205, 0.1);
  color: #0082cd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}
.detail-card h3 {
  margin-bottom: 15px;
}
.detail-card p {
  font-size: 0.95rem;
  color: #666666;
  text-align: left;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison-table th,
.comparison-table td {
  padding: 20px;
  border: 1px solid #eee;
  text-align: center;
}
.comparison-table th {
  background: #f9f9f9;
}
.comparison-table .is-highlight {
  border: 3px solid #0082cd;
  position: relative;
  font-weight: bold;
  background: #ffffff;
}
.comparison-table .is-highlight::before {
  content: "CHECK";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0082cd;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 10px;
}

.card-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}
.card-item:hover {
  border-color: #0082cd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.card-item .icon {
  font-size: 2.5rem;
  color: #0082cd;
  margin-bottom: 20px;
  display: block;
}
.card-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.card-item p {
  font-size: 0.9rem;
  color: #666666;
  text-align: justify;
}

@media (max-width: 768px) {
  .work-item .work-img {
    aspect-ratio: 3/2;
  }
}

.work-img,
.card-item .icon-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 8px 8px 0 0;
}
.work-img img,
.card-item .icon-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.5s ease;
}

.cta-banner {
  background: #222;
  color: #ffffff;
  text-align: center;
  padding: 80px 5%;
}
.cta-banner h2 {
  margin-bottom: 15px;
  font-size: 2rem;
}
.cta-banner p {
  margin-bottom: 40px;
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

[class^=btn-] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: bold;
  min-width: 250px;
}

.btn-tel {
  background: #f7931e;
  color: #ffffff;
  font-size: 1.2rem;
}

.btn-mail {
  background: #ffffff;
  color: #0082cd;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 5%;
  color: #ffffff;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=1280") no-repeat center center/cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
.hero .hero-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.hero .hero-content {
  max-width: 700px;
}
.hero .hero-content .badge {
  display: inline-block;
  background: #d7000f;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.hero .hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 25px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.hero .hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 500;
}
.hero .hero-actions {
  display: flex;
  gap: 20px;
}
.hero .hero-actions .btn-primary {
  background: #f7931e;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(247, 147, 30, 0.4);
  text-align: center;
}
.hero .hero-actions .btn-primary:hover {
  background: rgb(242.864806867, 134.9248927039, 8.635193133);
  transform: translateY(-2px);
}
.hero .hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 16px 38px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  text-align: center;
}
.hero .hero-actions .btn-secondary:hover {
  background: #ffffff;
  color: #0082cd;
}
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 80px 5%;
    background-position: 75% center;
  }
  .hero::before {
    background: rgba(0, 0, 0, 0.6);
  }
  .hero .hero-content {
    text-align: center;
  }
  .hero .hero-content h1 {
    margin-bottom: 20px;
  }
  .hero .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-secondary {
    width: 100%;
    padding: 16px;
  }
}

.work-item .work-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 15px;
}
.work-item .work-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.work-item:hover img {
  transform: scale(1.1);
}
.work-item .work-cat {
  font-size: 0.75rem;
  color: #0082cd;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.trouble-list {
  background: #fff9f2;
  padding: 60px 40px;
  border-radius: 15px;
}
.trouble-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-weight: bold;
  list-style: none;
}
.trouble-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #f7931e;
  font-size: 1.2rem;
}

.page-header {
  position: relative;
  padding: 80px 5%;
  background: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&q=80&w=1200") center/cover no-repeat;
  color: #ffffff;
  text-align: center;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 130, 205, 0.8);
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header .sub-title {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  color: #f7931e;
}
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.comparison {
  padding: 100px 5%;
  background: #f8f9fa;
}
.comparison .comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
  border-collapse: collapse;
  background: #ffffff;
}
.comparison .comparison-table th,
.comparison .comparison-table td {
  padding: 25px;
  border: 1px solid #e0e0e0;
  text-align: center;
}
.comparison .comparison-table th {
  background: #eee;
  font-weight: bold;
}
.comparison .comparison-table .is-highlight {
  background: rgba(0, 130, 205, 0.02);
  border: 2px solid #0082cd;
  font-weight: bold;
  color: #0082cd;
  position: relative;
}
.comparison .comparison-table .is-highlight::before {
  content: "CHECK";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d7000f;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .comparison .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.works-archive {
  padding: 80px 5%;
}
.works-archive .category-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.works-archive .category-filter button {
  padding: 10px 25px;
  border: 1px solid #0082cd;
  background: #ffffff;
  color: #0082cd;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.works-archive .category-filter button.active, .works-archive .category-filter button:hover {
  background: #0082cd;
  color: #ffffff;
}
.works-archive .work-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.works-archive .work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.works-archive .work-card:hover .work-img img {
  transform: scale(1.1);
}
.works-archive .work-card .work-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.works-archive .work-card .work-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.works-archive .work-card .work-img .cat-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 130, 205, 0.9);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 2;
}
.works-archive .work-card .work-body {
  padding: 25px;
}
.works-archive .work-card .work-body time {
  font-size: 0.8rem;
  color: #999;
  display: block;
  margin-bottom: 10px;
}
.works-archive .work-card .work-body h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #0082cd;
}
.works-archive .work-card .work-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
}
.works-archive .work-card .work-body .more-link {
  color: #d7000f;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
}
.works-archive .work-card .work-body .more-link i {
  margin-left: 5px;
  transition: 0.3s;
}
.works-archive .work-card .work-body .more-link:hover i {
  transform: translateX(5px);
}

.message {
  padding: 100px 5%;
}
.message .message-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .message .message-flex {
    flex-direction: column;
    gap: 30px;
  }
}
.message .message-text {
  flex: 1;
}
.message .message-text h2 {
  margin-bottom: 30px;
}
.message .message-text p {
  line-height: 2;
  margin-bottom: 20px;
  color: #333333;
}
.message .message-text .signature {
  margin-top: 40px;
  text-align: right;
}
.message .message-text .signature strong {
  font-size: 1.4rem;
}
.message .message-img {
  flex: 1;
}
.message .message-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 20px 20px 0 rgba(0, 130, 205, 0.05);
}

.info-table {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 0;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid #eee;
}
.info-table tr:first-child {
  border-top: 2px solid #0082cd;
}
.info-table th {
  width: 30%;
  text-align: left;
  padding: 25px;
  background: #fdfdfd;
  color: #0082cd;
  font-weight: 700;
}
@media (max-width: 768px) {
  .info-table th {
    width: 100%;
    display: block;
    padding-bottom: 0;
  }
}
.info-table td {
  padding: 25px;
}
@media (max-width: 768px) {
  .info-table td {
    width: 100%;
    display: block;
  }
}
.info-table td ul {
  list-style: none;
}
.info-table td ul li::before {
  content: "・";
  color: #d7000f;
  font-weight: bold;
}

.google-map {
  margin-top: 40px;
  filter: grayscale(0.5);
  transition: 0.5s;
}
.google-map:hover {
  filter: grayscale(0);
}
.google-map iframe {
  border-radius: 12px;
}

.contact-section {
  padding: 80px 5%;
  background: #f9f9f9;
}
.contact-section .contact-lead {
  text-align: center;
  margin-bottom: 60px;
}
.contact-section .contact-lead p {
  line-height: 2;
  color: #666666;
}
.contact-section .contact-lead .text-blue {
  color: #0082cd;
  font-weight: bold;
}
.contact-section .contact-lead .mail {
  color: #0082cd;
  font-weight: bold;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .contact-form {
    padding: 30px 20px;
  }
}
.contact-form .form-group {
  margin-bottom: 30px;
}
.contact-form .form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0082cd;
}
.contact-form .form-group label .required {
  background: #d7000f;
  color: #ffffff;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
.contact-form .form-group input[type=text],
.contact-form .form-group input[type=email],
.contact-form .form-group input[type=tel],
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background: #fafafa;
  transition: all 0.3s;
}
.contact-form .form-group input[type=text]:focus,
.contact-form .form-group input[type=email]:focus,
.contact-form .form-group input[type=tel]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #0082cd;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 130, 205, 0.1);
}
.contact-form .form-group textarea {
  resize: vertical;
}
.contact-form .form-privacy {
  text-align: center;
  margin: 40px 0;
}
.contact-form .form-privacy label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-form .form-privacy label span a {
  color: #0082cd;
  font-weight: bold;
}
.contact-form .form-submit {
  text-align: center;
}
.contact-form .form-submit .btn-primary {
  width: 100%;
  max-width: 400px;
  border-radius: 50px;
  font-size: 1.1rem;
  padding: 20px;
}

.confirm-form {
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */