/**
 * Custom Paragraph Block Styles
 */

/* 基本スタイル */
.custom-block-paragraph {
  margin: 0rem auto !important;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-family: var(--custom-font-family);
  color: var(--custom-text-primary);
  border: none !important;
}

/* テキスト配置 */
.custom-block-paragraph.text-align-left {
  text-align: left;
}

.custom-block-paragraph.text-align-center {
  text-align: center;
}

.custom-block-paragraph.text-align-right {
  text-align: right;
}

/* テキストサイズ */
.custom-block-paragraph.text-size-extraBody1 {
  font-size: 24px;
  font-weight: 400;
}

.custom-block-paragraph.text-size-extraBody2 {
  font-size: 20px;
  font-weight: 400;
}

.custom-block-paragraph.text-size-body1 {
  font-size: 16px;
  font-weight: 400;
}

.custom-block-paragraph.text-size-body2 {
  font-size: 14px;
  font-weight: 400;
}

.custom-block-paragraph.text-size-description {
  font-size: 12px;
  font-weight: 400;
  color: #666;
}

/* 装飾タイプ */
.custom-block-paragraph.decoration-bold {
  font-weight: bold;
}

.custom-block-paragraph.decoration-strikethrough {
  text-decoration: line-through;
}

.custom-block-paragraph.decoration-underline {
  text-decoration: underline;
}

.custom-block-paragraph.decoration-link {
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  transition: 0.3s ease;
}

.custom-block-paragraph.decoration-link:hover {
  opacity: 0.6;
}

/* ハイライト */
.custom-block-paragraph.decoration-highlight {
  padding: 0.2em 0.4em;
}

.custom-block-paragraph.decoration-highlight.highlight-blue {
  background-color: var(--custom-text-highlight-blue);
}

.custom-block-paragraph.decoration-highlight.highlight-yellow {
  background-color: var(--custom-text-highlight-yellow);
}

/* 引用 */
.custom-block-paragraph.decoration-quote {
  background-color: var(--custom-background-color-gray);
  padding: 1rem;
}

/* リスト */
.custom-block-paragraph.decoration-unordered-list,
.custom-block-paragraph.decoration-ordered-list {
  margin-bottom: 0.8em;
  line-height: 1.8;
  padding: 0em 0em 0em 1em !important;
}

/* リンクアンカータグの場合 */
a.custom-block-paragraph {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

a.custom-block-paragraph:hover {
  opacity: 0.8;
}

a.custom-block-paragraph p {
  margin: 0;
}

/* テキストカラー */
.custom-block-paragraph.text-color-primary {
  color: var(--custom-text-primary) !important;
}

.custom-block-paragraph.text-color-secondary {
  color: var(--custom-text-secondary) !important;
}

.custom-block-paragraph.text-color-tertiary {
  color: var(--custom-text-tertiary) !important;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .custom-block-paragraph.text-size-extraBody1 {
    font-size: 20px;
  }

  .custom-block-paragraph.text-size-extraBody2 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .custom-block-paragraph.text-size-extraBody1 {
    font-size: 18px;
  }

  .custom-block-paragraph.text-size-extraBody2 {
    font-size: 16px;
  }

  .custom-block-paragraph.text-size-body1 {
    font-size: 14px;
  }

  .custom-block-paragraph.text-size-body2 {
    font-size: 12px;
  }

  .custom-block-paragraph.text-size-description {
    font-size: 11px;
  }
}
