@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800;900&display=swap");
.sample-text {
  color: #F88;
}

.ideamonster-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.ideamonster-main {
  flex: 0 0 40%;
  background: #1B3292 url("/img/ideamonster-top.png") no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 100vh;
  padding: 2rem;
}
.ideamonster-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1B3292;
  mix-blend-mode: multiply;
  opacity: 0.3;
  pointer-events: none;
}

.ideamonster-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: white;
  z-index: 2;
  position: relative;
}

.main-visual-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.main-logo {
  max-width: 70%;
  height: auto;
  margin-bottom: 2.5rem;
}

.main-text {
  color: white;
}
.main-text a {
  color: white;
  text-decoration: underline;
}
.main-text p {
  font-size: clamp(0.9rem, 0.561rem + 0.4vw, 1.038rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.main-text p:last-child {
  margin-bottom: 0;
}
.main-text .terms-notice {
  opacity: 0.9;
  margin-top: 1rem;
}

.ideamonster-header {
  align-self: flex-start;
  text-align: left;
  width: 100%;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ideamonster-header h1 {
  font-size: 1.7rem;
  font-weight: bold;
  margin: 0;
  opacity: 0.9;
  position: relative;
  padding-left: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}

.ideamonster-description {
  margin-bottom: 0.5rem;
  text-align: left;
  width: 100%;
}
@media (max-width: 768px) {
  .ideamonster-description {
    text-align: center;
  }
}
.ideamonster-description p {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  opacity: 0.95;
  line-height: 1.4;
  width: 100%;
}

.ideamonster-form {
  flex: 0 0 60%;
  background: white;
  overflow-y: auto;
  height: 100vh;
}

.form-container {
  padding: 4rem 8rem 0 8rem;
}
@media (max-width: 768px) {
  .form-container {
    padding: 3.5rem 1.5rem 0 1.5rem;
  }
}

.form-title {
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  .form-title {
    font-size: 1.5rem;
  }
}

.form-section {
  margin-bottom: 1.5rem;
}
.form-section label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #333;
  position: relative;
  padding-left: 0;
  font-weight: 600;
}
.form-section label.required::after {
  content: "*";
  color: #e74c3c;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 0.25rem;
}

.name-inputs {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.name-inputs > div {
  flex: 1;
}
.name-inputs .name-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  font-size: 16px;
  background: #f8f9fa;
  box-sizing: border-box;
}
.name-inputs label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #333;
  position: relative;
  padding-left: 0;
}
.name-inputs label.required::after {
  content: "*";
  color: #e74c3c;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 0.25rem;
}
.name-inputs label.hidden-label {
  visibility: hidden;
  height: 1.5rem;
  margin-bottom: 0.5rem;
}
.name-inputs span {
  font-size: 0.8rem;
  color: #666;
  min-width: 20px;
  text-align: center;
}

.full-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #E2E2E2;
  border-radius: 4px;
  font-size: 16px;
  background: #f8f9fa;
  box-sizing: border-box;
}
.full-input::placeholder {
  color: #999;
}
.full-input.textarea-large {
  min-height: 250px;
  resize: vertical;
  line-height: 1.5;
}
.full-input[type=select], .full-input:is(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 35px;
  cursor: pointer;
}
.full-input[type=select]::-ms-expand, .full-input:is(select)::-ms-expand {
  display: none;
}
@media (max-width: 768px) {
  .full-input[type=select], .full-input:is(select) {
    font-size: 16px;
    position: static;
    transform: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -webkit-border-radius: 4px;
    color: #333 !important;
    -webkit-text-fill-color: #333;
    opacity: 1;
  }
}

select.full-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 35px;
  cursor: pointer;
}
select.full-input::-ms-expand {
  display: none;
}
select.full-input:focus {
  outline-offset: 2px;
}
@media (max-width: 768px) {
  select.full-input {
    font-size: 16px;
    position: static;
    transform: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -webkit-border-radius: 4px;
    color: #333 !important;
    -webkit-text-fill-color: #333;
    opacity: 1;
  }
}

.half-input {
  width: 50%;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 16px;
  background: #f8f9fa;
  box-sizing: border-box;
}
.half-input::placeholder {
  color: #999;
}

.address-section .mansion-info {
  margin-bottom: 1rem;
}
.address-section .mansion-info .mansion-label {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.3rem;
}
.address-section .mansion-info .mansion-name {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.address-section .room-number-section .room-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.3rem;
  padding-left: 0;
}
.address-section .mansion-name,
.address-section .room-number {
  margin-bottom: 0.8rem;
}
.address-section .mansion-name span,
.address-section .room-number span {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.3rem;
}
.address-section .room-input {
  width: 120px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  background: #f8f9fa;
}

.event-description {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 4px;
  font-size: 0.85rem;
  line-height: 2;
}
.event-description p {
  margin: 0.3rem 0;
}
.event-description p:first-child {
  margin-top: 0;
}
.event-description p:last-child {
  margin-bottom: 0;
}
.event-description .description-content {
  white-space: pre-wrap;
}
.event-description .price-highlight {
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
}
.event-description .payment-description {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #666;
}

.price-suffix {
  font-size: 0.8em;
  font-weight: normal;
  margin-left: 0.2em;
}

.date-options .date-option {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.date-options .date-option input[type=radio] {
  margin: 0;
  transform: scale(1.5);
  vertical-align: middle;
  accent-color: #2C40D6;
}
.date-options .date-option label {
  font-weight: 400;
  font-size: 0.85rem;
  padding-left: 0;
  margin: 0;
  cursor: pointer;
}

.radio-group .radio-option {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem;
  border-radius: 5px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  font-weight: 400;
}
.radio-group .radio-option input[type=radio] {
  margin: 0;
  cursor: pointer;
  transform: scale(1.5);
  vertical-align: middle;
  accent-color: #2C40D6;
}
.radio-group .radio-option span {
  cursor: pointer;
}
.radio-group .radio-option:hover {
  background-color: #f8f9fa;
}
.radio-group .radio-option:last-child {
  margin-bottom: 0;
}

.radio-group-horizontal {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.radio-group-horizontal .radio-option {
  margin-bottom: 0;
  flex: 0 0 auto;
  background: transparent;
}
.radio-group-horizontal .radio-option:hover {
  background: transparent;
}

.radio-option.sold-out {
  position: relative;
  opacity: 0.6;
  cursor: not-allowed;
}
.radio-option.sold-out::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 40%, #e74c3c 40%, #e74c3c 60%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.radio-option.sold-out input[type=radio] {
  cursor: not-allowed;
}
.radio-option.sold-out span {
  cursor: not-allowed;
  position: relative;
  z-index: 2;
}
.radio-option.sold-out:hover {
  background-color: #f8f9fa;
}

.sold-out-text {
  color: #e74c3c;
  font-weight: 600;
}

.radio-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.radio-option.disabled input[type=radio] {
  cursor: not-allowed;
}
.radio-option.disabled span {
  cursor: not-allowed;
}
.radio-option.disabled:hover {
  background-color: #f8f9fa;
}

.invitation-ticket-note {
  color: #e74c3c;
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

.event-datetime-note {
  color: #e74c3c;
  font-size: 0.7rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.form-section.disabled {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}
.form-section.disabled label {
  color: #6c757d;
}
.form-section.disabled input, .form-section.disabled select, .form-section.disabled textarea {
  background-color: #f8f9fa;
  border-color: #dee2e6;
  color: #6c757d;
  cursor: not-allowed;
}
.form-section.disabled .radio-group .radio-option {
  color: #6c757d;
  cursor: not-allowed;
}
.form-section.disabled .radio-group .radio-option input[type=radio] {
  cursor: not-allowed;
}
.form-section.disabled .radio-group .radio-option span {
  cursor: not-allowed;
}
.form-section.disabled .radio-group .radio-option:hover {
  background-color: transparent;
}

.checkbox-group {
  margin-bottom: 1rem;
}
.checkbox-group .checkbox-option {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  cursor: pointer;
  font-size: 0.85rem;
}
.checkbox-group .checkbox-option input[type=checkbox] {
  margin: 0;
  cursor: pointer;
}
.checkbox-group .checkbox-option span {
  cursor: pointer;
}
.checkbox-group .checkbox-option:hover {
  background-color: #f8f9fa;
}
.checkbox-group .checkbox-option:last-child {
  margin-bottom: 0;
}

.payment-section {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.payment-section .payment-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
.payment-section .payment-amount {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.payment-section .payment-note {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

.payment-display .payment-amount-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}
.payment-display .item-note {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}
.payment-display .event-description .description-content {
  color: #404040;
}

label[for=question_payment_amount] {
  padding-left: 0;
}

.submit-button {
  width: 280px;
  padding: 15px 30px;
  background: #2C40D6;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}
.submit-button:hover {
  background: #1e2eb8;
}
.submit-button:active {
  background: #172499;
}
.submit-button.disabled, .submit-button:disabled {
  background: #bdc3c7;
  color: #7f8c8d;
  cursor: not-allowed;
}
.submit-button.disabled:hover, .submit-button:disabled:hover {
  background: #bdc3c7;
}

.capacity-warning {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 4px;
  font-size: 0.85rem;
}
.capacity-warning .warning-icon {
  font-size: 1rem;
  color: #856404;
}
.capacity-warning .warning-text {
  color: #856404;
  font-weight: 500;
}

.submit-warning {
  text-align: center;
  color: #e74c3c;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.agreement-section .checkbox-group {
  margin-top: 0.5rem;
}
.agreement-section .terms-link {
  color: #107AC6;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.agreement-section .terms-link:hover {
  color: #2b35c0;
  text-decoration: none;
}
.agreement-section .terms-link:focus {
  outline: 2px solid #e74c3c;
  outline-offset: 2px;
}

.faq-section {
  margin-top: 2rem;
  padding-top: 2rem;
}
.faq-section .section-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}
.faq-section .faq-title {
  font-size: 1.4rem;
  color: #333;
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}
.faq-section .faq-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}
.faq-section .faq-item:last-child {
  margin-bottom: 0;
}
.faq-section .faq-question {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}
.faq-section .faq-question .faq-q {
  color: #e74c3c;
  font-weight: 700;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.faq-section .faq-answer {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-left: 1.5rem;
}

.company-info {
  max-width: 74%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .company-info {
    max-width: 100%;
  }
}
.company-info .company-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
.company-info .company-item:last-child {
  margin-bottom: 0;
}
.company-info .company-label {
  color: #333;
  font-size: 0.9rem;
  min-width: 80px;
  flex-shrink: 0;
}
.company-info .company-value {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.form-footer {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem 0;
}
.form-footer p {
  margin: 0;
  color: #6c757d;
  font-size: 0.8rem;
}

.terms-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.terms-header {
  background: #2C40D6;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
.terms-header h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

.terms-content {
  flex: 1;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 7rem 0;
  background: white;
}

.terms-title {
  margin-bottom: 6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .terms-title {
    margin-bottom: 3rem;
  }
}
.terms-title h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.terms-text {
  line-height: 1.8;
}
.terms-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 2rem 0 1rem 0;
}
.terms-text p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.terms-text ul {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}
.terms-text ul li {
  margin-bottom: 0.5rem;
}

.terms-date {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
  text-align: right;
}
.terms-date p {
  color: #666;
  font-size: 0.85rem;
  margin: 0.25rem 0;
}

.terms-actions {
  text-align: center;
  margin: 3rem 0 6rem 0;
}
.terms-actions .btn-back-to-form {
  width: 280px;
  background: #2C40D6;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}
.terms-actions .btn-back-to-form:hover {
  background: #1e2eb8;
}

.terms-footer {
  text-align: center;
  padding: 2rem 0;
}
.terms-footer p {
  margin: 0;
  color: #6c757d;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .terms-content {
    padding: 4rem 1.5rem;
  }
  .terms-header h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  .terms-title h2 {
    font-size: 1.5rem;
  }
  .terms-text h3 {
    font-size: 1.1rem;
  }
  .terms-text p, .terms-text ul {
    font-size: 0.9rem;
  }
  .terms-actions {
    margin: 2rem 1rem;
  }
  .terms-actions .btn-back-to-form {
    width: 100%;
    max-width: 280px;
    padding: 15px 30px;
    font-size: 1rem;
  }
}
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-header {
  background: #2C40D6;
  color: white;
  text-align: center;
  height: 80px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.success-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.success-content {
  flex: 1;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: white;
  text-align: center;
}

.success-title {
  margin-bottom: 2rem;
}
.success-title h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.success-message {
  margin-bottom: 2rem;
  line-height: 1.8;
}
.success-message p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.success-message p:last-of-type {
  margin-bottom: 2rem;
}
.success-message .contact-email {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2rem;
}

.success-actions .btn-back-to-form {
  width: 280px;
  background: #2C40D6;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}
.success-actions .btn-back-to-form:hover {
  background: #1e2eb8;
}

.success-footer {
  text-align: center;
  padding: 1rem;
  color: #6c757d;
  font-size: 0.8rem;
}
.success-footer p {
  margin: 0;
}

@media (max-width: 768px) {
  .success-content {
    padding: 2rem 0.5rem;
    margin: 0;
    box-shadow: none;
  }
  .success-header {
    height: 60px;
  }
  .success-title h2 {
    font-size: 1.3rem;
  }
  .success-message p {
    font-size: 0.95rem;
  }
  .success-actions .btn-back-to-form {
    width: 100%;
    max-width: 280px;
    padding: 15px 30px;
  }
}
.confirm-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.confirm-header {
  background: #2C40D6;
  color: white;
  text-align: center;
  height: 80px;
  overflow: hidden;
  position: relative;
}
.confirm-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.confirm-content {
  flex: 1;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: white;
}

.confirm-title {
  margin-bottom: 4rem;
  text-align: center;
}
.confirm-title h2 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.confirm-items {
  margin-bottom: 2rem;
  border-top: 1px solid #e9ecef;
}

.confirm-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
}
.confirm-item .item-label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.confirm-item .item-label .required-mark {
  color: #e74c3c;
}
.confirm-item .item-value {
  color: #555;
  font-size: 0.9rem;
  word-break: break-word;
}

.confirm-error {
  color: #e74c3c;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.confirm-actions .btn-confirm-submit {
  width: 280px;
  background: #2C40D6;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}
.confirm-actions .btn-confirm-submit:hover {
  background: #1e2eb8;
}
.confirm-actions .btn-confirm-submit:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
}
.confirm-actions .btn-confirm-cancel {
  width: 280px;
  background: transparent;
  color: #6c757d;
  border: 1px solid #6c757d;
  border-radius: 25px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
}
.confirm-actions .btn-confirm-cancel:hover {
  background: #6c757d;
  color: white;
}
.confirm-actions .btn-confirm-cancel:disabled {
  background: transparent;
  color: #bdc3c7;
  border-color: #bdc3c7;
  cursor: not-allowed;
}

.confirm-footer {
  text-align: center;
  padding: 1rem;
  color: #6c757d;
  font-size: 0.8rem;
}
.confirm-footer p {
  margin: 0;
}

@media (max-width: 768px) {
  .confirm-content {
    padding: 1.5rem;
    margin: 0;
    box-shadow: none;
  }
  .confirm-title {
    text-align: center;
    margin: 2rem;
  }
  .confirm-header {
    height: 60px;
  }
  .confirm-title h2 {
    font-size: 1.3rem;
  }
  .confirm-item {
    flex-direction: column;
  }
  .confirm-item .item-label {
    margin-bottom: 0.5rem;
  }
  .confirm-actions {
    flex-direction: column;
  }
  .confirm-actions .btn-confirm-submit {
    width: 100%;
    max-width: 280px;
  }
  .confirm-actions .btn-confirm-cancel {
    width: 100%;
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .ideamonster-container {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .ideamonster-main {
    flex: none;
    padding: 0;
    padding-bottom: 0;
    min-height: 170px;
  }
  .main-visual-center {
    padding: 3rem 1rem;
  }
  .main-logo {
    max-width: 60%;
    margin-bottom: 1.5rem;
  }
  .main-text p {
    font-size: clamp(0.9rem, 0.561rem + 0.4vw, 1.038rem);
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .main-text .terms-notice {
    margin-top: 0.8rem;
  }
  .ideamonster-form {
    flex: none;
    height: auto;
    overflow-y: visible;
  }
  .ideamonster-header {
    margin-bottom: 0rem;
    width: 90%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .ideamonster-header {
    margin-left: 1rem;
  }
}
@media (max-width: 768px) {
  .ideamonster-header h1 {
    font-size: 0.9rem;
    font-weight: bold;
    padding-left: 0;
  }
  .ideamonster-logo h2 {
    font-size: 3rem;
    letter-spacing: 4px;
  }
}
@media (max-width: 768px) and (max-width: 375px) {
  .ideamonster-description p {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) and (min-width: 376px) and (max-width: 768px) {
  .ideamonster-description p {
    font-size: 0.95rem;
  }
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
}
.loading-container .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #e74c3c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .loading-overlay .loading-container {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
    width: calc(100% - 2rem);
    max-width: 300px;
  }
}
.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
}
.error-container .error-icon {
  font-size: 3rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}
.error-container .error-text {
  font-size: 1rem;
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.error-container .error-description {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-container {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.modal-container .modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.modal-container .modal-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.2rem;
}
.modal-container .modal-content {
  padding: 1rem;
}
.modal-container .modal-content .confirm-item {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}
.modal-container .modal-content .confirm-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.modal-container .modal-content .confirm-item .item-label {
  font-weight: 600;
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.modal-container .modal-content .confirm-item .item-value {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
}
.modal-container .modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}
.modal-container .modal-actions .btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.modal-container .modal-actions .btn.btn-primary {
  background: #e74c3c;
  color: white;
}
.modal-container .modal-actions .btn.btn-primary:hover {
  background: #c0392b;
}
.modal-container .modal-actions .btn.btn-primary:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
}
.modal-container .modal-actions .btn.btn-secondary {
  background: #95a5a6;
  color: white;
}
.modal-container .modal-actions .btn.btn-secondary:hover {
  background: #7f8c8d;
}

@media (max-width: 768px) {
  .modal-container {
    padding: 1.5rem;
    max-width: 95%;
  }
  .modal-container .modal-actions {
    flex-direction: column;
  }
  .modal-container .modal-actions .btn {
    width: 100%;
  }
}
.success-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 2rem;
}

.success-content {
  text-align: center;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 6rem 2rem;
}

.success-icon-wrapper {
  margin-bottom: 1.5rem;
}

.success-icon {
  font-size: 4rem;
  display: inline-block;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  color: white;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  }
}
± .success-main {
  margin-bottom: 2rem;
}

.success-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
}

.success-message {
  font-size: 1.1rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin: 0;
}

.success-details {
  margin-bottom: 2rem;
}

.success-info-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #4CAF50;
}

.info-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 1rem 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #5a6c7d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.success-contact {
  background: #fff3cd;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #ffeaa7;
}

.contact-text {
  font-size: 0.95rem;
  color: #856404;
  margin: 0;
  line-height: 1.5;
}

.success-actions {
  margin-top: 1.5rem;
}

.btn-return {
  width: 280px;
  background: #2C40D6;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 0 auto;
}

.btn-return:hover {
  background: #1e2eb8;
}

.btn-return:active {
  background: #172499;
}

.validation-error {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 4px;
  line-height: 1.4;
}

.full-input.error,
.half-input.error {
  border-color: #e74c3c;
  background: #fff5f5;
}
.full-input.error:focus,
.half-input.error:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.number-input-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.number-input-container .input-unit {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  min-width: 20px;
}

@media (max-width: 768px) {
  .success-container {
    padding: 1rem;
    min-height: 400px;
  }
  .success-content {
    padding: 2rem 0.5rem;
    max-width: 100%;
    margin: 0 0.5rem;
    border-radius: 12px;
  }
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 3rem;
    line-height: 60px;
  }
  .success-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .success-message {
    font-size: 1rem;
    line-height: 1.5;
  }
  .success-main {
    margin-bottom: 1.5rem;
  }
  .success-details {
    margin-bottom: 1.5rem;
  }
  .success-info-box {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
  }
  .info-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  .info-list li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }
  .success-contact {
    padding: 0.75rem;
  }
  .contact-text {
    font-size: 0.9rem;
  }
  .btn-return {
    width: 100%;
    max-width: 280px;
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=main.css.map */
