
/* === CSS RESET & VARIABLES === */
:root {
  --yh-primary: #0891b2;
  --yh-primary-dark: #0e7490;
  --yh-bg: #ffffff;
  --yh-bg-alt: #f0fdfa;
  --yh-text: #134e4a;
  --yh-text-light: #5eead4;
  --yh-border: #ccfbf1;
  --yh-accent: #14b8a6;
  --yh-round: 4px;
  --yh-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  color: var(--yh-text);
  background: var(--yh-bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
  color: var(--yh-text);
}

a {
  color: var(--yh-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--yh-primary-dark);
}

/* === CONTAINERS === */
.elz-container-15 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.elz-wrapper-55 {
  width: 100%;
}

/* === HEADER === */
header {
  background: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.elz-header-67 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.elz-logo-50 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  transition: opacity 0.3s ease;
}

.elz-logo-50:hover {
  opacity: 0.8;
}

.elz-logo-50 img {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--yh-primary);
}

.elz-btn-primary-52 {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: var(--yh-primary);
  color: #fff;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.elz-btn-primary-52:hover {
  background: var(--yh-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.elz-nav-item-29 {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.elz-nav-item-29 span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 0;
  transition: all 0.3s ease;
}

.elz-nav-list-47 {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: 999;
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active {
  right: 0;
  display: flex;
}

.elz-nav-list-47 a {
  color: #fff;
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* === HERO SECTION === */
.elz-hero-39 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--yh-primary);
}

.elz-hero-39::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--yh-primary) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 0;
}

.elz-hero-39 .elz-container-15 {
  position: relative;
  z-index: 1;
}

.elz-hero-text-68 {
  max-width: 700px;
}

.elz-hero-39 h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.elz-hero-39 p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* === FEATURE GRID === */
.elz-grid-13 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3rem 0;
}

.elz-grid-13 .elz-card-85 {
  text-align: center;
  padding: 2.5rem;
  border-radius: 0;
  background: var(--yh-bg-alt);
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.elz-grid-13 .elz-card-85:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--yh-primary);
}

.elz-grid-13 img {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.elz-grid-13 h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.elz-grid-13 p {
  color: var(--yh-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* === SERVICE CARDS === */
.elz-card-link-87 {
  background: var(--yh-bg-alt);
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.elz-card-link-87::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--yh-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.elz-card-link-87:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: var(--yh-primary);
}

.elz-card-link-87:hover::before {
  transform: scaleX(1);
}

.elz-card-link-87 h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.elz-card-link-87 p {
  color: var(--yh-text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.elz-category-82 {
  display: inline-block;
  background: #f0f0f0;
  color: var(--yh-text);
  padding: 0.6rem 1.2rem;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  letter-spacing: 0.5px;
}

/* === TESTIMONIAL CARDS === */
.elz-article-29 {
  background: var(--yh-bg-alt);
  border-radius: 0;
  padding: 2.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--yh-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.elz-article-29:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.elz-tag-89 {
  color: var(--yh-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.elz-article-29 p {
  color: var(--yh-text);
  margin-bottom: 1rem;
  font-style: italic;
}

.elz-article-meta-86 {
  color: var(--yh-text-light);
  font-size: 0.9rem;
  font-weight: 600;
}

/* === FAQ ACCORDION === */
.elz-blog-list-43 {
  margin: 1.5rem 0;
  border: 1px solid #ddd;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.elz-blog-list-43 h3 {
  cursor: pointer;
  padding: 1.5rem;
  background: var(--yh-bg-alt);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  user-select: none;
  border-bottom: 1px solid #ddd;
  font-size: 1.1rem;
}

.elz-blog-list-43 h3:hover {
  background: #f0f0f0;
}

.elz-blog-list-43 h3::after {
  content: '▼';
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.elz-blog-list-43 h3.active {
  background: var(--yh-primary);
  color: #fff;
  border-bottom-color: var(--yh-primary);
}

.elz-blog-list-43 h3.active::after {
  transform: rotate(-180deg);
}

.elz-blog-list-43 p {
  padding: 1.5rem;
  background: #fff;
  margin: 0;
  display: none;
  color: var(--yh-text-light);
  border-top: 1px solid #ddd;
}

.elz-blog-list-43 p.active {
  display: block;
}

/* === CONTACT FORM === */
.elz-form-88 {
  margin: 2rem 0;
}

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

.elz-form-88 label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--yh-text);
  font-size: 0.95rem;
}

.elz-form-88 input,
.elz-form-88 textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.elz-form-88 input:focus,
.elz-form-88 textarea:focus {
  outline: none;
  border-color: var(--yh-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

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

.elz-form-label-97 {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.elz-form-input-19 {
  border-color: #d32f2f !important;
}

.elz-form-btn-58 {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 0;
  margin-bottom: 1rem;
  border: 1px solid #c3e6cb;
  display: none;
}

.form-success.active {
  display: block;
}

/* === COOKIE BANNER === */
.elz-cookie-banner-28 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #2d2d2d;
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 500;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner.active {
  display: flex;
}

.elz-cookie-banner-28 p {
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
}

.elz-cookie-banner-28 .btn-group {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.elz-cookie-banner-28 button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.elz-cookie-banner-28 .accept {
  background: var(--yh-primary);
  color: #fff;
}

.elz-cookie-banner-28 .accept:hover {
  background: var(--yh-primary-dark);
}

.elz-cookie-banner-28 .settings {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.elz-cookie-banner-28 .settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal-overlay.active {
  display: flex;
}

.elz-cookie-text-72 {
  background: var(--yh-bg);
  border-radius: 0;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.elz-cookie-text-72 h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.elz-cookie-text-72 .toggle-group {
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.elz-cookie-text-72 .toggle-group label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 600;
}

.elz-cookie-text-72 input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.elz-cookie-text-72 .modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}

.elz-cookie-text-72 button {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.elz-cookie-text-72 .accept {
  background: var(--yh-primary);
  color: #fff;
}

.elz-cookie-text-72 .accept:hover {
  background: var(--yh-primary-dark);
}

.elz-cookie-text-72 .cancel {
  background: transparent;
  border: 1px solid #ddd;
  color: var(--yh-text);
}

.elz-cookie-text-72 .cancel:hover {
  background: #f0f0f0;
}

/* === SCROLL TOP BUTTON === */
.elz-btn-secondary-98 {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--yh-primary);
  color: #fff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.elz-btn-secondary-98:hover {
  background: var(--yh-primary-dark);
  transform: translateY(-3px);
}

/* === FADE-IN ANIMATION === */
.elz-card-85 {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* === SECTIONS === */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background: var(--yh-bg-alt);
}

section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* === TEXT SECTIONS === */
.elz-article-body-61 {
  padding: 2rem 0;
  line-height: 1.8;
}

.elz-article-body-61 h3 {
  margin: 2rem 0 1rem;
}

.elz-article-body-61 p {
  margin-bottom: 1.25rem;
}

/* === FOOTER === */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 4px solid var(--yh-primary);
}

footer .elz-container-15 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

footer h4 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

footer .elz-footer-copy-63 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .elz-container-15 {
    padding: 0 1.5rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .elz-hero-39 {
    padding: 3rem 0;
  }

  .elz-hero-39 h1 {
    font-size: 2rem;
  }

  .elz-grid-13 {
    grid-template-columns: repeat(2, 1fr);
  }

  footer .elz-container-15 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  header {
    padding: 0.75rem 0;
  }

  .elz-nav-item-29 {
    display: flex;
  }

  nav {
    display: none;
  }

  .elz-btn-primary-52 {
    display: none;
  }

  .elz-hero-39 {
    padding: 2.5rem 0;
  }

  .elz-hero-39 h1 {
    font-size: 1.8rem;
  }

  .elz-hero-39 p {
    font-size: 1rem;
  }

  .elz-grid-13 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  section {
    padding: 2.5rem 0;
  }

  footer .elz-container-15 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .elz-header-67 {
    padding: 0.75rem 1rem;
  }

  .elz-logo-50 {
    font-size: 1rem;
  }

  .elz-logo-50 img {
    height: 32px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .elz-hero-39 {
    padding: 2rem 0;
  }

  .elz-hero-39 h1 {
    font-size: 1.5rem;
  }

  .elz-hero-39 p {
    font-size: 0.95rem;
  }

  .elz-container-15 {
    padding: 0 1rem;
  }

  .elz-card-link-87 {
    padding: 1.5rem;
  }

  .elz-article-29 {
    padding: 1.5rem;
  }

  .elz-form-88 button {
    width: 100%;
  }

  .elz-cookie-banner-28 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .elz-cookie-banner-28 .btn-group {
    width: 100%;
  }

  .elz-cookie-banner-28 button {
    flex: 1;
  }

  .elz-btn-secondary-98 {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  h3 {
    font-size: 1rem;
  }

  .elz-hero-39 {
    padding: 1.5rem 0;
  }

  .elz-hero-39 h1 {
    font-size: 1.3rem;
  }

  .elz-hero-39 p {
    font-size: 0.9rem;
  }

  .elz-grid-13 img {
    width: 50px;
    height: 50px;
  }

  section {
    padding: 1.5rem 0;
  }

  footer {
    padding: 2rem 0 0.75rem;
  }

  .elz-blog-list-43 h3 {
    padding: 1rem;
    font-size: 1rem;
  }

  .elz-blog-list-43 p {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .elz-container-15 {
    padding: 0 0.75rem;
  }

  h1 {
    font-size: 1.25rem;
  }

  h2 {
    font-size: 1rem;
  }

  body {
    font-size: 15px;
  }

  .elz-hero-39-content {
    max-width: 100%;
  }

  nav {
    gap: 1rem;
  }

  .elz-form-88 input,
  .elz-form-88 textarea {
    font-size: 16px;
  }

  footer .elz-container-15 {
    gap: 1rem;
  }
}

/* === PRINT STYLES === */
@media print {
  header, footer, .elz-cookie-banner-28, .elz-btn-secondary-98 {
    display: none !important;
  }

  body {
    background: #fff;
  }

  a {
    color: #000;
  }

  .elz-btn-primary-52 {
    border: 1px solid #000;
    color: #000;
  }

  section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
}
