/* ウェディング用語集ページ */

/* 基本レイアウト */
.PageGlossary {
  padding: 60px 0;
  background: #fff;
}
@media (width >= 769px) {
  .PageGlossary {
    padding: 100px 0;
  }
}

.PageGlossary_inner {
  max-width: 900px;
}

/* 英語タイトル */
.pageTtl_en {
  font-size: 1.4rem;
  color: #999;
  text-align: center;
  letter-spacing: 0.2em;
  margin-top: 10px;
}

/* イントロ */
.PageGlossary_intro {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px 20px;
  background: #fafafa;
  border-radius: 8px;
}
.PageGlossary_intro-sub {
  font-size: 1.8rem;
  color: #c41e3a;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (width >= 769px) {
  .PageGlossary_intro-sub {
    font-size: 2rem;
  }
}
.PageGlossary_intro p {
  font-size: 1.4rem;
  line-height: 2;
  color: #666;
}
@media (width >= 769px) {
  .PageGlossary_intro p {
    font-size: 1.5rem;
  }
}

/* 目次 */
.PageGlossary_toc {
  margin-bottom: 60px;
  padding: 30px;
  background: #f5f0e8;
  border-radius: 8px;
}
.PageGlossary_toc h3 {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
.PageGlossary_toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (width >= 576px) {
  .PageGlossary_toc ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.PageGlossary_toc li a {
  display: block;
  font-size: 1.4rem;
  color: #333;
  text-decoration: none;
  padding: 10px 15px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.PageGlossary_toc li a:hover {
  background: #c41e3a;
  color: #fff;
}

/* セクション */
.PageGlossary_section {
  margin-bottom: 80px;
  padding-top: 20px;
}

.PageGlossary_section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #c41e3a;
}

.PageGlossary_section-num {
  font-size: 3rem;
  color: #c41e3a;
  font-weight: 700;
  line-height: 1;
}

.PageGlossary_section-header h3 {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (width >= 769px) {
  .PageGlossary_section-header h3 {
    font-size: 2.4rem;
  }
}

.PageGlossary_section-en {
  font-size: 1.3rem;
  color: #999;
  letter-spacing: 0.1em;
}

.PageGlossary_section-desc {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  padding: 15px 20px;
  background: #fafafa;
  border-radius: 4px;
}
@media (width >= 769px) {
  .PageGlossary_section-desc {
    font-size: 1.5rem;
  }
}

/* 用語リスト */
.PageGlossary_list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.PageGlossary_item {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
.PageGlossary_item:first-child {
  padding-top: 0;
}
.PageGlossary_item:last-child {
  border-bottom: none;
}

.PageGlossary_item dt {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
  padding-left: 15px;
  border-left: 3px solid #c41e3a;
}
@media (width >= 769px) {
  .PageGlossary_item dt {
    font-size: 1.8rem;
  }
}

.PageGlossary_item dd {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
  padding-left: 18px;
  margin: 0;
}
@media (width >= 769px) {
  .PageGlossary_item dd {
    font-size: 1.5rem;
  }
}

/* コンパクト版（企業リスト用） */
.PageGlossary_list--compact .PageGlossary_item {
  padding: 15px 0;
}
.PageGlossary_list--compact .PageGlossary_item dt {
  font-size: 1.5rem;
}
.PageGlossary_list--compact .PageGlossary_item dd {
  font-size: 1.3rem;
}
@media (width >= 769px) {
  .PageGlossary_list--compact .PageGlossary_item dt {
    font-size: 1.6rem;
  }
  .PageGlossary_list--compact .PageGlossary_item dd {
    font-size: 1.4rem;
  }
}

/* スムーズスクロール用のオフセット */
.PageGlossary_section {
  scroll-margin-top: 115px;
}
