@charset "UTF-8";

.order_pc_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.order_pc_header .header_wrapper {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 1200px;
  height: 100%;
}

.order_pc_header .header_wrapper .main_logo {
  height: 50px;
}

.order_pc_header .header_wrapper .main_logo a {
  display: block;
  height: 100%;
}

.order_pc_header .header_wrapper .main_logo a img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.order_sp_header {
  display: none;
}

@media screen and (max-width: 480px) {
  .order_pc_header {
    display: none;
  }

  .order_sp_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 100;
  }

  .order_sp_header .main_logo {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 100%;
  }

  .order_sp_header .main_logo a {
    display: block;
    height: 40px;
  }

  .order_sp_header .main_logo a img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }
}

.order-container {
  margin: 70px auto 0 auto;
  padding: 32px 24px;
  max-width: 1000px;
  min-height: calc(100vh - 140px);
}

@media screen and (max-width: 480px) {
  .order-container {
    margin-top: 60px;
    padding: 24px 16px;
    min-height: calc(100vh - 120px);
  }
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 48px auto;
  padding: 0;
  max-width: 800px;
  position: relative;
}

@media screen and (max-width: 480px) {
  .step-indicator {
    margin-bottom: 32px;
  }
}

.step-indicator::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: #C4C4C4;
  z-index: 0;
}

.step-indicator .step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  z-index: 1;
}

.step-indicator .step::before {
  content: attr(data-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: #C4C4C4;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

@media screen and (max-width: 480px) {
  .step-indicator .step::before {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

.step-indicator .step .step-label {
  font-size: 0.9rem;
  color: #A0AEC0;
  text-align: center;
  transition: color 0.3s ease;
}

@media screen and (max-width: 480px) {
  .step-indicator .step .step-label {
    font-size: 0.75rem;
  }
}

.step-indicator .step.active::before {
  background: #108C67;
  box-shadow: 0 0 0 4px rgba(16, 140, 103, 0.1);
}

.step-indicator .step.active .step-label {
  color: #108C67;
  font-weight: 600;
}

.step-indicator .step.completed::before {
  background: #55A990;
}

.step-indicator .step.completed .step-label {
  color: #55A990;
}

.exam-card,
.exam-selection-card,
.form-card,
.form-layout .form-sidebar .order-summary-sticky,
.form-layout .form-main .form-section,
.confirm-card {
  margin-bottom: 24px;
  /* padding: 32px; */
  padding: 0 16px 16px 16px;
  background: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 480px) {

  .exam-card,
  .exam-selection-card,
  .form-card,
  .form-layout .form-sidebar .order-summary-sticky,
  .form-layout .form-main .form-section,
  .confirm-card {
    /* padding: 24px; */
    padding: 12px;
    border-radius: 4px;
  }
}

.exam-card .card-title,
.exam-selection-card .card-title,
.form-card .card-title,
.form-layout .form-sidebar .order-summary-sticky .card-title,
.form-layout .form-main .form-section .card-title,
.confirm-card .card-title {
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1A202C;
  border-bottom: 2px solid #108C67;
}

@media screen and (max-width: 480px) {

  .exam-card .card-title,
  .exam-selection-card .card-title,
  .form-card .card-title,
  .form-layout .form-sidebar .order-summary-sticky .card-title,
  .form-layout .form-main .form-section .card-title,
  .confirm-card .card-title {
    font-size: 1.1rem;
  }
}

.exam-card .card-title .required,
.exam-selection-card .card-title .required,
.form-card .card-title .required,
.form-layout .form-sidebar .order-summary-sticky .card-title .required,
.form-layout .form-main .form-section .card-title .required,
.confirm-card .card-title .required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #E53E3E;
  border-radius: 3px;
}

.exam-card .card-content,
.exam-selection-card .card-content,
.form-card .card-content,
.form-layout .form-sidebar .order-summary-sticky .card-content,
.form-layout .form-main .form-section .card-content,
.confirm-card .card-content {
  margin-bottom: 20px;
  color: #4A5568;
  line-height: 1.6;
}

.exam-selection-card .category-section {
  margin-bottom: 32px;
}

.exam-selection-card .category-section:last-child {
  margin-bottom: 0;
}

.exam-selection-card .category-title {
  margin: 0 0 24px 0;
}

.exam-selection-card .category-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #108C67;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
}

.exam-selection-card .category-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.exam-selection-card .category-toggle::after {
  content: "";
}

@media screen and (max-width: 480px) {
  .exam-selection-card .category-title {
    margin: 0 0 16px 0;
  }

  .exam-selection-card .category-toggle {
    font-size: 1rem;
    padding: 16px 16px;
  }
  .exam-selection-card .category-toggle::after {
    content: "+";
    font-weight: 700;
  }
}

.exam-selection-card .exam-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 480px) {
  .exam-selection-card .exam-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .exam-selection-card .category-section.is-open .category-toggle::after {
    content: "-";
  }
}

@media screen and (max-width: 480px) {
  .is-exam-accordion .exam-selection-card .category-section {
    margin-bottom: 24px;
  }

  .is-exam-accordion .exam-selection-card .exam-list {
    gap: 8px;
    display: none;
  }

  .is-exam-accordion .exam-selection-card .category-section.is-open .exam-list {
    display: grid;
  }
}

.exam-selection-card .exam-item {
  position: relative;
}

.exam-selection-card .exam-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.exam-selection-card .exam-item input[type=checkbox]:checked+.exam-label {
  background: rgba(16, 140, 103, 0.05);
  border-color: #108C67;
}

.exam-selection-card .exam-item input[type=checkbox]:checked+.exam-label::before {
  background: #108C67;
  border-color: #108C67;
}

.exam-selection-card .exam-item input[type=checkbox]:checked+.exam-label::after {
  opacity: 1;
  transform: scale(1);
}

.exam-selection-card .exam-item input[type=checkbox]:focus+.exam-label {
  outline: 2px solid #108C67;
  outline-offset: 2px;
}

.exam-selection-card .exam-item .exam-label {
  display: flex;
  align-items: center;
  padding: 16px 24px 16px 50px;
  min-height: 54px;
  background: #FAFAFA;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.4;
}

@media screen and (max-width: 480px) {
  .exam-selection-card .exam-item .exam-label {
    padding: 16px 16px 16px 45px;
    min-height: 48px;
    font-size: 0.9rem;
  }
}

.exam-selection-card .exam-item .exam-label::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 24px;
  height: 24px;
  border: 2px solid #E0E0E0;
  border-radius: 3px;
  background: #fff;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

@media screen and (max-width: 480px) {
  .exam-selection-card .exam-item .exam-label::before {
    width: 20px;
    height: 20px;
    left: 12px;
    top: 14px;
  }
}

.exam-selection-card .exam-item .exam-label::after {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

@media screen and (max-width: 480px) {
  .exam-selection-card .exam-item .exam-label::after {
    width: 20px;
    height: 20px;
    font-size: 13px;
    left: 12px;
    top: 14px;
  }
}

.exam-selection-card .exam-item .exam-label:hover {
  background: rgba(16, 140, 103, 0.02);
  border-color: #108C67;
}

.exam-selection-card .exam-item .exam-price {
  margin-left: auto;
  padding-left: 16px;
  font-weight: 600;
  color: #BC4C1B;
  white-space: nowrap;
}

.selection-summary {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: #fff;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

@media screen and (max-width: 480px) {
  .selection-summary {
    padding: 16px;
  }
}

.selection-summary .summary-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 32px;
}

@media screen and (max-width: 480px) {
  .selection-summary .summary-content {
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }
}

.selection-summary .summary-info {
  display: flex;
  align-items: center;
  gap: 48px;
}

@media screen and (max-width: 480px) {
  .selection-summary .summary-info {
    width: 100%;
    justify-content: space-between;
    gap: 24px;
  }
}

.selection-summary .summary-info .info-item {
  display: flex;
  flex-direction: column;
}

.selection-summary .summary-info .info-item .label {
  font-size: 0.85rem;
  color: #A0AEC0;
}

@media screen and (max-width: 480px) {
  .selection-summary .summary-info .info-item .label {
    font-size: 0.8rem;
  }
}

.selection-summary .summary-info .info-item .value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1A202C;
}

@media screen and (max-width: 480px) {
  .selection-summary .summary-info .info-item .value {
    font-size: 1.1rem;
  }
}

.selection-summary .summary-info .info-item .value .count-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #108C67;
}

@media screen and (max-width: 480px) {
  .selection-summary .summary-info .info-item .value .count-number {
    font-size: 1.4rem;
  }
}

.selection-summary .summary-info .info-item .value .count-unit {
  margin-left: 8px;
  font-size: 1rem;
}

@media screen and (max-width: 480px) {
  .selection-summary .summary-info .info-item .value .count-unit {
    font-size: 0.9rem;
  }
}

.selection-summary .summary-info .info-item .value.total-price {
  color: #BC4C1B;
  font-size: 1.4rem;
}

@media screen and (max-width: 480px) {
  .selection-summary .summary-info .info-item .value.total-price {
    font-size: 1.2rem;
  }
}

.selection-summary .summary-action .btn-primary,
.selection-summary .summary-action .form-actions .btn-submit,
.form-actions .selection-summary .summary-action .btn-submit {
  padding: 16px 48px;
  min-width: 200px;
}

@media screen and (max-width: 480px) {

  .selection-summary .summary-action .btn-primary,
  .selection-summary .summary-action .form-actions .btn-submit,
  .form-actions .selection-summary .summary-action .btn-submit {
    width: 100%;
    min-width: auto;
  }
}

body.has-selection-summary .order-container {
  padding-bottom: 80px;
}

@media screen and (max-width: 480px) {
  body.has-selection-summary .order-container {
    padding-bottom: 16px;
  }
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  /* gap: 32px; */
  gap: 24px;
  align-items: start;
}

@media screen and (max-width: 480px) {
  .form-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media screen and (max-width: 480px) {
  .form-layout .form-main {
    order: 2;
  }
}

.form-layout .form-sidebar {
  position: sticky;
  top: 134px;
}

.form-layout .form-sidebar .order-summary-sticky {
  /* margin-top: -16px; */
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  .form-layout .form-sidebar {
    position: static;
    order: 1;
  }

  .form-layout .form-sidebar .order-summary-sticky {
    margin-top: -8px;
  }
}

.form-layout .form-sidebar .order-summary-sticky .summary-title {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 0 16px 0; */
  margin: 0;
  /* padding-bottom: 24px; */
  padding: 0;
  height: 40px;
  font-size: 1rem;
  font-weight: 700;
  /* color: #1A202C; */
  color: #fff;
  border-bottom: 2px solid #E2E8F0;
  background: #108C67;
}

.form-layout .form-sidebar .order-summary-sticky .exam-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.9rem;
}

.form-layout .form-sidebar .order-summary-sticky .exam-item:last-child {
  border-bottom: none;
}

.form-layout .form-sidebar .order-summary-sticky .exam-item .exam-name {
  flex: 1;
  min-width: 0;
  color: #4A5568;
  line-height: 1.5;
}

.form-layout .form-sidebar .order-summary-sticky .exam-item .exam-price {
  flex-shrink: 0;
  font-weight: 600;
  color: #1A202C;
  white-space: nowrap;
}

.form-layout .form-sidebar .order-summary-sticky .total-row {
  /* margin-top: 24px; */
  margin-top: 16px;
  /* padding-top: 24px; */
  padding-top: 16px;
  border-top: 2px solid #108C67;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-layout .form-sidebar .order-summary-sticky .total-row .total-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1A202C;
}

.form-layout .form-sidebar .order-summary-sticky .total-row .total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #BC4C1B;
}

.form-layout .form-sidebar .order-summary-sticky .discount_price_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 16px 0; */
  padding: 0 0 0 8px;
  margin-top: 0;
  margin-bottom: 0;
  border-top: none;
  border-bottom: 1px solid #E2E8F0;
  /* background: transparent !important; */
}

.form-layout .form-sidebar .order-summary-sticky .discount_price_area .discount_price_title {
  width: 30%;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A5568;
  background: transparent !important;
}

.form-layout .form-sidebar .order-summary-sticky .discount_price_area .discount_price {
  padding: 0 8px 0 0;
  width: 70%;
  font-size: 1rem;
  font-weight: 700;
  color: #e53e3e;
  text-align: right;
  white-space: nowrap;
  background: transparent !important;
}

.form-layout .form-sidebar .order-summary-sticky .coupon-area {
  /* margin-top: 32px;
  padding-top: 32px; */
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E2E8F0;
}

.form-layout .form-sidebar .order-summary-sticky .coupon-area .coupon-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1A202C;
  margin-bottom: 8px;
}

.form-layout .form-sidebar .order-summary-sticky .coupon-area .coupon-explain {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.5;
  margin-bottom: 24px;
}

.form-layout .form-sidebar .order-summary-sticky .coupon-area .coupon-input-wrapper {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .form-layout .form-sidebar .order-summary-sticky .coupon-area .coupon-input-wrapper {
    flex-direction: column;
  }
}

.form-layout .form-sidebar .order-summary-sticky .coupon-area .coupon-input {
  flex: 1;
  /* padding: 12px 24px; */
  padding: 12px 16px;
  width: 60%;
  border: 1px solid #CBD5E0;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-layout .form-sidebar .order-summary-sticky .coupon-area .coupon-input:focus {
  outline: none;
  border-color: #108C67;
  box-shadow: 0 0 0 3px rgba(16, 140, 103, 0.1);
}

.form-layout .form-sidebar .order-summary-sticky .coupon-area .coupon-input::placeholder {
  color: #a0aec0;
}

.form-layout .form-sidebar .order-summary-sticky .coupon-area .btn-coupon {
  padding: 12px 32px;
  background: #108C67;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .form-layout .form-sidebar .order-summary-sticky .coupon-area .btn-coupon {
    width: 100%;
  }
}

.form-layout .form-sidebar .order-summary-sticky .coupon-area .btn-coupon:hover {
  background: #0d7052;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(16, 140, 103, 0.2);
}

.form-layout .form-sidebar .order-summary-sticky .coupon-area .btn-coupon:active {
  transform: translateY(0);
}

.form-layout .form-sidebar .order-summary-sticky .coupon-area .btn-coupon:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
  transform: none;
}

.form-group {
  margin-bottom: 24px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group .form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A202C;
}

.form-group .form-label .required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #E53E3E;
  border-radius: 3px;
}

.form-group .form-help {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #A0AEC0;
}

.form-group .form-error {
  margin-top: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: #C53030;
  background: #FFF5F5;
  border-left: 3px solid #E53E3E;
  border-radius: 3px;
  display: none;
}

.form-group .form-error.show {
  display: block;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 24px; */
  gap: 16px;
}

@media screen and (max-width: 480px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 24px;
  }
}



.input-with-button {
  display: flex;
  gap: 16px;
}

.input-with-button .form-input {
  flex: 1;
}

.input-with-button .btn-secondary {
  flex-shrink: 0;
  white-space: nowrap;
}

@media screen and (max-width: 480px) {
  .input-with-button {
    flex-direction: column;
  }

  .input-with-button .btn-secondary {
    width: 100%;
  }
}

.expiration-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.expiration-inputs span {
  color: #718096;
  font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  color: #1A202C;
  background: #fff;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  transition: all 0.2s ease;
}

@media screen and (max-width: 480px) {

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
  }
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #108C67;
  box-shadow: 0 0 0 3px rgba(16, 140, 103, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #E53E3E;
  background: #FFF5F5;
}

.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
  background: #F3F4F6;
  cursor: not-allowed;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.zip-input-group {
  display: flex;
  gap: 16px;
}

.zip-input-group .form-input {
  flex: 1;
}

.zip-input-group .btn-auto-fill {
  padding: 16px 24px;
  white-space: nowrap;
  background: #BC4C1B;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.zip-input-group .btn-auto-fill:hover:not(:disabled) {
  background: #9A3D15;
}

.zip-input-group .btn-auto-fill:disabled {
  background: #D1D5DB;
  cursor: not-allowed;
}

.payment-select .payment-item {
  margin-bottom: 16px;
}

.payment-select .payment-item:last-child {
  margin-bottom: 0;
}

.payment-select .payment-item input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.payment-select .payment-item input[type=radio]:checked+.payment-label {
  background: rgba(16, 140, 103, 0.05);
  border-color: #108C67;
}

.payment-select .payment-item input[type=radio]:checked+.payment-label::before {
  border-color: #108C67;
}

.payment-select .payment-item input[type=radio]:checked+.payment-label::after {
  opacity: 1;
  transform: scale(1);
}

.payment-select .payment-item input[type=radio]:focus+.payment-label {
  outline: 2px solid #108C67;
  outline-offset: 2px;
}

.payment-select .payment-item .payment-label {
  position: relative;
  display: block;
  padding: 24px 24px 24px 50px;
  background: #FAFAFA;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-select .payment-item .payment-label::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 20px;
  height: 20px;
  border: 2px solid #E0E0E0;
  border-radius: 50%;
  background: #fff;
  transition: all 0.2s ease;
}

.payment-select .payment-item .payment-label::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #108C67;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.payment-select .payment-item .payment-label .payment-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: #1A202C;
  margin-bottom: 8px;
}

.payment-select .payment-item .payment-label .payment-desc {
  font-size: 0.9rem;
  color: #4A5568;
  line-height: 1.5;
}

.payment-select .payment-item .payment-label:hover {
  background: rgba(16, 140, 103, 0.02);
  border-color: #108C67;
}

.payment-select .payment-item .payment-details {
  margin-top: 16px;
  padding: 24px;
  background: #F9FAFB;
  border-radius: 4px;
  display: none;
}

.payment-select .payment-item .payment-details.show {
  display: block;
}

.btn,
.btn-outline,
.form-actions .btn-back,
.btn-secondary,
.btn-primary,
.form-actions .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  min-height: 48px;
}

@media screen and (max-width: 480px) {

  .btn,
  .btn-outline,
  .form-actions .btn-back,
  .btn-secondary,
  .btn-primary,
  .form-actions .btn-submit {
    min-height: 44px;
    padding: 16px 24px;
  }
}

.btn:disabled,
.btn-outline:disabled,
.form-actions .btn-back:disabled,
.btn-secondary:disabled,
.btn-primary:disabled,
.form-actions .btn-submit:disabled {
  background: #D1D5DB !important;
  color: #A0AEC0 !important;
  cursor: not-allowed;
}

.btn-primary,
.form-actions .btn-submit {
  background: #108C67;
  color: #fff;
}

.btn-primary:hover:not(:disabled),
.form-actions .btn-submit:hover:not(:disabled) {
  background: #0D7052;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background: #BC4C1B;
  color: #fff;
}

.btn-secondary:hover:not(:disabled) {
  background: #9A3D15;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline,
.form-actions .btn-back {
  background: #fff;
  color: #108C67;
  border: 2px solid #108C67;
}

.btn-outline:hover:not(:disabled),
.form-actions .btn-back:hover:not(:disabled) {
  background: #108C67;
  color: #fff;
}

/* ボタンエリアのフォーム（囲み枠なし） */
form#application {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 48px 0 0 0;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  .form-actions {
    flex-direction: column-reverse;
    gap: 16px;
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {

  .form-actions .btn,
  .form-actions .btn-primary,
  .form-actions .btn-submit,
  .form-actions .btn-secondary,
  .form-actions .btn-outline,
  .form-actions .btn-back {
    width: 100%;
  }
}

.form-actions .btn-submit {
  min-width: 240px;
}

@media screen and (max-width: 480px) {
  .form-actions .btn-submit {
    min-width: auto;
  }
}

/* 確認内容の注意書き */
.confirm-notice {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  padding: 32px;
  background: #fff;
  border: 2px solid #E2E8F0;
  border-left: 4px solid #108C67;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 480px) {
  .confirm-notice {
    padding: 24px;
    gap: 16px;
  }
}

.confirm-notice .notice-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #108C67;
}

.confirm-notice .notice-icon svg {
  width: 100%;
  height: 100%;
}

.confirm-notice .notice-content {
  flex: 1;
}

.confirm-notice .notice-content .notice-title {
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1A202C;
}

.confirm-notice .notice-content .notice-text {
  margin: 0;
  font-size: 0.9rem;
  color: #4A5568;
  line-height: 1.6;
}

/* カードヘッダー（アイコン付き） */
.confirm-sections .confirm-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 32px 0;
  padding-bottom: 24px;
  border-bottom: 3px solid #108C67;
}

.confirm-sections .confirm-card .card-header .card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 6px;
  background: #108C67;
  border-radius: 6px;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .card-header .card-icon {
    width: 28px;
    height: 28px;
    padding: 4px;
  }
}

.confirm-sections .confirm-card .card-header .card-icon svg {
  width: 100%;
  height: 100%;
}

.confirm-sections .confirm-card .card-header .card-title {
  flex: 1;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A202C;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .card-header .card-title {
    font-size: 1.2rem;
  }
}

.confirm-sections .confirm-card .card-header .edit-btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #108C67;
  background: #fff;
  border: 2px solid #108C67;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .card-header .edit-btn-inline {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

.confirm-sections .confirm-card .card-header .edit-btn-inline svg {
  width: 16px;
  height: 16px;
}

.confirm-sections .confirm-card .card-header .edit-btn-inline:hover {
  background: #108C67;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(16, 140, 103, 0.2);
}

/* 受験資格カード */
.confirm-sections .confirm-card.exam-summary-card {
  /* 色分けなし - 統一デザイン */
}

.confirm-sections .confirm-card .exam-list-wrapper {
  margin-bottom: 32px;
}

.confirm-sections .confirm-card .exam-item-confirm {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.confirm-sections .confirm-card .exam-item-confirm:last-child {
  margin-bottom: 0;
}

.confirm-sections .confirm-card .exam-item-confirm:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.confirm-sections .confirm-card .exam-item-confirm.discount-item {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
}

.confirm-sections .confirm-card .exam-item-confirm .exam-check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #108C67;
  border-radius: 50%;
  color: #fff;
}

.confirm-sections .confirm-card .exam-item-confirm .exam-check-icon.discount-icon {
  background: #F97316;
}

.confirm-sections .confirm-card .exam-item-confirm .exam-check-icon svg {
  width: 20px;
  height: 20px;
}

.confirm-sections .confirm-card .exam-item-confirm .exam-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .exam-item-confirm .exam-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.confirm-sections .confirm-card .exam-item-confirm .exam-info .exam-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1A202C;
}

.confirm-sections .confirm-card .exam-item-confirm .exam-info .exam-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A202C;
  white-space: nowrap;
}

.confirm-sections .confirm-card .exam-item-confirm .exam-info .exam-price.discount-price {
  color: #DC2626;
}

.confirm-sections .confirm-card .total-row-confirm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  margin-top: 24px;
  background: #108C67;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(16, 140, 103, 0.2);
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .total-row-confirm {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px;
  }
}

.confirm-sections .confirm-card .total-row-confirm .total-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .total-row-confirm .total-label {
    font-size: 1rem;
  }
}

.confirm-sections .confirm-card .total-row-confirm .total-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .total-row-confirm .total-amount {
    font-size: 1.5rem;
  }
}

.confirm-sections .confirm-card .total-row-confirm .total-amount .tax-note {
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 8px;
  opacity: 0.9;
}

/* お客様情報カード */
.confirm-sections .confirm-card.customer-info-card {
  /* 色分けなし - 統一デザイン */
}

.confirm-sections .confirm-card .info-list {
  margin: 0;
  padding: 0;
}

.confirm-sections .confirm-card .info-list .info-row {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #E2E8F0;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .info-list .info-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }
}

.confirm-sections .confirm-card .info-list .info-row:last-child {
  border-bottom: none;
}

.confirm-sections .confirm-card .info-list .info-row.message-row {
  flex-direction: column;
  align-items: flex-start;
}

.confirm-sections .confirm-card .info-list .info-row.message-row .info-label {
  margin-bottom: 16px;
}

.confirm-sections .confirm-card .info-list .info-row .info-label {
  flex-shrink: 0;
  width: 180px;
  margin: 0;
  padding: 16px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1A202C;
  letter-spacing: 0.05em;
  background: #F7FAFC;
  border-right: 1px solid #E2E8F0;
  margin-right: 24px;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .info-list .info-row .info-label {
    width: 100%;
    padding: 16px 0;
    margin-bottom: 8px;
    border-right: none;
    margin-right: 0;
  }
}

.confirm-sections .confirm-card .info-list .info-row .info-value {
  flex: 1;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1A202C;
  line-height: 1.6;
}

.confirm-sections .confirm-card .info-list .info-row .info-value.email-display {
  word-break: break-all;
}

.confirm-sections .confirm-card .info-list .info-row .info-value .address-display {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.confirm-sections .confirm-card .info-list .info-row .info-value .address-display .zip-code {
  font-size: 1.05rem;
  color: #1A202C;
}

.confirm-sections .confirm-card .info-list .info-row .info-value .address-display .address-line {
  font-size: 1.05rem;
}

.confirm-sections .confirm-card .info-list .info-row .info-value .address-display .address-option {
  font-size: 0.95rem;
  color: #A0AEC0;
}

/* お支払い方法カード */
.confirm-sections .confirm-card.payment-info-card {
  /* 色分けなし - 統一デザイン */
}

.confirm-sections .confirm-card .payment-method-display {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .payment-method-display {
    flex-direction: column;
    padding: 24px;
    align-items: center;
    text-align: center;
  }
}

.confirm-sections .confirm-card .payment-method-display .payment-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7FAFC;
  border-radius: 12px;
  color: #108C67;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .payment-method-display .payment-icon {
    width: 44px;
    height: 44px;
  }
}

.confirm-sections .confirm-card .payment-method-display .payment-icon svg {
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .payment-method-display .payment-icon svg {
    width: 22px;
    height: 22px;
  }
}

.confirm-sections .confirm-card .payment-method-display .payment-method-name {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A202C;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .payment-method-display .payment-method-name {
    font-size: 1.2rem;
  }
}

/* 旧スタイル（互換性のため残す） */
.confirm-sections .confirm-card .info-table {
  width: 100%;
}

.confirm-sections .confirm-card .info-table tr {
  border-bottom: 1px solid #E2E8F0;
}

.confirm-sections .confirm-card .info-table tr:last-child {
  border-bottom: none;
}

.confirm-sections .confirm-card .info-table th {
  padding: 16px 24px;
  font-weight: 600;
  text-align: left;
  color: #1A202C;
  background: #FAFAFA;
  width: 30%;
  vertical-align: top;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .info-table th {
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    border-bottom: none;
  }
}

.confirm-sections .confirm-card .info-table td {
  padding: 16px 24px;
  color: #4A5568;
}

@media screen and (max-width: 480px) {
  .confirm-sections .confirm-card .info-table td {
    display: block;
    padding: 8px 16px 24px 16px;
  }
}

.confirm-sections .confirm-card .edit-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 8px 24px;
  font-size: 0.9rem;
  color: #108C67;
  background: #fff;
  border: 1px solid #108C67;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.confirm-sections .confirm-card .edit-btn:hover {
  background: #108C67;
  color: #fff;
}

.complete-message {
  text-align: center;
  padding: 64px 24px;
}

.complete-message .icon-success {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  background: #F0FFF4;
  border: 3px solid #38A169;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #38A169;
}

.complete-message .icon-success::after {
  content: "✓";
}

.complete-message .message-title {
  margin: 0 0 24px 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1A202C;
}

@media screen and (max-width: 480px) {
  .complete-message .message-title {
    font-size: 1.4rem;
  }
}

.complete-message .message-text {
  margin: 0 auto 48px auto;
  max-width: 600px;
  font-size: 1rem;
  color: #4A5568;
  line-height: 1.8;
}

.complete-message .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  .complete-message .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

.error-message {
  text-align: center;
  padding: 64px 24px;
}

.error-message .icon-error {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  background: #FFF5F5;
  border: 3px solid #E53E3E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #E53E3E;
}

.error-message .icon-error::after {
  content: "✕";
}

.error-message .message-title {
  margin: 0 0 24px 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #C53030;
}

@media screen and (max-width: 480px) {
  .error-message .message-title {
    font-size: 1.4rem;
  }
}

.error-message .message-text {
  margin: 0 auto 48px auto;
  max-width: 600px;
  font-size: 1rem;
  color: #4A5568;
  line-height: 1.8;
}

.input-progress {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 99;
}

@media screen and (max-width: 480px) {
  .input-progress {
    top: 60px;
    padding: 8px 16px;
  }
}

.input-progress .progress-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 480px) {
  .input-progress .progress-content {
    gap: 16px;
  }
}

.input-progress .progress-label {
  font-size: 0.85rem;
  color: #A0AEC0;
  white-space: nowrap;
}

@media screen and (max-width: 480px) {
  .input-progress .progress-label {
    font-size: 0.75rem;
  }
}

.input-progress .progress-label .progress-count {
  font-weight: 700;
  color: #108C67;
  font-size: 1rem;
}

@media screen and (max-width: 480px) {
  .input-progress .progress-label .progress-count {
    font-size: 0.9rem;
  }
}

.input-progress .progress-bar {
  flex: 1;
  height: 8px;
  background: #F5F5F5;
  border-radius: 10px;
  overflow: hidden;
}

.input-progress .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #108C67, #55A990);
  border-radius: 10px;
  transition: width 0.3s ease;
}

body.has-input-progress .order-container {
  margin-top: 110px;
}

@media screen and (max-width: 480px) {
  body.has-input-progress .order-container {
    margin-top: 90px;
  }
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.loading-overlay.show {
  opacity: 1;
  visibility: visible;
}

.loading-overlay .loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-overlay .loading-text {
  margin-top: 24px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 24px;
}

.mt-lg {
  margin-top: 32px;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
