
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #ccc;
  width: 60%; /* モーダルの幅を狭める */
}

.modal-header, .modal-footer {
  padding: 10px;
  color: #333;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.modal-footer {
  border-top: 1px solid #eee;
  margin-top: 20px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.form-group {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.rating input {
  display: none; /* ラジオボタンを非表示に */
}

.rating label.star {
  font-size: 25px; /* 星のサイズ */
  color: #ddd; /* 星のデフォルトの色 */
  cursor: pointer;
}

textarea {
  width: 100%;
  height: 100px;
}

.result {
  display: none; /* 初期状態では非表示 */
  margin-top: 20px;
  padding: 10px;
  border: 1px solid #00FF00;
  background-color: #f0fff0;
  border-radius: 5px;
}

/* 既存のスタイルに加えて */

.rating {
  display: flex;
  flex-direction: row-reverse; /* 要素を逆順に並べる */
  justify-content: flex-end; /* 右端から配置を開始（実際には左端に見える） */
}

.rating input {
  display: none; /* ラジオボタンを非表示に */
}

.rating label.star {
  font-size: 25px; /* 星のサイズ */
  color: #ddd; /* 星のデフォルトの色 */
  cursor: pointer;
}

.rating label.star:hover,
.rating label.star:hover ~ label.star,
.rating input:checked ~ label.star {
  color: #ffc107; /* ホバーまたは選択された星の色 */
}

/* スマホでピンチアウトを無効にする */
body {
  touch-action: manipulation;
}
@media (max-width: 768px) {
  .modal-content {
    width: 90%; /* スマホの場合は幅を広げる */
  }
}