/* フルワイド画像 */
.gracis-img-full {
  display: block;
  width: 100%;
  height: auto;
  margin: 1rem 0;
}
 
/* キャッチコピー */
.gracis-product-catch {
  text-align: center;
  font-weight: bold;
  padding: 0.75rem 0;
  margin: 1.5rem 0;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  letter-spacing: 0.1em;
  font-size: 15px;
}
 
/* ブランド説明文 */
.gracis-brand-desc {
  font-size: 14px;
  line-height: 1.9;
  margin: 1rem 0 1.5rem;
  color: #444;
}
 
/* スペックテーブル */
.gracis-spec-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f5f5f5;
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 1.7;
}
 
.gracis-spec-table th,
.gracis-spec-table td {
  border: 1px solid #fff;
  padding: 0.4rem 0.625rem;
  vertical-align: top;
}
 
.gracis-spec-table th {
  background-color: #cccccc;
  font-weight: bold;
  white-space: nowrap;
  width: 7.5rem;
  color: #333;
  font-size: 14px;
}
 
.gracis-spec-table td {
  color: #555;
  font-size: 14px;
}
 
/* 注記テキスト */
.gracis-spec-note {
  font-size: 12px;
  color: #666;
  line-height: 1.9;
  margin: 0.5rem 0 2rem;
}

/* 以下FAQセクション */
.faqp-container {
  width: 100%;
  margin: 40px 0;
  padding: 40px;
  background-color: #FFFFFF;
  box-sizing: border-box;
}

.faqp-category {
  margin-bottom: 32px;
}

.faqp-category:last-child {
  margin-bottom: 0;
}

.faqp-category-title {
  font-size: 18px;
  color: #0c0c0c;
  border-left: 4px solid #0c0c0c;
  padding-left: 12px;
  margin: 0 0 16px 0;
}

.faqp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faqp-item {
  background-color: #F7F7F7;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 0.2s ease;
}

.faqp-item:hover {
  border-color: #646464;
}

.faqp-item[open] {
  border-color: #0c0c0c;
}

.faqp-question {
  padding: 16px 44px 16px 20px;
  font-weight: 600;
  color: #0c0c0c;
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
  user-select: none;
}

.faqp-question::-webkit-details-marker {
  display: none;
}

.faqp-question::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #646464;
  border-bottom: 2px solid #646464;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.faqp-item[open] .faqp-question::after {
  border-color: #0c0c0c;
  transform: translateY(-25%) rotate(-135deg);
}

.faqp-answer {
  border-top: 1px solid #FFFFFF;
  padding: 16px 20px;
}

.faqp-answer p {
  margin: 0;
  color: #646464;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .faqp-container {
    padding: 20px;
  }
  .faqp-question {
    padding: 14px 40px 14px 16px;
  }
  .faqp-answer {
    padding: 14px 16px;
  }
}