/* FAQ.CSS - よくあるご質問ページ専用 */

.faq-page-title {
  padding:200px 0 0 0;
}

.faq-main{
  padding-top: 0;
}

@media (max-width: 600px) {
  .faq-main {
    margin-bottom: 50px;
  }
}
/* .faq-intro {
  padding: calc(var(--space-2xl) + 60px) 0 var(--space-xl);
  background: linear-gradient(180deg, var(--clr-primary-lt) 0%, var(--clr-white) 100%);
}

.faq-intro-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-xl);
}

.faq-intro-text {
  flex: 1;
}

.faq-intro-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.3;
}

.faq-intro-illus {
  flex-shrink: 0;
}

.faq-intro-illus img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

.faq-main {
  padding: var(--space-2xl) 0;
  background: var(--clr-white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto var(--space-xl);
}

.faq-item {
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-fast);
}

.faq-item:hover, .faq-item.open {
  border-color: var(--clr-primary);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  cursor: pointer;
  transition: background var(--dur-fast);
}

.faq-question:hover {
  background: var(--clr-primary-lt);
}

.faq-q-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
}

.faq-q-text {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.6;
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
  border: 2px solid var(--clr-primary);
  border-radius: 50%;
  transition: all var(--dur-fast);
}

.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--clr-primary);
  transition: all var(--dur-fast);
}

.faq-toggle::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question:hover .faq-toggle {
  background: var(--clr-primary);
}

.faq-question:hover .faq-toggle::before,
.faq-question:hover .faq-toggle::after {
  background: var(--clr-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-mid) var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  display: flex;
  gap: var(--space-sm);
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-md);
}

.faq-a-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
}

.faq-a-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--clr-text);
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.faq-footer-cta {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--clr-white) 0%, var(--clr-sky) 100%);
}

.footer-cta-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(84, 136, 211, 0.15);
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.footer-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--clr-primary-lt) 100%);
  z-index: 0;
}

.footer-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-cta-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.4;
}

.footer-cta-text {
  font-size: 1.05rem;
  color: var(--clr-text);
  line-height: 1.9;
}

.footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-cta-image {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-cta-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

@media (max-width: 900px) {
  .faq-intro-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-card {
    grid-template-columns: 1fr;
    padding: var(--space-lg);
  }

  .footer-cta-card::before {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--clr-primary-lt) 100%);
  }

  .footer-cta-content {
    text-align: center;
  }

  .footer-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .faq-intro {
    padding: calc(var(--space-xl) + 60px) 0 var(--space-lg);
  }

  .faq-q-icon, .faq-a-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .faq-q-text {
    font-size: 0.95rem;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
  }

  .footer-cta-card {
    padding: var(--space-md);
  }

  .footer-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
 */