/* =========================
   TOGGLE BLOCK
   ========================= */

.toggle-block {
  margin-bottom: 72px;
}

.toggle-title {
  cursor: pointer;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  position: relative;
  cursor: pointer;
}

.toggle-title::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 0;
}

.toggle-block.is-open .toggle-title::after {
  content: "－";
}

.toggle-content {
  display: none;
}

.toggle-block.is-open .toggle-content {
  display: block;
}
/* ===== Toggle Motion ===== */

.toggle-title::after {
  transition: transform 0.2s ease;
}

.toggle-block .toggle-content {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.toggle-block.is-open .toggle-content {
  opacity: 1;
}
