/**
 * サイト共通のベースタイポ・FAQ アイコン・アコーディオン（.acc-icon）・sticky サイドバー。
 * ページ固有の見た目は各ページ用 CSS で上書きする。
 */

body {
  color: #222222;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

.section-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #999999;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

.faq-icon-h {
  transition: transform 0.3s ease;
}
.faq-icon-v {
  transition: transform 0.3s ease;
}
details[open] summary .faq-icon-v {
  transform: rotate(90deg);
}

.acc-icon {
  transition: transform 0.3s ease;
}
details[open] > summary .acc-icon {
  transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .sticky-sidebar {
    position: sticky;
    top: 100px;
  }
}

