/* お問い合わせ */
.contact-section{
  margin: 40px 0;
  padding: 0 16px;
}
.section-title{
  font-size: 1.6rem;
  font-weight: 700;
  color: #c00;
  margin-bottom: 24px;
  text-decoration: none;     
  border-bottom: none;       
}
.contact-note{
  font-size: 0.95rem;
  color: #666;
  margin-top: -4px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: stretch;
  }
.contact-card{
    max-width: 100%;
  }
}
.contact-card{
  flex: 1 1 320px;
  max-width: 400px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.contact-card.post{
  flex-basis: 100%;
  max-width: 600px;
  margin-top: 0;
  padding-top: 16px;
}
.contact-label{
  display: flex;
  align-items: center;
  gap: 8px;
  background: #c00;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.contact-icon{
  width: 20px;
  height: auto;
}
.contact-card p .tel{
  font-size: 1.2rem;
  font-weight: 700;
  color: #c00;
  letter-spacing: 0.5px;
}
.tel{
  display: inline-block;
  margin-bottom: 6px;
}
 
/* 個人情報について */
.contact-notice {
  max-width: none;
  margin: 32px 0 0;
  padding: 0 16px;
}
.notice-text{
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}
.notice-title{
  font-size: 1.1rem;
  font-weight: 700;
  color: #c00;
  margin: 20px 0 8px;
}
.privacy-link{
  color: #c00;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  transition: 0.2s ease;
}
.privacy-link:hover {
  opacity: 0.7;
}

/* よくある質問 */
.faq-section{
  margin-top: 48px;
}
.faq-title{
  font-size: 1.6rem;
  font-weight: 700;
  color: #c00;
  margin-bottom: 24px;
}
.qa-item{
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.qa-question{
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #c00;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}
.qa-question::after{
  content: "＋";
  position: absolute;
  right: 0;
  top: 10px;
  font-size: 1.2rem;
  color: #c00;
}
.qa-question.active::after{
  content: "－";
}
.qa-answer{
  display: none;
  padding: 10px 0 0;
  color: #333;
  line-height: 1.6;
  z-index: 1;
 position: relative; /* ← これが超重要 */

}
.qa-img{
  width: 100%;
  max-width: 260px;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: zoom-in;
  display: block;
  margin: 10px 0;
 background: #fff;
  padding: 4px;
}
.qa-img:hover{
  transform: scale(1.6);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;           /* ← 他の文字より前に出す */
　position: absolute;      /* ← 浮かせる */
}

