/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 19 2024 | 06:37:41 */
/* アイコン共通スタイル */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: cover;
  margin-right: 8px; /* アイコンとテキストの間隔 */
  vertical-align: middle; /* アイコンとテキストの垂直中央揃え */
}

/* 各アイコン固有のスタイル */
.icon-exam {
  background-image: url('path/to/exam-icon.png');
}

.icon-student {
  background-image: url('path/to/student-icon.png');
}

.icon-international {
  background-image: url('path/to/international-icon.png');
}

/* リンク無効化スタイル */
a.disabled {
  pointer-events: none; /* クリックイベント無効 */
  color: grey; /* リンクカラーをグレーに */
  cursor: default; /* カーソルをデフォルト表示に */
}

