/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.hero .container{
  background: ;

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

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.visible {
  animation: fadeUp 0.8s ease-out forwards;
}

.animate-on-scroll.fade-left.visible {
  animation: fadeLeft 0.8s ease-out forwards;
}

.animate-on-scroll.fade-right.visible {
  animation: fadeRight 0.8s ease-out forwards;
}

.animate-on-scroll.scale-in.visible {
  animation: scaleIn 0.8s ease-out forwards;
}

.stagger-1 { animation-delay: 100ms; }
.stagger-2 { animation-delay: 200ms; }
.stagger-3 { animation-delay: 300ms; }
.stagger-4 { animation-delay: 400ms; }
.stagger-5 { animation-delay: 500ms; }
.stagger-6 { animation-delay: 600ms; }

/* Fixed Header */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.top-bar {
  background: #00A291;
  color: white;
  padding: 8px 0;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  transition: color 0.3s;
}

.phone-link:hover {
  color: #f97316;
}

.phone-link .icon {
  width: 14px;
  height: 14px;
}

.hours {
  opacity: 0.8;
  font-size: 12px;
}

.main-nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 6px 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img{
  display: none;
}
@media (min-width: 1024px) {
  .logo img {
    display: block;
    width: 100%;
    max-width: 240px;
  }
}

.logo-icon {
    width: 130px;
    height: 50px;
    background: linear-gradient(135deg, #ff6c06, #ea580c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    padding: 10px;
    letter-spacing: 2px;
}

.logo-text {
  font-weight: bold;
  font-size: 18px;
  color: #00A291;
}

.desktop-nav {
  display: none;
  gap: 32px;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: #f97316;
}

.cta-button {
  display: none;
  background: #f91616;
  color: white;
  padding: 8px 24px;
  border-radius: 0px;
  font-weight: 500;
  transition: background 0.3s;
}

@media (min-width: 1024px) {
  .cta-button {
    display: block;
  }
}

.cta-button:hover {
  background: #ea580c;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: #374151;
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 16px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  color: #374151;
  font-weight: 500;
}

.mobile-cta {
  background: #f97316;
  color: white;
  padding: 12px;
  border-radius: 4px;
  text-align: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #4cccbe, #487bdd);
  color: white;
  padding: 80px 0 20px;
}


.hero-content {
  display: grid;
  gap: 28px;
}
.hero-img img{
    width: 100%;
    border-radius: 20px;
}

@media (min-width: 1024px) {
  .hero{
      padding: 160px 0 80px;
  }
  .hero-content {
    align-items: left;
    gap: 48px;
  }
}

.cat-content {
  display: grid;
  gap: 20px;
  text-align: center;
}
.cat-left{
  order: 2;
}
.cat-left p{
    font-size: 1.5rem;
    font-weight: 600;
}
.cat-left p span{
  font-size: 2rem;
  color: #f05e0b;
  font-weight: 800;
}
@media (min-width: 1024px) {
  .cat-left p span{
    font-size: 3rem;
  }
}

.sp-only{
  display: block;
}
@media (min-width: 1024px) {
  .sp-only{
    display: none;
  }
}

.cat-right{
  order: 1;
}
.cat-right img{
  display: block;
  width: 100%;
  padding: 20px;
  background: #fff;
}

@media (min-width: 1024px) {
  .cat-content {
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 48px;
  }
  .cat-left{
      order: 1;
    }
    .cat-right{
      order: 2;
    }
}


.risk-wrap-l {
  display: grid;
  gap: 20px;
  margin-top: 60px;
  background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.risk-wrap-l .risk-right{
  order: 2;
}
.risk-wrap-l .risk-right p{
  margin-top: 10px;

}
.risk-wrap-l .risk-right p span{
  font-size: 3rem;
  color: #f05e0b;
  font-weight: 800;
}

.risk-wrap-l .risk-left{
  order: 1;
}
.risk-wrap-l .risk-left img{
  display: block;
  border-radius: 50%;
  object-fit: cover;
  height: 200px;
  width: 200px;
  margin: auto;

}

@media (min-width: 1024px) {
  .risk-wrap-l {
    grid-template-columns: 1fr 5fr;
    align-items: center;
    gap: 48px;
  }
  .risk-wrap-l .cat-left{
      order: 1;
  }
  .risk-wrap-l .cat-right{
      order: 2;
  }

}


.imp-content {
  display: grid;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
  margin-top: 30px;
}
.imp-left{
  order: 2;
}
.imp-left img{
  display: block;
  width: 100%;
  border-radius: 16px;
}

.imp-right{
  order: 1;
}
.imp-right p{
    color: #fff;
    margin-top: 10px;
}
.imp-right h3{
  color: #fbbf24;
}

.map-img img{
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}


@media (min-width: 1024px) {
  .imp-content {
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 48px;
  }
  .imp-left{
      order: 1;
    }
  .imp-right{
      order: 2;
    }
}


.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f97316;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.badge svg {
  width: 16px;
  height: 16px;
}

.hero .catch {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .hero .catch {
    font-size: 2.4rem;
  }
}

.highlight {
  color: #fbbf24;
}

.hero-subtitle {
  color: #d1d5db;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 480px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  background: #f97316;
  color: white;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #ea580c;
  transform: scale(1.02);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: #00A291;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: scale(1.02);
}

.stat-icon {
  width: 40px;
  height: 40px;
  color: #fbbf24;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #d1d5db;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d1d5db;
  font-size: 14px;
}

.badge-item svg {
  width: 20px;
  height: 20px;
  color: #f97316;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.section-header p {
  color: #6b7280;
  font-size: 18px;
}
.section-header .h2-sub{
  color: #fff;
}
.section-header .h2-sub span{
    color: #fbbf24;
    font-size: 1.8rem;
    font-weight: 600;
}



/* About Section */
.about {
  background: #f9fafb;
}

.about-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.about-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.about-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.about-icon svg {
  width: 32px;
  height: 32px;
}

.about-icon.bg-orange {
  background: #fff7ed;
}

.about-icon.bg-orange svg {
  color: #f97316;
}

.about-icon.bg-blue {
  background: #eff6ff;
}

.about-icon.bg-blue svg {
  color: #3b82f6;
}

.about-icon.bg-green {
  background: #f0fdf4;
}

.about-icon.bg-green svg {
  color: #22c55e;
}

.about-card h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 12px;
}

.about-card p {
  color: #6b7280;
}

/* Partners Section */
.partners {
  background: white;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.subtitle {
  color: #6b7280;
  font-size: 18px;
  font-weight: 500;
}

.partner-scroll {
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

.partner-scroll::-webkit-scrollbar {
  display: none;
}

.partner-track {
  display: flex;
  gap: 48px;
  padding: 0 20px;
}

.partner-logo {
  flex-shrink: 0;
  height: 48px;
  padding: 12px 24px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #374151;
  transition: all 0.3s;
}

.partner-logo:hover {
  background: #e5e7eb;
}

/* Pain Points Section */
.pain-points {
  background: #00A291;
}

.pain-points .section-header h2 {
  color: white;
}

.pain-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}

.pain-card:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.02);
}

.pain-icon {
  width: 40px;
  height: 40px;
  color: #fbbf24;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 8px;
}

.pain-card p {
  color: #d1d5db;
}

/* Strengths Section */
.strengths-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
  }
}

.strength-card {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  margin-top: 20px;
}

.strength-card img{
    display: block;
    border-radius: 16px;
    object-fit: contain;
    height: 200px;
    padding: 20px;
    background: #fff;
}

.strength-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: #f97316;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.strength-card h3 {
  font-size: 20px;
  color: #111827;
  margin-top: 16px;
  margin-bottom: 10px;
  text-align: center;
}

.strength-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  margin-bottom: 8px;
}

.strength-card ul li svg {
  width: 20px;
  height: 20px;
  color: #f97316;
  flex-shrink: 0;
}

.features-box {
  background: #f9fafb;
  border-radius: 16px;
  padding: 32px;
}

.features-box h3 {
  font-size: 1.5rem;
  color: #111827;
  text-align: center;
  margin-bottom: 32px;
}

.features-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item svg {
  width: 24px;
  height: 24px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  color: #374151;
}

/* Support Section */
.support {
  background: #f9fafb;
}

.support-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .support-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.support-item {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.support-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.support-icon {
  font-size: 24px;
}

.support-item span:last-child {
  font-weight: 500;
  color: #374151;
}

/* Services Section */
.services-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: #f97316;
}

.service-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 12px;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 16px;
}

.service-card ul {
  margin-bottom: 24px;
}

.service-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  margin-bottom: 8px;
}

.service-card ul li::before {
  content: '✓';
  color: #22c55e;
}

.service-link {
  color: #f97316;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.service-link:hover {
  color: #ea580c;
}

.section-header p.service-sub{
  font-weight: 600;
  color: #333;
  font-size: 22px;
  text-align: left;
}

@media (min-width: 1024px) {
  .section-header p.service-sub {
    text-align: center;
  }
}

.comparison-table {
  background: #f9fafb;
  border-radius: 16px;
  padding: 32px;
  overflow-x: auto;
}

.comparison-table h3 {
  font-size: 1.2rem;
  color: #111827;
  text-align: center;
  margin-bottom: 0px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table th {
  font-weight: bold;
  color: #374151;
  border-bottom: 2px solid #d1d5db;
}

.comparison-table th.highlight {
  color: #f97316;
}

.comparison-table td.highlight {
  color: #16a34a;
  font-weight: 500;
}

/* Video Section */
.video-section {
  background: #00A291;
}

.video-section .section-header h2 {
  color: white;
}

.video-section .section-header p {
  color: #fff;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 1;
}

.video-placeholder:hover .play-button {
  background: rgba(255,255,255,0.4);
  transform: scale(1.1);
}

.play-button svg {
  width: 40px;
  height: 40px;
  color: white;
  margin-left: 4px;
}

.video-placeholder p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-top: 16px;
  z-index: 1;
}

.video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  z-index: 1;
}

/* Flow Section */
.flow-cta {
  text-align: center;
  margin-top: 48px;
}

.flow-cta .btn-primary {
  display: inline-block;
}

.btn-primary.pulse {
  animation: pulse 2s infinite;
}

/* Flow Steps */
.flow-steps {
  display: grid;
  gap: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .flow-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flow-step {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: #00A291;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.flow-step h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 8px;
}

.flow-step p {
  color: #6b7280;
}

/* Testimonials */
.testimonials {
  background: #f9fafb;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 48px;
  color: #fcd34d;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-info {
  margin-bottom: 24px;
}

.testimonial-company {
  font-weight: bold;
  color: #111827;
}

.testimonial-meta {
  color: #6b7280;
}

.testimonial-nav {
  display: flex;
  gap: 8px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: #fed7aa;
  color: #f97316;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #f97316;
  width: 32px;
  border-radius: 6px;
}

.testimonial-link {
  text-align: center;
  margin-top: 32px;
}

.testimonial-link a {
  color: #f97316;
  font-weight: 500;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: white;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: bold;
  color: #111827;
  font-size: 16px;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: #6b7280;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  background: white;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
  color: #6b7280;
  line-height: 1.7;
}

.faq-link {
  text-align: center;
  margin-top: 32px;
}

.faq-link a {
  color: #f97316;
  font-weight: 500;
}

/* Blog Section */
.blog-header,
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-content {
  padding: 24px;
}

.blog-date {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.blog-card h3 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.blog-card:hover h3 {
  color: #f97316;
}

.blog-card p {
  color: #6b7280;
  font-size: 14px;
}

.link-arrow {
  color: #f97316;
  font-weight: 500;
}

/* News Section */
.news {
  background: white;
  border-top: 1px solid #e5e7eb;
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  display: block;
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.news-item:hover {
  background: #f3f4f6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.news-date {
  color: #6b7280;
  font-size: 14px;
}

.news-tag {
  background: #fff7ed;
  color: #f97316;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

.news-item h3 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 8px;
}

.news-item p {
  color: #6b7280;
  font-size: 14px;
}

/* Contact Section */
.contact {
  background: #00A291;
}
.contact .section{
  padding: 60px 0 80px;
}

.contact .section-header h2 {
  color: white;
  margin-top: 20px;
}

.contact .section-header p {
  color: #d1d5db;
}

.contact-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  color: white;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-label {
  color: #d1d5db;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.25rem;
  font-weight: bold;
}

.contact-value a {
  transition: color 0.3s;
}

.contact-value a:hover {
  color: #f97316;
}

.contact-sub {
  color: #9ca3af;
  font-size: 14px;
}

.contact-form {
  background: white;
  border-radius: 16px;
  padding: 32px;
}

.contact-form h3 {
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-group .required {
  color: #ef4444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.submit-btn {
  width: 100%;
  background: #f97316;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #ea580c;
  transform: scale(1.02);
}

/* Footer */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-brand .logo {
  margin-bottom: 24px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-contact {
  font-size: 14px;
}

.footer-contact a {
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #f97316;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: #f97316;
}

.footer-links {
  display: grid;
  gap: 32px;
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f97316;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 32px;
  /* display: flex; */
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-bottom p{
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #f97316;
}


/* ============================================================
   お知らせ 一覧・個別ページ
   ============================================================ */

/* ヘッダー高さ変数（fixed-header: top-bar + main-nav） */
:root {
  --header-h: 88px;
}

/* ===== ページヒーロー（一覧用） ===== */
.page-hero {
  background: #1e3a4f url() center/cover no-repeat;
  padding: calc(var(--header-h) + 48px) 0 40px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,34,54,.55);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .05em;
}

/* ===== アーカイブ本体 ===== */
.archive-main {
  padding: 56px 0 80px;
  background: #fff;
}

/* カテゴリタブ */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}

.cat-tab {
  display: inline-block;
  padding: 7px 22px;
  border: 1px solid #c8d0d8;
  border-radius: 2px;
  font-size: 13px;
  color: #555;
  transition: all .25s;
  background: #fff;
}

.cat-tab:hover,
.cat-tab.active {
  background: #1e3a4f;
  color: #fff;
  border-color: #1e3a4f;
}

/* 一覧リスト */
.archive-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  max-width: 900px;
  margin: 0 auto 56px;
}

@media (max-width: 680px) {
  .archive-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* 記事カード */
.archive-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: opacity .2s;
}

.archive-item:hover {
  opacity: .8;
}

.archive-item-thumb {
  flex: 0 0 120px;
  width: 120px;
  height: 88px;
  overflow: hidden;
  border-radius: 4px;
}

.archive-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.archive-item:hover .archive-item-thumb img {
  transform: scale(1.05);
}

.archive-item-body {
  flex: 1;
  min-width: 0;
}

.archive-item-cat {
  display: inline-block;
  font-size: 11px;
  color: #555;
  border: 1px solid #aab0b8;
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.archive-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1.55;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-item-excerpt {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.archive-item-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #999;
}

.archive-item-date svg {
  width: 12px;
  height: 12px;
}

/* ページネーション */
.archive-pagination {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #dde2e8;
  border-radius: 3px;
  font-size: 14px;
  color: #444;
  background: #fff;
  transition: all .25s;
}

.archive-pagination .page-numbers:hover {
  background: #1e3a4f;
  color: #fff;
  border-color: #1e3a4f;
}

.archive-pagination .page-numbers.current {
  background: #1e3a4f;
  color: #fff;
  border-color: #1e3a4f;
  font-weight: 700;
}

.no-posts {
  text-align: center;
  color: #888;
  padding: 60px 0;
}

/* ============================================================
   個別記事ページ
   ============================================================ */

.single-main {
  padding: calc(var(--header-h) + 24px) 0 80px;
  background: #f5f7f9;
}

/* パンくずリスト */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 12px;
  color: #888;
  margin: 8px 0 20px;
}

.breadcrumb a {
  color: #555;
  transition: color .2s;
}

.breadcrumb a:hover { color: #00A291; }

.breadcrumb svg {
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin-top: -2px;
}

.bc-sep {
  color: #bbb;
  font-size: 11px;
}

/* 2カラムレイアウト */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .single-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== メイン記事 ===== */
.single-article {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

@media (max-width: 640px) {
  .single-article {
    padding: 24px 18px;
  }
}

.single-cat {
  display: inline-block;
  font-size: 11px;
  color: #555;
  border: 1px solid #aab0b8;
  border-radius: 20px;
  padding: 2px 12px;
  margin-bottom: 10px;
}

.single-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .single-title { font-size: 1.25rem; }
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.single-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #999;
}

.single-date svg {
  width: 13px;
  height: 13px;
}

.single-eyecatch {
  margin-bottom: 32px;
  border-radius: 4px;
  overflow: hidden;
}

.single-eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

/* 本文 */
.single-content {
  font-size: 15px;
  line-height: 1.95;
  color: #333;
  margin-bottom: 40px;
}

.single-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: #1e3a4f;
  padding: 12px 18px;
  border-radius: 3px;
  margin: 36px 0 16px;
}

.single-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  padding: 8px 0 8px 14px;
  border-left: 4px solid #00A291;
  margin: 28px 0 12px;
}

.single-content p { margin-bottom: 18px; }

.single-content ul,
.single-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.single-content ul { list-style: disc; }
.single-content ol { list-style: decimal; }
.single-content li { margin-bottom: 6px; }

.single-content a {
  color: #00A291;
  text-decoration: underline;
}

.single-content img {
  max-width: 100%;
  border-radius: 4px;
  margin: 16px 0;
}

.single-content blockquote {
  border-left: 4px solid #00A291;
  background: #f0faf8;
  padding: 14px 20px;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
  color: #555;
  font-style: italic;
}

/* SNSシェア */
.single-share {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 32px;
}

.share-label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  letter-spacing: .08em;
}

.share-btns {
  display: flex;
  gap: 8px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  transition: opacity .2s;
}

.share-btn:hover { opacity: .8; }
.share-btn svg { width: 16px; height: 16px; }

.share-x    { background: #000; }
.share-fb   { background: #1877f2; }
.share-line { background: #06c755; }

/* 前後ナビ */
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.post-nav-prev a,
.post-nav-next a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid #e0e5ea;
  border-radius: 3px;
  font-size: 13px;
  color: #444;
  line-height: 1.45;
  transition: all .25s;
  height: 100%;
}

.post-nav-prev a:hover,
.post-nav-next a:hover {
  border-color: #00A291;
  color: #00A291;
}

.post-nav-next a {
  justify-content: flex-end;
  text-align: right;
}

.post-nav-prev svg,
.post-nav-next svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

@media (max-width: 480px) {
  .single-post-nav {
    grid-template-columns: 1fr;
  }
  .post-nav-next a { justify-content: flex-start; text-align: left; }
}

/* 関連記事 */
.related-posts {
  margin-top: 8px;
}

.related-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  padding-bottom: 10px;
  border-bottom: 2px solid #1e3a4f;
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
}

.related-card {
  display: block;
  border: 1px solid #e8edf0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .25s;
}

.related-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}

.related-card-thumb {
  height: 120px;
  overflow: hidden;
}

.related-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.related-card:hover .related-card-thumb img {
  transform: scale(1.05);
}

.related-card-body {
  padding: 12px 14px;
}

.related-card-cat {
  font-size: 10px;
  color: #555;
  border: 1px solid #aab0b8;
  border-radius: 20px;
  padding: 1px 8px;
  display: inline-block;
  margin-bottom: 6px;
}

.related-card-body h3 {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== サイドバー ===== */
.single-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 50px);
}

.sidebar-widget {
  background: #fff;
  border-radius: 4px;
  padding: 22px 20px;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.sidebar-widget-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #1e3a4f;
  padding: 8px 14px;
  margin: -22px -20px 16px;
  border-radius: 4px 4px 0 0;
  letter-spacing: .04em;
}

/* 新着記事リスト */
.sidebar-post-list {
  list-style: none;
}

.sidebar-post-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.sidebar-post-item:last-child { border-bottom: none; }

.sidebar-post-item a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: opacity .2s;
}

.sidebar-post-item a:hover { opacity: .75; }

.sidebar-post-item img {
  flex: 0 0 64px;
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 3px;
}

.sidebar-post-item p {
  font-size: 12px;
  color: #333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.sidebar-post-item span {
  font-size: 11px;
  color: #aaa;
}

/* カテゴリ */
.sidebar-cat-list {
  list-style: none;
}

.sidebar-cat-list li {
  border-bottom: 1px solid #eee;
}

.sidebar-cat-list li:last-child { border-bottom: none; }

.sidebar-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px;
  font-size: 13px;
  color: #333;
  transition: color .2s;
}

.sidebar-cat-list a:hover { color: #00A291; }

.sidebar-cat-count {
  background: #f0f2f4;
  color: #888;
  font-size: 11px;
  padding: 1px 7px;
  border-radius: 10px;
}

/* 月別アーカイブ */
.sidebar-archive-list {
  list-style: none;
}

.sidebar-archive-list li {
  border-bottom: 1px solid #eee;
}

.sidebar-archive-list li:last-child { border-bottom: none; }

.sidebar-archive-list a {
  display: block;
  padding: 10px 4px;
  font-size: 13px;
  color: #333;
  transition: color .2s;
}

.sidebar-archive-list a:hover { color: #00A291; }

.wpcf7 form .wpcf7-response-output{
  margin: 0em 0.5em 1em;
}