/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 09 2026 | 12:03:58 */
.evil-form {
  max-width: 500px;
  margin: 0 auto;
  padding-top: 92px;    /* ヘッダー72px + 余白 */
  padding-bottom: 258px; /* フッター238px + 余白 */
  font-family: sans-serif;
  box-sizing: border-box;
}

.evil-form * {
  box-sizing: border-box;
}

.evil-form__card {
  background: #fff;
  border: 2px solid #111;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 0 #111;
  position: relative;
}

.evil-form__title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  color: #111;
}

.evil-form__desc {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  margin-bottom: 16px;
}

.evil-form__pc-msg {
  background: #f0f4f8;
  border: 1px dashed #0066cc;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #004488;
  margin-bottom: 16px;
  line-height: 1.4;
}

.evil-form__gyro-btn {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
}

.evil-form__group {
  margin-bottom: 14px;
}

.evil-form__label {
  display: block;
  font-weight: bold;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.evil-form__input,
.evil-form__textarea {
  width: 100%;
  padding: 8px 10px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* スロットUI */
.evil-form__slot-container {
  display: flex;
  gap: 8px;
}

.evil-form__slot-display {
  flex: 1;
  background: #111;
  color: #00ff66;
  font-family: monospace;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  box-shadow: inset 0 0 8px rgba(0,255,102,0.3);
}

.evil-form__slot-btn {
  background: #ff0055;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0 16px;
  font-weight: bold;
  cursor: pointer;
}

/* システムメッセージ（丁寧なアナウンス風） */
.evil-form__msg {
  min-height: 24px;
  color: #4b5563;
  background: #f3f4f6;
  border-radius: 4px;
  padding: 6px;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 8px;
  border-left: 3px solid #ff0055;
}

.evil-form__submit-wrapper {
  position: relative;
  height: 120px;
  width: 100%;
  border: 2px dashed #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evil-form__submit-btn {
  position: absolute;
  padding: 12px 32px;
  background: #ff0055;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 0, 85, 0.4);
  touch-action: manipulation;
  z-index: 100;
  will-change: transform, left, top;
}

/* モーダル */
.evil-form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.evil-form-modal__content {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  max-width: 550px;
  width: 100%;
  text-align: center;
}

.evil-form-modal__img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin: 16px 0;
}

.evil-form-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.evil-form-modal__btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.evil-form-modal__btn--share {
  background: #000;
  color: #fff;
}

.evil-form-modal__btn--close {
  background: #eee;
  color: #333;
}