/* WordPressから出力される本文内のデザインを共通化 */

/* H2見出し：画像上部のデザインをすべての記事に適用 */
.wp-content h2 {
    @apply border-l-4 border-blue-600 pl-4 text-xl sm:text-2xl font-bold text-gray-900 mt-10 mb-4 pt-2;
}

/* H3見出し：画像下部のデザインをすべての記事に適用 */
.wp-content h3 {
    @apply border-b-2 border-blue-500 pb-2 text-lg font-bold text-gray-900 mt-8 mb-3;
}

/* 本文内の段落の余白 */
.wp-content p {
    @apply mb-4 text-gray-800 leading-relaxed;
}

/* 注記（※から始まる段落や、特定のクラス） */
.wp-content p:last-child {
    @apply text-xs sm:text-sm text-gray-500 leading-relaxed mt-12 pt-6 border-t border-gray-200;
}











<!-- CSS（style.cssまたはheadに追加） -->
<style>
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.contact-modal__content {
  position: relative;
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}

.contact-modal__close:hover {
  color: #000;
}

.contact-modal__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.contact-modal__body {
  text-align: center;
}

.contact-modal__company-name {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 15px;
  color: #333;
}

.contact-modal__message {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 25px;
  color: #666;
}

.contact-modal__info {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 4px;
}

.contact-modal__label {
  font-size: 12px;
  color: #999;
  margin: 0 0 8px;
}

.contact-modal__phone {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: #0066cc;
  letter-spacing: 1px;
}
</style>


