/* ベース設定 */
:root {
  --primary: #ff6b35;
  --secondary: #4caf50;
  --accent: #2563eb;
  --warning: #f59e0b;
  --member: #0284c7;
  --text: #333;
  --gray: #666;
  --light-bg: #f8f9fa;
  --white: #fff;
  --shadow: 0 6px 20px rgba(0,0,0,.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
}



#main-container > section.hero > h1{
/*  background: linear-gradient(104deg, #0098fe 15%, #00509e 87%);*/
  background: linear-gradient(104deg, #fc5c6c 15%, #86f 51%, #00c2da 87%);
/*  background: linear-gradient(
    135deg,
    #ff6200 0%, 
    #ff8533 50%,
    #cc5200 100%;
  );
/*  background: linear-gradient(135deg, #667eea, #764ba2);*/
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-size: 1.4rem;
}

/**********/
a.btn-white {
  position: relative;
  display: inline-block;
  padding: 16px 36px;         /* 内側余白を広げる */
  font-size: 1.2rem;          /* 文字サイズアップ */
  background: #f6f6f6;
  border-radius: 8px;         /* 少し丸みを強調 */
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  overflow: hidden;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  line-height: 1.4;
}

a.btn-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
}

a.btn-white:hover::before {
  animation: shine 0.8s ease forwards;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

a.btn-white:hover {
  background: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}


/**********/
  iframe {
    border: none;
  }
  
  .youtube-wrapper {
    margin: 30px auto;
    text-align: center;
    max-width: 960px;
    width: 100%;
  }
  
  .youtube-inner {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  
  .youtube-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  /* lite-youtube用の追加スタイル */
  .youtube-wrapper lite-youtube {
    max-width: none !important;
    width: 100%;
    display: block;
  }
  
  .youtube-inner lite-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
  }
  
  .youtube-inner lite-youtube::before {
    content: none;
  }
/**********/


/* ヒーローセクション */
.hero {
/*  background: linear-gradient(135deg, rgba(255,107,53,.9), rgba(37,99,235,.9));*/
  padding: 80px 0 60px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  margin: 10px;
}

.hero p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 30px;
  color: #333;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat {
  background: white;
  color: var(--text);
  padding: 20px 30px;
  border-radius: 12px;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  margin-top: 5px;
}

.stat-link {
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  display: inline-block;
  margin-left: 5px;
  transition: all 0.3s;
}

.stat-link:hover {
  color: #ff8e53;
  transform: translateX(2px);
}

/**********/
.member-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* アイコンとテキストの間隔 */
  margin-top: 20px; /* 上に余白 */
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--member);
  border: none;
  border-radius: 9999px; /* 完全な丸ボタン風 */
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.member-toggle-btn:active {
  transform: scale(0.97);
}

.member-toggle-btn::before {
  content: "ℹ️"; /* インフォアイコン */
  font-size: 1.1em;
}
/**********/

/* セレクター */
.selector {
  max-width: 900px;
  margin: -40px auto 60px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,.1);
  position: relative;
  z-index: 1;
}

.selector h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
}

.selector > p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 30px;
}

/* タブ */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  background: #f3f4f6;
  padding: 5px;
  border-radius: 12px;
}

.tab {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
  transition: .3s;
  font-size: 1.5rem;
}

.tab:hover {
  background: rgba(255,255,255,.5);
}

.tab.active {
  background: white;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.badge {
  display: inline-block;
  font-size: 12px;
  background: #10b981;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  margin-left: 8px;
}

/* コンテンツセクション
.content {
  display: none;
}

.content.active {
  display: block;
} */

.footer {
  margin: unset;
}

/* 初心者向け */
.beginner-box {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid var(--warning);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.beginner-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 15px;
}

.beginner-box .highlight {
  color: #92400e;
  font-weight: 600;
  margin-bottom: 20px;
}

.beginner-box .sub-text {
  font-size: 12px;
  color: #78350f;
  margin-top: -10px;
  margin-bottom: 15px;
}

.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff8e53);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,107,53,.3);
}

.btn-group>.btn:last-child:not(:first-child), .btn-group>.dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}



.info-box {
  background: #e0f2fe;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
}

.info-box h4 {
  color: #075985;
  margin-bottom: 10px;
}

.info-box ul {
  color: #0c4a6e;
  line-height: 1.8;
  list-style-position: inside;
}

/* 初心者向け追加スタイル */
.method-selector {
  margin-top: 30px;
}

.method-selector h4 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--text);
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.method-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  transition: all 0.3s;
}

.method-card.recommended {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255,107,53,0.15);
}

.method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.method-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.method-card h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}

.method-desc {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.method-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.method-features li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--text);
}

.method-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  margin: 5px 0;
  display: block;
  text-align: center;
}

.btn-outline {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.contact-section {
  margin-top: 30px;
  padding: 25px;
  background: #f0f9ff;
  border-radius: 12px;
  text-align: center;
}

.contact-section h4 {
  color: #075985;
  margin-bottom: 20px;
  font-size: 18px;
}

.contact-info {
  max-width: 400px;
  margin: 0 auto;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: white;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s;
  margin-bottom: 15px;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.contact-icon {
  font-size: 24px;
}

.contact-text strong {
  display: block;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 3px;
}

.contact-text small {
  display: block;
  font-size: 12px;
  color: var(--gray);
}

.contact-note {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* 会員向け */
.campaign-banner {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid var(--warning);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.campaign-content h3 {
  color: #92400e;
  font-size: 24px;
  margin-bottom: 10px;
}

.campaign-text {
  font-size: 18px;
  color: #92400e;
  margin-bottom: 5px;
}

.highlight-price {
  font-size: 24px;
  font-weight: bold;
  color: #dc2626;
}

.campaign-condition {
  font-size: 14px;
  color: #78350f;
  margin-bottom: 15px;
}

.btn-warning {
  background: linear-gradient(135deg, var(--warning), #fbbf24);
  color: white;
}

.btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245,158,11,.3);
}

.member-box {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 2px solid var(--member);
  border-radius: 16px;
  padding: 30px;
}

.member-box h3 {
  color: #075985;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

.btn-member {
  background: var(--member);
  color: white;
}

.btn-member:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(2,132,199,.3);
  color: white;
}

.registration-guide {
  margin-top: 25px;
  padding: 20px;
  background: #f0f9ff;
  border-radius: 12px;
  border: 1px solid #bfdbfe;
}

.registration-guide h5 {
  color: #075985;
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
}

.registration-guide > p {
  color: #0c4a6e;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: center;
}

.registration-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.option-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.option-card h6 {
  color: var(--member);
  margin-bottom: 10px;
  font-size: 16px;
}

.option-card p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.option-card .btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
}

.benefits {
  margin-top: 30px;
  padding: 20px;
  background: white;
  border-radius: 12px;
}

.benefits h4 {
  color: #075985;
  margin-bottom: 15px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.benefit-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.benefit-content h5 {
  color: #075985;
  margin-bottom: 5px;
  font-size: 16px;
}

.benefit-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.point-system {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 12px;
}

.point-system h4 {
  color: #075985;
  margin-bottom: 15px;
  font-size: 20px;
}

.point-description {
  color: #0c4a6e;
  margin-bottom: 20px;
  font-size: 16px;
}

.point-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.point-tier {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tier-header {
  padding: 10px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.tier-header.bronze {
  background: linear-gradient(135deg, #a16207, #d97706);
}

.tier-header.silver {
  background: linear-gradient(135deg, #6b7280, #9ca3af);
}

.tier-header.gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.tier-content {
  padding: 15px;
  text-align: center;
}

.tier-condition {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
}

.tier-rate {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
}

.member-campaign {
  margin-top: 30px;
  padding: 20px;
  background: #fee2e2;
  border-radius: 12px;
  border: 2px solid #ef4444;
}

.member-campaign h4 {
  color: #991b1b;
  margin-bottom: 15px;
  font-size: 20px;
}

.campaign-notes {
  list-style: none;
  padding: 0;
}

.campaign-notes li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #7f1d1d;
  font-size: 15px;
}

.campaign-notes li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.login-prompt {
  margin-top: 20px;
  padding: 15px;
  background: #fef3c7;
  border-radius: 8px;
  border: 1px solid #fbbf24;
}

.login-prompt p {
  color: #92400e;
  font-size: 14px;
}

.member-features {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #fafafa, #f3f4f6);
  border-radius: 12px;
}

.member-features h4 {
  text-align: center;
  margin-bottom: 10px;
  color: #075985;
  font-size: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-item {
  background: white;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

.feature-label {
  font-size: 16px;
  font-weight: bold;
  color: var(--text);
  display: block;
  margin-bottom: 5px;
}

.feature-desc {
  font-size: 12px;
  color: var(--gray);
  display: block;
  line-height: 1.4;
}

/* フローセクション */
.flow {
  padding: 80px 0;
  background: var(--light-bg);
}

.flow h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.flow > p {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 50px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.step {
  background: white;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .3s;
}

.step:hover {
  transform: translateY(-8px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #ff8e53);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.step-icon {
  font-size: 48px;
  margin: 20px 0;
  display: block;
  text-align: center;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-time {
  display: inline-block;
  background: #10b981;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

.step p {
  color: var(--gray);
  line-height: 1.7;
}

/* FAQ */
.faq {
  padding: 80px 0;
/*  background: white;*/
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  background: var(--light-bg);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-q {
  padding: 20px 25px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q:hover {
  background: rgba(255,107,53,.05);
}

.faq-icon {
  transition: transform .3s;
  font-size: 20px;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all .3s;
}

.faq-item.active .faq-a {
  padding: 0 25px 20px;
  max-height: 500px;
}

/* レビューセクション - モデルガンLPのスタイルに統一 */
.section.scroll-animate {
  padding: 60px 0;
  background: var(--light-bg);
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--text);
  font-weight: 700;
}

.testimonial-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-item {
  background: white;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
  min-height: 60px;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
}

.testimonial-author span:before {
  content: "— ";
}

.testimonial-rating {
  color: var(--warning);
  font-size: 20px;
}

.review-summary-wrap {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.review-main-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.review-sub-text {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 20px;
}

.review-count {
  font-weight: 700;
  color: var(--primary);
  font-size: 22px;
}

.more-button {
  display: inline-block;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.more-button:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.3);
}



/* 安心保証セクション - 既存の色調に調和 */
.guarantee-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle, 
    rgba(80, 120, 160, 0.08) 0%, 
    transparent 70%
  );
  border-radius: 50%;
}

.guarantee-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 50px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.guarantee-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.guarantee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.guarantee-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: linear-gradient(
    135deg,
    rgba(130, 170, 200, 0.1) 0%,
    rgba(210, 225, 235, 0.2) 100%
  );
  padding: 20px;
}

.campaign-card img {
  background: linear-gradient(
    135deg, 
    rgba(254, 243, 199, 0.3) 0%, 
    rgba(253, 230, 138, 0.3) 100%
  );
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  color: #075985;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.card-content p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

.campaign-badge,
.guarantee-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
}

.campaign-badge {
  background: linear-gradient(135deg, var(--primary), #ff8e53);
  color: white;
}

.guarantee-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.guarantee-points {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  flex-wrap: wrap;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
}

a.warning:hover
, a.warning:active  {
  color: var(--polynesian-blue);
}

.point-icon {
  color: var(--secondary);
  font-size: 20px;
  flex-shrink: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .guarantee-section {
    padding: 60px 0;
  }
  
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .guarantee-points {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  
  .point-item {
    font-size: 14px;
  }
  
  .section-subtitle {
    font-size: 16px;
    padding: 0 20px;
  }
}


/* CTA - 前のバージョンのスタイルを使用 */
.cta {
/*  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
  background-image: linear-gradient(127deg, rgba(252, 92, 108, .9), rgba(255, 211, 126, .9));
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .selector {
    margin: -30px 20px 40px;
    padding: 30px 20px;
  }
  
  .tabs {
    flex-direction: column;
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .stats {
    gap: 15px;
  }
  
  .registration-options {
    grid-template-columns: 1fr;
  }
  
  .review-cards {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 250px;
  }
}