.zoom-app-links {
  text-align: center;
  margin: 20px 0;
}

.zoom-app-links p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.app-buttons a {
  display: inline-block;
  margin: 5px;
}

.app-buttons img {
  width: 150px; /* 幅を固定 */
  height: 50px; /* 高さを固定 */
  object-fit: contain; /* アスペクト比を保ちながらサイズを調整 */
}

.formatted-text {
  white-space: pre-wrap; /* 自動折り返しを有効化 */
  word-wrap: break-word; /* 長い単語を適切に折り返す */
  text-align: left; /* 左寄せに設定 */
  font-family: 'Courier New', monospace; /* 等幅フォント（必要に応じて変更） */
  background-color: #f9f9f9; /* 背景色 */
  border: 1px solid #ddd; /* 枠線 */
  padding: 10px; /* 内側の余白 */
  border-radius: 5px; /* 角を丸める */
}


.sawarabi-text {
  font-family: 'Sawarabi Mincho', serif;
}

.sawarabi-text-small {
  font-family: 'Sawarabi Mincho', serif; /* 同じフォントを指定 */
  font-size: 90%; /* サイズを基準の90%に縮小 */
}

.title-text {
  font-family: 'Noto Serif JP', serif;
}

.soft-black {
  color: #4d4d4d; /* 柔らかい黒色 */
}

@media screen and (max-width: 600px) {
  .line1 {
    display: block;
  }
}

/* placeholderのスタイル */
input::placeholder,
textarea::placeholder {
  color: #f5f5f5; /* 柔らかいグレー */
  font-size: 0.9em;
  font-style: italic; /* イタリック体 */
}

/* ※マークのスタイル */
.required {
  color: #888;  /* 落ち着いたグレー */
  font-size: 0.85em;  /* 少し小さめ */
  font-weight: normal;
  margin-left: 4px;
}

/* モーダルのスタイル */
.modal {
  display: flex;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* ビューポート全体の高さに設定 */
  background-color: rgba(0, 0, 0, 0.4); /* 半透明の黒背景 */
  justify-content: center; /* 横中央 */
  align-items: center; /* 縦中央 */
  font-family: 'Sawarabi Mincho', serif;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  color: #333;
  width: 90%;
  max-width: 500px;
  animation: fadeIn 0.5s ease;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* 柔らかい影 */
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: 'Sawarabi Mincho', serif;
}

.modal-content h3 {
  margin-top: 0;
  font-size: 1.5em;
  color: #e63946;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  font-family: 'Sawarabi Mincho', serif;
}

.modal-content ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  font-family: 'Sawarabi Mincho', serif;
}

.modal-content li {
  background-color: #f8f9fa;
  padding: 10px;
  margin: 8px 0;
  border-radius: 5px;
  font-size: 0.9em;
  color: #333;
  font-family: 'Sawarabi Mincho', serif;
}

/* 閉じるボタン */
.close-btn {
  color: #888;
  float: right;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: #e63946;
}

/* フェードインアニメーション */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}