*{
  font-feature-settings: "palt";
}
    /* モーダル トリガー */
    .modal-trigger {
      color: green;
      border: solid 1px #fff;
      line-height: 1;
      cursor: pointer;
      border-radius: 20px;
      background: #fff;
      transition: color 0.2s ease;
      padding: 5px 10px;
      font-size: 13px;
      margin: 0 0 0 10px;
      font-family: sans-serif;
      &.blue{
          color: #007bff;
      }
  }

  .modal-trigger:hover {
      color: #fff;
      background: green;
  }

  .modal-trigger.blue:hover {
      background: #007bff;
  }



  /* モーダル共通スタイル */
  .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0);
      backdrop-filter: blur(0px);
      transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  }

  .modal.show {
      background-color: rgba(0,0,0,0.5);
      backdrop-filter: blur(2px);
  }

  .modal-content {
      background-color: white;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.9);
      padding: 25px;
      border-radius: 8px;
      width: 80%;
      max-width: 600px;
      max-height: 70vh;
      overflow-y: auto;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .modal.show .modal-content {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
  }

  .modal-header {
      border-bottom: 1px solid #eee;
      padding-bottom: 15px;
      margin-bottom: 20px;
  }

  .modal-header h3 {
      margin: 0;
      color: #333;
      font-size: 1.2em;
      small{
        font-size: 14px;
        display: block;
      }
  }

  .close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s ease;
  }

  .close:hover {
      color: #000;
  }

  .modal-body {
      line-height: 1.6;
      color: #555;
  }

  .modal-body p {
      margin: 0 0 15px 0;
  }

  /* 各モーダルのテーマカラー */
  .modal-content.blue .modal-header {
      border-bottom-color: #007bff;
  }

  .modal-content.blue .modal-header h3 {
      color: #007bff;
  }

  .modal-content.green .modal-header {
      border-bottom-color: #28a745;
  }

  .modal-content.green .modal-header h3 {
      color: #28a745;
  }

  /* レスポンシブ対応 */
  @media (max-width: 768px) {

      .modal-content {
          width: 95%;
          max-height: 80vh;
          padding: 20px;
      }
  }