@charset "UTF-8";
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.9);
  }
}
@keyframes slideRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
.main_static .container {
  max-width: 1500px;
}
.main_static .section {
  background: #f8f9fa;
}
.main_static .campaign-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-top: 20px;
}
.main_static .campaign-header .campaign-badge {
  display: inline-block;
  margin-bottom: 20px;
}
.main_static .campaign-header .campaign-badge .badge-text {
  background: linear-gradient(135deg, #f1cf00, #ffe025);
  color: #053769;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(241, 207, 0, 0.3);
  animation: pulse 2s infinite;
}
.main_static .campaign-header .campaign-title {
  font-size: 32px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
  inline-size: fit-content;
  margin-inline: auto;
}
.main_static .campaign-header .campaign-title .fa-star {
  color: #ffd700;
  font-size: 24px;
  margin: 0 10px;
  animation: sparkle 1.5s ease-in-out infinite;
}
.main_static .campaign-header .campaign-title .highlight {
  color: #f1cf00;
  font-size: 42px;
  display: inline-block;
  margin: 0 8px;
  position: relative;
}
.main_static .campaign-header .campaign-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f1cf00, #ffd700);
  border-radius: 2px;
}
.main_static .campaign-header .campaign-subtitle {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}
.main_static .cta-section {
  text-align: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #efefef;
  margin-bottom: 50px;
}
.main_static .cta-section .cta-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
.main_static .cta-section .cta-text .fa-clock {
  color: #f1cf00;
  margin-right: 8px;
}
.main_static .btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #053769, #0a2a52);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.main_static .btn-primary:hover {
  background-color: #f1cf00;
  text-decoration: none;
}
.main_static .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
}
.main_static .btn-primary:hover::before {
  left: 100%;
}
.main_static .btn-primary .fas {
  margin-right: 10px;
}
.main_static .btn-primary.large {
  padding: 22px 60px;
  font-size: 20px;
}
.main_static .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}
.main_static .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #053769, #0a2a52);
  border-radius: 2px;
}
.main_static .section-title .fas {
  color: #053769;
  margin-right: 10px;
}
.main_static .point-example {
  margin-bottom: 60px;
}
.main_static .point-example .example-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #efefef;
}
.main_static .point-example .example-card .table_scroll {
  overflow: auto;
  white-space: nowrap;
  margin-bottom: 50px;
}
.main_static .point-example .example-card .point-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 4px;
  white-space: nowrap;
  inline-size: fit-content;
  margin-inline: auto;
  word-wrap: break-word;
  border-collapse: collapse;
}
.main_static .point-example .example-card .point-table thead {
  background: linear-gradient(135deg, #053769, #0a2a52);
  color: white;
}
.main_static .point-example .example-card .point-table thead th {
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #053769;
}
.main_static .point-example .example-card .point-table tbody tr {
  background: #f8f9fa;
  transition: all 0.3s ease;
}
.main_static .point-example .example-card .point-table tbody tr:nth-child(even) {
  background: #ffffff;
}
.main_static .point-example .example-card .point-table tbody tr:hover {
  background: #e8ecff;
  transform: scale(1.02);
}
.main_static .point-example .example-card .point-table tbody tr.featured-row {
  background: linear-gradient(135deg, #fff5f5, #ffe8e8) !important;
  font-weight: bold;
}
.main_static .point-example .example-card .point-table tbody tr.featured-row td {
  font-size: 18px;
}
.main_static .point-example .example-card .point-table tbody td {
  padding: 15px;
  text-align: center;
  font-size: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.main_static .point-example .example-card .point-table .highlight-cell {
  color: #f1cf00;
  font-weight: bold;
  font-size: 18px !important;
}
.main_static .point-example .example-card .point-table .benefit-cell {
  color: #d82a2a;
}
.main_static .point-example .example-card .point-table .benefit {
  color: #d82a2a;
  font-weight: bold;
}
.main_static .point-example .example-card .point-note {
  margin-top: 20px;
  padding: 15px;
  background: #d6eafd;
  border-radius: 5px;
  color: #555;
}
.main_static .point-example .example-card .point-note .fas {
  color: #053769;
  margin-right: 8px;
}
.main_static .registration-flow {
  margin-bottom: 60px;
}
.main_static .registration-flow .flow-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #efefef;
  padding: 40px 20px;
}
.main_static .registration-flow .flow-container .flow-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}
.main_static .registration-flow .flow-container .flow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.main_static .registration-flow .flow-container .flow-step .step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #053769, #0a2a52);
  color: white;
  padding: 5px 15px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: bold;
}
.main_static .registration-flow .flow-container .flow-step .step-icon {
  font-size: 48px;
  color: #053769;
  margin-bottom: 15px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_static .registration-flow .flow-container .flow-step h3 {
  color: #2c3e50;
  font-size: 18px;
  margin-bottom: 10px;
}
.main_static .registration-flow .flow-container .flow-step p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
.main_static .registration-flow .flow-container .flow-step.complete {
  background: linear-gradient(135deg, #fff5f5, #ffe8e8) !important;
}
.main_static .registration-flow .flow-container .flow-step.complete .step-number {
  background: #f1cf00;
}
.main_static .registration-flow .flow-container .flow-step.complete .step-icon {
  color: #f1cf00;
}
.main_static .registration-flow .flow-container .flow-arrow {
  font-size: 24px;
  color: #053769;
  animation: slideRight 1.5s ease-in-out infinite;
}
.main_static .newsletter-section {
  margin-bottom: 50px;
}
.main_static .newsletter-section .newsletter-card {
  background: rgb(214, 234, 253);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.main_static .newsletter-section .newsletter-card .newsletter-icon {
  font-size: 64px;
  color: #053769;
  flex-shrink: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main_static .newsletter-section .newsletter-card .newsletter-icon {
    width: 15%;
  }
}
@media screen and (min-width: 768px) {
  .main_static .newsletter-section .newsletter-card .newsletter-content {
    width: 50%;
  }
}
.main_static .newsletter-section .newsletter-card .newsletter-content h3 {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
.main_static .newsletter-section .newsletter-card .newsletter-content .benefit-list {
  list-style: none;
  margin-bottom: 20px;
}
.main_static .newsletter-section .newsletter-card .newsletter-content .benefit-list li {
  padding: 8px 0;
  color: #555;
  font-size: 16px;
}
.main_static .newsletter-section .newsletter-card .newsletter-content .benefit-list li .fa-check {
  color: #d82a2a;
  margin-right: 10px;
}
.main_static .newsletter-section .newsletter-card .newsletter-content .newsletter-note {
  color: #666;
  font-size: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.main_static .newsletter-section .newsletter-card .newsletter-btn .cta-section {
  text-align: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #efefef;
  margin: auto;
}
.main_static .notice-section {
  margin-bottom: 50px;
}
.main_static .notice-section .notice-content {
  background: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #efefef;
}
.main_static .notice-section .notice-content .notice-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}
.main_static .notice-section .notice-content .notice-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.main_static .notice-section .notice-content .notice-item h3 {
  color: #2c3e50;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.main_static .notice-section .notice-content .notice-item h3 .fas {
  color: #f39c12;
  margin-right: 10px;
}
.main_static .notice-section .notice-content .notice-item ul {
  list-style: none;
  padding-left: 30px;
}
.main_static .notice-section .notice-content .notice-item ul li {
  position: relative;
  padding: 5px 0;
  color: #666;
  line-height: 1.8;
}
.main_static .notice-section .notice-content .notice-item ul li::before {
  content: "・";
  position: absolute;
  left: -20px;
  color: #999;
}
.main_static .notice-section .notice-content .notice-item.important {
  background: #fef7ec;
  border-radius: 4px;
  padding: 20px;
  margin-top: 20px;
}
.main_static .notice-section .notice-content .notice-item.important .email-setting p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}
.main_static .notice-section .notice-content .notice-item.important .email-setting .domain-box {
  background: white;
  border: 2px solid #053769;
  border-radius: 4px;
  padding: 15px 30px;
  display: inline-block;
  margin: 20px 0;
}
.main_static .notice-section .notice-content .notice-item.important .email-setting .domain-box .domain {
  color: #053769;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.main_static .notice-section .notice-content .notice-item.important .email-setting .small-text {
  font-size: 14px;
  color: #888;
  margin-top: 10px;
}
.main_static .notice-section .notice-content .notice-item.important .email-setting .small-text .fas {
  margin-right: 5px;
}
.main_static .final-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #053769, #0a2a52);
  border-radius: 8px;
  margin-top: 60px;
}
.main_static .final-cta h2 {
  color: white;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 30px;
}
.main_static .final-cta .final-text {
  font-size: 16px;
  color: #f8f9fa;
  margin-bottom: 20px;
}
.main_static .final-cta .final-text .fa-clock {
  color: #f1cf00;
  margin-right: 8px;
}
.main_static .final-cta .btn-primary {
  background: white;
  color: #053769;
}
.main_static .final-cta .btn-primary:hover {
  background: #f1cf00;
}
@media (max-width: 1024px) {
  .main_static .flow-container {
    flex-direction: column;
  }
  .main_static .flow-container .flow-arrow {
    transform: rotate(90deg);
  }
  .main_static .flow-container .flow-step {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .main_static .newsletter-card {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .main_static .campaign-header .campaign-title {
    font-size: 24px;
  }
  .main_static .campaign-header .campaign-title .highlight {
    font-size: 32px;
  }
  .main_static .section-title {
    font-size: 22px;
    font-weight: 700;
  }
  .main_static .newsletter-card {
    flex-direction: column;
    text-align: center;
  }
  .main_static .point-table {
    font-size: 14px;
  }
  .main_static .point-table th,
  .main_static .point-table td {
    padding: 10px 5px;
  }
  .main_static .btn-primary {
    padding: 15px 30px;
    font-size: 16px;
  }
  .main_static .btn-primary.large {
    padding: 18px 40px;
    font-size: 18px;
  }
  .main_static .btn-primary:hover {
    background: #f1cf00;
  }
}

/*# sourceMappingURL=point-campaign.css.map */
