html, body {
  font-family: -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Meiryo", sans-serif;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  max-width: none;
  background-color: #FFFFFF;
}

/* 全てのリンクの見た目を統一（重要） */
a {
  color: #333;               /* お好みの色に */
  text-decoration: none;
}

a:hover {
  color: #333333;            /* ホバー時の色 */
  text-decoration: underline;
}

a:visited {
  color: #333;               /* 訪問済みも統一 */
}

a:active {
  color: #333333;
}

button {
  all: unset;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: none;
}

.btn-yellow-gradient {
  background: linear-gradient(to bottom right, #FBE79A, #FFD635);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(246, 134, 32, 0.3);
}

.btn-yellow-gradient:hover {
  background: linear-gradient(to bottom right, #FBE79A, #FFD635);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(246, 134, 32, 0.4);
}

.btn-yellow-gradient,
.btn-yellow-gradient:visited,
.btn-yellow-gradient:hover,
.btn-yellow-gradient:active,
.btn-yellow-gradient:focus {
    text-decoration: none;
    outline: none; /* フォーカス時の点線も消したい場合 */
}

.tagify {
    --tag-bg: #FFFCF1 !important;
    --tags-focus-border-color: #ffd635 !important;
    border: 2px solid #ffd635 !important;
}

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
}

