@charset "UTF-8";
/* ================================================
   # 変数・Mixin
   ================================================ */
.contact-page {
  min-height: 70vh;
  padding: 40px 0;
}
@media screen and (max-width: 767.98px) {
  .contact-page {
    padding: 20px 0;
  }
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767.98px) {
  .contact-inner {
    padding: 0 15px;
  }
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px 0;
}
@media screen and (max-width: 767.98px) {
  .page-header {
    margin-bottom: 40px;
    padding: 20px 0;
  }
}

.page-title {
  color: #c93b3b;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 0 0 5px #c93b3b;
}
@media screen and (max-width: 767.98px) {
  .page-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}

.page-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  .page-description {
    font-size: 14px;
    line-height: 1.5;
  }
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.98px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-form-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767.98px) {
  .contact-form-section {
    padding: 20px;
    border-radius: 15px;
  }
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .form-header {
    margin-bottom: 25px;
  }
}
.form-header h2 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 767.98px) {
  .form-header h2 {
    font-size: 20px;
  }
}
.form-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}
.form-header p .required-mark {
  color: red;
  font-weight: bold;
}

.contact-form-wrapper .form-group {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.98px) {
  .contact-form-wrapper .form-group {
    margin-bottom: 20px;
  }
}
.contact-form-wrapper .form-group:last-of-type {
  margin-bottom: 0;
}
.contact-form-wrapper .form-label {
  display: block;
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  .contact-form-wrapper .form-label {
    font-size: 15px;
  }
}
.contact-form-wrapper .form-label.required::after {
  content: " *";
  color: red;
  font-weight: bold;
}
.contact-form-wrapper .form-input,
.contact-form-wrapper .form-select,
.contact-form-wrapper .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767.98px) {
  .contact-form-wrapper .form-input,
  .contact-form-wrapper .form-select,
  .contact-form-wrapper .form-textarea {
    padding: 10px 14px;
    font-size: 16px;
  }
}
.contact-form-wrapper .form-input::-webkit-input-placeholder, .contact-form-wrapper .form-select::-webkit-input-placeholder, .contact-form-wrapper .form-textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form-wrapper .form-input::-moz-placeholder, .contact-form-wrapper .form-select::-moz-placeholder, .contact-form-wrapper .form-textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form-wrapper .form-input:-ms-input-placeholder, .contact-form-wrapper .form-select:-ms-input-placeholder, .contact-form-wrapper .form-textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form-wrapper .form-input::-ms-input-placeholder, .contact-form-wrapper .form-select::-ms-input-placeholder, .contact-form-wrapper .form-textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form-wrapper .form-input::placeholder,
.contact-form-wrapper .form-select::placeholder,
.contact-form-wrapper .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form-wrapper .form-input:focus,
.contact-form-wrapper .form-select:focus,
.contact-form-wrapper .form-textarea:focus {
  outline: none;
  border-color: red;
  background: rgba(255, 255, 255, 0.15);
  -webkit-box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
          box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
}
.contact-form-wrapper .form-input:invalid,
.contact-form-wrapper .form-select:invalid,
.contact-form-wrapper .form-textarea:invalid {
  border-color: #ff6b6b;
}
.contact-form-wrapper .form-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><polyline points="6,9 12,15 18,9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 45px;
}
.contact-form-wrapper .form-select option {
  background: #1a1a1a;
  color: white;
}
.contact-form-wrapper .form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.contact-form-wrapper .checkbox-group .checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 0;
}
.contact-form-wrapper .checkbox-group .checkbox-label .form-checkbox {
  margin: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  accent-color: red;
}
.contact-form-wrapper .checkbox-group .checkbox-label .wpcf7-list-item-label {
  color: white;
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (max-width: 767.98px) {
  .contact-form-wrapper .checkbox-group .checkbox-label .wpcf7-list-item-label {
    font-size: 14px;
  }
}
.contact-form-wrapper .checkbox-group .privacy-link {
  margin: 10px 0 0 24px;
}
.contact-form-wrapper .checkbox-group .privacy-link a {
  color: red;
  text-decoration: none;
  font-size: 13px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.contact-form-wrapper .checkbox-group .privacy-link a:hover {
  color: #ff6666;
  text-decoration: underline;
}
.contact-form-wrapper .form-submit {
  text-align: center;
  margin-top: 30px;
}
.contact-form-wrapper .form-submit p {
  text-align: center;
}
.contact-form-wrapper .form-submit .submit-btn {
  background: linear-gradient(135deg, red 0%, #cc0000 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .contact-form-wrapper .form-submit .submit-btn {
    padding: 12px 30px;
    font-size: 15px;
    width: 100%;
  }
}
.contact-form-wrapper .form-submit .submit-btn:hover {
  background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
          box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}
.contact-form-wrapper .form-submit .submit-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.contact-form-wrapper .form-submit .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}
.contact-form-wrapper .form-submit .submit-btn.loading::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin-left: 8px;
}

@media screen and (max-width: 767.98px) {
  .contact-sidebar {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.contact-info,
.faq-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}
@media screen and (max-width: 767.98px) {
  .contact-info,
  .faq-section {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
  }
}
.contact-info h3,
.faq-section h3 {
  color: red;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767.98px) {
  .contact-info h3,
  .faq-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.98px) {
  .info-item {
    gap: 12px;
    margin-bottom: 15px;
  }
}
.info-item:last-child {
  margin-bottom: 0;
}
.info-item .info-icon {
  font-size: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .info-item .info-icon {
    font-size: 20px;
  }
}
.info-item .info-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.info-item .info-content h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 767.98px) {
  .info-item .info-content h4 {
    font-size: 15px;
  }
}
.info-item .info-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 767.98px) {
  .info-item .info-content p {
    font-size: 13px;
  }
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767.98px) {
  .faq-item {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
}
.faq-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.faq-item h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px 0;
}
@media screen and (max-width: 767.98px) {
  .faq-item h4 {
    font-size: 14px;
  }
}
.faq-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 767.98px) {
  .faq-item p {
    font-size: 13px;
  }
}

#simple-modal .simple-content .simple-body::-webkit-scrollbar {
  width: 8px;
}
#simple-modal .simple-content .simple-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
#simple-modal .simple-content .simple-body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
#simple-modal .simple-content .simple-body::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.form-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  -webkit-animation: slideInFromTop 0.4s ease-out;
          animation: slideInFromTop 0.4s ease-out;
}
.form-message.success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 2px solid #28a745;
  color: #155724;
}
.form-message.error {
  background: linear-gradient(135deg, #f8d7da 0%, #f1b0b7 100%);
  border: 2px solid #dc3545;
  color: #721c24;
}

.field-error {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: 5px;
  display: block;
  -webkit-animation: fadeInUp 0.3s ease;
          animation: fadeInUp 0.3s ease;
  background: rgba(255, 107, 107, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
  border-left: 3px solid #ff6b6b;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #ff6b6b !important;
  background-color: rgba(255, 107, 107, 0.1) !important;
  -webkit-animation: shake 0.5s ease-in-out;
          animation: shake 0.5s ease-in-out;
}

.wpcf7-form .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: 5px;
  display: block;
  background: rgba(255, 107, 107, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
  border-left: 3px solid #ff6b6b;
}
.wpcf7-form .wpcf7-validation-errors {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid #ff6b6b;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  color: #ff6b6b;
}
.wpcf7-form .wpcf7-mail-sent-ok {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid #4caf50;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  color: #4caf50;
}
.wpcf7-form .wpcf7-response-output {
  border: none !important;
  padding: 15px 20px !important;
  border-radius: 8px !important;
  margin: 20px 0 !important;
  font-size: 16px !important;
  text-align: center !important;
}
.wpcf7-form .wpcf7-list-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 8px !important;
  margin: 0 !important;
  text-align: left !important;
  width: auto !important;
  list-style: none !important;
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}
.wpcf7-form .wpcf7-list-item.first.last {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 8px !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}
.wpcf7-form .wpcf7-list-item > label {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  gap: 8px !important;
  margin: 0 !important;
  cursor: pointer !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
  white-space: nowrap !important;
}
.wpcf7-form .wpcf7-list-item input[type=checkbox] {
  margin: 0 !important;
  margin-right: 0 !important;
  -webkit-transform: scale(1.2) !important;
          transform: scale(1.2) !important;
  accent-color: red !important;
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
  width: auto !important;
  height: auto !important;
}
.wpcf7-form .wpcf7-list-item .wpcf7-list-item-label {
  color: white !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
  white-space: nowrap !important;
  display: inline !important;
}
@media screen and (max-width: 767.98px) {
  .wpcf7-form .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 14px !important;
    white-space: normal !important;
  }
}
.wpcf7-form .wpcf7-checkbox {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.wpcf7-form .wpcf7-checkbox.wpcf7-validates-as-required {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  width: auto !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 12px !important;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.wpcf7-form .wpcf7-form-control-wrap[data-name=privacy-agreement] {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  width: 100% !important;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideInFromTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInFromTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes shake {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 70%, 90% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  40%, 60% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
@keyframes shake {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 70%, 90% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  40%, 60% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.contact-form-section,
.contact-info,
.faq-section {
  -webkit-animation: fadeInUp 0.6s ease-out;
          animation: fadeInUp 0.6s ease-out;
}
.contact-form-section:nth-child(1),
.contact-info:nth-child(1),
.faq-section:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.contact-form-section:nth-child(2),
.contact-info:nth-child(2),
.faq-section:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.contact-form-section:nth-child(3),
.contact-info:nth-child(3),
.faq-section:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

body.modal-open {
  overflow: hidden !important;
}

@media (prefers-reduced-motion: reduce) {
  .contact-form-section,
  .contact-info,
  .faq-section,
  .submit-btn {
    -webkit-animation: none;
            animation: none;
    -webkit-transition: none;
    transition: none;
  }
  .submit-btn:hover {
    -webkit-transform: none;
            transform: none;
  }
  .field-error,
  .form-message {
    -webkit-animation: none;
            animation: none;
  }
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.submit-btn:focus,
.form-checkbox:focus {
  outline: 2px solid red;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .contact-form-section {
    border: 2px solid white;
  }
  .form-input,
  .form-select,
  .form-textarea {
    border: 2px solid white;
  }
  .submit-btn {
    border: 2px solid white;
  }
}
@media print {
  .contact-page {
    background: white;
    color: black;
  }
  .contact-form-section {
    border: 1px solid black;
  }
  .submit-btn {
    display: none;
  }
}
#simple-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  display: none !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  margin: 0 !important;
  padding: 20px !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  background: radial-gradient(circle at 20% 20%, rgba(139, 0, 0, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(75, 0, 130, 0.2) 0%, transparent 50%), radial-gradient(circle at 40% 60%, rgba(25, 25, 112, 0.2) 0%, transparent 50%), linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 40, 0.98) 100%) !important;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#simple-modal.show {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#simple-modal.show .simple-content {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}
#simple-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent), radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent), radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent), radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent), radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  -webkit-animation: sparkle 20s linear infinite;
          animation: sparkle 20s linear infinite;
  pointer-events: none;
}

@-webkit-keyframes sparkle {
  0%, 100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
    opacity: 0.3;
  }
  25% {
    -webkit-transform: translateX(-10px) translateY(-5px);
            transform: translateX(-10px) translateY(-5px);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: translateX(5px) translateY(-10px);
            transform: translateX(5px) translateY(-10px);
    opacity: 0.4;
  }
  75% {
    -webkit-transform: translateX(-5px) translateY(5px);
            transform: translateX(-5px) translateY(5px);
    opacity: 0.7;
  }
}

@keyframes sparkle {
  0%, 100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
    opacity: 0.3;
  }
  25% {
    -webkit-transform: translateX(-10px) translateY(-5px);
            transform: translateX(-10px) translateY(-5px);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: translateX(5px) translateY(-10px);
            transform: translateX(5px) translateY(-10px);
    opacity: 0.4;
  }
  75% {
    -webkit-transform: translateX(-5px) translateY(5px);
            transform: translateX(-5px) translateY(5px);
    opacity: 0.7;
  }
}
.simple-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  cursor: pointer;
  z-index: 1 !important;
}

.simple-content {
  position: relative !important;
  width: 100% !important;
  max-width: 650px !important;
  max-height: 90vh !important;
  margin: 0 auto !important;
  z-index: 1000000 !important;
  -webkit-transform: translateY(-30px) scale(0.95);
          transform: translateY(-30px) scale(0.95);
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 50px rgba(255, 0, 0, 0.3), 0 20px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 50px rgba(255, 0, 0, 0.3), 0 20px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.simple-content:hover {
  -webkit-transform: translateY(-5px) scale(1.01);
          transform: translateY(-5px) scale(1.01);
  -webkit-box-shadow: 0 0 60px rgba(255, 0, 0, 0.4), 0 25px 100px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 60px rgba(255, 0, 0, 0.4), 0 25px 100px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767.98px) {
  .simple-content {
    max-width: 95%;
    max-height: 95vh;
    border-radius: 20px;
  }
}

.simple-header {
  position: relative;
  padding: 25px 35px 20px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.9) 0%, rgba(139, 0, 0, 0.95) 50%, rgba(75, 0, 130, 0.9) 100%);
}
.simple-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, rgba(255, 255, 255, 0.6)), color-stop(50%, rgba(255, 255, 255, 0.8)), color-stop(80%, rgba(255, 255, 255, 0.6)), to(transparent));
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
}
.simple-header::after {
  content: "";
  position: absolute;
  right: 80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.4)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}
.simple-header h3 {
  margin: 0 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: white !important;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}
.simple-header h3::before {
  content: "👻";
  margin-right: 10px;
  -webkit-filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.7));
          filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.7));
}
@media screen and (max-width: 767.98px) {
  .simple-header h3 {
    font-size: 18px !important;
  }
  .simple-header h3::before {
    font-size: 16px;
  }
}
@media screen and (max-width: 767.98px) {
  .simple-header {
    padding: 20px 25px 15px !important;
  }
}

.simple-close {
  position: relative;
  background: none !important;
  border: none !important;
  color: white !important;
  font-size: 28px !important;
  cursor: pointer !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.simple-close::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 0, 0, 0.6), rgba(255, 255, 255, 0.2), rgba(255, 0, 0, 0.6));
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.simple-close:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  -webkit-transform: scale(1.1) rotate(90deg) !important;
          transform: scale(1.1) rotate(90deg) !important;
  -webkit-box-shadow: 0 0 20px rgba(255, 0, 0, 0.6), 0 5px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px rgba(255, 0, 0, 0.6), 0 5px 20px rgba(0, 0, 0, 0.3);
}
.simple-close:hover::before {
  opacity: 1;
}
.simple-close:active {
  -webkit-transform: scale(0.95) rotate(90deg) !important;
          transform: scale(0.95) rotate(90deg) !important;
}
@media screen and (max-width: 767.98px) {
  .simple-close {
    width: 40px !important;
    height: 40px !important;
    font-size: 24px !important;
  }
}

.simple-body {
  padding: 35px !important;
  max-height: 60vh !important;
  overflow-y: auto !important;
}
.simple-body::-webkit-scrollbar {
  width: 8px;
}
.simple-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.simple-body::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 0, 0, 0.8)), to(rgba(139, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.8), rgba(139, 0, 0, 0.6));
  border-radius: 4px;
}
.simple-body::-webkit-scrollbar-thumb:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(red), to(rgba(139, 0, 0, 0.8)));
  background: linear-gradient(180deg, red, rgba(139, 0, 0, 0.8));
}
@media screen and (max-width: 767.98px) {
  .simple-body {
    padding: 25px !important;
    max-height: 50vh !important;
  }
}

.simple-item {
  margin-bottom: 25px !important;
  padding: 20px !important;
  border-radius: 15px;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.simple-item:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 5px 20px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 0, 0, 0.2);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 5px 20px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 0, 0, 0.2);
}
.simple-item:last-child {
  margin-bottom: 0 !important;
}
.simple-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(rgba(255, 0, 0, 0.8)), color-stop(red), color-stop(rgba(255, 0, 0, 0.8)), to(transparent));
  background: linear-gradient(180deg, transparent, rgba(255, 0, 0, 0.8), red, rgba(255, 0, 0, 0.8), transparent);
  border-radius: 2px;
}
@media screen and (max-width: 767.98px) {
  .simple-item {
    margin-bottom: 20px !important;
    padding: 15px !important;
    border-radius: 12px;
  }
}

.simple-item strong {
  display: block !important;
  margin-bottom: 12px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  position: relative;
  padding-left: 20px;
}
.simple-item strong::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: rgba(255, 0, 0, 0.8);
  font-size: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767.98px) {
  .simple-item strong {
    font-size: 12px !important;
    padding-left: 16px;
  }
}

.simple-item span {
  display: block !important;
  padding: 15px 20px !important;
  color: white !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
  position: relative;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767.98px) {
  .simple-item span {
    padding: 12px 16px !important;
    font-size: 15px !important;
  }
}
.simple-item span:empty::after {
  content: "（未入力）";
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.simple-footer {
  padding: 25px 35px 30px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 20px !important;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(20, 20, 40, 0.6) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767.98px) {
  .simple-footer {
    padding: 20px 25px 25px !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 15px !important;
  }
}

.simple-edit,
.simple-send {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 !important;
          flex: 1 !important;
  padding: 15px 25px !important;
  border: none !important;
  border-radius: 30px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.simple-edit::before,
.simple-send::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.simple-edit:hover::before,
.simple-send:hover::before {
  left: 100%;
}
@media screen and (max-width: 767.98px) {
  .simple-edit,
  .simple-send {
    padding: 14px 20px !important;
    font-size: 15px !important;
  }
}

.simple-edit {
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.9) 0%, rgba(73, 80, 87, 0.95) 100%) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.simple-edit:hover {
  background: linear-gradient(135deg, rgba(90, 98, 104, 0.95) 0%, rgb(61, 64, 67) 100%) !important;
  -webkit-transform: translateY(-3px) !important;
          transform: translateY(-3px) !important;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(108, 117, 125, 0.4);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(108, 117, 125, 0.4);
}
.simple-edit:active {
  -webkit-transform: translateY(-1px) !important;
          transform: translateY(-1px) !important;
}

.simple-send {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.9) 0%, rgba(204, 0, 0, 0.95) 50%, rgb(139, 0, 0) 100%) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  -webkit-box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
          box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.simple-send:hover {
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.95) 0%, rgb(153, 0, 0) 50%, rgb(102, 0, 0) 100%) !important;
  -webkit-transform: translateY(-4px) !important;
          transform: translateY(-4px) !important;
  -webkit-box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
          box-shadow: 0 12px 35px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.simple-send:active {
  -webkit-transform: translateY(-2px) !important;
          transform: translateY(-2px) !important;
}

body.modal-open {
  overflow: hidden !important;
}

@media (prefers-reduced-motion: reduce) {
  #simple-modal,
  .simple-content,
  .simple-edit,
  .simple-send,
  .simple-close {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
  #simple-modal::before {
    -webkit-animation: none !important;
            animation: none !important;
  }
}
@media (prefers-color-scheme: dark) {
  .simple-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.02) 100%);
  }
}
.wpcf7-spinner {
  display: none;
}

/* ==============================================
           心霊サイト用モーダルデザイン
        ============================================== */
#simple-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  background: radial-gradient(ellipse at center, rgba(201, 59, 59, 0.1) 0%, rgba(0, 0, 0, 0.95) 100%) !important;
  display: none !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  margin: 0 !important;
  padding: 20px !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  backdrop-filter: blur(5px) !important;
}

#simple-modal.show {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-animation: ghostlyAppear 0.5s ease-out !important;
          animation: ghostlyAppear 0.5s ease-out !important;
}

.simple-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
  cursor: pointer !important;
}

.simple-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
  border-radius: 15px !important;
  width: 100% !important;
  max-width: 650px !important;
  max-height: 90vh !important;
  overflow: hidden !important;
  position: relative !important;
  z-index: 1000000 !important;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 59, 59, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 59, 59, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  border: 2px solid #c93b3b !important;
  -webkit-animation: materializeFromDarkness 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
          animation: materializeFromDarkness 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.simple-header {
  background: linear-gradient(135deg, #c93b3b 0%, #8b0000 100%) !important;
  color: white !important;
  padding: 25px 30px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
}

.simple-header h3 {
  margin: 0 0 0 40px !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.5) !important;
  letter-spacing: 0.5px !important;
}

.simple-close {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  font-size: 24px !important;
  cursor: pointer !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  font-weight: bold !important;
}

.simple-close:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  -webkit-transform: scale(1.1) rotate(90deg) !important;
          transform: scale(1.1) rotate(90deg) !important;
  -webkit-box-shadow: 0 0 15px rgba(255, 255, 255, 0.4) !important;
          box-shadow: 0 0 15px rgba(255, 255, 255, 0.4) !important;
}

.simple-body {
  padding: 30px !important;
  max-height: 60vh !important;
  overflow-y: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(201, 59, 59, 0.05))) !important;
  background: linear-gradient(to bottom, transparent 0%, rgba(201, 59, 59, 0.05) 100%) !important;
}

.simple-item {
  margin-bottom: 25px !important;
  padding: 20px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%) !important;
  border: 1px solid rgba(201, 59, 59, 0.3) !important;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  position: relative !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.simple-item:hover {
  border-color: rgba(201, 59, 59, 0.5) !important;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(201, 59, 59, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(201, 59, 59, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  -webkit-transform: translateY(-2px) !important;
          transform: translateY(-2px) !important;
}

.simple-item:last-child {
  margin-bottom: 0 !important;
}

.simple-item::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 100% !important;
  background: -webkit-gradient(linear, left top, left bottom, from(#c93b3b), to(#8b0000)) !important;
  background: linear-gradient(to bottom, #c93b3b 0%, #8b0000 100%) !important;
  border-radius: 0 0 0 10px !important;
}

.simple-item strong {
  display: block !important;
  margin-bottom: 12px !important;
  color: #c93b3b !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-shadow: 0 0 5px rgba(201, 59, 59, 0.5) !important;
}

.simple-item span {
  display: block !important;
  padding: 15px 20px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #e0e0e0 !important;
  line-height: 1.6 !important;
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
  font-size: 16px !important;
  min-height: 20px !important;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.simple-footer {
  padding: 25px 30px !important;
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%) !important;
  border-top: 2px solid rgba(201, 59, 59, 0.3) !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 20px !important;
}

.simple-edit,
.simple-send {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 !important;
          flex: 1 !important;
  padding: 15px 25px !important;
  border: 2px solid transparent !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.simple-edit {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%) !important;
  color: #e0e0e0 !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.simple-edit:hover {
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  -webkit-transform: translateY(-2px) !important;
          transform: translateY(-2px) !important;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
  color: white !important;
}

.simple-send {
  background: linear-gradient(135deg, #c93b3b 0%, #8b0000 100%) !important;
  color: white !important;
  border-color: #d94545 !important;
  -webkit-box-shadow: 0 4px 15px rgba(201, 59, 59, 0.4), 0 0 20px rgba(201, 59, 59, 0.2) !important;
          box-shadow: 0 4px 15px rgba(201, 59, 59, 0.4), 0 0 20px rgba(201, 59, 59, 0.2) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.simple-send:hover {
  background: linear-gradient(135deg, #d94545 0%, #a02d2d 100%) !important;
  border-color: #e14e4e !important;
  -webkit-transform: translateY(-3px) !important;
          transform: translateY(-3px) !important;
  -webkit-box-shadow: 0 8px 25px rgba(201, 59, 59, 0.6), 0 0 30px rgba(201, 59, 59, 0.4) !important;
          box-shadow: 0 8px 25px rgba(201, 59, 59, 0.6), 0 0 30px rgba(201, 59, 59, 0.4) !important;
  -webkit-animation: bloodPulse 1.5s ease-in-out infinite !important;
          animation: bloodPulse 1.5s ease-in-out infinite !important;
}

/* スクロールバーのカスタマイズ */
.simple-body::-webkit-scrollbar {
  width: 8px !important;
}

.simple-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3) !important;
  border-radius: 4px !important;
}

.simple-body::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#c93b3b), to(#8b0000)) !important;
  background: linear-gradient(to bottom, #c93b3b, #8b0000) !important;
  border-radius: 4px !important;
}

.simple-body::-webkit-scrollbar-thumb:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#d94545), to(#a02d2d)) !important;
  background: linear-gradient(to bottom, #d94545, #a02d2d) !important;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  #simple-modal {
    padding: 15px !important;
  }
  .simple-content {
    max-height: 95vh !important;
    border-radius: 12px !important;
  }
  .simple-header {
    padding: 20px 25px !important;
  }
  .simple-header h3 {
    font-size: 20px !important;
    margin-left: 35px !important;
  }
  .simple-header::before {
    font-size: 18px !important;
    left: 15px !important;
  }
  .simple-body {
    padding: 25px !important;
  }
  .simple-item {
    padding: 15px !important;
    margin-bottom: 20px !important;
  }
  .simple-footer {
    padding: 20px 25px !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 15px !important;
  }
  .simple-edit,
  .simple-send {
    padding: 15px 20px !important;
    font-size: 15px !important;
  }
}
@media (max-width: 480px) {
  #simple-modal {
    padding: 10px !important;
  }
  .simple-content {
    border-radius: 10px !important;
  }
  .simple-header {
    padding: 15px 20px !important;
  }
  .simple-header h3 {
    font-size: 18px !important;
    margin-left: 30px !important;
  }
  .simple-body {
    padding: 20px !important;
  }
  .simple-item {
    padding: 12px !important;
  }
  .simple-footer {
    padding: 15px 20px !important;
  }
}
/* アニメーション */
@-webkit-keyframes ghostlyAppear {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(5px);
  }
}
@keyframes ghostlyAppear {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(5px);
  }
}
@-webkit-keyframes materializeFromDarkness {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(50px);
            transform: scale(0.8) translateY(50px);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 59, 59, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 59, 59, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}
@keyframes materializeFromDarkness {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(50px);
            transform: scale(0.8) translateY(50px);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 59, 59, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 59, 59, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}
@-webkit-keyframes ghostFloat {
  0%, 100% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: translateY(-50%) translateX(3px);
            transform: translateY(-50%) translateX(3px);
    opacity: 1;
  }
}
@keyframes ghostFloat {
  0%, 100% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: translateY(-50%) translateX(3px);
            transform: translateY(-50%) translateX(3px);
    opacity: 1;
  }
}
@-webkit-keyframes bloodPulse {
  0%, 100% {
    -webkit-box-shadow: 0 8px 25px rgba(201, 59, 59, 0.6), 0 0 30px rgba(201, 59, 59, 0.4);
            box-shadow: 0 8px 25px rgba(201, 59, 59, 0.6), 0 0 30px rgba(201, 59, 59, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 8px 25px rgba(201, 59, 59, 0.8), 0 0 40px rgba(201, 59, 59, 0.6), 0 0 60px rgba(201, 59, 59, 0.3);
            box-shadow: 0 8px 25px rgba(201, 59, 59, 0.8), 0 0 40px rgba(201, 59, 59, 0.6), 0 0 60px rgba(201, 59, 59, 0.3);
  }
}
@keyframes bloodPulse {
  0%, 100% {
    -webkit-box-shadow: 0 8px 25px rgba(201, 59, 59, 0.6), 0 0 30px rgba(201, 59, 59, 0.4);
            box-shadow: 0 8px 25px rgba(201, 59, 59, 0.6), 0 0 30px rgba(201, 59, 59, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 8px 25px rgba(201, 59, 59, 0.8), 0 0 40px rgba(201, 59, 59, 0.6), 0 0 60px rgba(201, 59, 59, 0.3);
            box-shadow: 0 8px 25px rgba(201, 59, 59, 0.8), 0 0 40px rgba(201, 59, 59, 0.6), 0 0 60px rgba(201, 59, 59, 0.3);
  }
}
/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
  .simple-content,
  .simple-header::before,
  .simple-send:hover {
    -webkit-animation: none !important;
            animation: none !important;
  }
  .simple-edit,
  .simple-send,
  .simple-close,
  .simple-item {
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/* 高コントラスト対応 */
@media (prefers-contrast: high) {
  .simple-content {
    border-color: #ffffff !important;
    background: #000000 !important;
  }
  .simple-header {
    background: #ff0000 !important;
  }
  .simple-send {
    background: #ff0000 !important;
  }
}